diff --git a/tools/editor-modes/emacs/tree-sitter/holscript-ts-mode.el b/tools/editor-modes/emacs/tree-sitter/holscript-ts-mode.el new file mode 100644 index 0000000000..3fff10ad6f --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/holscript-ts-mode.el @@ -0,0 +1,209 @@ +(require 'treesit) + +;; References +;; * https://github.com/nverno/sml-ts-mode +;; * https://github.com/HOL-Theorem-Prover/HOL (holscript-mode.el) +;; * https://www.masteringemacs.org/article/lets-write-a-treesitter-major-mode + +(defvar holscript-ts-mode--syntax-table + (let ((st (make-syntax-table))) + (modify-syntax-entry ?\* ". 23n" st) + (modify-syntax-entry ?\( "()1" st) + (modify-syntax-entry ?\) ")(4" st) + (modify-syntax-entry ?“ "(”" st) + (modify-syntax-entry ?” ")“" st) + (modify-syntax-entry ?‘ "(’" st) + (modify-syntax-entry ?’ ")‘" st) + (modify-syntax-entry ?\\ "\\" st) + (modify-syntax-entry ?λ "." st) + ;; backslash only escapes in strings but we need to have it seen + ;; as one in general if the hol-mode isn't to get seriously + ;; confused by script files that contain escaped quotation + ;; characters. This despite the fact that it does cause pain in + ;; terms such as \(x,y). x + y + (mapc (lambda (c) (modify-syntax-entry c "w" st)) "'") + (mapc (lambda (c) (modify-syntax-entry c "_" st)) "$_") + (mapc (lambda (c) (modify-syntax-entry c "." st)) ".%&+-/:<=>?@`^|!~#,;∀∃") + st) + "Syntax table used in `holscript-ts-mode'.") + +(defconst holscript-ts-mode--sml-keywords + '(;; Reserved Words Core + "abstype" "and" "andalso" "as" "case" "datatype" "do" "else" "end" + "exception" "fn" "fun" "handle" "if" "in" "infix" "infixr" "let" + "local" "nonfix" "of" "op" "open" "orelse" "raise" "rec" "then" + "type" "val" "with" "withtype" "while" + ;; Reserved Words Modules + "eqtype" "functor" "include" "sharing" "sig" "signature" "struct" + "structure" "where") + "SML keywords for tree-sitter font-locking.") + +(defconst holscript-ts-mode--hol-keywords + '("Definition" "Theorem" "Termination" "Proof" "Datatype:" "End" "QED" + "if" "then" "else" "case" "of") + "HOL keywords for tree-sitter font-locking.") + +(defconst holscript-ts-mode--sml-builtins + '("abs" "app" "before" "ceil" "chr" "concat" "exnMessage" "exnName" "explode" + "floor" "foldl" "foldr" "getOpt" "hd" "ignore" "implode" "isSome" "length" + "map" "null" "ord" "print" "real" "rev" "round" "size" "str" "substring" + "tl" "trunc" "valOf" "vector") + "SML builtin functions for tree-sitter font-locking.") + +(defvar holscript-ts-mode--font-lock-feature-list + '((comment definition) + (keyword string) + (builtin constant number type property) + (assignment bracket delimiter operator)) + "Font-lock features for `treesit-font-lock-feature-list' in `holscript-ts-mode'.") + +(defun holscript-ts-mode--fontify-patterns (node override start end &rest _args) + "Fontify pattern bindings and in NODE. +For a description of OVERRIDE, START, and END, see `treesit-font-lock-rules'." + (pcase (treesit-node-type node) + ((or "typed_pat" "paren_pat" "tuple_pat" "conj_pat") + (holscript-ts-mode--fontify-patterns + (treesit-node-child node 0 t) override start end)) + ("app_pat" + ;; Fontify both bindings in (h::t) + (when (equal "::" (treesit-node-text (treesit-node-child node 1))) + (holscript-ts-mode--fontify-patterns + (treesit-node-child node 0 t) override start end)) + (holscript-ts-mode--fontify-patterns + (treesit-node-child node 1 t) override start end)) + ((or "vid_pat" "wildcard_pat") + (treesit-fontify-with-override + (treesit-node-start node) (treesit-node-end node) + 'font-lock-variable-name-face + override start end)))) + +(defvar holscript-ts-mode--font-lock-settings + (treesit-font-lock-rules + :language 'holscript + :feature 'comment ; SML and HOL + '((block_comment) @font-lock-comment-face) + + :language 'holscript + :feature 'string + '(;; SML + (string_scon) @font-lock-string-face + (char_scon) @font-lock-constant-face + ;; HOL + (hol_string) @font-lock-string-face + (hol_character) @font-lock-constant-face) + + :language 'holscript + :feature 'keyword + `(;; SML + [,@holscript-ts-mode--sml-keywords] @font-lock-keyword-face + ;; Misinterpreted identifiers, eg. val x = struct + ;; See notes from highlights.scm (MatthewFluet/tree-sitter-sml) + ([(vid) (tycon) (strid) (sigid) (fctid)] @font-lock-warning-face + (:match ,(rx-to-string `(seq bos (or ,@holscript-ts-mode--sml-keywords) eos)) + @font-lock-warning-face)) + ;; As an additional special case, The Defn of SML excludes `*` from tycon. + ([(tycon)] @font-lock-warning-face + (:match ,(rx bos "*" eos) @font-lock-warning-face)) + ;; HOL + [,@holscript-ts-mode--hol-keywords] @font-lock-keyword-face) + + :language 'holscript + :feature 'builtin + `(;; SML + ((vid_exp) @font-lock-builtin-face + (:match ,(rx-to-string `(seq bos (or ,@holscript-ts-mode--sml-builtins) eos)) + @font-lock-builtin-face)) + ((vid_exp) @font-lock-preprocessor-face + (:match ,(rx bos (or "use") eos) @font-lock-preprocessor-face))) + + :language 'holscript + :feature 'definition + (let ((pats '((app_pat) (paren_pat) (vid_pat) (tuple_pat) (wildcard_pat)))) + `(;; SML + (fmrule + name: (_) @font-lock-function-name-face + ([,@pats] :* @holscript-ts-mode--fontify-patterns :anchor "=") :?) + (mrule ([,@pats] :* @holscript-ts-mode--fontify-patterns :anchor "=>")) + (handle_exp (mrule (_) @holscript-ts-mode--fontify-patterns)) + (labvar_patrow [(vid)] @font-lock-variable-name-face) + (patrow (vid_pat) @holscript-ts-mode--fontify-patterns) + (tuple_pat (_) @holscript-ts-mode--fontify-patterns + ("," (vid_pat) @holscript-ts-mode--fontify-patterns) :*) + (app_pat (_) (_) @holscript-ts-mode--fontify-patterns) + (valbind pat: (_) @holscript-ts-mode--fontify-patterns) + (valdesc name: (vid) @font-lock-variable-name-face) + ;; Modules, Sigs + (fctbind name: (_) @font-lock-module-def-face + arg: (strid) :? @font-lock-variable-name-face) + (strbind name: (_) @font-lock-module-def-face) + (sigbind name: (_) @font-lock-module-def-face) + ;; Types + (datatype_dec (datbind name: (tycon) @font-lock-type-def-face)) + (datatype_spec (datdesc name: (tycon) @font-lock-type-def-face)) + (datatype_dec + withtype: (typbind name: (tycon) @font-lock-type-def-face)) + (type_dec (typbind name: (tycon) @font-lock-type-def-face)) + (type_spec (typbind name: (tycon) @font-lock-type-def-face)) + (typedesc name: (_) @font-lock-type-def-face) + (infix_dec (vid) @font-lock-function-name-face) + ;; Uppercase does not mean we have a type + ;; ((vid) @font-lock-type-face + ;; (:match "^[A-Z].*" @font-lock-type-face)) + ;; HOL + ((hol_defname) @font-lock-variable-name-face) + (hol_eqn (hol_identifier) @font-lock-function-name-face) + ((hol_variable) @font-lock-variable-name-face))) + + :language 'holscript + :feature 'constant + `(;; SML + ((vid) @font-lock-constant-face + (:match ,(rx bos (or "true" "false" "nil" "ref") eos) + @font-lock-constant-face)) + (recordsel_exp ((lab) @font-lock-constant-face + (:match "^[0-9]+$" @font-lock-constant-face)))) + + :language 'holscript + :feature 'property ; SML only? + `((tyrow (lab) @font-lock-property-name-face) + (patrow (lab) @font-lock-property-use-face) + (exprow (lab) @font-lock-property-use-face)) + + :language 'holscript + :feature 'type + `(;; SML + (fn_ty "->" @font-lock-type-face) + (tuple_ty "*" @font-lock-type-face) + (paren_ty ["(" ")"] @font-lock-type-face) + (tyvar) @font-lock-type-face + [(strid) (sigid) (fctid)] @font-lock-type-face + (record_ty ["{" "," "}"] @font-lock-type-face + (tyrow [(lab) ":"] @font-lock-type-face) :? + (ellipsis_tyrow ["..." ":"] @font-lock-type-face) :?) + (tycon_ty (tyseq ["(" "," ")"] @font-lock-type-face) :? + (longtycon) @font-lock-type-face) + ;; HOL + ([(hol_atomic_type) (hol_list_ty) (hol_fun_ty)] @font-lock-type-face)) + + :language 'holscript + :feature 'number + '(;; SML + [(integer_scon) (word_scon) (real_scon)] @font-lock-number-face))) + +;;;###autoload +(define-derived-mode holscript-ts-mode prog-mode "HOLScript[ts]" + "Major mode for editing HOL Script.sml files with tree-sitter." + :syntax-table holscript-ts-mode--syntax-table + + (when (treesit-ready-p 'holscript) + (treesit-parser-create 'holscript) + + ;; Font-Locking + (setq-local treesit-font-lock-settings + holscript-ts-mode--font-lock-settings) + (setq-local treesit-font-lock-feature-list + holscript-ts-mode--font-lock-feature-list) + + (treesit-major-mode-setup))) + +(provide 'holscript-ts-mode) diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/.editorconfig b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/.editorconfig new file mode 100644 index 0000000000..7756ee9511 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/.editorconfig @@ -0,0 +1,43 @@ +root = true + +[*] +charset = utf-8 + +[*.{json,toml,yml,gyp}] +indent_style = space +indent_size = 2 + +[*.js] +indent_style = space +indent_size = 2 + +[*.scm] +indent_style = space +indent_size = 2 + +[*.{c,cc,h}] +indent_style = space +indent_size = 4 + +[*.rs] +indent_style = space +indent_size = 4 + +[*.{py,pyi}] +indent_style = space +indent_size = 4 + +[*.swift] +indent_style = space +indent_size = 4 + +[*.go] +indent_style = tab +indent_size = 8 + +[Makefile] +indent_style = tab +indent_size = 8 + +[parser.c] +indent_size = 2 diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/.gitattributes b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/.gitattributes new file mode 100644 index 0000000000..9d5c5d499a --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/.gitattributes @@ -0,0 +1,13 @@ +* text=auto eol=lf + +src/*.json linguist-generated +src/parser.c linguist-generated +src/tree_sitter/* linguist-generated + +bindings/** linguist-generated +binding.gyp linguist-generated +setup.py linguist-generated +Makefile linguist-generated +CMakeLists.txt linguist-generated +Package.swift linguist-generated +go.mod linguist-generated diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/.gitignore b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/.gitignore new file mode 100644 index 0000000000..308fcab2cf --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/.gitignore @@ -0,0 +1,40 @@ +# Rust artifacts +target/ + +# Node artifacts +build/ +prebuilds/ +node_modules/ + +# Swift artifacts +.build/ + +# Go artifacts +_obj/ + +# Python artifacts +.venv/ +dist/ +*.egg-info +*.whl + +# C artifacts +*.a +*.so +*.so.* +*.dylib +*.dll +*.pc + +# Example dirs +/examples/*/ + +# Grammar volatiles +*.wasm +*.obj +*.o + +# Archives +*.tar.gz +*.tgz +*.zip diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/CMakeLists.txt b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/CMakeLists.txt new file mode 100644 index 0000000000..1d41a240b6 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/CMakeLists.txt @@ -0,0 +1,60 @@ +cmake_minimum_required(VERSION 3.13) + +project(tree-sitter-holscript + VERSION "0.1.0" + DESCRIPTION "HOLScript grammar for tree-sitter" + HOMEPAGE_URL "https://github.com/hol-theorem-prover/hol/" + LANGUAGES C) + +option(BUILD_SHARED_LIBS "Build using shared libraries" ON) +option(TREE_SITTER_REUSE_ALLOCATOR "Reuse the library allocator" OFF) + +set(TREE_SITTER_ABI_VERSION 14 CACHE STRING "Tree-sitter ABI version") +if(NOT ${TREE_SITTER_ABI_VERSION} MATCHES "^[0-9]+$") + unset(TREE_SITTER_ABI_VERSION CACHE) + message(FATAL_ERROR "TREE_SITTER_ABI_VERSION must be an integer") +endif() + +find_program(TREE_SITTER_CLI tree-sitter DOC "Tree-sitter CLI") + +add_custom_command(OUTPUT "${CMAKE_CURRENT_SOURCE_DIR}/src/parser.c" + DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/grammar.json" + COMMAND "${TREE_SITTER_CLI}" generate src/grammar.json + --abi=${TREE_SITTER_ABI_VERSION} + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + COMMENT "Generating parser.c") + +add_library(tree-sitter-holscript src/parser.c) +if(EXISTS src/scanner.c) + target_sources(tree-sitter-holscript PRIVATE src/scanner.c) +endif() +target_include_directories(tree-sitter-holscript PRIVATE src) + +target_compile_definitions(tree-sitter-holscript PRIVATE + $<$:TREE_SITTER_REUSE_ALLOCATOR> + $<$:TREE_SITTER_DEBUG>) + +set_target_properties(tree-sitter-holscript + PROPERTIES + C_STANDARD 11 + POSITION_INDEPENDENT_CODE ON + SOVERSION "${TREE_SITTER_ABI_VERSION}.${PROJECT_VERSION_MAJOR}" + DEFINE_SYMBOL "") + +configure_file(bindings/c/tree-sitter-holscript.pc.in + "${CMAKE_CURRENT_BINARY_DIR}/tree-sitter-holscript.pc" @ONLY) + +include(GNUInstallDirs) + +install(FILES bindings/c/tree-sitter-holscript.h + DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/tree_sitter") +install(FILES "${CMAKE_CURRENT_BINARY_DIR}/tree-sitter-holscript.pc" + DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/pkgconfig") +install(TARGETS tree-sitter-holscript + LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}") + +add_custom_target(test "${TREE_SITTER_CLI}" test + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + COMMENT "tree-sitter test") + +# vim:ft=cmake: diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/Cargo.toml b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/Cargo.toml new file mode 100644 index 0000000000..ee295a8ec5 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/Cargo.toml @@ -0,0 +1,27 @@ +[package] +name = "tree-sitter-holscript" +description = "HOLScript grammar for tree-sitter" +version = "0.1.0" +authors = ["Daniel Nezamabadi"] +license = "MIT" +readme = "README.md" +keywords = ["incremental", "parsing", "tree-sitter", "holscript"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/hol-theorem-prover/hol/" +edition = "2021" +autoexamples = false + +build = "bindings/rust/build.rs" +include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] + +[lib] +path = "bindings/rust/lib.rs" + +[dependencies] +tree-sitter-language = "0.1" + +[build-dependencies] +cc = "1.1.22" + +[dev-dependencies] +tree-sitter = "0.24.3" diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/Makefile b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/Makefile new file mode 100644 index 0000000000..574245a7d2 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/Makefile @@ -0,0 +1,94 @@ +ifeq ($(OS),Windows_NT) +$(error Windows is not supported) +endif + +LANGUAGE_NAME := tree-sitter-holscript +HOMEPAGE_URL := https://github.com/hol-theorem-prover/hol/ +VERSION := 0.1.0 + +# repository +SRC_DIR := src + +TS ?= tree-sitter + +# install directory layout +PREFIX ?= /usr/local +INCLUDEDIR ?= $(PREFIX)/include +LIBDIR ?= $(PREFIX)/lib +PCLIBDIR ?= $(LIBDIR)/pkgconfig + +# source/object files +PARSER := $(SRC_DIR)/parser.c +EXTRAS := $(filter-out $(PARSER),$(wildcard $(SRC_DIR)/*.c)) +OBJS := $(patsubst %.c,%.o,$(PARSER) $(EXTRAS)) + +# flags +ARFLAGS ?= rcs +override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC + +# ABI versioning +SONAME_MAJOR = $(shell sed -n 's/\#define LANGUAGE_VERSION //p' $(PARSER)) +SONAME_MINOR = $(word 1,$(subst ., ,$(VERSION))) + +# OS-specific bits +ifeq ($(shell uname),Darwin) + SOEXT = dylib + SOEXTVER_MAJOR = $(SONAME_MAJOR).$(SOEXT) + SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).$(SOEXT) + LINKSHARED = -dynamiclib -Wl,-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SOEXTVER),-rpath,@executable_path/../Frameworks +else + SOEXT = so + SOEXTVER_MAJOR = $(SOEXT).$(SONAME_MAJOR) + SOEXTVER = $(SOEXT).$(SONAME_MAJOR).$(SONAME_MINOR) + LINKSHARED = -shared -Wl,-soname,lib$(LANGUAGE_NAME).$(SOEXTVER) +endif +ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) + PCLIBDIR := $(PREFIX)/libdata/pkgconfig +endif + +all: lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) $(LANGUAGE_NAME).pc + +lib$(LANGUAGE_NAME).a: $(OBJS) + $(AR) $(ARFLAGS) $@ $^ + +lib$(LANGUAGE_NAME).$(SOEXT): $(OBJS) + $(CC) $(LDFLAGS) $(LINKSHARED) $^ $(LDLIBS) -o $@ +ifneq ($(STRIP),) + $(STRIP) $@ +endif + +$(LANGUAGE_NAME).pc: bindings/c/$(LANGUAGE_NAME).pc.in + sed -e 's|@PROJECT_VERSION@|$(VERSION)|' \ + -e 's|@CMAKE_INSTALL_LIBDIR@|$(LIBDIR:$(PREFIX)/%=%)|' \ + -e 's|@CMAKE_INSTALL_INCLUDEDIR@|$(INCLUDEDIR:$(PREFIX)/%=%)|' \ + -e 's|@PROJECT_DESCRIPTION@|$(DESCRIPTION)|' \ + -e 's|@PROJECT_HOMEPAGE_URL@|$(HOMEPAGE_URL)|' \ + -e 's|@CMAKE_INSTALL_PREFIX@|$(PREFIX)|' $< > $@ + +$(PARSER): $(SRC_DIR)/grammar.json + $(TS) generate $^ + +install: all + install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' + install -m644 bindings/c/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h + install -m644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + install -m644 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a + install -m755 lib$(LANGUAGE_NAME).$(SOEXT) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) + +uninstall: + $(RM) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) \ + '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h \ + '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + +clean: + $(RM) $(OBJS) $(LANGUAGE_NAME).pc lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) + +test: + $(TS) test + +.PHONY: all install uninstall clean test diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/Package.swift b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/Package.swift new file mode 100644 index 0000000000..8b32ac2f54 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/Package.swift @@ -0,0 +1,37 @@ +// swift-tools-version:5.3 +import PackageDescription + +let package = Package( + name: "TreeSitterHolscript", + products: [ + .library(name: "TreeSitterHolscript", targets: ["TreeSitterHolscript"]), + ], + dependencies: [ + .package(url: "https://github.com/ChimeHQ/SwiftTreeSitter", from: "0.8.0"), + ], + targets: [ + .target( + name: "TreeSitterHolscript", + dependencies: [], + path: ".", + sources: [ + "src/parser.c", + // NOTE: if your language has an external scanner, add it here. + ], + resources: [ + .copy("queries") + ], + publicHeadersPath: "bindings/swift", + cSettings: [.headerSearchPath("src")] + ), + .testTarget( + name: "TreeSitterHolscriptTests", + dependencies: [ + "SwiftTreeSitter", + "TreeSitterHolscript", + ], + path: "bindings/swift/TreeSitterHolscriptTests" + ) + ], + cLanguageStandard: .c11 +) diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/binding.gyp b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/binding.gyp new file mode 100644 index 0000000000..cd5baa0ce1 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/binding.gyp @@ -0,0 +1,30 @@ +{ + "targets": [ + { + "target_name": "tree_sitter_holscript_binding", + "dependencies": [ + " + +typedef struct TSLanguage TSLanguage; + +extern "C" TSLanguage *tree_sitter_holscript(); + +// "tree-sitter", "language" hashed with BLAKE2 +const napi_type_tag LANGUAGE_TYPE_TAG = { + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 +}; + +Napi::Object Init(Napi::Env env, Napi::Object exports) { + exports["name"] = Napi::String::New(env, "holscript"); + auto language = Napi::External::New(env, tree_sitter_holscript()); + language.TypeTag(&LANGUAGE_TYPE_TAG); + exports["language"] = language; + return exports; +} + +NODE_API_MODULE(tree_sitter_holscript_binding, Init) diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/node/binding_test.js b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/node/binding_test.js new file mode 100644 index 0000000000..afede30a7b --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/node/binding_test.js @@ -0,0 +1,9 @@ +/// + +const assert = require("node:assert"); +const { test } = require("node:test"); + +test("can load grammar", () => { + const parser = new (require("tree-sitter"))(); + assert.doesNotThrow(() => parser.setLanguage(require("."))); +}); diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/node/index.d.ts b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/node/index.d.ts new file mode 100644 index 0000000000..efe259eed0 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/node/index.d.ts @@ -0,0 +1,28 @@ +type BaseNode = { + type: string; + named: boolean; +}; + +type ChildNode = { + multiple: boolean; + required: boolean; + types: BaseNode[]; +}; + +type NodeInfo = + | (BaseNode & { + subtypes: BaseNode[]; + }) + | (BaseNode & { + fields: { [name: string]: ChildNode }; + children: ChildNode[]; + }); + +type Language = { + name: string; + language: unknown; + nodeTypeInfo: NodeInfo[]; +}; + +declare const language: Language; +export = language; diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/node/index.js b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/node/index.js new file mode 100644 index 0000000000..6657bcf42d --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/node/index.js @@ -0,0 +1,7 @@ +const root = require("path").join(__dirname, "..", ".."); + +module.exports = require("node-gyp-build")(root); + +try { + module.exports.nodeTypeInfo = require("../../src/node-types.json"); +} catch (_) {} diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tests/test_binding.py b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tests/test_binding.py new file mode 100644 index 0000000000..ab82006cd7 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tests/test_binding.py @@ -0,0 +1,11 @@ +from unittest import TestCase + +import tree_sitter, tree_sitter_holscript + + +class TestLanguage(TestCase): + def test_can_load_grammar(self): + try: + tree_sitter.Language(tree_sitter_holscript.language()) + except Exception: + self.fail("Error loading Holscript grammar") diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tree_sitter_holscript/__init__.py b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tree_sitter_holscript/__init__.py new file mode 100644 index 0000000000..7fda7dfb25 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tree_sitter_holscript/__init__.py @@ -0,0 +1,42 @@ +"""HOLScript grammar for tree-sitter""" + +from importlib.resources import files as _files + +from ._binding import language + + +def _get_query(name, file): + query = _files(f"{__package__}.queries") / file + globals()[name] = query.read_text() + return globals()[name] + + +def __getattr__(name): + # NOTE: uncomment these to include any queries that this grammar contains: + + # if name == "HIGHLIGHTS_QUERY": + # return _get_query("HIGHLIGHTS_QUERY", "highlights.scm") + # if name == "INJECTIONS_QUERY": + # return _get_query("INJECTIONS_QUERY", "injections.scm") + # if name == "LOCALS_QUERY": + # return _get_query("LOCALS_QUERY", "locals.scm") + # if name == "TAGS_QUERY": + # return _get_query("TAGS_QUERY", "tags.scm") + + raise AttributeError(f"module {__name__!r} has no attribute {name!r}") + + +__all__ = [ + "language", + # "HIGHLIGHTS_QUERY", + # "INJECTIONS_QUERY", + # "LOCALS_QUERY", + # "TAGS_QUERY", +] + + +def __dir__(): + return sorted(__all__ + [ + "__all__", "__builtins__", "__cached__", "__doc__", "__file__", + "__loader__", "__name__", "__package__", "__path__", "__spec__", + ]) diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tree_sitter_holscript/__init__.pyi b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tree_sitter_holscript/__init__.pyi new file mode 100644 index 0000000000..abf6633f32 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tree_sitter_holscript/__init__.pyi @@ -0,0 +1,10 @@ +from typing import Final + +# NOTE: uncomment these to include any queries that this grammar contains: + +# HIGHLIGHTS_QUERY: Final[str] +# INJECTIONS_QUERY: Final[str] +# LOCALS_QUERY: Final[str] +# TAGS_QUERY: Final[str] + +def language() -> object: ... diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tree_sitter_holscript/binding.c b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tree_sitter_holscript/binding.c new file mode 100644 index 0000000000..2f04d27fa3 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tree_sitter_holscript/binding.c @@ -0,0 +1,27 @@ +#include + +typedef struct TSLanguage TSLanguage; + +TSLanguage *tree_sitter_holscript(void); + +static PyObject* _binding_language(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(args)) { + return PyCapsule_New(tree_sitter_holscript(), "tree_sitter.Language", NULL); +} + +static PyMethodDef methods[] = { + {"language", _binding_language, METH_NOARGS, + "Get the tree-sitter language for this grammar."}, + {NULL, NULL, 0, NULL} +}; + +static struct PyModuleDef module = { + .m_base = PyModuleDef_HEAD_INIT, + .m_name = "_binding", + .m_doc = NULL, + .m_size = -1, + .m_methods = methods +}; + +PyMODINIT_FUNC PyInit__binding(void) { + return PyModule_Create(&module); +} diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tree_sitter_holscript/py.typed b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/python/tree_sitter_holscript/py.typed new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/rust/build.rs b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/rust/build.rs new file mode 100644 index 0000000000..6732794ae3 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/rust/build.rs @@ -0,0 +1,22 @@ +fn main() { + let src_dir = std::path::Path::new("src"); + + let mut c_config = cc::Build::new(); + c_config.std("c11").include(src_dir); + + #[cfg(target_env = "msvc")] + c_config.flag("-utf-8"); + + let parser_path = src_dir.join("parser.c"); + c_config.file(&parser_path); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + + // NOTE: if your language uses an external scanner, uncomment this block: + /* + let scanner_path = src_dir.join("scanner.c"); + c_config.file(&scanner_path); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + */ + + c_config.compile("tree-sitter-holscript"); +} diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/rust/lib.rs b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/rust/lib.rs new file mode 100644 index 0000000000..16beee3ba1 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/rust/lib.rs @@ -0,0 +1,53 @@ +//! This crate provides Holscript language support for the [tree-sitter][] parsing library. +//! +//! Typically, you will use the [LANGUAGE][] constant to add this language to a +//! tree-sitter [Parser][], and then use the parser to parse some code: +//! +//! ``` +//! let code = r#" +//! "#; +//! let mut parser = tree_sitter::Parser::new(); +//! let language = tree_sitter_holscript::LANGUAGE; +//! parser +//! .set_language(&language.into()) +//! .expect("Error loading Holscript parser"); +//! let tree = parser.parse(code, None).unwrap(); +//! assert!(!tree.root_node().has_error()); +//! ``` +//! +//! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html +//! [tree-sitter]: https://tree-sitter.github.io/ + +use tree_sitter_language::LanguageFn; + +extern "C" { + fn tree_sitter_holscript() -> *const (); +} + +/// The tree-sitter [`LanguageFn`][LanguageFn] for this grammar. +/// +/// [LanguageFn]: https://docs.rs/tree-sitter-language/*/tree_sitter_language/struct.LanguageFn.html +pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_holscript) }; + +/// The content of the [`node-types.json`][] file for this grammar. +/// +/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types +pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); + +// NOTE: uncomment these to include any queries that this grammar contains: + +// pub const HIGHLIGHTS_QUERY: &str = include_str!("../../queries/highlights.scm"); +// pub const INJECTIONS_QUERY: &str = include_str!("../../queries/injections.scm"); +// pub const LOCALS_QUERY: &str = include_str!("../../queries/locals.scm"); +// pub const TAGS_QUERY: &str = include_str!("../../queries/tags.scm"); + +#[cfg(test)] +mod tests { + #[test] + fn test_can_load_grammar() { + let mut parser = tree_sitter::Parser::new(); + parser + .set_language(&super::LANGUAGE.into()) + .expect("Error loading Holscript parser"); + } +} diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/swift/TreeSitterHolscript/holscript.h b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/swift/TreeSitterHolscript/holscript.h new file mode 100644 index 0000000000..8d1c60acd1 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/swift/TreeSitterHolscript/holscript.h @@ -0,0 +1,16 @@ +#ifndef TREE_SITTER_HOLSCRIPT_H_ +#define TREE_SITTER_HOLSCRIPT_H_ + +typedef struct TSLanguage TSLanguage; + +#ifdef __cplusplus +extern "C" { +#endif + +const TSLanguage *tree_sitter_holscript(void); + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_HOLSCRIPT_H_ diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/swift/TreeSitterHolscriptTests/TreeSitterHolscriptTests.swift b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/swift/TreeSitterHolscriptTests/TreeSitterHolscriptTests.swift new file mode 100644 index 0000000000..a1991074f1 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/bindings/swift/TreeSitterHolscriptTests/TreeSitterHolscriptTests.swift @@ -0,0 +1,12 @@ +import XCTest +import SwiftTreeSitter +import TreeSitterHolscript + +final class TreeSitterHolscriptTests: XCTestCase { + func testCanLoadGrammar() throws { + let parser = Parser() + let language = Language(language: tree_sitter_holscript()) + XCTAssertNoThrow(try parser.setLanguage(language), + "Error loading Holscript grammar") + } +} diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/go.mod b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/go.mod new file mode 100644 index 0000000000..bb11aeb251 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/go.mod @@ -0,0 +1,5 @@ +module github.com/hol-theorem-prover/hol/ + +go 1.22 + +require github.com/tree-sitter/go-tree-sitter v0.23.1 diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/grammar.js b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/grammar.js new file mode 100644 index 0000000000..145aef8110 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/grammar.js @@ -0,0 +1,1280 @@ +/** + * @file HOLScript grammar for tree-sitter + * @author Daniel Nezamabadi + * @license MIT + */ + +// Adapted tree-sitter-sml by Matthew Fluet, released under the MIT license. + +/* eslint-disable require-jsdoc */ + +/// +// @ts-check + +// ******************************************************** // +// Extensions +// ******************************************************** // + +const EXTENSIONS = true; + +function ifExtElse(ext, resExt, resStd) { + if (Array.isArray(EXTENSIONS) ? + (Array.isArray(ext) ? + ext.some((ext) => EXTENSIONS.includes(ext)) : + EXTENSIONS.includes(ext)) : + EXTENSIONS) { + return resExt; + } else { + return resStd; + } +} + +function ifExtAlt(ext, resExt) { + return ifExtElse(ext, resExt, choice()); +} +function ifExtOpt(ext, resExt) { + return ifExtElse(ext, optional(resExt), blank()); +} + +const optBar = ifExtOpt('optBar', '|'); + +// ******************************************************** // +// Regular Expressions for Constants +// ******************************************************** // + +const decDigitRE = '[0-9]'; +const decNumRE = ifExtElse( + 'extendedNumConst', + `${decDigitRE}(?:_*${decDigitRE})*`, + `${decDigitRE}+`, +); +const hexDigitRE = '[A-Fa-f0-9]'; +const hexNumRE = ifExtElse( + 'extendedNumConst', + `${hexDigitRE}(?:_*${hexDigitRE})*`, + `${hexDigitRE}+`, +); +const binDigitRE = '[01]'; +const binNumRE = ifExtElse( + 'extendedNumConst', + `${binDigitRE}(?:_*${binDigitRE})*`, + `${binDigitRE}+`, +); +const integerConstRE = ifExtElse( + 'extendedNumConst', + `~?${decNumRE}|~?0x${hexNumRE}|~?0b${binNumRE}`, + `~?${decNumRE}|~?0x${hexNumRE}`, +); +const wordConstRE = ifExtElse( + 'extendedNumConst', + `0w${decNumRE}|0wx${hexNumRE}|0wb${binNumRE}`, + `0w${decNumRE}|0wx${hexNumRE}`, +); +const fracRE = `[.]${decNumRE}`; +const expRE = `[eE]~?${decNumRE}`; +const realConstRE = `~?${decNumRE}${fracRE}(?:${expRE})?|~?${decNumRE}(?:${fracRE})?${expRE}`; + +const stringConstRE = '"(?:[^"\\\\]|\\\\[^\\s]|\\\\\\s*\\\\)*"'; +const charConstRE = '#"(?:[^"\\\\]|\\\\[^\\s]|\\\\\\s*\\\\)*"'; + +// ******************************************************** // +// Regular Expressions Identifiers +// ******************************************************** // + +const alphaNumericIdentSuffixRE = /[A-Za-z0-9_']*/.source; +const alphaAlphaNumericIdentRE = `[A-Za-z]${alphaNumericIdentSuffixRE}`; +const primeAlphaNumericIdentRE = `'${alphaNumericIdentSuffixRE}`; +const symbolicIdentRE = /[!%&$#+\-/:<=>?@\\~`^|*]+/.source; + +// ******************************************************** // +// "Separated By" +// ******************************************************** // + +const commaSep = {name: 'Comma', token: ','}; +const semicolonSep = {name: 'Semicolon', token: ';'}; + +function mkSepByAux(cnt, pre, sep, elt, pst) { + if (cnt > 0) { + return seq( + pre ? sep : blank(), + elt, + mkSepByAux(cnt - 1, true, sep, elt, pst), + ); + } else { + if (pre) { + if (pst) { + return seq(repeat(seq(sep, elt)), pst(true)); + } else { + return repeat(seq(sep, elt)); + } + } else { + if (pst) { + return choice(pst(false), seq(elt, repeat(seq(sep, elt)), pst(true))); + } else { + return optional(seq(elt, repeat(seq(sep, elt)))); + } + } + } +} + +function mkSepByCntFstLst(sep, elt, cnt, fst, lst) { + let optSep = false; let empSep = false; + let preSep; let pstSep; + if (typeof sep === 'string') { + preSep = blank(); + pstSep = blank(); + } else { + if (ifExtElse('emp'.concat(sep.name), true, false)) { + empSep = true; + optSep = true; + } else if (ifExtElse('opt'.concat(sep.name), true, false)) { + optSep = true; + } + sep = sep.token; + if (empSep) { + sep = repeat1(sep); + } + if (optSep) { + preSep = optional(sep); + pstSep = optional(sep); + } else { + preSep = blank(); + pstSep = blank(); + } + } + + let pst; + if (lst) { + pst = (pre) => { + if (lst.rqd) { + if (pre) { + return seq(sep, lst.elt, pstSep); + } else { + return seq(lst.elt, pstSep); + } + } else { + if (pre) { + return seq(optional(seq(sep, lst.elt)), pstSep); + } else { + return optional(seq(lst.elt, pstSep)); + } + } + }; + } else if (optSep) { + pst = (pre) => { + if (pre) { + return pstSep; + } else { + return blank(); + } + }; + } else { + pst = false; + }; + + if (fst) { + if (fst.rqd) { + return seq(preSep, fst.elt, mkSepByAux(cnt, true, sep, elt, pst)); + } else { + return choice( + seq(preSep, fst.elt, mkSepByAux(cnt, true, sep, elt, pst)), + seq(preSep, mkSepByAux(cnt, false, sep, elt, pst)), + ); + } + } else { + return seq(preSep, mkSepByAux(cnt, false, sep, elt, pst)); + }; +} + +// function mkSepByCnt(sep, elt, cnt) { +// return mkSepByCntFstLst(sep, elt, cnt, false, false); +// } + +function mkSepBy(sep, elt, cnt) { + return mkSepByCntFstLst(sep, elt, 0, false, false); +} + +function mkSepBy1(sep, elt, cnt) { + return mkSepByCntFstLst(sep, elt, 1, false, false); +} + +function mkSepBy2(sep, elt, cnt) { + return mkSepByCntFstLst(sep, elt, 2, false, false); +} + +function mkBrakSepByCntFstLst(opn, sep, elt, cnt, fst, lst, cls) { + return seq(opn, mkSepByCntFstLst(sep, elt, cnt, fst, lst), cls); +} + +function mkBrakSepBy(opn, sep, elt, cls) { + return seq(opn, mkSepBy(sep, elt), cls); +} + +function mkBrakSepBy1(opn, sep, elt, cls) { + return seq(opn, mkSepBy1(sep, elt), cls); +} + +function mkSeqAux(clsSing, clsSep) { + return choice(clsSing, mkBrakSepBy1('(', ',', clsSep, ')')); +} + +function mkSeq(cls) { + return mkSeqAux(cls, cls); +} + +// ******************************************************** // +// Grammar +// ******************************************************** // + +module.exports = grammar({ + name: 'holscript', + + extras: $ => [ + /\s+/, + $.block_comment, + ...ifExtElse('lineComment', [$.line_comment], []), + ], + + externals: $ => [ + $.block_comment, + $.line_comment, + ], + + supertypes: $ => [ + $._scon, + $._exp, + $._dec, + $._pat, + $._ty, + $._strexp, + $._strdec, + $._sigexp, + $._sigdec, + $._spec, + $._fctdec, + $._topdec, + ], + + inline: $ => [ + ], + + conflicts: $ => [ + [ + // Two tokens of lookahead required. + $.wheretype_sigexp, + ], + // HOL + [$.hol_pcons, $.hol_ptuple] + ], + + // HACK Causes problem when we add HOL things + // word: $ => $._alphaAlphaNumeric_ident, + + rules: { + source_file: $ => optional($._program), + + comment: $ => choice( + $.block_comment, + ifExtAlt('lineComment', $.line_comment), + ), + + // ******************************************************** // + // Special Constants + // ******************************************************** // + + _scon: $ => choice( + $.integer_scon, + $.word_scon, + $.real_scon, + $.string_scon, + $.char_scon, + ), + + integer_scon: $ => new RegExp(integerConstRE), + word_scon: $ => new RegExp(wordConstRE), + real_scon: $ => new RegExp(realConstRE), + string_scon: $ => new RegExp(stringConstRE), + char_scon: $ => new RegExp(charConstRE), + + // ******************************************************** // + // Identifier Classes (Core) + // ******************************************************** // + + _alphaAlphaNumeric_ident: $ => new RegExp(alphaAlphaNumericIdentRE), + _primeAlphaNumeric_ident: $ => new RegExp(primeAlphaNumericIdentRE), + _symbolic_ident: $ => new RegExp(symbolicIdentRE), + + tyvar: $ => choice($._primeAlphaNumeric_ident), + tyvarseq: $ => mkSeq($.tyvar), + vid: $ => choice($._alphaAlphaNumeric_ident, $._symbolic_ident), + longvid: $ => seq(repeat(seq($.strid, '.')), $.vid), + tycon: $ => choice($._alphaAlphaNumeric_ident, $._symbolic_ident), + longtycon: $ => seq(repeat(seq($.strid, '.')), $.tycon), + lab: $ => choice($._alphaAlphaNumeric_ident, $._symbolic_ident, /[1-9][0-9]*/), + + // ******************************************************** // + // Expressions and Matches (Core) + // ******************************************************** // + + _atexp: $ => choice( + $.scon_exp, + $.vid_exp, + $.record_exp, + $.recordsel_exp, + $.unit_exp, + $.tuple_exp, + $.list_exp, + ifExtAlt('vectorExp', $.vec_exp), + $.sequence_exp, + $.let_exp, + $.paren_exp, + // HOL + $.quoted_term, + $.quoted_type, + $.backquote + ), + + scon_exp: $ => $._scon, + vid_exp: $ => seq(optional('op'), $.longvid), + record_exp: $ => mkBrakSepByCntFstLst( + '{', + commaSep, + $._exprow, 0, + false, + ifExtElse('recordExt', {elt: $.ellipsis_exprow, rqd: false}, false), + '}', + ), + _exprow: $ => choice( + $.exprow, + ifExtAlt('recordExpPun', $.labvar_exprow), + ), + exprow: $ => seq($.lab, '=', $._exp), + labvar_exprow: $ => seq($.vid, optional(seq(':', $._ty))), + ellipsis_exprow: $ => seq('...', '=', $._exp), + recordsel_exp: $ => seq('#', $.lab), + unit_exp: $ => prec(1, seq('(', ')')), + tuple_exp: $ => mkBrakSepBy('(', commaSep, $._exp, ')'), + list_exp: $ => mkBrakSepByCntFstLst( + '[', + commaSep, + $._exp, 0, + false, + ifExtElse('listEllipsis', {elt: $.ellipsis_listexp, rqd: false}, false), + ']', + ), + ellipsis_listexp: $ => seq('...', '=', $._exp), + vec_exp: $ => mkBrakSepBy('#[', commaSep, $._exp, ']'), + sequence_exp: $ => mkBrakSepBy('(', semicolonSep, $._exp, ')'), + let_exp: $ => seq( + 'let', + repeat(choice(';', field('dec', $._dec))), + 'in', + mkSepBy1(semicolonSep, field('body', $._exp)), + 'end', + ), + paren_exp: $ => prec(1, seq('(', $._exp, ')')), + + // The Definition orders by decreasing precedence + _exp: $ => choice( + $._atexp, + $.app_exp, + $.typed_exp, + $.conj_exp, + $.disj_exp, + $.handle_exp, + $.raise_exp, + $.cond_exp, + $.iter_exp, + $.case_exp, + $.fn_exp, + ), + + app_exp: $ => prec(10, seq($._atexp, repeat1($._atexp))), + typed_exp: $ => prec(9, seq($._exp, ':', $._ty)), + conj_exp: $ => prec.left(8, seq($._exp, 'andalso', $._exp)), + disj_exp: $ => prec.left(7, seq($._exp, 'orelse', $._exp)), + handle_exp: $ => prec(6, seq($._exp, 'handle', $._match)), + raise_exp: $ => prec(5, seq('raise', $._exp)), + cond_exp: $ => prec.right(4, seq( + 'if', field('if_exp', $._exp), + 'then', field('then_exp', $._exp), + ifExtElse('optElse', + optional(seq('else', field('else_exp', $._exp))), + seq('else', field('else_exp', $._exp))), + )), + iter_exp: $ => prec(3, seq('while', field('while_exp', $._exp), 'do', field('do_exp', $._exp))), + case_exp: $ => prec(2, seq('case', $._exp, 'of', $._match)), + fn_exp: $ => prec(1, seq('fn', $._match)), + + _match: $ => prec.right(seq(optBar, mkSepBy1('|', $.mrule))), + mrule: $ => seq($._pat, '=>', $._exp), + + // ******************************************************** // + // Declarations and Bindings (Core) + // ******************************************************** // + + _dec: $ => choice( + $._dec_no_local, + $.local_dec, + ), + _dec_no_local: $ => choice( + ifExtAlt('doDec', $.do_dec), + $.val_dec, + $.fun_dec, + $.type_dec, + $.datatype_dec, + $.datarepl_dec, + $.abstype_dec, + $.exception_dec, + // $.local_dec, + $.open_dec, + $.infix_dec, + $.infixr_dec, + $.nonfix_dec, + ), + + do_dec: $ => seq('do', $._exp), + + val_dec: $ => seq( + 'val', + optional('rec'), + optional($.tyvarseq), + $._valbind, + ), + _valbind: $ => mkSepBy1('and', $.valbind), + valbind: $ => seq(field('pat', $._pat), '=', field('def', $._exp)), + + fun_dec: $ => seq( + 'fun', + optional($.tyvarseq), + $._fvalbind, + ), + _fvalbind: $ => mkSepBy1('and', $.fvalbind), + fvalbind: $ => $._fmatch, + _fmatch: $ => seq(optBar, mkSepBy1('|', $.fmrule)), + fmrule: $ => seq( + choice( + prec(2, seq(optional('op'), field('name', $.vid), repeat1(field('arg', $._atpat)))), + prec(2, seq('(', field('argl', $._atpat), field('name', $.vid), field('argr', $._atpat), ')', repeat(field('arg', $._atpat)))), + prec(0, seq(field('argl', $._atpat), field('name', $.vid), field('argr', $._atpat))), + ), + optional(seq(':', field('ty', $._ty))), + '=', + field('def', $._exp), + ), + + type_dec: $ => seq('type', $._typbind), + _typbind: $ => mkSepBy1('and', $.typbind), + typbind: $ => seq( + optional($.tyvarseq), + field('name', $.tycon), + '=', + field('def', $._ty), + ), + + datatype_dec: $ => seq( + 'datatype', + $._datbind, + optional(seq('withtype', field('withtype', $._typbind))), + ), + _datbind: $ => mkSepBy1('and', $.datbind), + datbind: $ => seq( + optional($.tyvarseq), + field('name', $.tycon), + '=', + field('def', $._conbind), + ), + _conbind: $ => seq(optBar, mkSepBy1('|', $.conbind)), + conbind: $ => seq( + seq(optional('op'), field('name', $.vid)), + optional(seq('of', field('ty', $._ty))), + ), + + datarepl_dec: $ => seq( + 'datatype', + field('name', $.tycon), + '=', + 'datatype', + field('def', $.longtycon), + ), + + abstype_dec: $ => seq( + 'abstype', + $._datbind, + optional(seq('withtype', field('withtype', $._typbind))), + 'with', + repeat(choice(';', field('dec', $._dec))), + 'end', + ), + + exception_dec: $ => seq('exception', $._exbind), + _exbind: $ => mkSepBy1('and', $.exbind), + exbind: $ => choice( + seq( + seq(optional('op'), field('name', $.vid)), + optional(seq('of', field('ty', $._ty))), + ), + seq( + seq(optional('op'), field('name', $.vid)), + '=', + seq(optional('op'), field('def', $.longvid)), + ), + ), + + local_dec: $ => seq( + 'local', + repeat(choice(';', field('dec', $._dec))), + 'in', + repeat(choice(';', field('body', $._dec))), + 'end', + ), + + open_dec: $ => seq('open', repeat1($.longstrid)), + + infix_dec: $ => seq('infix', optional(/[0-9]/), repeat1($.vid)), + infixr_dec: $ => seq('infixr', optional(/[0-9]/), repeat1($.vid)), + nonfix_dec: $ => seq('nonfix', repeat1($.vid)), + + // ******************************************************** // + // Patterns (Core) + // ******************************************************** // + + _atpat: $ => choice( + $.wildcard_pat, + $.scon_pat, + $.vid_pat, + $.record_pat, + $.unit_pat, + $.tuple_pat, + $.list_pat, + ifExtAlt('vectorPat', $.vec_pat), + $.paren_pat, + ), + + wildcard_pat: $ => '_', + scon_pat: $ => $._scon, + vid_pat: $ => seq(optional('op'), $.longvid), + record_pat: $ => mkBrakSepByCntFstLst( + '{', + commaSep, + $._patrow, 0, + false, + {elt: $.ellipsis_patrow, rqd: false}, + '}', + ), + _patrow: $ => choice($.patrow, $.labvar_patrow), + patrow: $ => seq($.lab, '=', $._pat), + labvar_patrow: $ => seq( + $.vid, + optional(seq(':', $._ty)), + optional(seq('as', $._pat)), + ), + ellipsis_patrow: $ => seq('...', ifExtOpt('recordExt', seq('=', $._pat))), + unit_pat: $ => prec(1, seq('(', ')')), + tuple_pat: $ => mkBrakSepBy('(', commaSep, $._pat, ')'), + list_pat: $ => mkBrakSepByCntFstLst( + '[', + commaSep, + $._pat, 0, + false, + ifExtElse('listEllipsis', {elt: $.ellipsis_listpat, rqd: false}, false), + ']'), + ellipsis_listpat: $ => seq('...', '=', $._pat), + vec_pat: $ => mkBrakSepBy('#[', commaSep, $._pat, ')'), + paren_pat: $ => prec(1, seq('(', $._pat, ')')), + + // The Definition orders by decreasing precedence + _pat: $ => choice( + $._atpat, + $.app_pat, + $.typed_pat, + ifExtElse('conjPat', $.conj_pat, $.as_pat), + ifExtAlt(['orPat', 'disjPat'], $.disj_pat), + ), + + app_pat: $ => prec(4, seq($._atpat, repeat1($._atpat))), + typed_pat: $ => prec(3, seq($._pat, ':', $._ty)), + as_pat: $ => prec.right(2, seq(optional('op'), $.vid, optional(seq(':', $._ty)), 'as', $._pat)), + conj_pat: $ => prec.right(2, seq($._pat, 'as', $._pat)), + disj_pat: $ => prec.left(1, seq($._pat, '|', $._pat)), + + // ******************************************************** // + // Type expressions (Core) + // ******************************************************** // + + _ty: $ => $._fn_ty, + tyseq: $ => mkSeqAux($._atty, $._ty), + + _fn_ty: $ => choice($.fn_ty, $._tuple_ty), + fn_ty: $ => seq($._tuple_ty, '->', $._fn_ty), + + _tuple_ty: $ => choice($.tuple_ty, $._paren_ty), + tuple_ty: $ => mkSepBy2('*', $._paren_ty), + + _paren_ty: $ => choice($.paren_ty, $._atty), + paren_ty: $ => seq('(', $._ty, ')'), + + _atty: $ => choice( + $.tyvar_ty, + $.record_ty, + $.tycon_ty, + ), + + tyvar_ty: $ => $.tyvar, + record_ty: $ => mkBrakSepByCntFstLst( + '{', + commaSep, + $.tyrow, 0, + false, + ifExtElse('recordExt', {elt: $.ellipsis_tyrow, rqd: false}, false), + '}', + ), + tyrow: $ => seq($.lab, ':', $._ty), + ellipsis_tyrow: $ => seq('...', ':', $._ty), + tycon_ty: $ => seq( + optional($.tyseq), + $.longtycon, + ), + + // ******************************************************** // + // Identifier Classes (Modules) + // ******************************************************** // + + strid: $ => choice($._alphaAlphaNumeric_ident), + longstrid: $ => seq(repeat(seq($.strid, '.')), $.strid), + sigid: $ => choice($._alphaAlphaNumeric_ident), + fctid: $ => choice($._alphaAlphaNumeric_ident), + + // ******************************************************** // + // Structure Expressions (Modules) + // ******************************************************** // + + _strexp: $ => choice( + $.struct_strexp, + $.strid_strexp, + $.constr_strexp, + $.fctapp_strexp, + $.let_strexp, + ), + + struct_strexp: $ => seq( + 'struct', + repeat(choice(';', field('strdec', $._strdec))), + 'end', + ), + strid_strexp: $ => $.longstrid, + constr_strexp: $ => seq($._strexp, choice(':', ':>'), $._sigexp), + fctapp_strexp: $ => seq( + field('name', $.fctid), + '(', + field('arg', + choice( + $._strexp, + repeat(choice(';', $._strdec)), + ), + ), + ')', + ), + let_strexp: $ => seq( + 'let', + repeat(choice(';', field('dec', $._strdec))), + 'in', + field('body', $._strexp), + 'end', + ), + + _strdec: $ => choice( + $._dec_no_local, + $.structure_strdec, + $.local_strdec, + ), + + structure_strdec: $ => seq('structure', $._strbind), + _strbind: $ => mkSepBy1('and', $.strbind), + strbind: $ => seq( + field('name', $.strid), + optional(seq(choice(':', ':>'), field('sig', $._sigexp))), + '=', + field('def', $._strexp), + ), + + local_strdec: $ => seq( + 'local', + repeat(choice(';', field('dec', $._strdec))), + 'in', + repeat(choice(';', field('body', $._strdec))), + 'end', + ), + + // ******************************************************** // + // Signature Expressions (Modules) + // ******************************************************** // + + _sigexp: $ => choice( + $.sig_sigexp, + $.sigid_sigexp, + $.wheretype_sigexp, + ), + + sig_sigexp: $ => seq( + 'sig', + repeat(choice(';', field('spec', $._spec))), + 'end', + ), + sigid_sigexp: $ => $.sigid, + wheretype_sigexp: $ => seq( + $._sigexp, + 'where', + mkSepBy1('and', seq( + 'type', + optional($.tyvarseq), + $.longtycon, + '=', + $._ty, + )), + ), + + _sigdec: $ => choice( + $.signature_sigdec, + ), + signature_sigdec: $ => seq('signature', $._sigbind), + _sigbind: $ => mkSepBy1('and', $.sigbind), + sigbind: $ => seq( + field('name', $.sigid), + '=', + field('def', $._sigexp), + ), + + // ******************************************************** // + // Specifications (Modules) + // ******************************************************** // + + _spec: $ => choice( + $.val_spec, + $.type_spec, + $.eqtype_spec, + $.datatype_spec, + $.datarepl_spec, + $.exception_spec, + $.structure_spec, + $.include_spec, + $.sharingtype_spec, + $.sharing_spec, + ), + + val_spec: $ => seq('val', $._valdesc), + _valdesc: $ => mkSepBy1('and', $.valdesc), + valdesc: $ => seq(field('name', $.vid), ':', field('ty', $._ty)), + + type_spec: $ => seq('type', choice($._typedesc, $._typbind)), + _typedesc: $ => mkSepBy1('and', $.typedesc), + typedesc: $ => seq( + optional($.tyvarseq), + field('name', $.tycon), + ), + + eqtype_spec: $ => seq('eqtype', $._typedesc), + + datatype_spec: $ => seq( + 'datatype', + $._datdesc, + ifExtOpt('sigWithtype', seq('withtype', field('withtype', $._typbind))), + ), + _datdesc: $ => mkSepBy1('and', $.datdesc), + datdesc: $ => seq( + optional($.tyvarseq), + field('name', $.tycon), + '=', + field('def', $._condesc), + ), + _condesc: $ => seq(optBar, mkSepBy1('|', $.condesc)), + condesc: $ => seq( + field('name', $.vid), + optional(seq('of', field('ty', $._ty))), + ), + + datarepl_spec: $ => seq( + 'datatype', + field('name', $.tycon), + '=', + 'datatype', + field('def', $.longtycon), + ), + + exception_spec: $ => seq('exception', $._exdesc), + _exdesc: $ => mkSepBy1('and', $.exdesc), + exdesc: $ => seq( + field('name', $.vid), + optional(seq('of', field('ty', $._ty))), + ), + + structure_spec: $ => seq('structure', $._strdesc), + _strdesc: $ => mkSepBy1('and', $.strdesc), + strdesc: $ => seq(field('name', $.strid), ':', field('sig', $._sigexp)), + + include_spec: $ => seq('include', choice($._sigexp, seq($.sigid, repeat1($.sigid)))), + + sharingtype_spec: $ => seq('sharing', 'type', mkSepBy2('=', $.longtycon)), + + sharing_spec: $ => seq('sharing', mkSepBy2('=', $.longstrid)), + + // ******************************************************** // + // Functors (Modules) + // ******************************************************** // + + _fctdec: $ => choice( + $.functor_fctdec, + ), + functor_fctdec: $ => seq('functor', $._fctbind), + _fctbind: $ => mkSepBy1('and', $.fctbind), + fctbind: $ => seq( + field('name', $.fctid), + '(', + field('arg', + choice( + seq($.strid, ':', $._sigexp), + repeat(choice(';', $._spec)), + ), + ), + ')', + optional(seq(choice(':', ':>'), field('sig', $._sigexp))), + '=', + field('def', $._strexp), + ), + + // ******************************************************** // + // Topdecs + // ******************************************************** // + + _topdec: $ => choice( + $._strdec, + $._sigdec, + $._fctdec, + // HOL + $.hol_definition, + $.hol_definition_with_proof, + $.hol_datatype, + $.hol_theorem_with_proof + ), + + // ******************************************************** // + // Programs + // ******************************************************** // + + _program: $ => seq( + choice(repeat1($._topdec), $._exp), + optional(seq(';', optional($._program))), + ), + + + // ******************************************************** // + // HOL + // ******************************************************** // + antiquoted: $ => choice( + seq('^', '(', $._exp, ')'), + seq('^', alias($._alphaAlphaNumeric_ident, $.sml_variable)) + ), + + quoted_term: $ => seq('“', $._hol_term, '”'), + + quoted_type: $ => seq('“', ':', $._hol_type, '”'), + + _quote_content: $ => choice( + alias(/([^\^`‘’]|\^\^|\^\`)+/, $.quoted), + $.antiquoted + ), + + backquote: $ => choice( + seq('‘', repeat($._quote_content), '’'), + seq('`', repeat($._quote_content), '`'), + ), + + hol_attributes: $ => seq( + '[', + mkSepBy1(',', alias($._alphaAlphaNumeric_ident, $.attribute)), + ']' + ), + + hol_definition: $ => seq( + 'Definition', + alias($._alphaAlphaNumeric_ident, $.hol_defname), + optional($.hol_attributes), + ':', + $.hol_fn_spec, + 'End' + ), + + hol_definition_with_proof: $ => seq( + 'Definition', + alias($._alphaAlphaNumeric_ident, $.hol_defname), + optional($.hol_attributes), + ':', + $.hol_fn_spec, + 'Termination', + $.tactic, + 'End' + ), + + hol_datatype: $ => seq( + 'Datatype:', + $.hol_binding, + 'End' + ), + + hol_theorem_with_proof: $ => seq( + 'Theorem', + alias($._alphaAlphaNumeric_ident, $.hol_thmname), + optional($.hol_attributes), + ':', + alias($._hol_term, $.hol_thmstmt), + 'Proof', + $.tactic, + 'QED' + ), + + // TODO Unsure about this (in particular THEN) + _atomic_tactic: $ => choice( + $._exp, + seq('(', $.THEN, ')') + ), + + tactic: $ => choice( + $._atomic_tactic, + $.THEN + ), + + THEN: $ => prec.left(mkSepBy2('\\\\', $._atomic_tactic)), + + hol_binding: $ => seq( + $.hol_identifier, + '=', + $.hol_constructor + ), + + hol_constructor: $ => mkSepBy1('|', $.hol_clause), + + hol_clause: $ => seq( + $.hol_identifier, + repeat($._hol_ty_spec) + ), + + _hol_ty_spec: $ => choice( + $.hol_atomic_type, + seq('(', $._hol_type ,')') + ), + + hol_fn_spec: $ => choice( + mkSepBy1('∧', choice($.hol_eqn, seq('(', $.hol_eqn, ')'))), + mkSepBy1('\/\\', choice($.hol_eqn, seq('(', $.hol_eqn, ')'))) + ), + + // TODO Sort out precedence levels properly + // NOTE hol_eqn has higher precedence to avoid conjunction being + // "consumed" by the term + hol_eqn: $ => prec(450, seq( + $.hol_identifier, + repeat($.hol_pat), + '=', + alias($._hol_term, $.hol_term))), + + hol_pat: $ => choice( + $._hol_pat, + seq('(', + $._hol_pat, + ':', + alias($._hol_ty_spec, $.hol_pannotation), + ')' + ) + ), + + _hol_pat: $ => choice( + $.hol_variable, + $.hol_wildcard, + $._hol_literal, + $.hol_cname_alphanumeric, + $.hol_pcons, + $.hol_ptuple, + $.hol_plist, + seq('(', $.hol_cname_alphanumeric, repeat1($.hol_pat), ')') + ), + + hol_pcons: $ => seq('(', mkSepBy1('::', $.hol_pat), ')'), + + hol_ptuple: $ => seq('(', mkSepBy1(',', $.hol_pat), ')'), + + hol_plist: $ => seq( + '[', + mkSepBy(';', $.hol_pat), + ']' + ), + + hol_identifier: $ => choice( + $._hol_alphanumeric, + $._hol_symbolic + ), + + hol_wildcard: $ => '_', + + // TODO Missing unicode subscript and superscript + // TODO Make this more readable? + _hol_alphanumeric: $ => /[a-zA-Z\u0370-\u03BA\u03BC-\u03FF][a-zA-Z\u0370-\u03BA\u03BC-\u03FF0-9\'_]*/, + + _hol_symbolic: $ => token( + choice( + // TODO Add support for ^ and ` + repeat1(choice('#', '?', '+', '*', '/', '\\', '=', '<', '>', + '&', '%', '@', '!', ':', '|', '-')), + repeat1('$') + ) + ), + + // HACK trying to disambiguate variables and constructors + // start with uppercase letter + // TODO Maybe just get rid of this and hol_variable + hol_cname_alphanumeric: $ => /[A-Z][a-zA-Z\u0370-\u03BA\u03BC-\u03FF0-9\'_]*/, + + // start with lowercase letter + hol_variable: $ => /[a-z][a-zA-Z\u0370-\u03BA\u03BC-\u03FF0-9\'_]*/, + + _hol_term: $ => choice( + $._hol_literal, + $.hol_tuple, + $.hol_list, + $.hol_set, + $._hol_application_lhs, + $.hol_cond, + $.hol_case, + $.hol_binder, + $.hol_left_unary_term, + $.hol_binary_term, + $.hol_annotated, + prec(2500, seq('(', $._hol_term, ')')) + ), + + // TODO Look into applying this pattern + // https://github.com/tree-sitter/tree-sitter-c/blob/6c7f459ddc0bcf78b615d3a3f4e8fed87b8b3b1b/grammar.js#L1034 + // term_grammar: binders, binary expressions, ... + + _hol_application_lhs: $ => choice( + $.hol_application, + $.hol_identifier, + ), + + // TODO Define this using repeat1 somehow + hol_application: $ => prec.left( + 2000, + seq( + $._hol_application_lhs, + choice($._hol_application_lhs, $._hol_term) + ) + ), + + hol_cond: $ => prec( + 70, + seq('if', $._hol_term, 'then', $._hol_term, 'else', $._hol_term) + ), + + hol_case: $ => prec.right( + 1, + seq( + 'case', + alias($._hol_term, $.hol_term), + 'of', + optional('|'), mkSepBy1('|', $.hol_match) + ) + ), + + // TODO Feels hacky + _hol_pcon_nopare: $ => seq($.hol_cname_alphanumeric, repeat1($.hol_pat)), + + hol_match: $ => seq( + alias( + choice( + $._hol_pat, + $._hol_pcon_nopare + ), + $.hol_pat + ), + "=>", + alias($._hol_term, $.hol_term), + ), + + // TODO find better names for (_)hol_bvar + hol_bvar: $ => choice( + seq('(', $._hol_bvar, ')'), + $._hol_bvar, + ), + + _hol_bvar: $ => seq( + alias($._hol_alphanumeric, $.hol_alphanumeric), + optional(seq(':', $._hol_type)) + ), + + // Permanently borrowed (and adapted) from tree-sitter/tree-sitter-c, + // which is released under the MIT license. + hol_binder: $ => { + const table = [ + 'OLEAST', 'LEAST', 'some', '?!!', '∃!', '?!', '∃', '?', '∀', + '!', '@', 'λ', '\\' + ]; + + return choice(...table.map( + (binder) => { + return seq( + binder, + repeat1($.hol_bvar), + '.', + $._hol_term + ) + })); + }, + + hol_left_unary_term: $ => { + const table = [ + ['-', 900], + ['¬', 900], + ['~', 900], + ]; + + return choice(...table.map( + ([operator, precedence]) => { + return prec( + precedence, + seq( + field('operator', operator), + field('term', $._hol_term), + ) + ); + + })); + }, + + hol_binary_term: $ => { + const table = [ + ['⇎', 100, 'N'], + ['<=/=>', 100, 'N'], + ['<=>', 100, 'N'], + ['⇔', 100, 'N'], + ['==>', 200, 'L'], + ['⇒', 200, 'L'], + ['\\\/', 300, 'R'], + ['∨', 300, 'R'], + ['\/\\', 400, 'R'], + ['∧', 400, 'R'], + ['∉', 400, 'N'], + ['NOTIN', 400, 'N'], + ['∈', 400, 'N'], + ['IN', 400, 'N'], + ['≼', 450, 'N'], + ['<<=', 450, 'N'], + ['PERMUTES', 450, 'N'], + ['HAS_SIZE', 450, 'N'], + ['⊂', 450, 'N'], + ['PSUBSET', 450, 'N'], + ['⊆', 450, 'N'], + ['≥', 450, 'N'], + ['>=', 450, 'N'], + ['≤', 450, 'N'], + ['<=', 450, 'N'], + ['>', 450, 'N'], + ['<', 450, 'N'], + ['⊆ᵣ', 450, 'N'], + ['RSUBSET', 450, 'N'], + ['≠', 450, 'N'], + ['<>', 450, 'N'], + ['=', 450, 'N'], + ['$', 460, 'R'], + ['::', 490, 'R'], + ['INSERT', 490, 'R'], + ['+', 500, 'L'], + ['o', 800, 'R'] + ]; + + return choice(...table.map( + ([operator, precedence, associativity]) => { + const rule = seq( + field('left', $._hol_term), + field('operator', operator), + field('right', $._hol_term), + ); + + switch (associativity) { + case 'L': + return prec.left(precedence, rule); + case 'R': + return prec.right(precedence, rule); + default: + // TODO Deal with non-associativity properly + return prec.left(precedence, rule); + } + })); + }, + + hol_annotated: $ => prec( + 899, + seq($._hol_term, ':', $._hol_type) + ), + + _hol_type: $ => choice( + $.hol_atomic_type, + $.hol_list_ty, + $.hol_fun_ty, + seq('(', $._hol_type, ')') + ), + + hol_list_ty: $ => seq($._hol_type, 'list'), + + hol_fun_ty: $ => prec.right( + 50, + seq($._hol_type, '->', $._hol_type) + ), + + hol_atomic_type: $ => choice( + 'num', + 'string', + // BUG? Allows 'f'oo as a type variable + /\'[a-zA-Z\u0370-\u03BA\u03BC-\u03FF0-9\'_]+/, + $._hol_alphanumeric + ), + + hol_tuple: $ => seq( + '(', + optional(mkSepBy2(',', $._hol_term)), + ')' + ), + + hol_list: $ => seq( + '[', + mkSepBy(';', $._hol_term), + ']' + ), + + hol_set: $ => seq( + '{', + mkSepBy(';', $._hol_term), + '}' + ), + + _hol_literal: $ => choice( + $.hol_number, + $.hol_string, + $.hol_character, + $.hol_true, + $.hol_false + ), + + hol_true: $ => 'T', + + hol_false: $ => 'F', + + hol_number: $ => /\d[\d_]*/, + + // https://gist.github.com/cellularmitosis/6fd5fc2a65225364f72d3574abd9d5d5 + // TODO These regexes may be incorrect; alternatives were posted on + // Discord + hol_string: $ => /\"([^\"\\]|\\.)*\"/, + + // HACK Does not make sure the string is of length 1 + hol_character: $ => /#\"([^\"\\]|\\.)*\"/ + }, +}); diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/package.json b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/package.json new file mode 100644 index 0000000000..75bad53e00 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/package.json @@ -0,0 +1,55 @@ +{ + "name": "tree-sitter-holscript", + "version": "0.1.0", + "description": "HOLScript grammar for tree-sitter", + "repository": "github:tree-sitter/tree-sitter-holscript", + "license": "MIT", + "author": { + "name": "Daniel Nezamabadi" + }, + "main": "bindings/node", + "types": "bindings/node", + "keywords": [ + "incremental", + "parsing", + "tree-sitter", + "holscript" + ], + "files": [ + "grammar.js", + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "src/**", + "*.wasm" + ], + "dependencies": { + "node-addon-api": "^8.1.0", + "node-gyp-build": "^4.8.2" + }, + "devDependencies": { + "prebuildify": "^6.0.1", + "tree-sitter-cli": "^0.24.3" + }, + "peerDependencies": { + "tree-sitter": "^0.21.1" + }, + "peerDependenciesMeta": { + "tree-sitter": { + "optional": true + } + }, + "scripts": { + "install": "node-gyp-build", + "prestart": "tree-sitter build --wasm", + "start": "tree-sitter playground", + "test": "node --test bindings/node/*_test.js" + }, + "tree-sitter": [ + { + "scope": "source.holscript", + "injection-regex": "^holscript$" + } + ] +} diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/pyproject.toml b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/pyproject.toml new file mode 100644 index 0000000000..34e45258f6 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/pyproject.toml @@ -0,0 +1,30 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "tree-sitter-holscript" +description = "HOLScript grammar for tree-sitter" +version = "0.1.0" +keywords = ["incremental", "parsing", "tree-sitter", "holscript"] +classifiers = [ + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Compilers", + "Topic :: Text Processing :: Linguistic", + "Typing :: Typed", +] +authors = [{ name = "Daniel Nezamabadi" }] +requires-python = ">=3.9" +license.text = "MIT" +readme = "README.md" + +[project.urls] +Homepage = "https://github.com/hol-theorem-prover/hol/" + +[project.optional-dependencies] +core = ["tree-sitter~=0.22"] + +[tool.cibuildwheel] +build = "cp39-*" +build-frontend = "build" diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/setup.py b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/setup.py new file mode 100644 index 0000000000..f0e9f30c73 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/setup.py @@ -0,0 +1,62 @@ +from os.path import isdir, join +from platform import system + +from setuptools import Extension, find_packages, setup +from setuptools.command.build import build +from wheel.bdist_wheel import bdist_wheel + + +class Build(build): + def run(self): + if isdir("queries"): + dest = join(self.build_lib, "tree_sitter_holscript", "queries") + self.copy_tree("queries", dest) + super().run() + + +class BdistWheel(bdist_wheel): + def get_tag(self): + python, abi, platform = super().get_tag() + if python.startswith("cp"): + python, abi = "cp39", "abi3" + return python, abi, platform + + +setup( + packages=find_packages("bindings/python"), + package_dir={"": "bindings/python"}, + package_data={ + "tree_sitter_holscript": ["*.pyi", "py.typed"], + "tree_sitter_holscript.queries": ["*.scm"], + }, + ext_package="tree_sitter_holscript", + ext_modules=[ + Extension( + name="_binding", + sources=[ + "bindings/python/tree_sitter_holscript/binding.c", + "src/parser.c", + # NOTE: if your language uses an external scanner, add it here. + ], + extra_compile_args=[ + "-std=c11", + "-fvisibility=hidden", + ] if system() != "Windows" else [ + "/std:c11", + "/utf-8", + ], + define_macros=[ + ("Py_LIMITED_API", "0x03090000"), + ("PY_SSIZE_T_CLEAN", None), + ("TREE_SITTER_HIDE_SYMBOLS", None), + ], + include_dirs=["src"], + py_limited_api=True, + ) + ], + cmdclass={ + "build": Build, + "bdist_wheel": BdistWheel + }, + zip_safe=False +) diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/grammar.json b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/grammar.json new file mode 100644 index 0000000000..3003709d85 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/grammar.json @@ -0,0 +1,9071 @@ +{ + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", + "name": "holscript", + "rules": { + "source_file": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_program" + }, + { + "type": "BLANK" + } + ] + }, + "comment": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block_comment" + }, + { + "type": "SYMBOL", + "name": "line_comment" + } + ] + }, + "_scon": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "integer_scon" + }, + { + "type": "SYMBOL", + "name": "word_scon" + }, + { + "type": "SYMBOL", + "name": "real_scon" + }, + { + "type": "SYMBOL", + "name": "string_scon" + }, + { + "type": "SYMBOL", + "name": "char_scon" + } + ] + }, + "integer_scon": { + "type": "PATTERN", + "value": "~?[0-9](?:_*[0-9])*|~?0x[A-Fa-f0-9](?:_*[A-Fa-f0-9])*|~?0b[01](?:_*[01])*" + }, + "word_scon": { + "type": "PATTERN", + "value": "0w[0-9](?:_*[0-9])*|0wx[A-Fa-f0-9](?:_*[A-Fa-f0-9])*|0wb[01](?:_*[01])*" + }, + "real_scon": { + "type": "PATTERN", + "value": "~?[0-9](?:_*[0-9])*[.][0-9](?:_*[0-9])*(?:[eE]~?[0-9](?:_*[0-9])*)?|~?[0-9](?:_*[0-9])*(?:[.][0-9](?:_*[0-9])*)?[eE]~?[0-9](?:_*[0-9])*" + }, + "string_scon": { + "type": "PATTERN", + "value": "\"(?:[^\"\\\\]|\\\\[^\\s]|\\\\\\s*\\\\)*\"" + }, + "char_scon": { + "type": "PATTERN", + "value": "#\"(?:[^\"\\\\]|\\\\[^\\s]|\\\\\\s*\\\\)*\"" + }, + "_alphaAlphaNumeric_ident": { + "type": "PATTERN", + "value": "[A-Za-z][A-Za-z0-9_']*" + }, + "_primeAlphaNumeric_ident": { + "type": "PATTERN", + "value": "'[A-Za-z0-9_']*" + }, + "_symbolic_ident": { + "type": "PATTERN", + "value": "[!%&$#+\\-/:<=>?@\\\\~`^|*]+" + }, + "tyvar": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_primeAlphaNumeric_ident" + } + ] + }, + "tyvarseq": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "tyvar" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "tyvar" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "tyvar" + } + ] + } + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "vid": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_alphaAlphaNumeric_ident" + }, + { + "type": "SYMBOL", + "name": "_symbolic_ident" + } + ] + }, + "longvid": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "strid" + }, + { + "type": "STRING", + "value": "." + } + ] + } + }, + { + "type": "SYMBOL", + "name": "vid" + } + ] + }, + "tycon": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_alphaAlphaNumeric_ident" + }, + { + "type": "SYMBOL", + "name": "_symbolic_ident" + } + ] + }, + "longtycon": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "strid" + }, + { + "type": "STRING", + "value": "." + } + ] + } + }, + { + "type": "SYMBOL", + "name": "tycon" + } + ] + }, + "lab": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_alphaAlphaNumeric_ident" + }, + { + "type": "SYMBOL", + "name": "_symbolic_ident" + }, + { + "type": "PATTERN", + "value": "[1-9][0-9]*" + } + ] + }, + "_atexp": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "scon_exp" + }, + { + "type": "SYMBOL", + "name": "vid_exp" + }, + { + "type": "SYMBOL", + "name": "record_exp" + }, + { + "type": "SYMBOL", + "name": "recordsel_exp" + }, + { + "type": "SYMBOL", + "name": "unit_exp" + }, + { + "type": "SYMBOL", + "name": "tuple_exp" + }, + { + "type": "SYMBOL", + "name": "list_exp" + }, + { + "type": "SYMBOL", + "name": "vec_exp" + }, + { + "type": "SYMBOL", + "name": "sequence_exp" + }, + { + "type": "SYMBOL", + "name": "let_exp" + }, + { + "type": "SYMBOL", + "name": "paren_exp" + }, + { + "type": "SYMBOL", + "name": "quoted_term" + }, + { + "type": "SYMBOL", + "name": "quoted_type" + }, + { + "type": "SYMBOL", + "name": "backquote" + } + ] + }, + "scon_exp": { + "type": "SYMBOL", + "name": "_scon" + }, + "vid_exp": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "op" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "longvid" + } + ] + }, + "record_exp": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "ellipsis_exprow" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_exprow" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "_exprow" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "ellipsis_exprow" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_exprow": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "exprow" + }, + { + "type": "SYMBOL", + "name": "labvar_exprow" + } + ] + }, + "exprow": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "lab" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_exp" + } + ] + }, + "labvar_exprow": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "vid" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_ty" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "ellipsis_exprow": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_exp" + } + ] + }, + "recordsel_exp": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "SYMBOL", + "name": "lab" + } + ] + }, + "unit_exp": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "tuple_exp": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_exp" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "_exp" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "list_exp": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "ellipsis_listexp" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_exp" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "_exp" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "ellipsis_listexp" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "ellipsis_listexp": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_exp" + } + ] + }, + "vec_exp": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_exp" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "_exp" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "sequence_exp": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": ";" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_exp" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": ";" + } + }, + { + "type": "SYMBOL", + "name": "_exp" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": ";" + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "let_exp": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "dec", + "content": { + "type": "SYMBOL", + "name": "_dec" + } + } + ] + } + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": ";" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_exp" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": ";" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_exp" + } + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": ";" + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": "end" + } + ] + }, + "paren_exp": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_exp" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "_exp": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_atexp" + }, + { + "type": "SYMBOL", + "name": "app_exp" + }, + { + "type": "SYMBOL", + "name": "typed_exp" + }, + { + "type": "SYMBOL", + "name": "conj_exp" + }, + { + "type": "SYMBOL", + "name": "disj_exp" + }, + { + "type": "SYMBOL", + "name": "handle_exp" + }, + { + "type": "SYMBOL", + "name": "raise_exp" + }, + { + "type": "SYMBOL", + "name": "cond_exp" + }, + { + "type": "SYMBOL", + "name": "iter_exp" + }, + { + "type": "SYMBOL", + "name": "case_exp" + }, + { + "type": "SYMBOL", + "name": "fn_exp" + } + ] + }, + "app_exp": { + "type": "PREC", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_atexp" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_atexp" + } + } + ] + } + }, + "typed_exp": { + "type": "PREC", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_exp" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_ty" + } + ] + } + }, + "conj_exp": { + "type": "PREC_LEFT", + "value": 8, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_exp" + }, + { + "type": "STRING", + "value": "andalso" + }, + { + "type": "SYMBOL", + "name": "_exp" + } + ] + } + }, + "disj_exp": { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_exp" + }, + { + "type": "STRING", + "value": "orelse" + }, + { + "type": "SYMBOL", + "name": "_exp" + } + ] + } + }, + "handle_exp": { + "type": "PREC", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_exp" + }, + { + "type": "STRING", + "value": "handle" + }, + { + "type": "SYMBOL", + "name": "_match" + } + ] + } + }, + "raise_exp": { + "type": "PREC", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "raise" + }, + { + "type": "SYMBOL", + "name": "_exp" + } + ] + } + }, + "cond_exp": { + "type": "PREC_RIGHT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "if_exp", + "content": { + "type": "SYMBOL", + "name": "_exp" + } + }, + { + "type": "STRING", + "value": "then" + }, + { + "type": "FIELD", + "name": "then_exp", + "content": { + "type": "SYMBOL", + "name": "_exp" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "FIELD", + "name": "else_exp", + "content": { + "type": "SYMBOL", + "name": "_exp" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "iter_exp": { + "type": "PREC", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "while_exp", + "content": { + "type": "SYMBOL", + "name": "_exp" + } + }, + { + "type": "STRING", + "value": "do" + }, + { + "type": "FIELD", + "name": "do_exp", + "content": { + "type": "SYMBOL", + "name": "_exp" + } + } + ] + } + }, + "case_exp": { + "type": "PREC", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "case" + }, + { + "type": "SYMBOL", + "name": "_exp" + }, + { + "type": "STRING", + "value": "of" + }, + { + "type": "SYMBOL", + "name": "_match" + } + ] + } + }, + "fn_exp": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "fn" + }, + { + "type": "SYMBOL", + "name": "_match" + } + ] + } + }, + "_match": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "mrule" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "mrule" + } + ] + } + } + ] + } + ] + } + ] + } + }, + "mrule": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pat" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "SYMBOL", + "name": "_exp" + } + ] + }, + "_dec": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_dec_no_local" + }, + { + "type": "SYMBOL", + "name": "local_dec" + } + ] + }, + "_dec_no_local": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "do_dec" + }, + { + "type": "SYMBOL", + "name": "val_dec" + }, + { + "type": "SYMBOL", + "name": "fun_dec" + }, + { + "type": "SYMBOL", + "name": "type_dec" + }, + { + "type": "SYMBOL", + "name": "datatype_dec" + }, + { + "type": "SYMBOL", + "name": "datarepl_dec" + }, + { + "type": "SYMBOL", + "name": "abstype_dec" + }, + { + "type": "SYMBOL", + "name": "exception_dec" + }, + { + "type": "SYMBOL", + "name": "open_dec" + }, + { + "type": "SYMBOL", + "name": "infix_dec" + }, + { + "type": "SYMBOL", + "name": "infixr_dec" + }, + { + "type": "SYMBOL", + "name": "nonfix_dec" + } + ] + }, + "do_dec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "do" + }, + { + "type": "SYMBOL", + "name": "_exp" + } + ] + }, + "val_dec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "val" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "rec" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "tyvarseq" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_valbind" + } + ] + }, + "_valbind": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "valbind" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SYMBOL", + "name": "valbind" + } + ] + } + } + ] + } + ] + }, + "valbind": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "pat", + "content": { + "type": "SYMBOL", + "name": "_pat" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "def", + "content": { + "type": "SYMBOL", + "name": "_exp" + } + } + ] + }, + "fun_dec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "fun" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "tyvarseq" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_fvalbind" + } + ] + }, + "_fvalbind": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "fvalbind" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SYMBOL", + "name": "fvalbind" + } + ] + } + } + ] + } + ] + }, + "fvalbind": { + "type": "SYMBOL", + "name": "_fmatch" + }, + "_fmatch": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "fmrule" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "fmrule" + } + ] + } + } + ] + } + ] + } + ] + }, + "fmrule": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "op" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "vid" + } + }, + { + "type": "REPEAT1", + "content": { + "type": "FIELD", + "name": "arg", + "content": { + "type": "SYMBOL", + "name": "_atpat" + } + } + } + ] + } + }, + { + "type": "PREC", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "argl", + "content": { + "type": "SYMBOL", + "name": "_atpat" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "vid" + } + }, + { + "type": "FIELD", + "name": "argr", + "content": { + "type": "SYMBOL", + "name": "_atpat" + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "arg", + "content": { + "type": "SYMBOL", + "name": "_atpat" + } + } + } + ] + } + }, + { + "type": "PREC", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "argl", + "content": { + "type": "SYMBOL", + "name": "_atpat" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "vid" + } + }, + { + "type": "FIELD", + "name": "argr", + "content": { + "type": "SYMBOL", + "name": "_atpat" + } + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "ty", + "content": { + "type": "SYMBOL", + "name": "_ty" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "def", + "content": { + "type": "SYMBOL", + "name": "_exp" + } + } + ] + }, + "type_dec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "type" + }, + { + "type": "SYMBOL", + "name": "_typbind" + } + ] + }, + "_typbind": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "typbind" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SYMBOL", + "name": "typbind" + } + ] + } + } + ] + } + ] + }, + "typbind": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "tyvarseq" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "tycon" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "def", + "content": { + "type": "SYMBOL", + "name": "_ty" + } + } + ] + }, + "datatype_dec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "datatype" + }, + { + "type": "SYMBOL", + "name": "_datbind" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "withtype" + }, + { + "type": "FIELD", + "name": "withtype", + "content": { + "type": "SYMBOL", + "name": "_typbind" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_datbind": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "datbind" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SYMBOL", + "name": "datbind" + } + ] + } + } + ] + } + ] + }, + "datbind": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "tyvarseq" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "tycon" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "def", + "content": { + "type": "SYMBOL", + "name": "_conbind" + } + } + ] + }, + "_conbind": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "conbind" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "conbind" + } + ] + } + } + ] + } + ] + } + ] + }, + "conbind": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "op" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "vid" + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "of" + }, + { + "type": "FIELD", + "name": "ty", + "content": { + "type": "SYMBOL", + "name": "_ty" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "datarepl_dec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "datatype" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "tycon" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "datatype" + }, + { + "type": "FIELD", + "name": "def", + "content": { + "type": "SYMBOL", + "name": "longtycon" + } + } + ] + }, + "abstype_dec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "abstype" + }, + { + "type": "SYMBOL", + "name": "_datbind" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "withtype" + }, + { + "type": "FIELD", + "name": "withtype", + "content": { + "type": "SYMBOL", + "name": "_typbind" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "with" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "dec", + "content": { + "type": "SYMBOL", + "name": "_dec" + } + } + ] + } + }, + { + "type": "STRING", + "value": "end" + } + ] + }, + "exception_dec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "exception" + }, + { + "type": "SYMBOL", + "name": "_exbind" + } + ] + }, + "_exbind": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "exbind" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SYMBOL", + "name": "exbind" + } + ] + } + } + ] + } + ] + }, + "exbind": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "op" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "vid" + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "of" + }, + { + "type": "FIELD", + "name": "ty", + "content": { + "type": "SYMBOL", + "name": "_ty" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "op" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "vid" + } + } + ] + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "op" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "def", + "content": { + "type": "SYMBOL", + "name": "longvid" + } + } + ] + } + ] + } + ] + }, + "local_dec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "local" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "dec", + "content": { + "type": "SYMBOL", + "name": "_dec" + } + } + ] + } + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_dec" + } + } + ] + } + }, + { + "type": "STRING", + "value": "end" + } + ] + }, + "open_dec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "open" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "longstrid" + } + } + ] + }, + "infix_dec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "infix" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "vid" + } + } + ] + }, + "infixr_dec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "infixr" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "vid" + } + } + ] + }, + "nonfix_dec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "nonfix" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "vid" + } + } + ] + }, + "_atpat": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "wildcard_pat" + }, + { + "type": "SYMBOL", + "name": "scon_pat" + }, + { + "type": "SYMBOL", + "name": "vid_pat" + }, + { + "type": "SYMBOL", + "name": "record_pat" + }, + { + "type": "SYMBOL", + "name": "unit_pat" + }, + { + "type": "SYMBOL", + "name": "tuple_pat" + }, + { + "type": "SYMBOL", + "name": "list_pat" + }, + { + "type": "SYMBOL", + "name": "vec_pat" + }, + { + "type": "SYMBOL", + "name": "paren_pat" + } + ] + }, + "wildcard_pat": { + "type": "STRING", + "value": "_" + }, + "scon_pat": { + "type": "SYMBOL", + "name": "_scon" + }, + "vid_pat": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "op" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "longvid" + } + ] + }, + "record_pat": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "ellipsis_patrow" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_patrow" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "_patrow" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "ellipsis_patrow" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_patrow": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "patrow" + }, + { + "type": "SYMBOL", + "name": "labvar_patrow" + } + ] + }, + "patrow": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "lab" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_pat" + } + ] + }, + "labvar_patrow": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "vid" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_ty" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "SYMBOL", + "name": "_pat" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "ellipsis_patrow": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_pat" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "unit_pat": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "tuple_pat": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pat" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "_pat" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "list_pat": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "ellipsis_listpat" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pat" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "_pat" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "ellipsis_listpat" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "ellipsis_listpat": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_pat" + } + ] + }, + "vec_pat": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pat" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "_pat" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "paren_pat": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_pat" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "_pat": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_atpat" + }, + { + "type": "SYMBOL", + "name": "app_pat" + }, + { + "type": "SYMBOL", + "name": "typed_pat" + }, + { + "type": "SYMBOL", + "name": "conj_pat" + }, + { + "type": "SYMBOL", + "name": "disj_pat" + } + ] + }, + "app_pat": { + "type": "PREC", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_atpat" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_atpat" + } + } + ] + } + }, + "typed_pat": { + "type": "PREC", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pat" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_ty" + } + ] + } + }, + "as_pat": { + "type": "PREC_RIGHT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "op" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "vid" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_ty" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "SYMBOL", + "name": "_pat" + } + ] + } + }, + "conj_pat": { + "type": "PREC_RIGHT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pat" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "SYMBOL", + "name": "_pat" + } + ] + } + }, + "disj_pat": { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pat" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "_pat" + } + ] + } + }, + "_ty": { + "type": "SYMBOL", + "name": "_fn_ty" + }, + "tyseq": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_atty" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "_ty" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_ty" + } + ] + } + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "_fn_ty": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "fn_ty" + }, + { + "type": "SYMBOL", + "name": "_tuple_ty" + } + ] + }, + "fn_ty": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_tuple_ty" + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "SYMBOL", + "name": "_fn_ty" + } + ] + }, + "_tuple_ty": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "tuple_ty" + }, + { + "type": "SYMBOL", + "name": "_paren_ty" + } + ] + }, + "tuple_ty": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "_paren_ty" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "SYMBOL", + "name": "_paren_ty" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "SYMBOL", + "name": "_paren_ty" + } + ] + } + } + ] + } + ] + } + ] + }, + "_paren_ty": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "paren_ty" + }, + { + "type": "SYMBOL", + "name": "_atty" + } + ] + }, + "paren_ty": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_ty" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_atty": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "tyvar_ty" + }, + { + "type": "SYMBOL", + "name": "record_ty" + }, + { + "type": "SYMBOL", + "name": "tycon_ty" + } + ] + }, + "tyvar_ty": { + "type": "SYMBOL", + "name": "tyvar" + }, + "record_ty": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "ellipsis_tyrow" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "tyrow" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "tyrow" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "SYMBOL", + "name": "ellipsis_tyrow" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "," + } + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "tyrow": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "lab" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_ty" + } + ] + }, + "ellipsis_tyrow": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_ty" + } + ] + }, + "tycon_ty": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "tyseq" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "longtycon" + } + ] + }, + "strid": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_alphaAlphaNumeric_ident" + } + ] + }, + "longstrid": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "strid" + }, + { + "type": "STRING", + "value": "." + } + ] + } + }, + { + "type": "SYMBOL", + "name": "strid" + } + ] + }, + "sigid": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_alphaAlphaNumeric_ident" + } + ] + }, + "fctid": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_alphaAlphaNumeric_ident" + } + ] + }, + "_strexp": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "struct_strexp" + }, + { + "type": "SYMBOL", + "name": "strid_strexp" + }, + { + "type": "SYMBOL", + "name": "constr_strexp" + }, + { + "type": "SYMBOL", + "name": "fctapp_strexp" + }, + { + "type": "SYMBOL", + "name": "let_strexp" + } + ] + }, + "struct_strexp": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "struct" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "strdec", + "content": { + "type": "SYMBOL", + "name": "_strdec" + } + } + ] + } + }, + { + "type": "STRING", + "value": "end" + } + ] + }, + "strid_strexp": { + "type": "SYMBOL", + "name": "longstrid" + }, + "constr_strexp": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_strexp" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ":>" + } + ] + }, + { + "type": "SYMBOL", + "name": "_sigexp" + } + ] + }, + "fctapp_strexp": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "fctid" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "arg", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_strexp" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "SYMBOL", + "name": "_strdec" + } + ] + } + } + ] + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "let_strexp": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "let" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "dec", + "content": { + "type": "SYMBOL", + "name": "_strdec" + } + } + ] + } + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_strexp" + } + }, + { + "type": "STRING", + "value": "end" + } + ] + }, + "_strdec": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_dec_no_local" + }, + { + "type": "SYMBOL", + "name": "structure_strdec" + }, + { + "type": "SYMBOL", + "name": "local_strdec" + } + ] + }, + "structure_strdec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "structure" + }, + { + "type": "SYMBOL", + "name": "_strbind" + } + ] + }, + "_strbind": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "strbind" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SYMBOL", + "name": "strbind" + } + ] + } + } + ] + } + ] + }, + "strbind": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "strid" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ":>" + } + ] + }, + { + "type": "FIELD", + "name": "sig", + "content": { + "type": "SYMBOL", + "name": "_sigexp" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "def", + "content": { + "type": "SYMBOL", + "name": "_strexp" + } + } + ] + }, + "local_strdec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "local" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "dec", + "content": { + "type": "SYMBOL", + "name": "_strdec" + } + } + ] + } + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_strdec" + } + } + ] + } + }, + { + "type": "STRING", + "value": "end" + } + ] + }, + "_sigexp": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "sig_sigexp" + }, + { + "type": "SYMBOL", + "name": "sigid_sigexp" + }, + { + "type": "SYMBOL", + "name": "wheretype_sigexp" + } + ] + }, + "sig_sigexp": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "sig" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "FIELD", + "name": "spec", + "content": { + "type": "SYMBOL", + "name": "_spec" + } + } + ] + } + }, + { + "type": "STRING", + "value": "end" + } + ] + }, + "sigid_sigexp": { + "type": "SYMBOL", + "name": "sigid" + }, + "wheretype_sigexp": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_sigexp" + }, + { + "type": "STRING", + "value": "where" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "type" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "tyvarseq" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "longtycon" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_ty" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "type" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "tyvarseq" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "longtycon" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "_ty" + } + ] + } + ] + } + } + ] + } + ] + } + ] + }, + "_sigdec": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "signature_sigdec" + } + ] + }, + "signature_sigdec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "signature" + }, + { + "type": "SYMBOL", + "name": "_sigbind" + } + ] + }, + "_sigbind": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "sigbind" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SYMBOL", + "name": "sigbind" + } + ] + } + } + ] + } + ] + }, + "sigbind": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "sigid" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "def", + "content": { + "type": "SYMBOL", + "name": "_sigexp" + } + } + ] + }, + "_spec": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "val_spec" + }, + { + "type": "SYMBOL", + "name": "type_spec" + }, + { + "type": "SYMBOL", + "name": "eqtype_spec" + }, + { + "type": "SYMBOL", + "name": "datatype_spec" + }, + { + "type": "SYMBOL", + "name": "datarepl_spec" + }, + { + "type": "SYMBOL", + "name": "exception_spec" + }, + { + "type": "SYMBOL", + "name": "structure_spec" + }, + { + "type": "SYMBOL", + "name": "include_spec" + }, + { + "type": "SYMBOL", + "name": "sharingtype_spec" + }, + { + "type": "SYMBOL", + "name": "sharing_spec" + } + ] + }, + "val_spec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "val" + }, + { + "type": "SYMBOL", + "name": "_valdesc" + } + ] + }, + "_valdesc": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "valdesc" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SYMBOL", + "name": "valdesc" + } + ] + } + } + ] + } + ] + }, + "valdesc": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "vid" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "ty", + "content": { + "type": "SYMBOL", + "name": "_ty" + } + } + ] + }, + "type_spec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "type" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_typedesc" + }, + { + "type": "SYMBOL", + "name": "_typbind" + } + ] + } + ] + }, + "_typedesc": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "typedesc" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SYMBOL", + "name": "typedesc" + } + ] + } + } + ] + } + ] + }, + "typedesc": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "tyvarseq" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "tycon" + } + } + ] + }, + "eqtype_spec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "eqtype" + }, + { + "type": "SYMBOL", + "name": "_typedesc" + } + ] + }, + "datatype_spec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "datatype" + }, + { + "type": "SYMBOL", + "name": "_datdesc" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "withtype" + }, + { + "type": "FIELD", + "name": "withtype", + "content": { + "type": "SYMBOL", + "name": "_typbind" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_datdesc": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "datdesc" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SYMBOL", + "name": "datdesc" + } + ] + } + } + ] + } + ] + }, + "datdesc": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "tyvarseq" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "tycon" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "def", + "content": { + "type": "SYMBOL", + "name": "_condesc" + } + } + ] + }, + "_condesc": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "condesc" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "condesc" + } + ] + } + } + ] + } + ] + } + ] + }, + "condesc": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "vid" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "of" + }, + { + "type": "FIELD", + "name": "ty", + "content": { + "type": "SYMBOL", + "name": "_ty" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "datarepl_spec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "datatype" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "tycon" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "datatype" + }, + { + "type": "FIELD", + "name": "def", + "content": { + "type": "SYMBOL", + "name": "longtycon" + } + } + ] + }, + "exception_spec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "exception" + }, + { + "type": "SYMBOL", + "name": "_exdesc" + } + ] + }, + "_exdesc": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "exdesc" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SYMBOL", + "name": "exdesc" + } + ] + } + } + ] + } + ] + }, + "exdesc": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "vid" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "of" + }, + { + "type": "FIELD", + "name": "ty", + "content": { + "type": "SYMBOL", + "name": "_ty" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "structure_spec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "structure" + }, + { + "type": "SYMBOL", + "name": "_strdesc" + } + ] + }, + "_strdesc": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "strdesc" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SYMBOL", + "name": "strdesc" + } + ] + } + } + ] + } + ] + }, + "strdesc": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "strid" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "sig", + "content": { + "type": "SYMBOL", + "name": "_sigexp" + } + } + ] + }, + "include_spec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "include" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_sigexp" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "sigid" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "sigid" + } + } + ] + } + ] + } + ] + }, + "sharingtype_spec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "sharing" + }, + { + "type": "STRING", + "value": "type" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "longtycon" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "longtycon" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "longtycon" + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + "sharing_spec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "sharing" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "longstrid" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "longstrid" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "longstrid" + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + "_fctdec": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "functor_fctdec" + } + ] + }, + "functor_fctdec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "functor" + }, + { + "type": "SYMBOL", + "name": "_fctbind" + } + ] + }, + "_fctbind": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "fctbind" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "SYMBOL", + "name": "fctbind" + } + ] + } + } + ] + } + ] + }, + "fctbind": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "fctid" + } + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "arg", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "strid" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_sigexp" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "SYMBOL", + "name": "_spec" + } + ] + } + } + ] + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": ":>" + } + ] + }, + { + "type": "FIELD", + "name": "sig", + "content": { + "type": "SYMBOL", + "name": "_sigexp" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "def", + "content": { + "type": "SYMBOL", + "name": "_strexp" + } + } + ] + }, + "_topdec": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_strdec" + }, + { + "type": "SYMBOL", + "name": "_sigdec" + }, + { + "type": "SYMBOL", + "name": "_fctdec" + }, + { + "type": "SYMBOL", + "name": "hol_definition" + }, + { + "type": "SYMBOL", + "name": "hol_definition_with_proof" + }, + { + "type": "SYMBOL", + "name": "hol_datatype" + }, + { + "type": "SYMBOL", + "name": "hol_theorem_with_proof" + } + ] + }, + "_program": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_topdec" + } + }, + { + "type": "SYMBOL", + "name": "_exp" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_program" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "antiquoted": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_exp" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "^" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_alphaAlphaNumeric_ident" + }, + "named": true, + "value": "sml_variable" + } + ] + } + ] + }, + "quoted_term": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "“" + }, + { + "type": "SYMBOL", + "name": "_hol_term" + }, + { + "type": "STRING", + "value": "”" + } + ] + }, + "quoted_type": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "“" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_hol_type" + }, + { + "type": "STRING", + "value": "”" + } + ] + }, + "_quote_content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "([^\\^`‘’]|\\^\\^|\\^\\`)+" + }, + "named": true, + "value": "quoted" + }, + { + "type": "SYMBOL", + "name": "antiquoted" + } + ] + }, + "backquote": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "‘" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_quote_content" + } + }, + { + "type": "STRING", + "value": "’" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "`" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_quote_content" + } + }, + { + "type": "STRING", + "value": "`" + } + ] + } + ] + }, + "hol_attributes": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_alphaAlphaNumeric_ident" + }, + "named": true, + "value": "attribute" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_alphaAlphaNumeric_ident" + }, + "named": true, + "value": "attribute" + } + ] + } + } + ] + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "hol_definition": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "Definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_alphaAlphaNumeric_ident" + }, + "named": true, + "value": "hol_defname" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hol_attributes" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "hol_fn_spec" + }, + { + "type": "STRING", + "value": "End" + } + ] + }, + "hol_definition_with_proof": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "Definition" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_alphaAlphaNumeric_ident" + }, + "named": true, + "value": "hol_defname" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hol_attributes" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "hol_fn_spec" + }, + { + "type": "STRING", + "value": "Termination" + }, + { + "type": "SYMBOL", + "name": "tactic" + }, + { + "type": "STRING", + "value": "End" + } + ] + }, + "hol_datatype": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "Datatype:" + }, + { + "type": "SYMBOL", + "name": "hol_binding" + }, + { + "type": "STRING", + "value": "End" + } + ] + }, + "hol_theorem_with_proof": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "Theorem" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_alphaAlphaNumeric_ident" + }, + "named": true, + "value": "hol_thmname" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hol_attributes" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + }, + "named": true, + "value": "hol_thmstmt" + }, + { + "type": "STRING", + "value": "Proof" + }, + { + "type": "SYMBOL", + "name": "tactic" + }, + { + "type": "STRING", + "value": "QED" + } + ] + }, + "_atomic_tactic": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_exp" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "THEN" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "tactic": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_atomic_tactic" + }, + { + "type": "SYMBOL", + "name": "THEN" + } + ] + }, + "THEN": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "_atomic_tactic" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\\\" + }, + { + "type": "SYMBOL", + "name": "_atomic_tactic" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\\\" + }, + { + "type": "SYMBOL", + "name": "_atomic_tactic" + } + ] + } + } + ] + } + ] + } + ] + } + }, + "hol_binding": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "hol_identifier" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "SYMBOL", + "name": "hol_constructor" + } + ] + }, + "hol_constructor": { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "hol_clause" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "hol_clause" + } + ] + } + } + ] + } + ] + }, + "hol_clause": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "hol_identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_hol_ty_spec" + } + } + ] + }, + "_hol_ty_spec": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hol_atomic_type" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_hol_type" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "hol_fn_spec": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hol_eqn" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "hol_eqn" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "∧" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hol_eqn" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "hol_eqn" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + ] + } + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hol_eqn" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "hol_eqn" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/\\" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hol_eqn" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "hol_eqn" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + ] + } + } + ] + } + ] + } + ] + }, + "hol_eqn": { + "type": "PREC", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "hol_identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "hol_pat" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + }, + "named": true, + "value": "hol_term" + } + ] + } + }, + "hol_pat": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_hol_pat" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_hol_pat" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_hol_ty_spec" + }, + "named": true, + "value": "hol_pannotation" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "_hol_pat": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hol_variable" + }, + { + "type": "SYMBOL", + "name": "hol_wildcard" + }, + { + "type": "SYMBOL", + "name": "_hol_literal" + }, + { + "type": "SYMBOL", + "name": "hol_cname_alphanumeric" + }, + { + "type": "SYMBOL", + "name": "hol_pcons" + }, + { + "type": "SYMBOL", + "name": "hol_ptuple" + }, + { + "type": "SYMBOL", + "name": "hol_plist" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "hol_cname_alphanumeric" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_pat" + } + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "hol_pcons": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "hol_pat" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "::" + }, + { + "type": "SYMBOL", + "name": "hol_pat" + } + ] + } + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "hol_ptuple": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "hol_pat" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "hol_pat" + } + ] + } + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "hol_plist": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "hol_pat" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "SYMBOL", + "name": "hol_pat" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "hol_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_hol_alphanumeric" + }, + { + "type": "SYMBOL", + "name": "_hol_symbolic" + } + ] + }, + "hol_wildcard": { + "type": "STRING", + "value": "_" + }, + "_hol_alphanumeric": { + "type": "PATTERN", + "value": "[a-zA-Z\\u0370-\\u03BA\\u03BC-\\u03FF][a-zA-Z\\u0370-\\u03BA\\u03BC-\\u03FF0-9\\'_]*" + }, + "_hol_symbolic": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "?" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "\\" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "-" + } + ] + } + }, + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "$" + } + } + ] + } + }, + "hol_cname_alphanumeric": { + "type": "PATTERN", + "value": "[A-Z][a-zA-Z\\u0370-\\u03BA\\u03BC-\\u03FF0-9\\'_]*" + }, + "hol_variable": { + "type": "PATTERN", + "value": "[a-z][a-zA-Z\\u0370-\\u03BA\\u03BC-\\u03FF0-9\\'_]*" + }, + "_hol_term": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_hol_literal" + }, + { + "type": "SYMBOL", + "name": "hol_tuple" + }, + { + "type": "SYMBOL", + "name": "hol_list" + }, + { + "type": "SYMBOL", + "name": "hol_set" + }, + { + "type": "SYMBOL", + "name": "_hol_application_lhs" + }, + { + "type": "SYMBOL", + "name": "hol_cond" + }, + { + "type": "SYMBOL", + "name": "hol_case" + }, + { + "type": "SYMBOL", + "name": "hol_binder" + }, + { + "type": "SYMBOL", + "name": "hol_left_unary_term" + }, + { + "type": "SYMBOL", + "name": "hol_binary_term" + }, + { + "type": "SYMBOL", + "name": "hol_annotated" + }, + { + "type": "PREC", + "value": 2500, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_hol_term" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + } + ] + }, + "_hol_application_lhs": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hol_application" + }, + { + "type": "SYMBOL", + "name": "hol_identifier" + } + ] + }, + "hol_application": { + "type": "PREC_LEFT", + "value": 2000, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_hol_application_lhs" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_hol_application_lhs" + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + } + ] + } + }, + "hol_cond": { + "type": "PREC", + "value": 70, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "SYMBOL", + "name": "_hol_term" + }, + { + "type": "STRING", + "value": "then" + }, + { + "type": "SYMBOL", + "name": "_hol_term" + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + } + }, + "hol_case": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "case" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + }, + "named": true, + "value": "hol_term" + }, + { + "type": "STRING", + "value": "of" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "hol_match" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "hol_match" + } + ] + } + } + ] + } + ] + } + ] + } + }, + "_hol_pcon_nopare": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "hol_cname_alphanumeric" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_pat" + } + } + ] + }, + "hol_match": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_hol_pat" + }, + { + "type": "SYMBOL", + "name": "_hol_pcon_nopare" + } + ] + }, + "named": true, + "value": "hol_pat" + }, + { + "type": "STRING", + "value": "=>" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + }, + "named": true, + "value": "hol_term" + } + ] + }, + "hol_bvar": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_hol_bvar" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "SYMBOL", + "name": "_hol_bvar" + } + ] + }, + "_hol_bvar": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_hol_alphanumeric" + }, + "named": true, + "value": "hol_alphanumeric" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_hol_type" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "hol_binder": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "OLEAST" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_bvar" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "LEAST" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_bvar" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "some" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_bvar" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "?!!" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_bvar" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "∃!" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_bvar" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "?!" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_bvar" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "∃" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_bvar" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "?" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_bvar" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "∀" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_bvar" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_bvar" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_bvar" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "λ" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_bvar" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "hol_bvar" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + } + ] + }, + "hol_left_unary_term": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 900, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "FIELD", + "name": "term", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC", + "value": 900, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "¬" + } + }, + { + "type": "FIELD", + "name": "term", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC", + "value": 900, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "~" + } + }, + { + "type": "FIELD", + "name": "term", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + } + ] + }, + "hol_binary_term": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 100, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "⇎" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 100, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=/=>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 100, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 100, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "⇔" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 200, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "==>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 200, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "⇒" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 300, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "\\/" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 300, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "∨" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 400, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/\\" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 400, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "∧" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 400, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "∉" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 400, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "NOTIN" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 400, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "∈" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 400, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "IN" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "≼" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "PERMUTES" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "HAS_SIZE" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "⊂" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "PSUBSET" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "⊆" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "≥" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "≤" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "⊆ᵣ" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "RSUBSET" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "≠" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 450, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 460, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "$" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 490, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "::" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 490, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "INSERT" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 500, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 800, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "o" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_hol_term" + } + } + ] + } + } + ] + }, + "hol_annotated": { + "type": "PREC", + "value": 899, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_hol_term" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_hol_type" + } + ] + } + }, + "_hol_type": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hol_atomic_type" + }, + { + "type": "SYMBOL", + "name": "hol_list_ty" + }, + { + "type": "SYMBOL", + "name": "hol_fun_ty" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_hol_type" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "hol_list_ty": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_hol_type" + }, + { + "type": "STRING", + "value": "list" + } + ] + }, + "hol_fun_ty": { + "type": "PREC_RIGHT", + "value": 50, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_hol_type" + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "SYMBOL", + "name": "_hol_type" + } + ] + } + }, + "hol_atomic_type": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "num" + }, + { + "type": "STRING", + "value": "string" + }, + { + "type": "PATTERN", + "value": "\\'[a-zA-Z\\u0370-\\u03BA\\u03BC-\\u03FF0-9\\'_]+" + }, + { + "type": "SYMBOL", + "name": "_hol_alphanumeric" + } + ] + }, + "hol_tuple": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "SYMBOL", + "name": "_hol_term" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_hol_term" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + } + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "hol_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_hol_term" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "hol_set": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SEQ", + "members": [ + { + "type": "BLANK" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_hol_term" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "SYMBOL", + "name": "_hol_term" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_hol_literal": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "hol_number" + }, + { + "type": "SYMBOL", + "name": "hol_string" + }, + { + "type": "SYMBOL", + "name": "hol_character" + }, + { + "type": "SYMBOL", + "name": "hol_true" + }, + { + "type": "SYMBOL", + "name": "hol_false" + } + ] + }, + "hol_true": { + "type": "STRING", + "value": "T" + }, + "hol_false": { + "type": "STRING", + "value": "F" + }, + "hol_number": { + "type": "PATTERN", + "value": "\\d[\\d_]*" + }, + "hol_string": { + "type": "PATTERN", + "value": "\\\"([^\\\"\\\\]|\\\\.)*\\\"" + }, + "hol_character": { + "type": "PATTERN", + "value": "#\\\"([^\\\"\\\\]|\\\\.)*\\\"" + } + }, + "extras": [ + { + "type": "PATTERN", + "value": "\\s+" + }, + { + "type": "SYMBOL", + "name": "block_comment" + }, + { + "type": "SYMBOL", + "name": "line_comment" + } + ], + "conflicts": [ + [ + "wheretype_sigexp" + ], + [ + "hol_pcons", + "hol_ptuple" + ] + ], + "precedences": [], + "externals": [ + { + "type": "SYMBOL", + "name": "block_comment" + }, + { + "type": "SYMBOL", + "name": "line_comment" + } + ], + "inline": [], + "supertypes": [ + "_scon", + "_exp", + "_dec", + "_pat", + "_ty", + "_strexp", + "_strdec", + "_sigexp", + "_sigdec", + "_spec", + "_fctdec", + "_topdec" + ] +} diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/node-types.json b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/node-types.json new file mode 100644 index 0000000000..d205f49a5e --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/node-types.json @@ -0,0 +1,5259 @@ +[ + { + "type": "_dec", + "named": true, + "subtypes": [ + { + "type": "abstype_dec", + "named": true + }, + { + "type": "datarepl_dec", + "named": true + }, + { + "type": "datatype_dec", + "named": true + }, + { + "type": "do_dec", + "named": true + }, + { + "type": "exception_dec", + "named": true + }, + { + "type": "fun_dec", + "named": true + }, + { + "type": "infix_dec", + "named": true + }, + { + "type": "infixr_dec", + "named": true + }, + { + "type": "local_dec", + "named": true + }, + { + "type": "nonfix_dec", + "named": true + }, + { + "type": "open_dec", + "named": true + }, + { + "type": "type_dec", + "named": true + }, + { + "type": "val_dec", + "named": true + } + ] + }, + { + "type": "_exp", + "named": true, + "subtypes": [ + { + "type": "app_exp", + "named": true + }, + { + "type": "backquote", + "named": true + }, + { + "type": "case_exp", + "named": true + }, + { + "type": "cond_exp", + "named": true + }, + { + "type": "conj_exp", + "named": true + }, + { + "type": "disj_exp", + "named": true + }, + { + "type": "fn_exp", + "named": true + }, + { + "type": "handle_exp", + "named": true + }, + { + "type": "iter_exp", + "named": true + }, + { + "type": "let_exp", + "named": true + }, + { + "type": "list_exp", + "named": true + }, + { + "type": "paren_exp", + "named": true + }, + { + "type": "quoted_term", + "named": true + }, + { + "type": "quoted_type", + "named": true + }, + { + "type": "raise_exp", + "named": true + }, + { + "type": "record_exp", + "named": true + }, + { + "type": "recordsel_exp", + "named": true + }, + { + "type": "scon_exp", + "named": true + }, + { + "type": "sequence_exp", + "named": true + }, + { + "type": "tuple_exp", + "named": true + }, + { + "type": "typed_exp", + "named": true + }, + { + "type": "unit_exp", + "named": true + }, + { + "type": "vec_exp", + "named": true + }, + { + "type": "vid_exp", + "named": true + } + ] + }, + { + "type": "_fctdec", + "named": true, + "subtypes": [ + { + "type": "functor_fctdec", + "named": true + } + ] + }, + { + "type": "_pat", + "named": true, + "subtypes": [ + { + "type": "app_pat", + "named": true + }, + { + "type": "conj_pat", + "named": true + }, + { + "type": "disj_pat", + "named": true + }, + { + "type": "list_pat", + "named": true + }, + { + "type": "paren_pat", + "named": true + }, + { + "type": "record_pat", + "named": true + }, + { + "type": "scon_pat", + "named": true + }, + { + "type": "tuple_pat", + "named": true + }, + { + "type": "typed_pat", + "named": true + }, + { + "type": "unit_pat", + "named": true + }, + { + "type": "vec_pat", + "named": true + }, + { + "type": "vid_pat", + "named": true + }, + { + "type": "wildcard_pat", + "named": true + } + ] + }, + { + "type": "_scon", + "named": true, + "subtypes": [ + { + "type": "char_scon", + "named": true + }, + { + "type": "integer_scon", + "named": true + }, + { + "type": "real_scon", + "named": true + }, + { + "type": "string_scon", + "named": true + }, + { + "type": "word_scon", + "named": true + } + ] + }, + { + "type": "_sigdec", + "named": true, + "subtypes": [ + { + "type": "signature_sigdec", + "named": true + } + ] + }, + { + "type": "_sigexp", + "named": true, + "subtypes": [ + { + "type": "sig_sigexp", + "named": true + }, + { + "type": "sigid_sigexp", + "named": true + }, + { + "type": "wheretype_sigexp", + "named": true + } + ] + }, + { + "type": "_spec", + "named": true, + "subtypes": [ + { + "type": "datarepl_spec", + "named": true + }, + { + "type": "datatype_spec", + "named": true + }, + { + "type": "eqtype_spec", + "named": true + }, + { + "type": "exception_spec", + "named": true + }, + { + "type": "include_spec", + "named": true + }, + { + "type": "sharing_spec", + "named": true + }, + { + "type": "sharingtype_spec", + "named": true + }, + { + "type": "structure_spec", + "named": true + }, + { + "type": "type_spec", + "named": true + }, + { + "type": "val_spec", + "named": true + } + ] + }, + { + "type": "_strdec", + "named": true, + "subtypes": [ + { + "type": "abstype_dec", + "named": true + }, + { + "type": "datarepl_dec", + "named": true + }, + { + "type": "datatype_dec", + "named": true + }, + { + "type": "do_dec", + "named": true + }, + { + "type": "exception_dec", + "named": true + }, + { + "type": "fun_dec", + "named": true + }, + { + "type": "infix_dec", + "named": true + }, + { + "type": "infixr_dec", + "named": true + }, + { + "type": "local_strdec", + "named": true + }, + { + "type": "nonfix_dec", + "named": true + }, + { + "type": "open_dec", + "named": true + }, + { + "type": "structure_strdec", + "named": true + }, + { + "type": "type_dec", + "named": true + }, + { + "type": "val_dec", + "named": true + } + ] + }, + { + "type": "_strexp", + "named": true, + "subtypes": [ + { + "type": "constr_strexp", + "named": true + }, + { + "type": "fctapp_strexp", + "named": true + }, + { + "type": "let_strexp", + "named": true + }, + { + "type": "strid_strexp", + "named": true + }, + { + "type": "struct_strexp", + "named": true + } + ] + }, + { + "type": "_topdec", + "named": true, + "subtypes": [ + { + "type": "_fctdec", + "named": true + }, + { + "type": "_sigdec", + "named": true + }, + { + "type": "_strdec", + "named": true + }, + { + "type": "hol_datatype", + "named": true + }, + { + "type": "hol_definition", + "named": true + }, + { + "type": "hol_definition_with_proof", + "named": true + }, + { + "type": "hol_theorem_with_proof", + "named": true + } + ] + }, + { + "type": "_ty", + "named": true, + "subtypes": [ + { + "type": "fn_ty", + "named": true + }, + { + "type": "paren_ty", + "named": true + }, + { + "type": "record_ty", + "named": true + }, + { + "type": "tuple_ty", + "named": true + }, + { + "type": "tycon_ty", + "named": true + }, + { + "type": "tyvar_ty", + "named": true + } + ] + }, + { + "type": "THEN", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "THEN", + "named": true + }, + { + "type": "_exp", + "named": true + } + ] + } + }, + { + "type": "abstype_dec", + "named": true, + "fields": { + "dec": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_dec", + "named": true + } + ] + }, + "withtype": { + "multiple": true, + "required": false, + "types": [ + { + "type": "and", + "named": false + }, + { + "type": "typbind", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "datbind", + "named": true + } + ] + } + }, + { + "type": "antiquoted", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + }, + { + "type": "sml_variable", + "named": true + } + ] + } + }, + { + "type": "app_exp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "backquote", + "named": true + }, + { + "type": "let_exp", + "named": true + }, + { + "type": "list_exp", + "named": true + }, + { + "type": "paren_exp", + "named": true + }, + { + "type": "quoted_term", + "named": true + }, + { + "type": "quoted_type", + "named": true + }, + { + "type": "record_exp", + "named": true + }, + { + "type": "recordsel_exp", + "named": true + }, + { + "type": "scon_exp", + "named": true + }, + { + "type": "sequence_exp", + "named": true + }, + { + "type": "tuple_exp", + "named": true + }, + { + "type": "unit_exp", + "named": true + }, + { + "type": "vec_exp", + "named": true + }, + { + "type": "vid_exp", + "named": true + } + ] + } + }, + { + "type": "app_pat", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "list_pat", + "named": true + }, + { + "type": "paren_pat", + "named": true + }, + { + "type": "record_pat", + "named": true + }, + { + "type": "scon_pat", + "named": true + }, + { + "type": "tuple_pat", + "named": true + }, + { + "type": "unit_pat", + "named": true + }, + { + "type": "vec_pat", + "named": true + }, + { + "type": "vid_pat", + "named": true + }, + { + "type": "wildcard_pat", + "named": true + } + ] + } + }, + { + "type": "backquote", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "antiquoted", + "named": true + }, + { + "type": "quoted", + "named": true + } + ] + } + }, + { + "type": "case_exp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + }, + { + "type": "mrule", + "named": true + } + ] + } + }, + { + "type": "conbind", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "vid", + "named": true + } + ] + }, + "ty": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_ty", + "named": true + } + ] + } + } + }, + { + "type": "cond_exp", + "named": true, + "fields": { + "else_exp": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_exp", + "named": true + } + ] + }, + "if_exp": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + }, + "then_exp": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + } + } + }, + { + "type": "condesc", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "vid", + "named": true + } + ] + }, + "ty": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_ty", + "named": true + } + ] + } + } + }, + { + "type": "conj_exp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + } + }, + { + "type": "conj_pat", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_pat", + "named": true + } + ] + } + }, + { + "type": "constr_strexp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_sigexp", + "named": true + }, + { + "type": "_strexp", + "named": true + } + ] + } + }, + { + "type": "datarepl_dec", + "named": true, + "fields": { + "def": { + "multiple": false, + "required": true, + "types": [ + { + "type": "longtycon", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "tycon", + "named": true + } + ] + } + } + }, + { + "type": "datarepl_spec", + "named": true, + "fields": { + "def": { + "multiple": false, + "required": true, + "types": [ + { + "type": "longtycon", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "tycon", + "named": true + } + ] + } + } + }, + { + "type": "datatype_dec", + "named": true, + "fields": { + "withtype": { + "multiple": true, + "required": false, + "types": [ + { + "type": "and", + "named": false + }, + { + "type": "typbind", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "datbind", + "named": true + } + ] + } + }, + { + "type": "datatype_spec", + "named": true, + "fields": { + "withtype": { + "multiple": true, + "required": false, + "types": [ + { + "type": "and", + "named": false + }, + { + "type": "typbind", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "datdesc", + "named": true + } + ] + } + }, + { + "type": "datbind", + "named": true, + "fields": { + "def": { + "multiple": true, + "required": true, + "types": [ + { + "type": "conbind", + "named": true + }, + { + "type": "|", + "named": false + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "tycon", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "tyvarseq", + "named": true + } + ] + } + }, + { + "type": "datdesc", + "named": true, + "fields": { + "def": { + "multiple": true, + "required": true, + "types": [ + { + "type": "condesc", + "named": true + }, + { + "type": "|", + "named": false + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "tycon", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "tyvarseq", + "named": true + } + ] + } + }, + { + "type": "disj_exp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + } + }, + { + "type": "disj_pat", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_pat", + "named": true + } + ] + } + }, + { + "type": "do_dec", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + } + }, + { + "type": "ellipsis_exprow", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + } + }, + { + "type": "ellipsis_listexp", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + } + }, + { + "type": "ellipsis_listpat", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_pat", + "named": true + } + ] + } + }, + { + "type": "ellipsis_patrow", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_pat", + "named": true + } + ] + } + }, + { + "type": "ellipsis_tyrow", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_ty", + "named": true + } + ] + } + }, + { + "type": "eqtype_spec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "typedesc", + "named": true + } + ] + } + }, + { + "type": "exbind", + "named": true, + "fields": { + "def": { + "multiple": false, + "required": false, + "types": [ + { + "type": "longvid", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "vid", + "named": true + } + ] + }, + "ty": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_ty", + "named": true + } + ] + } + } + }, + { + "type": "exception_dec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "exbind", + "named": true + } + ] + } + }, + { + "type": "exception_spec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "exdesc", + "named": true + } + ] + } + }, + { + "type": "exdesc", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "vid", + "named": true + } + ] + }, + "ty": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_ty", + "named": true + } + ] + } + } + }, + { + "type": "exprow", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + }, + { + "type": "lab", + "named": true + } + ] + } + }, + { + "type": "fctapp_strexp", + "named": true, + "fields": { + "arg": { + "multiple": true, + "required": false, + "types": [ + { + "type": ";", + "named": false + }, + { + "type": "_strdec", + "named": true + }, + { + "type": "_strexp", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "fctid", + "named": true + } + ] + } + } + }, + { + "type": "fctbind", + "named": true, + "fields": { + "arg": { + "multiple": true, + "required": false, + "types": [ + { + "type": ":", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "_sigexp", + "named": true + }, + { + "type": "_spec", + "named": true + }, + { + "type": "strid", + "named": true + } + ] + }, + "def": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_strexp", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "fctid", + "named": true + } + ] + }, + "sig": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_sigexp", + "named": true + } + ] + } + } + }, + { + "type": "fctid", + "named": true, + "fields": {} + }, + { + "type": "fmrule", + "named": true, + "fields": { + "arg": { + "multiple": true, + "required": false, + "types": [ + { + "type": "list_pat", + "named": true + }, + { + "type": "paren_pat", + "named": true + }, + { + "type": "record_pat", + "named": true + }, + { + "type": "scon_pat", + "named": true + }, + { + "type": "tuple_pat", + "named": true + }, + { + "type": "unit_pat", + "named": true + }, + { + "type": "vec_pat", + "named": true + }, + { + "type": "vid_pat", + "named": true + }, + { + "type": "wildcard_pat", + "named": true + } + ] + }, + "argl": { + "multiple": false, + "required": false, + "types": [ + { + "type": "list_pat", + "named": true + }, + { + "type": "paren_pat", + "named": true + }, + { + "type": "record_pat", + "named": true + }, + { + "type": "scon_pat", + "named": true + }, + { + "type": "tuple_pat", + "named": true + }, + { + "type": "unit_pat", + "named": true + }, + { + "type": "vec_pat", + "named": true + }, + { + "type": "vid_pat", + "named": true + }, + { + "type": "wildcard_pat", + "named": true + } + ] + }, + "argr": { + "multiple": false, + "required": false, + "types": [ + { + "type": "list_pat", + "named": true + }, + { + "type": "paren_pat", + "named": true + }, + { + "type": "record_pat", + "named": true + }, + { + "type": "scon_pat", + "named": true + }, + { + "type": "tuple_pat", + "named": true + }, + { + "type": "unit_pat", + "named": true + }, + { + "type": "vec_pat", + "named": true + }, + { + "type": "vid_pat", + "named": true + }, + { + "type": "wildcard_pat", + "named": true + } + ] + }, + "def": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "vid", + "named": true + } + ] + }, + "ty": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_ty", + "named": true + } + ] + } + } + }, + { + "type": "fn_exp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "mrule", + "named": true + } + ] + } + }, + { + "type": "fn_ty", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "fn_ty", + "named": true + }, + { + "type": "paren_ty", + "named": true + }, + { + "type": "record_ty", + "named": true + }, + { + "type": "tuple_ty", + "named": true + }, + { + "type": "tycon_ty", + "named": true + }, + { + "type": "tyvar_ty", + "named": true + } + ] + } + }, + { + "type": "fun_dec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "fvalbind", + "named": true + }, + { + "type": "tyvarseq", + "named": true + } + ] + } + }, + { + "type": "functor_fctdec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "fctbind", + "named": true + } + ] + } + }, + { + "type": "fvalbind", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "fmrule", + "named": true + } + ] + } + }, + { + "type": "handle_exp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + }, + { + "type": "mrule", + "named": true + } + ] + } + }, + { + "type": "hol_annotated", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_annotated", + "named": true + }, + { + "type": "hol_application", + "named": true + }, + { + "type": "hol_atomic_type", + "named": true + }, + { + "type": "hol_binary_term", + "named": true + }, + { + "type": "hol_binder", + "named": true + }, + { + "type": "hol_case", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cond", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_fun_ty", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_left_unary_term", + "named": true + }, + { + "type": "hol_list", + "named": true + }, + { + "type": "hol_list_ty", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_set", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_tuple", + "named": true + } + ] + } + }, + { + "type": "hol_application", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_annotated", + "named": true + }, + { + "type": "hol_application", + "named": true + }, + { + "type": "hol_binary_term", + "named": true + }, + { + "type": "hol_binder", + "named": true + }, + { + "type": "hol_case", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cond", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_left_unary_term", + "named": true + }, + { + "type": "hol_list", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_set", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_tuple", + "named": true + } + ] + } + }, + { + "type": "hol_atomic_type", + "named": true, + "fields": {} + }, + { + "type": "hol_attributes", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "attribute", + "named": true + } + ] + } + }, + { + "type": "hol_binary_term", + "named": true, + "fields": { + "left": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "hol_annotated", + "named": true + }, + { + "type": "hol_application", + "named": true + }, + { + "type": "hol_binary_term", + "named": true + }, + { + "type": "hol_binder", + "named": true + }, + { + "type": "hol_case", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cond", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_left_unary_term", + "named": true + }, + { + "type": "hol_list", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_set", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_tuple", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "$", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "/\\", + "named": false + }, + { + "type": "::", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "<=/=>", + "named": false + }, + { + "type": "<=>", + "named": false + }, + { + "type": "<>", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==>", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": "HAS_SIZE", + "named": false + }, + { + "type": "IN", + "named": false + }, + { + "type": "INSERT", + "named": false + }, + { + "type": "NOTIN", + "named": false + }, + { + "type": "PERMUTES", + "named": false + }, + { + "type": "PSUBSET", + "named": false + }, + { + "type": "RSUBSET", + "named": false + }, + { + "type": "\\/", + "named": false + }, + { + "type": "o", + "named": false + }, + { + "type": "⇎", + "named": false + }, + { + "type": "⇒", + "named": false + }, + { + "type": "⇔", + "named": false + }, + { + "type": "∈", + "named": false + }, + { + "type": "∉", + "named": false + }, + { + "type": "∧", + "named": false + }, + { + "type": "∨", + "named": false + }, + { + "type": "≠", + "named": false + }, + { + "type": "≤", + "named": false + }, + { + "type": "≥", + "named": false + }, + { + "type": "≼", + "named": false + }, + { + "type": "⊂", + "named": false + }, + { + "type": "⊆", + "named": false + }, + { + "type": "⊆ᵣ", + "named": false + } + ] + }, + "right": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "hol_annotated", + "named": true + }, + { + "type": "hol_application", + "named": true + }, + { + "type": "hol_binary_term", + "named": true + }, + { + "type": "hol_binder", + "named": true + }, + { + "type": "hol_case", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cond", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_left_unary_term", + "named": true + }, + { + "type": "hol_list", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_set", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_tuple", + "named": true + } + ] + } + } + }, + { + "type": "hol_binder", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_annotated", + "named": true + }, + { + "type": "hol_application", + "named": true + }, + { + "type": "hol_binary_term", + "named": true + }, + { + "type": "hol_binder", + "named": true + }, + { + "type": "hol_bvar", + "named": true + }, + { + "type": "hol_case", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cond", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_left_unary_term", + "named": true + }, + { + "type": "hol_list", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_set", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_tuple", + "named": true + } + ] + } + }, + { + "type": "hol_binding", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_constructor", + "named": true + }, + { + "type": "hol_identifier", + "named": true + } + ] + } + }, + { + "type": "hol_bvar", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_alphanumeric", + "named": true + }, + { + "type": "hol_atomic_type", + "named": true + }, + { + "type": "hol_fun_ty", + "named": true + }, + { + "type": "hol_list_ty", + "named": true + } + ] + } + }, + { + "type": "hol_case", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_match", + "named": true + }, + { + "type": "hol_term", + "named": true + } + ] + } + }, + { + "type": "hol_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_atomic_type", + "named": true + }, + { + "type": "hol_fun_ty", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_list_ty", + "named": true + } + ] + } + }, + { + "type": "hol_cond", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_annotated", + "named": true + }, + { + "type": "hol_application", + "named": true + }, + { + "type": "hol_binary_term", + "named": true + }, + { + "type": "hol_binder", + "named": true + }, + { + "type": "hol_case", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cond", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_left_unary_term", + "named": true + }, + { + "type": "hol_list", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_set", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_tuple", + "named": true + } + ] + } + }, + { + "type": "hol_constructor", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_clause", + "named": true + } + ] + } + }, + { + "type": "hol_datatype", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "hol_binding", + "named": true + } + ] + } + }, + { + "type": "hol_definition", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_attributes", + "named": true + }, + { + "type": "hol_defname", + "named": true + }, + { + "type": "hol_fn_spec", + "named": true + } + ] + } + }, + { + "type": "hol_definition_with_proof", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_attributes", + "named": true + }, + { + "type": "hol_defname", + "named": true + }, + { + "type": "hol_fn_spec", + "named": true + }, + { + "type": "tactic", + "named": true + } + ] + } + }, + { + "type": "hol_eqn", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_pat", + "named": true + }, + { + "type": "hol_term", + "named": true + } + ] + } + }, + { + "type": "hol_fn_spec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_eqn", + "named": true + } + ] + } + }, + { + "type": "hol_fun_ty", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_atomic_type", + "named": true + }, + { + "type": "hol_fun_ty", + "named": true + }, + { + "type": "hol_list_ty", + "named": true + } + ] + } + }, + { + "type": "hol_identifier", + "named": true, + "fields": {} + }, + { + "type": "hol_left_unary_term", + "named": true, + "fields": { + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "-", + "named": false + }, + { + "type": "~", + "named": false + }, + { + "type": "¬", + "named": false + } + ] + }, + "term": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "hol_annotated", + "named": true + }, + { + "type": "hol_application", + "named": true + }, + { + "type": "hol_binary_term", + "named": true + }, + { + "type": "hol_binder", + "named": true + }, + { + "type": "hol_case", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cond", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_left_unary_term", + "named": true + }, + { + "type": "hol_list", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_set", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_tuple", + "named": true + } + ] + } + } + }, + { + "type": "hol_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "hol_annotated", + "named": true + }, + { + "type": "hol_application", + "named": true + }, + { + "type": "hol_binary_term", + "named": true + }, + { + "type": "hol_binder", + "named": true + }, + { + "type": "hol_case", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cond", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_left_unary_term", + "named": true + }, + { + "type": "hol_list", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_set", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_tuple", + "named": true + } + ] + } + }, + { + "type": "hol_list_ty", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "hol_atomic_type", + "named": true + }, + { + "type": "hol_fun_ty", + "named": true + }, + { + "type": "hol_list_ty", + "named": true + } + ] + } + }, + { + "type": "hol_match", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_pat", + "named": true + }, + { + "type": "hol_term", + "named": true + } + ] + } + }, + { + "type": "hol_pannotation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "hol_atomic_type", + "named": true + }, + { + "type": "hol_fun_ty", + "named": true + }, + { + "type": "hol_list_ty", + "named": true + } + ] + } + }, + { + "type": "hol_pat", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cname_alphanumeric", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_pannotation", + "named": true + }, + { + "type": "hol_pat", + "named": true + }, + { + "type": "hol_pcons", + "named": true + }, + { + "type": "hol_plist", + "named": true + }, + { + "type": "hol_ptuple", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_variable", + "named": true + }, + { + "type": "hol_wildcard", + "named": true + } + ] + } + }, + { + "type": "hol_pcons", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_pat", + "named": true + } + ] + } + }, + { + "type": "hol_plist", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "hol_pat", + "named": true + } + ] + } + }, + { + "type": "hol_ptuple", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_pat", + "named": true + } + ] + } + }, + { + "type": "hol_set", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "hol_annotated", + "named": true + }, + { + "type": "hol_application", + "named": true + }, + { + "type": "hol_binary_term", + "named": true + }, + { + "type": "hol_binder", + "named": true + }, + { + "type": "hol_case", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cond", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_left_unary_term", + "named": true + }, + { + "type": "hol_list", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_set", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_tuple", + "named": true + } + ] + } + }, + { + "type": "hol_term", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "hol_annotated", + "named": true + }, + { + "type": "hol_application", + "named": true + }, + { + "type": "hol_binary_term", + "named": true + }, + { + "type": "hol_binder", + "named": true + }, + { + "type": "hol_case", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cond", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_left_unary_term", + "named": true + }, + { + "type": "hol_list", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_set", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_tuple", + "named": true + } + ] + } + }, + { + "type": "hol_theorem_with_proof", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "hol_attributes", + "named": true + }, + { + "type": "hol_thmname", + "named": true + }, + { + "type": "hol_thmstmt", + "named": true + }, + { + "type": "tactic", + "named": true + } + ] + } + }, + { + "type": "hol_thmstmt", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "hol_annotated", + "named": true + }, + { + "type": "hol_application", + "named": true + }, + { + "type": "hol_binary_term", + "named": true + }, + { + "type": "hol_binder", + "named": true + }, + { + "type": "hol_case", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cond", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_left_unary_term", + "named": true + }, + { + "type": "hol_list", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_set", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_tuple", + "named": true + } + ] + } + }, + { + "type": "hol_tuple", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "hol_annotated", + "named": true + }, + { + "type": "hol_application", + "named": true + }, + { + "type": "hol_binary_term", + "named": true + }, + { + "type": "hol_binder", + "named": true + }, + { + "type": "hol_case", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cond", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_left_unary_term", + "named": true + }, + { + "type": "hol_list", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_set", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_tuple", + "named": true + } + ] + } + }, + { + "type": "hol_wildcard", + "named": true, + "fields": {} + }, + { + "type": "include_spec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_sigexp", + "named": true + }, + { + "type": "sigid", + "named": true + } + ] + } + }, + { + "type": "infix_dec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "vid", + "named": true + } + ] + } + }, + { + "type": "infixr_dec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "vid", + "named": true + } + ] + } + }, + { + "type": "iter_exp", + "named": true, + "fields": { + "do_exp": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + }, + "while_exp": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + } + } + }, + { + "type": "lab", + "named": true, + "fields": {} + }, + { + "type": "labvar_exprow", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_ty", + "named": true + }, + { + "type": "vid", + "named": true + } + ] + } + }, + { + "type": "labvar_patrow", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_pat", + "named": true + }, + { + "type": "_ty", + "named": true + }, + { + "type": "vid", + "named": true + } + ] + } + }, + { + "type": "let_exp", + "named": true, + "fields": { + "body": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + }, + "dec": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_dec", + "named": true + } + ] + } + } + }, + { + "type": "let_strexp", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_strexp", + "named": true + } + ] + }, + "dec": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_strdec", + "named": true + } + ] + } + } + }, + { + "type": "list_exp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_exp", + "named": true + }, + { + "type": "ellipsis_listexp", + "named": true + } + ] + } + }, + { + "type": "list_pat", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_pat", + "named": true + }, + { + "type": "ellipsis_listpat", + "named": true + } + ] + } + }, + { + "type": "local_dec", + "named": true, + "fields": { + "body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_dec", + "named": true + } + ] + }, + "dec": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_dec", + "named": true + } + ] + } + } + }, + { + "type": "local_strdec", + "named": true, + "fields": { + "body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_strdec", + "named": true + } + ] + }, + "dec": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_strdec", + "named": true + } + ] + } + } + }, + { + "type": "longstrid", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "strid", + "named": true + } + ] + } + }, + { + "type": "longtycon", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "strid", + "named": true + }, + { + "type": "tycon", + "named": true + } + ] + } + }, + { + "type": "longvid", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "strid", + "named": true + }, + { + "type": "vid", + "named": true + } + ] + } + }, + { + "type": "mrule", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + }, + { + "type": "_pat", + "named": true + } + ] + } + }, + { + "type": "nonfix_dec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "vid", + "named": true + } + ] + } + }, + { + "type": "open_dec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "longstrid", + "named": true + } + ] + } + }, + { + "type": "paren_exp", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + } + }, + { + "type": "paren_pat", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_pat", + "named": true + } + ] + } + }, + { + "type": "paren_ty", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_ty", + "named": true + } + ] + } + }, + { + "type": "patrow", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_pat", + "named": true + }, + { + "type": "lab", + "named": true + } + ] + } + }, + { + "type": "quoted_term", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "hol_annotated", + "named": true + }, + { + "type": "hol_application", + "named": true + }, + { + "type": "hol_binary_term", + "named": true + }, + { + "type": "hol_binder", + "named": true + }, + { + "type": "hol_case", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cond", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_identifier", + "named": true + }, + { + "type": "hol_left_unary_term", + "named": true + }, + { + "type": "hol_list", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_set", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_tuple", + "named": true + } + ] + } + }, + { + "type": "quoted_type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "hol_atomic_type", + "named": true + }, + { + "type": "hol_fun_ty", + "named": true + }, + { + "type": "hol_list_ty", + "named": true + } + ] + } + }, + { + "type": "raise_exp", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + } + }, + { + "type": "record_exp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "ellipsis_exprow", + "named": true + }, + { + "type": "exprow", + "named": true + }, + { + "type": "labvar_exprow", + "named": true + } + ] + } + }, + { + "type": "record_pat", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "ellipsis_patrow", + "named": true + }, + { + "type": "labvar_patrow", + "named": true + }, + { + "type": "patrow", + "named": true + } + ] + } + }, + { + "type": "record_ty", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "ellipsis_tyrow", + "named": true + }, + { + "type": "tyrow", + "named": true + } + ] + } + }, + { + "type": "recordsel_exp", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "lab", + "named": true + } + ] + } + }, + { + "type": "scon_exp", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_scon", + "named": true + } + ] + } + }, + { + "type": "scon_pat", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_scon", + "named": true + } + ] + } + }, + { + "type": "sequence_exp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_exp", + "named": true + } + ] + } + }, + { + "type": "sharing_spec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "longstrid", + "named": true + } + ] + } + }, + { + "type": "sharingtype_spec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "longtycon", + "named": true + } + ] + } + }, + { + "type": "sig_sigexp", + "named": true, + "fields": { + "spec": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_spec", + "named": true + } + ] + } + } + }, + { + "type": "sigbind", + "named": true, + "fields": { + "def": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_sigexp", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "sigid", + "named": true + } + ] + } + } + }, + { + "type": "sigid", + "named": true, + "fields": {} + }, + { + "type": "sigid_sigexp", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "sigid", + "named": true + } + ] + } + }, + { + "type": "signature_sigdec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "sigbind", + "named": true + } + ] + } + }, + { + "type": "source_file", + "named": true, + "root": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_exp", + "named": true + }, + { + "type": "_topdec", + "named": true + } + ] + } + }, + { + "type": "strbind", + "named": true, + "fields": { + "def": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_strexp", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "strid", + "named": true + } + ] + }, + "sig": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_sigexp", + "named": true + } + ] + } + } + }, + { + "type": "strdesc", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "strid", + "named": true + } + ] + }, + "sig": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_sigexp", + "named": true + } + ] + } + } + }, + { + "type": "strid", + "named": true, + "fields": {} + }, + { + "type": "strid_strexp", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "longstrid", + "named": true + } + ] + } + }, + { + "type": "struct_strexp", + "named": true, + "fields": { + "strdec": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_strdec", + "named": true + } + ] + } + } + }, + { + "type": "structure_spec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "strdesc", + "named": true + } + ] + } + }, + { + "type": "structure_strdec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "strbind", + "named": true + } + ] + } + }, + { + "type": "tactic", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "THEN", + "named": true + }, + { + "type": "_exp", + "named": true + } + ] + } + }, + { + "type": "tuple_exp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_exp", + "named": true + } + ] + } + }, + { + "type": "tuple_pat", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_pat", + "named": true + } + ] + } + }, + { + "type": "tuple_ty", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "paren_ty", + "named": true + }, + { + "type": "record_ty", + "named": true + }, + { + "type": "tycon_ty", + "named": true + }, + { + "type": "tyvar_ty", + "named": true + } + ] + } + }, + { + "type": "tycon", + "named": true, + "fields": {} + }, + { + "type": "tycon_ty", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "longtycon", + "named": true + }, + { + "type": "tyseq", + "named": true + } + ] + } + }, + { + "type": "typbind", + "named": true, + "fields": { + "def": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_ty", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "tycon", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "tyvarseq", + "named": true + } + ] + } + }, + { + "type": "type_dec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "typbind", + "named": true + } + ] + } + }, + { + "type": "type_spec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "typbind", + "named": true + }, + { + "type": "typedesc", + "named": true + } + ] + } + }, + { + "type": "typed_exp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + }, + { + "type": "_ty", + "named": true + } + ] + } + }, + { + "type": "typed_pat", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_pat", + "named": true + }, + { + "type": "_ty", + "named": true + } + ] + } + }, + { + "type": "typedesc", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "tycon", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "tyvarseq", + "named": true + } + ] + } + }, + { + "type": "tyrow", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_ty", + "named": true + }, + { + "type": "lab", + "named": true + } + ] + } + }, + { + "type": "tyseq", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_ty", + "named": true + } + ] + } + }, + { + "type": "tyvar", + "named": true, + "fields": {} + }, + { + "type": "tyvar_ty", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "tyvar", + "named": true + } + ] + } + }, + { + "type": "tyvarseq", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "tyvar", + "named": true + } + ] + } + }, + { + "type": "unit_exp", + "named": true, + "fields": {} + }, + { + "type": "unit_pat", + "named": true, + "fields": {} + }, + { + "type": "val_dec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "tyvarseq", + "named": true + }, + { + "type": "valbind", + "named": true + } + ] + } + }, + { + "type": "val_spec", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "valdesc", + "named": true + } + ] + } + }, + { + "type": "valbind", + "named": true, + "fields": { + "def": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_exp", + "named": true + } + ] + }, + "pat": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_pat", + "named": true + } + ] + } + } + }, + { + "type": "valdesc", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "vid", + "named": true + } + ] + }, + "ty": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_ty", + "named": true + } + ] + } + } + }, + { + "type": "vec_exp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_exp", + "named": true + } + ] + } + }, + { + "type": "vec_pat", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_pat", + "named": true + } + ] + } + }, + { + "type": "vid", + "named": true, + "fields": {} + }, + { + "type": "vid_exp", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "longvid", + "named": true + } + ] + } + }, + { + "type": "vid_pat", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "longvid", + "named": true + } + ] + } + }, + { + "type": "wheretype_sigexp", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "_sigexp", + "named": true + }, + { + "type": "_ty", + "named": true + }, + { + "type": "longtycon", + "named": true + }, + { + "type": "tyvarseq", + "named": true + } + ] + } + }, + { + "type": "wildcard_pat", + "named": true, + "fields": {} + }, + { + "type": "!", + "named": false + }, + { + "type": "#", + "named": false + }, + { + "type": "#[", + "named": false + }, + { + "type": "$", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "->", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "...", + "named": false + }, + { + "type": "/\\", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": "::", + "named": false + }, + { + "type": ":>", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "<=/=>", + "named": false + }, + { + "type": "<=>", + "named": false + }, + { + "type": "<>", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==>", + "named": false + }, + { + "type": "=>", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": "?", + "named": false + }, + { + "type": "?!", + "named": false + }, + { + "type": "?!!", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "Datatype:", + "named": false + }, + { + "type": "Definition", + "named": false + }, + { + "type": "End", + "named": false + }, + { + "type": "HAS_SIZE", + "named": false + }, + { + "type": "IN", + "named": false + }, + { + "type": "INSERT", + "named": false + }, + { + "type": "LEAST", + "named": false + }, + { + "type": "NOTIN", + "named": false + }, + { + "type": "OLEAST", + "named": false + }, + { + "type": "PERMUTES", + "named": false + }, + { + "type": "PSUBSET", + "named": false + }, + { + "type": "Proof", + "named": false + }, + { + "type": "QED", + "named": false + }, + { + "type": "RSUBSET", + "named": false + }, + { + "type": "Termination", + "named": false + }, + { + "type": "Theorem", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "\\", + "named": false + }, + { + "type": "\\/", + "named": false + }, + { + "type": "\\\\", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "_", + "named": false + }, + { + "type": "`", + "named": false + }, + { + "type": "abstype", + "named": false + }, + { + "type": "and", + "named": false + }, + { + "type": "andalso", + "named": false + }, + { + "type": "as", + "named": false + }, + { + "type": "attribute", + "named": true + }, + { + "type": "block_comment", + "named": true + }, + { + "type": "case", + "named": false + }, + { + "type": "char_scon", + "named": true + }, + { + "type": "datatype", + "named": false + }, + { + "type": "do", + "named": false + }, + { + "type": "else", + "named": false + }, + { + "type": "end", + "named": false + }, + { + "type": "eqtype", + "named": false + }, + { + "type": "exception", + "named": false + }, + { + "type": "fn", + "named": false + }, + { + "type": "fun", + "named": false + }, + { + "type": "functor", + "named": false + }, + { + "type": "handle", + "named": false + }, + { + "type": "hol_alphanumeric", + "named": true + }, + { + "type": "hol_character", + "named": true + }, + { + "type": "hol_cname_alphanumeric", + "named": true + }, + { + "type": "hol_defname", + "named": true + }, + { + "type": "hol_false", + "named": true + }, + { + "type": "hol_number", + "named": true + }, + { + "type": "hol_string", + "named": true + }, + { + "type": "hol_thmname", + "named": true + }, + { + "type": "hol_true", + "named": true + }, + { + "type": "hol_variable", + "named": true + }, + { + "type": "if", + "named": false + }, + { + "type": "in", + "named": false + }, + { + "type": "include", + "named": false + }, + { + "type": "infix", + "named": false + }, + { + "type": "infixr", + "named": false + }, + { + "type": "integer_scon", + "named": true + }, + { + "type": "let", + "named": false + }, + { + "type": "line_comment", + "named": true + }, + { + "type": "list", + "named": false + }, + { + "type": "local", + "named": false + }, + { + "type": "nonfix", + "named": false + }, + { + "type": "num", + "named": false + }, + { + "type": "o", + "named": false + }, + { + "type": "of", + "named": false + }, + { + "type": "op", + "named": false + }, + { + "type": "open", + "named": false + }, + { + "type": "orelse", + "named": false + }, + { + "type": "quoted", + "named": true + }, + { + "type": "raise", + "named": false + }, + { + "type": "real_scon", + "named": true + }, + { + "type": "rec", + "named": false + }, + { + "type": "sharing", + "named": false + }, + { + "type": "sig", + "named": false + }, + { + "type": "signature", + "named": false + }, + { + "type": "sml_variable", + "named": true + }, + { + "type": "some", + "named": false + }, + { + "type": "string", + "named": false + }, + { + "type": "string_scon", + "named": true + }, + { + "type": "struct", + "named": false + }, + { + "type": "structure", + "named": false + }, + { + "type": "then", + "named": false + }, + { + "type": "type", + "named": false + }, + { + "type": "val", + "named": false + }, + { + "type": "where", + "named": false + }, + { + "type": "while", + "named": false + }, + { + "type": "with", + "named": false + }, + { + "type": "withtype", + "named": false + }, + { + "type": "word_scon", + "named": true + }, + { + "type": "{", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "}", + "named": false + }, + { + "type": "~", + "named": false + }, + { + "type": "¬", + "named": false + }, + { + "type": "λ", + "named": false + }, + { + "type": "‘", + "named": false + }, + { + "type": "’", + "named": false + }, + { + "type": "“", + "named": false + }, + { + "type": "”", + "named": false + }, + { + "type": "⇎", + "named": false + }, + { + "type": "⇒", + "named": false + }, + { + "type": "⇔", + "named": false + }, + { + "type": "∀", + "named": false + }, + { + "type": "∃", + "named": false + }, + { + "type": "∃!", + "named": false + }, + { + "type": "∈", + "named": false + }, + { + "type": "∉", + "named": false + }, + { + "type": "∧", + "named": false + }, + { + "type": "∨", + "named": false + }, + { + "type": "≠", + "named": false + }, + { + "type": "≤", + "named": false + }, + { + "type": "≥", + "named": false + }, + { + "type": "≼", + "named": false + }, + { + "type": "⊂", + "named": false + }, + { + "type": "⊆", + "named": false + }, + { + "type": "⊆ᵣ", + "named": false + } +] \ No newline at end of file diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/parser.c b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/parser.c new file mode 100644 index 0000000000..11b17ce559 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/parser.c @@ -0,0 +1,1018278 @@ +#include "tree_sitter/parser.h" + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 25063 +#define LARGE_STATE_COUNT 486 +#define SYMBOL_COUNT 418 +#define ALIAS_COUNT 8 +#define TOKEN_COUNT 154 +#define EXTERNAL_TOKEN_COUNT 2 +#define FIELD_COUNT 22 +#define MAX_ALIAS_SEQUENCE_LENGTH 10 +#define PRODUCTION_ID_COUNT 72 + +enum ts_symbol_identifiers { + sym_integer_scon = 1, + sym_word_scon = 2, + sym_real_scon = 3, + sym_string_scon = 4, + sym_char_scon = 5, + sym__alphaAlphaNumeric_ident = 6, + sym__primeAlphaNumeric_ident = 7, + sym__symbolic_ident = 8, + anon_sym_LPAREN = 9, + anon_sym_COMMA = 10, + anon_sym_RPAREN = 11, + anon_sym_DOT = 12, + aux_sym_lab_token1 = 13, + anon_sym_op = 14, + anon_sym_LBRACE = 15, + anon_sym_RBRACE = 16, + anon_sym_EQ = 17, + anon_sym_COLON = 18, + anon_sym_DOT_DOT_DOT = 19, + anon_sym_POUND = 20, + anon_sym_LBRACK = 21, + anon_sym_RBRACK = 22, + anon_sym_POUND_LBRACK = 23, + anon_sym_SEMI = 24, + anon_sym_let = 25, + anon_sym_in = 26, + anon_sym_end = 27, + anon_sym_andalso = 28, + anon_sym_orelse = 29, + anon_sym_handle = 30, + anon_sym_raise = 31, + anon_sym_if = 32, + anon_sym_then = 33, + anon_sym_else = 34, + anon_sym_while = 35, + anon_sym_do = 36, + anon_sym_case = 37, + anon_sym_of = 38, + anon_sym_fn = 39, + anon_sym_PIPE = 40, + anon_sym_EQ_GT = 41, + anon_sym_val = 42, + anon_sym_rec = 43, + anon_sym_and = 44, + anon_sym_fun = 45, + anon_sym_type = 46, + anon_sym_datatype = 47, + anon_sym_withtype = 48, + anon_sym_abstype = 49, + anon_sym_with = 50, + anon_sym_exception = 51, + anon_sym_local = 52, + anon_sym_open = 53, + anon_sym_infix = 54, + aux_sym_infix_dec_token1 = 55, + anon_sym_infixr = 56, + anon_sym_nonfix = 57, + anon_sym__ = 58, + anon_sym_as = 59, + anon_sym_DASH_GT = 60, + anon_sym_STAR = 61, + anon_sym_struct = 62, + anon_sym_COLON_GT = 63, + anon_sym_structure = 64, + anon_sym_sig = 65, + anon_sym_where = 66, + anon_sym_signature = 67, + anon_sym_eqtype = 68, + anon_sym_include = 69, + anon_sym_sharing = 70, + anon_sym_functor = 71, + anon_sym_CARET = 72, + anon_sym_u201c = 73, + anon_sym_u201d = 74, + aux_sym__quote_content_token1 = 75, + anon_sym_u2018 = 76, + anon_sym_u2019 = 77, + anon_sym_BQUOTE = 78, + anon_sym_Definition = 79, + anon_sym_End = 80, + anon_sym_Termination = 81, + anon_sym_Datatype_COLON = 82, + anon_sym_Theorem = 83, + anon_sym_Proof = 84, + anon_sym_QED = 85, + anon_sym_BSLASH_BSLASH = 86, + anon_sym_u2227 = 87, + anon_sym_SLASH_BSLASH = 88, + anon_sym_COLON_COLON = 89, + sym__hol_alphanumeric = 90, + sym__hol_symbolic = 91, + sym_hol_cname_alphanumeric = 92, + sym_hol_variable = 93, + anon_sym_OLEAST = 94, + anon_sym_LEAST = 95, + anon_sym_some = 96, + anon_sym_QMARK_BANG_BANG = 97, + anon_sym_u2203_BANG = 98, + anon_sym_QMARK_BANG = 99, + anon_sym_u2203 = 100, + anon_sym_QMARK = 101, + anon_sym_u2200 = 102, + anon_sym_BANG = 103, + anon_sym_AT = 104, + anon_sym_u03bb = 105, + anon_sym_BSLASH = 106, + anon_sym_DASH = 107, + anon_sym_u00ac = 108, + anon_sym_TILDE = 109, + anon_sym_u21ce = 110, + anon_sym_LT_EQ_SLASH_EQ_GT = 111, + anon_sym_LT_EQ_GT = 112, + anon_sym_u21d4 = 113, + anon_sym_EQ_EQ_GT = 114, + anon_sym_u21d2 = 115, + anon_sym_BSLASH_SLASH = 116, + anon_sym_u2228 = 117, + anon_sym_u2209 = 118, + anon_sym_NOTIN = 119, + anon_sym_u2208 = 120, + anon_sym_IN = 121, + anon_sym_u227c = 122, + anon_sym_LT_LT_EQ = 123, + anon_sym_PERMUTES = 124, + anon_sym_HAS_SIZE = 125, + anon_sym_u2282 = 126, + anon_sym_PSUBSET = 127, + anon_sym_u2286 = 128, + anon_sym_u2265 = 129, + anon_sym_GT_EQ = 130, + anon_sym_u2264 = 131, + anon_sym_LT_EQ = 132, + anon_sym_GT = 133, + anon_sym_LT = 134, + anon_sym_u2286u1d63 = 135, + anon_sym_RSUBSET = 136, + anon_sym_u2260 = 137, + anon_sym_LT_GT = 138, + anon_sym_DOLLAR = 139, + anon_sym_INSERT = 140, + anon_sym_PLUS = 141, + anon_sym_o = 142, + anon_sym_list = 143, + anon_sym_num = 144, + anon_sym_string = 145, + aux_sym_hol_atomic_type_token1 = 146, + sym_hol_true = 147, + sym_hol_false = 148, + sym_hol_number = 149, + sym_hol_string = 150, + sym_hol_character = 151, + sym_block_comment = 152, + sym_line_comment = 153, + sym_source_file = 154, + sym__scon = 155, + sym_tyvar = 156, + sym_tyvarseq = 157, + sym_vid = 158, + sym_longvid = 159, + sym_tycon = 160, + sym_longtycon = 161, + sym_lab = 162, + sym__atexp = 163, + sym_scon_exp = 164, + sym_vid_exp = 165, + sym_record_exp = 166, + sym__exprow = 167, + sym_exprow = 168, + sym_labvar_exprow = 169, + sym_ellipsis_exprow = 170, + sym_recordsel_exp = 171, + sym_unit_exp = 172, + sym_tuple_exp = 173, + sym_list_exp = 174, + sym_ellipsis_listexp = 175, + sym_vec_exp = 176, + sym_sequence_exp = 177, + sym_let_exp = 178, + sym_paren_exp = 179, + sym__exp = 180, + sym_app_exp = 181, + sym_typed_exp = 182, + sym_conj_exp = 183, + sym_disj_exp = 184, + sym_handle_exp = 185, + sym_raise_exp = 186, + sym_cond_exp = 187, + sym_iter_exp = 188, + sym_case_exp = 189, + sym_fn_exp = 190, + sym__match = 191, + sym_mrule = 192, + sym__dec = 193, + sym__dec_no_local = 194, + sym_do_dec = 195, + sym_val_dec = 196, + sym__valbind = 197, + sym_valbind = 198, + sym_fun_dec = 199, + sym__fvalbind = 200, + sym_fvalbind = 201, + sym__fmatch = 202, + sym_fmrule = 203, + sym_type_dec = 204, + sym__typbind = 205, + sym_typbind = 206, + sym_datatype_dec = 207, + sym__datbind = 208, + sym_datbind = 209, + sym__conbind = 210, + sym_conbind = 211, + sym_datarepl_dec = 212, + sym_abstype_dec = 213, + sym_exception_dec = 214, + sym__exbind = 215, + sym_exbind = 216, + sym_local_dec = 217, + sym_open_dec = 218, + sym_infix_dec = 219, + sym_infixr_dec = 220, + sym_nonfix_dec = 221, + sym__atpat = 222, + sym_wildcard_pat = 223, + sym_scon_pat = 224, + sym_vid_pat = 225, + sym_record_pat = 226, + sym__patrow = 227, + sym_patrow = 228, + sym_labvar_patrow = 229, + sym_ellipsis_patrow = 230, + sym_unit_pat = 231, + sym_tuple_pat = 232, + sym_list_pat = 233, + sym_ellipsis_listpat = 234, + sym_vec_pat = 235, + sym_paren_pat = 236, + sym__pat = 237, + sym_app_pat = 238, + sym_typed_pat = 239, + sym_conj_pat = 240, + sym_disj_pat = 241, + sym__ty = 242, + sym_tyseq = 243, + sym__fn_ty = 244, + sym_fn_ty = 245, + sym__tuple_ty = 246, + sym_tuple_ty = 247, + sym__paren_ty = 248, + sym_paren_ty = 249, + sym__atty = 250, + sym_tyvar_ty = 251, + sym_record_ty = 252, + sym_tyrow = 253, + sym_ellipsis_tyrow = 254, + sym_tycon_ty = 255, + sym_strid = 256, + sym_longstrid = 257, + sym_sigid = 258, + sym_fctid = 259, + sym__strexp = 260, + sym_struct_strexp = 261, + sym_strid_strexp = 262, + sym_constr_strexp = 263, + sym_fctapp_strexp = 264, + sym_let_strexp = 265, + sym__strdec = 266, + sym_structure_strdec = 267, + sym__strbind = 268, + sym_strbind = 269, + sym_local_strdec = 270, + sym__sigexp = 271, + sym_sig_sigexp = 272, + sym_sigid_sigexp = 273, + sym_wheretype_sigexp = 274, + sym__sigdec = 275, + sym_signature_sigdec = 276, + sym__sigbind = 277, + sym_sigbind = 278, + sym__spec = 279, + sym_val_spec = 280, + sym__valdesc = 281, + sym_valdesc = 282, + sym_type_spec = 283, + sym__typedesc = 284, + sym_typedesc = 285, + sym_eqtype_spec = 286, + sym_datatype_spec = 287, + sym__datdesc = 288, + sym_datdesc = 289, + sym__condesc = 290, + sym_condesc = 291, + sym_datarepl_spec = 292, + sym_exception_spec = 293, + sym__exdesc = 294, + sym_exdesc = 295, + sym_structure_spec = 296, + sym__strdesc = 297, + sym_strdesc = 298, + sym_include_spec = 299, + sym_sharingtype_spec = 300, + sym_sharing_spec = 301, + sym__fctdec = 302, + sym_functor_fctdec = 303, + sym__fctbind = 304, + sym_fctbind = 305, + sym__topdec = 306, + sym__program = 307, + sym_antiquoted = 308, + sym_quoted_term = 309, + sym_quoted_type = 310, + sym__quote_content = 311, + sym_backquote = 312, + sym_hol_attributes = 313, + sym_hol_definition = 314, + sym_hol_definition_with_proof = 315, + sym_hol_datatype = 316, + sym_hol_theorem_with_proof = 317, + sym__atomic_tactic = 318, + sym_tactic = 319, + sym_THEN = 320, + sym_hol_binding = 321, + sym_hol_constructor = 322, + sym_hol_clause = 323, + sym__hol_ty_spec = 324, + sym_hol_fn_spec = 325, + sym_hol_eqn = 326, + sym_hol_pat = 327, + sym__hol_pat = 328, + sym_hol_pcons = 329, + sym_hol_ptuple = 330, + sym_hol_plist = 331, + sym_hol_identifier = 332, + sym_hol_wildcard = 333, + sym__hol_term = 334, + sym__hol_application_lhs = 335, + sym_hol_application = 336, + sym_hol_cond = 337, + sym_hol_case = 338, + sym__hol_pcon_nopare = 339, + sym_hol_match = 340, + sym_hol_bvar = 341, + sym__hol_bvar = 342, + sym_hol_binder = 343, + sym_hol_left_unary_term = 344, + sym_hol_binary_term = 345, + sym_hol_annotated = 346, + sym__hol_type = 347, + sym_hol_list_ty = 348, + sym_hol_fun_ty = 349, + sym_hol_atomic_type = 350, + sym_hol_tuple = 351, + sym_hol_list = 352, + sym_hol_set = 353, + sym__hol_literal = 354, + aux_sym_tyvarseq_repeat1 = 355, + aux_sym_longvid_repeat1 = 356, + aux_sym_record_exp_repeat1 = 357, + aux_sym_record_exp_repeat2 = 358, + aux_sym_tuple_exp_repeat1 = 359, + aux_sym_sequence_exp_repeat1 = 360, + aux_sym_sequence_exp_repeat2 = 361, + aux_sym_let_exp_repeat1 = 362, + aux_sym_let_exp_repeat2 = 363, + aux_sym_app_exp_repeat1 = 364, + aux_sym__match_repeat1 = 365, + aux_sym__valbind_repeat1 = 366, + aux_sym__fvalbind_repeat1 = 367, + aux_sym__fmatch_repeat1 = 368, + aux_sym_fmrule_repeat1 = 369, + aux_sym__typbind_repeat1 = 370, + aux_sym__datbind_repeat1 = 371, + aux_sym__conbind_repeat1 = 372, + aux_sym__exbind_repeat1 = 373, + aux_sym_local_dec_repeat1 = 374, + aux_sym_open_dec_repeat1 = 375, + aux_sym_infix_dec_repeat1 = 376, + aux_sym_record_pat_repeat1 = 377, + aux_sym_tuple_pat_repeat1 = 378, + aux_sym_app_pat_repeat1 = 379, + aux_sym_tyseq_repeat1 = 380, + aux_sym_tuple_ty_repeat1 = 381, + aux_sym_record_ty_repeat1 = 382, + aux_sym_struct_strexp_repeat1 = 383, + aux_sym_fctapp_strexp_repeat1 = 384, + aux_sym_let_strexp_repeat1 = 385, + aux_sym__strbind_repeat1 = 386, + aux_sym_local_strdec_repeat1 = 387, + aux_sym_sig_sigexp_repeat1 = 388, + aux_sym_wheretype_sigexp_repeat1 = 389, + aux_sym__sigbind_repeat1 = 390, + aux_sym__valdesc_repeat1 = 391, + aux_sym__typedesc_repeat1 = 392, + aux_sym__datdesc_repeat1 = 393, + aux_sym__condesc_repeat1 = 394, + aux_sym__exdesc_repeat1 = 395, + aux_sym__strdesc_repeat1 = 396, + aux_sym_include_spec_repeat1 = 397, + aux_sym_sharingtype_spec_repeat1 = 398, + aux_sym_sharing_spec_repeat1 = 399, + aux_sym__fctbind_repeat1 = 400, + aux_sym_fctbind_repeat1 = 401, + aux_sym__program_repeat1 = 402, + aux_sym_backquote_repeat1 = 403, + aux_sym_hol_attributes_repeat1 = 404, + aux_sym_THEN_repeat1 = 405, + aux_sym_hol_constructor_repeat1 = 406, + aux_sym_hol_clause_repeat1 = 407, + aux_sym_hol_fn_spec_repeat1 = 408, + aux_sym_hol_fn_spec_repeat2 = 409, + aux_sym_hol_eqn_repeat1 = 410, + aux_sym_hol_pcons_repeat1 = 411, + aux_sym_hol_ptuple_repeat1 = 412, + aux_sym_hol_plist_repeat1 = 413, + aux_sym_hol_case_repeat1 = 414, + aux_sym_hol_binder_repeat1 = 415, + aux_sym_hol_tuple_repeat1 = 416, + aux_sym_hol_list_repeat1 = 417, + alias_sym_attribute = 418, + alias_sym_hol_alphanumeric = 419, + alias_sym_hol_defname = 420, + alias_sym_hol_pannotation = 421, + alias_sym_hol_term = 422, + alias_sym_hol_thmname = 423, + alias_sym_hol_thmstmt = 424, + alias_sym_sml_variable = 425, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym_integer_scon] = "integer_scon", + [sym_word_scon] = "word_scon", + [sym_real_scon] = "real_scon", + [sym_string_scon] = "string_scon", + [sym_char_scon] = "char_scon", + [sym__alphaAlphaNumeric_ident] = "_alphaAlphaNumeric_ident", + [sym__primeAlphaNumeric_ident] = "_primeAlphaNumeric_ident", + [sym__symbolic_ident] = "_symbolic_ident", + [anon_sym_LPAREN] = "(", + [anon_sym_COMMA] = ",", + [anon_sym_RPAREN] = ")", + [anon_sym_DOT] = ".", + [aux_sym_lab_token1] = "lab_token1", + [anon_sym_op] = "op", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [anon_sym_EQ] = "=", + [anon_sym_COLON] = ":", + [anon_sym_DOT_DOT_DOT] = "...", + [anon_sym_POUND] = "#", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [anon_sym_POUND_LBRACK] = "#[", + [anon_sym_SEMI] = ";", + [anon_sym_let] = "let", + [anon_sym_in] = "in", + [anon_sym_end] = "end", + [anon_sym_andalso] = "andalso", + [anon_sym_orelse] = "orelse", + [anon_sym_handle] = "handle", + [anon_sym_raise] = "raise", + [anon_sym_if] = "if", + [anon_sym_then] = "then", + [anon_sym_else] = "else", + [anon_sym_while] = "while", + [anon_sym_do] = "do", + [anon_sym_case] = "case", + [anon_sym_of] = "of", + [anon_sym_fn] = "fn", + [anon_sym_PIPE] = "|", + [anon_sym_EQ_GT] = "=>", + [anon_sym_val] = "val", + [anon_sym_rec] = "rec", + [anon_sym_and] = "and", + [anon_sym_fun] = "fun", + [anon_sym_type] = "type", + [anon_sym_datatype] = "datatype", + [anon_sym_withtype] = "withtype", + [anon_sym_abstype] = "abstype", + [anon_sym_with] = "with", + [anon_sym_exception] = "exception", + [anon_sym_local] = "local", + [anon_sym_open] = "open", + [anon_sym_infix] = "infix", + [aux_sym_infix_dec_token1] = "infix_dec_token1", + [anon_sym_infixr] = "infixr", + [anon_sym_nonfix] = "nonfix", + [anon_sym__] = "_", + [anon_sym_as] = "as", + [anon_sym_DASH_GT] = "->", + [anon_sym_STAR] = "*", + [anon_sym_struct] = "struct", + [anon_sym_COLON_GT] = ":>", + [anon_sym_structure] = "structure", + [anon_sym_sig] = "sig", + [anon_sym_where] = "where", + [anon_sym_signature] = "signature", + [anon_sym_eqtype] = "eqtype", + [anon_sym_include] = "include", + [anon_sym_sharing] = "sharing", + [anon_sym_functor] = "functor", + [anon_sym_CARET] = "^", + [anon_sym_u201c] = "\u201c", + [anon_sym_u201d] = "\u201d", + [aux_sym__quote_content_token1] = "quoted", + [anon_sym_u2018] = "\u2018", + [anon_sym_u2019] = "\u2019", + [anon_sym_BQUOTE] = "`", + [anon_sym_Definition] = "Definition", + [anon_sym_End] = "End", + [anon_sym_Termination] = "Termination", + [anon_sym_Datatype_COLON] = "Datatype:", + [anon_sym_Theorem] = "Theorem", + [anon_sym_Proof] = "Proof", + [anon_sym_QED] = "QED", + [anon_sym_BSLASH_BSLASH] = "\\\\", + [anon_sym_u2227] = "\u2227", + [anon_sym_SLASH_BSLASH] = "/\\", + [anon_sym_COLON_COLON] = "::", + [sym__hol_alphanumeric] = "_hol_alphanumeric", + [sym__hol_symbolic] = "_hol_symbolic", + [sym_hol_cname_alphanumeric] = "hol_cname_alphanumeric", + [sym_hol_variable] = "hol_variable", + [anon_sym_OLEAST] = "OLEAST", + [anon_sym_LEAST] = "LEAST", + [anon_sym_some] = "some", + [anon_sym_QMARK_BANG_BANG] = "\?!!", + [anon_sym_u2203_BANG] = "\u2203!", + [anon_sym_QMARK_BANG] = "\?!", + [anon_sym_u2203] = "\u2203", + [anon_sym_QMARK] = "\?", + [anon_sym_u2200] = "\u2200", + [anon_sym_BANG] = "!", + [anon_sym_AT] = "@", + [anon_sym_u03bb] = "\u03bb", + [anon_sym_BSLASH] = "\\", + [anon_sym_DASH] = "-", + [anon_sym_u00ac] = "\u00ac", + [anon_sym_TILDE] = "~", + [anon_sym_u21ce] = "\u21ce", + [anon_sym_LT_EQ_SLASH_EQ_GT] = "<=/=>", + [anon_sym_LT_EQ_GT] = "<=>", + [anon_sym_u21d4] = "\u21d4", + [anon_sym_EQ_EQ_GT] = "==>", + [anon_sym_u21d2] = "\u21d2", + [anon_sym_BSLASH_SLASH] = "\\/", + [anon_sym_u2228] = "\u2228", + [anon_sym_u2209] = "\u2209", + [anon_sym_NOTIN] = "NOTIN", + [anon_sym_u2208] = "\u2208", + [anon_sym_IN] = "IN", + [anon_sym_u227c] = "\u227c", + [anon_sym_LT_LT_EQ] = "<<=", + [anon_sym_PERMUTES] = "PERMUTES", + [anon_sym_HAS_SIZE] = "HAS_SIZE", + [anon_sym_u2282] = "\u2282", + [anon_sym_PSUBSET] = "PSUBSET", + [anon_sym_u2286] = "\u2286", + [anon_sym_u2265] = "\u2265", + [anon_sym_GT_EQ] = ">=", + [anon_sym_u2264] = "\u2264", + [anon_sym_LT_EQ] = "<=", + [anon_sym_GT] = ">", + [anon_sym_LT] = "<", + [anon_sym_u2286u1d63] = "\u2286\u1d63", + [anon_sym_RSUBSET] = "RSUBSET", + [anon_sym_u2260] = "\u2260", + [anon_sym_LT_GT] = "<>", + [anon_sym_DOLLAR] = "$", + [anon_sym_INSERT] = "INSERT", + [anon_sym_PLUS] = "+", + [anon_sym_o] = "o", + [anon_sym_list] = "list", + [anon_sym_num] = "num", + [anon_sym_string] = "string", + [aux_sym_hol_atomic_type_token1] = "hol_atomic_type_token1", + [sym_hol_true] = "hol_true", + [sym_hol_false] = "hol_false", + [sym_hol_number] = "hol_number", + [sym_hol_string] = "hol_string", + [sym_hol_character] = "hol_character", + [sym_block_comment] = "block_comment", + [sym_line_comment] = "line_comment", + [sym_source_file] = "source_file", + [sym__scon] = "_scon", + [sym_tyvar] = "tyvar", + [sym_tyvarseq] = "tyvarseq", + [sym_vid] = "vid", + [sym_longvid] = "longvid", + [sym_tycon] = "tycon", + [sym_longtycon] = "longtycon", + [sym_lab] = "lab", + [sym__atexp] = "_atexp", + [sym_scon_exp] = "scon_exp", + [sym_vid_exp] = "vid_exp", + [sym_record_exp] = "record_exp", + [sym__exprow] = "_exprow", + [sym_exprow] = "exprow", + [sym_labvar_exprow] = "labvar_exprow", + [sym_ellipsis_exprow] = "ellipsis_exprow", + [sym_recordsel_exp] = "recordsel_exp", + [sym_unit_exp] = "unit_exp", + [sym_tuple_exp] = "tuple_exp", + [sym_list_exp] = "list_exp", + [sym_ellipsis_listexp] = "ellipsis_listexp", + [sym_vec_exp] = "vec_exp", + [sym_sequence_exp] = "sequence_exp", + [sym_let_exp] = "let_exp", + [sym_paren_exp] = "paren_exp", + [sym__exp] = "_exp", + [sym_app_exp] = "app_exp", + [sym_typed_exp] = "typed_exp", + [sym_conj_exp] = "conj_exp", + [sym_disj_exp] = "disj_exp", + [sym_handle_exp] = "handle_exp", + [sym_raise_exp] = "raise_exp", + [sym_cond_exp] = "cond_exp", + [sym_iter_exp] = "iter_exp", + [sym_case_exp] = "case_exp", + [sym_fn_exp] = "fn_exp", + [sym__match] = "_match", + [sym_mrule] = "mrule", + [sym__dec] = "_dec", + [sym__dec_no_local] = "_dec_no_local", + [sym_do_dec] = "do_dec", + [sym_val_dec] = "val_dec", + [sym__valbind] = "_valbind", + [sym_valbind] = "valbind", + [sym_fun_dec] = "fun_dec", + [sym__fvalbind] = "_fvalbind", + [sym_fvalbind] = "fvalbind", + [sym__fmatch] = "_fmatch", + [sym_fmrule] = "fmrule", + [sym_type_dec] = "type_dec", + [sym__typbind] = "_typbind", + [sym_typbind] = "typbind", + [sym_datatype_dec] = "datatype_dec", + [sym__datbind] = "_datbind", + [sym_datbind] = "datbind", + [sym__conbind] = "_conbind", + [sym_conbind] = "conbind", + [sym_datarepl_dec] = "datarepl_dec", + [sym_abstype_dec] = "abstype_dec", + [sym_exception_dec] = "exception_dec", + [sym__exbind] = "_exbind", + [sym_exbind] = "exbind", + [sym_local_dec] = "local_dec", + [sym_open_dec] = "open_dec", + [sym_infix_dec] = "infix_dec", + [sym_infixr_dec] = "infixr_dec", + [sym_nonfix_dec] = "nonfix_dec", + [sym__atpat] = "_atpat", + [sym_wildcard_pat] = "wildcard_pat", + [sym_scon_pat] = "scon_pat", + [sym_vid_pat] = "vid_pat", + [sym_record_pat] = "record_pat", + [sym__patrow] = "_patrow", + [sym_patrow] = "patrow", + [sym_labvar_patrow] = "labvar_patrow", + [sym_ellipsis_patrow] = "ellipsis_patrow", + [sym_unit_pat] = "unit_pat", + [sym_tuple_pat] = "tuple_pat", + [sym_list_pat] = "list_pat", + [sym_ellipsis_listpat] = "ellipsis_listpat", + [sym_vec_pat] = "vec_pat", + [sym_paren_pat] = "paren_pat", + [sym__pat] = "_pat", + [sym_app_pat] = "app_pat", + [sym_typed_pat] = "typed_pat", + [sym_conj_pat] = "conj_pat", + [sym_disj_pat] = "disj_pat", + [sym__ty] = "_ty", + [sym_tyseq] = "tyseq", + [sym__fn_ty] = "_fn_ty", + [sym_fn_ty] = "fn_ty", + [sym__tuple_ty] = "_tuple_ty", + [sym_tuple_ty] = "tuple_ty", + [sym__paren_ty] = "_paren_ty", + [sym_paren_ty] = "paren_ty", + [sym__atty] = "_atty", + [sym_tyvar_ty] = "tyvar_ty", + [sym_record_ty] = "record_ty", + [sym_tyrow] = "tyrow", + [sym_ellipsis_tyrow] = "ellipsis_tyrow", + [sym_tycon_ty] = "tycon_ty", + [sym_strid] = "strid", + [sym_longstrid] = "longstrid", + [sym_sigid] = "sigid", + [sym_fctid] = "fctid", + [sym__strexp] = "_strexp", + [sym_struct_strexp] = "struct_strexp", + [sym_strid_strexp] = "strid_strexp", + [sym_constr_strexp] = "constr_strexp", + [sym_fctapp_strexp] = "fctapp_strexp", + [sym_let_strexp] = "let_strexp", + [sym__strdec] = "_strdec", + [sym_structure_strdec] = "structure_strdec", + [sym__strbind] = "_strbind", + [sym_strbind] = "strbind", + [sym_local_strdec] = "local_strdec", + [sym__sigexp] = "_sigexp", + [sym_sig_sigexp] = "sig_sigexp", + [sym_sigid_sigexp] = "sigid_sigexp", + [sym_wheretype_sigexp] = "wheretype_sigexp", + [sym__sigdec] = "_sigdec", + [sym_signature_sigdec] = "signature_sigdec", + [sym__sigbind] = "_sigbind", + [sym_sigbind] = "sigbind", + [sym__spec] = "_spec", + [sym_val_spec] = "val_spec", + [sym__valdesc] = "_valdesc", + [sym_valdesc] = "valdesc", + [sym_type_spec] = "type_spec", + [sym__typedesc] = "_typedesc", + [sym_typedesc] = "typedesc", + [sym_eqtype_spec] = "eqtype_spec", + [sym_datatype_spec] = "datatype_spec", + [sym__datdesc] = "_datdesc", + [sym_datdesc] = "datdesc", + [sym__condesc] = "_condesc", + [sym_condesc] = "condesc", + [sym_datarepl_spec] = "datarepl_spec", + [sym_exception_spec] = "exception_spec", + [sym__exdesc] = "_exdesc", + [sym_exdesc] = "exdesc", + [sym_structure_spec] = "structure_spec", + [sym__strdesc] = "_strdesc", + [sym_strdesc] = "strdesc", + [sym_include_spec] = "include_spec", + [sym_sharingtype_spec] = "sharingtype_spec", + [sym_sharing_spec] = "sharing_spec", + [sym__fctdec] = "_fctdec", + [sym_functor_fctdec] = "functor_fctdec", + [sym__fctbind] = "_fctbind", + [sym_fctbind] = "fctbind", + [sym__topdec] = "_topdec", + [sym__program] = "_program", + [sym_antiquoted] = "antiquoted", + [sym_quoted_term] = "quoted_term", + [sym_quoted_type] = "quoted_type", + [sym__quote_content] = "_quote_content", + [sym_backquote] = "backquote", + [sym_hol_attributes] = "hol_attributes", + [sym_hol_definition] = "hol_definition", + [sym_hol_definition_with_proof] = "hol_definition_with_proof", + [sym_hol_datatype] = "hol_datatype", + [sym_hol_theorem_with_proof] = "hol_theorem_with_proof", + [sym__atomic_tactic] = "_atomic_tactic", + [sym_tactic] = "tactic", + [sym_THEN] = "THEN", + [sym_hol_binding] = "hol_binding", + [sym_hol_constructor] = "hol_constructor", + [sym_hol_clause] = "hol_clause", + [sym__hol_ty_spec] = "_hol_ty_spec", + [sym_hol_fn_spec] = "hol_fn_spec", + [sym_hol_eqn] = "hol_eqn", + [sym_hol_pat] = "hol_pat", + [sym__hol_pat] = "_hol_pat", + [sym_hol_pcons] = "hol_pcons", + [sym_hol_ptuple] = "hol_ptuple", + [sym_hol_plist] = "hol_plist", + [sym_hol_identifier] = "hol_identifier", + [sym_hol_wildcard] = "hol_wildcard", + [sym__hol_term] = "_hol_term", + [sym__hol_application_lhs] = "_hol_application_lhs", + [sym_hol_application] = "hol_application", + [sym_hol_cond] = "hol_cond", + [sym_hol_case] = "hol_case", + [sym__hol_pcon_nopare] = "hol_pat", + [sym_hol_match] = "hol_match", + [sym_hol_bvar] = "hol_bvar", + [sym__hol_bvar] = "_hol_bvar", + [sym_hol_binder] = "hol_binder", + [sym_hol_left_unary_term] = "hol_left_unary_term", + [sym_hol_binary_term] = "hol_binary_term", + [sym_hol_annotated] = "hol_annotated", + [sym__hol_type] = "_hol_type", + [sym_hol_list_ty] = "hol_list_ty", + [sym_hol_fun_ty] = "hol_fun_ty", + [sym_hol_atomic_type] = "hol_atomic_type", + [sym_hol_tuple] = "hol_tuple", + [sym_hol_list] = "hol_list", + [sym_hol_set] = "hol_set", + [sym__hol_literal] = "_hol_literal", + [aux_sym_tyvarseq_repeat1] = "tyvarseq_repeat1", + [aux_sym_longvid_repeat1] = "longvid_repeat1", + [aux_sym_record_exp_repeat1] = "record_exp_repeat1", + [aux_sym_record_exp_repeat2] = "record_exp_repeat2", + [aux_sym_tuple_exp_repeat1] = "tuple_exp_repeat1", + [aux_sym_sequence_exp_repeat1] = "sequence_exp_repeat1", + [aux_sym_sequence_exp_repeat2] = "sequence_exp_repeat2", + [aux_sym_let_exp_repeat1] = "let_exp_repeat1", + [aux_sym_let_exp_repeat2] = "let_exp_repeat2", + [aux_sym_app_exp_repeat1] = "app_exp_repeat1", + [aux_sym__match_repeat1] = "_match_repeat1", + [aux_sym__valbind_repeat1] = "_valbind_repeat1", + [aux_sym__fvalbind_repeat1] = "_fvalbind_repeat1", + [aux_sym__fmatch_repeat1] = "_fmatch_repeat1", + [aux_sym_fmrule_repeat1] = "fmrule_repeat1", + [aux_sym__typbind_repeat1] = "_typbind_repeat1", + [aux_sym__datbind_repeat1] = "_datbind_repeat1", + [aux_sym__conbind_repeat1] = "_conbind_repeat1", + [aux_sym__exbind_repeat1] = "_exbind_repeat1", + [aux_sym_local_dec_repeat1] = "local_dec_repeat1", + [aux_sym_open_dec_repeat1] = "open_dec_repeat1", + [aux_sym_infix_dec_repeat1] = "infix_dec_repeat1", + [aux_sym_record_pat_repeat1] = "record_pat_repeat1", + [aux_sym_tuple_pat_repeat1] = "tuple_pat_repeat1", + [aux_sym_app_pat_repeat1] = "app_pat_repeat1", + [aux_sym_tyseq_repeat1] = "tyseq_repeat1", + [aux_sym_tuple_ty_repeat1] = "tuple_ty_repeat1", + [aux_sym_record_ty_repeat1] = "record_ty_repeat1", + [aux_sym_struct_strexp_repeat1] = "struct_strexp_repeat1", + [aux_sym_fctapp_strexp_repeat1] = "fctapp_strexp_repeat1", + [aux_sym_let_strexp_repeat1] = "let_strexp_repeat1", + [aux_sym__strbind_repeat1] = "_strbind_repeat1", + [aux_sym_local_strdec_repeat1] = "local_strdec_repeat1", + [aux_sym_sig_sigexp_repeat1] = "sig_sigexp_repeat1", + [aux_sym_wheretype_sigexp_repeat1] = "wheretype_sigexp_repeat1", + [aux_sym__sigbind_repeat1] = "_sigbind_repeat1", + [aux_sym__valdesc_repeat1] = "_valdesc_repeat1", + [aux_sym__typedesc_repeat1] = "_typedesc_repeat1", + [aux_sym__datdesc_repeat1] = "_datdesc_repeat1", + [aux_sym__condesc_repeat1] = "_condesc_repeat1", + [aux_sym__exdesc_repeat1] = "_exdesc_repeat1", + [aux_sym__strdesc_repeat1] = "_strdesc_repeat1", + [aux_sym_include_spec_repeat1] = "include_spec_repeat1", + [aux_sym_sharingtype_spec_repeat1] = "sharingtype_spec_repeat1", + [aux_sym_sharing_spec_repeat1] = "sharing_spec_repeat1", + [aux_sym__fctbind_repeat1] = "_fctbind_repeat1", + [aux_sym_fctbind_repeat1] = "fctbind_repeat1", + [aux_sym__program_repeat1] = "_program_repeat1", + [aux_sym_backquote_repeat1] = "backquote_repeat1", + [aux_sym_hol_attributes_repeat1] = "hol_attributes_repeat1", + [aux_sym_THEN_repeat1] = "THEN_repeat1", + [aux_sym_hol_constructor_repeat1] = "hol_constructor_repeat1", + [aux_sym_hol_clause_repeat1] = "hol_clause_repeat1", + [aux_sym_hol_fn_spec_repeat1] = "hol_fn_spec_repeat1", + [aux_sym_hol_fn_spec_repeat2] = "hol_fn_spec_repeat2", + [aux_sym_hol_eqn_repeat1] = "hol_eqn_repeat1", + [aux_sym_hol_pcons_repeat1] = "hol_pcons_repeat1", + [aux_sym_hol_ptuple_repeat1] = "hol_ptuple_repeat1", + [aux_sym_hol_plist_repeat1] = "hol_plist_repeat1", + [aux_sym_hol_case_repeat1] = "hol_case_repeat1", + [aux_sym_hol_binder_repeat1] = "hol_binder_repeat1", + [aux_sym_hol_tuple_repeat1] = "hol_tuple_repeat1", + [aux_sym_hol_list_repeat1] = "hol_list_repeat1", + [alias_sym_attribute] = "attribute", + [alias_sym_hol_alphanumeric] = "hol_alphanumeric", + [alias_sym_hol_defname] = "hol_defname", + [alias_sym_hol_pannotation] = "hol_pannotation", + [alias_sym_hol_term] = "hol_term", + [alias_sym_hol_thmname] = "hol_thmname", + [alias_sym_hol_thmstmt] = "hol_thmstmt", + [alias_sym_sml_variable] = "sml_variable", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym_integer_scon] = sym_integer_scon, + [sym_word_scon] = sym_word_scon, + [sym_real_scon] = sym_real_scon, + [sym_string_scon] = sym_string_scon, + [sym_char_scon] = sym_char_scon, + [sym__alphaAlphaNumeric_ident] = sym__alphaAlphaNumeric_ident, + [sym__primeAlphaNumeric_ident] = sym__primeAlphaNumeric_ident, + [sym__symbolic_ident] = sym__symbolic_ident, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_DOT] = anon_sym_DOT, + [aux_sym_lab_token1] = aux_sym_lab_token1, + [anon_sym_op] = anon_sym_op, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, + [anon_sym_POUND] = anon_sym_POUND, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_POUND_LBRACK] = anon_sym_POUND_LBRACK, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_let] = anon_sym_let, + [anon_sym_in] = anon_sym_in, + [anon_sym_end] = anon_sym_end, + [anon_sym_andalso] = anon_sym_andalso, + [anon_sym_orelse] = anon_sym_orelse, + [anon_sym_handle] = anon_sym_handle, + [anon_sym_raise] = anon_sym_raise, + [anon_sym_if] = anon_sym_if, + [anon_sym_then] = anon_sym_then, + [anon_sym_else] = anon_sym_else, + [anon_sym_while] = anon_sym_while, + [anon_sym_do] = anon_sym_do, + [anon_sym_case] = anon_sym_case, + [anon_sym_of] = anon_sym_of, + [anon_sym_fn] = anon_sym_fn, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_EQ_GT] = anon_sym_EQ_GT, + [anon_sym_val] = anon_sym_val, + [anon_sym_rec] = anon_sym_rec, + [anon_sym_and] = anon_sym_and, + [anon_sym_fun] = anon_sym_fun, + [anon_sym_type] = anon_sym_type, + [anon_sym_datatype] = anon_sym_datatype, + [anon_sym_withtype] = anon_sym_withtype, + [anon_sym_abstype] = anon_sym_abstype, + [anon_sym_with] = anon_sym_with, + [anon_sym_exception] = anon_sym_exception, + [anon_sym_local] = anon_sym_local, + [anon_sym_open] = anon_sym_open, + [anon_sym_infix] = anon_sym_infix, + [aux_sym_infix_dec_token1] = aux_sym_infix_dec_token1, + [anon_sym_infixr] = anon_sym_infixr, + [anon_sym_nonfix] = anon_sym_nonfix, + [anon_sym__] = anon_sym__, + [anon_sym_as] = anon_sym_as, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_struct] = anon_sym_struct, + [anon_sym_COLON_GT] = anon_sym_COLON_GT, + [anon_sym_structure] = anon_sym_structure, + [anon_sym_sig] = anon_sym_sig, + [anon_sym_where] = anon_sym_where, + [anon_sym_signature] = anon_sym_signature, + [anon_sym_eqtype] = anon_sym_eqtype, + [anon_sym_include] = anon_sym_include, + [anon_sym_sharing] = anon_sym_sharing, + [anon_sym_functor] = anon_sym_functor, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_u201c] = anon_sym_u201c, + [anon_sym_u201d] = anon_sym_u201d, + [aux_sym__quote_content_token1] = aux_sym__quote_content_token1, + [anon_sym_u2018] = anon_sym_u2018, + [anon_sym_u2019] = anon_sym_u2019, + [anon_sym_BQUOTE] = anon_sym_BQUOTE, + [anon_sym_Definition] = anon_sym_Definition, + [anon_sym_End] = anon_sym_End, + [anon_sym_Termination] = anon_sym_Termination, + [anon_sym_Datatype_COLON] = anon_sym_Datatype_COLON, + [anon_sym_Theorem] = anon_sym_Theorem, + [anon_sym_Proof] = anon_sym_Proof, + [anon_sym_QED] = anon_sym_QED, + [anon_sym_BSLASH_BSLASH] = anon_sym_BSLASH_BSLASH, + [anon_sym_u2227] = anon_sym_u2227, + [anon_sym_SLASH_BSLASH] = anon_sym_SLASH_BSLASH, + [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, + [sym__hol_alphanumeric] = sym__hol_alphanumeric, + [sym__hol_symbolic] = sym__hol_symbolic, + [sym_hol_cname_alphanumeric] = sym_hol_cname_alphanumeric, + [sym_hol_variable] = sym_hol_variable, + [anon_sym_OLEAST] = anon_sym_OLEAST, + [anon_sym_LEAST] = anon_sym_LEAST, + [anon_sym_some] = anon_sym_some, + [anon_sym_QMARK_BANG_BANG] = anon_sym_QMARK_BANG_BANG, + [anon_sym_u2203_BANG] = anon_sym_u2203_BANG, + [anon_sym_QMARK_BANG] = anon_sym_QMARK_BANG, + [anon_sym_u2203] = anon_sym_u2203, + [anon_sym_QMARK] = anon_sym_QMARK, + [anon_sym_u2200] = anon_sym_u2200, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_u03bb] = anon_sym_u03bb, + [anon_sym_BSLASH] = anon_sym_BSLASH, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_u00ac] = anon_sym_u00ac, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_u21ce] = anon_sym_u21ce, + [anon_sym_LT_EQ_SLASH_EQ_GT] = anon_sym_LT_EQ_SLASH_EQ_GT, + [anon_sym_LT_EQ_GT] = anon_sym_LT_EQ_GT, + [anon_sym_u21d4] = anon_sym_u21d4, + [anon_sym_EQ_EQ_GT] = anon_sym_EQ_EQ_GT, + [anon_sym_u21d2] = anon_sym_u21d2, + [anon_sym_BSLASH_SLASH] = anon_sym_BSLASH_SLASH, + [anon_sym_u2228] = anon_sym_u2228, + [anon_sym_u2209] = anon_sym_u2209, + [anon_sym_NOTIN] = anon_sym_NOTIN, + [anon_sym_u2208] = anon_sym_u2208, + [anon_sym_IN] = anon_sym_IN, + [anon_sym_u227c] = anon_sym_u227c, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_PERMUTES] = anon_sym_PERMUTES, + [anon_sym_HAS_SIZE] = anon_sym_HAS_SIZE, + [anon_sym_u2282] = anon_sym_u2282, + [anon_sym_PSUBSET] = anon_sym_PSUBSET, + [anon_sym_u2286] = anon_sym_u2286, + [anon_sym_u2265] = anon_sym_u2265, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_u2264] = anon_sym_u2264, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_u2286u1d63] = anon_sym_u2286u1d63, + [anon_sym_RSUBSET] = anon_sym_RSUBSET, + [anon_sym_u2260] = anon_sym_u2260, + [anon_sym_LT_GT] = anon_sym_LT_GT, + [anon_sym_DOLLAR] = anon_sym_DOLLAR, + [anon_sym_INSERT] = anon_sym_INSERT, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_o] = anon_sym_o, + [anon_sym_list] = anon_sym_list, + [anon_sym_num] = anon_sym_num, + [anon_sym_string] = anon_sym_string, + [aux_sym_hol_atomic_type_token1] = aux_sym_hol_atomic_type_token1, + [sym_hol_true] = sym_hol_true, + [sym_hol_false] = sym_hol_false, + [sym_hol_number] = sym_hol_number, + [sym_hol_string] = sym_hol_string, + [sym_hol_character] = sym_hol_character, + [sym_block_comment] = sym_block_comment, + [sym_line_comment] = sym_line_comment, + [sym_source_file] = sym_source_file, + [sym__scon] = sym__scon, + [sym_tyvar] = sym_tyvar, + [sym_tyvarseq] = sym_tyvarseq, + [sym_vid] = sym_vid, + [sym_longvid] = sym_longvid, + [sym_tycon] = sym_tycon, + [sym_longtycon] = sym_longtycon, + [sym_lab] = sym_lab, + [sym__atexp] = sym__atexp, + [sym_scon_exp] = sym_scon_exp, + [sym_vid_exp] = sym_vid_exp, + [sym_record_exp] = sym_record_exp, + [sym__exprow] = sym__exprow, + [sym_exprow] = sym_exprow, + [sym_labvar_exprow] = sym_labvar_exprow, + [sym_ellipsis_exprow] = sym_ellipsis_exprow, + [sym_recordsel_exp] = sym_recordsel_exp, + [sym_unit_exp] = sym_unit_exp, + [sym_tuple_exp] = sym_tuple_exp, + [sym_list_exp] = sym_list_exp, + [sym_ellipsis_listexp] = sym_ellipsis_listexp, + [sym_vec_exp] = sym_vec_exp, + [sym_sequence_exp] = sym_sequence_exp, + [sym_let_exp] = sym_let_exp, + [sym_paren_exp] = sym_paren_exp, + [sym__exp] = sym__exp, + [sym_app_exp] = sym_app_exp, + [sym_typed_exp] = sym_typed_exp, + [sym_conj_exp] = sym_conj_exp, + [sym_disj_exp] = sym_disj_exp, + [sym_handle_exp] = sym_handle_exp, + [sym_raise_exp] = sym_raise_exp, + [sym_cond_exp] = sym_cond_exp, + [sym_iter_exp] = sym_iter_exp, + [sym_case_exp] = sym_case_exp, + [sym_fn_exp] = sym_fn_exp, + [sym__match] = sym__match, + [sym_mrule] = sym_mrule, + [sym__dec] = sym__dec, + [sym__dec_no_local] = sym__dec_no_local, + [sym_do_dec] = sym_do_dec, + [sym_val_dec] = sym_val_dec, + [sym__valbind] = sym__valbind, + [sym_valbind] = sym_valbind, + [sym_fun_dec] = sym_fun_dec, + [sym__fvalbind] = sym__fvalbind, + [sym_fvalbind] = sym_fvalbind, + [sym__fmatch] = sym__fmatch, + [sym_fmrule] = sym_fmrule, + [sym_type_dec] = sym_type_dec, + [sym__typbind] = sym__typbind, + [sym_typbind] = sym_typbind, + [sym_datatype_dec] = sym_datatype_dec, + [sym__datbind] = sym__datbind, + [sym_datbind] = sym_datbind, + [sym__conbind] = sym__conbind, + [sym_conbind] = sym_conbind, + [sym_datarepl_dec] = sym_datarepl_dec, + [sym_abstype_dec] = sym_abstype_dec, + [sym_exception_dec] = sym_exception_dec, + [sym__exbind] = sym__exbind, + [sym_exbind] = sym_exbind, + [sym_local_dec] = sym_local_dec, + [sym_open_dec] = sym_open_dec, + [sym_infix_dec] = sym_infix_dec, + [sym_infixr_dec] = sym_infixr_dec, + [sym_nonfix_dec] = sym_nonfix_dec, + [sym__atpat] = sym__atpat, + [sym_wildcard_pat] = sym_wildcard_pat, + [sym_scon_pat] = sym_scon_pat, + [sym_vid_pat] = sym_vid_pat, + [sym_record_pat] = sym_record_pat, + [sym__patrow] = sym__patrow, + [sym_patrow] = sym_patrow, + [sym_labvar_patrow] = sym_labvar_patrow, + [sym_ellipsis_patrow] = sym_ellipsis_patrow, + [sym_unit_pat] = sym_unit_pat, + [sym_tuple_pat] = sym_tuple_pat, + [sym_list_pat] = sym_list_pat, + [sym_ellipsis_listpat] = sym_ellipsis_listpat, + [sym_vec_pat] = sym_vec_pat, + [sym_paren_pat] = sym_paren_pat, + [sym__pat] = sym__pat, + [sym_app_pat] = sym_app_pat, + [sym_typed_pat] = sym_typed_pat, + [sym_conj_pat] = sym_conj_pat, + [sym_disj_pat] = sym_disj_pat, + [sym__ty] = sym__ty, + [sym_tyseq] = sym_tyseq, + [sym__fn_ty] = sym__fn_ty, + [sym_fn_ty] = sym_fn_ty, + [sym__tuple_ty] = sym__tuple_ty, + [sym_tuple_ty] = sym_tuple_ty, + [sym__paren_ty] = sym__paren_ty, + [sym_paren_ty] = sym_paren_ty, + [sym__atty] = sym__atty, + [sym_tyvar_ty] = sym_tyvar_ty, + [sym_record_ty] = sym_record_ty, + [sym_tyrow] = sym_tyrow, + [sym_ellipsis_tyrow] = sym_ellipsis_tyrow, + [sym_tycon_ty] = sym_tycon_ty, + [sym_strid] = sym_strid, + [sym_longstrid] = sym_longstrid, + [sym_sigid] = sym_sigid, + [sym_fctid] = sym_fctid, + [sym__strexp] = sym__strexp, + [sym_struct_strexp] = sym_struct_strexp, + [sym_strid_strexp] = sym_strid_strexp, + [sym_constr_strexp] = sym_constr_strexp, + [sym_fctapp_strexp] = sym_fctapp_strexp, + [sym_let_strexp] = sym_let_strexp, + [sym__strdec] = sym__strdec, + [sym_structure_strdec] = sym_structure_strdec, + [sym__strbind] = sym__strbind, + [sym_strbind] = sym_strbind, + [sym_local_strdec] = sym_local_strdec, + [sym__sigexp] = sym__sigexp, + [sym_sig_sigexp] = sym_sig_sigexp, + [sym_sigid_sigexp] = sym_sigid_sigexp, + [sym_wheretype_sigexp] = sym_wheretype_sigexp, + [sym__sigdec] = sym__sigdec, + [sym_signature_sigdec] = sym_signature_sigdec, + [sym__sigbind] = sym__sigbind, + [sym_sigbind] = sym_sigbind, + [sym__spec] = sym__spec, + [sym_val_spec] = sym_val_spec, + [sym__valdesc] = sym__valdesc, + [sym_valdesc] = sym_valdesc, + [sym_type_spec] = sym_type_spec, + [sym__typedesc] = sym__typedesc, + [sym_typedesc] = sym_typedesc, + [sym_eqtype_spec] = sym_eqtype_spec, + [sym_datatype_spec] = sym_datatype_spec, + [sym__datdesc] = sym__datdesc, + [sym_datdesc] = sym_datdesc, + [sym__condesc] = sym__condesc, + [sym_condesc] = sym_condesc, + [sym_datarepl_spec] = sym_datarepl_spec, + [sym_exception_spec] = sym_exception_spec, + [sym__exdesc] = sym__exdesc, + [sym_exdesc] = sym_exdesc, + [sym_structure_spec] = sym_structure_spec, + [sym__strdesc] = sym__strdesc, + [sym_strdesc] = sym_strdesc, + [sym_include_spec] = sym_include_spec, + [sym_sharingtype_spec] = sym_sharingtype_spec, + [sym_sharing_spec] = sym_sharing_spec, + [sym__fctdec] = sym__fctdec, + [sym_functor_fctdec] = sym_functor_fctdec, + [sym__fctbind] = sym__fctbind, + [sym_fctbind] = sym_fctbind, + [sym__topdec] = sym__topdec, + [sym__program] = sym__program, + [sym_antiquoted] = sym_antiquoted, + [sym_quoted_term] = sym_quoted_term, + [sym_quoted_type] = sym_quoted_type, + [sym__quote_content] = sym__quote_content, + [sym_backquote] = sym_backquote, + [sym_hol_attributes] = sym_hol_attributes, + [sym_hol_definition] = sym_hol_definition, + [sym_hol_definition_with_proof] = sym_hol_definition_with_proof, + [sym_hol_datatype] = sym_hol_datatype, + [sym_hol_theorem_with_proof] = sym_hol_theorem_with_proof, + [sym__atomic_tactic] = sym__atomic_tactic, + [sym_tactic] = sym_tactic, + [sym_THEN] = sym_THEN, + [sym_hol_binding] = sym_hol_binding, + [sym_hol_constructor] = sym_hol_constructor, + [sym_hol_clause] = sym_hol_clause, + [sym__hol_ty_spec] = sym__hol_ty_spec, + [sym_hol_fn_spec] = sym_hol_fn_spec, + [sym_hol_eqn] = sym_hol_eqn, + [sym_hol_pat] = sym_hol_pat, + [sym__hol_pat] = sym__hol_pat, + [sym_hol_pcons] = sym_hol_pcons, + [sym_hol_ptuple] = sym_hol_ptuple, + [sym_hol_plist] = sym_hol_plist, + [sym_hol_identifier] = sym_hol_identifier, + [sym_hol_wildcard] = sym_hol_wildcard, + [sym__hol_term] = sym__hol_term, + [sym__hol_application_lhs] = sym__hol_application_lhs, + [sym_hol_application] = sym_hol_application, + [sym_hol_cond] = sym_hol_cond, + [sym_hol_case] = sym_hol_case, + [sym__hol_pcon_nopare] = sym_hol_pat, + [sym_hol_match] = sym_hol_match, + [sym_hol_bvar] = sym_hol_bvar, + [sym__hol_bvar] = sym__hol_bvar, + [sym_hol_binder] = sym_hol_binder, + [sym_hol_left_unary_term] = sym_hol_left_unary_term, + [sym_hol_binary_term] = sym_hol_binary_term, + [sym_hol_annotated] = sym_hol_annotated, + [sym__hol_type] = sym__hol_type, + [sym_hol_list_ty] = sym_hol_list_ty, + [sym_hol_fun_ty] = sym_hol_fun_ty, + [sym_hol_atomic_type] = sym_hol_atomic_type, + [sym_hol_tuple] = sym_hol_tuple, + [sym_hol_list] = sym_hol_list, + [sym_hol_set] = sym_hol_set, + [sym__hol_literal] = sym__hol_literal, + [aux_sym_tyvarseq_repeat1] = aux_sym_tyvarseq_repeat1, + [aux_sym_longvid_repeat1] = aux_sym_longvid_repeat1, + [aux_sym_record_exp_repeat1] = aux_sym_record_exp_repeat1, + [aux_sym_record_exp_repeat2] = aux_sym_record_exp_repeat2, + [aux_sym_tuple_exp_repeat1] = aux_sym_tuple_exp_repeat1, + [aux_sym_sequence_exp_repeat1] = aux_sym_sequence_exp_repeat1, + [aux_sym_sequence_exp_repeat2] = aux_sym_sequence_exp_repeat2, + [aux_sym_let_exp_repeat1] = aux_sym_let_exp_repeat1, + [aux_sym_let_exp_repeat2] = aux_sym_let_exp_repeat2, + [aux_sym_app_exp_repeat1] = aux_sym_app_exp_repeat1, + [aux_sym__match_repeat1] = aux_sym__match_repeat1, + [aux_sym__valbind_repeat1] = aux_sym__valbind_repeat1, + [aux_sym__fvalbind_repeat1] = aux_sym__fvalbind_repeat1, + [aux_sym__fmatch_repeat1] = aux_sym__fmatch_repeat1, + [aux_sym_fmrule_repeat1] = aux_sym_fmrule_repeat1, + [aux_sym__typbind_repeat1] = aux_sym__typbind_repeat1, + [aux_sym__datbind_repeat1] = aux_sym__datbind_repeat1, + [aux_sym__conbind_repeat1] = aux_sym__conbind_repeat1, + [aux_sym__exbind_repeat1] = aux_sym__exbind_repeat1, + [aux_sym_local_dec_repeat1] = aux_sym_local_dec_repeat1, + [aux_sym_open_dec_repeat1] = aux_sym_open_dec_repeat1, + [aux_sym_infix_dec_repeat1] = aux_sym_infix_dec_repeat1, + [aux_sym_record_pat_repeat1] = aux_sym_record_pat_repeat1, + [aux_sym_tuple_pat_repeat1] = aux_sym_tuple_pat_repeat1, + [aux_sym_app_pat_repeat1] = aux_sym_app_pat_repeat1, + [aux_sym_tyseq_repeat1] = aux_sym_tyseq_repeat1, + [aux_sym_tuple_ty_repeat1] = aux_sym_tuple_ty_repeat1, + [aux_sym_record_ty_repeat1] = aux_sym_record_ty_repeat1, + [aux_sym_struct_strexp_repeat1] = aux_sym_struct_strexp_repeat1, + [aux_sym_fctapp_strexp_repeat1] = aux_sym_fctapp_strexp_repeat1, + [aux_sym_let_strexp_repeat1] = aux_sym_let_strexp_repeat1, + [aux_sym__strbind_repeat1] = aux_sym__strbind_repeat1, + [aux_sym_local_strdec_repeat1] = aux_sym_local_strdec_repeat1, + [aux_sym_sig_sigexp_repeat1] = aux_sym_sig_sigexp_repeat1, + [aux_sym_wheretype_sigexp_repeat1] = aux_sym_wheretype_sigexp_repeat1, + [aux_sym__sigbind_repeat1] = aux_sym__sigbind_repeat1, + [aux_sym__valdesc_repeat1] = aux_sym__valdesc_repeat1, + [aux_sym__typedesc_repeat1] = aux_sym__typedesc_repeat1, + [aux_sym__datdesc_repeat1] = aux_sym__datdesc_repeat1, + [aux_sym__condesc_repeat1] = aux_sym__condesc_repeat1, + [aux_sym__exdesc_repeat1] = aux_sym__exdesc_repeat1, + [aux_sym__strdesc_repeat1] = aux_sym__strdesc_repeat1, + [aux_sym_include_spec_repeat1] = aux_sym_include_spec_repeat1, + [aux_sym_sharingtype_spec_repeat1] = aux_sym_sharingtype_spec_repeat1, + [aux_sym_sharing_spec_repeat1] = aux_sym_sharing_spec_repeat1, + [aux_sym__fctbind_repeat1] = aux_sym__fctbind_repeat1, + [aux_sym_fctbind_repeat1] = aux_sym_fctbind_repeat1, + [aux_sym__program_repeat1] = aux_sym__program_repeat1, + [aux_sym_backquote_repeat1] = aux_sym_backquote_repeat1, + [aux_sym_hol_attributes_repeat1] = aux_sym_hol_attributes_repeat1, + [aux_sym_THEN_repeat1] = aux_sym_THEN_repeat1, + [aux_sym_hol_constructor_repeat1] = aux_sym_hol_constructor_repeat1, + [aux_sym_hol_clause_repeat1] = aux_sym_hol_clause_repeat1, + [aux_sym_hol_fn_spec_repeat1] = aux_sym_hol_fn_spec_repeat1, + [aux_sym_hol_fn_spec_repeat2] = aux_sym_hol_fn_spec_repeat2, + [aux_sym_hol_eqn_repeat1] = aux_sym_hol_eqn_repeat1, + [aux_sym_hol_pcons_repeat1] = aux_sym_hol_pcons_repeat1, + [aux_sym_hol_ptuple_repeat1] = aux_sym_hol_ptuple_repeat1, + [aux_sym_hol_plist_repeat1] = aux_sym_hol_plist_repeat1, + [aux_sym_hol_case_repeat1] = aux_sym_hol_case_repeat1, + [aux_sym_hol_binder_repeat1] = aux_sym_hol_binder_repeat1, + [aux_sym_hol_tuple_repeat1] = aux_sym_hol_tuple_repeat1, + [aux_sym_hol_list_repeat1] = aux_sym_hol_list_repeat1, + [alias_sym_attribute] = alias_sym_attribute, + [alias_sym_hol_alphanumeric] = alias_sym_hol_alphanumeric, + [alias_sym_hol_defname] = alias_sym_hol_defname, + [alias_sym_hol_pannotation] = alias_sym_hol_pannotation, + [alias_sym_hol_term] = alias_sym_hol_term, + [alias_sym_hol_thmname] = alias_sym_hol_thmname, + [alias_sym_hol_thmstmt] = alias_sym_hol_thmstmt, + [alias_sym_sml_variable] = alias_sym_sml_variable, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym_integer_scon] = { + .visible = true, + .named = true, + }, + [sym_word_scon] = { + .visible = true, + .named = true, + }, + [sym_real_scon] = { + .visible = true, + .named = true, + }, + [sym_string_scon] = { + .visible = true, + .named = true, + }, + [sym_char_scon] = { + .visible = true, + .named = true, + }, + [sym__alphaAlphaNumeric_ident] = { + .visible = false, + .named = true, + }, + [sym__primeAlphaNumeric_ident] = { + .visible = false, + .named = true, + }, + [sym__symbolic_ident] = { + .visible = false, + .named = true, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [aux_sym_lab_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_op] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_POUND] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_POUND_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_let] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_end] = { + .visible = true, + .named = false, + }, + [anon_sym_andalso] = { + .visible = true, + .named = false, + }, + [anon_sym_orelse] = { + .visible = true, + .named = false, + }, + [anon_sym_handle] = { + .visible = true, + .named = false, + }, + [anon_sym_raise] = { + .visible = true, + .named = false, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_then] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [anon_sym_do] = { + .visible = true, + .named = false, + }, + [anon_sym_case] = { + .visible = true, + .named = false, + }, + [anon_sym_of] = { + .visible = true, + .named = false, + }, + [anon_sym_fn] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_val] = { + .visible = true, + .named = false, + }, + [anon_sym_rec] = { + .visible = true, + .named = false, + }, + [anon_sym_and] = { + .visible = true, + .named = false, + }, + [anon_sym_fun] = { + .visible = true, + .named = false, + }, + [anon_sym_type] = { + .visible = true, + .named = false, + }, + [anon_sym_datatype] = { + .visible = true, + .named = false, + }, + [anon_sym_withtype] = { + .visible = true, + .named = false, + }, + [anon_sym_abstype] = { + .visible = true, + .named = false, + }, + [anon_sym_with] = { + .visible = true, + .named = false, + }, + [anon_sym_exception] = { + .visible = true, + .named = false, + }, + [anon_sym_local] = { + .visible = true, + .named = false, + }, + [anon_sym_open] = { + .visible = true, + .named = false, + }, + [anon_sym_infix] = { + .visible = true, + .named = false, + }, + [aux_sym_infix_dec_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_infixr] = { + .visible = true, + .named = false, + }, + [anon_sym_nonfix] = { + .visible = true, + .named = false, + }, + [anon_sym__] = { + .visible = true, + .named = false, + }, + [anon_sym_as] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_struct] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_structure] = { + .visible = true, + .named = false, + }, + [anon_sym_sig] = { + .visible = true, + .named = false, + }, + [anon_sym_where] = { + .visible = true, + .named = false, + }, + [anon_sym_signature] = { + .visible = true, + .named = false, + }, + [anon_sym_eqtype] = { + .visible = true, + .named = false, + }, + [anon_sym_include] = { + .visible = true, + .named = false, + }, + [anon_sym_sharing] = { + .visible = true, + .named = false, + }, + [anon_sym_functor] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_u201c] = { + .visible = true, + .named = false, + }, + [anon_sym_u201d] = { + .visible = true, + .named = false, + }, + [aux_sym__quote_content_token1] = { + .visible = true, + .named = true, + }, + [anon_sym_u2018] = { + .visible = true, + .named = false, + }, + [anon_sym_u2019] = { + .visible = true, + .named = false, + }, + [anon_sym_BQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_Definition] = { + .visible = true, + .named = false, + }, + [anon_sym_End] = { + .visible = true, + .named = false, + }, + [anon_sym_Termination] = { + .visible = true, + .named = false, + }, + [anon_sym_Datatype_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_Theorem] = { + .visible = true, + .named = false, + }, + [anon_sym_Proof] = { + .visible = true, + .named = false, + }, + [anon_sym_QED] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASH_BSLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_u2227] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_BSLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_COLON] = { + .visible = true, + .named = false, + }, + [sym__hol_alphanumeric] = { + .visible = false, + .named = true, + }, + [sym__hol_symbolic] = { + .visible = false, + .named = true, + }, + [sym_hol_cname_alphanumeric] = { + .visible = true, + .named = true, + }, + [sym_hol_variable] = { + .visible = true, + .named = true, + }, + [anon_sym_OLEAST] = { + .visible = true, + .named = false, + }, + [anon_sym_LEAST] = { + .visible = true, + .named = false, + }, + [anon_sym_some] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_BANG_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_u2203_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_u2203] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_u2200] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_u03bb] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_u00ac] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_u21ce] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ_SLASH_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_u21d4] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_u21d2] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASH_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_u2228] = { + .visible = true, + .named = false, + }, + [anon_sym_u2209] = { + .visible = true, + .named = false, + }, + [anon_sym_NOTIN] = { + .visible = true, + .named = false, + }, + [anon_sym_u2208] = { + .visible = true, + .named = false, + }, + [anon_sym_IN] = { + .visible = true, + .named = false, + }, + [anon_sym_u227c] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERMUTES] = { + .visible = true, + .named = false, + }, + [anon_sym_HAS_SIZE] = { + .visible = true, + .named = false, + }, + [anon_sym_u2282] = { + .visible = true, + .named = false, + }, + [anon_sym_PSUBSET] = { + .visible = true, + .named = false, + }, + [anon_sym_u2286] = { + .visible = true, + .named = false, + }, + [anon_sym_u2265] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_u2264] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_u2286u1d63] = { + .visible = true, + .named = false, + }, + [anon_sym_RSUBSET] = { + .visible = true, + .named = false, + }, + [anon_sym_u2260] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_DOLLAR] = { + .visible = true, + .named = false, + }, + [anon_sym_INSERT] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_o] = { + .visible = true, + .named = false, + }, + [anon_sym_list] = { + .visible = true, + .named = false, + }, + [anon_sym_num] = { + .visible = true, + .named = false, + }, + [anon_sym_string] = { + .visible = true, + .named = false, + }, + [aux_sym_hol_atomic_type_token1] = { + .visible = false, + .named = false, + }, + [sym_hol_true] = { + .visible = true, + .named = true, + }, + [sym_hol_false] = { + .visible = true, + .named = true, + }, + [sym_hol_number] = { + .visible = true, + .named = true, + }, + [sym_hol_string] = { + .visible = true, + .named = true, + }, + [sym_hol_character] = { + .visible = true, + .named = true, + }, + [sym_block_comment] = { + .visible = true, + .named = true, + }, + [sym_line_comment] = { + .visible = true, + .named = true, + }, + [sym_source_file] = { + .visible = true, + .named = true, + }, + [sym__scon] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_tyvar] = { + .visible = true, + .named = true, + }, + [sym_tyvarseq] = { + .visible = true, + .named = true, + }, + [sym_vid] = { + .visible = true, + .named = true, + }, + [sym_longvid] = { + .visible = true, + .named = true, + }, + [sym_tycon] = { + .visible = true, + .named = true, + }, + [sym_longtycon] = { + .visible = true, + .named = true, + }, + [sym_lab] = { + .visible = true, + .named = true, + }, + [sym__atexp] = { + .visible = false, + .named = true, + }, + [sym_scon_exp] = { + .visible = true, + .named = true, + }, + [sym_vid_exp] = { + .visible = true, + .named = true, + }, + [sym_record_exp] = { + .visible = true, + .named = true, + }, + [sym__exprow] = { + .visible = false, + .named = true, + }, + [sym_exprow] = { + .visible = true, + .named = true, + }, + [sym_labvar_exprow] = { + .visible = true, + .named = true, + }, + [sym_ellipsis_exprow] = { + .visible = true, + .named = true, + }, + [sym_recordsel_exp] = { + .visible = true, + .named = true, + }, + [sym_unit_exp] = { + .visible = true, + .named = true, + }, + [sym_tuple_exp] = { + .visible = true, + .named = true, + }, + [sym_list_exp] = { + .visible = true, + .named = true, + }, + [sym_ellipsis_listexp] = { + .visible = true, + .named = true, + }, + [sym_vec_exp] = { + .visible = true, + .named = true, + }, + [sym_sequence_exp] = { + .visible = true, + .named = true, + }, + [sym_let_exp] = { + .visible = true, + .named = true, + }, + [sym_paren_exp] = { + .visible = true, + .named = true, + }, + [sym__exp] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_app_exp] = { + .visible = true, + .named = true, + }, + [sym_typed_exp] = { + .visible = true, + .named = true, + }, + [sym_conj_exp] = { + .visible = true, + .named = true, + }, + [sym_disj_exp] = { + .visible = true, + .named = true, + }, + [sym_handle_exp] = { + .visible = true, + .named = true, + }, + [sym_raise_exp] = { + .visible = true, + .named = true, + }, + [sym_cond_exp] = { + .visible = true, + .named = true, + }, + [sym_iter_exp] = { + .visible = true, + .named = true, + }, + [sym_case_exp] = { + .visible = true, + .named = true, + }, + [sym_fn_exp] = { + .visible = true, + .named = true, + }, + [sym__match] = { + .visible = false, + .named = true, + }, + [sym_mrule] = { + .visible = true, + .named = true, + }, + [sym__dec] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__dec_no_local] = { + .visible = false, + .named = true, + }, + [sym_do_dec] = { + .visible = true, + .named = true, + }, + [sym_val_dec] = { + .visible = true, + .named = true, + }, + [sym__valbind] = { + .visible = false, + .named = true, + }, + [sym_valbind] = { + .visible = true, + .named = true, + }, + [sym_fun_dec] = { + .visible = true, + .named = true, + }, + [sym__fvalbind] = { + .visible = false, + .named = true, + }, + [sym_fvalbind] = { + .visible = true, + .named = true, + }, + [sym__fmatch] = { + .visible = false, + .named = true, + }, + [sym_fmrule] = { + .visible = true, + .named = true, + }, + [sym_type_dec] = { + .visible = true, + .named = true, + }, + [sym__typbind] = { + .visible = false, + .named = true, + }, + [sym_typbind] = { + .visible = true, + .named = true, + }, + [sym_datatype_dec] = { + .visible = true, + .named = true, + }, + [sym__datbind] = { + .visible = false, + .named = true, + }, + [sym_datbind] = { + .visible = true, + .named = true, + }, + [sym__conbind] = { + .visible = false, + .named = true, + }, + [sym_conbind] = { + .visible = true, + .named = true, + }, + [sym_datarepl_dec] = { + .visible = true, + .named = true, + }, + [sym_abstype_dec] = { + .visible = true, + .named = true, + }, + [sym_exception_dec] = { + .visible = true, + .named = true, + }, + [sym__exbind] = { + .visible = false, + .named = true, + }, + [sym_exbind] = { + .visible = true, + .named = true, + }, + [sym_local_dec] = { + .visible = true, + .named = true, + }, + [sym_open_dec] = { + .visible = true, + .named = true, + }, + [sym_infix_dec] = { + .visible = true, + .named = true, + }, + [sym_infixr_dec] = { + .visible = true, + .named = true, + }, + [sym_nonfix_dec] = { + .visible = true, + .named = true, + }, + [sym__atpat] = { + .visible = false, + .named = true, + }, + [sym_wildcard_pat] = { + .visible = true, + .named = true, + }, + [sym_scon_pat] = { + .visible = true, + .named = true, + }, + [sym_vid_pat] = { + .visible = true, + .named = true, + }, + [sym_record_pat] = { + .visible = true, + .named = true, + }, + [sym__patrow] = { + .visible = false, + .named = true, + }, + [sym_patrow] = { + .visible = true, + .named = true, + }, + [sym_labvar_patrow] = { + .visible = true, + .named = true, + }, + [sym_ellipsis_patrow] = { + .visible = true, + .named = true, + }, + [sym_unit_pat] = { + .visible = true, + .named = true, + }, + [sym_tuple_pat] = { + .visible = true, + .named = true, + }, + [sym_list_pat] = { + .visible = true, + .named = true, + }, + [sym_ellipsis_listpat] = { + .visible = true, + .named = true, + }, + [sym_vec_pat] = { + .visible = true, + .named = true, + }, + [sym_paren_pat] = { + .visible = true, + .named = true, + }, + [sym__pat] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_app_pat] = { + .visible = true, + .named = true, + }, + [sym_typed_pat] = { + .visible = true, + .named = true, + }, + [sym_conj_pat] = { + .visible = true, + .named = true, + }, + [sym_disj_pat] = { + .visible = true, + .named = true, + }, + [sym__ty] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_tyseq] = { + .visible = true, + .named = true, + }, + [sym__fn_ty] = { + .visible = false, + .named = true, + }, + [sym_fn_ty] = { + .visible = true, + .named = true, + }, + [sym__tuple_ty] = { + .visible = false, + .named = true, + }, + [sym_tuple_ty] = { + .visible = true, + .named = true, + }, + [sym__paren_ty] = { + .visible = false, + .named = true, + }, + [sym_paren_ty] = { + .visible = true, + .named = true, + }, + [sym__atty] = { + .visible = false, + .named = true, + }, + [sym_tyvar_ty] = { + .visible = true, + .named = true, + }, + [sym_record_ty] = { + .visible = true, + .named = true, + }, + [sym_tyrow] = { + .visible = true, + .named = true, + }, + [sym_ellipsis_tyrow] = { + .visible = true, + .named = true, + }, + [sym_tycon_ty] = { + .visible = true, + .named = true, + }, + [sym_strid] = { + .visible = true, + .named = true, + }, + [sym_longstrid] = { + .visible = true, + .named = true, + }, + [sym_sigid] = { + .visible = true, + .named = true, + }, + [sym_fctid] = { + .visible = true, + .named = true, + }, + [sym__strexp] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_struct_strexp] = { + .visible = true, + .named = true, + }, + [sym_strid_strexp] = { + .visible = true, + .named = true, + }, + [sym_constr_strexp] = { + .visible = true, + .named = true, + }, + [sym_fctapp_strexp] = { + .visible = true, + .named = true, + }, + [sym_let_strexp] = { + .visible = true, + .named = true, + }, + [sym__strdec] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_structure_strdec] = { + .visible = true, + .named = true, + }, + [sym__strbind] = { + .visible = false, + .named = true, + }, + [sym_strbind] = { + .visible = true, + .named = true, + }, + [sym_local_strdec] = { + .visible = true, + .named = true, + }, + [sym__sigexp] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_sig_sigexp] = { + .visible = true, + .named = true, + }, + [sym_sigid_sigexp] = { + .visible = true, + .named = true, + }, + [sym_wheretype_sigexp] = { + .visible = true, + .named = true, + }, + [sym__sigdec] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_signature_sigdec] = { + .visible = true, + .named = true, + }, + [sym__sigbind] = { + .visible = false, + .named = true, + }, + [sym_sigbind] = { + .visible = true, + .named = true, + }, + [sym__spec] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_val_spec] = { + .visible = true, + .named = true, + }, + [sym__valdesc] = { + .visible = false, + .named = true, + }, + [sym_valdesc] = { + .visible = true, + .named = true, + }, + [sym_type_spec] = { + .visible = true, + .named = true, + }, + [sym__typedesc] = { + .visible = false, + .named = true, + }, + [sym_typedesc] = { + .visible = true, + .named = true, + }, + [sym_eqtype_spec] = { + .visible = true, + .named = true, + }, + [sym_datatype_spec] = { + .visible = true, + .named = true, + }, + [sym__datdesc] = { + .visible = false, + .named = true, + }, + [sym_datdesc] = { + .visible = true, + .named = true, + }, + [sym__condesc] = { + .visible = false, + .named = true, + }, + [sym_condesc] = { + .visible = true, + .named = true, + }, + [sym_datarepl_spec] = { + .visible = true, + .named = true, + }, + [sym_exception_spec] = { + .visible = true, + .named = true, + }, + [sym__exdesc] = { + .visible = false, + .named = true, + }, + [sym_exdesc] = { + .visible = true, + .named = true, + }, + [sym_structure_spec] = { + .visible = true, + .named = true, + }, + [sym__strdesc] = { + .visible = false, + .named = true, + }, + [sym_strdesc] = { + .visible = true, + .named = true, + }, + [sym_include_spec] = { + .visible = true, + .named = true, + }, + [sym_sharingtype_spec] = { + .visible = true, + .named = true, + }, + [sym_sharing_spec] = { + .visible = true, + .named = true, + }, + [sym__fctdec] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_functor_fctdec] = { + .visible = true, + .named = true, + }, + [sym__fctbind] = { + .visible = false, + .named = true, + }, + [sym_fctbind] = { + .visible = true, + .named = true, + }, + [sym__topdec] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym__program] = { + .visible = false, + .named = true, + }, + [sym_antiquoted] = { + .visible = true, + .named = true, + }, + [sym_quoted_term] = { + .visible = true, + .named = true, + }, + [sym_quoted_type] = { + .visible = true, + .named = true, + }, + [sym__quote_content] = { + .visible = false, + .named = true, + }, + [sym_backquote] = { + .visible = true, + .named = true, + }, + [sym_hol_attributes] = { + .visible = true, + .named = true, + }, + [sym_hol_definition] = { + .visible = true, + .named = true, + }, + [sym_hol_definition_with_proof] = { + .visible = true, + .named = true, + }, + [sym_hol_datatype] = { + .visible = true, + .named = true, + }, + [sym_hol_theorem_with_proof] = { + .visible = true, + .named = true, + }, + [sym__atomic_tactic] = { + .visible = false, + .named = true, + }, + [sym_tactic] = { + .visible = true, + .named = true, + }, + [sym_THEN] = { + .visible = true, + .named = true, + }, + [sym_hol_binding] = { + .visible = true, + .named = true, + }, + [sym_hol_constructor] = { + .visible = true, + .named = true, + }, + [sym_hol_clause] = { + .visible = true, + .named = true, + }, + [sym__hol_ty_spec] = { + .visible = false, + .named = true, + }, + [sym_hol_fn_spec] = { + .visible = true, + .named = true, + }, + [sym_hol_eqn] = { + .visible = true, + .named = true, + }, + [sym_hol_pat] = { + .visible = true, + .named = true, + }, + [sym__hol_pat] = { + .visible = false, + .named = true, + }, + [sym_hol_pcons] = { + .visible = true, + .named = true, + }, + [sym_hol_ptuple] = { + .visible = true, + .named = true, + }, + [sym_hol_plist] = { + .visible = true, + .named = true, + }, + [sym_hol_identifier] = { + .visible = true, + .named = true, + }, + [sym_hol_wildcard] = { + .visible = true, + .named = true, + }, + [sym__hol_term] = { + .visible = false, + .named = true, + }, + [sym__hol_application_lhs] = { + .visible = false, + .named = true, + }, + [sym_hol_application] = { + .visible = true, + .named = true, + }, + [sym_hol_cond] = { + .visible = true, + .named = true, + }, + [sym_hol_case] = { + .visible = true, + .named = true, + }, + [sym__hol_pcon_nopare] = { + .visible = true, + .named = true, + }, + [sym_hol_match] = { + .visible = true, + .named = true, + }, + [sym_hol_bvar] = { + .visible = true, + .named = true, + }, + [sym__hol_bvar] = { + .visible = false, + .named = true, + }, + [sym_hol_binder] = { + .visible = true, + .named = true, + }, + [sym_hol_left_unary_term] = { + .visible = true, + .named = true, + }, + [sym_hol_binary_term] = { + .visible = true, + .named = true, + }, + [sym_hol_annotated] = { + .visible = true, + .named = true, + }, + [sym__hol_type] = { + .visible = false, + .named = true, + }, + [sym_hol_list_ty] = { + .visible = true, + .named = true, + }, + [sym_hol_fun_ty] = { + .visible = true, + .named = true, + }, + [sym_hol_atomic_type] = { + .visible = true, + .named = true, + }, + [sym_hol_tuple] = { + .visible = true, + .named = true, + }, + [sym_hol_list] = { + .visible = true, + .named = true, + }, + [sym_hol_set] = { + .visible = true, + .named = true, + }, + [sym__hol_literal] = { + .visible = false, + .named = true, + }, + [aux_sym_tyvarseq_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_longvid_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_record_exp_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_record_exp_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_tuple_exp_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_sequence_exp_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_sequence_exp_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_let_exp_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_let_exp_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_app_exp_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__match_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__valbind_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__fvalbind_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__fmatch_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_fmrule_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__typbind_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__datbind_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__conbind_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__exbind_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_local_dec_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_open_dec_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_infix_dec_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_record_pat_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_tuple_pat_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_app_pat_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_tyseq_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_tuple_ty_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_record_ty_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_struct_strexp_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_fctapp_strexp_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_let_strexp_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__strbind_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_local_strdec_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_sig_sigexp_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_wheretype_sigexp_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__sigbind_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__valdesc_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__typedesc_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__datdesc_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__condesc_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__exdesc_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__strdesc_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_include_spec_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_sharingtype_spec_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_sharing_spec_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__fctbind_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_fctbind_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__program_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_backquote_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_hol_attributes_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_THEN_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_hol_constructor_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_hol_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_hol_fn_spec_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_hol_fn_spec_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_hol_eqn_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_hol_pcons_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_hol_ptuple_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_hol_plist_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_hol_case_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_hol_binder_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_hol_tuple_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_hol_list_repeat1] = { + .visible = false, + .named = false, + }, + [alias_sym_attribute] = { + .visible = true, + .named = true, + }, + [alias_sym_hol_alphanumeric] = { + .visible = true, + .named = true, + }, + [alias_sym_hol_defname] = { + .visible = true, + .named = true, + }, + [alias_sym_hol_pannotation] = { + .visible = true, + .named = true, + }, + [alias_sym_hol_term] = { + .visible = true, + .named = true, + }, + [alias_sym_hol_thmname] = { + .visible = true, + .named = true, + }, + [alias_sym_hol_thmstmt] = { + .visible = true, + .named = true, + }, + [alias_sym_sml_variable] = { + .visible = true, + .named = true, + }, +}; + +enum ts_field_identifiers { + field_arg = 1, + field_argl = 2, + field_argr = 3, + field_body = 4, + field_dec = 5, + field_def = 6, + field_do_exp = 7, + field_else_exp = 8, + field_if_exp = 9, + field_left = 10, + field_name = 11, + field_operator = 12, + field_pat = 13, + field_right = 14, + field_sig = 15, + field_spec = 16, + field_strdec = 17, + field_term = 18, + field_then_exp = 19, + field_ty = 20, + field_while_exp = 21, + field_withtype = 22, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_arg] = "arg", + [field_argl] = "argl", + [field_argr] = "argr", + [field_body] = "body", + [field_dec] = "dec", + [field_def] = "def", + [field_do_exp] = "do_exp", + [field_else_exp] = "else_exp", + [field_if_exp] = "if_exp", + [field_left] = "left", + [field_name] = "name", + [field_operator] = "operator", + [field_pat] = "pat", + [field_right] = "right", + [field_sig] = "sig", + [field_spec] = "spec", + [field_strdec] = "strdec", + [field_term] = "term", + [field_then_exp] = "then_exp", + [field_ty] = "ty", + [field_while_exp] = "while_exp", + [field_withtype] = "withtype", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [1] = {.index = 0, .length = 1}, + [2] = {.index = 1, .length = 1}, + [3] = {.index = 2, .length = 2}, + [4] = {.index = 4, .length = 1}, + [5] = {.index = 5, .length = 1}, + [6] = {.index = 6, .length = 1}, + [8] = {.index = 7, .length = 2}, + [10] = {.index = 9, .length = 1}, + [11] = {.index = 10, .length = 2}, + [12] = {.index = 12, .length = 2}, + [13] = {.index = 14, .length = 2}, + [14] = {.index = 16, .length = 2}, + [15] = {.index = 18, .length = 2}, + [16] = {.index = 20, .length = 1}, + [17] = {.index = 21, .length = 2}, + [18] = {.index = 23, .length = 1}, + [19] = {.index = 24, .length = 2}, + [20] = {.index = 26, .length = 1}, + [21] = {.index = 27, .length = 3}, + [22] = {.index = 30, .length = 1}, + [23] = {.index = 31, .length = 2}, + [24] = {.index = 33, .length = 1}, + [25] = {.index = 34, .length = 2}, + [26] = {.index = 36, .length = 3}, + [27] = {.index = 39, .length = 2}, + [28] = {.index = 41, .length = 2}, + [29] = {.index = 43, .length = 1}, + [30] = {.index = 44, .length = 2}, + [31] = {.index = 46, .length = 2}, + [32] = {.index = 48, .length = 2}, + [33] = {.index = 50, .length = 1}, + [34] = {.index = 51, .length = 1}, + [38] = {.index = 52, .length = 2}, + [39] = {.index = 54, .length = 3}, + [40] = {.index = 57, .length = 2}, + [41] = {.index = 59, .length = 3}, + [42] = {.index = 62, .length = 3}, + [43] = {.index = 65, .length = 4}, + [44] = {.index = 69, .length = 1}, + [45] = {.index = 70, .length = 2}, + [46] = {.index = 72, .length = 1}, + [47] = {.index = 73, .length = 2}, + [48] = {.index = 75, .length = 3}, + [49] = {.index = 78, .length = 2}, + [51] = {.index = 80, .length = 3}, + [52] = {.index = 83, .length = 4}, + [53] = {.index = 87, .length = 2}, + [54] = {.index = 89, .length = 2}, + [55] = {.index = 91, .length = 2}, + [56] = {.index = 93, .length = 3}, + [60] = {.index = 96, .length = 4}, + [61] = {.index = 100, .length = 4}, + [62] = {.index = 104, .length = 5}, + [63] = {.index = 109, .length = 3}, + [65] = {.index = 112, .length = 5}, + [66] = {.index = 117, .length = 5}, + [67] = {.index = 122, .length = 4}, + [69] = {.index = 126, .length = 5}, + [70] = {.index = 131, .length = 6}, + [71] = {.index = 137, .length = 6}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_dec, 0}, + [1] = + {field_name, 0}, + [2] = + {field_dec, 0, .inherited = true}, + {field_dec, 1, .inherited = true}, + [4] = + {field_arg, 0}, + [5] = + {field_name, 1}, + [6] = + {field_body, 0}, + [7] = + {field_operator, 0}, + {field_term, 1}, + [9] = + {field_body, 2}, + [10] = + {field_if_exp, 1}, + {field_then_exp, 3}, + [12] = + {field_do_exp, 3}, + {field_while_exp, 1}, + [14] = + {field_def, 2}, + {field_pat, 0}, + [16] = + {field_arg, 0, .inherited = true}, + {field_arg, 1, .inherited = true}, + [18] = + {field_def, 2}, + {field_name, 0}, + [20] = + {field_withtype, 3}, + [21] = + {field_name, 0}, + {field_ty, 2}, + [23] = + {field_body, 2, .inherited = true}, + [24] = + {field_body, 0, .inherited = true}, + {field_body, 1, .inherited = true}, + [26] = + {field_dec, 1, .inherited = true}, + [27] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [30] = + {field_body, 1}, + [31] = + {field_body, 2}, + {field_body, 3, .inherited = true}, + [33] = + {field_body, 3}, + [34] = + {field_body, 3}, + {field_dec, 1, .inherited = true}, + [36] = + {field_arg, 1, .inherited = true}, + {field_def, 3}, + {field_name, 0}, + [39] = + {field_def, 3}, + {field_name, 1}, + [41] = + {field_def, 4}, + {field_name, 1}, + [43] = + {field_dec, 3, .inherited = true}, + [44] = + {field_name, 1}, + {field_ty, 3}, + [46] = + {field_def, 3}, + {field_name, 0}, + [48] = + {field_body, 3, .inherited = true}, + {field_dec, 1, .inherited = true}, + [50] = + {field_strdec, 0}, + [51] = + {field_spec, 0}, + [52] = + {field_body, 3}, + {field_body, 4, .inherited = true}, + [54] = + {field_body, 3}, + {field_body, 4, .inherited = true}, + {field_dec, 1, .inherited = true}, + [57] = + {field_body, 4}, + {field_dec, 1, .inherited = true}, + [59] = + {field_else_exp, 5}, + {field_if_exp, 1}, + {field_then_exp, 3}, + [62] = + {field_arg, 2, .inherited = true}, + {field_def, 4}, + {field_name, 1}, + [65] = + {field_argl, 0}, + {field_argr, 2}, + {field_def, 4}, + {field_name, 1}, + [69] = + {field_strdec, 1, .inherited = true}, + [70] = + {field_strdec, 0, .inherited = true}, + {field_strdec, 1, .inherited = true}, + [72] = + {field_spec, 1, .inherited = true}, + [73] = + {field_spec, 0, .inherited = true}, + {field_spec, 1, .inherited = true}, + [75] = + {field_def, 4}, + {field_name, 0}, + {field_sig, 2}, + [78] = + {field_def, 4}, + {field_name, 0}, + [80] = + {field_body, 4}, + {field_body, 5, .inherited = true}, + {field_dec, 1, .inherited = true}, + [83] = + {field_arg, 1, .inherited = true}, + {field_def, 5}, + {field_name, 0}, + {field_ty, 3}, + [87] = + {field_dec, 5, .inherited = true}, + {field_withtype, 3}, + [89] = + {field_arg, 2}, + {field_name, 0}, + [91] = + {field_name, 0}, + {field_sig, 2}, + [93] = + {field_arg, 2}, + {field_def, 5}, + {field_name, 0}, + [96] = + {field_argl, 1}, + {field_argr, 3}, + {field_def, 6}, + {field_name, 2}, + [100] = + {field_arg, 2, .inherited = true}, + {field_def, 6}, + {field_name, 1}, + {field_ty, 4}, + [104] = + {field_argl, 0}, + {field_argr, 2}, + {field_def, 6}, + {field_name, 1}, + {field_ty, 4}, + [109] = + {field_def, 6}, + {field_name, 0}, + {field_sig, 4}, + [112] = + {field_arg, 5, .inherited = true}, + {field_argl, 1}, + {field_argr, 3}, + {field_def, 7}, + {field_name, 2}, + [117] = + {field_arg, 2}, + {field_arg, 3}, + {field_arg, 4}, + {field_def, 7}, + {field_name, 0}, + [122] = + {field_arg, 2}, + {field_def, 7}, + {field_name, 0}, + {field_sig, 5}, + [126] = + {field_argl, 1}, + {field_argr, 3}, + {field_def, 8}, + {field_name, 2}, + {field_ty, 6}, + [131] = + {field_arg, 5, .inherited = true}, + {field_argl, 1}, + {field_argr, 3}, + {field_def, 9}, + {field_name, 2}, + {field_ty, 7}, + [137] = + {field_arg, 2}, + {field_arg, 3}, + {field_arg, 4}, + {field_def, 9}, + {field_name, 0}, + {field_sig, 7}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [7] = { + [0] = alias_sym_hol_alphanumeric, + }, + [9] = { + [1] = alias_sym_sml_variable, + }, + [35] = { + [1] = alias_sym_hol_term, + }, + [36] = { + [1] = alias_sym_hol_defname, + }, + [37] = { + [1] = alias_sym_attribute, + }, + [50] = { + [2] = alias_sym_hol_term, + }, + [57] = { + [0] = sym_hol_pat, + [2] = alias_sym_hol_term, + }, + [58] = { + [3] = alias_sym_hol_term, + }, + [59] = { + [1] = alias_sym_hol_thmname, + [3] = alias_sym_hol_thmstmt, + }, + [64] = { + [1] = alias_sym_hol_thmname, + [4] = alias_sym_hol_thmstmt, + }, + [68] = { + [3] = alias_sym_hol_pannotation, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + sym__hol_ty_spec, 2, + sym__hol_ty_spec, + alias_sym_hol_pannotation, + sym__hol_pat, 2, + sym__hol_pat, + sym_hol_pat, + sym__hol_term, 3, + sym__hol_term, + alias_sym_hol_term, + alias_sym_hol_thmstmt, + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 4, + [6] = 3, + [7] = 3, + [8] = 4, + [9] = 3, + [10] = 4, + [11] = 3, + [12] = 3, + [13] = 4, + [14] = 4, + [15] = 3, + [16] = 4, + [17] = 3, + [18] = 4, + [19] = 4, + [20] = 3, + [21] = 4, + [22] = 3, + [23] = 3, + [24] = 4, + [25] = 4, + [26] = 3, + [27] = 27, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 30, + [33] = 33, + [34] = 28, + [35] = 29, + [36] = 31, + [37] = 27, + [38] = 38, + [39] = 39, + [40] = 33, + [41] = 41, + [42] = 42, + [43] = 38, + [44] = 42, + [45] = 39, + [46] = 46, + [47] = 47, + [48] = 48, + [49] = 49, + [50] = 50, + [51] = 51, + [52] = 52, + [53] = 53, + [54] = 54, + [55] = 55, + [56] = 56, + [57] = 57, + [58] = 58, + [59] = 59, + [60] = 60, + [61] = 61, + [62] = 62, + [63] = 63, + [64] = 64, + [65] = 65, + [66] = 66, + [67] = 67, + [68] = 68, + [69] = 69, + [70] = 70, + [71] = 71, + [72] = 72, + [73] = 73, + [74] = 69, + [75] = 62, + [76] = 50, + [77] = 48, + [78] = 64, + [79] = 57, + [80] = 65, + [81] = 60, + [82] = 66, + [83] = 46, + [84] = 63, + [85] = 59, + [86] = 67, + [87] = 70, + [88] = 68, + [89] = 55, + [90] = 71, + [91] = 72, + [92] = 61, + [93] = 73, + [94] = 47, + [95] = 52, + [96] = 53, + [97] = 58, + [98] = 56, + [99] = 54, + [100] = 31, + [101] = 29, + [102] = 27, + [103] = 28, + [104] = 30, + [105] = 31, + [106] = 33, + [107] = 27, + [108] = 30, + [109] = 38, + [110] = 42, + [111] = 28, + [112] = 29, + [113] = 27, + [114] = 31, + [115] = 28, + [116] = 29, + [117] = 30, + [118] = 31, + [119] = 27, + [120] = 28, + [121] = 31, + [122] = 28, + [123] = 29, + [124] = 30, + [125] = 31, + [126] = 28, + [127] = 29, + [128] = 30, + [129] = 27, + [130] = 29, + [131] = 39, + [132] = 30, + [133] = 33, + [134] = 38, + [135] = 42, + [136] = 41, + [137] = 39, + [138] = 27, + [139] = 30, + [140] = 38, + [141] = 33, + [142] = 38, + [143] = 42, + [144] = 41, + [145] = 42, + [146] = 41, + [147] = 41, + [148] = 31, + [149] = 28, + [150] = 27, + [151] = 33, + [152] = 27, + [153] = 27, + [154] = 31, + [155] = 29, + [156] = 48, + [157] = 28, + [158] = 29, + [159] = 30, + [160] = 30, + [161] = 39, + [162] = 38, + [163] = 42, + [164] = 50, + [165] = 31, + [166] = 39, + [167] = 33, + [168] = 38, + [169] = 42, + [170] = 38, + [171] = 42, + [172] = 52, + [173] = 53, + [174] = 54, + [175] = 41, + [176] = 55, + [177] = 46, + [178] = 56, + [179] = 57, + [180] = 33, + [181] = 58, + [182] = 28, + [183] = 39, + [184] = 38, + [185] = 27, + [186] = 60, + [187] = 61, + [188] = 38, + [189] = 62, + [190] = 42, + [191] = 29, + [192] = 63, + [193] = 64, + [194] = 65, + [195] = 66, + [196] = 67, + [197] = 68, + [198] = 69, + [199] = 70, + [200] = 71, + [201] = 72, + [202] = 49, + [203] = 73, + [204] = 38, + [205] = 47, + [206] = 42, + [207] = 42, + [208] = 31, + [209] = 51, + [210] = 28, + [211] = 39, + [212] = 33, + [213] = 39, + [214] = 33, + [215] = 39, + [216] = 33, + [217] = 39, + [218] = 33, + [219] = 29, + [220] = 30, + [221] = 39, + [222] = 59, + [223] = 70, + [224] = 60, + [225] = 61, + [226] = 62, + [227] = 50, + [228] = 48, + [229] = 49, + [230] = 51, + [231] = 63, + [232] = 59, + [233] = 64, + [234] = 65, + [235] = 66, + [236] = 67, + [237] = 68, + [238] = 69, + [239] = 70, + [240] = 71, + [241] = 72, + [242] = 73, + [243] = 47, + [244] = 50, + [245] = 48, + [246] = 52, + [247] = 53, + [248] = 54, + [249] = 55, + [250] = 46, + [251] = 48, + [252] = 56, + [253] = 57, + [254] = 58, + [255] = 59, + [256] = 60, + [257] = 61, + [258] = 62, + [259] = 49, + [260] = 50, + [261] = 51, + [262] = 52, + [263] = 53, + [264] = 54, + [265] = 55, + [266] = 46, + [267] = 48, + [268] = 56, + [269] = 57, + [270] = 58, + [271] = 63, + [272] = 64, + [273] = 65, + [274] = 66, + [275] = 67, + [276] = 68, + [277] = 69, + [278] = 71, + [279] = 72, + [280] = 59, + [281] = 60, + [282] = 73, + [283] = 61, + [284] = 62, + [285] = 47, + [286] = 50, + [287] = 49, + [288] = 52, + [289] = 53, + [290] = 54, + [291] = 51, + [292] = 55, + [293] = 46, + [294] = 50, + [295] = 56, + [296] = 57, + [297] = 58, + [298] = 63, + [299] = 58, + [300] = 65, + [301] = 66, + [302] = 67, + [303] = 68, + [304] = 69, + [305] = 70, + [306] = 71, + [307] = 72, + [308] = 59, + [309] = 60, + [310] = 73, + [311] = 61, + [312] = 62, + [313] = 47, + [314] = 52, + [315] = 53, + [316] = 54, + [317] = 55, + [318] = 46, + [319] = 56, + [320] = 57, + [321] = 58, + [322] = 63, + [323] = 64, + [324] = 65, + [325] = 66, + [326] = 67, + [327] = 68, + [328] = 69, + [329] = 70, + [330] = 71, + [331] = 72, + [332] = 59, + [333] = 60, + [334] = 73, + [335] = 61, + [336] = 62, + [337] = 47, + [338] = 63, + [339] = 64, + [340] = 65, + [341] = 66, + [342] = 67, + [343] = 68, + [344] = 69, + [345] = 70, + [346] = 71, + [347] = 72, + [348] = 73, + [349] = 47, + [350] = 49, + [351] = 51, + [352] = 52, + [353] = 53, + [354] = 54, + [355] = 55, + [356] = 46, + [357] = 48, + [358] = 56, + [359] = 57, + [360] = 64, + [361] = 61, + [362] = 50, + [363] = 50, + [364] = 52, + [365] = 53, + [366] = 58, + [367] = 60, + [368] = 53, + [369] = 68, + [370] = 54, + [371] = 48, + [372] = 55, + [373] = 53, + [374] = 54, + [375] = 69, + [376] = 55, + [377] = 46, + [378] = 46, + [379] = 73, + [380] = 62, + [381] = 54, + [382] = 47, + [383] = 61, + [384] = 50, + [385] = 71, + [386] = 46, + [387] = 70, + [388] = 62, + [389] = 56, + [390] = 47, + [391] = 72, + [392] = 59, + [393] = 56, + [394] = 59, + [395] = 50, + [396] = 62, + [397] = 73, + [398] = 57, + [399] = 57, + [400] = 55, + [401] = 57, + [402] = 47, + [403] = 52, + [404] = 58, + [405] = 58, + [406] = 55, + [407] = 63, + [408] = 46, + [409] = 64, + [410] = 65, + [411] = 66, + [412] = 67, + [413] = 68, + [414] = 69, + [415] = 70, + [416] = 71, + [417] = 72, + [418] = 59, + [419] = 63, + [420] = 53, + [421] = 64, + [422] = 65, + [423] = 66, + [424] = 67, + [425] = 68, + [426] = 69, + [427] = 48, + [428] = 48, + [429] = 60, + [430] = 52, + [431] = 73, + [432] = 61, + [433] = 56, + [434] = 70, + [435] = 57, + [436] = 62, + [437] = 47, + [438] = 48, + [439] = 60, + [440] = 58, + [441] = 63, + [442] = 56, + [443] = 71, + [444] = 72, + [445] = 64, + [446] = 52, + [447] = 59, + [448] = 65, + [449] = 73, + [450] = 61, + [451] = 66, + [452] = 60, + [453] = 63, + [454] = 67, + [455] = 64, + [456] = 65, + [457] = 66, + [458] = 67, + [459] = 68, + [460] = 69, + [461] = 70, + [462] = 71, + [463] = 72, + [464] = 54, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 467, + [469] = 466, + [470] = 466, + [471] = 465, + [472] = 465, + [473] = 466, + [474] = 467, + [475] = 467, + [476] = 465, + [477] = 465, + [478] = 467, + [479] = 466, + [480] = 465, + [481] = 466, + [482] = 467, + [483] = 465, + [484] = 466, + [485] = 467, + [486] = 466, + [487] = 467, + [488] = 465, + [489] = 465, + [490] = 466, + [491] = 467, + [492] = 465, + [493] = 466, + [494] = 467, + [495] = 465, + [496] = 466, + [497] = 467, + [498] = 498, + [499] = 498, + [500] = 498, + [501] = 465, + [502] = 467, + [503] = 467, + [504] = 465, + [505] = 466, + [506] = 467, + [507] = 466, + [508] = 466, + [509] = 467, + [510] = 465, + [511] = 466, + [512] = 467, + [513] = 465, + [514] = 466, + [515] = 467, + [516] = 465, + [517] = 466, + [518] = 467, + [519] = 465, + [520] = 465, + [521] = 466, + [522] = 467, + [523] = 466, + [524] = 467, + [525] = 465, + [526] = 465, + [527] = 466, + [528] = 467, + [529] = 465, + [530] = 466, + [531] = 467, + [532] = 466, + [533] = 465, + [534] = 534, + [535] = 467, + [536] = 536, + [537] = 465, + [538] = 466, + [539] = 467, + [540] = 465, + [541] = 466, + [542] = 467, + [543] = 465, + [544] = 466, + [545] = 467, + [546] = 465, + [547] = 466, + [548] = 467, + [549] = 465, + [550] = 466, + [551] = 465, + [552] = 466, + [553] = 467, + [554] = 465, + [555] = 466, + [556] = 467, + [557] = 467, + [558] = 465, + [559] = 466, + [560] = 467, + [561] = 465, + [562] = 466, + [563] = 467, + [564] = 465, + [565] = 466, + [566] = 467, + [567] = 465, + [568] = 466, + [569] = 467, + [570] = 570, + [571] = 465, + [572] = 466, + [573] = 467, + [574] = 465, + [575] = 466, + [576] = 467, + [577] = 577, + [578] = 578, + [579] = 534, + [580] = 580, + [581] = 577, + [582] = 578, + [583] = 536, + [584] = 570, + [585] = 465, + [586] = 466, + [587] = 467, + [588] = 534, + [589] = 580, + [590] = 577, + [591] = 578, + [592] = 536, + [593] = 570, + [594] = 465, + [595] = 534, + [596] = 580, + [597] = 577, + [598] = 578, + [599] = 536, + [600] = 570, + [601] = 534, + [602] = 580, + [603] = 577, + [604] = 578, + [605] = 536, + [606] = 570, + [607] = 534, + [608] = 580, + [609] = 577, + [610] = 578, + [611] = 536, + [612] = 570, + [613] = 534, + [614] = 580, + [615] = 577, + [616] = 578, + [617] = 536, + [618] = 570, + [619] = 534, + [620] = 580, + [621] = 577, + [622] = 578, + [623] = 536, + [624] = 570, + [625] = 534, + [626] = 580, + [627] = 577, + [628] = 578, + [629] = 536, + [630] = 570, + [631] = 534, + [632] = 580, + [633] = 577, + [634] = 578, + [635] = 536, + [636] = 570, + [637] = 534, + [638] = 580, + [639] = 577, + [640] = 578, + [641] = 536, + [642] = 570, + [643] = 534, + [644] = 580, + [645] = 577, + [646] = 578, + [647] = 536, + [648] = 570, + [649] = 534, + [650] = 580, + [651] = 577, + [652] = 578, + [653] = 536, + [654] = 570, + [655] = 534, + [656] = 580, + [657] = 577, + [658] = 578, + [659] = 536, + [660] = 570, + [661] = 534, + [662] = 580, + [663] = 577, + [664] = 578, + [665] = 536, + [666] = 570, + [667] = 534, + [668] = 580, + [669] = 577, + [670] = 578, + [671] = 536, + [672] = 570, + [673] = 534, + [674] = 580, + [675] = 577, + [676] = 578, + [677] = 536, + [678] = 570, + [679] = 534, + [680] = 580, + [681] = 577, + [682] = 578, + [683] = 536, + [684] = 570, + [685] = 534, + [686] = 580, + [687] = 577, + [688] = 578, + [689] = 536, + [690] = 570, + [691] = 534, + [692] = 580, + [693] = 577, + [694] = 578, + [695] = 536, + [696] = 570, + [697] = 534, + [698] = 580, + [699] = 577, + [700] = 578, + [701] = 536, + [702] = 570, + [703] = 534, + [704] = 580, + [705] = 577, + [706] = 578, + [707] = 536, + [708] = 570, + [709] = 534, + [710] = 580, + [711] = 577, + [712] = 578, + [713] = 536, + [714] = 570, + [715] = 534, + [716] = 580, + [717] = 577, + [718] = 578, + [719] = 536, + [720] = 570, + [721] = 534, + [722] = 580, + [723] = 577, + [724] = 578, + [725] = 536, + [726] = 570, + [727] = 534, + [728] = 580, + [729] = 577, + [730] = 578, + [731] = 536, + [732] = 570, + [733] = 534, + [734] = 580, + [735] = 577, + [736] = 578, + [737] = 536, + [738] = 570, + [739] = 534, + [740] = 580, + [741] = 577, + [742] = 578, + [743] = 536, + [744] = 570, + [745] = 534, + [746] = 580, + [747] = 577, + [748] = 578, + [749] = 536, + [750] = 570, + [751] = 534, + [752] = 580, + [753] = 577, + [754] = 578, + [755] = 536, + [756] = 570, + [757] = 534, + [758] = 580, + [759] = 577, + [760] = 578, + [761] = 536, + [762] = 570, + [763] = 534, + [764] = 580, + [765] = 577, + [766] = 578, + [767] = 536, + [768] = 570, + [769] = 534, + [770] = 580, + [771] = 577, + [772] = 578, + [773] = 536, + [774] = 570, + [775] = 534, + [776] = 580, + [777] = 577, + [778] = 578, + [779] = 536, + [780] = 570, + [781] = 534, + [782] = 580, + [783] = 577, + [784] = 578, + [785] = 536, + [786] = 570, + [787] = 534, + [788] = 580, + [789] = 577, + [790] = 578, + [791] = 536, + [792] = 570, + [793] = 534, + [794] = 580, + [795] = 577, + [796] = 578, + [797] = 536, + [798] = 570, + [799] = 534, + [800] = 580, + [801] = 577, + [802] = 578, + [803] = 536, + [804] = 570, + [805] = 534, + [806] = 580, + [807] = 577, + [808] = 578, + [809] = 536, + [810] = 570, + [811] = 534, + [812] = 580, + [813] = 577, + [814] = 578, + [815] = 536, + [816] = 570, + [817] = 534, + [818] = 580, + [819] = 577, + [820] = 578, + [821] = 536, + [822] = 570, + [823] = 534, + [824] = 580, + [825] = 577, + [826] = 578, + [827] = 536, + [828] = 580, + [829] = 534, + [830] = 580, + [831] = 577, + [832] = 578, + [833] = 536, + [834] = 570, + [835] = 534, + [836] = 580, + [837] = 577, + [838] = 578, + [839] = 536, + [840] = 570, + [841] = 534, + [842] = 580, + [843] = 577, + [844] = 578, + [845] = 536, + [846] = 570, + [847] = 534, + [848] = 580, + [849] = 577, + [850] = 578, + [851] = 536, + [852] = 570, + [853] = 534, + [854] = 580, + [855] = 577, + [856] = 578, + [857] = 536, + [858] = 570, + [859] = 534, + [860] = 580, + [861] = 577, + [862] = 578, + [863] = 536, + [864] = 570, + [865] = 534, + [866] = 580, + [867] = 577, + [868] = 578, + [869] = 536, + [870] = 570, + [871] = 534, + [872] = 580, + [873] = 577, + [874] = 578, + [875] = 536, + [876] = 570, + [877] = 534, + [878] = 580, + [879] = 577, + [880] = 578, + [881] = 536, + [882] = 570, + [883] = 534, + [884] = 580, + [885] = 577, + [886] = 578, + [887] = 536, + [888] = 570, + [889] = 534, + [890] = 580, + [891] = 577, + [892] = 578, + [893] = 536, + [894] = 570, + [895] = 534, + [896] = 580, + [897] = 577, + [898] = 578, + [899] = 536, + [900] = 570, + [901] = 534, + [902] = 580, + [903] = 577, + [904] = 578, + [905] = 536, + [906] = 570, + [907] = 534, + [908] = 580, + [909] = 577, + [910] = 578, + [911] = 536, + [912] = 570, + [913] = 534, + [914] = 580, + [915] = 577, + [916] = 578, + [917] = 536, + [918] = 570, + [919] = 534, + [920] = 580, + [921] = 577, + [922] = 578, + [923] = 536, + [924] = 570, + [925] = 534, + [926] = 580, + [927] = 577, + [928] = 578, + [929] = 536, + [930] = 570, + [931] = 534, + [932] = 580, + [933] = 577, + [934] = 578, + [935] = 536, + [936] = 570, + [937] = 534, + [938] = 580, + [939] = 577, + [940] = 578, + [941] = 536, + [942] = 570, + [943] = 534, + [944] = 580, + [945] = 577, + [946] = 578, + [947] = 536, + [948] = 570, + [949] = 534, + [950] = 580, + [951] = 577, + [952] = 578, + [953] = 536, + [954] = 570, + [955] = 534, + [956] = 580, + [957] = 577, + [958] = 578, + [959] = 536, + [960] = 570, + [961] = 534, + [962] = 580, + [963] = 577, + [964] = 578, + [965] = 536, + [966] = 570, + [967] = 534, + [968] = 580, + [969] = 577, + [970] = 578, + [971] = 536, + [972] = 570, + [973] = 534, + [974] = 580, + [975] = 577, + [976] = 578, + [977] = 536, + [978] = 570, + [979] = 534, + [980] = 580, + [981] = 577, + [982] = 578, + [983] = 536, + [984] = 570, + [985] = 534, + [986] = 580, + [987] = 577, + [988] = 578, + [989] = 536, + [990] = 570, + [991] = 534, + [992] = 580, + [993] = 577, + [994] = 578, + [995] = 536, + [996] = 570, + [997] = 534, + [998] = 580, + [999] = 577, + [1000] = 578, + [1001] = 536, + [1002] = 570, + [1003] = 534, + [1004] = 580, + [1005] = 577, + [1006] = 578, + [1007] = 536, + [1008] = 570, + [1009] = 534, + [1010] = 580, + [1011] = 577, + [1012] = 578, + [1013] = 536, + [1014] = 570, + [1015] = 534, + [1016] = 580, + [1017] = 577, + [1018] = 578, + [1019] = 536, + [1020] = 570, + [1021] = 534, + [1022] = 580, + [1023] = 577, + [1024] = 578, + [1025] = 536, + [1026] = 570, + [1027] = 534, + [1028] = 580, + [1029] = 577, + [1030] = 578, + [1031] = 536, + [1032] = 570, + [1033] = 534, + [1034] = 580, + [1035] = 577, + [1036] = 578, + [1037] = 536, + [1038] = 570, + [1039] = 534, + [1040] = 580, + [1041] = 577, + [1042] = 578, + [1043] = 536, + [1044] = 570, + [1045] = 534, + [1046] = 580, + [1047] = 577, + [1048] = 578, + [1049] = 536, + [1050] = 570, + [1051] = 534, + [1052] = 580, + [1053] = 577, + [1054] = 578, + [1055] = 536, + [1056] = 570, + [1057] = 534, + [1058] = 580, + [1059] = 577, + [1060] = 578, + [1061] = 536, + [1062] = 570, + [1063] = 534, + [1064] = 580, + [1065] = 577, + [1066] = 578, + [1067] = 536, + [1068] = 570, + [1069] = 534, + [1070] = 580, + [1071] = 577, + [1072] = 578, + [1073] = 536, + [1074] = 570, + [1075] = 534, + [1076] = 580, + [1077] = 577, + [1078] = 578, + [1079] = 536, + [1080] = 570, + [1081] = 466, + [1082] = 570, + [1083] = 467, + [1084] = 467, + [1085] = 465, + [1086] = 466, + [1087] = 467, + [1088] = 467, + [1089] = 465, + [1090] = 466, + [1091] = 466, + [1092] = 465, + [1093] = 466, + [1094] = 467, + [1095] = 466, + [1096] = 466, + [1097] = 465, + [1098] = 466, + [1099] = 467, + [1100] = 465, + [1101] = 467, + [1102] = 465, + [1103] = 465, + [1104] = 466, + [1105] = 467, + [1106] = 465, + [1107] = 466, + [1108] = 467, + [1109] = 465, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 465, + [1115] = 466, + [1116] = 467, + [1117] = 1112, + [1118] = 1118, + [1119] = 1111, + [1120] = 1113, + [1121] = 1121, + [1122] = 1122, + [1123] = 1121, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1122, + [1128] = 1128, + [1129] = 1129, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1110, + [1136] = 1136, + [1137] = 1137, + [1138] = 1138, + [1139] = 1139, + [1140] = 1124, + [1141] = 1112, + [1142] = 1118, + [1143] = 1111, + [1144] = 1113, + [1145] = 1121, + [1146] = 1122, + [1147] = 1124, + [1148] = 1125, + [1149] = 1126, + [1150] = 1128, + [1151] = 1129, + [1152] = 1130, + [1153] = 1131, + [1154] = 1132, + [1155] = 1133, + [1156] = 1134, + [1157] = 1110, + [1158] = 1136, + [1159] = 1137, + [1160] = 1138, + [1161] = 1139, + [1162] = 1112, + [1163] = 1118, + [1164] = 1111, + [1165] = 1113, + [1166] = 1121, + [1167] = 1122, + [1168] = 1124, + [1169] = 1125, + [1170] = 1126, + [1171] = 1128, + [1172] = 1129, + [1173] = 1130, + [1174] = 1131, + [1175] = 1132, + [1176] = 1133, + [1177] = 1134, + [1178] = 1110, + [1179] = 1136, + [1180] = 1137, + [1181] = 1138, + [1182] = 1139, + [1183] = 1112, + [1184] = 1118, + [1185] = 1111, + [1186] = 1113, + [1187] = 1121, + [1188] = 1122, + [1189] = 1124, + [1190] = 1125, + [1191] = 1126, + [1192] = 1128, + [1193] = 1129, + [1194] = 1130, + [1195] = 1131, + [1196] = 1132, + [1197] = 1133, + [1198] = 1134, + [1199] = 1110, + [1200] = 1136, + [1201] = 1137, + [1202] = 1138, + [1203] = 1139, + [1204] = 1112, + [1205] = 1118, + [1206] = 1111, + [1207] = 1113, + [1208] = 1121, + [1209] = 1122, + [1210] = 1124, + [1211] = 1125, + [1212] = 1126, + [1213] = 1128, + [1214] = 1129, + [1215] = 1130, + [1216] = 1131, + [1217] = 1132, + [1218] = 1133, + [1219] = 1134, + [1220] = 1110, + [1221] = 1136, + [1222] = 1137, + [1223] = 1138, + [1224] = 1139, + [1225] = 1112, + [1226] = 1118, + [1227] = 1111, + [1228] = 1113, + [1229] = 1121, + [1230] = 1122, + [1231] = 1124, + [1232] = 1125, + [1233] = 1126, + [1234] = 1128, + [1235] = 1129, + [1236] = 1130, + [1237] = 1131, + [1238] = 1132, + [1239] = 1133, + [1240] = 1134, + [1241] = 1110, + [1242] = 1136, + [1243] = 1137, + [1244] = 1138, + [1245] = 1139, + [1246] = 1112, + [1247] = 1118, + [1248] = 1111, + [1249] = 1113, + [1250] = 1121, + [1251] = 1124, + [1252] = 1125, + [1253] = 1126, + [1254] = 1128, + [1255] = 1129, + [1256] = 1130, + [1257] = 1131, + [1258] = 1132, + [1259] = 1133, + [1260] = 1134, + [1261] = 1110, + [1262] = 1136, + [1263] = 1137, + [1264] = 1138, + [1265] = 1139, + [1266] = 1112, + [1267] = 1118, + [1268] = 1111, + [1269] = 1113, + [1270] = 1121, + [1271] = 1122, + [1272] = 1124, + [1273] = 1125, + [1274] = 1126, + [1275] = 1128, + [1276] = 1129, + [1277] = 1130, + [1278] = 1131, + [1279] = 1132, + [1280] = 1133, + [1281] = 1134, + [1282] = 1110, + [1283] = 1136, + [1284] = 1137, + [1285] = 1138, + [1286] = 1139, + [1287] = 1112, + [1288] = 1118, + [1289] = 1111, + [1290] = 1113, + [1291] = 1121, + [1292] = 1122, + [1293] = 1124, + [1294] = 1125, + [1295] = 1126, + [1296] = 1128, + [1297] = 1129, + [1298] = 1130, + [1299] = 1131, + [1300] = 1132, + [1301] = 1133, + [1302] = 1134, + [1303] = 1110, + [1304] = 1136, + [1305] = 1137, + [1306] = 1138, + [1307] = 1139, + [1308] = 1112, + [1309] = 1118, + [1310] = 1111, + [1311] = 1113, + [1312] = 1121, + [1313] = 1122, + [1314] = 1124, + [1315] = 1125, + [1316] = 1126, + [1317] = 1128, + [1318] = 1129, + [1319] = 1130, + [1320] = 1131, + [1321] = 1132, + [1322] = 1133, + [1323] = 1134, + [1324] = 1110, + [1325] = 1136, + [1326] = 1137, + [1327] = 1138, + [1328] = 1139, + [1329] = 1112, + [1330] = 1118, + [1331] = 1111, + [1332] = 1113, + [1333] = 1121, + [1334] = 1122, + [1335] = 1124, + [1336] = 1125, + [1337] = 1126, + [1338] = 1128, + [1339] = 1129, + [1340] = 1130, + [1341] = 1131, + [1342] = 1132, + [1343] = 1133, + [1344] = 1134, + [1345] = 1110, + [1346] = 1136, + [1347] = 1137, + [1348] = 1138, + [1349] = 1139, + [1350] = 1112, + [1351] = 1118, + [1352] = 1111, + [1353] = 1113, + [1354] = 1121, + [1355] = 1122, + [1356] = 1124, + [1357] = 1125, + [1358] = 1126, + [1359] = 1128, + [1360] = 1129, + [1361] = 1130, + [1362] = 1131, + [1363] = 1132, + [1364] = 1133, + [1365] = 1134, + [1366] = 1110, + [1367] = 1136, + [1368] = 1137, + [1369] = 1138, + [1370] = 1139, + [1371] = 1112, + [1372] = 1118, + [1373] = 1111, + [1374] = 1113, + [1375] = 1121, + [1376] = 1122, + [1377] = 1124, + [1378] = 1125, + [1379] = 1126, + [1380] = 1128, + [1381] = 1129, + [1382] = 1130, + [1383] = 1131, + [1384] = 1132, + [1385] = 1133, + [1386] = 1134, + [1387] = 1110, + [1388] = 1136, + [1389] = 1137, + [1390] = 1138, + [1391] = 1139, + [1392] = 1112, + [1393] = 1118, + [1394] = 1111, + [1395] = 1125, + [1396] = 1113, + [1397] = 1121, + [1398] = 1122, + [1399] = 1126, + [1400] = 1124, + [1401] = 1125, + [1402] = 1126, + [1403] = 1128, + [1404] = 1129, + [1405] = 1130, + [1406] = 1131, + [1407] = 1128, + [1408] = 1132, + [1409] = 1133, + [1410] = 1134, + [1411] = 1110, + [1412] = 1136, + [1413] = 1137, + [1414] = 1138, + [1415] = 1139, + [1416] = 1129, + [1417] = 1112, + [1418] = 1118, + [1419] = 1111, + [1420] = 1113, + [1421] = 1121, + [1422] = 1122, + [1423] = 1124, + [1424] = 1125, + [1425] = 1126, + [1426] = 1128, + [1427] = 1129, + [1428] = 1130, + [1429] = 1131, + [1430] = 1132, + [1431] = 1133, + [1432] = 1134, + [1433] = 1110, + [1434] = 1136, + [1435] = 1137, + [1436] = 1138, + [1437] = 1139, + [1438] = 1112, + [1439] = 1118, + [1440] = 1111, + [1441] = 1113, + [1442] = 1121, + [1443] = 1122, + [1444] = 1124, + [1445] = 1125, + [1446] = 1126, + [1447] = 1128, + [1448] = 1129, + [1449] = 1130, + [1450] = 1131, + [1451] = 1132, + [1452] = 1133, + [1453] = 1134, + [1454] = 1110, + [1455] = 1136, + [1456] = 1137, + [1457] = 1138, + [1458] = 1139, + [1459] = 1112, + [1460] = 1118, + [1461] = 1111, + [1462] = 1113, + [1463] = 1121, + [1464] = 1122, + [1465] = 1124, + [1466] = 1125, + [1467] = 1126, + [1468] = 1128, + [1469] = 1129, + [1470] = 1130, + [1471] = 1131, + [1472] = 1132, + [1473] = 1133, + [1474] = 1134, + [1475] = 1110, + [1476] = 1136, + [1477] = 1137, + [1478] = 1138, + [1479] = 1139, + [1480] = 1112, + [1481] = 1118, + [1482] = 1111, + [1483] = 1113, + [1484] = 1121, + [1485] = 1122, + [1486] = 1124, + [1487] = 1125, + [1488] = 1126, + [1489] = 1128, + [1490] = 1129, + [1491] = 1130, + [1492] = 1131, + [1493] = 1132, + [1494] = 1133, + [1495] = 1134, + [1496] = 1110, + [1497] = 1136, + [1498] = 1137, + [1499] = 1138, + [1500] = 1139, + [1501] = 1112, + [1502] = 1118, + [1503] = 1111, + [1504] = 1113, + [1505] = 1121, + [1506] = 1122, + [1507] = 1124, + [1508] = 1125, + [1509] = 1126, + [1510] = 1128, + [1511] = 1129, + [1512] = 1130, + [1513] = 1131, + [1514] = 1132, + [1515] = 1133, + [1516] = 1134, + [1517] = 1110, + [1518] = 1136, + [1519] = 1137, + [1520] = 1138, + [1521] = 1139, + [1522] = 1112, + [1523] = 1118, + [1524] = 1111, + [1525] = 1113, + [1526] = 1121, + [1527] = 1122, + [1528] = 1124, + [1529] = 1125, + [1530] = 1126, + [1531] = 1128, + [1532] = 1129, + [1533] = 1130, + [1534] = 1131, + [1535] = 1132, + [1536] = 1133, + [1537] = 1134, + [1538] = 1110, + [1539] = 1136, + [1540] = 1137, + [1541] = 1138, + [1542] = 1139, + [1543] = 1112, + [1544] = 1118, + [1545] = 1111, + [1546] = 1113, + [1547] = 1121, + [1548] = 1122, + [1549] = 1124, + [1550] = 1125, + [1551] = 1126, + [1552] = 1128, + [1553] = 1129, + [1554] = 1130, + [1555] = 1131, + [1556] = 1132, + [1557] = 1133, + [1558] = 1134, + [1559] = 1110, + [1560] = 1136, + [1561] = 1137, + [1562] = 1138, + [1563] = 1139, + [1564] = 1112, + [1565] = 1118, + [1566] = 1111, + [1567] = 1113, + [1568] = 1121, + [1569] = 1122, + [1570] = 1124, + [1571] = 1125, + [1572] = 1126, + [1573] = 1128, + [1574] = 1129, + [1575] = 1130, + [1576] = 1131, + [1577] = 1132, + [1578] = 1133, + [1579] = 1134, + [1580] = 1110, + [1581] = 1136, + [1582] = 1137, + [1583] = 1138, + [1584] = 1139, + [1585] = 1112, + [1586] = 1118, + [1587] = 1111, + [1588] = 1113, + [1589] = 1121, + [1590] = 1122, + [1591] = 1124, + [1592] = 1125, + [1593] = 1126, + [1594] = 1128, + [1595] = 1129, + [1596] = 1130, + [1597] = 1131, + [1598] = 1132, + [1599] = 1133, + [1600] = 1134, + [1601] = 1110, + [1602] = 1136, + [1603] = 1137, + [1604] = 1138, + [1605] = 1139, + [1606] = 1112, + [1607] = 1118, + [1608] = 1111, + [1609] = 1113, + [1610] = 1121, + [1611] = 1122, + [1612] = 1124, + [1613] = 1125, + [1614] = 1126, + [1615] = 1128, + [1616] = 1129, + [1617] = 1130, + [1618] = 1131, + [1619] = 1132, + [1620] = 1133, + [1621] = 1134, + [1622] = 1110, + [1623] = 1136, + [1624] = 1137, + [1625] = 1138, + [1626] = 1139, + [1627] = 1112, + [1628] = 1118, + [1629] = 1111, + [1630] = 1113, + [1631] = 1121, + [1632] = 1122, + [1633] = 1124, + [1634] = 1125, + [1635] = 1126, + [1636] = 1128, + [1637] = 1129, + [1638] = 1130, + [1639] = 1131, + [1640] = 1132, + [1641] = 1133, + [1642] = 1134, + [1643] = 1110, + [1644] = 1136, + [1645] = 1137, + [1646] = 1138, + [1647] = 1139, + [1648] = 1112, + [1649] = 1118, + [1650] = 1111, + [1651] = 1113, + [1652] = 1121, + [1653] = 1122, + [1654] = 1124, + [1655] = 1125, + [1656] = 1126, + [1657] = 1128, + [1658] = 1129, + [1659] = 1130, + [1660] = 1131, + [1661] = 1132, + [1662] = 1133, + [1663] = 1134, + [1664] = 1110, + [1665] = 1136, + [1666] = 1137, + [1667] = 1138, + [1668] = 1139, + [1669] = 1112, + [1670] = 1118, + [1671] = 1111, + [1672] = 1113, + [1673] = 1121, + [1674] = 1122, + [1675] = 1124, + [1676] = 1125, + [1677] = 1126, + [1678] = 1128, + [1679] = 1129, + [1680] = 1130, + [1681] = 1131, + [1682] = 1132, + [1683] = 1133, + [1684] = 1134, + [1685] = 1110, + [1686] = 1136, + [1687] = 1137, + [1688] = 1138, + [1689] = 1139, + [1690] = 1112, + [1691] = 1118, + [1692] = 1111, + [1693] = 1113, + [1694] = 1121, + [1695] = 1122, + [1696] = 1124, + [1697] = 1125, + [1698] = 1126, + [1699] = 1128, + [1700] = 1129, + [1701] = 1130, + [1702] = 1131, + [1703] = 1132, + [1704] = 1133, + [1705] = 1134, + [1706] = 1110, + [1707] = 1136, + [1708] = 1137, + [1709] = 1138, + [1710] = 1139, + [1711] = 1112, + [1712] = 1118, + [1713] = 1111, + [1714] = 1113, + [1715] = 1121, + [1716] = 1122, + [1717] = 1124, + [1718] = 1125, + [1719] = 1126, + [1720] = 1128, + [1721] = 1129, + [1722] = 1130, + [1723] = 1131, + [1724] = 1132, + [1725] = 1133, + [1726] = 1134, + [1727] = 1110, + [1728] = 1136, + [1729] = 1137, + [1730] = 1138, + [1731] = 1139, + [1732] = 1112, + [1733] = 1118, + [1734] = 1111, + [1735] = 1113, + [1736] = 1121, + [1737] = 1122, + [1738] = 1124, + [1739] = 1125, + [1740] = 1126, + [1741] = 1128, + [1742] = 1129, + [1743] = 1130, + [1744] = 1131, + [1745] = 1132, + [1746] = 1133, + [1747] = 1134, + [1748] = 1110, + [1749] = 1136, + [1750] = 1137, + [1751] = 1138, + [1752] = 1139, + [1753] = 1112, + [1754] = 1118, + [1755] = 1111, + [1756] = 1113, + [1757] = 1121, + [1758] = 1122, + [1759] = 1124, + [1760] = 1125, + [1761] = 1126, + [1762] = 1128, + [1763] = 1129, + [1764] = 1130, + [1765] = 1131, + [1766] = 1132, + [1767] = 1133, + [1768] = 1134, + [1769] = 1110, + [1770] = 1136, + [1771] = 1137, + [1772] = 1138, + [1773] = 1139, + [1774] = 1112, + [1775] = 1118, + [1776] = 1111, + [1777] = 1113, + [1778] = 1121, + [1779] = 1122, + [1780] = 1124, + [1781] = 1125, + [1782] = 1126, + [1783] = 1128, + [1784] = 1129, + [1785] = 1130, + [1786] = 1131, + [1787] = 1132, + [1788] = 1133, + [1789] = 1134, + [1790] = 1110, + [1791] = 1136, + [1792] = 1137, + [1793] = 1138, + [1794] = 1139, + [1795] = 1112, + [1796] = 1118, + [1797] = 1111, + [1798] = 1113, + [1799] = 1121, + [1800] = 1122, + [1801] = 1124, + [1802] = 1125, + [1803] = 1126, + [1804] = 1128, + [1805] = 1129, + [1806] = 1130, + [1807] = 1131, + [1808] = 1132, + [1809] = 1133, + [1810] = 1134, + [1811] = 1110, + [1812] = 1136, + [1813] = 1137, + [1814] = 1138, + [1815] = 1139, + [1816] = 1112, + [1817] = 1118, + [1818] = 1111, + [1819] = 1113, + [1820] = 1121, + [1821] = 1122, + [1822] = 1124, + [1823] = 1125, + [1824] = 1126, + [1825] = 1128, + [1826] = 1129, + [1827] = 1130, + [1828] = 1131, + [1829] = 1132, + [1830] = 1133, + [1831] = 1134, + [1832] = 1136, + [1833] = 1137, + [1834] = 1138, + [1835] = 1139, + [1836] = 1112, + [1837] = 1118, + [1838] = 1111, + [1839] = 1113, + [1840] = 1121, + [1841] = 1122, + [1842] = 1124, + [1843] = 1125, + [1844] = 1126, + [1845] = 1128, + [1846] = 1129, + [1847] = 1130, + [1848] = 1131, + [1849] = 1132, + [1850] = 1133, + [1851] = 1134, + [1852] = 1110, + [1853] = 1136, + [1854] = 1137, + [1855] = 1138, + [1856] = 1139, + [1857] = 1130, + [1858] = 1112, + [1859] = 1118, + [1860] = 1111, + [1861] = 1131, + [1862] = 1113, + [1863] = 1121, + [1864] = 1122, + [1865] = 1124, + [1866] = 1125, + [1867] = 1126, + [1868] = 1128, + [1869] = 1129, + [1870] = 1130, + [1871] = 1131, + [1872] = 1132, + [1873] = 1132, + [1874] = 1133, + [1875] = 1134, + [1876] = 1110, + [1877] = 1136, + [1878] = 1137, + [1879] = 1138, + [1880] = 1139, + [1881] = 1133, + [1882] = 1112, + [1883] = 1118, + [1884] = 1111, + [1885] = 1113, + [1886] = 1121, + [1887] = 1122, + [1888] = 1124, + [1889] = 1125, + [1890] = 1126, + [1891] = 1128, + [1892] = 1129, + [1893] = 1130, + [1894] = 1131, + [1895] = 1132, + [1896] = 1133, + [1897] = 1134, + [1898] = 1110, + [1899] = 1136, + [1900] = 1137, + [1901] = 1138, + [1902] = 1139, + [1903] = 1112, + [1904] = 1118, + [1905] = 1111, + [1906] = 1113, + [1907] = 1121, + [1908] = 1122, + [1909] = 1124, + [1910] = 1125, + [1911] = 1126, + [1912] = 1134, + [1913] = 1128, + [1914] = 1129, + [1915] = 1130, + [1916] = 1131, + [1917] = 1110, + [1918] = 1132, + [1919] = 1133, + [1920] = 1134, + [1921] = 1110, + [1922] = 1136, + [1923] = 1137, + [1924] = 1138, + [1925] = 1139, + [1926] = 1112, + [1927] = 1118, + [1928] = 1111, + [1929] = 1113, + [1930] = 1121, + [1931] = 1122, + [1932] = 1124, + [1933] = 1125, + [1934] = 1126, + [1935] = 1128, + [1936] = 1129, + [1937] = 1130, + [1938] = 1131, + [1939] = 1132, + [1940] = 1133, + [1941] = 1134, + [1942] = 1110, + [1943] = 1136, + [1944] = 1137, + [1945] = 1138, + [1946] = 1139, + [1947] = 1112, + [1948] = 1118, + [1949] = 1111, + [1950] = 1113, + [1951] = 1121, + [1952] = 1122, + [1953] = 1124, + [1954] = 1125, + [1955] = 1126, + [1956] = 1128, + [1957] = 1129, + [1958] = 1130, + [1959] = 1131, + [1960] = 1132, + [1961] = 1133, + [1962] = 1134, + [1963] = 1110, + [1964] = 1136, + [1965] = 1137, + [1966] = 1138, + [1967] = 1139, + [1968] = 1112, + [1969] = 1118, + [1970] = 1111, + [1971] = 1113, + [1972] = 1121, + [1973] = 1122, + [1974] = 1124, + [1975] = 1125, + [1976] = 1126, + [1977] = 1128, + [1978] = 1129, + [1979] = 1130, + [1980] = 1131, + [1981] = 1132, + [1982] = 1133, + [1983] = 1134, + [1984] = 1110, + [1985] = 1136, + [1986] = 1137, + [1987] = 1138, + [1988] = 1139, + [1989] = 1112, + [1990] = 1118, + [1991] = 1111, + [1992] = 1113, + [1993] = 1121, + [1994] = 1122, + [1995] = 1124, + [1996] = 1125, + [1997] = 1126, + [1998] = 1128, + [1999] = 1129, + [2000] = 1130, + [2001] = 1131, + [2002] = 1132, + [2003] = 1133, + [2004] = 1134, + [2005] = 1110, + [2006] = 1136, + [2007] = 1137, + [2008] = 1138, + [2009] = 1139, + [2010] = 1112, + [2011] = 1118, + [2012] = 1111, + [2013] = 1113, + [2014] = 1121, + [2015] = 1122, + [2016] = 1124, + [2017] = 1125, + [2018] = 1126, + [2019] = 1128, + [2020] = 1129, + [2021] = 1130, + [2022] = 1131, + [2023] = 1132, + [2024] = 1133, + [2025] = 1134, + [2026] = 1110, + [2027] = 1136, + [2028] = 1137, + [2029] = 1138, + [2030] = 1139, + [2031] = 1112, + [2032] = 1118, + [2033] = 1111, + [2034] = 1113, + [2035] = 1121, + [2036] = 1122, + [2037] = 1124, + [2038] = 1125, + [2039] = 1126, + [2040] = 1128, + [2041] = 1129, + [2042] = 1130, + [2043] = 1131, + [2044] = 1132, + [2045] = 1133, + [2046] = 1134, + [2047] = 1110, + [2048] = 1136, + [2049] = 1137, + [2050] = 1138, + [2051] = 1139, + [2052] = 1112, + [2053] = 1118, + [2054] = 1111, + [2055] = 1113, + [2056] = 1121, + [2057] = 1122, + [2058] = 1124, + [2059] = 1125, + [2060] = 1126, + [2061] = 1128, + [2062] = 1129, + [2063] = 1130, + [2064] = 1131, + [2065] = 1132, + [2066] = 1133, + [2067] = 1134, + [2068] = 1110, + [2069] = 1136, + [2070] = 1137, + [2071] = 1138, + [2072] = 1139, + [2073] = 1112, + [2074] = 1118, + [2075] = 1111, + [2076] = 1113, + [2077] = 1121, + [2078] = 1122, + [2079] = 1124, + [2080] = 1125, + [2081] = 1126, + [2082] = 1128, + [2083] = 1129, + [2084] = 1130, + [2085] = 1131, + [2086] = 1132, + [2087] = 1133, + [2088] = 1134, + [2089] = 1110, + [2090] = 1136, + [2091] = 1137, + [2092] = 1138, + [2093] = 1139, + [2094] = 1112, + [2095] = 1118, + [2096] = 1111, + [2097] = 1113, + [2098] = 1121, + [2099] = 1122, + [2100] = 1124, + [2101] = 1125, + [2102] = 1126, + [2103] = 1128, + [2104] = 1129, + [2105] = 1130, + [2106] = 1131, + [2107] = 1132, + [2108] = 1133, + [2109] = 1134, + [2110] = 1110, + [2111] = 1136, + [2112] = 1137, + [2113] = 1138, + [2114] = 1139, + [2115] = 1112, + [2116] = 1118, + [2117] = 1111, + [2118] = 2118, + [2119] = 1113, + [2120] = 1121, + [2121] = 1122, + [2122] = 1124, + [2123] = 1125, + [2124] = 1126, + [2125] = 1128, + [2126] = 1129, + [2127] = 1130, + [2128] = 1131, + [2129] = 1132, + [2130] = 1133, + [2131] = 1134, + [2132] = 1110, + [2133] = 1136, + [2134] = 1137, + [2135] = 1138, + [2136] = 1139, + [2137] = 1112, + [2138] = 1118, + [2139] = 1111, + [2140] = 1113, + [2141] = 1121, + [2142] = 1122, + [2143] = 1124, + [2144] = 1125, + [2145] = 1126, + [2146] = 1128, + [2147] = 1129, + [2148] = 1130, + [2149] = 1131, + [2150] = 1132, + [2151] = 1133, + [2152] = 1134, + [2153] = 1110, + [2154] = 1136, + [2155] = 1137, + [2156] = 1138, + [2157] = 1139, + [2158] = 1112, + [2159] = 1118, + [2160] = 1111, + [2161] = 1113, + [2162] = 1121, + [2163] = 1122, + [2164] = 1124, + [2165] = 1125, + [2166] = 1126, + [2167] = 2167, + [2168] = 1128, + [2169] = 1129, + [2170] = 1130, + [2171] = 1131, + [2172] = 1132, + [2173] = 1133, + [2174] = 1134, + [2175] = 1110, + [2176] = 1136, + [2177] = 1137, + [2178] = 1138, + [2179] = 1139, + [2180] = 1112, + [2181] = 1118, + [2182] = 1111, + [2183] = 1113, + [2184] = 1121, + [2185] = 1122, + [2186] = 1124, + [2187] = 1125, + [2188] = 1126, + [2189] = 1128, + [2190] = 1129, + [2191] = 1130, + [2192] = 1131, + [2193] = 1132, + [2194] = 1133, + [2195] = 1134, + [2196] = 1110, + [2197] = 1136, + [2198] = 1137, + [2199] = 1138, + [2200] = 1139, + [2201] = 1112, + [2202] = 1118, + [2203] = 1111, + [2204] = 1113, + [2205] = 1121, + [2206] = 1122, + [2207] = 1124, + [2208] = 1125, + [2209] = 1126, + [2210] = 1136, + [2211] = 1128, + [2212] = 1129, + [2213] = 1130, + [2214] = 1131, + [2215] = 1137, + [2216] = 1132, + [2217] = 1133, + [2218] = 1134, + [2219] = 1110, + [2220] = 1136, + [2221] = 1137, + [2222] = 1138, + [2223] = 1139, + [2224] = 1138, + [2225] = 1112, + [2226] = 1118, + [2227] = 1111, + [2228] = 1113, + [2229] = 1121, + [2230] = 1122, + [2231] = 1124, + [2232] = 1125, + [2233] = 1126, + [2234] = 1128, + [2235] = 1129, + [2236] = 1130, + [2237] = 1131, + [2238] = 1132, + [2239] = 1133, + [2240] = 1134, + [2241] = 1110, + [2242] = 1136, + [2243] = 1137, + [2244] = 1138, + [2245] = 1139, + [2246] = 1112, + [2247] = 1118, + [2248] = 1111, + [2249] = 1113, + [2250] = 1121, + [2251] = 1122, + [2252] = 1124, + [2253] = 1125, + [2254] = 1126, + [2255] = 1128, + [2256] = 1129, + [2257] = 1130, + [2258] = 1131, + [2259] = 1132, + [2260] = 1133, + [2261] = 1134, + [2262] = 1110, + [2263] = 1136, + [2264] = 1137, + [2265] = 1138, + [2266] = 1139, + [2267] = 1112, + [2268] = 1118, + [2269] = 1111, + [2270] = 1113, + [2271] = 1121, + [2272] = 1122, + [2273] = 1124, + [2274] = 1125, + [2275] = 1126, + [2276] = 1128, + [2277] = 1129, + [2278] = 1130, + [2279] = 1131, + [2280] = 1132, + [2281] = 1133, + [2282] = 1134, + [2283] = 1110, + [2284] = 1136, + [2285] = 1137, + [2286] = 1138, + [2287] = 1139, + [2288] = 1112, + [2289] = 1118, + [2290] = 1111, + [2291] = 1113, + [2292] = 1121, + [2293] = 1122, + [2294] = 1124, + [2295] = 1125, + [2296] = 1126, + [2297] = 1128, + [2298] = 1129, + [2299] = 1130, + [2300] = 1131, + [2301] = 1132, + [2302] = 1133, + [2303] = 1134, + [2304] = 1110, + [2305] = 1136, + [2306] = 1137, + [2307] = 1138, + [2308] = 1139, + [2309] = 1112, + [2310] = 1118, + [2311] = 1111, + [2312] = 1113, + [2313] = 1121, + [2314] = 1122, + [2315] = 1124, + [2316] = 1125, + [2317] = 1126, + [2318] = 1128, + [2319] = 1129, + [2320] = 1130, + [2321] = 1131, + [2322] = 1132, + [2323] = 1133, + [2324] = 1134, + [2325] = 1110, + [2326] = 1136, + [2327] = 1137, + [2328] = 1138, + [2329] = 1139, + [2330] = 1118, + [2331] = 1112, + [2332] = 1118, + [2333] = 1111, + [2334] = 1113, + [2335] = 1121, + [2336] = 1122, + [2337] = 1124, + [2338] = 1125, + [2339] = 1126, + [2340] = 2340, + [2341] = 1128, + [2342] = 1129, + [2343] = 1130, + [2344] = 1131, + [2345] = 1132, + [2346] = 1133, + [2347] = 1134, + [2348] = 1110, + [2349] = 1136, + [2350] = 1137, + [2351] = 1138, + [2352] = 1139, + [2353] = 1112, + [2354] = 1118, + [2355] = 1111, + [2356] = 1113, + [2357] = 1121, + [2358] = 1122, + [2359] = 1124, + [2360] = 1125, + [2361] = 1126, + [2362] = 1128, + [2363] = 1129, + [2364] = 1130, + [2365] = 1131, + [2366] = 1132, + [2367] = 1133, + [2368] = 1134, + [2369] = 1110, + [2370] = 1136, + [2371] = 1137, + [2372] = 1138, + [2373] = 1139, + [2374] = 1112, + [2375] = 1118, + [2376] = 1111, + [2377] = 1113, + [2378] = 1121, + [2379] = 1122, + [2380] = 1124, + [2381] = 1125, + [2382] = 1126, + [2383] = 1128, + [2384] = 1129, + [2385] = 1130, + [2386] = 1131, + [2387] = 1132, + [2388] = 1133, + [2389] = 1134, + [2390] = 1110, + [2391] = 1136, + [2392] = 1137, + [2393] = 1138, + [2394] = 1139, + [2395] = 1112, + [2396] = 1118, + [2397] = 1111, + [2398] = 1113, + [2399] = 1121, + [2400] = 1122, + [2401] = 1124, + [2402] = 1125, + [2403] = 1126, + [2404] = 1128, + [2405] = 1129, + [2406] = 1130, + [2407] = 1131, + [2408] = 1132, + [2409] = 1133, + [2410] = 1134, + [2411] = 1110, + [2412] = 1136, + [2413] = 1137, + [2414] = 1138, + [2415] = 1139, + [2416] = 1112, + [2417] = 1118, + [2418] = 1111, + [2419] = 1113, + [2420] = 1121, + [2421] = 1122, + [2422] = 1124, + [2423] = 1125, + [2424] = 1126, + [2425] = 1128, + [2426] = 1129, + [2427] = 1130, + [2428] = 1131, + [2429] = 1132, + [2430] = 1133, + [2431] = 1134, + [2432] = 1110, + [2433] = 1136, + [2434] = 1137, + [2435] = 1138, + [2436] = 1139, + [2437] = 2437, + [2438] = 1112, + [2439] = 1118, + [2440] = 1111, + [2441] = 1139, + [2442] = 1113, + [2443] = 1121, + [2444] = 1122, + [2445] = 1124, + [2446] = 1125, + [2447] = 1126, + [2448] = 1128, + [2449] = 1129, + [2450] = 1130, + [2451] = 1131, + [2452] = 1132, + [2453] = 1133, + [2454] = 1134, + [2455] = 1110, + [2456] = 1136, + [2457] = 1137, + [2458] = 1138, + [2459] = 1139, + [2460] = 1112, + [2461] = 1118, + [2462] = 1111, + [2463] = 1113, + [2464] = 1121, + [2465] = 1122, + [2466] = 1124, + [2467] = 1125, + [2468] = 1126, + [2469] = 1128, + [2470] = 1129, + [2471] = 1130, + [2472] = 1131, + [2473] = 1132, + [2474] = 1133, + [2475] = 1134, + [2476] = 1110, + [2477] = 1136, + [2478] = 1137, + [2479] = 1138, + [2480] = 1139, + [2481] = 1112, + [2482] = 1118, + [2483] = 1111, + [2484] = 1113, + [2485] = 1121, + [2486] = 1122, + [2487] = 1124, + [2488] = 1125, + [2489] = 1126, + [2490] = 1128, + [2491] = 1129, + [2492] = 1130, + [2493] = 1131, + [2494] = 1132, + [2495] = 1133, + [2496] = 1134, + [2497] = 1110, + [2498] = 1136, + [2499] = 1137, + [2500] = 1138, + [2501] = 1139, + [2502] = 1112, + [2503] = 1118, + [2504] = 1111, + [2505] = 1113, + [2506] = 1121, + [2507] = 1122, + [2508] = 1124, + [2509] = 1125, + [2510] = 1126, + [2511] = 465, + [2512] = 1128, + [2513] = 1129, + [2514] = 1130, + [2515] = 1131, + [2516] = 466, + [2517] = 1132, + [2518] = 1133, + [2519] = 1134, + [2520] = 1110, + [2521] = 1136, + [2522] = 1137, + [2523] = 1138, + [2524] = 1139, + [2525] = 467, + [2526] = 1112, + [2527] = 1118, + [2528] = 1111, + [2529] = 1113, + [2530] = 1121, + [2531] = 1122, + [2532] = 1124, + [2533] = 1125, + [2534] = 1126, + [2535] = 1128, + [2536] = 1129, + [2537] = 1130, + [2538] = 1131, + [2539] = 1132, + [2540] = 1133, + [2541] = 1134, + [2542] = 1110, + [2543] = 1136, + [2544] = 1137, + [2545] = 1138, + [2546] = 1139, + [2547] = 1112, + [2548] = 1118, + [2549] = 1111, + [2550] = 1113, + [2551] = 1121, + [2552] = 1122, + [2553] = 1124, + [2554] = 1125, + [2555] = 1126, + [2556] = 1128, + [2557] = 1129, + [2558] = 1130, + [2559] = 1131, + [2560] = 1132, + [2561] = 1133, + [2562] = 1134, + [2563] = 1110, + [2564] = 1136, + [2565] = 1137, + [2566] = 1138, + [2567] = 1139, + [2568] = 1112, + [2569] = 1118, + [2570] = 1111, + [2571] = 1113, + [2572] = 1121, + [2573] = 1122, + [2574] = 1124, + [2575] = 1125, + [2576] = 1126, + [2577] = 1128, + [2578] = 1129, + [2579] = 1130, + [2580] = 1131, + [2581] = 1132, + [2582] = 1133, + [2583] = 1134, + [2584] = 1110, + [2585] = 1136, + [2586] = 1137, + [2587] = 1138, + [2588] = 1139, + [2589] = 1112, + [2590] = 1118, + [2591] = 1111, + [2592] = 1113, + [2593] = 1121, + [2594] = 1122, + [2595] = 1124, + [2596] = 1125, + [2597] = 1126, + [2598] = 1128, + [2599] = 1129, + [2600] = 1130, + [2601] = 1131, + [2602] = 1132, + [2603] = 1133, + [2604] = 1134, + [2605] = 1110, + [2606] = 1136, + [2607] = 1137, + [2608] = 1138, + [2609] = 1139, + [2610] = 1112, + [2611] = 1118, + [2612] = 1111, + [2613] = 1113, + [2614] = 1121, + [2615] = 1122, + [2616] = 1124, + [2617] = 1125, + [2618] = 1126, + [2619] = 1128, + [2620] = 1129, + [2621] = 1130, + [2622] = 1131, + [2623] = 1132, + [2624] = 1133, + [2625] = 1134, + [2626] = 1110, + [2627] = 1136, + [2628] = 1137, + [2629] = 1138, + [2630] = 1139, + [2631] = 1112, + [2632] = 1118, + [2633] = 1111, + [2634] = 1113, + [2635] = 1121, + [2636] = 1122, + [2637] = 1124, + [2638] = 1125, + [2639] = 1126, + [2640] = 1128, + [2641] = 1129, + [2642] = 1130, + [2643] = 1131, + [2644] = 1132, + [2645] = 1133, + [2646] = 1134, + [2647] = 1110, + [2648] = 1136, + [2649] = 1137, + [2650] = 1138, + [2651] = 1139, + [2652] = 1112, + [2653] = 1118, + [2654] = 1111, + [2655] = 1113, + [2656] = 1121, + [2657] = 1122, + [2658] = 1124, + [2659] = 1125, + [2660] = 1126, + [2661] = 1128, + [2662] = 1129, + [2663] = 1130, + [2664] = 1131, + [2665] = 1132, + [2666] = 1133, + [2667] = 1134, + [2668] = 1110, + [2669] = 1136, + [2670] = 1137, + [2671] = 1138, + [2672] = 1139, + [2673] = 1112, + [2674] = 1118, + [2675] = 1111, + [2676] = 1113, + [2677] = 1121, + [2678] = 1122, + [2679] = 1124, + [2680] = 1125, + [2681] = 1126, + [2682] = 1128, + [2683] = 1129, + [2684] = 1130, + [2685] = 1131, + [2686] = 1132, + [2687] = 1133, + [2688] = 1134, + [2689] = 1110, + [2690] = 1136, + [2691] = 1137, + [2692] = 1138, + [2693] = 1139, + [2694] = 1112, + [2695] = 1118, + [2696] = 1111, + [2697] = 1113, + [2698] = 1121, + [2699] = 1122, + [2700] = 1124, + [2701] = 1125, + [2702] = 1126, + [2703] = 1128, + [2704] = 1129, + [2705] = 1130, + [2706] = 1131, + [2707] = 1132, + [2708] = 1133, + [2709] = 1134, + [2710] = 1110, + [2711] = 1136, + [2712] = 1137, + [2713] = 1138, + [2714] = 1139, + [2715] = 1112, + [2716] = 1118, + [2717] = 1111, + [2718] = 1113, + [2719] = 1121, + [2720] = 1122, + [2721] = 1124, + [2722] = 1125, + [2723] = 1126, + [2724] = 1128, + [2725] = 1129, + [2726] = 1130, + [2727] = 1131, + [2728] = 1132, + [2729] = 1133, + [2730] = 1134, + [2731] = 1110, + [2732] = 1136, + [2733] = 1137, + [2734] = 1138, + [2735] = 1139, + [2736] = 1112, + [2737] = 1118, + [2738] = 1111, + [2739] = 1113, + [2740] = 1121, + [2741] = 1122, + [2742] = 1124, + [2743] = 1125, + [2744] = 1126, + [2745] = 1128, + [2746] = 1129, + [2747] = 1130, + [2748] = 1131, + [2749] = 1132, + [2750] = 1133, + [2751] = 1134, + [2752] = 1110, + [2753] = 1136, + [2754] = 1137, + [2755] = 1138, + [2756] = 1139, + [2757] = 1112, + [2758] = 1118, + [2759] = 1111, + [2760] = 1113, + [2761] = 1121, + [2762] = 1122, + [2763] = 1124, + [2764] = 1125, + [2765] = 1126, + [2766] = 1128, + [2767] = 1129, + [2768] = 1130, + [2769] = 1131, + [2770] = 1132, + [2771] = 1133, + [2772] = 1134, + [2773] = 1110, + [2774] = 1136, + [2775] = 1137, + [2776] = 1138, + [2777] = 1139, + [2778] = 1112, + [2779] = 1118, + [2780] = 1111, + [2781] = 1113, + [2782] = 1121, + [2783] = 1122, + [2784] = 1124, + [2785] = 1125, + [2786] = 1126, + [2787] = 1128, + [2788] = 1129, + [2789] = 1130, + [2790] = 1131, + [2791] = 1132, + [2792] = 1133, + [2793] = 1134, + [2794] = 1110, + [2795] = 1136, + [2796] = 1137, + [2797] = 1138, + [2798] = 1139, + [2799] = 1112, + [2800] = 1118, + [2801] = 1111, + [2802] = 1113, + [2803] = 1121, + [2804] = 1122, + [2805] = 1124, + [2806] = 1125, + [2807] = 1126, + [2808] = 1128, + [2809] = 1129, + [2810] = 1130, + [2811] = 1131, + [2812] = 1132, + [2813] = 1133, + [2814] = 1134, + [2815] = 1110, + [2816] = 1136, + [2817] = 1137, + [2818] = 1138, + [2819] = 1139, + [2820] = 1112, + [2821] = 1118, + [2822] = 1111, + [2823] = 1113, + [2824] = 1121, + [2825] = 1122, + [2826] = 1124, + [2827] = 1125, + [2828] = 1126, + [2829] = 1128, + [2830] = 1129, + [2831] = 1130, + [2832] = 1131, + [2833] = 1132, + [2834] = 1133, + [2835] = 1134, + [2836] = 1110, + [2837] = 1136, + [2838] = 1137, + [2839] = 1138, + [2840] = 1139, + [2841] = 1112, + [2842] = 1118, + [2843] = 1111, + [2844] = 1113, + [2845] = 1121, + [2846] = 1122, + [2847] = 1124, + [2848] = 1125, + [2849] = 1126, + [2850] = 1128, + [2851] = 1129, + [2852] = 1130, + [2853] = 1131, + [2854] = 1132, + [2855] = 1133, + [2856] = 1134, + [2857] = 1110, + [2858] = 1136, + [2859] = 1137, + [2860] = 1138, + [2861] = 1139, + [2862] = 1112, + [2863] = 1118, + [2864] = 1111, + [2865] = 1113, + [2866] = 1121, + [2867] = 1122, + [2868] = 1124, + [2869] = 1125, + [2870] = 1126, + [2871] = 1128, + [2872] = 1129, + [2873] = 1130, + [2874] = 1131, + [2875] = 1132, + [2876] = 1133, + [2877] = 1134, + [2878] = 1110, + [2879] = 1136, + [2880] = 1137, + [2881] = 1138, + [2882] = 1139, + [2883] = 1122, + [2884] = 2884, + [2885] = 2885, + [2886] = 2884, + [2887] = 2887, + [2888] = 2888, + [2889] = 2887, + [2890] = 2890, + [2891] = 2891, + [2892] = 2890, + [2893] = 2885, + [2894] = 2884, + [2895] = 2887, + [2896] = 2890, + [2897] = 2885, + [2898] = 2884, + [2899] = 2887, + [2900] = 2890, + [2901] = 2885, + [2902] = 2884, + [2903] = 2887, + [2904] = 2890, + [2905] = 2885, + [2906] = 2884, + [2907] = 2887, + [2908] = 2890, + [2909] = 2885, + [2910] = 2884, + [2911] = 2887, + [2912] = 2890, + [2913] = 2885, + [2914] = 2884, + [2915] = 2887, + [2916] = 2890, + [2917] = 2885, + [2918] = 2884, + [2919] = 2887, + [2920] = 2890, + [2921] = 2885, + [2922] = 2884, + [2923] = 2887, + [2924] = 2890, + [2925] = 2885, + [2926] = 2884, + [2927] = 2887, + [2928] = 2890, + [2929] = 2885, + [2930] = 2884, + [2931] = 2887, + [2932] = 2890, + [2933] = 2885, + [2934] = 2884, + [2935] = 2887, + [2936] = 2890, + [2937] = 2885, + [2938] = 2884, + [2939] = 2887, + [2940] = 2890, + [2941] = 2885, + [2942] = 2884, + [2943] = 2887, + [2944] = 2890, + [2945] = 2885, + [2946] = 2884, + [2947] = 2887, + [2948] = 2890, + [2949] = 2885, + [2950] = 2884, + [2951] = 2887, + [2952] = 2890, + [2953] = 2885, + [2954] = 2884, + [2955] = 2887, + [2956] = 2890, + [2957] = 2885, + [2958] = 2884, + [2959] = 2887, + [2960] = 2890, + [2961] = 2885, + [2962] = 2884, + [2963] = 2887, + [2964] = 2890, + [2965] = 2885, + [2966] = 2884, + [2967] = 2887, + [2968] = 2890, + [2969] = 2885, + [2970] = 2884, + [2971] = 2887, + [2972] = 2890, + [2973] = 2885, + [2974] = 2884, + [2975] = 2887, + [2976] = 2890, + [2977] = 2885, + [2978] = 2884, + [2979] = 2887, + [2980] = 2890, + [2981] = 2885, + [2982] = 2884, + [2983] = 2887, + [2984] = 2890, + [2985] = 2885, + [2986] = 2884, + [2987] = 2887, + [2988] = 2890, + [2989] = 2885, + [2990] = 2884, + [2991] = 2887, + [2992] = 2890, + [2993] = 2885, + [2994] = 2884, + [2995] = 2887, + [2996] = 2890, + [2997] = 2885, + [2998] = 2884, + [2999] = 2887, + [3000] = 2890, + [3001] = 2885, + [3002] = 2884, + [3003] = 2887, + [3004] = 2890, + [3005] = 2885, + [3006] = 2884, + [3007] = 2887, + [3008] = 2890, + [3009] = 2885, + [3010] = 2884, + [3011] = 2887, + [3012] = 2890, + [3013] = 2885, + [3014] = 2884, + [3015] = 2887, + [3016] = 2890, + [3017] = 2885, + [3018] = 2884, + [3019] = 2887, + [3020] = 2890, + [3021] = 2885, + [3022] = 2884, + [3023] = 2887, + [3024] = 2890, + [3025] = 2885, + [3026] = 2884, + [3027] = 2887, + [3028] = 2890, + [3029] = 2885, + [3030] = 2884, + [3031] = 2887, + [3032] = 2890, + [3033] = 2885, + [3034] = 2884, + [3035] = 2887, + [3036] = 2890, + [3037] = 2885, + [3038] = 2884, + [3039] = 2887, + [3040] = 2890, + [3041] = 2885, + [3042] = 2884, + [3043] = 2887, + [3044] = 2890, + [3045] = 2885, + [3046] = 2884, + [3047] = 2887, + [3048] = 2890, + [3049] = 2885, + [3050] = 2884, + [3051] = 2887, + [3052] = 2890, + [3053] = 2885, + [3054] = 2884, + [3055] = 2887, + [3056] = 2890, + [3057] = 2885, + [3058] = 2884, + [3059] = 2887, + [3060] = 2890, + [3061] = 2885, + [3062] = 2884, + [3063] = 2887, + [3064] = 2890, + [3065] = 2885, + [3066] = 2884, + [3067] = 2887, + [3068] = 2890, + [3069] = 2885, + [3070] = 3070, + [3071] = 2890, + [3072] = 2885, + [3073] = 2884, + [3074] = 2887, + [3075] = 2890, + [3076] = 2885, + [3077] = 2884, + [3078] = 2887, + [3079] = 2890, + [3080] = 2885, + [3081] = 2884, + [3082] = 2887, + [3083] = 2890, + [3084] = 2885, + [3085] = 2884, + [3086] = 2887, + [3087] = 2890, + [3088] = 2885, + [3089] = 2884, + [3090] = 2887, + [3091] = 2890, + [3092] = 2885, + [3093] = 2884, + [3094] = 2887, + [3095] = 2890, + [3096] = 2885, + [3097] = 2884, + [3098] = 2887, + [3099] = 2890, + [3100] = 2885, + [3101] = 2884, + [3102] = 2887, + [3103] = 2890, + [3104] = 2885, + [3105] = 2884, + [3106] = 2887, + [3107] = 2890, + [3108] = 2885, + [3109] = 2884, + [3110] = 2887, + [3111] = 2890, + [3112] = 2885, + [3113] = 2884, + [3114] = 2887, + [3115] = 2890, + [3116] = 2885, + [3117] = 2884, + [3118] = 2887, + [3119] = 2890, + [3120] = 2885, + [3121] = 2884, + [3122] = 2887, + [3123] = 2890, + [3124] = 2885, + [3125] = 2884, + [3126] = 2887, + [3127] = 2890, + [3128] = 2885, + [3129] = 2884, + [3130] = 2887, + [3131] = 2890, + [3132] = 2885, + [3133] = 2884, + [3134] = 2887, + [3135] = 2890, + [3136] = 2885, + [3137] = 2884, + [3138] = 2887, + [3139] = 2890, + [3140] = 2885, + [3141] = 2884, + [3142] = 2887, + [3143] = 2890, + [3144] = 2885, + [3145] = 2884, + [3146] = 2887, + [3147] = 2890, + [3148] = 2885, + [3149] = 2884, + [3150] = 2887, + [3151] = 2890, + [3152] = 2885, + [3153] = 2884, + [3154] = 2887, + [3155] = 2890, + [3156] = 2885, + [3157] = 2884, + [3158] = 2887, + [3159] = 2890, + [3160] = 2885, + [3161] = 2884, + [3162] = 2887, + [3163] = 2890, + [3164] = 2885, + [3165] = 2884, + [3166] = 2887, + [3167] = 2890, + [3168] = 2885, + [3169] = 2884, + [3170] = 2887, + [3171] = 2890, + [3172] = 2885, + [3173] = 2884, + [3174] = 2887, + [3175] = 2890, + [3176] = 2885, + [3177] = 2884, + [3178] = 2887, + [3179] = 2890, + [3180] = 2885, + [3181] = 2884, + [3182] = 2887, + [3183] = 2890, + [3184] = 2885, + [3185] = 2884, + [3186] = 2887, + [3187] = 2890, + [3188] = 2885, + [3189] = 2884, + [3190] = 2887, + [3191] = 2890, + [3192] = 2885, + [3193] = 2884, + [3194] = 2887, + [3195] = 2890, + [3196] = 2885, + [3197] = 2884, + [3198] = 2887, + [3199] = 2890, + [3200] = 2885, + [3201] = 2884, + [3202] = 2887, + [3203] = 2890, + [3204] = 2885, + [3205] = 2884, + [3206] = 2887, + [3207] = 2890, + [3208] = 2885, + [3209] = 2884, + [3210] = 2887, + [3211] = 2890, + [3212] = 2885, + [3213] = 2884, + [3214] = 2887, + [3215] = 2890, + [3216] = 2885, + [3217] = 2884, + [3218] = 2887, + [3219] = 2890, + [3220] = 2885, + [3221] = 2884, + [3222] = 2887, + [3223] = 3223, + [3224] = 3223, + [3225] = 3225, + [3226] = 3225, + [3227] = 3223, + [3228] = 3225, + [3229] = 3229, + [3230] = 3230, + [3231] = 3231, + [3232] = 3232, + [3233] = 3232, + [3234] = 3234, + [3235] = 3235, + [3236] = 3236, + [3237] = 3237, + [3238] = 3231, + [3239] = 3232, + [3240] = 3240, + [3241] = 3241, + [3242] = 3241, + [3243] = 3243, + [3244] = 3240, + [3245] = 3245, + [3246] = 3246, + [3247] = 3234, + [3248] = 3235, + [3249] = 3240, + [3250] = 3237, + [3251] = 3243, + [3252] = 3245, + [3253] = 3253, + [3254] = 3237, + [3255] = 3231, + [3256] = 3232, + [3257] = 3240, + [3258] = 3241, + [3259] = 3259, + [3260] = 3260, + [3261] = 3261, + [3262] = 3262, + [3263] = 3263, + [3264] = 3264, + [3265] = 3234, + [3266] = 3235, + [3267] = 3237, + [3268] = 3231, + [3269] = 3232, + [3270] = 3240, + [3271] = 3241, + [3272] = 3234, + [3273] = 3235, + [3274] = 3237, + [3275] = 3231, + [3276] = 3232, + [3277] = 3240, + [3278] = 3241, + [3279] = 3237, + [3280] = 3231, + [3281] = 3232, + [3282] = 3240, + [3283] = 3241, + [3284] = 3231, + [3285] = 3232, + [3286] = 3240, + [3287] = 3234, + [3288] = 3234, + [3289] = 3235, + [3290] = 3237, + [3291] = 3231, + [3292] = 3232, + [3293] = 3240, + [3294] = 3241, + [3295] = 3234, + [3296] = 3237, + [3297] = 3231, + [3298] = 3232, + [3299] = 3240, + [3300] = 3241, + [3301] = 3234, + [3302] = 3237, + [3303] = 3231, + [3304] = 3232, + [3305] = 3240, + [3306] = 3241, + [3307] = 3237, + [3308] = 3231, + [3309] = 3232, + [3310] = 3240, + [3311] = 3241, + [3312] = 3241, + [3313] = 3234, + [3314] = 3234, + [3315] = 3235, + [3316] = 3237, + [3317] = 3231, + [3318] = 3232, + [3319] = 3240, + [3320] = 3241, + [3321] = 3234, + [3322] = 3237, + [3323] = 3231, + [3324] = 3232, + [3325] = 3240, + [3326] = 3241, + [3327] = 3237, + [3328] = 3231, + [3329] = 3232, + [3330] = 3240, + [3331] = 3237, + [3332] = 3231, + [3333] = 3232, + [3334] = 3240, + [3335] = 3241, + [3336] = 3241, + [3337] = 3234, + [3338] = 3235, + [3339] = 3237, + [3340] = 3231, + [3341] = 3232, + [3342] = 3240, + [3343] = 3241, + [3344] = 3237, + [3345] = 3231, + [3346] = 3232, + [3347] = 3240, + [3348] = 3241, + [3349] = 3237, + [3350] = 3231, + [3351] = 3232, + [3352] = 3240, + [3353] = 3237, + [3354] = 3231, + [3355] = 3232, + [3356] = 3240, + [3357] = 3241, + [3358] = 3241, + [3359] = 3234, + [3360] = 3235, + [3361] = 3237, + [3362] = 3231, + [3363] = 3232, + [3364] = 3240, + [3365] = 3241, + [3366] = 3237, + [3367] = 3231, + [3368] = 3232, + [3369] = 3240, + [3370] = 3241, + [3371] = 3237, + [3372] = 3231, + [3373] = 3232, + [3374] = 3240, + [3375] = 3241, + [3376] = 3253, + [3377] = 3234, + [3378] = 3235, + [3379] = 3237, + [3380] = 3231, + [3381] = 3232, + [3382] = 3240, + [3383] = 3241, + [3384] = 3237, + [3385] = 3231, + [3386] = 3232, + [3387] = 3240, + [3388] = 3241, + [3389] = 3237, + [3390] = 3231, + [3391] = 3232, + [3392] = 3240, + [3393] = 3241, + [3394] = 3241, + [3395] = 3234, + [3396] = 3235, + [3397] = 3237, + [3398] = 3231, + [3399] = 3232, + [3400] = 3240, + [3401] = 3241, + [3402] = 3237, + [3403] = 3237, + [3404] = 3231, + [3405] = 3232, + [3406] = 3240, + [3407] = 3241, + [3408] = 3237, + [3409] = 3231, + [3410] = 3232, + [3411] = 3240, + [3412] = 3241, + [3413] = 3231, + [3414] = 3241, + [3415] = 3232, + [3416] = 3234, + [3417] = 3235, + [3418] = 3240, + [3419] = 3237, + [3420] = 3231, + [3421] = 3232, + [3422] = 3240, + [3423] = 3241, + [3424] = 3237, + [3425] = 3231, + [3426] = 3232, + [3427] = 3240, + [3428] = 3241, + [3429] = 3230, + [3430] = 3237, + [3431] = 3231, + [3432] = 3232, + [3433] = 3240, + [3434] = 3241, + [3435] = 3435, + [3436] = 3234, + [3437] = 3235, + [3438] = 3237, + [3439] = 3231, + [3440] = 3232, + [3441] = 3240, + [3442] = 3241, + [3443] = 3237, + [3444] = 3231, + [3445] = 3232, + [3446] = 3240, + [3447] = 3241, + [3448] = 3241, + [3449] = 3237, + [3450] = 3231, + [3451] = 3232, + [3452] = 3240, + [3453] = 3241, + [3454] = 3234, + [3455] = 3235, + [3456] = 3237, + [3457] = 3237, + [3458] = 3231, + [3459] = 3232, + [3460] = 3240, + [3461] = 3241, + [3462] = 3231, + [3463] = 3232, + [3464] = 3240, + [3465] = 3241, + [3466] = 3246, + [3467] = 3234, + [3468] = 3235, + [3469] = 3237, + [3470] = 3231, + [3471] = 3232, + [3472] = 3240, + [3473] = 3241, + [3474] = 3259, + [3475] = 3237, + [3476] = 3231, + [3477] = 3232, + [3478] = 3260, + [3479] = 3240, + [3480] = 3241, + [3481] = 3237, + [3482] = 3231, + [3483] = 3232, + [3484] = 3240, + [3485] = 3241, + [3486] = 3261, + [3487] = 3234, + [3488] = 3235, + [3489] = 3237, + [3490] = 3231, + [3491] = 3232, + [3492] = 3240, + [3493] = 3241, + [3494] = 3237, + [3495] = 3231, + [3496] = 3232, + [3497] = 3240, + [3498] = 3241, + [3499] = 3234, + [3500] = 3235, + [3501] = 3237, + [3502] = 3231, + [3503] = 3232, + [3504] = 3240, + [3505] = 3241, + [3506] = 3237, + [3507] = 3237, + [3508] = 3231, + [3509] = 3232, + [3510] = 3240, + [3511] = 3241, + [3512] = 3237, + [3513] = 3231, + [3514] = 3232, + [3515] = 3240, + [3516] = 3241, + [3517] = 3234, + [3518] = 3235, + [3519] = 3231, + [3520] = 3237, + [3521] = 3232, + [3522] = 3240, + [3523] = 3237, + [3524] = 3231, + [3525] = 3232, + [3526] = 3240, + [3527] = 3241, + [3528] = 3237, + [3529] = 3231, + [3530] = 3232, + [3531] = 3240, + [3532] = 3241, + [3533] = 3234, + [3534] = 3235, + [3535] = 3237, + [3536] = 3231, + [3537] = 3232, + [3538] = 3240, + [3539] = 3241, + [3540] = 3237, + [3541] = 3237, + [3542] = 3231, + [3543] = 3232, + [3544] = 3240, + [3545] = 3241, + [3546] = 3237, + [3547] = 3231, + [3548] = 3232, + [3549] = 3240, + [3550] = 3241, + [3551] = 3234, + [3552] = 3235, + [3553] = 3237, + [3554] = 3231, + [3555] = 3232, + [3556] = 3240, + [3557] = 3241, + [3558] = 3262, + [3559] = 3559, + [3560] = 3237, + [3561] = 3231, + [3562] = 3232, + [3563] = 3240, + [3564] = 3241, + [3565] = 3237, + [3566] = 3231, + [3567] = 3232, + [3568] = 3240, + [3569] = 3241, + [3570] = 3234, + [3571] = 3235, + [3572] = 3229, + [3573] = 3231, + [3574] = 3263, + [3575] = 3232, + [3576] = 3576, + [3577] = 3237, + [3578] = 3231, + [3579] = 3232, + [3580] = 3240, + [3581] = 3241, + [3582] = 3237, + [3583] = 3231, + [3584] = 3232, + [3585] = 3240, + [3586] = 3241, + [3587] = 3241, + [3588] = 3234, + [3589] = 3235, + [3590] = 3237, + [3591] = 3231, + [3592] = 3232, + [3593] = 3240, + [3594] = 3241, + [3595] = 3234, + [3596] = 3235, + [3597] = 3236, + [3598] = 3237, + [3599] = 3231, + [3600] = 3232, + [3601] = 3240, + [3602] = 3241, + [3603] = 3246, + [3604] = 3237, + [3605] = 3231, + [3606] = 3232, + [3607] = 3240, + [3608] = 3241, + [3609] = 3234, + [3610] = 3235, + [3611] = 3243, + [3612] = 3231, + [3613] = 3245, + [3614] = 3232, + [3615] = 3237, + [3616] = 3231, + [3617] = 3232, + [3618] = 3240, + [3619] = 3241, + [3620] = 3253, + [3621] = 3621, + [3622] = 3237, + [3623] = 3231, + [3624] = 3232, + [3625] = 3240, + [3626] = 3241, + [3627] = 3259, + [3628] = 3260, + [3629] = 3261, + [3630] = 3262, + [3631] = 3237, + [3632] = 3231, + [3633] = 3232, + [3634] = 3240, + [3635] = 3241, + [3636] = 3234, + [3637] = 3235, + [3638] = 3230, + [3639] = 3264, + [3640] = 3237, + [3641] = 3231, + [3642] = 3232, + [3643] = 3237, + [3644] = 3231, + [3645] = 3232, + [3646] = 3240, + [3647] = 3241, + [3648] = 3240, + [3649] = 3241, + [3650] = 3240, + [3651] = 3234, + [3652] = 3235, + [3653] = 3241, + [3654] = 3237, + [3655] = 3231, + [3656] = 3232, + [3657] = 3240, + [3658] = 3241, + [3659] = 3234, + [3660] = 3235, + [3661] = 3661, + [3662] = 3662, + [3663] = 3576, + [3664] = 3237, + [3665] = 3237, + [3666] = 3231, + [3667] = 3232, + [3668] = 3240, + [3669] = 3237, + [3670] = 3231, + [3671] = 3232, + [3672] = 3240, + [3673] = 3241, + [3674] = 3241, + [3675] = 3234, + [3676] = 3240, + [3677] = 3234, + [3678] = 3235, + [3679] = 3576, + [3680] = 3264, + [3681] = 3235, + [3682] = 3234, + [3683] = 3237, + [3684] = 3231, + [3685] = 3232, + [3686] = 3240, + [3687] = 3241, + [3688] = 3235, + [3689] = 3236, + [3690] = 3234, + [3691] = 3235, + [3692] = 3237, + [3693] = 3246, + [3694] = 3229, + [3695] = 3234, + [3696] = 3243, + [3697] = 3234, + [3698] = 3234, + [3699] = 3234, + [3700] = 3234, + [3701] = 3234, + [3702] = 3234, + [3703] = 3234, + [3704] = 3234, + [3705] = 3234, + [3706] = 3234, + [3707] = 3229, + [3708] = 3245, + [3709] = 3237, + [3710] = 3231, + [3711] = 3229, + [3712] = 3232, + [3713] = 3240, + [3714] = 3241, + [3715] = 3229, + [3716] = 3229, + [3717] = 3253, + [3718] = 3229, + [3719] = 3234, + [3720] = 3235, + [3721] = 3229, + [3722] = 3259, + [3723] = 3229, + [3724] = 3260, + [3725] = 3261, + [3726] = 3229, + [3727] = 3262, + [3728] = 3263, + [3729] = 3264, + [3730] = 3229, + [3731] = 3229, + [3732] = 3237, + [3733] = 3231, + [3734] = 3232, + [3735] = 3240, + [3736] = 3229, + [3737] = 3241, + [3738] = 3229, + [3739] = 3229, + [3740] = 3229, + [3741] = 3234, + [3742] = 3235, + [3743] = 3229, + [3744] = 3237, + [3745] = 3231, + [3746] = 3229, + [3747] = 3232, + [3748] = 3240, + [3749] = 3241, + [3750] = 3229, + [3751] = 3576, + [3752] = 3229, + [3753] = 3237, + [3754] = 3231, + [3755] = 3229, + [3756] = 3232, + [3757] = 3240, + [3758] = 3241, + [3759] = 3229, + [3760] = 3229, + [3761] = 3229, + [3762] = 3234, + [3763] = 3235, + [3764] = 3229, + [3765] = 3234, + [3766] = 3229, + [3767] = 3235, + [3768] = 3236, + [3769] = 3229, + [3770] = 3229, + [3771] = 3246, + [3772] = 3229, + [3773] = 3237, + [3774] = 3231, + [3775] = 3232, + [3776] = 3240, + [3777] = 3229, + [3778] = 3241, + [3779] = 3229, + [3780] = 3229, + [3781] = 3229, + [3782] = 3234, + [3783] = 3235, + [3784] = 3243, + [3785] = 3245, + [3786] = 3229, + [3787] = 3229, + [3788] = 3253, + [3789] = 3229, + [3790] = 3259, + [3791] = 3260, + [3792] = 3261, + [3793] = 3262, + [3794] = 3263, + [3795] = 3237, + [3796] = 3231, + [3797] = 3229, + [3798] = 3232, + [3799] = 3240, + [3800] = 3241, + [3801] = 3229, + [3802] = 3264, + [3803] = 3229, + [3804] = 3229, + [3805] = 3234, + [3806] = 3235, + [3807] = 3229, + [3808] = 3229, + [3809] = 3229, + [3810] = 3229, + [3811] = 3229, + [3812] = 3237, + [3813] = 3231, + [3814] = 3232, + [3815] = 3240, + [3816] = 3229, + [3817] = 3241, + [3818] = 3229, + [3819] = 3229, + [3820] = 3237, + [3821] = 3231, + [3822] = 3229, + [3823] = 3234, + [3824] = 3235, + [3825] = 3232, + [3826] = 3240, + [3827] = 3229, + [3828] = 3241, + [3829] = 3229, + [3830] = 3576, + [3831] = 3229, + [3832] = 3229, + [3833] = 3237, + [3834] = 3231, + [3835] = 3229, + [3836] = 3232, + [3837] = 3240, + [3838] = 3241, + [3839] = 3229, + [3840] = 3229, + [3841] = 3236, + [3842] = 3234, + [3843] = 3229, + [3844] = 3235, + [3845] = 3234, + [3846] = 3235, + [3847] = 3229, + [3848] = 3236, + [3849] = 3229, + [3850] = 3229, + [3851] = 3246, + [3852] = 3229, + [3853] = 3229, + [3854] = 3237, + [3855] = 3231, + [3856] = 3232, + [3857] = 3240, + [3858] = 3229, + [3859] = 3241, + [3860] = 3229, + [3861] = 3243, + [3862] = 3245, + [3863] = 3229, + [3864] = 3253, + [3865] = 3229, + [3866] = 3234, + [3867] = 3235, + [3868] = 3229, + [3869] = 3259, + [3870] = 3260, + [3871] = 3261, + [3872] = 3229, + [3873] = 3262, + [3874] = 3263, + [3875] = 3264, + [3876] = 3229, + [3877] = 3229, + [3878] = 3237, + [3879] = 3231, + [3880] = 3229, + [3881] = 3232, + [3882] = 3240, + [3883] = 3241, + [3884] = 3229, + [3885] = 3229, + [3886] = 3229, + [3887] = 3234, + [3888] = 3235, + [3889] = 3229, + [3890] = 3229, + [3891] = 3229, + [3892] = 3229, + [3893] = 3237, + [3894] = 3231, + [3895] = 3232, + [3896] = 3229, + [3897] = 3237, + [3898] = 3231, + [3899] = 3232, + [3900] = 3240, + [3901] = 3229, + [3902] = 3241, + [3903] = 3240, + [3904] = 3229, + [3905] = 3241, + [3906] = 3229, + [3907] = 3576, + [3908] = 3229, + [3909] = 3234, + [3910] = 3235, + [3911] = 3231, + [3912] = 3559, + [3913] = 3230, + [3914] = 3234, + [3915] = 3234, + [3916] = 3234, + [3917] = 3234, + [3918] = 3234, + [3919] = 3234, + [3920] = 3234, + [3921] = 3234, + [3922] = 3234, + [3923] = 3234, + [3924] = 3234, + [3925] = 3234, + [3926] = 3234, + [3927] = 3234, + [3928] = 3234, + [3929] = 3234, + [3930] = 3234, + [3931] = 3234, + [3932] = 3234, + [3933] = 3234, + [3934] = 3234, + [3935] = 3234, + [3936] = 3234, + [3937] = 3234, + [3938] = 3234, + [3939] = 3234, + [3940] = 3559, + [3941] = 3230, + [3942] = 3559, + [3943] = 3230, + [3944] = 3559, + [3945] = 3230, + [3946] = 3559, + [3947] = 3230, + [3948] = 3559, + [3949] = 3230, + [3950] = 3559, + [3951] = 3230, + [3952] = 3559, + [3953] = 3230, + [3954] = 3559, + [3955] = 3230, + [3956] = 3559, + [3957] = 3230, + [3958] = 3559, + [3959] = 3230, + [3960] = 3559, + [3961] = 3230, + [3962] = 3559, + [3963] = 3230, + [3964] = 3559, + [3965] = 3230, + [3966] = 3559, + [3967] = 3230, + [3968] = 3559, + [3969] = 3230, + [3970] = 3559, + [3971] = 3230, + [3972] = 3559, + [3973] = 3230, + [3974] = 3559, + [3975] = 3230, + [3976] = 3559, + [3977] = 3230, + [3978] = 3559, + [3979] = 3559, + [3980] = 3559, + [3981] = 3559, + [3982] = 3559, + [3983] = 3559, + [3984] = 3559, + [3985] = 3559, + [3986] = 3559, + [3987] = 3559, + [3988] = 3559, + [3989] = 3559, + [3990] = 3559, + [3991] = 3559, + [3992] = 3559, + [3993] = 3559, + [3994] = 3559, + [3995] = 3559, + [3996] = 3559, + [3997] = 3559, + [3998] = 3559, + [3999] = 3559, + [4000] = 3559, + [4001] = 3559, + [4002] = 3559, + [4003] = 3559, + [4004] = 3559, + [4005] = 3559, + [4006] = 3559, + [4007] = 3559, + [4008] = 3559, + [4009] = 3559, + [4010] = 3559, + [4011] = 3559, + [4012] = 3559, + [4013] = 3559, + [4014] = 3559, + [4015] = 3559, + [4016] = 3559, + [4017] = 3559, + [4018] = 3559, + [4019] = 3559, + [4020] = 3559, + [4021] = 3559, + [4022] = 3559, + [4023] = 3559, + [4024] = 3559, + [4025] = 3559, + [4026] = 3559, + [4027] = 3559, + [4028] = 3559, + [4029] = 3559, + [4030] = 3559, + [4031] = 3559, + [4032] = 3559, + [4033] = 3559, + [4034] = 3559, + [4035] = 3559, + [4036] = 3559, + [4037] = 3559, + [4038] = 3559, + [4039] = 3559, + [4040] = 3559, + [4041] = 3230, + [4042] = 3230, + [4043] = 3230, + [4044] = 3230, + [4045] = 3230, + [4046] = 3230, + [4047] = 3230, + [4048] = 3230, + [4049] = 3230, + [4050] = 3230, + [4051] = 3230, + [4052] = 3230, + [4053] = 3230, + [4054] = 3230, + [4055] = 3230, + [4056] = 3230, + [4057] = 3230, + [4058] = 3230, + [4059] = 3230, + [4060] = 3263, + [4061] = 29, + [4062] = 27, + [4063] = 30, + [4064] = 28, + [4065] = 31, + [4066] = 56, + [4067] = 59, + [4068] = 60, + [4069] = 61, + [4070] = 57, + [4071] = 58, + [4072] = 52, + [4073] = 62, + [4074] = 51, + [4075] = 54, + [4076] = 55, + [4077] = 46, + [4078] = 53, + [4079] = 467, + [4080] = 466, + [4081] = 465, + [4082] = 466, + [4083] = 467, + [4084] = 466, + [4085] = 467, + [4086] = 466, + [4087] = 465, + [4088] = 465, + [4089] = 465, + [4090] = 467, + [4091] = 465, + [4092] = 467, + [4093] = 465, + [4094] = 465, + [4095] = 466, + [4096] = 466, + [4097] = 467, + [4098] = 466, + [4099] = 467, + [4100] = 466, + [4101] = 467, + [4102] = 38, + [4103] = 466, + [4104] = 42, + [4105] = 39, + [4106] = 465, + [4107] = 465, + [4108] = 466, + [4109] = 33, + [4110] = 467, + [4111] = 467, + [4112] = 465, + [4113] = 466, + [4114] = 4114, + [4115] = 41, + [4116] = 39, + [4117] = 33, + [4118] = 4118, + [4119] = 38, + [4120] = 467, + [4121] = 467, + [4122] = 465, + [4123] = 465, + [4124] = 42, + [4125] = 466, + [4126] = 465, + [4127] = 73, + [4128] = 47, + [4129] = 465, + [4130] = 465, + [4131] = 466, + [4132] = 467, + [4133] = 466, + [4134] = 49, + [4135] = 4135, + [4136] = 467, + [4137] = 465, + [4138] = 466, + [4139] = 466, + [4140] = 4135, + [4141] = 467, + [4142] = 63, + [4143] = 64, + [4144] = 465, + [4145] = 466, + [4146] = 467, + [4147] = 65, + [4148] = 465, + [4149] = 466, + [4150] = 467, + [4151] = 465, + [4152] = 4152, + [4153] = 466, + [4154] = 467, + [4155] = 465, + [4156] = 66, + [4157] = 466, + [4158] = 465, + [4159] = 466, + [4160] = 467, + [4161] = 465, + [4162] = 67, + [4163] = 466, + [4164] = 467, + [4165] = 465, + [4166] = 68, + [4167] = 69, + [4168] = 70, + [4169] = 467, + [4170] = 71, + [4171] = 72, + [4172] = 466, + [4173] = 467, + [4174] = 467, + [4175] = 64, + [4176] = 4176, + [4177] = 4177, + [4178] = 4178, + [4179] = 4179, + [4180] = 4180, + [4181] = 4181, + [4182] = 4182, + [4183] = 4183, + [4184] = 4184, + [4185] = 465, + [4186] = 466, + [4187] = 467, + [4188] = 4188, + [4189] = 4189, + [4190] = 65, + [4191] = 4152, + [4192] = 47, + [4193] = 4193, + [4194] = 4194, + [4195] = 4195, + [4196] = 4196, + [4197] = 465, + [4198] = 72, + [4199] = 66, + [4200] = 4152, + [4201] = 467, + [4202] = 466, + [4203] = 4203, + [4204] = 465, + [4205] = 467, + [4206] = 4206, + [4207] = 63, + [4208] = 4208, + [4209] = 467, + [4210] = 465, + [4211] = 4211, + [4212] = 4212, + [4213] = 4213, + [4214] = 4214, + [4215] = 465, + [4216] = 466, + [4217] = 465, + [4218] = 4218, + [4219] = 4219, + [4220] = 4220, + [4221] = 466, + [4222] = 4222, + [4223] = 4223, + [4224] = 73, + [4225] = 467, + [4226] = 4226, + [4227] = 4227, + [4228] = 4152, + [4229] = 4229, + [4230] = 465, + [4231] = 4231, + [4232] = 466, + [4233] = 4233, + [4234] = 4234, + [4235] = 466, + [4236] = 4236, + [4237] = 4237, + [4238] = 4238, + [4239] = 4239, + [4240] = 4240, + [4241] = 4241, + [4242] = 4242, + [4243] = 4243, + [4244] = 465, + [4245] = 4245, + [4246] = 4246, + [4247] = 466, + [4248] = 4248, + [4249] = 4249, + [4250] = 67, + [4251] = 68, + [4252] = 466, + [4253] = 467, + [4254] = 69, + [4255] = 465, + [4256] = 4256, + [4257] = 467, + [4258] = 466, + [4259] = 467, + [4260] = 467, + [4261] = 70, + [4262] = 71, + [4263] = 4263, + [4264] = 4264, + [4265] = 4265, + [4266] = 4266, + [4267] = 4267, + [4268] = 4268, + [4269] = 4269, + [4270] = 4270, + [4271] = 4271, + [4272] = 4272, + [4273] = 465, + [4274] = 467, + [4275] = 466, + [4276] = 4276, + [4277] = 4277, + [4278] = 4238, + [4279] = 4279, + [4280] = 4280, + [4281] = 4229, + [4282] = 4282, + [4283] = 467, + [4284] = 4236, + [4285] = 4242, + [4286] = 4282, + [4287] = 4279, + [4288] = 4280, + [4289] = 4282, + [4290] = 4279, + [4291] = 4280, + [4292] = 465, + [4293] = 4266, + [4294] = 4233, + [4295] = 4234, + [4296] = 4233, + [4297] = 4237, + [4298] = 4238, + [4299] = 4234, + [4300] = 4239, + [4301] = 4240, + [4302] = 4241, + [4303] = 4233, + [4304] = 4234, + [4305] = 4282, + [4306] = 4245, + [4307] = 4282, + [4308] = 466, + [4309] = 4279, + [4310] = 4280, + [4311] = 4246, + [4312] = 4279, + [4313] = 4268, + [4314] = 4280, + [4315] = 4206, + [4316] = 4249, + [4317] = 4213, + [4318] = 4214, + [4319] = 4220, + [4320] = 4222, + [4321] = 4237, + [4322] = 4237, + [4323] = 4238, + [4324] = 4226, + [4325] = 4208, + [4326] = 4239, + [4327] = 4218, + [4328] = 4240, + [4329] = 4241, + [4330] = 4219, + [4331] = 4245, + [4332] = 4282, + [4333] = 4279, + [4334] = 4280, + [4335] = 4246, + [4336] = 4268, + [4337] = 4243, + [4338] = 4248, + [4339] = 4256, + [4340] = 4239, + [4341] = 4240, + [4342] = 4206, + [4343] = 4249, + [4344] = 4344, + [4345] = 4213, + [4346] = 4214, + [4347] = 4269, + [4348] = 4220, + [4349] = 4222, + [4350] = 465, + [4351] = 4226, + [4352] = 4272, + [4353] = 4344, + [4354] = 4208, + [4355] = 4218, + [4356] = 4177, + [4357] = 4241, + [4358] = 4188, + [4359] = 4282, + [4360] = 4236, + [4361] = 4279, + [4362] = 4280, + [4363] = 4344, + [4364] = 4189, + [4365] = 4193, + [4366] = 4344, + [4367] = 4196, + [4368] = 4245, + [4369] = 4344, + [4370] = 4219, + [4371] = 4243, + [4372] = 4344, + [4373] = 4248, + [4374] = 4344, + [4375] = 4203, + [4376] = 4223, + [4377] = 4344, + [4378] = 4256, + [4379] = 4246, + [4380] = 4344, + [4381] = 4277, + [4382] = 4231, + [4383] = 4269, + [4384] = 4263, + [4385] = 4344, + [4386] = 4264, + [4387] = 4272, + [4388] = 4265, + [4389] = 4267, + [4390] = 4344, + [4391] = 4344, + [4392] = 4268, + [4393] = 4206, + [4394] = 4249, + [4395] = 4344, + [4396] = 4270, + [4397] = 4344, + [4398] = 4271, + [4399] = 4344, + [4400] = 4344, + [4401] = 4276, + [4402] = 4227, + [4403] = 4344, + [4404] = 4176, + [4405] = 4178, + [4406] = 4344, + [4407] = 4213, + [4408] = 4344, + [4409] = 4177, + [4410] = 4214, + [4411] = 4344, + [4412] = 4188, + [4413] = 4189, + [4414] = 4220, + [4415] = 4344, + [4416] = 4179, + [4417] = 4180, + [4418] = 4181, + [4419] = 4182, + [4420] = 4344, + [4421] = 4193, + [4422] = 4282, + [4423] = 4183, + [4424] = 4344, + [4425] = 4152, + [4426] = 4279, + [4427] = 4280, + [4428] = 4196, + [4429] = 4184, + [4430] = 4344, + [4431] = 4203, + [4432] = 4194, + [4433] = 4222, + [4434] = 4226, + [4435] = 4344, + [4436] = 4223, + [4437] = 4344, + [4438] = 4344, + [4439] = 4277, + [4440] = 4231, + [4441] = 4195, + [4442] = 4344, + [4443] = 4263, + [4444] = 4264, + [4445] = 4211, + [4446] = 4282, + [4447] = 4212, + [4448] = 4344, + [4449] = 4265, + [4450] = 4344, + [4451] = 4267, + [4452] = 4270, + [4453] = 4344, + [4454] = 4271, + [4455] = 4276, + [4456] = 4227, + [4457] = 4344, + [4458] = 4344, + [4459] = 4176, + [4460] = 4178, + [4461] = 4344, + [4462] = 4179, + [4463] = 4344, + [4464] = 4180, + [4465] = 4344, + [4466] = 4344, + [4467] = 4344, + [4468] = 4279, + [4469] = 4344, + [4470] = 4344, + [4471] = 4344, + [4472] = 4344, + [4473] = 4344, + [4474] = 4344, + [4475] = 4344, + [4476] = 4344, + [4477] = 4344, + [4478] = 4344, + [4479] = 4344, + [4480] = 4242, + [4481] = 4229, + [4482] = 4282, + [4483] = 4344, + [4484] = 4279, + [4485] = 4280, + [4486] = 4344, + [4487] = 4181, + [4488] = 4182, + [4489] = 4344, + [4490] = 4183, + [4491] = 4184, + [4492] = 4344, + [4493] = 4282, + [4494] = 4279, + [4495] = 4344, + [4496] = 4208, + [4497] = 4218, + [4498] = 4344, + [4499] = 4280, + [4500] = 4194, + [4501] = 4195, + [4502] = 467, + [4503] = 4344, + [4504] = 4219, + [4505] = 4211, + [4506] = 4282, + [4507] = 4279, + [4508] = 4344, + [4509] = 4280, + [4510] = 4243, + [4511] = 4248, + [4512] = 4344, + [4513] = 4344, + [4514] = 4256, + [4515] = 4344, + [4516] = 4212, + [4517] = 4344, + [4518] = 4280, + [4519] = 4344, + [4520] = 4269, + [4521] = 4272, + [4522] = 4344, + [4523] = 4344, + [4524] = 4344, + [4525] = 4152, + [4526] = 4177, + [4527] = 4344, + [4528] = 4188, + [4529] = 4189, + [4530] = 4344, + [4531] = 4193, + [4532] = 467, + [4533] = 4344, + [4534] = 4196, + [4535] = 4203, + [4536] = 4223, + [4537] = 4344, + [4538] = 4344, + [4539] = 4277, + [4540] = 4231, + [4541] = 4344, + [4542] = 4263, + [4543] = 4264, + [4544] = 4265, + [4545] = 4344, + [4546] = 4344, + [4547] = 4344, + [4548] = 4344, + [4549] = 4344, + [4550] = 4344, + [4551] = 4344, + [4552] = 4344, + [4553] = 4344, + [4554] = 4344, + [4555] = 466, + [4556] = 4344, + [4557] = 4344, + [4558] = 4229, + [4559] = 4236, + [4560] = 4242, + [4561] = 465, + [4562] = 4282, + [4563] = 4279, + [4564] = 4152, + [4565] = 466, + [4566] = 4267, + [4567] = 4270, + [4568] = 4271, + [4569] = 4280, + [4570] = 4276, + [4571] = 4282, + [4572] = 4279, + [4573] = 4280, + [4574] = 4227, + [4575] = 4176, + [4576] = 4178, + [4577] = 4179, + [4578] = 4266, + [4579] = 4180, + [4580] = 4266, + [4581] = 4181, + [4582] = 4182, + [4583] = 4183, + [4584] = 4184, + [4585] = 4194, + [4586] = 4195, + [4587] = 4211, + [4588] = 4212, + [4589] = 4344, + [4590] = 4590, + [4591] = 4591, + [4592] = 4592, + [4593] = 4196, + [4594] = 4249, + [4595] = 4595, + [4596] = 4213, + [4597] = 4237, + [4598] = 4238, + [4599] = 4599, + [4600] = 4214, + [4601] = 4601, + [4602] = 4239, + [4603] = 4603, + [4604] = 4220, + [4605] = 4605, + [4606] = 4226, + [4607] = 4240, + [4608] = 4608, + [4609] = 4609, + [4610] = 4223, + [4611] = 4222, + [4612] = 4226, + [4613] = 4241, + [4614] = 4614, + [4615] = 4592, + [4616] = 4212, + [4617] = 4245, + [4618] = 4208, + [4619] = 4208, + [4620] = 4620, + [4621] = 4218, + [4622] = 4622, + [4623] = 4623, + [4624] = 4219, + [4625] = 4623, + [4626] = 4267, + [4627] = 4595, + [4628] = 4601, + [4629] = 4243, + [4630] = 4248, + [4631] = 4270, + [4632] = 4271, + [4633] = 4256, + [4634] = 4590, + [4635] = 4269, + [4636] = 4603, + [4637] = 4614, + [4638] = 4272, + [4639] = 4609, + [4640] = 4620, + [4641] = 4623, + [4642] = 4177, + [4643] = 4246, + [4644] = 4218, + [4645] = 4219, + [4646] = 4605, + [4647] = 4647, + [4648] = 4601, + [4649] = 4243, + [4650] = 4601, + [4651] = 4248, + [4652] = 4652, + [4653] = 4653, + [4654] = 4276, + [4655] = 4655, + [4656] = 4231, + [4657] = 4179, + [4658] = 4256, + [4659] = 4608, + [4660] = 4595, + [4661] = 4592, + [4662] = 4620, + [4663] = 4268, + [4664] = 4590, + [4665] = 4269, + [4666] = 4652, + [4667] = 4653, + [4668] = 4590, + [4669] = 4601, + [4670] = 4647, + [4671] = 4603, + [4672] = 4603, + [4673] = 4268, + [4674] = 4652, + [4675] = 4653, + [4676] = 4227, + [4677] = 4599, + [4678] = 4206, + [4679] = 4679, + [4680] = 4176, + [4681] = 4652, + [4682] = 4653, + [4683] = 38, + [4684] = 42, + [4685] = 41, + [4686] = 38, + [4687] = 42, + [4688] = 39, + [4689] = 33, + [4690] = 4178, + [4691] = 4249, + [4692] = 4623, + [4693] = 4605, + [4694] = 4655, + [4695] = 4652, + [4696] = 4653, + [4697] = 4623, + [4698] = 4213, + [4699] = 4609, + [4700] = 4652, + [4701] = 4653, + [4702] = 4176, + [4703] = 4622, + [4704] = 4214, + [4705] = 4188, + [4706] = 4272, + [4707] = 4652, + [4708] = 4653, + [4709] = 4709, + [4710] = 4177, + [4711] = 4179, + [4712] = 4599, + [4713] = 4220, + [4714] = 4652, + [4715] = 4653, + [4716] = 4188, + [4717] = 4601, + [4718] = 4590, + [4719] = 4189, + [4720] = 4652, + [4721] = 4653, + [4722] = 4601, + [4723] = 4609, + [4724] = 4595, + [4725] = 4590, + [4726] = 4652, + [4727] = 4653, + [4728] = 4605, + [4729] = 4180, + [4730] = 4614, + [4731] = 4193, + [4732] = 4181, + [4733] = 4592, + [4734] = 4652, + [4735] = 4653, + [4736] = 4182, + [4737] = 4183, + [4738] = 4592, + [4739] = 4592, + [4740] = 4620, + [4741] = 4603, + [4742] = 4652, + [4743] = 4653, + [4744] = 4184, + [4745] = 4196, + [4746] = 4605, + [4747] = 4592, + [4748] = 4614, + [4749] = 4620, + [4750] = 4652, + [4751] = 4653, + [4752] = 28, + [4753] = 4609, + [4754] = 4614, + [4755] = 4647, + [4756] = 4647, + [4757] = 4599, + [4758] = 4653, + [4759] = 4609, + [4760] = 4623, + [4761] = 4608, + [4762] = 4653, + [4763] = 4614, + [4764] = 4647, + [4765] = 4599, + [4766] = 4655, + [4767] = 4599, + [4768] = 4595, + [4769] = 4653, + [4770] = 4609, + [4771] = 30, + [4772] = 4590, + [4773] = 4653, + [4774] = 4595, + [4775] = 4595, + [4776] = 4590, + [4777] = 4620, + [4778] = 4653, + [4779] = 4203, + [4780] = 4223, + [4781] = 4194, + [4782] = 4195, + [4783] = 4603, + [4784] = 4653, + [4785] = 4623, + [4786] = 4277, + [4787] = 4608, + [4788] = 4211, + [4789] = 4222, + [4790] = 4653, + [4791] = 4231, + [4792] = 4595, + [4793] = 4603, + [4794] = 4608, + [4795] = 4212, + [4796] = 4653, + [4797] = 4263, + [4798] = 4653, + [4799] = 4264, + [4800] = 4679, + [4801] = 4603, + [4802] = 4590, + [4803] = 4653, + [4804] = 4679, + [4805] = 4605, + [4806] = 4178, + [4807] = 4605, + [4808] = 4614, + [4809] = 4601, + [4810] = 4609, + [4811] = 4605, + [4812] = 4592, + [4813] = 4592, + [4814] = 4601, + [4815] = 4590, + [4816] = 4623, + [4817] = 4592, + [4818] = 4265, + [4819] = 4267, + [4820] = 4603, + [4821] = 4595, + [4822] = 4620, + [4823] = 4590, + [4824] = 4603, + [4825] = 4603, + [4826] = 4614, + [4827] = 4270, + [4828] = 4605, + [4829] = 4620, + [4830] = 4614, + [4831] = 4655, + [4832] = 4592, + [4833] = 4206, + [4834] = 4620, + [4835] = 4647, + [4836] = 4271, + [4837] = 4620, + [4838] = 4595, + [4839] = 4592, + [4840] = 4599, + [4841] = 4276, + [4842] = 4647, + [4843] = 4265, + [4844] = 4599, + [4845] = 4590, + [4846] = 4622, + [4847] = 4267, + [4848] = 4227, + [4849] = 4849, + [4850] = 4647, + [4851] = 4655, + [4852] = 4599, + [4853] = 4277, + [4854] = 4614, + [4855] = 4647, + [4856] = 4655, + [4857] = 4193, + [4858] = 4599, + [4859] = 4266, + [4860] = 4623, + [4861] = 4608, + [4862] = 31, + [4863] = 4226, + [4864] = 4249, + [4865] = 4601, + [4866] = 4609, + [4867] = 4605, + [4868] = 4208, + [4869] = 4595, + [4870] = 4590, + [4871] = 4603, + [4872] = 4623, + [4873] = 4592, + [4874] = 4218, + [4875] = 4605, + [4876] = 4608, + [4877] = 4592, + [4878] = 4620, + [4879] = 4219, + [4880] = 4614, + [4881] = 4620, + [4882] = 4647, + [4883] = 4599, + [4884] = 4623, + [4885] = 4243, + [4886] = 4601, + [4887] = 4263, + [4888] = 4176, + [4889] = 4614, + [4890] = 4206, + [4891] = 4270, + [4892] = 4178, + [4893] = 4647, + [4894] = 4248, + [4895] = 4256, + [4896] = 4608, + [4897] = 4608, + [4898] = 4655, + [4899] = 4180, + [4900] = 4181, + [4901] = 4605, + [4902] = 4179, + [4903] = 4652, + [4904] = 4590, + [4905] = 4182, + [4906] = 4592, + [4907] = 4269, + [4908] = 4180, + [4909] = 4614, + [4910] = 4647, + [4911] = 4601, + [4912] = 4609, + [4913] = 4595, + [4914] = 4623, + [4915] = 4181, + [4916] = 4599, + [4917] = 4590, + [4918] = 4591, + [4919] = 4599, + [4920] = 4603, + [4921] = 4271, + [4922] = 4605, + [4923] = 4182, + [4924] = 4592, + [4925] = 4647, + [4926] = 4599, + [4927] = 4603, + [4928] = 4620, + [4929] = 4614, + [4930] = 4647, + [4931] = 4599, + [4932] = 4623, + [4933] = 4213, + [4934] = 4614, + [4935] = 4595, + [4936] = 4647, + [4937] = 4605, + [4938] = 4183, + [4939] = 4184, + [4940] = 4655, + [4941] = 4194, + [4942] = 4183, + [4943] = 4620, + [4944] = 4229, + [4945] = 4203, + [4946] = 4601, + [4947] = 4623, + [4948] = 4195, + [4949] = 4601, + [4950] = 4608, + [4951] = 4608, + [4952] = 4236, + [4953] = 4620, + [4954] = 4229, + [4955] = 4955, + [4956] = 4211, + [4957] = 4601, + [4958] = 4264, + [4959] = 4609, + [4960] = 4266, + [4961] = 4184, + [4962] = 4242, + [4963] = 4609, + [4964] = 4599, + [4965] = 29, + [4966] = 4595, + [4967] = 4595, + [4968] = 4236, + [4969] = 4266, + [4970] = 4608, + [4971] = 4609, + [4972] = 4620, + [4973] = 4590, + [4974] = 4623, + [4975] = 4655, + [4976] = 4603, + [4977] = 4608, + [4978] = 4623, + [4979] = 4605, + [4980] = 4608, + [4981] = 4592, + [4982] = 4620, + [4983] = 4233, + [4984] = 4234, + [4985] = 4614, + [4986] = 4601, + [4987] = 4614, + [4988] = 4609, + [4989] = 4595, + [4990] = 4590, + [4991] = 4603, + [4992] = 4653, + [4993] = 4647, + [4994] = 4605, + [4995] = 4592, + [4996] = 4647, + [4997] = 4599, + [4998] = 4623, + [4999] = 4237, + [5000] = 4620, + [5001] = 4272, + [5002] = 4614, + [5003] = 4647, + [5004] = 4599, + [5005] = 4601, + [5006] = 4177, + [5007] = 4623, + [5008] = 4609, + [5009] = 4595, + [5010] = 4590, + [5011] = 4238, + [5012] = 4188, + [5013] = 4603, + [5014] = 4605, + [5015] = 4229, + [5016] = 4189, + [5017] = 4603, + [5018] = 4592, + [5019] = 4193, + [5020] = 4623, + [5021] = 4599, + [5022] = 4608, + [5023] = 4620, + [5024] = 4608, + [5025] = 4614, + [5026] = 4622, + [5027] = 4614, + [5028] = 4655, + [5029] = 4679, + [5030] = 27, + [5031] = 4212, + [5032] = 4647, + [5033] = 4599, + [5034] = 4623, + [5035] = 4623, + [5036] = 4608, + [5037] = 4196, + [5038] = 4203, + [5039] = 4608, + [5040] = 4223, + [5041] = 4603, + [5042] = 4595, + [5043] = 4277, + [5044] = 4242, + [5045] = 4608, + [5046] = 4591, + [5047] = 4236, + [5048] = 4609, + [5049] = 4239, + [5050] = 4231, + [5051] = 4601, + [5052] = 4608, + [5053] = 4605, + [5054] = 4609, + [5055] = 4592, + [5056] = 4152, + [5057] = 4240, + [5058] = 4276, + [5059] = 4590, + [5060] = 4603, + [5061] = 4605, + [5062] = 4592, + [5063] = 4227, + [5064] = 4242, + [5065] = 4263, + [5066] = 4601, + [5067] = 4591, + [5068] = 4591, + [5069] = 4601, + [5070] = 4591, + [5071] = 39, + [5072] = 33, + [5073] = 4608, + [5074] = 4591, + [5075] = 4620, + [5076] = 4609, + [5077] = 4591, + [5078] = 4595, + [5079] = 4591, + [5080] = 4241, + [5081] = 4591, + [5082] = 4233, + [5083] = 4264, + [5084] = 4591, + [5085] = 4591, + [5086] = 4590, + [5087] = 4591, + [5088] = 4245, + [5089] = 4609, + [5090] = 4591, + [5091] = 4608, + [5092] = 4591, + [5093] = 4246, + [5094] = 4591, + [5095] = 4234, + [5096] = 4614, + [5097] = 4655, + [5098] = 4647, + [5099] = 4595, + [5100] = 4599, + [5101] = 4623, + [5102] = 4194, + [5103] = 4214, + [5104] = 4601, + [5105] = 4220, + [5106] = 4603, + [5107] = 4608, + [5108] = 4647, + [5109] = 4655, + [5110] = 5110, + [5111] = 4591, + [5112] = 4601, + [5113] = 4246, + [5114] = 4222, + [5115] = 4605, + [5116] = 4268, + [5117] = 4592, + [5118] = 4609, + [5119] = 4620, + [5120] = 4614, + [5121] = 4595, + [5122] = 4590, + [5123] = 4233, + [5124] = 4603, + [5125] = 4609, + [5126] = 4605, + [5127] = 4234, + [5128] = 4592, + [5129] = 4620, + [5130] = 4614, + [5131] = 4647, + [5132] = 4599, + [5133] = 4195, + [5134] = 4601, + [5135] = 4620, + [5136] = 4614, + [5137] = 4609, + [5138] = 4623, + [5139] = 4605, + [5140] = 4211, + [5141] = 4601, + [5142] = 4609, + [5143] = 4237, + [5144] = 4238, + [5145] = 4595, + [5146] = 4590, + [5147] = 4265, + [5148] = 4239, + [5149] = 4609, + [5150] = 5110, + [5151] = 4591, + [5152] = 4595, + [5153] = 5110, + [5154] = 4591, + [5155] = 4603, + [5156] = 5110, + [5157] = 4591, + [5158] = 4240, + [5159] = 5110, + [5160] = 4591, + [5161] = 4590, + [5162] = 5110, + [5163] = 4591, + [5164] = 4595, + [5165] = 5110, + [5166] = 4647, + [5167] = 5110, + [5168] = 4241, + [5169] = 5110, + [5170] = 4605, + [5171] = 5110, + [5172] = 5110, + [5173] = 4599, + [5174] = 5110, + [5175] = 4647, + [5176] = 5110, + [5177] = 4245, + [5178] = 5110, + [5179] = 4590, + [5180] = 5110, + [5181] = 5181, + [5182] = 5110, + [5183] = 4592, + [5184] = 5110, + [5185] = 4189, + [5186] = 4599, + [5187] = 5110, + [5188] = 4603, + [5189] = 5110, + [5190] = 4623, + [5191] = 5110, + [5192] = 4605, + [5193] = 5110, + [5194] = 4620, + [5195] = 5110, + [5196] = 5110, + [5197] = 5110, + [5198] = 4591, + [5199] = 4591, + [5200] = 4608, + [5201] = 5201, + [5202] = 4178, + [5203] = 49, + [5204] = 39, + [5205] = 33, + [5206] = 4223, + [5207] = 38, + [5208] = 42, + [5209] = 38, + [5210] = 4208, + [5211] = 63, + [5212] = 64, + [5213] = 65, + [5214] = 5214, + [5215] = 5215, + [5216] = 66, + [5217] = 67, + [5218] = 68, + [5219] = 4213, + [5220] = 5214, + [5221] = 69, + [5222] = 4236, + [5223] = 5215, + [5224] = 39, + [5225] = 33, + [5226] = 42, + [5227] = 4239, + [5228] = 41, + [5229] = 70, + [5230] = 5214, + [5231] = 71, + [5232] = 72, + [5233] = 4245, + [5234] = 5201, + [5235] = 73, + [5236] = 47, + [5237] = 4218, + [5238] = 5215, + [5239] = 4189, + [5240] = 4214, + [5241] = 5201, + [5242] = 5201, + [5243] = 5201, + [5244] = 39, + [5245] = 33, + [5246] = 4179, + [5247] = 39, + [5248] = 33, + [5249] = 38, + [5250] = 42, + [5251] = 5215, + [5252] = 4266, + [5253] = 4219, + [5254] = 4231, + [5255] = 41, + [5256] = 4194, + [5257] = 4180, + [5258] = 5214, + [5259] = 38, + [5260] = 4243, + [5261] = 4277, + [5262] = 4212, + [5263] = 4181, + [5264] = 5214, + [5265] = 5215, + [5266] = 5214, + [5267] = 42, + [5268] = 4248, + [5269] = 4263, + [5270] = 5215, + [5271] = 4182, + [5272] = 33, + [5273] = 4220, + [5274] = 5215, + [5275] = 5214, + [5276] = 39, + [5277] = 4183, + [5278] = 4256, + [5279] = 5214, + [5280] = 4264, + [5281] = 4176, + [5282] = 5214, + [5283] = 5215, + [5284] = 4242, + [5285] = 5215, + [5286] = 5201, + [5287] = 4268, + [5288] = 5201, + [5289] = 4233, + [5290] = 39, + [5291] = 4229, + [5292] = 33, + [5293] = 4222, + [5294] = 4184, + [5295] = 4234, + [5296] = 5201, + [5297] = 5201, + [5298] = 4188, + [5299] = 5201, + [5300] = 4195, + [5301] = 4238, + [5302] = 5201, + [5303] = 5214, + [5304] = 33, + [5305] = 5215, + [5306] = 4237, + [5307] = 4206, + [5308] = 4193, + [5309] = 5214, + [5310] = 4269, + [5311] = 4240, + [5312] = 5215, + [5313] = 38, + [5314] = 5314, + [5315] = 5201, + [5316] = 4265, + [5317] = 4267, + [5318] = 4246, + [5319] = 5214, + [5320] = 5215, + [5321] = 42, + [5322] = 4226, + [5323] = 4270, + [5324] = 41, + [5325] = 4249, + [5326] = 38, + [5327] = 42, + [5328] = 4271, + [5329] = 39, + [5330] = 33, + [5331] = 4241, + [5332] = 4276, + [5333] = 4211, + [5334] = 5214, + [5335] = 5215, + [5336] = 39, + [5337] = 38, + [5338] = 5201, + [5339] = 42, + [5340] = 4177, + [5341] = 4227, + [5342] = 41, + [5343] = 5201, + [5344] = 4196, + [5345] = 38, + [5346] = 4203, + [5347] = 5214, + [5348] = 5348, + [5349] = 42, + [5350] = 5215, + [5351] = 4272, + [5352] = 71, + [5353] = 5353, + [5354] = 47, + [5355] = 5353, + [5356] = 59, + [5357] = 5357, + [5358] = 65, + [5359] = 5353, + [5360] = 47, + [5361] = 67, + [5362] = 72, + [5363] = 5353, + [5364] = 4152, + [5365] = 73, + [5366] = 60, + [5367] = 67, + [5368] = 73, + [5369] = 5353, + [5370] = 66, + [5371] = 5353, + [5372] = 61, + [5373] = 69, + [5374] = 68, + [5375] = 62, + [5376] = 57, + [5377] = 63, + [5378] = 64, + [5379] = 47, + [5380] = 4152, + [5381] = 66, + [5382] = 5382, + [5383] = 71, + [5384] = 64, + [5385] = 55, + [5386] = 65, + [5387] = 5387, + [5388] = 68, + [5389] = 72, + [5390] = 65, + [5391] = 66, + [5392] = 4152, + [5393] = 68, + [5394] = 67, + [5395] = 5353, + [5396] = 49, + [5397] = 69, + [5398] = 64, + [5399] = 73, + [5400] = 70, + [5401] = 69, + [5402] = 54, + [5403] = 5353, + [5404] = 53, + [5405] = 71, + [5406] = 5357, + [5407] = 5353, + [5408] = 47, + [5409] = 63, + [5410] = 68, + [5411] = 69, + [5412] = 70, + [5413] = 49, + [5414] = 5382, + [5415] = 70, + [5416] = 5382, + [5417] = 63, + [5418] = 58, + [5419] = 51, + [5420] = 72, + [5421] = 72, + [5422] = 56, + [5423] = 63, + [5424] = 46, + [5425] = 49, + [5426] = 49, + [5427] = 64, + [5428] = 65, + [5429] = 71, + [5430] = 73, + [5431] = 70, + [5432] = 63, + [5433] = 64, + [5434] = 66, + [5435] = 65, + [5436] = 66, + [5437] = 52, + [5438] = 5353, + [5439] = 67, + [5440] = 68, + [5441] = 69, + [5442] = 70, + [5443] = 72, + [5444] = 5353, + [5445] = 5353, + [5446] = 67, + [5447] = 5353, + [5448] = 47, + [5449] = 71, + [5450] = 5357, + [5451] = 73, + [5452] = 5353, + [5453] = 5453, + [5454] = 4236, + [5455] = 4152, + [5456] = 4242, + [5457] = 4233, + [5458] = 4234, + [5459] = 4237, + [5460] = 4238, + [5461] = 4239, + [5462] = 4240, + [5463] = 4241, + [5464] = 4245, + [5465] = 4246, + [5466] = 4268, + [5467] = 4206, + [5468] = 4249, + [5469] = 4213, + [5470] = 4214, + [5471] = 4220, + [5472] = 4222, + [5473] = 4226, + [5474] = 4208, + [5475] = 4218, + [5476] = 4219, + [5477] = 4243, + [5478] = 4248, + [5479] = 4256, + [5480] = 4269, + [5481] = 4272, + [5482] = 4177, + [5483] = 4188, + [5484] = 4189, + [5485] = 4193, + [5486] = 4196, + [5487] = 4203, + [5488] = 4223, + [5489] = 4277, + [5490] = 4231, + [5491] = 4263, + [5492] = 4264, + [5493] = 4265, + [5494] = 4267, + [5495] = 4270, + [5496] = 4271, + [5497] = 4276, + [5498] = 4227, + [5499] = 4176, + [5500] = 4178, + [5501] = 4179, + [5502] = 4180, + [5503] = 4181, + [5504] = 4182, + [5505] = 4183, + [5506] = 4184, + [5507] = 4194, + [5508] = 4195, + [5509] = 4211, + [5510] = 4212, + [5511] = 73, + [5512] = 4229, + [5513] = 4236, + [5514] = 4152, + [5515] = 4266, + [5516] = 4242, + [5517] = 4152, + [5518] = 4233, + [5519] = 4234, + [5520] = 4237, + [5521] = 4238, + [5522] = 4239, + [5523] = 4240, + [5524] = 4241, + [5525] = 4245, + [5526] = 4246, + [5527] = 4268, + [5528] = 4206, + [5529] = 4249, + [5530] = 4213, + [5531] = 4214, + [5532] = 4220, + [5533] = 4222, + [5534] = 4226, + [5535] = 4208, + [5536] = 4218, + [5537] = 4219, + [5538] = 4243, + [5539] = 4248, + [5540] = 4256, + [5541] = 4269, + [5542] = 4272, + [5543] = 4177, + [5544] = 4188, + [5545] = 4189, + [5546] = 4193, + [5547] = 4196, + [5548] = 4203, + [5549] = 4223, + [5550] = 4277, + [5551] = 4231, + [5552] = 4263, + [5553] = 4264, + [5554] = 4265, + [5555] = 4267, + [5556] = 4270, + [5557] = 4271, + [5558] = 4276, + [5559] = 4227, + [5560] = 4176, + [5561] = 4178, + [5562] = 4179, + [5563] = 4180, + [5564] = 4181, + [5565] = 4182, + [5566] = 4183, + [5567] = 4184, + [5568] = 4194, + [5569] = 4195, + [5570] = 4211, + [5571] = 4212, + [5572] = 4152, + [5573] = 4266, + [5574] = 4152, + [5575] = 4229, + [5576] = 4236, + [5577] = 4152, + [5578] = 4242, + [5579] = 4266, + [5580] = 5580, + [5581] = 5581, + [5582] = 5357, + [5583] = 5583, + [5584] = 47, + [5585] = 5382, + [5586] = 63, + [5587] = 64, + [5588] = 65, + [5589] = 66, + [5590] = 67, + [5591] = 68, + [5592] = 69, + [5593] = 70, + [5594] = 71, + [5595] = 72, + [5596] = 73, + [5597] = 47, + [5598] = 5581, + [5599] = 5583, + [5600] = 63, + [5601] = 64, + [5602] = 65, + [5603] = 66, + [5604] = 67, + [5605] = 68, + [5606] = 69, + [5607] = 70, + [5608] = 71, + [5609] = 72, + [5610] = 73, + [5611] = 47, + [5612] = 5581, + [5613] = 5583, + [5614] = 5581, + [5615] = 5583, + [5616] = 5581, + [5617] = 5583, + [5618] = 5581, + [5619] = 5583, + [5620] = 63, + [5621] = 5581, + [5622] = 5583, + [5623] = 64, + [5624] = 65, + [5625] = 5581, + [5626] = 66, + [5627] = 5583, + [5628] = 67, + [5629] = 68, + [5630] = 5581, + [5631] = 69, + [5632] = 5583, + [5633] = 5581, + [5634] = 70, + [5635] = 71, + [5636] = 72, + [5637] = 5583, + [5638] = 5638, + [5639] = 73, + [5640] = 5581, + [5641] = 47, + [5642] = 5583, + [5643] = 5581, + [5644] = 5583, + [5645] = 5581, + [5646] = 5583, + [5647] = 5583, + [5648] = 5581, + [5649] = 5583, + [5650] = 5581, + [5651] = 5583, + [5652] = 5581, + [5653] = 5583, + [5654] = 5581, + [5655] = 5583, + [5656] = 5581, + [5657] = 5657, + [5658] = 5658, + [5659] = 5583, + [5660] = 5581, + [5661] = 5583, + [5662] = 5581, + [5663] = 5583, + [5664] = 5581, + [5665] = 5583, + [5666] = 5581, + [5667] = 5583, + [5668] = 5581, + [5669] = 5583, + [5670] = 5581, + [5671] = 5581, + [5672] = 5581, + [5673] = 5581, + [5674] = 5581, + [5675] = 5581, + [5676] = 5581, + [5677] = 4229, + [5678] = 5581, + [5679] = 5581, + [5680] = 5581, + [5681] = 5581, + [5682] = 5581, + [5683] = 5581, + [5684] = 5581, + [5685] = 5581, + [5686] = 5581, + [5687] = 5581, + [5688] = 5581, + [5689] = 5581, + [5690] = 5581, + [5691] = 5581, + [5692] = 5581, + [5693] = 5581, + [5694] = 5581, + [5695] = 5581, + [5696] = 5581, + [5697] = 5581, + [5698] = 4152, + [5699] = 5581, + [5700] = 5581, + [5701] = 5581, + [5702] = 5581, + [5703] = 5581, + [5704] = 5581, + [5705] = 5581, + [5706] = 5581, + [5707] = 5581, + [5708] = 5581, + [5709] = 5581, + [5710] = 5710, + [5711] = 5581, + [5712] = 5581, + [5713] = 5581, + [5714] = 5581, + [5715] = 5581, + [5716] = 5581, + [5717] = 5581, + [5718] = 4152, + [5719] = 5453, + [5720] = 5581, + [5721] = 5581, + [5722] = 5581, + [5723] = 5581, + [5724] = 5581, + [5725] = 5581, + [5726] = 5581, + [5727] = 5581, + [5728] = 5581, + [5729] = 5581, + [5730] = 5581, + [5731] = 5581, + [5732] = 5581, + [5733] = 5581, + [5734] = 5734, + [5735] = 5453, + [5736] = 5581, + [5737] = 5453, + [5738] = 5453, + [5739] = 5453, + [5740] = 5453, + [5741] = 5453, + [5742] = 5453, + [5743] = 5453, + [5744] = 5453, + [5745] = 5453, + [5746] = 5453, + [5747] = 5453, + [5748] = 5453, + [5749] = 5580, + [5750] = 63, + [5751] = 4233, + [5752] = 4234, + [5753] = 4237, + [5754] = 4238, + [5755] = 4239, + [5756] = 4240, + [5757] = 4241, + [5758] = 4245, + [5759] = 4246, + [5760] = 64, + [5761] = 4268, + [5762] = 4206, + [5763] = 4249, + [5764] = 4213, + [5765] = 4214, + [5766] = 4220, + [5767] = 4222, + [5768] = 4226, + [5769] = 4208, + [5770] = 4218, + [5771] = 4219, + [5772] = 4243, + [5773] = 4248, + [5774] = 4256, + [5775] = 4269, + [5776] = 4272, + [5777] = 4177, + [5778] = 4188, + [5779] = 4189, + [5780] = 4193, + [5781] = 4196, + [5782] = 4203, + [5783] = 4223, + [5784] = 4277, + [5785] = 4231, + [5786] = 4263, + [5787] = 4264, + [5788] = 4265, + [5789] = 4267, + [5790] = 4270, + [5791] = 4271, + [5792] = 4276, + [5793] = 4227, + [5794] = 4176, + [5795] = 4178, + [5796] = 4179, + [5797] = 4180, + [5798] = 4181, + [5799] = 4182, + [5800] = 4183, + [5801] = 4184, + [5802] = 4194, + [5803] = 4195, + [5804] = 4211, + [5805] = 4152, + [5806] = 4212, + [5807] = 5710, + [5808] = 5453, + [5809] = 5580, + [5810] = 65, + [5811] = 66, + [5812] = 5710, + [5813] = 5453, + [5814] = 5580, + [5815] = 5710, + [5816] = 5453, + [5817] = 5580, + [5818] = 5710, + [5819] = 5453, + [5820] = 5580, + [5821] = 5710, + [5822] = 5453, + [5823] = 5710, + [5824] = 5710, + [5825] = 5710, + [5826] = 5710, + [5827] = 5710, + [5828] = 5710, + [5829] = 5710, + [5830] = 5710, + [5831] = 67, + [5832] = 5710, + [5833] = 5710, + [5834] = 5710, + [5835] = 5710, + [5836] = 5710, + [5837] = 68, + [5838] = 5710, + [5839] = 5710, + [5840] = 5710, + [5841] = 5710, + [5842] = 5710, + [5843] = 69, + [5844] = 4152, + [5845] = 70, + [5846] = 71, + [5847] = 5453, + [5848] = 5453, + [5849] = 5453, + [5850] = 72, + [5851] = 5453, + [5852] = 4152, + [5853] = 5581, + [5854] = 5854, + [5855] = 4266, + [5856] = 4266, + [5857] = 4233, + [5858] = 4236, + [5859] = 4152, + [5860] = 4266, + [5861] = 4229, + [5862] = 4234, + [5863] = 4242, + [5864] = 4236, + [5865] = 4237, + [5866] = 4238, + [5867] = 4242, + [5868] = 4239, + [5869] = 4229, + [5870] = 4236, + [5871] = 4266, + [5872] = 4240, + [5873] = 4242, + [5874] = 4241, + [5875] = 4245, + [5876] = 4246, + [5877] = 4266, + [5878] = 4266, + [5879] = 4266, + [5880] = 4268, + [5881] = 4206, + [5882] = 5882, + [5883] = 5883, + [5884] = 4249, + [5885] = 5885, + [5886] = 5886, + [5887] = 4213, + [5888] = 5888, + [5889] = 4214, + [5890] = 4220, + [5891] = 5891, + [5892] = 4222, + [5893] = 4226, + [5894] = 4208, + [5895] = 4218, + [5896] = 4219, + [5897] = 4243, + [5898] = 4248, + [5899] = 4256, + [5900] = 4269, + [5901] = 4272, + [5902] = 4177, + [5903] = 4188, + [5904] = 4189, + [5905] = 5882, + [5906] = 4193, + [5907] = 5885, + [5908] = 5886, + [5909] = 5888, + [5910] = 4196, + [5911] = 5891, + [5912] = 4203, + [5913] = 4223, + [5914] = 4277, + [5915] = 4231, + [5916] = 4263, + [5917] = 4264, + [5918] = 4265, + [5919] = 4267, + [5920] = 4270, + [5921] = 4271, + [5922] = 4276, + [5923] = 4227, + [5924] = 5882, + [5925] = 4176, + [5926] = 5885, + [5927] = 5886, + [5928] = 5888, + [5929] = 4178, + [5930] = 5891, + [5931] = 5882, + [5932] = 4179, + [5933] = 5885, + [5934] = 5886, + [5935] = 5888, + [5936] = 4180, + [5937] = 5891, + [5938] = 5882, + [5939] = 4181, + [5940] = 5885, + [5941] = 5886, + [5942] = 5888, + [5943] = 4182, + [5944] = 5891, + [5945] = 4183, + [5946] = 4184, + [5947] = 4194, + [5948] = 4195, + [5949] = 4211, + [5950] = 4266, + [5951] = 4229, + [5952] = 4212, + [5953] = 4236, + [5954] = 4152, + [5955] = 4266, + [5956] = 4233, + [5957] = 4242, + [5958] = 4234, + [5959] = 4237, + [5960] = 4238, + [5961] = 4212, + [5962] = 4233, + [5963] = 4234, + [5964] = 4237, + [5965] = 4238, + [5966] = 4239, + [5967] = 5882, + [5968] = 4240, + [5969] = 4241, + [5970] = 4245, + [5971] = 4246, + [5972] = 5888, + [5973] = 4268, + [5974] = 4206, + [5975] = 5885, + [5976] = 4249, + [5977] = 4213, + [5978] = 4214, + [5979] = 5979, + [5980] = 4220, + [5981] = 4222, + [5982] = 4226, + [5983] = 4208, + [5984] = 4218, + [5985] = 4219, + [5986] = 4243, + [5987] = 4248, + [5988] = 4256, + [5989] = 4269, + [5990] = 4272, + [5991] = 4177, + [5992] = 5891, + [5993] = 4188, + [5994] = 4189, + [5995] = 4193, + [5996] = 4196, + [5997] = 4203, + [5998] = 4223, + [5999] = 4277, + [6000] = 4231, + [6001] = 4263, + [6002] = 4264, + [6003] = 4265, + [6004] = 4267, + [6005] = 4270, + [6006] = 4271, + [6007] = 4276, + [6008] = 4227, + [6009] = 4176, + [6010] = 4178, + [6011] = 4179, + [6012] = 4152, + [6013] = 4180, + [6014] = 4181, + [6015] = 4182, + [6016] = 4233, + [6017] = 4234, + [6018] = 4237, + [6019] = 4238, + [6020] = 4239, + [6021] = 4240, + [6022] = 4183, + [6023] = 4241, + [6024] = 4245, + [6025] = 4246, + [6026] = 4268, + [6027] = 4206, + [6028] = 4249, + [6029] = 4213, + [6030] = 4214, + [6031] = 4220, + [6032] = 4222, + [6033] = 4226, + [6034] = 4208, + [6035] = 4218, + [6036] = 4219, + [6037] = 4243, + [6038] = 4248, + [6039] = 4256, + [6040] = 4269, + [6041] = 4272, + [6042] = 4177, + [6043] = 4188, + [6044] = 4189, + [6045] = 4193, + [6046] = 4196, + [6047] = 4203, + [6048] = 4223, + [6049] = 4277, + [6050] = 4231, + [6051] = 4263, + [6052] = 4264, + [6053] = 4265, + [6054] = 4184, + [6055] = 4267, + [6056] = 4270, + [6057] = 4271, + [6058] = 4276, + [6059] = 4227, + [6060] = 4176, + [6061] = 4178, + [6062] = 4179, + [6063] = 4180, + [6064] = 4181, + [6065] = 4182, + [6066] = 4183, + [6067] = 4184, + [6068] = 4194, + [6069] = 4195, + [6070] = 4211, + [6071] = 4212, + [6072] = 4194, + [6073] = 4195, + [6074] = 4211, + [6075] = 4152, + [6076] = 4152, + [6077] = 4233, + [6078] = 4229, + [6079] = 4152, + [6080] = 4234, + [6081] = 4237, + [6082] = 4152, + [6083] = 4238, + [6084] = 4229, + [6085] = 5883, + [6086] = 4212, + [6087] = 4239, + [6088] = 5854, + [6089] = 4236, + [6090] = 4152, + [6091] = 4242, + [6092] = 4240, + [6093] = 4241, + [6094] = 4245, + [6095] = 4246, + [6096] = 4268, + [6097] = 4233, + [6098] = 4234, + [6099] = 4237, + [6100] = 4238, + [6101] = 4239, + [6102] = 4240, + [6103] = 4206, + [6104] = 4241, + [6105] = 4245, + [6106] = 4246, + [6107] = 4268, + [6108] = 4206, + [6109] = 4249, + [6110] = 4213, + [6111] = 4214, + [6112] = 4220, + [6113] = 4222, + [6114] = 4226, + [6115] = 4208, + [6116] = 4218, + [6117] = 4219, + [6118] = 4243, + [6119] = 4248, + [6120] = 4256, + [6121] = 4269, + [6122] = 4272, + [6123] = 4177, + [6124] = 4188, + [6125] = 4189, + [6126] = 4193, + [6127] = 4196, + [6128] = 4203, + [6129] = 4249, + [6130] = 4223, + [6131] = 4277, + [6132] = 4231, + [6133] = 4263, + [6134] = 4264, + [6135] = 4265, + [6136] = 4267, + [6137] = 4270, + [6138] = 4271, + [6139] = 4276, + [6140] = 4227, + [6141] = 4176, + [6142] = 4178, + [6143] = 4179, + [6144] = 4180, + [6145] = 4181, + [6146] = 4182, + [6147] = 4183, + [6148] = 4184, + [6149] = 4194, + [6150] = 4195, + [6151] = 4211, + [6152] = 4212, + [6153] = 4213, + [6154] = 4214, + [6155] = 4220, + [6156] = 4222, + [6157] = 4226, + [6158] = 4208, + [6159] = 4218, + [6160] = 4219, + [6161] = 4243, + [6162] = 4248, + [6163] = 4152, + [6164] = 4266, + [6165] = 4229, + [6166] = 4256, + [6167] = 4269, + [6168] = 4236, + [6169] = 4152, + [6170] = 4272, + [6171] = 4242, + [6172] = 4177, + [6173] = 4188, + [6174] = 4189, + [6175] = 4193, + [6176] = 4196, + [6177] = 4203, + [6178] = 4223, + [6179] = 4277, + [6180] = 4231, + [6181] = 4263, + [6182] = 4264, + [6183] = 4265, + [6184] = 4267, + [6185] = 4152, + [6186] = 4270, + [6187] = 4271, + [6188] = 4276, + [6189] = 4227, + [6190] = 4176, + [6191] = 4178, + [6192] = 4266, + [6193] = 4233, + [6194] = 4234, + [6195] = 4237, + [6196] = 4238, + [6197] = 4179, + [6198] = 4239, + [6199] = 4240, + [6200] = 4241, + [6201] = 4245, + [6202] = 4246, + [6203] = 4180, + [6204] = 4268, + [6205] = 4206, + [6206] = 4249, + [6207] = 4213, + [6208] = 4214, + [6209] = 4220, + [6210] = 4222, + [6211] = 4226, + [6212] = 4208, + [6213] = 4218, + [6214] = 4219, + [6215] = 4243, + [6216] = 4248, + [6217] = 4256, + [6218] = 4269, + [6219] = 4272, + [6220] = 4177, + [6221] = 4181, + [6222] = 4188, + [6223] = 4189, + [6224] = 4193, + [6225] = 4196, + [6226] = 4203, + [6227] = 4223, + [6228] = 4277, + [6229] = 4231, + [6230] = 4263, + [6231] = 4264, + [6232] = 4265, + [6233] = 4267, + [6234] = 4270, + [6235] = 4271, + [6236] = 4276, + [6237] = 4227, + [6238] = 4182, + [6239] = 4176, + [6240] = 4178, + [6241] = 4179, + [6242] = 4242, + [6243] = 4181, + [6244] = 4182, + [6245] = 4183, + [6246] = 4184, + [6247] = 4194, + [6248] = 4195, + [6249] = 4211, + [6250] = 4152, + [6251] = 4183, + [6252] = 4212, + [6253] = 4184, + [6254] = 4194, + [6255] = 4195, + [6256] = 4211, + [6257] = 4236, + [6258] = 4152, + [6259] = 4212, + [6260] = 4242, + [6261] = 4239, + [6262] = 4233, + [6263] = 4234, + [6264] = 4237, + [6265] = 4238, + [6266] = 4239, + [6267] = 4240, + [6268] = 4241, + [6269] = 4245, + [6270] = 4246, + [6271] = 4268, + [6272] = 4206, + [6273] = 4249, + [6274] = 4213, + [6275] = 4214, + [6276] = 4220, + [6277] = 4222, + [6278] = 4226, + [6279] = 4208, + [6280] = 4218, + [6281] = 4219, + [6282] = 4243, + [6283] = 4248, + [6284] = 4256, + [6285] = 4269, + [6286] = 4272, + [6287] = 4177, + [6288] = 4188, + [6289] = 4189, + [6290] = 4193, + [6291] = 4196, + [6292] = 4203, + [6293] = 4223, + [6294] = 4277, + [6295] = 4231, + [6296] = 4263, + [6297] = 4264, + [6298] = 4265, + [6299] = 4267, + [6300] = 4270, + [6301] = 4271, + [6302] = 4276, + [6303] = 4227, + [6304] = 4176, + [6305] = 4178, + [6306] = 4179, + [6307] = 4180, + [6308] = 4181, + [6309] = 4182, + [6310] = 4183, + [6311] = 4184, + [6312] = 4194, + [6313] = 4195, + [6314] = 4211, + [6315] = 4233, + [6316] = 4234, + [6317] = 4237, + [6318] = 4238, + [6319] = 4212, + [6320] = 4239, + [6321] = 4240, + [6322] = 4241, + [6323] = 4245, + [6324] = 4246, + [6325] = 4268, + [6326] = 4206, + [6327] = 4249, + [6328] = 4213, + [6329] = 4214, + [6330] = 4220, + [6331] = 4222, + [6332] = 4226, + [6333] = 4208, + [6334] = 4218, + [6335] = 4219, + [6336] = 4243, + [6337] = 4248, + [6338] = 4256, + [6339] = 4269, + [6340] = 4272, + [6341] = 4177, + [6342] = 4188, + [6343] = 4189, + [6344] = 4193, + [6345] = 4196, + [6346] = 4203, + [6347] = 4223, + [6348] = 4277, + [6349] = 4231, + [6350] = 4263, + [6351] = 4264, + [6352] = 4265, + [6353] = 4267, + [6354] = 4270, + [6355] = 4271, + [6356] = 4276, + [6357] = 4227, + [6358] = 4176, + [6359] = 4178, + [6360] = 4179, + [6361] = 4180, + [6362] = 4181, + [6363] = 4182, + [6364] = 4183, + [6365] = 4184, + [6366] = 4194, + [6367] = 4195, + [6368] = 4211, + [6369] = 4233, + [6370] = 4229, + [6371] = 4234, + [6372] = 4233, + [6373] = 4237, + [6374] = 4238, + [6375] = 4212, + [6376] = 4239, + [6377] = 4240, + [6378] = 4241, + [6379] = 4245, + [6380] = 4246, + [6381] = 4268, + [6382] = 4206, + [6383] = 4249, + [6384] = 4213, + [6385] = 4214, + [6386] = 4220, + [6387] = 4222, + [6388] = 4226, + [6389] = 4208, + [6390] = 4218, + [6391] = 4219, + [6392] = 4243, + [6393] = 4248, + [6394] = 4256, + [6395] = 4269, + [6396] = 4272, + [6397] = 4177, + [6398] = 4188, + [6399] = 4189, + [6400] = 4193, + [6401] = 4196, + [6402] = 4203, + [6403] = 4223, + [6404] = 4277, + [6405] = 4231, + [6406] = 4263, + [6407] = 4264, + [6408] = 4265, + [6409] = 4267, + [6410] = 4270, + [6411] = 4271, + [6412] = 4276, + [6413] = 4227, + [6414] = 4176, + [6415] = 4178, + [6416] = 4179, + [6417] = 4180, + [6418] = 4181, + [6419] = 4182, + [6420] = 4183, + [6421] = 4184, + [6422] = 4194, + [6423] = 4195, + [6424] = 4211, + [6425] = 4236, + [6426] = 4234, + [6427] = 4237, + [6428] = 4238, + [6429] = 4239, + [6430] = 4240, + [6431] = 4212, + [6432] = 4241, + [6433] = 4245, + [6434] = 4246, + [6435] = 4268, + [6436] = 4206, + [6437] = 4249, + [6438] = 4242, + [6439] = 4213, + [6440] = 4214, + [6441] = 4220, + [6442] = 4222, + [6443] = 4226, + [6444] = 4208, + [6445] = 4218, + [6446] = 4219, + [6447] = 4243, + [6448] = 4248, + [6449] = 4256, + [6450] = 4269, + [6451] = 4272, + [6452] = 4177, + [6453] = 4188, + [6454] = 4189, + [6455] = 4193, + [6456] = 4196, + [6457] = 4203, + [6458] = 4223, + [6459] = 4277, + [6460] = 4231, + [6461] = 4263, + [6462] = 4264, + [6463] = 4265, + [6464] = 4267, + [6465] = 4270, + [6466] = 4271, + [6467] = 4276, + [6468] = 4227, + [6469] = 4176, + [6470] = 4178, + [6471] = 4179, + [6472] = 4180, + [6473] = 4181, + [6474] = 4182, + [6475] = 4183, + [6476] = 4184, + [6477] = 4194, + [6478] = 4195, + [6479] = 4211, + [6480] = 4240, + [6481] = 4229, + [6482] = 4241, + [6483] = 4245, + [6484] = 4246, + [6485] = 4229, + [6486] = 4212, + [6487] = 4268, + [6488] = 4206, + [6489] = 5883, + [6490] = 4249, + [6491] = 4213, + [6492] = 4214, + [6493] = 4220, + [6494] = 4222, + [6495] = 5883, + [6496] = 4226, + [6497] = 4208, + [6498] = 4218, + [6499] = 5883, + [6500] = 4219, + [6501] = 4243, + [6502] = 4248, + [6503] = 5883, + [6504] = 4256, + [6505] = 4269, + [6506] = 4272, + [6507] = 4177, + [6508] = 4188, + [6509] = 4189, + [6510] = 4193, + [6511] = 4196, + [6512] = 4236, + [6513] = 4152, + [6514] = 4203, + [6515] = 4229, + [6516] = 4223, + [6517] = 4277, + [6518] = 4231, + [6519] = 4263, + [6520] = 4264, + [6521] = 4265, + [6522] = 4267, + [6523] = 4270, + [6524] = 4271, + [6525] = 4242, + [6526] = 4276, + [6527] = 4227, + [6528] = 4176, + [6529] = 4178, + [6530] = 4179, + [6531] = 4236, + [6532] = 4180, + [6533] = 4229, + [6534] = 4181, + [6535] = 4182, + [6536] = 4242, + [6537] = 4183, + [6538] = 4184, + [6539] = 4194, + [6540] = 4195, + [6541] = 4211, + [6542] = 4236, + [6543] = 5886, + [6544] = 5854, + [6545] = 4152, + [6546] = 5854, + [6547] = 5854, + [6548] = 5854, + [6549] = 4180, + [6550] = 4184, + [6551] = 4196, + [6552] = 4203, + [6553] = 4223, + [6554] = 4277, + [6555] = 4231, + [6556] = 4263, + [6557] = 4264, + [6558] = 4265, + [6559] = 4267, + [6560] = 4270, + [6561] = 4271, + [6562] = 4276, + [6563] = 4227, + [6564] = 4176, + [6565] = 4178, + [6566] = 4179, + [6567] = 4180, + [6568] = 4181, + [6569] = 4182, + [6570] = 4183, + [6571] = 4194, + [6572] = 4195, + [6573] = 4211, + [6574] = 4188, + [6575] = 4265, + [6576] = 4267, + [6577] = 4229, + [6578] = 4266, + [6579] = 4266, + [6580] = 4270, + [6581] = 4271, + [6582] = 4276, + [6583] = 4212, + [6584] = 4227, + [6585] = 4176, + [6586] = 4178, + [6587] = 4266, + [6588] = 4179, + [6589] = 4180, + [6590] = 4181, + [6591] = 4182, + [6592] = 4183, + [6593] = 4184, + [6594] = 4194, + [6595] = 4195, + [6596] = 4211, + [6597] = 4236, + [6598] = 4212, + [6599] = 4189, + [6600] = 4242, + [6601] = 4152, + [6602] = 4236, + [6603] = 4152, + [6604] = 4242, + [6605] = 4152, + [6606] = 6606, + [6607] = 4233, + [6608] = 4234, + [6609] = 4237, + [6610] = 4238, + [6611] = 4239, + [6612] = 4240, + [6613] = 4241, + [6614] = 4245, + [6615] = 4246, + [6616] = 4268, + [6617] = 4206, + [6618] = 4249, + [6619] = 4213, + [6620] = 4214, + [6621] = 4220, + [6622] = 4222, + [6623] = 4226, + [6624] = 4208, + [6625] = 4218, + [6626] = 4219, + [6627] = 4243, + [6628] = 4248, + [6629] = 4256, + [6630] = 4269, + [6631] = 4272, + [6632] = 4177, + [6633] = 4188, + [6634] = 4189, + [6635] = 4193, + [6636] = 4196, + [6637] = 4203, + [6638] = 4223, + [6639] = 4277, + [6640] = 4231, + [6641] = 4263, + [6642] = 4264, + [6643] = 4265, + [6644] = 4267, + [6645] = 4270, + [6646] = 4271, + [6647] = 4276, + [6648] = 4227, + [6649] = 4176, + [6650] = 4178, + [6651] = 4179, + [6652] = 4180, + [6653] = 4181, + [6654] = 4182, + [6655] = 4183, + [6656] = 4184, + [6657] = 4194, + [6658] = 4195, + [6659] = 4211, + [6660] = 4212, + [6661] = 4233, + [6662] = 4229, + [6663] = 4234, + [6664] = 4237, + [6665] = 4238, + [6666] = 4239, + [6667] = 4240, + [6668] = 4241, + [6669] = 4245, + [6670] = 4246, + [6671] = 4268, + [6672] = 4206, + [6673] = 4249, + [6674] = 4213, + [6675] = 4214, + [6676] = 4220, + [6677] = 4222, + [6678] = 4226, + [6679] = 4208, + [6680] = 4218, + [6681] = 4219, + [6682] = 4243, + [6683] = 4248, + [6684] = 4256, + [6685] = 4269, + [6686] = 4272, + [6687] = 4177, + [6688] = 4188, + [6689] = 4189, + [6690] = 4193, + [6691] = 4196, + [6692] = 4203, + [6693] = 4223, + [6694] = 4277, + [6695] = 4231, + [6696] = 4263, + [6697] = 4264, + [6698] = 4265, + [6699] = 4267, + [6700] = 4270, + [6701] = 4271, + [6702] = 4276, + [6703] = 4227, + [6704] = 4176, + [6705] = 4178, + [6706] = 4179, + [6707] = 4180, + [6708] = 4181, + [6709] = 4182, + [6710] = 4183, + [6711] = 4184, + [6712] = 4194, + [6713] = 4195, + [6714] = 4211, + [6715] = 4236, + [6716] = 4233, + [6717] = 4234, + [6718] = 4237, + [6719] = 4238, + [6720] = 4212, + [6721] = 4239, + [6722] = 4240, + [6723] = 4241, + [6724] = 4245, + [6725] = 4246, + [6726] = 4242, + [6727] = 4268, + [6728] = 4206, + [6729] = 4249, + [6730] = 4213, + [6731] = 4214, + [6732] = 4220, + [6733] = 4222, + [6734] = 4226, + [6735] = 4208, + [6736] = 4218, + [6737] = 4219, + [6738] = 4243, + [6739] = 4248, + [6740] = 4256, + [6741] = 4269, + [6742] = 4272, + [6743] = 4177, + [6744] = 4188, + [6745] = 4189, + [6746] = 4193, + [6747] = 4196, + [6748] = 4203, + [6749] = 4223, + [6750] = 4277, + [6751] = 4231, + [6752] = 4263, + [6753] = 4264, + [6754] = 4265, + [6755] = 4267, + [6756] = 4270, + [6757] = 4271, + [6758] = 4276, + [6759] = 4227, + [6760] = 4176, + [6761] = 4178, + [6762] = 4179, + [6763] = 4180, + [6764] = 4181, + [6765] = 4182, + [6766] = 4183, + [6767] = 4184, + [6768] = 4194, + [6769] = 4195, + [6770] = 4211, + [6771] = 4233, + [6772] = 4234, + [6773] = 4237, + [6774] = 4238, + [6775] = 4212, + [6776] = 4239, + [6777] = 4240, + [6778] = 4241, + [6779] = 4245, + [6780] = 4246, + [6781] = 4268, + [6782] = 4206, + [6783] = 4249, + [6784] = 4213, + [6785] = 4214, + [6786] = 4220, + [6787] = 4222, + [6788] = 4226, + [6789] = 4208, + [6790] = 4218, + [6791] = 4219, + [6792] = 4243, + [6793] = 4248, + [6794] = 4256, + [6795] = 4269, + [6796] = 4272, + [6797] = 4177, + [6798] = 4188, + [6799] = 4189, + [6800] = 4193, + [6801] = 4196, + [6802] = 4203, + [6803] = 4223, + [6804] = 4277, + [6805] = 4231, + [6806] = 4263, + [6807] = 4264, + [6808] = 4265, + [6809] = 4267, + [6810] = 4270, + [6811] = 4271, + [6812] = 4276, + [6813] = 4227, + [6814] = 4176, + [6815] = 4178, + [6816] = 4179, + [6817] = 4180, + [6818] = 4181, + [6819] = 4182, + [6820] = 4183, + [6821] = 4184, + [6822] = 4194, + [6823] = 4195, + [6824] = 4211, + [6825] = 4233, + [6826] = 4234, + [6827] = 4237, + [6828] = 4238, + [6829] = 4212, + [6830] = 4239, + [6831] = 4240, + [6832] = 4241, + [6833] = 4245, + [6834] = 4246, + [6835] = 4268, + [6836] = 4206, + [6837] = 4249, + [6838] = 4213, + [6839] = 4214, + [6840] = 4220, + [6841] = 4222, + [6842] = 4226, + [6843] = 4208, + [6844] = 4218, + [6845] = 4219, + [6846] = 4243, + [6847] = 4248, + [6848] = 4256, + [6849] = 4269, + [6850] = 4272, + [6851] = 4177, + [6852] = 4188, + [6853] = 4189, + [6854] = 4193, + [6855] = 4196, + [6856] = 4203, + [6857] = 4223, + [6858] = 4277, + [6859] = 4231, + [6860] = 4263, + [6861] = 4264, + [6862] = 4265, + [6863] = 4267, + [6864] = 4270, + [6865] = 4271, + [6866] = 4276, + [6867] = 4227, + [6868] = 4176, + [6869] = 4178, + [6870] = 4179, + [6871] = 4180, + [6872] = 4181, + [6873] = 4182, + [6874] = 4183, + [6875] = 4184, + [6876] = 4194, + [6877] = 4195, + [6878] = 4211, + [6879] = 4212, + [6880] = 4152, + [6881] = 4229, + [6882] = 4236, + [6883] = 4152, + [6884] = 4229, + [6885] = 4242, + [6886] = 4236, + [6887] = 4229, + [6888] = 4242, + [6889] = 4236, + [6890] = 4266, + [6891] = 4229, + [6892] = 4242, + [6893] = 4236, + [6894] = 4242, + [6895] = 4233, + [6896] = 4234, + [6897] = 4237, + [6898] = 4238, + [6899] = 4239, + [6900] = 4240, + [6901] = 4241, + [6902] = 4245, + [6903] = 4246, + [6904] = 4233, + [6905] = 4268, + [6906] = 4206, + [6907] = 4249, + [6908] = 4213, + [6909] = 4214, + [6910] = 4220, + [6911] = 4222, + [6912] = 4229, + [6913] = 4226, + [6914] = 4208, + [6915] = 4218, + [6916] = 4219, + [6917] = 4243, + [6918] = 4248, + [6919] = 4256, + [6920] = 4269, + [6921] = 4272, + [6922] = 4177, + [6923] = 4188, + [6924] = 4189, + [6925] = 4193, + [6926] = 4196, + [6927] = 4203, + [6928] = 4223, + [6929] = 4277, + [6930] = 4231, + [6931] = 4263, + [6932] = 4264, + [6933] = 4265, + [6934] = 4267, + [6935] = 4270, + [6936] = 4271, + [6937] = 4234, + [6938] = 4276, + [6939] = 4227, + [6940] = 4176, + [6941] = 4178, + [6942] = 4179, + [6943] = 4180, + [6944] = 4181, + [6945] = 4182, + [6946] = 4183, + [6947] = 4184, + [6948] = 4194, + [6949] = 4195, + [6950] = 4211, + [6951] = 4233, + [6952] = 4234, + [6953] = 4237, + [6954] = 4238, + [6955] = 4212, + [6956] = 4239, + [6957] = 4240, + [6958] = 4241, + [6959] = 4245, + [6960] = 4237, + [6961] = 4246, + [6962] = 4268, + [6963] = 4206, + [6964] = 4249, + [6965] = 4213, + [6966] = 4214, + [6967] = 4220, + [6968] = 4222, + [6969] = 4226, + [6970] = 4208, + [6971] = 4218, + [6972] = 4219, + [6973] = 4243, + [6974] = 4248, + [6975] = 4256, + [6976] = 4269, + [6977] = 4272, + [6978] = 4177, + [6979] = 4188, + [6980] = 4189, + [6981] = 4193, + [6982] = 4196, + [6983] = 4203, + [6984] = 4223, + [6985] = 4277, + [6986] = 4238, + [6987] = 4231, + [6988] = 4263, + [6989] = 4264, + [6990] = 4265, + [6991] = 4267, + [6992] = 4270, + [6993] = 4271, + [6994] = 4276, + [6995] = 4227, + [6996] = 4176, + [6997] = 4178, + [6998] = 4179, + [6999] = 4180, + [7000] = 4181, + [7001] = 4182, + [7002] = 4183, + [7003] = 4184, + [7004] = 4194, + [7005] = 4195, + [7006] = 4211, + [7007] = 4239, + [7008] = 4240, + [7009] = 4241, + [7010] = 4212, + [7011] = 4245, + [7012] = 4246, + [7013] = 4268, + [7014] = 4206, + [7015] = 4249, + [7016] = 4213, + [7017] = 4214, + [7018] = 4220, + [7019] = 4222, + [7020] = 4226, + [7021] = 4208, + [7022] = 4218, + [7023] = 4219, + [7024] = 4243, + [7025] = 4248, + [7026] = 4256, + [7027] = 4269, + [7028] = 4272, + [7029] = 4177, + [7030] = 4188, + [7031] = 4189, + [7032] = 4193, + [7033] = 4196, + [7034] = 4203, + [7035] = 4223, + [7036] = 4277, + [7037] = 4231, + [7038] = 4263, + [7039] = 4264, + [7040] = 4265, + [7041] = 4267, + [7042] = 4270, + [7043] = 4271, + [7044] = 4276, + [7045] = 4227, + [7046] = 4193, + [7047] = 4178, + [7048] = 4179, + [7049] = 4180, + [7050] = 4181, + [7051] = 4182, + [7052] = 4183, + [7053] = 4184, + [7054] = 4194, + [7055] = 4266, + [7056] = 4195, + [7057] = 4211, + [7058] = 4236, + [7059] = 4152, + [7060] = 4266, + [7061] = 4266, + [7062] = 4266, + [7063] = 4229, + [7064] = 4229, + [7065] = 4236, + [7066] = 4266, + [7067] = 4233, + [7068] = 4229, + [7069] = 4234, + [7070] = 4237, + [7071] = 4238, + [7072] = 4239, + [7073] = 4240, + [7074] = 4241, + [7075] = 4245, + [7076] = 4246, + [7077] = 4242, + [7078] = 4268, + [7079] = 4206, + [7080] = 4249, + [7081] = 4213, + [7082] = 4214, + [7083] = 4220, + [7084] = 4222, + [7085] = 4226, + [7086] = 4208, + [7087] = 4218, + [7088] = 4219, + [7089] = 4243, + [7090] = 4248, + [7091] = 4256, + [7092] = 4269, + [7093] = 4272, + [7094] = 4177, + [7095] = 4188, + [7096] = 4189, + [7097] = 4193, + [7098] = 4196, + [7099] = 4203, + [7100] = 4223, + [7101] = 4277, + [7102] = 4231, + [7103] = 4263, + [7104] = 4264, + [7105] = 4265, + [7106] = 4267, + [7107] = 4270, + [7108] = 4271, + [7109] = 4276, + [7110] = 4227, + [7111] = 4176, + [7112] = 4178, + [7113] = 4179, + [7114] = 4180, + [7115] = 4181, + [7116] = 4182, + [7117] = 4183, + [7118] = 4184, + [7119] = 4194, + [7120] = 4195, + [7121] = 4211, + [7122] = 4236, + [7123] = 4212, + [7124] = 4212, + [7125] = 4242, + [7126] = 4242, + [7127] = 4233, + [7128] = 4234, + [7129] = 4237, + [7130] = 4238, + [7131] = 4239, + [7132] = 4240, + [7133] = 4241, + [7134] = 4245, + [7135] = 4246, + [7136] = 4268, + [7137] = 4206, + [7138] = 4249, + [7139] = 4213, + [7140] = 4214, + [7141] = 4220, + [7142] = 4222, + [7143] = 4226, + [7144] = 4208, + [7145] = 4218, + [7146] = 4219, + [7147] = 4243, + [7148] = 4248, + [7149] = 4256, + [7150] = 4269, + [7151] = 4272, + [7152] = 4177, + [7153] = 4188, + [7154] = 4189, + [7155] = 4193, + [7156] = 4196, + [7157] = 4203, + [7158] = 4223, + [7159] = 4277, + [7160] = 4231, + [7161] = 4263, + [7162] = 4264, + [7163] = 4265, + [7164] = 4267, + [7165] = 4270, + [7166] = 4271, + [7167] = 4276, + [7168] = 4227, + [7169] = 4176, + [7170] = 4178, + [7171] = 4179, + [7172] = 4180, + [7173] = 4181, + [7174] = 4182, + [7175] = 4183, + [7176] = 4184, + [7177] = 4194, + [7178] = 4195, + [7179] = 4211, + [7180] = 4152, + [7181] = 4212, + [7182] = 4229, + [7183] = 4236, + [7184] = 4242, + [7185] = 4266, + [7186] = 4152, + [7187] = 4266, + [7188] = 4229, + [7189] = 7189, + [7190] = 7190, + [7191] = 7191, + [7192] = 4236, + [7193] = 4152, + [7194] = 4242, + [7195] = 4233, + [7196] = 4229, + [7197] = 4234, + [7198] = 4237, + [7199] = 4238, + [7200] = 4239, + [7201] = 4240, + [7202] = 4241, + [7203] = 4245, + [7204] = 4246, + [7205] = 4236, + [7206] = 4268, + [7207] = 4206, + [7208] = 4249, + [7209] = 4213, + [7210] = 4214, + [7211] = 4220, + [7212] = 4222, + [7213] = 4226, + [7214] = 4208, + [7215] = 4218, + [7216] = 4242, + [7217] = 4219, + [7218] = 4243, + [7219] = 4248, + [7220] = 4256, + [7221] = 4269, + [7222] = 4272, + [7223] = 4177, + [7224] = 4188, + [7225] = 4189, + [7226] = 4193, + [7227] = 4196, + [7228] = 4233, + [7229] = 4203, + [7230] = 4234, + [7231] = 4237, + [7232] = 4238, + [7233] = 4239, + [7234] = 4240, + [7235] = 4241, + [7236] = 4223, + [7237] = 4245, + [7238] = 4246, + [7239] = 4268, + [7240] = 4206, + [7241] = 4249, + [7242] = 4277, + [7243] = 4213, + [7244] = 4214, + [7245] = 4220, + [7246] = 4222, + [7247] = 4226, + [7248] = 4208, + [7249] = 4218, + [7250] = 4219, + [7251] = 4243, + [7252] = 4248, + [7253] = 4256, + [7254] = 4269, + [7255] = 4272, + [7256] = 4177, + [7257] = 4188, + [7258] = 4189, + [7259] = 4193, + [7260] = 4196, + [7261] = 4203, + [7262] = 4223, + [7263] = 4277, + [7264] = 4231, + [7265] = 4263, + [7266] = 4264, + [7267] = 4265, + [7268] = 4267, + [7269] = 4270, + [7270] = 4271, + [7271] = 4276, + [7272] = 4227, + [7273] = 4176, + [7274] = 4178, + [7275] = 4179, + [7276] = 4180, + [7277] = 4181, + [7278] = 4182, + [7279] = 4183, + [7280] = 4184, + [7281] = 4194, + [7282] = 4195, + [7283] = 4211, + [7284] = 4233, + [7285] = 4212, + [7286] = 4234, + [7287] = 4231, + [7288] = 4237, + [7289] = 4238, + [7290] = 4263, + [7291] = 4239, + [7292] = 4240, + [7293] = 4241, + [7294] = 4245, + [7295] = 4246, + [7296] = 4268, + [7297] = 4206, + [7298] = 4249, + [7299] = 4213, + [7300] = 4214, + [7301] = 4220, + [7302] = 4222, + [7303] = 4226, + [7304] = 4264, + [7305] = 4208, + [7306] = 4218, + [7307] = 4219, + [7308] = 4243, + [7309] = 4248, + [7310] = 4266, + [7311] = 4256, + [7312] = 7312, + [7313] = 4269, + [7314] = 4229, + [7315] = 4272, + [7316] = 4177, + [7317] = 4188, + [7318] = 4189, + [7319] = 4193, + [7320] = 4196, + [7321] = 4203, + [7322] = 4223, + [7323] = 4277, + [7324] = 4231, + [7325] = 4263, + [7326] = 4264, + [7327] = 4265, + [7328] = 4267, + [7329] = 4270, + [7330] = 4271, + [7331] = 4276, + [7332] = 4227, + [7333] = 4176, + [7334] = 4178, + [7335] = 4233, + [7336] = 4229, + [7337] = 4234, + [7338] = 4237, + [7339] = 4238, + [7340] = 4179, + [7341] = 4239, + [7342] = 4240, + [7343] = 4241, + [7344] = 4245, + [7345] = 4246, + [7346] = 4268, + [7347] = 4206, + [7348] = 4249, + [7349] = 4213, + [7350] = 4214, + [7351] = 4220, + [7352] = 4222, + [7353] = 4226, + [7354] = 4208, + [7355] = 4218, + [7356] = 4219, + [7357] = 4243, + [7358] = 4248, + [7359] = 4256, + [7360] = 4269, + [7361] = 4272, + [7362] = 4177, + [7363] = 4188, + [7364] = 4189, + [7365] = 4193, + [7366] = 4196, + [7367] = 4203, + [7368] = 4223, + [7369] = 4277, + [7370] = 4231, + [7371] = 4263, + [7372] = 4264, + [7373] = 4265, + [7374] = 4267, + [7375] = 4270, + [7376] = 4271, + [7377] = 4276, + [7378] = 4227, + [7379] = 4176, + [7380] = 4178, + [7381] = 4179, + [7382] = 4180, + [7383] = 4181, + [7384] = 4182, + [7385] = 4183, + [7386] = 4184, + [7387] = 4194, + [7388] = 4195, + [7389] = 4211, + [7390] = 4236, + [7391] = 4266, + [7392] = 4180, + [7393] = 4212, + [7394] = 4181, + [7395] = 4182, + [7396] = 4183, + [7397] = 4184, + [7398] = 4242, + [7399] = 4194, + [7400] = 4195, + [7401] = 4211, + [7402] = 4266, + [7403] = 4233, + [7404] = 4234, + [7405] = 4237, + [7406] = 4238, + [7407] = 4212, + [7408] = 4239, + [7409] = 4240, + [7410] = 4241, + [7411] = 4245, + [7412] = 4236, + [7413] = 4266, + [7414] = 4246, + [7415] = 4268, + [7416] = 4206, + [7417] = 4249, + [7418] = 4213, + [7419] = 4214, + [7420] = 4220, + [7421] = 4222, + [7422] = 4242, + [7423] = 4226, + [7424] = 7424, + [7425] = 4208, + [7426] = 4218, + [7427] = 4219, + [7428] = 4243, + [7429] = 4248, + [7430] = 4256, + [7431] = 4269, + [7432] = 4272, + [7433] = 4177, + [7434] = 4176, + [7435] = 7435, + [7436] = 7435, + [7437] = 4236, + [7438] = 4229, + [7439] = 4242, + [7440] = 4236, + [7441] = 4242, + [7442] = 4233, + [7443] = 4234, + [7444] = 4237, + [7445] = 4238, + [7446] = 4239, + [7447] = 4240, + [7448] = 4241, + [7449] = 4245, + [7450] = 4246, + [7451] = 4229, + [7452] = 4268, + [7453] = 4206, + [7454] = 4249, + [7455] = 4213, + [7456] = 4214, + [7457] = 4220, + [7458] = 4222, + [7459] = 4226, + [7460] = 4208, + [7461] = 4218, + [7462] = 4219, + [7463] = 4243, + [7464] = 4248, + [7465] = 4256, + [7466] = 4269, + [7467] = 4272, + [7468] = 4177, + [7469] = 4188, + [7470] = 4189, + [7471] = 4193, + [7472] = 4196, + [7473] = 4203, + [7474] = 4223, + [7475] = 4277, + [7476] = 4231, + [7477] = 4263, + [7478] = 4264, + [7479] = 4265, + [7480] = 4267, + [7481] = 4270, + [7482] = 4271, + [7483] = 4276, + [7484] = 4227, + [7485] = 4176, + [7486] = 4178, + [7487] = 4179, + [7488] = 4180, + [7489] = 4181, + [7490] = 4182, + [7491] = 4183, + [7492] = 4184, + [7493] = 4194, + [7494] = 4195, + [7495] = 4211, + [7496] = 4212, + [7497] = 4236, + [7498] = 4266, + [7499] = 4242, + [7500] = 4229, + [7501] = 4236, + [7502] = 4242, + [7503] = 7503, + [7504] = 7504, + [7505] = 4266, + [7506] = 7506, + [7507] = 7507, + [7508] = 7508, + [7509] = 7509, + [7510] = 4233, + [7511] = 4234, + [7512] = 4237, + [7513] = 4238, + [7514] = 4239, + [7515] = 4240, + [7516] = 4241, + [7517] = 4245, + [7518] = 4246, + [7519] = 4268, + [7520] = 4206, + [7521] = 4249, + [7522] = 4213, + [7523] = 4214, + [7524] = 4220, + [7525] = 7525, + [7526] = 4222, + [7527] = 4152, + [7528] = 4266, + [7529] = 4229, + [7530] = 4266, + [7531] = 4226, + [7532] = 4208, + [7533] = 4218, + [7534] = 4219, + [7535] = 4243, + [7536] = 4248, + [7537] = 4256, + [7538] = 7538, + [7539] = 4269, + [7540] = 4272, + [7541] = 4177, + [7542] = 4188, + [7543] = 4189, + [7544] = 4193, + [7545] = 4196, + [7546] = 4203, + [7547] = 4223, + [7548] = 4277, + [7549] = 4231, + [7550] = 4263, + [7551] = 4264, + [7552] = 4265, + [7553] = 4267, + [7554] = 4270, + [7555] = 4271, + [7556] = 4276, + [7557] = 4227, + [7558] = 4176, + [7559] = 4178, + [7560] = 7560, + [7561] = 4179, + [7562] = 4180, + [7563] = 4181, + [7564] = 4182, + [7565] = 4183, + [7566] = 4236, + [7567] = 4184, + [7568] = 4233, + [7569] = 4234, + [7570] = 4237, + [7571] = 4238, + [7572] = 7435, + [7573] = 4239, + [7574] = 4240, + [7575] = 4241, + [7576] = 4245, + [7577] = 4246, + [7578] = 4242, + [7579] = 4268, + [7580] = 4206, + [7581] = 4249, + [7582] = 4213, + [7583] = 4214, + [7584] = 4220, + [7585] = 4222, + [7586] = 4226, + [7587] = 4208, + [7588] = 4218, + [7589] = 4219, + [7590] = 4243, + [7591] = 4248, + [7592] = 4256, + [7593] = 4269, + [7594] = 4272, + [7595] = 4177, + [7596] = 4188, + [7597] = 4189, + [7598] = 4193, + [7599] = 4196, + [7600] = 4203, + [7601] = 4223, + [7602] = 4277, + [7603] = 4231, + [7604] = 4263, + [7605] = 4264, + [7606] = 4265, + [7607] = 4267, + [7608] = 4270, + [7609] = 4271, + [7610] = 4276, + [7611] = 4227, + [7612] = 4176, + [7613] = 4178, + [7614] = 4179, + [7615] = 4180, + [7616] = 4181, + [7617] = 4182, + [7618] = 4183, + [7619] = 4184, + [7620] = 4194, + [7621] = 4195, + [7622] = 4211, + [7623] = 4212, + [7624] = 4213, + [7625] = 4152, + [7626] = 4214, + [7627] = 4220, + [7628] = 7628, + [7629] = 4194, + [7630] = 7630, + [7631] = 7503, + [7632] = 4249, + [7633] = 7504, + [7634] = 4195, + [7635] = 4222, + [7636] = 4206, + [7637] = 7637, + [7638] = 7506, + [7639] = 7509, + [7640] = 4268, + [7641] = 7525, + [7642] = 4226, + [7643] = 4208, + [7644] = 4218, + [7645] = 4219, + [7646] = 4243, + [7647] = 4248, + [7648] = 4256, + [7649] = 7649, + [7650] = 7650, + [7651] = 4269, + [7652] = 4211, + [7653] = 4266, + [7654] = 7507, + [7655] = 4212, + [7656] = 4233, + [7657] = 4234, + [7658] = 4237, + [7659] = 4238, + [7660] = 4233, + [7661] = 4234, + [7662] = 4237, + [7663] = 4238, + [7664] = 4239, + [7665] = 4239, + [7666] = 4240, + [7667] = 4241, + [7668] = 4245, + [7669] = 4246, + [7670] = 4240, + [7671] = 4268, + [7672] = 4206, + [7673] = 4249, + [7674] = 4213, + [7675] = 4214, + [7676] = 4220, + [7677] = 4222, + [7678] = 4226, + [7679] = 4208, + [7680] = 4218, + [7681] = 4219, + [7682] = 4243, + [7683] = 4248, + [7684] = 4256, + [7685] = 4269, + [7686] = 4272, + [7687] = 4177, + [7688] = 4188, + [7689] = 4189, + [7690] = 4193, + [7691] = 4196, + [7692] = 4203, + [7693] = 4223, + [7694] = 4277, + [7695] = 4231, + [7696] = 4263, + [7697] = 4264, + [7698] = 4265, + [7699] = 4267, + [7700] = 4270, + [7701] = 4271, + [7702] = 4276, + [7703] = 4227, + [7704] = 4176, + [7705] = 4178, + [7706] = 4179, + [7707] = 4180, + [7708] = 4181, + [7709] = 4182, + [7710] = 4183, + [7711] = 4184, + [7712] = 4194, + [7713] = 4195, + [7714] = 4211, + [7715] = 4233, + [7716] = 4229, + [7717] = 4234, + [7718] = 4237, + [7719] = 4238, + [7720] = 4212, + [7721] = 4239, + [7722] = 4240, + [7723] = 4241, + [7724] = 4245, + [7725] = 4246, + [7726] = 4241, + [7727] = 4268, + [7728] = 4206, + [7729] = 4249, + [7730] = 4213, + [7731] = 4214, + [7732] = 4220, + [7733] = 4222, + [7734] = 4226, + [7735] = 4208, + [7736] = 4218, + [7737] = 4219, + [7738] = 4243, + [7739] = 4248, + [7740] = 4256, + [7741] = 4269, + [7742] = 4272, + [7743] = 4177, + [7744] = 4188, + [7745] = 4189, + [7746] = 4193, + [7747] = 4196, + [7748] = 4203, + [7749] = 4223, + [7750] = 4277, + [7751] = 4231, + [7752] = 4263, + [7753] = 4264, + [7754] = 4265, + [7755] = 4267, + [7756] = 4270, + [7757] = 4271, + [7758] = 4276, + [7759] = 4227, + [7760] = 4176, + [7761] = 4178, + [7762] = 4179, + [7763] = 4180, + [7764] = 4181, + [7765] = 4182, + [7766] = 4183, + [7767] = 4184, + [7768] = 4194, + [7769] = 4195, + [7770] = 4211, + [7771] = 4236, + [7772] = 4245, + [7773] = 4246, + [7774] = 4268, + [7775] = 4206, + [7776] = 4212, + [7777] = 4249, + [7778] = 4213, + [7779] = 4214, + [7780] = 4220, + [7781] = 4222, + [7782] = 4242, + [7783] = 4226, + [7784] = 4208, + [7785] = 4218, + [7786] = 4219, + [7787] = 4243, + [7788] = 4248, + [7789] = 4256, + [7790] = 4269, + [7791] = 4272, + [7792] = 4177, + [7793] = 4188, + [7794] = 4189, + [7795] = 4193, + [7796] = 4196, + [7797] = 4203, + [7798] = 4223, + [7799] = 4277, + [7800] = 4231, + [7801] = 4263, + [7802] = 4264, + [7803] = 4265, + [7804] = 4267, + [7805] = 4270, + [7806] = 4271, + [7807] = 4276, + [7808] = 4227, + [7809] = 4176, + [7810] = 4178, + [7811] = 4179, + [7812] = 4180, + [7813] = 4181, + [7814] = 4182, + [7815] = 4183, + [7816] = 4184, + [7817] = 4194, + [7818] = 4195, + [7819] = 4211, + [7820] = 4233, + [7821] = 4234, + [7822] = 4237, + [7823] = 4238, + [7824] = 4212, + [7825] = 4239, + [7826] = 4240, + [7827] = 4266, + [7828] = 4241, + [7829] = 4245, + [7830] = 4233, + [7831] = 4246, + [7832] = 4229, + [7833] = 4268, + [7834] = 4236, + [7835] = 4206, + [7836] = 4229, + [7837] = 4242, + [7838] = 4236, + [7839] = 7560, + [7840] = 4213, + [7841] = 4214, + [7842] = 4242, + [7843] = 4220, + [7844] = 4222, + [7845] = 4226, + [7846] = 4208, + [7847] = 4218, + [7848] = 7637, + [7849] = 7506, + [7850] = 4219, + [7851] = 4243, + [7852] = 4248, + [7853] = 4256, + [7854] = 4269, + [7855] = 4272, + [7856] = 4177, + [7857] = 7637, + [7858] = 4188, + [7859] = 4189, + [7860] = 7506, + [7861] = 4193, + [7862] = 4196, + [7863] = 4203, + [7864] = 4223, + [7865] = 4277, + [7866] = 4231, + [7867] = 4229, + [7868] = 7637, + [7869] = 4263, + [7870] = 4264, + [7871] = 7506, + [7872] = 4265, + [7873] = 4267, + [7874] = 4270, + [7875] = 4271, + [7876] = 4276, + [7877] = 4234, + [7878] = 4227, + [7879] = 4176, + [7880] = 4178, + [7881] = 4179, + [7882] = 4180, + [7883] = 4266, + [7884] = 7637, + [7885] = 7506, + [7886] = 4181, + [7887] = 7628, + [7888] = 4182, + [7889] = 7637, + [7890] = 7506, + [7891] = 4183, + [7892] = 7637, + [7893] = 7506, + [7894] = 4184, + [7895] = 7637, + [7896] = 7506, + [7897] = 4194, + [7898] = 4195, + [7899] = 4211, + [7900] = 7508, + [7901] = 4212, + [7902] = 7560, + [7903] = 7435, + [7904] = 4272, + [7905] = 4177, + [7906] = 4188, + [7907] = 4189, + [7908] = 4193, + [7909] = 4196, + [7910] = 4203, + [7911] = 4223, + [7912] = 4277, + [7913] = 4231, + [7914] = 4263, + [7915] = 4264, + [7916] = 4265, + [7917] = 4267, + [7918] = 4270, + [7919] = 4271, + [7920] = 4276, + [7921] = 4227, + [7922] = 4176, + [7923] = 4178, + [7924] = 4179, + [7925] = 4180, + [7926] = 4181, + [7927] = 4182, + [7928] = 4183, + [7929] = 4184, + [7930] = 4194, + [7931] = 4195, + [7932] = 4211, + [7933] = 4236, + [7934] = 4212, + [7935] = 4242, + [7936] = 7936, + [7937] = 7503, + [7938] = 7504, + [7939] = 7509, + [7940] = 7525, + [7941] = 7649, + [7942] = 7650, + [7943] = 7943, + [7944] = 7507, + [7945] = 7508, + [7946] = 7560, + [7947] = 7650, + [7948] = 7503, + [7949] = 7504, + [7950] = 7509, + [7951] = 7525, + [7952] = 7649, + [7953] = 7650, + [7954] = 7507, + [7955] = 7508, + [7956] = 7560, + [7957] = 4237, + [7958] = 7435, + [7959] = 4238, + [7960] = 7637, + [7961] = 7630, + [7962] = 4239, + [7963] = 4240, + [7964] = 7649, + [7965] = 4241, + [7966] = 4266, + [7967] = 4245, + [7968] = 7503, + [7969] = 7504, + [7970] = 4233, + [7971] = 4234, + [7972] = 7509, + [7973] = 7525, + [7974] = 4237, + [7975] = 4238, + [7976] = 4239, + [7977] = 4240, + [7978] = 4241, + [7979] = 4245, + [7980] = 4246, + [7981] = 4266, + [7982] = 7649, + [7983] = 7650, + [7984] = 4268, + [7985] = 4206, + [7986] = 4249, + [7987] = 4213, + [7988] = 4214, + [7989] = 4220, + [7990] = 4222, + [7991] = 7507, + [7992] = 7508, + [7993] = 4226, + [7994] = 4208, + [7995] = 4218, + [7996] = 4219, + [7997] = 4243, + [7998] = 7560, + [7999] = 7435, + [8000] = 4248, + [8001] = 4256, + [8002] = 4269, + [8003] = 4272, + [8004] = 4177, + [8005] = 4188, + [8006] = 4189, + [8007] = 4193, + [8008] = 4196, + [8009] = 4203, + [8010] = 4223, + [8011] = 4277, + [8012] = 4231, + [8013] = 4263, + [8014] = 4264, + [8015] = 4265, + [8016] = 4267, + [8017] = 4270, + [8018] = 4271, + [8019] = 4276, + [8020] = 4227, + [8021] = 4176, + [8022] = 4178, + [8023] = 4179, + [8024] = 4180, + [8025] = 4181, + [8026] = 4182, + [8027] = 4183, + [8028] = 4184, + [8029] = 4194, + [8030] = 4195, + [8031] = 4211, + [8032] = 7628, + [8033] = 7628, + [8034] = 4229, + [8035] = 4212, + [8036] = 7637, + [8037] = 7506, + [8038] = 7637, + [8039] = 7506, + [8040] = 7628, + [8041] = 7628, + [8042] = 7637, + [8043] = 7506, + [8044] = 7637, + [8045] = 7506, + [8046] = 7628, + [8047] = 7628, + [8048] = 7637, + [8049] = 7506, + [8050] = 7637, + [8051] = 7506, + [8052] = 7628, + [8053] = 7628, + [8054] = 7504, + [8055] = 7637, + [8056] = 7506, + [8057] = 7637, + [8058] = 7506, + [8059] = 7628, + [8060] = 8060, + [8061] = 7628, + [8062] = 7637, + [8063] = 7506, + [8064] = 7637, + [8065] = 7506, + [8066] = 7628, + [8067] = 7628, + [8068] = 7637, + [8069] = 7506, + [8070] = 7637, + [8071] = 7506, + [8072] = 7628, + [8073] = 7628, + [8074] = 7637, + [8075] = 7506, + [8076] = 7637, + [8077] = 7506, + [8078] = 7628, + [8079] = 7628, + [8080] = 7637, + [8081] = 7506, + [8082] = 7637, + [8083] = 7506, + [8084] = 7628, + [8085] = 7628, + [8086] = 7637, + [8087] = 7506, + [8088] = 7637, + [8089] = 7506, + [8090] = 7628, + [8091] = 7628, + [8092] = 7637, + [8093] = 7506, + [8094] = 7637, + [8095] = 7506, + [8096] = 7628, + [8097] = 7628, + [8098] = 7637, + [8099] = 7506, + [8100] = 7637, + [8101] = 7506, + [8102] = 7628, + [8103] = 7509, + [8104] = 7628, + [8105] = 7637, + [8106] = 7506, + [8107] = 7637, + [8108] = 7506, + [8109] = 7628, + [8110] = 7525, + [8111] = 7628, + [8112] = 7637, + [8113] = 7506, + [8114] = 7637, + [8115] = 7506, + [8116] = 7628, + [8117] = 7628, + [8118] = 7637, + [8119] = 7506, + [8120] = 7637, + [8121] = 7506, + [8122] = 7628, + [8123] = 7628, + [8124] = 7637, + [8125] = 7506, + [8126] = 7628, + [8127] = 7628, + [8128] = 7637, + [8129] = 7506, + [8130] = 7628, + [8131] = 7628, + [8132] = 7637, + [8133] = 7506, + [8134] = 7628, + [8135] = 7628, + [8136] = 7637, + [8137] = 7506, + [8138] = 7649, + [8139] = 7628, + [8140] = 7650, + [8141] = 7628, + [8142] = 7637, + [8143] = 7506, + [8144] = 7628, + [8145] = 7628, + [8146] = 7507, + [8147] = 4246, + [8148] = 7630, + [8149] = 7630, + [8150] = 7630, + [8151] = 7508, + [8152] = 7630, + [8153] = 7538, + [8154] = 7538, + [8155] = 7538, + [8156] = 7538, + [8157] = 7538, + [8158] = 4249, + [8159] = 4276, + [8160] = 4219, + [8161] = 8161, + [8162] = 4243, + [8163] = 4248, + [8164] = 8164, + [8165] = 4180, + [8166] = 4256, + [8167] = 4269, + [8168] = 4220, + [8169] = 4181, + [8170] = 4263, + [8171] = 4272, + [8172] = 4177, + [8173] = 4188, + [8174] = 4189, + [8175] = 4246, + [8176] = 4268, + [8177] = 4242, + [8178] = 4193, + [8179] = 4196, + [8180] = 4203, + [8181] = 4223, + [8182] = 4277, + [8183] = 4206, + [8184] = 8184, + [8185] = 4231, + [8186] = 4263, + [8187] = 4264, + [8188] = 4265, + [8189] = 4267, + [8190] = 4249, + [8191] = 4270, + [8192] = 4268, + [8193] = 4271, + [8194] = 4236, + [8195] = 4276, + [8196] = 4182, + [8197] = 4213, + [8198] = 4227, + [8199] = 4176, + [8200] = 5314, + [8201] = 4178, + [8202] = 4236, + [8203] = 4179, + [8204] = 4214, + [8205] = 4180, + [8206] = 4181, + [8207] = 8161, + [8208] = 4182, + [8209] = 4183, + [8210] = 4184, + [8211] = 4220, + [8212] = 4183, + [8213] = 4242, + [8214] = 4184, + [8215] = 4194, + [8216] = 4195, + [8217] = 8164, + [8218] = 4194, + [8219] = 4195, + [8220] = 4211, + [8221] = 4264, + [8222] = 4211, + [8223] = 4265, + [8224] = 4266, + [8225] = 4206, + [8226] = 4267, + [8227] = 4212, + [8228] = 4270, + [8229] = 4271, + [8230] = 4246, + [8231] = 4218, + [8232] = 4249, + [8233] = 4176, + [8234] = 4229, + [8235] = 4266, + [8236] = 4213, + [8237] = 4233, + [8238] = 4222, + [8239] = 4234, + [8240] = 4214, + [8241] = 4212, + [8242] = 4237, + [8243] = 4226, + [8244] = 4238, + [8245] = 4178, + [8246] = 4203, + [8247] = 4223, + [8248] = 4208, + [8249] = 8161, + [8250] = 4222, + [8251] = 8161, + [8252] = 8164, + [8253] = 4218, + [8254] = 4239, + [8255] = 4179, + [8256] = 4233, + [8257] = 4277, + [8258] = 4240, + [8259] = 4196, + [8260] = 4241, + [8261] = 4234, + [8262] = 8161, + [8263] = 4231, + [8264] = 4229, + [8265] = 4219, + [8266] = 8164, + [8267] = 4243, + [8268] = 4248, + [8269] = 4256, + [8270] = 4269, + [8271] = 4226, + [8272] = 4208, + [8273] = 4237, + [8274] = 4238, + [8275] = 4245, + [8276] = 8161, + [8277] = 4272, + [8278] = 8164, + [8279] = 4177, + [8280] = 4239, + [8281] = 4188, + [8282] = 8164, + [8283] = 4240, + [8284] = 4241, + [8285] = 4245, + [8286] = 4189, + [8287] = 4193, + [8288] = 4227, + [8289] = 8289, + [8290] = 8290, + [8291] = 8289, + [8292] = 8292, + [8293] = 8293, + [8294] = 8290, + [8295] = 8292, + [8296] = 8289, + [8297] = 8289, + [8298] = 8290, + [8299] = 8292, + [8300] = 8290, + [8301] = 8289, + [8302] = 8289, + [8303] = 8290, + [8304] = 8292, + [8305] = 8290, + [8306] = 8289, + [8307] = 8289, + [8308] = 8290, + [8309] = 8290, + [8310] = 8292, + [8311] = 8290, + [8312] = 8289, + [8313] = 8289, + [8314] = 8290, + [8315] = 8292, + [8316] = 8290, + [8317] = 8289, + [8318] = 8289, + [8319] = 8290, + [8320] = 8290, + [8321] = 8289, + [8322] = 8290, + [8323] = 8289, + [8324] = 8290, + [8325] = 8290, + [8326] = 8289, + [8327] = 8289, + [8328] = 8290, + [8329] = 8290, + [8330] = 8289, + [8331] = 8289, + [8332] = 8290, + [8333] = 8290, + [8334] = 8289, + [8335] = 8289, + [8336] = 8290, + [8337] = 8293, + [8338] = 8290, + [8339] = 8289, + [8340] = 8289, + [8341] = 8290, + [8342] = 8290, + [8343] = 8289, + [8344] = 8289, + [8345] = 8290, + [8346] = 8290, + [8347] = 8289, + [8348] = 8289, + [8349] = 8290, + [8350] = 8290, + [8351] = 8290, + [8352] = 8289, + [8353] = 8289, + [8354] = 8290, + [8355] = 8290, + [8356] = 8289, + [8357] = 8289, + [8358] = 8290, + [8359] = 8290, + [8360] = 8290, + [8361] = 8289, + [8362] = 8289, + [8363] = 8290, + [8364] = 8289, + [8365] = 8289, + [8366] = 8290, + [8367] = 8289, + [8368] = 8290, + [8369] = 8289, + [8370] = 8290, + [8371] = 8289, + [8372] = 8289, + [8373] = 8290, + [8374] = 8289, + [8375] = 8290, + [8376] = 8289, + [8377] = 8290, + [8378] = 8289, + [8379] = 8289, + [8380] = 8293, + [8381] = 8293, + [8382] = 8293, + [8383] = 8293, + [8384] = 8290, + [8385] = 8385, + [8386] = 8386, + [8387] = 8387, + [8388] = 7936, + [8389] = 8389, + [8390] = 8390, + [8391] = 8060, + [8392] = 8385, + [8393] = 8390, + [8394] = 8387, + [8395] = 8395, + [8396] = 7936, + [8397] = 8389, + [8398] = 5658, + [8399] = 8399, + [8400] = 7943, + [8401] = 7943, + [8402] = 8387, + [8403] = 8389, + [8404] = 8060, + [8405] = 8405, + [8406] = 5734, + [8407] = 8385, + [8408] = 8390, + [8409] = 8385, + [8410] = 8390, + [8411] = 8385, + [8412] = 8390, + [8413] = 8390, + [8414] = 8385, + [8415] = 8415, + [8416] = 8416, + [8417] = 8417, + [8418] = 8418, + [8419] = 8419, + [8420] = 8420, + [8421] = 8421, + [8422] = 8422, + [8423] = 8418, + [8424] = 8424, + [8425] = 8416, + [8426] = 8426, + [8427] = 8426, + [8428] = 8428, + [8429] = 8421, + [8430] = 8430, + [8431] = 8431, + [8432] = 8432, + [8433] = 8422, + [8434] = 8417, + [8435] = 8419, + [8436] = 8420, + [8437] = 8437, + [8438] = 8419, + [8439] = 8430, + [8440] = 8440, + [8441] = 8419, + [8442] = 4266, + [8443] = 8428, + [8444] = 8419, + [8445] = 8419, + [8446] = 8437, + [8447] = 8447, + [8448] = 8448, + [8449] = 8447, + [8450] = 8450, + [8451] = 8451, + [8452] = 8452, + [8453] = 8451, + [8454] = 8454, + [8455] = 8455, + [8456] = 8456, + [8457] = 8457, + [8458] = 8458, + [8459] = 8451, + [8460] = 8460, + [8461] = 8461, + [8462] = 8462, + [8463] = 8461, + [8464] = 8464, + [8465] = 8461, + [8466] = 8456, + [8467] = 8467, + [8468] = 8468, + [8469] = 8469, + [8470] = 8461, + [8471] = 8471, + [8472] = 8456, + [8473] = 8458, + [8474] = 8458, + [8475] = 8458, + [8476] = 8451, + [8477] = 8448, + [8478] = 8461, + [8479] = 8456, + [8480] = 8480, + [8481] = 8456, + [8482] = 8482, + [8483] = 8461, + [8484] = 8448, + [8485] = 8485, + [8486] = 8451, + [8487] = 8456, + [8488] = 8458, + [8489] = 8458, + [8490] = 8490, + [8491] = 8448, + [8492] = 8451, + [8493] = 8493, + [8494] = 8494, + [8495] = 8460, + [8496] = 8493, + [8497] = 8497, + [8498] = 8494, + [8499] = 8499, + [8500] = 8497, + [8501] = 8485, + [8502] = 8462, + [8503] = 8480, + [8504] = 8504, + [8505] = 8482, + [8506] = 8506, + [8507] = 8494, + [8508] = 8494, + [8509] = 8506, + [8510] = 8497, + [8511] = 8497, + [8512] = 8464, + [8513] = 8448, + [8514] = 8469, + [8515] = 8454, + [8516] = 8455, + [8517] = 8494, + [8518] = 8518, + [8519] = 8497, + [8520] = 8450, + [8521] = 8494, + [8522] = 8522, + [8523] = 8523, + [8524] = 8468, + [8525] = 8494, + [8526] = 8493, + [8527] = 8494, + [8528] = 8497, + [8529] = 8494, + [8530] = 8497, + [8531] = 8497, + [8532] = 8467, + [8533] = 8533, + [8534] = 8457, + [8535] = 8535, + [8536] = 8460, + [8537] = 8494, + [8538] = 8462, + [8539] = 8497, + [8540] = 8494, + [8541] = 8485, + [8542] = 8497, + [8543] = 8468, + [8544] = 8464, + [8545] = 8468, + [8546] = 8494, + [8547] = 8497, + [8548] = 8548, + [8549] = 8549, + [8550] = 8550, + [8551] = 8551, + [8552] = 8480, + [8553] = 8494, + [8554] = 8448, + [8555] = 8497, + [8556] = 8460, + [8557] = 8557, + [8558] = 8494, + [8559] = 8559, + [8560] = 8560, + [8561] = 8494, + [8562] = 8494, + [8563] = 8497, + [8564] = 8497, + [8565] = 8467, + [8566] = 8566, + [8567] = 8497, + [8568] = 8482, + [8569] = 8450, + [8570] = 8494, + [8571] = 8571, + [8572] = 8497, + [8573] = 8462, + [8574] = 8499, + [8575] = 8464, + [8576] = 8490, + [8577] = 8494, + [8578] = 8469, + [8579] = 8490, + [8580] = 8497, + [8581] = 8494, + [8582] = 8494, + [8583] = 8497, + [8584] = 8497, + [8585] = 8494, + [8586] = 8497, + [8587] = 8535, + [8588] = 8494, + [8589] = 8497, + [8590] = 8494, + [8591] = 8497, + [8592] = 8494, + [8593] = 8497, + [8594] = 8494, + [8595] = 8497, + [8596] = 8494, + [8597] = 8497, + [8598] = 8494, + [8599] = 8599, + [8600] = 8497, + [8601] = 8494, + [8602] = 8497, + [8603] = 8494, + [8604] = 8497, + [8605] = 8494, + [8606] = 8497, + [8607] = 8494, + [8608] = 8497, + [8609] = 8494, + [8610] = 8497, + [8611] = 8494, + [8612] = 8497, + [8613] = 8494, + [8614] = 8497, + [8615] = 8494, + [8616] = 8497, + [8617] = 8494, + [8618] = 8497, + [8619] = 8494, + [8620] = 8497, + [8621] = 8494, + [8622] = 8497, + [8623] = 8494, + [8624] = 8497, + [8625] = 8494, + [8626] = 8497, + [8627] = 8494, + [8628] = 8497, + [8629] = 8494, + [8630] = 8457, + [8631] = 8494, + [8632] = 8497, + [8633] = 8494, + [8634] = 8497, + [8635] = 8494, + [8636] = 8497, + [8637] = 8494, + [8638] = 8497, + [8639] = 8494, + [8640] = 8497, + [8641] = 8494, + [8642] = 8497, + [8643] = 8494, + [8644] = 8497, + [8645] = 8494, + [8646] = 8497, + [8647] = 8494, + [8648] = 8497, + [8649] = 8494, + [8650] = 8497, + [8651] = 8494, + [8652] = 8497, + [8653] = 8494, + [8654] = 8497, + [8655] = 8494, + [8656] = 8497, + [8657] = 8494, + [8658] = 8497, + [8659] = 8494, + [8660] = 8497, + [8661] = 8494, + [8662] = 8497, + [8663] = 8494, + [8664] = 8497, + [8665] = 8494, + [8666] = 8497, + [8667] = 8494, + [8668] = 8497, + [8669] = 8494, + [8670] = 8497, + [8671] = 8494, + [8672] = 8497, + [8673] = 8494, + [8674] = 8497, + [8675] = 8494, + [8676] = 8497, + [8677] = 8494, + [8678] = 8497, + [8679] = 8494, + [8680] = 8497, + [8681] = 8494, + [8682] = 8497, + [8683] = 8494, + [8684] = 8497, + [8685] = 8494, + [8686] = 8497, + [8687] = 8494, + [8688] = 8497, + [8689] = 8494, + [8690] = 8497, + [8691] = 8494, + [8692] = 8497, + [8693] = 8494, + [8694] = 8497, + [8695] = 8494, + [8696] = 8497, + [8697] = 8494, + [8698] = 8497, + [8699] = 8494, + [8700] = 8497, + [8701] = 8494, + [8702] = 8497, + [8703] = 8494, + [8704] = 8497, + [8705] = 8494, + [8706] = 8497, + [8707] = 8494, + [8708] = 8497, + [8709] = 8452, + [8710] = 8497, + [8711] = 8557, + [8712] = 8712, + [8713] = 8713, + [8714] = 8480, + [8715] = 8715, + [8716] = 8716, + [8717] = 8494, + [8718] = 8482, + [8719] = 8497, + [8720] = 8454, + [8721] = 8452, + [8722] = 8450, + [8723] = 8455, + [8724] = 8469, + [8725] = 8494, + [8726] = 8457, + [8727] = 8494, + [8728] = 8728, + [8729] = 8497, + [8730] = 8497, + [8731] = 8485, + [8732] = 8467, + [8733] = 8490, + [8734] = 8452, + [8735] = 8735, + [8736] = 8493, + [8737] = 8454, + [8738] = 8504, + [8739] = 8455, + [8740] = 8740, + [8741] = 8448, + [8742] = 8497, + [8743] = 8450, + [8744] = 8464, + [8745] = 8469, + [8746] = 8485, + [8747] = 8468, + [8748] = 8454, + [8749] = 8482, + [8750] = 8750, + [8751] = 8751, + [8752] = 8480, + [8753] = 8467, + [8754] = 8450, + [8755] = 8482, + [8756] = 8450, + [8757] = 8490, + [8758] = 8493, + [8759] = 8490, + [8760] = 8455, + [8761] = 8452, + [8762] = 8762, + [8763] = 8452, + [8764] = 8480, + [8765] = 8454, + [8766] = 8766, + [8767] = 8467, + [8768] = 8768, + [8769] = 8455, + [8770] = 8460, + [8771] = 8766, + [8772] = 8468, + [8773] = 8457, + [8774] = 8454, + [8775] = 8455, + [8776] = 8549, + [8777] = 8457, + [8778] = 8768, + [8779] = 8460, + [8780] = 4152, + [8781] = 8462, + [8782] = 8493, + [8783] = 8464, + [8784] = 8468, + [8785] = 8469, + [8786] = 8750, + [8787] = 8485, + [8788] = 8460, + [8789] = 8462, + [8790] = 8493, + [8791] = 8464, + [8792] = 8469, + [8793] = 8559, + [8794] = 8750, + [8795] = 8560, + [8796] = 8751, + [8797] = 8448, + [8798] = 8549, + [8799] = 8480, + [8800] = 8485, + [8801] = 8482, + [8802] = 8750, + [8803] = 8751, + [8804] = 8462, + [8805] = 8448, + [8806] = 8559, + [8807] = 8560, + [8808] = 8549, + [8809] = 8490, + [8810] = 8750, + [8811] = 8751, + [8812] = 8766, + [8813] = 8467, + [8814] = 8768, + [8815] = 8766, + [8816] = 8768, + [8817] = 8559, + [8818] = 8766, + [8819] = 8768, + [8820] = 8560, + [8821] = 8766, + [8822] = 8452, + [8823] = 8768, + [8824] = 8457, + [8825] = 8750, + [8826] = 8751, + [8827] = 8751, + [8828] = 4268, + [8829] = 8490, + [8830] = 4152, + [8831] = 4241, + [8832] = 8832, + [8833] = 4245, + [8834] = 8450, + [8835] = 4214, + [8836] = 4220, + [8837] = 4222, + [8838] = 4246, + [8839] = 4226, + [8840] = 8559, + [8841] = 8464, + [8842] = 8842, + [8843] = 8842, + [8844] = 8464, + [8845] = 8762, + [8846] = 8467, + [8847] = 8847, + [8848] = 8848, + [8849] = 8849, + [8850] = 8762, + [8851] = 8842, + [8852] = 4208, + [8853] = 4218, + [8854] = 8462, + [8855] = 8467, + [8856] = 4152, + [8857] = 8460, + [8858] = 8493, + [8859] = 8448, + [8860] = 8549, + [8861] = 4219, + [8862] = 8490, + [8863] = 4243, + [8864] = 8452, + [8865] = 5314, + [8866] = 4206, + [8867] = 4184, + [8868] = 4195, + [8869] = 4249, + [8870] = 4248, + [8871] = 4233, + [8872] = 4256, + [8873] = 8454, + [8874] = 4269, + [8875] = 4272, + [8876] = 4213, + [8877] = 8454, + [8878] = 8462, + [8879] = 8842, + [8880] = 4177, + [8881] = 8455, + [8882] = 8480, + [8883] = 8493, + [8884] = 4188, + [8885] = 4189, + [8886] = 8468, + [8887] = 4266, + [8888] = 4183, + [8889] = 4194, + [8890] = 4196, + [8891] = 8549, + [8892] = 4229, + [8893] = 4203, + [8894] = 8894, + [8895] = 8455, + [8896] = 4223, + [8897] = 8559, + [8898] = 4277, + [8899] = 8469, + [8900] = 4236, + [8901] = 8457, + [8902] = 4231, + [8903] = 4263, + [8904] = 8460, + [8905] = 8549, + [8906] = 8560, + [8907] = 8842, + [8908] = 8485, + [8909] = 4234, + [8910] = 4152, + [8911] = 8559, + [8912] = 4264, + [8913] = 4265, + [8914] = 8450, + [8915] = 4267, + [8916] = 8482, + [8917] = 8457, + [8918] = 4270, + [8919] = 4242, + [8920] = 4237, + [8921] = 4271, + [8922] = 8452, + [8923] = 4238, + [8924] = 8560, + [8925] = 4276, + [8926] = 4227, + [8927] = 8762, + [8928] = 4211, + [8929] = 4176, + [8930] = 8482, + [8931] = 4239, + [8932] = 4178, + [8933] = 4179, + [8934] = 8480, + [8935] = 4180, + [8936] = 4181, + [8937] = 8937, + [8938] = 8560, + [8939] = 8939, + [8940] = 4212, + [8941] = 8469, + [8942] = 4240, + [8943] = 8842, + [8944] = 4182, + [8945] = 8468, + [8946] = 8485, + [8947] = 4193, + [8948] = 4265, + [8949] = 4243, + [8950] = 4248, + [8951] = 4256, + [8952] = 4269, + [8953] = 4272, + [8954] = 4177, + [8955] = 4266, + [8956] = 8448, + [8957] = 8448, + [8958] = 8549, + [8959] = 4229, + [8960] = 4236, + [8961] = 4229, + [8962] = 4242, + [8963] = 4236, + [8964] = 4242, + [8965] = 8560, + [8966] = 8559, + [8967] = 8480, + [8968] = 8482, + [8969] = 8450, + [8970] = 8490, + [8971] = 8452, + [8972] = 8454, + [8973] = 8455, + [8974] = 8457, + [8975] = 8460, + [8976] = 8462, + [8977] = 8464, + [8978] = 8469, + [8979] = 8493, + [8980] = 8980, + [8981] = 8762, + [8982] = 8485, + [8983] = 8493, + [8984] = 8468, + [8985] = 8467, + [8986] = 4152, + [8987] = 8448, + [8988] = 4266, + [8989] = 4188, + [8990] = 4189, + [8991] = 4193, + [8992] = 4196, + [8993] = 4203, + [8994] = 8762, + [8995] = 4223, + [8996] = 4277, + [8997] = 4231, + [8998] = 4263, + [8999] = 4264, + [9000] = 4267, + [9001] = 8762, + [9002] = 4270, + [9003] = 4271, + [9004] = 4266, + [9005] = 9005, + [9006] = 9006, + [9007] = 9007, + [9008] = 4276, + [9009] = 4227, + [9010] = 4176, + [9011] = 4178, + [9012] = 8559, + [9013] = 8560, + [9014] = 8549, + [9015] = 8832, + [9016] = 4179, + [9017] = 4180, + [9018] = 4181, + [9019] = 9019, + [9020] = 9020, + [9021] = 4182, + [9022] = 4183, + [9023] = 4184, + [9024] = 4194, + [9025] = 4195, + [9026] = 4211, + [9027] = 9020, + [9028] = 8832, + [9029] = 4212, + [9030] = 9030, + [9031] = 4233, + [9032] = 8832, + [9033] = 9033, + [9034] = 4152, + [9035] = 4234, + [9036] = 9036, + [9037] = 9037, + [9038] = 8847, + [9039] = 8848, + [9040] = 8849, + [9041] = 4219, + [9042] = 4237, + [9043] = 4238, + [9044] = 4239, + [9045] = 4233, + [9046] = 4234, + [9047] = 4237, + [9048] = 4238, + [9049] = 4239, + [9050] = 4240, + [9051] = 4241, + [9052] = 4245, + [9053] = 4246, + [9054] = 4268, + [9055] = 4206, + [9056] = 4249, + [9057] = 4213, + [9058] = 4214, + [9059] = 4220, + [9060] = 4222, + [9061] = 4226, + [9062] = 4208, + [9063] = 4218, + [9064] = 4219, + [9065] = 4243, + [9066] = 4248, + [9067] = 8847, + [9068] = 8848, + [9069] = 8849, + [9070] = 4256, + [9071] = 9071, + [9072] = 4269, + [9073] = 4240, + [9074] = 4241, + [9075] = 8937, + [9076] = 4218, + [9077] = 4229, + [9078] = 4272, + [9079] = 4177, + [9080] = 4188, + [9081] = 4189, + [9082] = 4193, + [9083] = 4196, + [9084] = 4203, + [9085] = 4223, + [9086] = 4277, + [9087] = 4245, + [9088] = 4231, + [9089] = 4263, + [9090] = 4264, + [9091] = 4265, + [9092] = 4267, + [9093] = 4270, + [9094] = 4271, + [9095] = 4276, + [9096] = 4227, + [9097] = 4176, + [9098] = 4178, + [9099] = 4179, + [9100] = 4180, + [9101] = 4181, + [9102] = 4182, + [9103] = 4183, + [9104] = 4184, + [9105] = 4152, + [9106] = 8937, + [9107] = 8939, + [9108] = 4194, + [9109] = 4195, + [9110] = 4211, + [9111] = 4233, + [9112] = 4234, + [9113] = 4237, + [9114] = 4238, + [9115] = 4212, + [9116] = 4239, + [9117] = 4240, + [9118] = 4241, + [9119] = 4245, + [9120] = 4246, + [9121] = 4268, + [9122] = 8448, + [9123] = 4206, + [9124] = 4249, + [9125] = 4213, + [9126] = 4214, + [9127] = 4220, + [9128] = 4222, + [9129] = 4226, + [9130] = 4208, + [9131] = 4218, + [9132] = 4219, + [9133] = 4243, + [9134] = 4248, + [9135] = 4236, + [9136] = 4256, + [9137] = 4269, + [9138] = 4242, + [9139] = 4272, + [9140] = 4177, + [9141] = 4188, + [9142] = 4189, + [9143] = 4193, + [9144] = 4196, + [9145] = 4203, + [9146] = 4223, + [9147] = 4277, + [9148] = 4231, + [9149] = 4263, + [9150] = 4264, + [9151] = 4265, + [9152] = 4267, + [9153] = 4270, + [9154] = 4271, + [9155] = 4276, + [9156] = 4227, + [9157] = 4176, + [9158] = 4178, + [9159] = 4179, + [9160] = 4180, + [9161] = 4181, + [9162] = 4182, + [9163] = 4183, + [9164] = 4184, + [9165] = 4194, + [9166] = 4195, + [9167] = 4211, + [9168] = 4212, + [9169] = 4246, + [9170] = 8448, + [9171] = 4268, + [9172] = 4206, + [9173] = 4249, + [9174] = 4213, + [9175] = 4214, + [9176] = 4220, + [9177] = 4222, + [9178] = 4226, + [9179] = 4208, + [9180] = 8939, + [9181] = 8549, + [9182] = 9030, + [9183] = 8450, + [9184] = 4178, + [9185] = 8490, + [9186] = 8762, + [9187] = 9019, + [9188] = 9020, + [9189] = 9019, + [9190] = 4152, + [9191] = 9030, + [9192] = 4246, + [9193] = 9020, + [9194] = 8452, + [9195] = 8448, + [9196] = 4268, + [9197] = 4206, + [9198] = 4249, + [9199] = 4213, + [9200] = 4214, + [9201] = 9033, + [9202] = 4220, + [9203] = 8454, + [9204] = 8454, + [9205] = 4231, + [9206] = 8455, + [9207] = 8457, + [9208] = 4179, + [9209] = 4180, + [9210] = 9033, + [9211] = 4222, + [9212] = 4181, + [9213] = 4182, + [9214] = 4263, + [9215] = 4183, + [9216] = 4208, + [9217] = 4218, + [9218] = 4184, + [9219] = 4219, + [9220] = 4264, + [9221] = 4243, + [9222] = 9033, + [9223] = 4226, + [9224] = 4231, + [9225] = 4229, + [9226] = 4248, + [9227] = 4256, + [9228] = 4265, + [9229] = 4267, + [9230] = 4236, + [9231] = 4229, + [9232] = 4269, + [9233] = 4270, + [9234] = 4242, + [9235] = 4236, + [9236] = 8460, + [9237] = 4271, + [9238] = 4242, + [9239] = 4276, + [9240] = 4276, + [9241] = 4152, + [9242] = 4227, + [9243] = 8462, + [9244] = 4227, + [9245] = 4263, + [9246] = 8464, + [9247] = 4152, + [9248] = 9248, + [9249] = 4223, + [9250] = 4176, + [9251] = 4194, + [9252] = 8469, + [9253] = 8455, + [9254] = 4178, + [9255] = 8493, + [9256] = 4195, + [9257] = 8448, + [9258] = 4152, + [9259] = 4270, + [9260] = 4211, + [9261] = 8762, + [9262] = 8448, + [9263] = 8448, + [9264] = 8485, + [9265] = 9265, + [9266] = 8448, + [9267] = 4208, + [9268] = 8468, + [9269] = 4178, + [9270] = 8832, + [9271] = 4179, + [9272] = 8480, + [9273] = 8482, + [9274] = 8937, + [9275] = 8450, + [9276] = 8939, + [9277] = 8490, + [9278] = 4218, + [9279] = 8452, + [9280] = 8454, + [9281] = 5734, + [9282] = 4212, + [9283] = 8455, + [9284] = 8457, + [9285] = 8460, + [9286] = 8462, + [9287] = 8464, + [9288] = 4219, + [9289] = 4243, + [9290] = 8469, + [9291] = 8493, + [9292] = 4248, + [9293] = 8448, + [9294] = 4180, + [9295] = 4179, + [9296] = 4256, + [9297] = 4271, + [9298] = 4276, + [9299] = 4269, + [9300] = 4266, + [9301] = 8457, + [9302] = 8485, + [9303] = 4152, + [9304] = 9304, + [9305] = 9305, + [9306] = 9306, + [9307] = 9307, + [9308] = 9308, + [9309] = 8740, + [9310] = 9310, + [9311] = 4236, + [9312] = 4188, + [9313] = 8448, + [9314] = 4181, + [9315] = 4266, + [9316] = 8735, + [9317] = 4233, + [9318] = 4229, + [9319] = 4180, + [9320] = 4234, + [9321] = 4237, + [9322] = 4238, + [9323] = 4239, + [9324] = 4240, + [9325] = 4241, + [9326] = 4245, + [9327] = 8448, + [9328] = 4246, + [9329] = 4242, + [9330] = 4268, + [9331] = 4206, + [9332] = 8480, + [9333] = 4249, + [9334] = 4213, + [9335] = 4214, + [9336] = 4181, + [9337] = 4220, + [9338] = 4222, + [9339] = 8460, + [9340] = 8482, + [9341] = 4272, + [9342] = 8462, + [9343] = 8467, + [9344] = 8464, + [9345] = 9020, + [9346] = 8450, + [9347] = 8490, + [9348] = 8469, + [9349] = 8468, + [9350] = 4193, + [9351] = 4277, + [9352] = 4177, + [9353] = 4182, + [9354] = 4183, + [9355] = 8452, + [9356] = 8493, + [9357] = 4196, + [9358] = 8485, + [9359] = 4188, + [9360] = 8468, + [9361] = 4182, + [9362] = 4183, + [9363] = 4189, + [9364] = 8454, + [9365] = 8455, + [9366] = 4193, + [9367] = 8457, + [9368] = 8485, + [9369] = 8460, + [9370] = 4203, + [9371] = 8462, + [9372] = 8464, + [9373] = 4196, + [9374] = 9005, + [9375] = 4189, + [9376] = 9006, + [9377] = 9007, + [9378] = 8467, + [9379] = 8469, + [9380] = 4184, + [9381] = 8480, + [9382] = 5658, + [9383] = 4203, + [9384] = 8847, + [9385] = 4266, + [9386] = 8493, + [9387] = 4184, + [9388] = 8448, + [9389] = 8599, + [9390] = 8848, + [9391] = 8849, + [9392] = 8468, + [9393] = 4194, + [9394] = 9394, + [9395] = 9005, + [9396] = 9006, + [9397] = 9007, + [9398] = 4226, + [9399] = 8832, + [9400] = 4195, + [9401] = 8467, + [9402] = 8448, + [9403] = 4211, + [9404] = 4233, + [9405] = 4223, + [9406] = 4270, + [9407] = 4227, + [9408] = 9005, + [9409] = 9006, + [9410] = 9007, + [9411] = 4277, + [9412] = 4234, + [9413] = 8832, + [9414] = 4212, + [9415] = 4237, + [9416] = 9019, + [9417] = 8482, + [9418] = 9020, + [9419] = 4271, + [9420] = 8450, + [9421] = 4194, + [9422] = 4176, + [9423] = 8448, + [9424] = 4238, + [9425] = 8485, + [9426] = 8468, + [9427] = 8467, + [9428] = 8480, + [9429] = 4239, + [9430] = 4195, + [9431] = 4240, + [9432] = 4211, + [9433] = 8490, + [9434] = 8452, + [9435] = 4233, + [9436] = 4176, + [9437] = 4234, + [9438] = 4264, + [9439] = 4237, + [9440] = 4238, + [9441] = 4212, + [9442] = 4239, + [9443] = 4240, + [9444] = 4241, + [9445] = 4241, + [9446] = 4245, + [9447] = 4246, + [9448] = 4265, + [9449] = 4268, + [9450] = 4206, + [9451] = 4249, + [9452] = 4213, + [9453] = 4214, + [9454] = 4220, + [9455] = 4222, + [9456] = 4226, + [9457] = 4267, + [9458] = 4208, + [9459] = 4218, + [9460] = 4219, + [9461] = 4243, + [9462] = 4248, + [9463] = 4256, + [9464] = 4269, + [9465] = 4272, + [9466] = 4177, + [9467] = 4188, + [9468] = 4189, + [9469] = 4193, + [9470] = 4196, + [9471] = 4203, + [9472] = 4223, + [9473] = 4277, + [9474] = 4231, + [9475] = 4263, + [9476] = 8448, + [9477] = 4264, + [9478] = 8559, + [9479] = 8560, + [9480] = 4265, + [9481] = 8482, + [9482] = 4267, + [9483] = 4272, + [9484] = 4245, + [9485] = 9485, + [9486] = 4177, + [9487] = 8549, + [9488] = 4231, + [9489] = 4263, + [9490] = 4264, + [9491] = 4265, + [9492] = 4267, + [9493] = 8464, + [9494] = 4270, + [9495] = 4271, + [9496] = 4276, + [9497] = 8832, + [9498] = 8469, + [9499] = 9033, + [9500] = 4227, + [9501] = 4176, + [9502] = 4178, + [9503] = 4179, + [9504] = 9504, + [9505] = 4180, + [9506] = 4181, + [9507] = 4182, + [9508] = 9033, + [9509] = 4206, + [9510] = 4249, + [9511] = 4183, + [9512] = 4184, + [9513] = 4194, + [9514] = 4195, + [9515] = 8493, + [9516] = 4211, + [9517] = 4152, + [9518] = 8448, + [9519] = 4213, + [9520] = 8485, + [9521] = 8468, + [9522] = 8467, + [9523] = 4214, + [9524] = 4212, + [9525] = 4220, + [9526] = 4222, + [9527] = 9005, + [9528] = 4226, + [9529] = 9006, + [9530] = 8450, + [9531] = 8480, + [9532] = 4152, + [9533] = 8452, + [9534] = 4229, + [9535] = 4208, + [9536] = 4218, + [9537] = 4219, + [9538] = 4236, + [9539] = 4243, + [9540] = 4229, + [9541] = 4242, + [9542] = 4248, + [9543] = 8480, + [9544] = 8480, + [9545] = 8482, + [9546] = 8482, + [9547] = 4256, + [9548] = 4269, + [9549] = 8454, + [9550] = 8450, + [9551] = 8450, + [9552] = 8490, + [9553] = 8452, + [9554] = 4152, + [9555] = 4266, + [9556] = 4152, + [9557] = 8454, + [9558] = 4266, + [9559] = 8455, + [9560] = 8457, + [9561] = 8460, + [9562] = 4272, + [9563] = 8490, + [9564] = 4177, + [9565] = 8549, + [9566] = 8462, + [9567] = 8464, + [9568] = 4233, + [9569] = 8469, + [9570] = 4234, + [9571] = 4237, + [9572] = 4238, + [9573] = 4239, + [9574] = 4240, + [9575] = 4241, + [9576] = 4245, + [9577] = 4246, + [9578] = 8468, + [9579] = 4268, + [9580] = 4206, + [9581] = 4249, + [9582] = 4213, + [9583] = 4214, + [9584] = 4220, + [9585] = 4188, + [9586] = 4222, + [9587] = 8493, + [9588] = 4226, + [9589] = 5314, + [9590] = 4208, + [9591] = 4218, + [9592] = 4219, + [9593] = 4243, + [9594] = 4248, + [9595] = 4256, + [9596] = 4269, + [9597] = 4272, + [9598] = 4177, + [9599] = 4188, + [9600] = 4189, + [9601] = 4193, + [9602] = 4196, + [9603] = 4203, + [9604] = 4223, + [9605] = 4277, + [9606] = 8549, + [9607] = 4231, + [9608] = 4263, + [9609] = 4264, + [9610] = 4265, + [9611] = 4267, + [9612] = 8448, + [9613] = 4270, + [9614] = 4271, + [9615] = 4276, + [9616] = 4227, + [9617] = 4176, + [9618] = 4178, + [9619] = 4179, + [9620] = 4180, + [9621] = 4181, + [9622] = 4182, + [9623] = 4183, + [9624] = 4184, + [9625] = 4194, + [9626] = 4195, + [9627] = 4211, + [9628] = 4152, + [9629] = 4189, + [9630] = 4233, + [9631] = 4193, + [9632] = 4234, + [9633] = 4237, + [9634] = 4238, + [9635] = 4212, + [9636] = 4239, + [9637] = 4240, + [9638] = 4196, + [9639] = 8452, + [9640] = 4241, + [9641] = 4245, + [9642] = 8559, + [9643] = 8560, + [9644] = 4246, + [9645] = 4203, + [9646] = 4223, + [9647] = 4268, + [9648] = 4206, + [9649] = 4249, + [9650] = 4213, + [9651] = 4214, + [9652] = 4220, + [9653] = 4222, + [9654] = 4226, + [9655] = 8480, + [9656] = 8482, + [9657] = 8450, + [9658] = 4208, + [9659] = 4218, + [9660] = 4219, + [9661] = 4243, + [9662] = 4248, + [9663] = 4256, + [9664] = 4269, + [9665] = 8490, + [9666] = 8452, + [9667] = 4272, + [9668] = 4177, + [9669] = 4188, + [9670] = 4189, + [9671] = 4193, + [9672] = 4196, + [9673] = 4203, + [9674] = 4223, + [9675] = 4277, + [9676] = 8454, + [9677] = 8455, + [9678] = 4231, + [9679] = 4263, + [9680] = 8559, + [9681] = 8560, + [9682] = 4264, + [9683] = 4265, + [9684] = 4267, + [9685] = 4270, + [9686] = 4271, + [9687] = 4276, + [9688] = 4229, + [9689] = 4227, + [9690] = 4176, + [9691] = 4178, + [9692] = 8457, + [9693] = 4179, + [9694] = 4180, + [9695] = 4181, + [9696] = 4182, + [9697] = 4183, + [9698] = 4184, + [9699] = 8460, + [9700] = 4194, + [9701] = 4195, + [9702] = 4211, + [9703] = 8462, + [9704] = 8464, + [9705] = 8469, + [9706] = 9007, + [9707] = 4277, + [9708] = 8448, + [9709] = 4212, + [9710] = 8493, + [9711] = 8485, + [9712] = 8467, + [9713] = 8468, + [9714] = 8467, + [9715] = 8559, + [9716] = 8560, + [9717] = 4236, + [9718] = 4242, + [9719] = 4231, + [9720] = 8448, + [9721] = 8480, + [9722] = 8482, + [9723] = 8450, + [9724] = 8490, + [9725] = 8452, + [9726] = 8454, + [9727] = 8454, + [9728] = 8455, + [9729] = 8455, + [9730] = 8457, + [9731] = 8460, + [9732] = 8462, + [9733] = 8464, + [9734] = 8469, + [9735] = 4236, + [9736] = 8457, + [9737] = 8480, + [9738] = 8482, + [9739] = 8450, + [9740] = 8490, + [9741] = 8460, + [9742] = 8493, + [9743] = 8452, + [9744] = 8462, + [9745] = 8464, + [9746] = 8469, + [9747] = 8454, + [9748] = 8455, + [9749] = 8457, + [9750] = 4242, + [9751] = 8448, + [9752] = 8480, + [9753] = 8482, + [9754] = 8450, + [9755] = 8490, + [9756] = 8452, + [9757] = 8454, + [9758] = 8455, + [9759] = 8493, + [9760] = 8762, + [9761] = 8457, + [9762] = 8460, + [9763] = 8460, + [9764] = 8462, + [9765] = 8462, + [9766] = 8448, + [9767] = 4263, + [9768] = 8464, + [9769] = 8469, + [9770] = 8493, + [9771] = 4264, + [9772] = 8485, + [9773] = 8464, + [9774] = 8469, + [9775] = 8468, + [9776] = 8467, + [9777] = 8480, + [9778] = 8482, + [9779] = 8493, + [9780] = 4265, + [9781] = 4267, + [9782] = 8450, + [9783] = 8490, + [9784] = 8452, + [9785] = 8454, + [9786] = 4152, + [9787] = 8480, + [9788] = 4270, + [9789] = 4271, + [9790] = 8455, + [9791] = 8457, + [9792] = 8460, + [9793] = 8462, + [9794] = 8485, + [9795] = 8464, + [9796] = 8493, + [9797] = 9797, + [9798] = 8469, + [9799] = 8493, + [9800] = 4276, + [9801] = 4227, + [9802] = 4176, + [9803] = 8462, + [9804] = 4179, + [9805] = 8482, + [9806] = 8450, + [9807] = 8490, + [9808] = 4180, + [9809] = 8452, + [9810] = 8468, + [9811] = 8454, + [9812] = 4181, + [9813] = 4182, + [9814] = 4183, + [9815] = 4184, + [9816] = 4194, + [9817] = 4195, + [9818] = 4211, + [9819] = 8455, + [9820] = 8457, + [9821] = 8460, + [9822] = 8455, + [9823] = 8457, + [9824] = 8460, + [9825] = 8462, + [9826] = 4212, + [9827] = 8464, + [9828] = 4229, + [9829] = 8469, + [9830] = 8462, + [9831] = 9831, + [9832] = 4152, + [9833] = 8464, + [9834] = 8480, + [9835] = 8490, + [9836] = 9836, + [9837] = 8448, + [9838] = 8452, + [9839] = 8467, + [9840] = 8493, + [9841] = 8485, + [9842] = 4236, + [9843] = 4242, + [9844] = 8468, + [9845] = 8448, + [9846] = 8469, + [9847] = 9847, + [9848] = 4266, + [9849] = 9019, + [9850] = 8468, + [9851] = 9851, + [9852] = 9852, + [9853] = 8454, + [9854] = 8455, + [9855] = 9855, + [9856] = 8485, + [9857] = 8493, + [9858] = 8448, + [9859] = 8480, + [9860] = 8482, + [9861] = 8450, + [9862] = 8457, + [9863] = 9863, + [9864] = 8490, + [9865] = 8452, + [9866] = 9020, + [9867] = 8467, + [9868] = 8832, + [9869] = 8448, + [9870] = 8448, + [9871] = 8454, + [9872] = 8485, + [9873] = 8455, + [9874] = 8480, + [9875] = 4266, + [9876] = 8468, + [9877] = 8482, + [9878] = 9878, + [9879] = 8450, + [9880] = 8490, + [9881] = 8482, + [9882] = 8457, + [9883] = 8460, + [9884] = 4266, + [9885] = 8462, + [9886] = 8464, + [9887] = 8469, + [9888] = 8467, + [9889] = 8452, + [9890] = 8493, + [9891] = 8448, + [9892] = 8448, + [9893] = 8485, + [9894] = 8448, + [9895] = 8468, + [9896] = 8468, + [9897] = 4233, + [9898] = 8454, + [9899] = 8450, + [9900] = 4234, + [9901] = 9863, + [9902] = 8485, + [9903] = 4237, + [9904] = 4238, + [9905] = 4229, + [9906] = 4152, + [9907] = 8460, + [9908] = 9019, + [9909] = 8490, + [9910] = 9910, + [9911] = 4239, + [9912] = 4240, + [9913] = 4241, + [9914] = 8467, + [9915] = 9005, + [9916] = 9006, + [9917] = 9007, + [9918] = 8455, + [9919] = 8457, + [9920] = 4245, + [9921] = 4246, + [9922] = 4236, + [9923] = 4233, + [9924] = 4234, + [9925] = 4237, + [9926] = 8467, + [9927] = 4238, + [9928] = 8467, + [9929] = 8482, + [9930] = 4239, + [9931] = 9005, + [9932] = 9006, + [9933] = 9007, + [9934] = 4240, + [9935] = 9033, + [9936] = 4241, + [9937] = 4245, + [9938] = 4246, + [9939] = 4242, + [9940] = 4268, + [9941] = 8485, + [9942] = 4152, + [9943] = 9943, + [9944] = 4206, + [9945] = 4249, + [9946] = 4213, + [9947] = 8559, + [9948] = 8560, + [9949] = 8549, + [9950] = 4214, + [9951] = 8485, + [9952] = 4233, + [9953] = 4220, + [9954] = 4222, + [9955] = 4226, + [9956] = 8462, + [9957] = 4234, + [9958] = 4208, + [9959] = 4218, + [9960] = 9030, + [9961] = 4219, + [9962] = 4237, + [9963] = 8468, + [9964] = 4243, + [9965] = 4238, + [9966] = 8468, + [9967] = 4248, + [9968] = 4239, + [9969] = 4240, + [9970] = 4152, + [9971] = 4256, + [9972] = 4269, + [9973] = 4272, + [9974] = 8467, + [9975] = 4241, + [9976] = 4245, + [9977] = 9020, + [9978] = 4246, + [9979] = 4177, + [9980] = 8448, + [9981] = 4188, + [9982] = 4152, + [9983] = 4189, + [9984] = 4268, + [9985] = 4206, + [9986] = 4249, + [9987] = 4213, + [9988] = 4193, + [9989] = 4196, + [9990] = 4203, + [9991] = 4223, + [9992] = 4214, + [9993] = 4277, + [9994] = 4220, + [9995] = 4222, + [9996] = 4231, + [9997] = 4263, + [9998] = 4264, + [9999] = 4265, + [10000] = 4267, + [10001] = 4270, + [10002] = 4271, + [10003] = 4276, + [10004] = 4227, + [10005] = 4176, + [10006] = 4178, + [10007] = 4226, + [10008] = 4179, + [10009] = 4180, + [10010] = 4208, + [10011] = 4218, + [10012] = 4219, + [10013] = 4181, + [10014] = 4182, + [10015] = 4183, + [10016] = 4184, + [10017] = 4194, + [10018] = 4243, + [10019] = 8467, + [10020] = 4248, + [10021] = 4256, + [10022] = 4195, + [10023] = 4269, + [10024] = 4211, + [10025] = 8464, + [10026] = 4272, + [10027] = 4177, + [10028] = 4188, + [10029] = 4152, + [10030] = 9019, + [10031] = 8469, + [10032] = 4189, + [10033] = 4193, + [10034] = 8485, + [10035] = 10035, + [10036] = 4196, + [10037] = 4203, + [10038] = 4223, + [10039] = 4268, + [10040] = 10040, + [10041] = 10041, + [10042] = 10042, + [10043] = 10043, + [10044] = 4277, + [10045] = 4212, + [10046] = 8460, + [10047] = 4178, + [10048] = 4227, + [10049] = 8490, + [10050] = 8452, + [10051] = 8468, + [10052] = 4272, + [10053] = 4177, + [10054] = 4188, + [10055] = 4189, + [10056] = 4193, + [10057] = 4196, + [10058] = 4203, + [10059] = 4223, + [10060] = 8454, + [10061] = 8455, + [10062] = 4231, + [10063] = 4263, + [10064] = 4236, + [10065] = 4264, + [10066] = 4265, + [10067] = 4267, + [10068] = 4270, + [10069] = 4271, + [10070] = 4276, + [10071] = 4227, + [10072] = 4176, + [10073] = 4178, + [10074] = 8457, + [10075] = 4179, + [10076] = 4180, + [10077] = 4181, + [10078] = 4182, + [10079] = 4183, + [10080] = 4184, + [10081] = 8460, + [10082] = 4194, + [10083] = 4195, + [10084] = 4211, + [10085] = 8462, + [10086] = 8464, + [10087] = 8469, + [10088] = 8450, + [10089] = 4233, + [10090] = 4234, + [10091] = 8452, + [10092] = 4237, + [10093] = 4238, + [10094] = 4212, + [10095] = 4239, + [10096] = 4240, + [10097] = 4241, + [10098] = 4245, + [10099] = 8467, + [10100] = 8493, + [10101] = 4246, + [10102] = 4268, + [10103] = 4268, + [10104] = 4206, + [10105] = 4249, + [10106] = 4213, + [10107] = 4214, + [10108] = 4220, + [10109] = 4222, + [10110] = 4226, + [10111] = 4206, + [10112] = 8480, + [10113] = 8482, + [10114] = 8450, + [10115] = 4208, + [10116] = 4218, + [10117] = 4219, + [10118] = 4243, + [10119] = 4248, + [10120] = 4256, + [10121] = 4269, + [10122] = 8490, + [10123] = 8452, + [10124] = 4272, + [10125] = 4177, + [10126] = 4188, + [10127] = 4189, + [10128] = 4193, + [10129] = 4196, + [10130] = 4203, + [10131] = 4223, + [10132] = 4277, + [10133] = 8454, + [10134] = 8455, + [10135] = 4231, + [10136] = 4263, + [10137] = 4264, + [10138] = 4265, + [10139] = 4267, + [10140] = 4270, + [10141] = 4271, + [10142] = 4276, + [10143] = 4227, + [10144] = 4176, + [10145] = 4178, + [10146] = 8457, + [10147] = 4179, + [10148] = 4180, + [10149] = 4181, + [10150] = 4182, + [10151] = 4183, + [10152] = 4184, + [10153] = 8460, + [10154] = 4194, + [10155] = 4195, + [10156] = 4211, + [10157] = 8462, + [10158] = 8464, + [10159] = 8469, + [10160] = 4249, + [10161] = 4213, + [10162] = 4214, + [10163] = 4220, + [10164] = 4212, + [10165] = 9006, + [10166] = 8493, + [10167] = 4222, + [10168] = 8490, + [10169] = 8452, + [10170] = 8493, + [10171] = 8485, + [10172] = 4226, + [10173] = 4208, + [10174] = 4218, + [10175] = 4219, + [10176] = 4243, + [10177] = 8468, + [10178] = 4248, + [10179] = 4256, + [10180] = 8454, + [10181] = 4269, + [10182] = 8455, + [10183] = 8448, + [10184] = 7191, + [10185] = 4179, + [10186] = 8457, + [10187] = 4272, + [10188] = 4177, + [10189] = 4188, + [10190] = 4189, + [10191] = 4193, + [10192] = 4196, + [10193] = 4203, + [10194] = 4223, + [10195] = 4277, + [10196] = 4180, + [10197] = 4233, + [10198] = 4234, + [10199] = 8460, + [10200] = 4237, + [10201] = 4238, + [10202] = 4181, + [10203] = 4239, + [10204] = 4240, + [10205] = 4241, + [10206] = 4245, + [10207] = 8467, + [10208] = 4246, + [10209] = 6606, + [10210] = 4268, + [10211] = 4206, + [10212] = 4249, + [10213] = 4213, + [10214] = 4214, + [10215] = 4220, + [10216] = 4222, + [10217] = 4226, + [10218] = 4256, + [10219] = 8485, + [10220] = 4208, + [10221] = 4218, + [10222] = 4219, + [10223] = 4243, + [10224] = 4248, + [10225] = 4256, + [10226] = 4229, + [10227] = 4269, + [10228] = 8468, + [10229] = 4272, + [10230] = 4177, + [10231] = 4188, + [10232] = 4189, + [10233] = 4193, + [10234] = 4196, + [10235] = 4203, + [10236] = 4223, + [10237] = 4277, + [10238] = 4231, + [10239] = 4263, + [10240] = 4264, + [10241] = 4265, + [10242] = 4267, + [10243] = 4270, + [10244] = 4271, + [10245] = 4276, + [10246] = 4227, + [10247] = 4176, + [10248] = 4178, + [10249] = 4179, + [10250] = 4180, + [10251] = 4181, + [10252] = 4182, + [10253] = 4183, + [10254] = 4182, + [10255] = 4184, + [10256] = 4194, + [10257] = 4195, + [10258] = 4211, + [10259] = 4231, + [10260] = 4263, + [10261] = 4264, + [10262] = 4265, + [10263] = 4267, + [10264] = 4212, + [10265] = 4270, + [10266] = 4271, + [10267] = 4276, + [10268] = 4227, + [10269] = 8467, + [10270] = 4176, + [10271] = 4178, + [10272] = 10272, + [10273] = 10273, + [10274] = 10274, + [10275] = 4179, + [10276] = 4180, + [10277] = 4181, + [10278] = 4182, + [10279] = 4183, + [10280] = 4184, + [10281] = 8462, + [10282] = 8464, + [10283] = 8469, + [10284] = 4194, + [10285] = 4195, + [10286] = 4211, + [10287] = 4229, + [10288] = 4212, + [10289] = 9007, + [10290] = 4181, + [10291] = 4183, + [10292] = 4266, + [10293] = 4184, + [10294] = 4229, + [10295] = 4194, + [10296] = 4195, + [10297] = 4211, + [10298] = 8493, + [10299] = 4182, + [10300] = 4242, + [10301] = 4237, + [10302] = 4266, + [10303] = 4212, + [10304] = 4152, + [10305] = 4183, + [10306] = 4152, + [10307] = 4238, + [10308] = 4266, + [10309] = 8485, + [10310] = 8468, + [10311] = 8448, + [10312] = 4243, + [10313] = 4236, + [10314] = 4229, + [10315] = 4242, + [10316] = 4152, + [10317] = 4242, + [10318] = 4184, + [10319] = 4203, + [10320] = 8762, + [10321] = 8485, + [10322] = 4152, + [10323] = 8485, + [10324] = 8468, + [10325] = 8468, + [10326] = 8468, + [10327] = 8467, + [10328] = 4269, + [10329] = 4152, + [10330] = 8549, + [10331] = 8467, + [10332] = 4236, + [10333] = 8454, + [10334] = 7189, + [10335] = 8560, + [10336] = 4236, + [10337] = 4242, + [10338] = 8448, + [10339] = 8549, + [10340] = 8455, + [10341] = 7190, + [10342] = 8480, + [10343] = 8482, + [10344] = 8450, + [10345] = 8490, + [10346] = 8452, + [10347] = 8454, + [10348] = 8455, + [10349] = 8457, + [10350] = 8460, + [10351] = 8462, + [10352] = 8464, + [10353] = 8469, + [10354] = 8493, + [10355] = 4266, + [10356] = 4152, + [10357] = 8549, + [10358] = 4236, + [10359] = 4229, + [10360] = 8467, + [10361] = 4233, + [10362] = 4234, + [10363] = 4229, + [10364] = 4152, + [10365] = 4237, + [10366] = 4238, + [10367] = 8559, + [10368] = 8560, + [10369] = 8549, + [10370] = 4239, + [10371] = 4240, + [10372] = 4241, + [10373] = 4245, + [10374] = 4246, + [10375] = 8549, + [10376] = 4242, + [10377] = 8448, + [10378] = 4194, + [10379] = 8549, + [10380] = 4233, + [10381] = 4268, + [10382] = 4206, + [10383] = 4249, + [10384] = 4213, + [10385] = 4214, + [10386] = 8762, + [10387] = 4195, + [10388] = 4220, + [10389] = 4222, + [10390] = 8480, + [10391] = 8482, + [10392] = 8450, + [10393] = 4226, + [10394] = 4208, + [10395] = 4266, + [10396] = 4218, + [10397] = 4219, + [10398] = 8549, + [10399] = 4211, + [10400] = 4243, + [10401] = 4248, + [10402] = 8559, + [10403] = 8560, + [10404] = 8762, + [10405] = 8549, + [10406] = 4236, + [10407] = 4256, + [10408] = 7312, + [10409] = 4269, + [10410] = 4272, + [10411] = 4177, + [10412] = 4188, + [10413] = 8549, + [10414] = 4189, + [10415] = 7424, + [10416] = 4242, + [10417] = 8480, + [10418] = 8480, + [10419] = 8482, + [10420] = 8450, + [10421] = 8490, + [10422] = 4193, + [10423] = 8549, + [10424] = 4196, + [10425] = 4203, + [10426] = 4223, + [10427] = 4277, + [10428] = 4231, + [10429] = 4263, + [10430] = 8549, + [10431] = 8549, + [10432] = 4264, + [10433] = 4265, + [10434] = 8452, + [10435] = 4267, + [10436] = 8762, + [10437] = 8454, + [10438] = 4270, + [10439] = 4271, + [10440] = 8467, + [10441] = 8482, + [10442] = 8455, + [10443] = 4276, + [10444] = 8457, + [10445] = 8559, + [10446] = 8560, + [10447] = 4227, + [10448] = 4176, + [10449] = 4178, + [10450] = 4179, + [10451] = 4180, + [10452] = 4181, + [10453] = 4182, + [10454] = 4183, + [10455] = 4184, + [10456] = 4194, + [10457] = 4195, + [10458] = 8559, + [10459] = 8560, + [10460] = 4211, + [10461] = 4266, + [10462] = 8559, + [10463] = 8560, + [10464] = 4234, + [10465] = 4223, + [10466] = 8460, + [10467] = 8559, + [10468] = 8560, + [10469] = 4233, + [10470] = 8467, + [10471] = 4234, + [10472] = 8480, + [10473] = 8482, + [10474] = 8450, + [10475] = 4233, + [10476] = 8490, + [10477] = 8452, + [10478] = 4237, + [10479] = 8454, + [10480] = 8455, + [10481] = 8457, + [10482] = 8559, + [10483] = 8560, + [10484] = 8485, + [10485] = 8460, + [10486] = 8468, + [10487] = 8462, + [10488] = 8464, + [10489] = 8469, + [10490] = 4237, + [10491] = 8467, + [10492] = 4238, + [10493] = 8462, + [10494] = 8559, + [10495] = 8560, + [10496] = 8493, + [10497] = 8480, + [10498] = 4234, + [10499] = 4277, + [10500] = 4266, + [10501] = 8482, + [10502] = 8464, + [10503] = 8469, + [10504] = 8450, + [10505] = 4212, + [10506] = 4239, + [10507] = 8480, + [10508] = 4240, + [10509] = 8482, + [10510] = 8450, + [10511] = 4266, + [10512] = 4241, + [10513] = 4245, + [10514] = 8490, + [10515] = 8559, + [10516] = 8560, + [10517] = 4246, + [10518] = 8452, + [10519] = 4238, + [10520] = 8490, + [10521] = 8452, + [10522] = 8559, + [10523] = 8560, + [10524] = 4268, + [10525] = 4206, + [10526] = 4249, + [10527] = 4213, + [10528] = 8493, + [10529] = 8490, + [10530] = 8452, + [10531] = 8454, + [10532] = 8454, + [10533] = 8455, + [10534] = 4214, + [10535] = 4220, + [10536] = 4222, + [10537] = 8454, + [10538] = 8455, + [10539] = 4226, + [10540] = 4239, + [10541] = 8559, + [10542] = 8560, + [10543] = 8457, + [10544] = 4208, + [10545] = 4237, + [10546] = 4218, + [10547] = 4219, + [10548] = 4243, + [10549] = 4248, + [10550] = 4256, + [10551] = 8460, + [10552] = 4269, + [10553] = 8462, + [10554] = 8464, + [10555] = 8469, + [10556] = 8455, + [10557] = 8457, + [10558] = 4272, + [10559] = 4177, + [10560] = 4188, + [10561] = 4189, + [10562] = 4193, + [10563] = 4196, + [10564] = 4203, + [10565] = 4223, + [10566] = 4277, + [10567] = 4231, + [10568] = 4263, + [10569] = 8493, + [10570] = 4264, + [10571] = 4265, + [10572] = 8457, + [10573] = 4267, + [10574] = 4270, + [10575] = 8460, + [10576] = 4271, + [10577] = 4276, + [10578] = 4227, + [10579] = 4176, + [10580] = 4178, + [10581] = 8462, + [10582] = 8464, + [10583] = 8485, + [10584] = 8450, + [10585] = 4179, + [10586] = 4180, + [10587] = 4181, + [10588] = 4182, + [10589] = 4183, + [10590] = 4184, + [10591] = 10591, + [10592] = 8469, + [10593] = 8468, + [10594] = 4194, + [10595] = 4195, + [10596] = 4211, + [10597] = 4240, + [10598] = 4238, + [10599] = 4241, + [10600] = 4212, + [10601] = 4226, + [10602] = 4266, + [10603] = 4208, + [10604] = 4245, + [10605] = 8493, + [10606] = 4218, + [10607] = 4219, + [10608] = 4243, + [10609] = 4248, + [10610] = 10610, + [10611] = 4233, + [10612] = 4234, + [10613] = 4237, + [10614] = 4238, + [10615] = 4239, + [10616] = 4256, + [10617] = 4240, + [10618] = 4241, + [10619] = 8485, + [10620] = 4245, + [10621] = 4269, + [10622] = 8490, + [10623] = 8468, + [10624] = 10624, + [10625] = 10625, + [10626] = 8832, + [10627] = 8467, + [10628] = 4248, + [10629] = 8485, + [10630] = 4212, + [10631] = 4229, + [10632] = 4239, + [10633] = 4246, + [10634] = 8460, + [10635] = 4268, + [10636] = 4206, + [10637] = 4249, + [10638] = 4213, + [10639] = 4214, + [10640] = 4220, + [10641] = 4222, + [10642] = 4226, + [10643] = 8485, + [10644] = 4208, + [10645] = 4218, + [10646] = 4219, + [10647] = 4243, + [10648] = 4248, + [10649] = 4256, + [10650] = 4269, + [10651] = 4240, + [10652] = 8452, + [10653] = 8448, + [10654] = 8468, + [10655] = 4272, + [10656] = 10656, + [10657] = 10657, + [10658] = 4177, + [10659] = 4188, + [10660] = 4189, + [10661] = 8462, + [10662] = 8464, + [10663] = 4152, + [10664] = 8467, + [10665] = 10665, + [10666] = 4231, + [10667] = 4263, + [10668] = 4193, + [10669] = 4196, + [10670] = 4229, + [10671] = 4212, + [10672] = 8454, + [10673] = 4203, + [10674] = 10674, + [10675] = 8469, + [10676] = 4236, + [10677] = 4223, + [10678] = 4277, + [10679] = 8485, + [10680] = 8468, + [10681] = 8455, + [10682] = 4246, + [10683] = 8448, + [10684] = 4239, + [10685] = 4231, + [10686] = 8480, + [10687] = 4264, + [10688] = 4229, + [10689] = 4263, + [10690] = 4264, + [10691] = 10691, + [10692] = 4240, + [10693] = 8448, + [10694] = 4265, + [10695] = 4267, + [10696] = 8480, + [10697] = 4270, + [10698] = 8482, + [10699] = 8457, + [10700] = 8450, + [10701] = 8468, + [10702] = 4241, + [10703] = 8467, + [10704] = 8490, + [10705] = 8452, + [10706] = 10706, + [10707] = 4271, + [10708] = 4276, + [10709] = 4152, + [10710] = 4227, + [10711] = 4272, + [10712] = 8448, + [10713] = 4176, + [10714] = 4178, + [10715] = 4268, + [10716] = 4206, + [10717] = 4245, + [10718] = 8454, + [10719] = 4179, + [10720] = 4180, + [10721] = 4249, + [10722] = 8455, + [10723] = 8457, + [10724] = 4181, + [10725] = 4265, + [10726] = 4177, + [10727] = 8482, + [10728] = 4188, + [10729] = 4189, + [10730] = 4193, + [10731] = 4196, + [10732] = 4203, + [10733] = 4223, + [10734] = 4182, + [10735] = 4183, + [10736] = 8457, + [10737] = 4246, + [10738] = 4277, + [10739] = 4184, + [10740] = 8460, + [10741] = 8462, + [10742] = 8464, + [10743] = 10743, + [10744] = 8460, + [10745] = 4194, + [10746] = 8469, + [10747] = 4195, + [10748] = 8462, + [10749] = 8464, + [10750] = 8469, + [10751] = 8467, + [10752] = 4267, + [10753] = 4231, + [10754] = 4263, + [10755] = 4241, + [10756] = 4213, + [10757] = 4211, + [10758] = 4229, + [10759] = 4214, + [10760] = 8450, + [10761] = 4264, + [10762] = 4265, + [10763] = 10763, + [10764] = 4267, + [10765] = 4234, + [10766] = 4220, + [10767] = 10767, + [10768] = 8493, + [10769] = 4268, + [10770] = 4270, + [10771] = 8493, + [10772] = 4206, + [10773] = 4249, + [10774] = 4213, + [10775] = 4214, + [10776] = 10776, + [10777] = 4220, + [10778] = 4245, + [10779] = 4266, + [10780] = 4233, + [10781] = 4222, + [10782] = 4271, + [10783] = 4276, + [10784] = 4236, + [10785] = 4176, + [10786] = 4178, + [10787] = 4229, + [10788] = 10788, + [10789] = 8493, + [10790] = 4234, + [10791] = 4189, + [10792] = 4226, + [10793] = 4237, + [10794] = 4242, + [10795] = 8448, + [10796] = 8480, + [10797] = 8482, + [10798] = 8450, + [10799] = 8448, + [10800] = 8480, + [10801] = 4242, + [10802] = 4238, + [10803] = 4212, + [10804] = 8482, + [10805] = 4193, + [10806] = 4196, + [10807] = 4266, + [10808] = 8490, + [10809] = 4270, + [10810] = 8452, + [10811] = 4236, + [10812] = 4239, + [10813] = 4240, + [10814] = 4229, + [10815] = 8450, + [10816] = 8490, + [10817] = 8452, + [10818] = 4241, + [10819] = 4245, + [10820] = 8559, + [10821] = 4242, + [10822] = 8454, + [10823] = 8467, + [10824] = 8455, + [10825] = 8454, + [10826] = 8455, + [10827] = 4246, + [10828] = 8457, + [10829] = 8457, + [10830] = 4242, + [10831] = 4268, + [10832] = 8460, + [10833] = 4206, + [10834] = 8460, + [10835] = 4271, + [10836] = 4249, + [10837] = 8462, + [10838] = 8464, + [10839] = 4213, + [10840] = 8469, + [10841] = 4276, + [10842] = 4214, + [10843] = 8480, + [10844] = 4220, + [10845] = 4236, + [10846] = 4222, + [10847] = 4179, + [10848] = 4226, + [10849] = 4227, + [10850] = 8460, + [10851] = 8462, + [10852] = 4208, + [10853] = 8493, + [10854] = 4218, + [10855] = 8485, + [10856] = 8482, + [10857] = 4219, + [10858] = 4222, + [10859] = 4242, + [10860] = 4243, + [10861] = 8450, + [10862] = 4248, + [10863] = 4256, + [10864] = 4269, + [10865] = 10865, + [10866] = 8490, + [10867] = 4272, + [10868] = 9019, + [10869] = 4177, + [10870] = 8452, + [10871] = 4176, + [10872] = 4188, + [10873] = 4189, + [10874] = 8464, + [10875] = 4236, + [10876] = 4193, + [10877] = 8485, + [10878] = 4196, + [10879] = 8454, + [10880] = 4203, + [10881] = 8455, + [10882] = 4223, + [10883] = 8457, + [10884] = 8460, + [10885] = 4277, + [10886] = 4208, + [10887] = 8462, + [10888] = 4231, + [10889] = 8464, + [10890] = 8469, + [10891] = 4263, + [10892] = 4264, + [10893] = 4236, + [10894] = 9033, + [10895] = 4265, + [10896] = 8493, + [10897] = 4267, + [10898] = 4270, + [10899] = 4242, + [10900] = 8468, + [10901] = 4271, + [10902] = 4218, + [10903] = 4276, + [10904] = 4227, + [10905] = 4176, + [10906] = 8485, + [10907] = 4178, + [10908] = 4179, + [10909] = 4180, + [10910] = 8462, + [10911] = 4181, + [10912] = 8464, + [10913] = 4182, + [10914] = 8469, + [10915] = 4183, + [10916] = 4272, + [10917] = 4184, + [10918] = 4177, + [10919] = 4194, + [10920] = 4195, + [10921] = 4211, + [10922] = 8490, + [10923] = 4178, + [10924] = 4266, + [10925] = 4152, + [10926] = 4233, + [10927] = 8493, + [10928] = 4234, + [10929] = 4188, + [10930] = 8469, + [10931] = 4237, + [10932] = 4238, + [10933] = 4212, + [10934] = 4233, + [10935] = 8448, + [10936] = 4239, + [10937] = 4240, + [10938] = 4234, + [10939] = 9005, + [10940] = 4241, + [10941] = 4237, + [10942] = 4238, + [10943] = 4245, + [10944] = 4239, + [10945] = 4240, + [10946] = 4241, + [10947] = 4245, + [10948] = 4246, + [10949] = 8467, + [10950] = 4246, + [10951] = 4268, + [10952] = 4246, + [10953] = 4180, + [10954] = 4268, + [10955] = 4206, + [10956] = 4249, + [10957] = 4213, + [10958] = 4214, + [10959] = 4206, + [10960] = 4249, + [10961] = 4213, + [10962] = 8480, + [10963] = 4220, + [10964] = 8468, + [10965] = 4222, + [10966] = 4214, + [10967] = 4220, + [10968] = 4222, + [10969] = 4226, + [10970] = 8482, + [10971] = 8480, + [10972] = 4226, + [10973] = 8448, + [10974] = 8485, + [10975] = 8482, + [10976] = 4208, + [10977] = 4218, + [10978] = 4219, + [10979] = 4243, + [10980] = 4248, + [10981] = 4256, + [10982] = 4269, + [10983] = 4272, + [10984] = 4177, + [10985] = 4188, + [10986] = 4189, + [10987] = 4193, + [10988] = 4196, + [10989] = 4203, + [10990] = 4223, + [10991] = 4277, + [10992] = 4231, + [10993] = 4263, + [10994] = 4264, + [10995] = 4265, + [10996] = 4267, + [10997] = 4270, + [10998] = 4271, + [10999] = 4276, + [11000] = 4227, + [11001] = 4176, + [11002] = 4178, + [11003] = 4179, + [11004] = 4180, + [11005] = 4181, + [11006] = 4182, + [11007] = 4183, + [11008] = 4184, + [11009] = 4194, + [11010] = 4195, + [11011] = 4211, + [11012] = 8450, + [11013] = 4208, + [11014] = 4218, + [11015] = 4219, + [11016] = 4243, + [11017] = 4219, + [11018] = 4233, + [11019] = 4248, + [11020] = 4256, + [11021] = 4269, + [11022] = 4277, + [11023] = 4241, + [11024] = 8560, + [11025] = 8457, + [11026] = 4184, + [11027] = 8464, + [11028] = 8469, + [11029] = 4194, + [11030] = 4195, + [11031] = 8559, + [11032] = 8560, + [11033] = 4245, + [11034] = 4211, + [11035] = 4184, + [11036] = 8460, + [11037] = 4246, + [11038] = 4194, + [11039] = 4249, + [11040] = 8493, + [11041] = 4195, + [11042] = 8462, + [11043] = 8482, + [11044] = 8464, + [11045] = 8469, + [11046] = 4226, + [11047] = 8549, + [11048] = 8485, + [11049] = 8450, + [11050] = 4211, + [11051] = 4268, + [11052] = 8468, + [11053] = 4178, + [11054] = 4206, + [11055] = 4242, + [11056] = 8467, + [11057] = 4249, + [11058] = 4213, + [11059] = 8559, + [11060] = 8560, + [11061] = 4188, + [11062] = 4214, + [11063] = 4220, + [11064] = 4222, + [11065] = 4226, + [11066] = 4189, + [11067] = 4208, + [11068] = 4237, + [11069] = 4218, + [11070] = 4219, + [11071] = 4243, + [11072] = 4240, + [11073] = 4248, + [11074] = 4214, + [11075] = 4256, + [11076] = 4269, + [11077] = 4212, + [11078] = 4272, + [11079] = 4177, + [11080] = 4188, + [11081] = 4236, + [11082] = 4268, + [11083] = 4238, + [11084] = 4239, + [11085] = 4189, + [11086] = 4193, + [11087] = 4193, + [11088] = 4196, + [11089] = 4240, + [11090] = 4206, + [11091] = 4249, + [11092] = 4203, + [11093] = 4241, + [11094] = 4223, + [11095] = 4277, + [11096] = 4231, + [11097] = 8480, + [11098] = 8493, + [11099] = 8482, + [11100] = 8450, + [11101] = 8467, + [11102] = 4196, + [11103] = 4231, + [11104] = 8462, + [11105] = 4219, + [11106] = 4263, + [11107] = 4264, + [11108] = 4265, + [11109] = 4242, + [11110] = 8457, + [11111] = 4267, + [11112] = 8490, + [11113] = 8452, + [11114] = 4270, + [11115] = 4271, + [11116] = 4276, + [11117] = 4227, + [11118] = 8832, + [11119] = 8468, + [11120] = 4176, + [11121] = 4178, + [11122] = 4266, + [11123] = 4179, + [11124] = 4233, + [11125] = 4243, + [11126] = 4203, + [11127] = 8480, + [11128] = 8454, + [11129] = 8455, + [11130] = 4236, + [11131] = 8482, + [11132] = 8450, + [11133] = 4193, + [11134] = 4248, + [11135] = 4245, + [11136] = 4180, + [11137] = 4181, + [11138] = 4182, + [11139] = 4183, + [11140] = 4184, + [11141] = 4246, + [11142] = 8448, + [11143] = 4194, + [11144] = 8457, + [11145] = 8549, + [11146] = 4213, + [11147] = 4195, + [11148] = 4263, + [11149] = 4211, + [11150] = 4234, + [11151] = 4238, + [11152] = 8490, + [11153] = 4233, + [11154] = 11154, + [11155] = 8452, + [11156] = 8460, + [11157] = 4234, + [11158] = 4237, + [11159] = 4237, + [11160] = 4238, + [11161] = 4212, + [11162] = 4239, + [11163] = 8462, + [11164] = 8464, + [11165] = 8469, + [11166] = 4236, + [11167] = 8549, + [11168] = 4240, + [11169] = 8480, + [11170] = 8482, + [11171] = 4229, + [11172] = 8450, + [11173] = 4241, + [11174] = 4272, + [11175] = 4220, + [11176] = 4245, + [11177] = 8467, + [11178] = 5658, + [11179] = 4246, + [11180] = 4242, + [11181] = 8493, + [11182] = 4264, + [11183] = 4269, + [11184] = 8490, + [11185] = 8464, + [11186] = 4242, + [11187] = 8452, + [11188] = 4177, + [11189] = 4268, + [11190] = 8454, + [11191] = 11191, + [11192] = 8455, + [11193] = 8549, + [11194] = 4188, + [11195] = 4189, + [11196] = 4206, + [11197] = 4265, + [11198] = 4249, + [11199] = 4213, + [11200] = 8480, + [11201] = 4214, + [11202] = 8454, + [11203] = 4220, + [11204] = 8480, + [11205] = 8455, + [11206] = 4222, + [11207] = 4226, + [11208] = 4196, + [11209] = 4238, + [11210] = 4267, + [11211] = 4208, + [11212] = 4193, + [11213] = 4270, + [11214] = 8482, + [11215] = 4218, + [11216] = 8549, + [11217] = 11217, + [11218] = 4219, + [11219] = 4243, + [11220] = 4248, + [11221] = 8457, + [11222] = 4256, + [11223] = 4179, + [11224] = 4180, + [11225] = 4269, + [11226] = 8482, + [11227] = 8450, + [11228] = 8457, + [11229] = 4181, + [11230] = 4272, + [11231] = 4177, + [11232] = 4188, + [11233] = 8762, + [11234] = 4194, + [11235] = 4182, + [11236] = 4213, + [11237] = 4189, + [11238] = 4249, + [11239] = 4193, + [11240] = 4196, + [11241] = 8460, + [11242] = 4203, + [11243] = 4223, + [11244] = 4183, + [11245] = 4184, + [11246] = 8480, + [11247] = 4277, + [11248] = 8482, + [11249] = 8450, + [11250] = 4231, + [11251] = 8462, + [11252] = 8464, + [11253] = 8469, + [11254] = 4208, + [11255] = 4263, + [11256] = 4214, + [11257] = 8490, + [11258] = 8452, + [11259] = 4195, + [11260] = 4246, + [11261] = 8490, + [11262] = 4196, + [11263] = 4203, + [11264] = 8460, + [11265] = 4264, + [11266] = 4212, + [11267] = 4268, + [11268] = 4242, + [11269] = 8549, + [11270] = 8452, + [11271] = 8462, + [11272] = 8448, + [11273] = 8464, + [11274] = 8469, + [11275] = 4152, + [11276] = 8464, + [11277] = 4265, + [11278] = 4267, + [11279] = 4226, + [11280] = 4270, + [11281] = 4236, + [11282] = 4271, + [11283] = 4276, + [11284] = 4266, + [11285] = 4223, + [11286] = 4208, + [11287] = 4227, + [11288] = 4176, + [11289] = 4178, + [11290] = 4271, + [11291] = 8493, + [11292] = 8480, + [11293] = 4256, + [11294] = 8559, + [11295] = 8560, + [11296] = 8549, + [11297] = 4218, + [11298] = 8480, + [11299] = 8762, + [11300] = 4211, + [11301] = 4242, + [11302] = 4179, + [11303] = 11303, + [11304] = 4180, + [11305] = 11305, + [11306] = 8485, + [11307] = 8482, + [11308] = 8450, + [11309] = 8490, + [11310] = 8452, + [11311] = 8455, + [11312] = 8493, + [11313] = 8762, + [11314] = 4219, + [11315] = 4243, + [11316] = 4241, + [11317] = 4181, + [11318] = 8485, + [11319] = 4182, + [11320] = 8454, + [11321] = 8455, + [11322] = 4248, + [11323] = 8454, + [11324] = 8455, + [11325] = 8457, + [11326] = 8454, + [11327] = 4183, + [11328] = 4276, + [11329] = 11329, + [11330] = 8454, + [11331] = 8468, + [11332] = 8467, + [11333] = 4269, + [11334] = 4268, + [11335] = 4212, + [11336] = 8460, + [11337] = 4256, + [11338] = 10040, + [11339] = 10041, + [11340] = 4269, + [11341] = 10042, + [11342] = 10043, + [11343] = 8462, + [11344] = 4152, + [11345] = 11345, + [11346] = 4218, + [11347] = 8468, + [11348] = 4220, + [11349] = 4222, + [11350] = 4226, + [11351] = 11351, + [11352] = 11352, + [11353] = 4213, + [11354] = 8485, + [11355] = 8448, + [11356] = 8485, + [11357] = 8549, + [11358] = 8490, + [11359] = 4233, + [11360] = 4227, + [11361] = 8464, + [11362] = 4229, + [11363] = 8469, + [11364] = 4206, + [11365] = 4208, + [11366] = 4277, + [11367] = 8493, + [11368] = 4218, + [11369] = 4184, + [11370] = 8468, + [11371] = 4239, + [11372] = 4194, + [11373] = 4249, + [11374] = 4195, + [11375] = 4266, + [11376] = 4176, + [11377] = 4213, + [11378] = 4178, + [11379] = 4272, + [11380] = 4242, + [11381] = 4214, + [11382] = 4220, + [11383] = 8455, + [11384] = 8485, + [11385] = 4272, + [11386] = 4177, + [11387] = 4188, + [11388] = 8462, + [11389] = 4246, + [11390] = 8467, + [11391] = 4189, + [11392] = 8559, + [11393] = 8457, + [11394] = 8560, + [11395] = 4193, + [11396] = 4196, + [11397] = 4203, + [11398] = 4223, + [11399] = 8468, + [11400] = 4211, + [11401] = 8467, + [11402] = 4219, + [11403] = 4277, + [11404] = 4240, + [11405] = 4223, + [11406] = 4266, + [11407] = 4233, + [11408] = 8482, + [11409] = 8485, + [11410] = 8559, + [11411] = 8560, + [11412] = 8549, + [11413] = 4234, + [11414] = 8450, + [11415] = 4237, + [11416] = 4238, + [11417] = 4212, + [11418] = 8467, + [11419] = 4239, + [11420] = 4229, + [11421] = 4240, + [11422] = 4236, + [11423] = 4241, + [11424] = 4245, + [11425] = 8559, + [11426] = 8560, + [11427] = 8762, + [11428] = 4243, + [11429] = 4246, + [11430] = 4194, + [11431] = 4203, + [11432] = 4179, + [11433] = 4223, + [11434] = 11434, + [11435] = 4229, + [11436] = 4231, + [11437] = 4263, + [11438] = 8460, + [11439] = 8450, + [11440] = 4264, + [11441] = 4268, + [11442] = 4180, + [11443] = 4222, + [11444] = 8559, + [11445] = 8560, + [11446] = 8549, + [11447] = 4229, + [11448] = 4236, + [11449] = 4266, + [11450] = 4181, + [11451] = 4256, + [11452] = 4248, + [11453] = 4277, + [11454] = 4245, + [11455] = 4266, + [11456] = 4265, + [11457] = 4231, + [11458] = 8462, + [11459] = 8490, + [11460] = 4267, + [11461] = 8448, + [11462] = 8464, + [11463] = 4270, + [11464] = 4263, + [11465] = 4226, + [11466] = 8762, + [11467] = 11467, + [11468] = 8452, + [11469] = 4206, + [11470] = 4256, + [11471] = 4272, + [11472] = 4177, + [11473] = 8469, + [11474] = 4182, + [11475] = 8467, + [11476] = 8454, + [11477] = 8455, + [11478] = 4234, + [11479] = 8467, + [11480] = 4212, + [11481] = 8762, + [11482] = 4188, + [11483] = 4249, + [11484] = 4189, + [11485] = 8452, + [11486] = 4193, + [11487] = 8448, + [11488] = 8485, + [11489] = 4271, + [11490] = 4264, + [11491] = 8762, + [11492] = 4208, + [11493] = 8469, + [11494] = 4276, + [11495] = 4227, + [11496] = 4196, + [11497] = 4218, + [11498] = 4248, + [11499] = 4265, + [11500] = 4219, + [11501] = 4152, + [11502] = 4243, + [11503] = 4183, + [11504] = 4176, + [11505] = 8832, + [11506] = 4237, + [11507] = 4203, + [11508] = 4233, + [11509] = 11509, + [11510] = 8468, + [11511] = 4223, + [11512] = 4277, + [11513] = 4214, + [11514] = 8493, + [11515] = 8454, + [11516] = 8485, + [11517] = 8549, + [11518] = 8462, + [11519] = 8559, + [11520] = 8454, + [11521] = 4178, + [11522] = 4248, + [11523] = 4270, + [11524] = 4213, + [11525] = 8485, + [11526] = 8455, + [11527] = 8559, + [11528] = 8560, + [11529] = 8549, + [11530] = 8457, + [11531] = 4271, + [11532] = 8460, + [11533] = 8468, + [11534] = 8462, + [11535] = 4269, + [11536] = 8490, + [11537] = 8457, + [11538] = 4266, + [11539] = 4229, + [11540] = 8559, + [11541] = 8560, + [11542] = 4184, + [11543] = 8762, + [11544] = 4238, + [11545] = 4239, + [11546] = 4239, + [11547] = 8452, + [11548] = 8455, + [11549] = 4236, + [11550] = 4245, + [11551] = 4179, + [11552] = 4180, + [11553] = 8468, + [11554] = 8464, + [11555] = 4181, + [11556] = 4182, + [11557] = 4183, + [11558] = 4184, + [11559] = 4240, + [11560] = 4231, + [11561] = 4263, + [11562] = 8493, + [11563] = 4264, + [11564] = 8457, + [11565] = 4233, + [11566] = 4241, + [11567] = 4229, + [11568] = 4234, + [11569] = 4265, + [11570] = 4237, + [11571] = 4238, + [11572] = 8832, + [11573] = 11573, + [11574] = 4239, + [11575] = 4240, + [11576] = 8460, + [11577] = 4241, + [11578] = 8469, + [11579] = 4245, + [11580] = 4269, + [11581] = 4277, + [11582] = 4246, + [11583] = 4246, + [11584] = 4194, + [11585] = 4195, + [11586] = 4276, + [11587] = 4211, + [11588] = 8493, + [11589] = 4242, + [11590] = 4268, + [11591] = 4268, + [11592] = 8493, + [11593] = 4268, + [11594] = 8549, + [11595] = 4206, + [11596] = 4234, + [11597] = 4249, + [11598] = 4267, + [11599] = 4213, + [11600] = 4206, + [11601] = 4220, + [11602] = 4249, + [11603] = 4213, + [11604] = 4214, + [11605] = 4214, + [11606] = 8549, + [11607] = 4212, + [11608] = 4227, + [11609] = 4270, + [11610] = 4266, + [11611] = 4220, + [11612] = 4271, + [11613] = 4220, + [11614] = 4276, + [11615] = 4206, + [11616] = 4222, + [11617] = 8762, + [11618] = 4226, + [11619] = 4227, + [11620] = 4176, + [11621] = 8462, + [11622] = 8464, + [11623] = 4208, + [11624] = 8469, + [11625] = 4218, + [11626] = 8467, + [11627] = 4222, + [11628] = 8467, + [11629] = 4219, + [11630] = 4226, + [11631] = 4242, + [11632] = 4176, + [11633] = 8559, + [11634] = 8560, + [11635] = 8549, + [11636] = 4178, + [11637] = 4179, + [11638] = 4243, + [11639] = 11639, + [11640] = 4248, + [11641] = 4256, + [11642] = 4178, + [11643] = 4269, + [11644] = 4233, + [11645] = 8457, + [11646] = 4272, + [11647] = 4245, + [11648] = 4177, + [11649] = 4180, + [11650] = 8762, + [11651] = 4181, + [11652] = 4188, + [11653] = 11653, + [11654] = 8468, + [11655] = 4179, + [11656] = 4180, + [11657] = 4181, + [11658] = 4189, + [11659] = 11659, + [11660] = 4256, + [11661] = 8762, + [11662] = 4182, + [11663] = 4208, + [11664] = 4218, + [11665] = 4193, + [11666] = 4219, + [11667] = 4243, + [11668] = 4206, + [11669] = 4248, + [11670] = 4214, + [11671] = 4196, + [11672] = 8559, + [11673] = 8560, + [11674] = 8762, + [11675] = 4182, + [11676] = 4256, + [11677] = 4183, + [11678] = 4183, + [11679] = 4269, + [11680] = 4184, + [11681] = 4184, + [11682] = 4203, + [11683] = 4223, + [11684] = 8832, + [11685] = 4222, + [11686] = 8460, + [11687] = 4194, + [11688] = 4277, + [11689] = 4272, + [11690] = 4177, + [11691] = 4234, + [11692] = 4231, + [11693] = 4188, + [11694] = 4189, + [11695] = 4193, + [11696] = 4195, + [11697] = 4263, + [11698] = 4196, + [11699] = 4203, + [11700] = 8469, + [11701] = 4264, + [11702] = 4211, + [11703] = 4265, + [11704] = 4267, + [11705] = 4223, + [11706] = 8462, + [11707] = 4270, + [11708] = 4277, + [11709] = 4271, + [11710] = 4276, + [11711] = 8464, + [11712] = 4227, + [11713] = 4176, + [11714] = 8469, + [11715] = 11715, + [11716] = 4236, + [11717] = 4231, + [11718] = 4263, + [11719] = 5734, + [11720] = 4246, + [11721] = 4272, + [11722] = 4178, + [11723] = 4264, + [11724] = 4179, + [11725] = 4194, + [11726] = 4265, + [11727] = 4180, + [11728] = 4267, + [11729] = 8480, + [11730] = 11730, + [11731] = 4181, + [11732] = 4270, + [11733] = 4182, + [11734] = 4183, + [11735] = 4220, + [11736] = 4184, + [11737] = 4194, + [11738] = 8480, + [11739] = 4222, + [11740] = 4195, + [11741] = 8482, + [11742] = 4211, + [11743] = 4229, + [11744] = 4195, + [11745] = 4236, + [11746] = 4211, + [11747] = 8482, + [11748] = 8467, + [11749] = 8559, + [11750] = 8450, + [11751] = 4233, + [11752] = 4229, + [11753] = 8560, + [11754] = 8450, + [11755] = 4234, + [11756] = 4195, + [11757] = 4237, + [11758] = 4238, + [11759] = 4177, + [11760] = 4212, + [11761] = 4237, + [11762] = 4211, + [11763] = 4239, + [11764] = 4240, + [11765] = 4226, + [11766] = 4233, + [11767] = 8490, + [11768] = 4188, + [11769] = 8485, + [11770] = 4241, + [11771] = 4271, + [11772] = 4212, + [11773] = 8452, + [11774] = 8493, + [11775] = 4276, + [11776] = 4227, + [11777] = 4189, + [11778] = 4245, + [11779] = 4177, + [11780] = 4234, + [11781] = 8468, + [11782] = 4176, + [11783] = 4178, + [11784] = 8454, + [11785] = 8480, + [11786] = 11786, + [11787] = 8493, + [11788] = 4237, + [11789] = 4208, + [11790] = 10035, + [11791] = 4218, + [11792] = 4219, + [11793] = 4243, + [11794] = 4248, + [11795] = 4231, + [11796] = 4256, + [11797] = 4269, + [11798] = 4229, + [11799] = 4179, + [11800] = 4242, + [11801] = 8460, + [11802] = 4272, + [11803] = 4266, + [11804] = 4233, + [11805] = 4180, + [11806] = 4263, + [11807] = 8559, + [11808] = 8560, + [11809] = 4264, + [11810] = 4234, + [11811] = 4222, + [11812] = 4265, + [11813] = 4237, + [11814] = 4238, + [11815] = 4267, + [11816] = 4239, + [11817] = 4177, + [11818] = 4240, + [11819] = 4270, + [11820] = 4241, + [11821] = 4245, + [11822] = 4246, + [11823] = 11823, + [11824] = 8480, + [11825] = 4268, + [11826] = 8482, + [11827] = 8485, + [11828] = 8450, + [11829] = 4188, + [11830] = 4206, + [11831] = 4189, + [11832] = 11832, + [11833] = 4271, + [11834] = 4276, + [11835] = 4193, + [11836] = 8468, + [11837] = 4196, + [11838] = 4203, + [11839] = 4223, + [11840] = 4277, + [11841] = 8490, + [11842] = 8452, + [11843] = 4181, + [11844] = 4238, + [11845] = 4212, + [11846] = 4182, + [11847] = 4183, + [11848] = 4231, + [11849] = 8937, + [11850] = 8939, + [11851] = 8847, + [11852] = 8848, + [11853] = 8849, + [11854] = 4263, + [11855] = 4264, + [11856] = 8937, + [11857] = 8939, + [11858] = 8847, + [11859] = 8848, + [11860] = 8849, + [11861] = 4265, + [11862] = 4267, + [11863] = 8559, + [11864] = 8560, + [11865] = 4270, + [11866] = 4271, + [11867] = 8454, + [11868] = 8455, + [11869] = 8455, + [11870] = 8937, + [11871] = 8939, + [11872] = 8847, + [11873] = 8848, + [11874] = 8849, + [11875] = 4276, + [11876] = 4227, + [11877] = 4176, + [11878] = 4227, + [11879] = 4176, + [11880] = 4178, + [11881] = 4249, + [11882] = 4213, + [11883] = 4214, + [11884] = 8457, + [11885] = 4179, + [11886] = 8460, + [11887] = 4180, + [11888] = 4220, + [11889] = 4222, + [11890] = 4226, + [11891] = 4181, + [11892] = 4182, + [11893] = 8460, + [11894] = 4183, + [11895] = 4239, + [11896] = 4240, + [11897] = 4208, + [11898] = 4218, + [11899] = 8490, + [11900] = 8452, + [11901] = 4219, + [11902] = 4241, + [11903] = 4243, + [11904] = 4267, + [11905] = 8847, + [11906] = 11906, + [11907] = 11907, + [11908] = 11908, + [11909] = 11909, + [11910] = 11910, + [11911] = 11911, + [11912] = 11912, + [11913] = 8480, + [11914] = 8482, + [11915] = 8450, + [11916] = 8490, + [11917] = 8452, + [11918] = 11907, + [11919] = 11908, + [11920] = 8454, + [11921] = 8455, + [11922] = 11912, + [11923] = 8457, + [11924] = 4236, + [11925] = 8460, + [11926] = 4266, + [11927] = 8462, + [11928] = 8464, + [11929] = 8469, + [11930] = 11907, + [11931] = 11908, + [11932] = 4233, + [11933] = 4229, + [11934] = 4234, + [11935] = 4237, + [11936] = 4238, + [11937] = 11937, + [11938] = 4239, + [11939] = 4240, + [11940] = 4241, + [11941] = 4245, + [11942] = 11912, + [11943] = 8493, + [11944] = 4246, + [11945] = 11912, + [11946] = 4242, + [11947] = 4268, + [11948] = 4206, + [11949] = 4249, + [11950] = 4213, + [11951] = 4214, + [11952] = 4220, + [11953] = 11912, + [11954] = 4222, + [11955] = 11955, + [11956] = 11956, + [11957] = 11957, + [11958] = 4226, + [11959] = 8485, + [11960] = 11912, + [11961] = 8468, + [11962] = 4208, + [11963] = 4218, + [11964] = 4219, + [11965] = 4243, + [11966] = 4248, + [11967] = 4256, + [11968] = 11968, + [11969] = 4269, + [11970] = 11912, + [11971] = 11971, + [11972] = 11972, + [11973] = 8467, + [11974] = 4272, + [11975] = 4177, + [11976] = 4188, + [11977] = 4189, + [11978] = 4193, + [11979] = 4196, + [11980] = 4203, + [11981] = 4223, + [11982] = 4277, + [11983] = 11912, + [11984] = 11984, + [11985] = 4231, + [11986] = 4263, + [11987] = 4264, + [11988] = 4265, + [11989] = 4267, + [11990] = 4270, + [11991] = 4271, + [11992] = 4276, + [11993] = 4227, + [11994] = 4176, + [11995] = 4178, + [11996] = 11912, + [11997] = 4179, + [11998] = 4180, + [11999] = 4181, + [12000] = 4182, + [12001] = 4183, + [12002] = 4184, + [12003] = 11912, + [12004] = 4194, + [12005] = 4195, + [12006] = 4211, + [12007] = 4212, + [12008] = 11912, + [12009] = 11912, + [12010] = 12010, + [12011] = 12011, + [12012] = 11912, + [12013] = 11912, + [12014] = 11912, + [12015] = 11912, + [12016] = 11912, + [12017] = 12017, + [12018] = 11907, + [12019] = 12019, + [12020] = 11912, + [12021] = 11912, + [12022] = 11908, + [12023] = 11912, + [12024] = 8480, + [12025] = 8482, + [12026] = 8450, + [12027] = 8490, + [12028] = 8452, + [12029] = 11912, + [12030] = 8454, + [12031] = 8455, + [12032] = 11909, + [12033] = 11910, + [12034] = 8457, + [12035] = 8460, + [12036] = 8462, + [12037] = 8464, + [12038] = 8469, + [12039] = 11912, + [12040] = 11912, + [12041] = 8493, + [12042] = 11912, + [12043] = 11912, + [12044] = 12044, + [12045] = 11912, + [12046] = 8485, + [12047] = 8468, + [12048] = 11912, + [12049] = 11912, + [12050] = 8467, + [12051] = 11912, + [12052] = 8832, + [12053] = 12053, + [12054] = 11912, + [12055] = 11912, + [12056] = 9071, + [12057] = 11912, + [12058] = 12058, + [12059] = 12059, + [12060] = 12060, + [12061] = 11912, + [12062] = 12062, + [12063] = 12063, + [12064] = 12064, + [12065] = 11912, + [12066] = 12066, + [12067] = 4266, + [12068] = 11912, + [12069] = 12069, + [12070] = 11912, + [12071] = 8480, + [12072] = 8482, + [12073] = 8450, + [12074] = 8490, + [12075] = 8452, + [12076] = 8454, + [12077] = 8455, + [12078] = 8457, + [12079] = 8460, + [12080] = 8462, + [12081] = 8464, + [12082] = 8469, + [12083] = 12083, + [12084] = 8493, + [12085] = 11912, + [12086] = 8485, + [12087] = 8468, + [12088] = 11912, + [12089] = 8467, + [12090] = 11912, + [12091] = 11912, + [12092] = 11912, + [12093] = 12093, + [12094] = 12094, + [12095] = 12095, + [12096] = 11912, + [12097] = 8480, + [12098] = 8482, + [12099] = 8450, + [12100] = 8490, + [12101] = 8452, + [12102] = 11912, + [12103] = 8454, + [12104] = 8455, + [12105] = 12105, + [12106] = 8457, + [12107] = 12107, + [12108] = 8460, + [12109] = 11912, + [12110] = 8462, + [12111] = 8464, + [12112] = 8469, + [12113] = 8493, + [12114] = 11912, + [12115] = 8448, + [12116] = 11912, + [12117] = 4236, + [12118] = 4266, + [12119] = 11912, + [12120] = 4233, + [12121] = 4229, + [12122] = 4234, + [12123] = 4237, + [12124] = 4238, + [12125] = 4239, + [12126] = 11912, + [12127] = 4240, + [12128] = 4241, + [12129] = 4245, + [12130] = 11912, + [12131] = 11912, + [12132] = 8480, + [12133] = 8485, + [12134] = 8482, + [12135] = 11912, + [12136] = 8450, + [12137] = 4246, + [12138] = 4242, + [12139] = 4268, + [12140] = 4206, + [12141] = 8485, + [12142] = 11912, + [12143] = 4249, + [12144] = 4213, + [12145] = 4214, + [12146] = 4220, + [12147] = 12147, + [12148] = 8468, + [12149] = 11912, + [12150] = 8490, + [12151] = 8452, + [12152] = 8468, + [12153] = 11912, + [12154] = 11912, + [12155] = 11912, + [12156] = 4222, + [12157] = 12157, + [12158] = 8454, + [12159] = 8455, + [12160] = 12160, + [12161] = 12161, + [12162] = 11912, + [12163] = 11912, + [12164] = 4226, + [12165] = 12062, + [12166] = 12066, + [12167] = 12083, + [12168] = 11912, + [12169] = 8467, + [12170] = 8457, + [12171] = 11912, + [12172] = 12172, + [12173] = 4208, + [12174] = 4218, + [12175] = 12175, + [12176] = 4219, + [12177] = 8448, + [12178] = 11912, + [12179] = 8460, + [12180] = 11937, + [12181] = 4243, + [12182] = 11957, + [12183] = 11968, + [12184] = 4248, + [12185] = 4256, + [12186] = 8462, + [12187] = 8464, + [12188] = 11912, + [12189] = 8469, + [12190] = 11907, + [12191] = 12019, + [12192] = 11908, + [12193] = 11909, + [12194] = 11910, + [12195] = 11912, + [12196] = 8493, + [12197] = 4269, + [12198] = 11912, + [12199] = 4272, + [12200] = 4177, + [12201] = 4188, + [12202] = 4189, + [12203] = 4193, + [12204] = 4196, + [12205] = 4203, + [12206] = 4223, + [12207] = 4277, + [12208] = 8549, + [12209] = 11912, + [12210] = 11912, + [12211] = 11912, + [12212] = 4231, + [12213] = 11912, + [12214] = 4263, + [12215] = 4264, + [12216] = 4265, + [12217] = 4267, + [12218] = 4270, + [12219] = 12157, + [12220] = 4271, + [12221] = 12160, + [12222] = 12161, + [12223] = 11912, + [12224] = 4276, + [12225] = 4227, + [12226] = 4176, + [12227] = 4178, + [12228] = 11912, + [12229] = 12062, + [12230] = 12066, + [12231] = 11912, + [12232] = 12157, + [12233] = 12172, + [12234] = 11912, + [12235] = 4179, + [12236] = 4180, + [12237] = 4181, + [12238] = 11937, + [12239] = 4182, + [12240] = 4183, + [12241] = 11912, + [12242] = 4184, + [12243] = 11907, + [12244] = 11908, + [12245] = 11912, + [12246] = 11909, + [12247] = 11910, + [12248] = 12248, + [12249] = 11912, + [12250] = 4194, + [12251] = 4195, + [12252] = 8549, + [12253] = 4211, + [12254] = 4266, + [12255] = 11912, + [12256] = 12011, + [12257] = 11912, + [12258] = 4236, + [12259] = 11972, + [12260] = 12260, + [12261] = 4266, + [12262] = 8549, + [12263] = 4233, + [12264] = 12160, + [12265] = 12161, + [12266] = 4229, + [12267] = 4234, + [12268] = 12011, + [12269] = 4237, + [12270] = 4238, + [12271] = 4212, + [12272] = 8559, + [12273] = 8560, + [12274] = 4239, + [12275] = 4240, + [12276] = 12011, + [12277] = 4241, + [12278] = 4245, + [12279] = 12062, + [12280] = 12066, + [12281] = 8762, + [12282] = 12011, + [12283] = 12172, + [12284] = 8549, + [12285] = 12011, + [12286] = 11937, + [12287] = 8559, + [12288] = 8560, + [12289] = 8549, + [12290] = 12011, + [12291] = 11907, + [12292] = 8762, + [12293] = 11908, + [12294] = 11909, + [12295] = 11910, + [12296] = 4246, + [12297] = 12011, + [12298] = 4242, + [12299] = 4268, + [12300] = 4206, + [12301] = 4249, + [12302] = 8762, + [12303] = 4213, + [12304] = 4214, + [12305] = 4220, + [12306] = 12011, + [12307] = 8762, + [12308] = 12011, + [12309] = 8549, + [12310] = 8762, + [12311] = 12011, + [12312] = 8549, + [12313] = 8832, + [12314] = 4222, + [12315] = 12011, + [12316] = 8549, + [12317] = 8549, + [12318] = 12011, + [12319] = 9020, + [12320] = 8559, + [12321] = 8560, + [12322] = 8762, + [12323] = 12011, + [12324] = 8559, + [12325] = 8560, + [12326] = 8762, + [12327] = 11912, + [12328] = 4226, + [12329] = 12329, + [12330] = 9030, + [12331] = 8832, + [12332] = 12011, + [12333] = 9030, + [12334] = 8549, + [12335] = 12011, + [12336] = 9020, + [12337] = 8559, + [12338] = 8560, + [12339] = 8559, + [12340] = 8560, + [12341] = 8762, + [12342] = 12011, + [12343] = 12160, + [12344] = 12161, + [12345] = 8559, + [12346] = 8560, + [12347] = 8549, + [12348] = 12011, + [12349] = 8549, + [12350] = 12011, + [12351] = 9030, + [12352] = 8762, + [12353] = 4208, + [12354] = 12011, + [12355] = 8832, + [12356] = 4218, + [12357] = 12011, + [12358] = 8762, + [12359] = 12062, + [12360] = 12066, + [12361] = 12011, + [12362] = 8832, + [12363] = 12011, + [12364] = 4219, + [12365] = 4243, + [12366] = 8832, + [12367] = 4248, + [12368] = 12011, + [12369] = 8832, + [12370] = 4256, + [12371] = 12011, + [12372] = 8559, + [12373] = 8560, + [12374] = 9006, + [12375] = 9007, + [12376] = 12172, + [12377] = 12011, + [12378] = 8762, + [12379] = 12011, + [12380] = 9019, + [12381] = 9033, + [12382] = 9020, + [12383] = 8762, + [12384] = 12011, + [12385] = 8832, + [12386] = 4269, + [12387] = 11937, + [12388] = 12011, + [12389] = 9006, + [12390] = 9007, + [12391] = 12011, + [12392] = 8467, + [12393] = 8559, + [12394] = 8560, + [12395] = 8762, + [12396] = 12396, + [12397] = 12011, + [12398] = 9019, + [12399] = 9033, + [12400] = 9020, + [12401] = 8762, + [12402] = 11907, + [12403] = 11908, + [12404] = 12011, + [12405] = 8832, + [12406] = 11909, + [12407] = 11910, + [12408] = 12408, + [12409] = 12011, + [12410] = 12410, + [12411] = 12411, + [12412] = 8762, + [12413] = 12172, + [12414] = 12011, + [12415] = 9020, + [12416] = 8559, + [12417] = 8560, + [12418] = 8832, + [12419] = 4272, + [12420] = 4177, + [12421] = 4188, + [12422] = 4189, + [12423] = 4193, + [12424] = 4196, + [12425] = 4203, + [12426] = 12011, + [12427] = 8559, + [12428] = 8560, + [12429] = 8832, + [12430] = 12011, + [12431] = 4223, + [12432] = 4277, + [12433] = 8832, + [12434] = 12011, + [12435] = 9006, + [12436] = 9007, + [12437] = 12011, + [12438] = 12011, + [12439] = 9019, + [12440] = 9033, + [12441] = 9020, + [12442] = 12011, + [12443] = 12011, + [12444] = 12011, + [12445] = 11912, + [12446] = 12011, + [12447] = 12011, + [12448] = 9005, + [12449] = 4231, + [12450] = 12011, + [12451] = 12011, + [12452] = 4263, + [12453] = 12160, + [12454] = 12161, + [12455] = 12011, + [12456] = 12011, + [12457] = 12011, + [12458] = 12011, + [12459] = 4264, + [12460] = 4265, + [12461] = 12011, + [12462] = 4267, + [12463] = 12011, + [12464] = 9005, + [12465] = 4270, + [12466] = 12011, + [12467] = 4271, + [12468] = 12062, + [12469] = 12066, + [12470] = 12011, + [12471] = 12011, + [12472] = 4276, + [12473] = 4227, + [12474] = 4176, + [12475] = 12011, + [12476] = 4178, + [12477] = 12011, + [12478] = 12011, + [12479] = 12172, + [12480] = 12011, + [12481] = 12011, + [12482] = 12011, + [12483] = 12011, + [12484] = 11937, + [12485] = 12011, + [12486] = 12160, + [12487] = 12011, + [12488] = 9005, + [12489] = 12011, + [12490] = 11907, + [12491] = 12011, + [12492] = 4179, + [12493] = 11908, + [12494] = 4180, + [12495] = 11909, + [12496] = 11910, + [12497] = 12011, + [12498] = 4181, + [12499] = 12011, + [12500] = 4182, + [12501] = 4183, + [12502] = 4184, + [12503] = 12011, + [12504] = 12011, + [12505] = 12011, + [12506] = 12506, + [12507] = 12011, + [12508] = 12011, + [12509] = 12011, + [12510] = 12175, + [12511] = 12011, + [12512] = 12011, + [12513] = 12011, + [12514] = 4194, + [12515] = 4195, + [12516] = 12011, + [12517] = 11912, + [12518] = 4211, + [12519] = 12011, + [12520] = 12011, + [12521] = 12011, + [12522] = 12011, + [12523] = 12160, + [12524] = 12011, + [12525] = 12011, + [12526] = 12011, + [12527] = 12011, + [12528] = 12011, + [12529] = 12011, + [12530] = 12011, + [12531] = 12011, + [12532] = 12011, + [12533] = 12011, + [12534] = 12011, + [12535] = 12011, + [12536] = 12011, + [12537] = 12011, + [12538] = 12011, + [12539] = 12011, + [12540] = 12011, + [12541] = 12011, + [12542] = 12011, + [12543] = 12011, + [12544] = 12011, + [12545] = 12011, + [12546] = 12011, + [12547] = 12011, + [12548] = 12011, + [12549] = 12011, + [12550] = 12011, + [12551] = 12011, + [12552] = 12011, + [12553] = 12011, + [12554] = 12011, + [12555] = 12011, + [12556] = 12011, + [12557] = 12011, + [12558] = 12011, + [12559] = 12011, + [12560] = 12058, + [12561] = 12396, + [12562] = 12408, + [12563] = 12010, + [12564] = 12017, + [12565] = 12062, + [12566] = 12172, + [12567] = 11937, + [12568] = 12058, + [12569] = 12396, + [12570] = 12408, + [12571] = 12010, + [12572] = 12017, + [12573] = 11907, + [12574] = 11908, + [12575] = 11909, + [12576] = 11910, + [12577] = 12058, + [12578] = 12396, + [12579] = 12408, + [12580] = 12010, + [12581] = 12017, + [12582] = 4212, + [12583] = 12058, + [12584] = 12396, + [12585] = 12408, + [12586] = 12010, + [12587] = 12017, + [12588] = 11912, + [12589] = 12058, + [12590] = 12396, + [12591] = 12408, + [12592] = 12010, + [12593] = 12017, + [12594] = 12160, + [12595] = 12062, + [12596] = 11907, + [12597] = 11908, + [12598] = 11909, + [12599] = 11910, + [12600] = 12600, + [12601] = 11912, + [12602] = 12160, + [12603] = 12161, + [12604] = 12062, + [12605] = 11907, + [12606] = 11908, + [12607] = 11909, + [12608] = 11910, + [12609] = 12609, + [12610] = 12610, + [12611] = 8559, + [12612] = 11912, + [12613] = 12613, + [12614] = 12614, + [12615] = 8560, + [12616] = 11907, + [12617] = 11908, + [12618] = 11909, + [12619] = 11910, + [12620] = 8937, + [12621] = 8939, + [12622] = 8847, + [12623] = 8848, + [12624] = 8849, + [12625] = 8937, + [12626] = 8939, + [12627] = 8847, + [12628] = 8848, + [12629] = 8849, + [12630] = 8937, + [12631] = 8939, + [12632] = 8847, + [12633] = 8848, + [12634] = 8849, + [12635] = 8937, + [12636] = 8939, + [12637] = 8847, + [12638] = 8848, + [12639] = 8849, + [12640] = 8937, + [12641] = 8939, + [12642] = 8847, + [12643] = 8848, + [12644] = 8849, + [12645] = 12645, + [12646] = 11912, + [12647] = 8937, + [12648] = 8939, + [12649] = 8848, + [12650] = 8849, + [12651] = 8937, + [12652] = 8939, + [12653] = 8847, + [12654] = 8848, + [12655] = 8849, + [12656] = 8937, + [12657] = 8939, + [12658] = 8847, + [12659] = 8848, + [12660] = 8849, + [12661] = 12011, + [12662] = 8560, + [12663] = 8832, + [12664] = 12664, + [12665] = 12665, + [12666] = 9265, + [12667] = 9485, + [12668] = 9248, + [12669] = 9394, + [12670] = 9304, + [12671] = 9305, + [12672] = 9306, + [12673] = 9307, + [12674] = 9308, + [12675] = 9310, + [12676] = 12665, + [12677] = 8549, + [12678] = 8762, + [12679] = 12665, + [12680] = 9020, + [12681] = 9030, + [12682] = 8559, + [12683] = 8560, + [12684] = 8549, + [12685] = 12665, + [12686] = 8448, + [12687] = 8762, + [12688] = 8559, + [12689] = 8560, + [12690] = 8559, + [12691] = 8560, + [12692] = 8832, + [12693] = 12665, + [12694] = 12665, + [12695] = 12665, + [12696] = 9030, + [12697] = 8832, + [12698] = 8485, + [12699] = 4152, + [12700] = 9020, + [12701] = 9030, + [12702] = 8549, + [12703] = 8832, + [12704] = 12665, + [12705] = 9020, + [12706] = 8762, + [12707] = 8832, + [12708] = 8468, + [12709] = 12665, + [12710] = 9030, + [12711] = 8559, + [12712] = 8762, + [12713] = 8522, + [12714] = 8523, + [12715] = 9006, + [12716] = 9007, + [12717] = 12665, + [12718] = 12665, + [12719] = 9020, + [12720] = 8762, + [12721] = 8762, + [12722] = 9019, + [12723] = 9033, + [12724] = 9030, + [12725] = 8832, + [12726] = 8480, + [12727] = 8832, + [12728] = 8482, + [12729] = 8450, + [12730] = 12665, + [12731] = 12665, + [12732] = 9006, + [12733] = 9007, + [12734] = 9020, + [12735] = 8762, + [12736] = 9019, + [12737] = 9033, + [12738] = 8490, + [12739] = 9030, + [12740] = 8452, + [12741] = 12665, + [12742] = 8832, + [12743] = 12665, + [12744] = 8454, + [12745] = 9030, + [12746] = 8455, + [12747] = 8762, + [12748] = 12665, + [12749] = 9030, + [12750] = 8762, + [12751] = 8832, + [12752] = 8457, + [12753] = 9005, + [12754] = 9006, + [12755] = 9007, + [12756] = 12665, + [12757] = 9020, + [12758] = 8832, + [12759] = 8467, + [12760] = 8460, + [12761] = 12665, + [12762] = 9019, + [12763] = 9033, + [12764] = 9020, + [12765] = 9006, + [12766] = 9007, + [12767] = 8462, + [12768] = 8464, + [12769] = 8469, + [12770] = 12665, + [12771] = 9006, + [12772] = 9007, + [12773] = 9019, + [12774] = 9033, + [12775] = 9020, + [12776] = 9006, + [12777] = 9007, + [12778] = 12665, + [12779] = 9019, + [12780] = 9033, + [12781] = 9020, + [12782] = 12665, + [12783] = 12665, + [12784] = 8493, + [12785] = 9019, + [12786] = 9033, + [12787] = 9020, + [12788] = 8832, + [12789] = 12665, + [12790] = 12665, + [12791] = 8448, + [12792] = 8832, + [12793] = 12665, + [12794] = 9005, + [12795] = 9020, + [12796] = 9006, + [12797] = 9007, + [12798] = 12665, + [12799] = 12665, + [12800] = 9019, + [12801] = 9033, + [12802] = 9020, + [12803] = 8832, + [12804] = 12804, + [12805] = 12665, + [12806] = 12665, + [12807] = 8550, + [12808] = 8832, + [12809] = 12665, + [12810] = 12665, + [12811] = 9006, + [12812] = 9007, + [12813] = 12665, + [12814] = 12665, + [12815] = 9020, + [12816] = 8832, + [12817] = 12665, + [12818] = 12665, + [12819] = 9019, + [12820] = 9033, + [12821] = 12665, + [12822] = 12665, + [12823] = 8559, + [12824] = 12665, + [12825] = 9006, + [12826] = 9007, + [12827] = 8740, + [12828] = 8712, + [12829] = 8716, + [12830] = 8735, + [12831] = 12665, + [12832] = 9006, + [12833] = 9007, + [12834] = 12665, + [12835] = 9019, + [12836] = 9033, + [12837] = 9020, + [12838] = 8485, + [12839] = 12839, + [12840] = 9006, + [12841] = 9007, + [12842] = 12665, + [12843] = 12665, + [12844] = 9019, + [12845] = 9033, + [12846] = 9020, + [12847] = 12665, + [12848] = 8560, + [12849] = 8599, + [12850] = 9019, + [12851] = 9033, + [12852] = 9020, + [12853] = 9005, + [12854] = 12665, + [12855] = 12665, + [12856] = 9005, + [12857] = 12857, + [12858] = 12665, + [12859] = 12859, + [12860] = 9005, + [12861] = 8468, + [12862] = 8549, + [12863] = 12665, + [12864] = 9005, + [12865] = 8549, + [12866] = 12665, + [12867] = 12665, + [12868] = 12665, + [12869] = 12665, + [12870] = 8548, + [12871] = 12665, + [12872] = 12665, + [12873] = 9005, + [12874] = 12665, + [12875] = 12665, + [12876] = 8480, + [12877] = 8482, + [12878] = 8467, + [12879] = 8450, + [12880] = 12880, + [12881] = 12881, + [12882] = 9005, + [12883] = 12883, + [12884] = 12665, + [12885] = 8490, + [12886] = 9005, + [12887] = 12665, + [12888] = 9005, + [12889] = 8762, + [12890] = 8452, + [12891] = 9005, + [12892] = 12665, + [12893] = 12665, + [12894] = 12665, + [12895] = 12665, + [12896] = 12665, + [12897] = 8454, + [12898] = 8455, + [12899] = 12899, + [12900] = 12665, + [12901] = 12665, + [12902] = 12665, + [12903] = 12665, + [12904] = 12665, + [12905] = 12665, + [12906] = 12665, + [12907] = 12665, + [12908] = 12665, + [12909] = 12665, + [12910] = 12665, + [12911] = 8457, + [12912] = 12665, + [12913] = 8460, + [12914] = 12665, + [12915] = 8462, + [12916] = 8464, + [12917] = 8469, + [12918] = 12665, + [12919] = 12665, + [12920] = 12665, + [12921] = 12665, + [12922] = 12665, + [12923] = 12923, + [12924] = 8728, + [12925] = 12665, + [12926] = 8762, + [12927] = 12665, + [12928] = 12665, + [12929] = 12665, + [12930] = 12665, + [12931] = 12665, + [12932] = 12665, + [12933] = 12665, + [12934] = 12665, + [12935] = 12665, + [12936] = 12665, + [12937] = 12665, + [12938] = 12665, + [12939] = 12665, + [12940] = 12665, + [12941] = 12665, + [12942] = 12665, + [12943] = 12665, + [12944] = 12665, + [12945] = 12665, + [12946] = 12665, + [12947] = 12665, + [12948] = 12665, + [12949] = 8448, + [12950] = 12665, + [12951] = 12665, + [12952] = 12665, + [12953] = 12665, + [12954] = 12665, + [12955] = 12665, + [12956] = 8493, + [12957] = 12957, + [12958] = 12665, + [12959] = 12959, + [12960] = 12665, + [12961] = 9265, + [12962] = 9485, + [12963] = 9248, + [12964] = 12665, + [12965] = 12665, + [12966] = 9394, + [12967] = 9304, + [12968] = 9305, + [12969] = 9306, + [12970] = 9307, + [12971] = 9308, + [12972] = 9310, + [12973] = 12665, + [12974] = 8937, + [12975] = 8939, + [12976] = 8847, + [12977] = 8848, + [12978] = 8849, + [12979] = 8937, + [12980] = 8939, + [12981] = 8847, + [12982] = 8848, + [12983] = 8849, + [12984] = 8937, + [12985] = 8939, + [12986] = 8847, + [12987] = 8848, + [12988] = 8849, + [12989] = 12989, + [12990] = 12665, + [12991] = 8762, + [12992] = 8937, + [12993] = 8939, + [12994] = 8847, + [12995] = 8848, + [12996] = 8849, + [12997] = 12665, + [12998] = 12665, + [12999] = 8937, + [13000] = 8939, + [13001] = 8847, + [13002] = 8848, + [13003] = 8849, + [13004] = 8937, + [13005] = 8939, + [13006] = 8847, + [13007] = 8848, + [13008] = 8849, + [13009] = 9265, + [13010] = 9485, + [13011] = 9248, + [13012] = 8937, + [13013] = 8939, + [13014] = 8847, + [13015] = 8848, + [13016] = 8849, + [13017] = 9394, + [13018] = 9304, + [13019] = 9305, + [13020] = 9306, + [13021] = 9307, + [13022] = 9308, + [13023] = 9310, + [13024] = 12665, + [13025] = 12665, + [13026] = 13026, + [13027] = 13027, + [13028] = 8485, + [13029] = 9019, + [13030] = 9033, + [13031] = 9831, + [13032] = 9019, + [13033] = 9033, + [13034] = 9020, + [13035] = 8762, + [13036] = 8468, + [13037] = 13037, + [13038] = 9504, + [13039] = 9310, + [13040] = 9006, + [13041] = 9007, + [13042] = 9006, + [13043] = 9007, + [13044] = 9831, + [13045] = 13045, + [13046] = 13046, + [13047] = 9005, + [13048] = 9006, + [13049] = 9007, + [13050] = 8848, + [13051] = 8849, + [13052] = 9019, + [13053] = 9019, + [13054] = 9033, + [13055] = 9020, + [13056] = 9033, + [13057] = 9847, + [13058] = 9030, + [13059] = 13059, + [13060] = 9019, + [13061] = 9033, + [13062] = 8832, + [13063] = 8467, + [13064] = 13064, + [13065] = 9006, + [13066] = 9007, + [13067] = 9852, + [13068] = 9006, + [13069] = 9007, + [13070] = 10035, + [13071] = 9019, + [13072] = 9005, + [13073] = 9033, + [13074] = 9020, + [13075] = 9836, + [13076] = 9851, + [13077] = 9020, + [13078] = 8832, + [13079] = 9019, + [13080] = 9033, + [13081] = 9020, + [13082] = 8448, + [13083] = 9030, + [13084] = 9265, + [13085] = 9485, + [13086] = 9248, + [13087] = 9019, + [13088] = 9033, + [13089] = 13089, + [13090] = 9030, + [13091] = 13091, + [13092] = 8832, + [13093] = 13093, + [13094] = 8832, + [13095] = 8762, + [13096] = 13096, + [13097] = 8490, + [13098] = 9005, + [13099] = 13099, + [13100] = 9394, + [13101] = 8832, + [13102] = 8452, + [13103] = 13103, + [13104] = 13104, + [13105] = 13105, + [13106] = 8762, + [13107] = 9304, + [13108] = 8480, + [13109] = 9005, + [13110] = 13110, + [13111] = 8482, + [13112] = 8450, + [13113] = 8454, + [13114] = 9305, + [13115] = 8937, + [13116] = 9006, + [13117] = 9007, + [13118] = 8454, + [13119] = 9020, + [13120] = 13120, + [13121] = 9030, + [13122] = 8490, + [13123] = 9005, + [13124] = 8452, + [13125] = 13125, + [13126] = 9265, + [13127] = 4242, + [13128] = 9797, + [13129] = 8454, + [13130] = 8457, + [13131] = 8455, + [13132] = 8460, + [13133] = 9005, + [13134] = 9006, + [13135] = 9007, + [13136] = 13136, + [13137] = 8455, + [13138] = 8457, + [13139] = 4229, + [13140] = 9019, + [13141] = 9033, + [13142] = 9005, + [13143] = 9020, + [13144] = 9019, + [13145] = 9033, + [13146] = 9005, + [13147] = 9306, + [13148] = 9307, + [13149] = 9019, + [13150] = 8448, + [13151] = 8457, + [13152] = 13152, + [13153] = 13153, + [13154] = 9005, + [13155] = 13155, + [13156] = 8460, + [13157] = 9033, + [13158] = 13158, + [13159] = 8832, + [13160] = 8462, + [13161] = 8464, + [13162] = 8469, + [13163] = 8832, + [13164] = 13164, + [13165] = 9308, + [13166] = 8460, + [13167] = 13167, + [13168] = 8462, + [13169] = 13169, + [13170] = 9310, + [13171] = 8762, + [13172] = 13172, + [13173] = 8452, + [13174] = 8464, + [13175] = 8493, + [13176] = 8493, + [13177] = 13177, + [13178] = 13178, + [13179] = 13179, + [13180] = 13180, + [13181] = 13181, + [13182] = 13182, + [13183] = 8832, + [13184] = 8455, + [13185] = 9005, + [13186] = 4266, + [13187] = 9006, + [13188] = 8462, + [13189] = 8490, + [13190] = 9007, + [13191] = 8559, + [13192] = 13192, + [13193] = 9304, + [13194] = 13194, + [13195] = 13195, + [13196] = 9485, + [13197] = 13197, + [13198] = 9248, + [13199] = 10674, + [13200] = 10706, + [13201] = 9020, + [13202] = 8832, + [13203] = 9305, + [13204] = 9005, + [13205] = 13205, + [13206] = 13206, + [13207] = 9910, + [13208] = 9943, + [13209] = 13209, + [13210] = 13210, + [13211] = 9019, + [13212] = 8464, + [13213] = 8832, + [13214] = 9033, + [13215] = 9020, + [13216] = 13216, + [13217] = 8832, + [13218] = 8469, + [13219] = 10040, + [13220] = 10041, + [13221] = 9005, + [13222] = 8762, + [13223] = 9878, + [13224] = 9030, + [13225] = 9005, + [13226] = 9006, + [13227] = 9007, + [13228] = 9306, + [13229] = 9020, + [13230] = 13230, + [13231] = 8560, + [13232] = 8485, + [13233] = 10042, + [13234] = 10043, + [13235] = 8493, + [13236] = 8549, + [13237] = 9019, + [13238] = 8468, + [13239] = 9033, + [13240] = 8467, + [13241] = 10743, + [13242] = 9020, + [13243] = 9030, + [13244] = 13244, + [13245] = 9504, + [13246] = 8469, + [13247] = 9006, + [13248] = 9007, + [13249] = 9855, + [13250] = 13250, + [13251] = 9006, + [13252] = 9007, + [13253] = 9006, + [13254] = 9307, + [13255] = 8485, + [13256] = 9007, + [13257] = 8480, + [13258] = 9308, + [13259] = 13259, + [13260] = 9019, + [13261] = 9033, + [13262] = 9020, + [13263] = 9831, + [13264] = 9020, + [13265] = 13265, + [13266] = 8468, + [13267] = 8559, + [13268] = 8560, + [13269] = 4236, + [13270] = 8832, + [13271] = 8937, + [13272] = 8939, + [13273] = 8847, + [13274] = 8848, + [13275] = 8849, + [13276] = 13276, + [13277] = 8482, + [13278] = 8467, + [13279] = 8939, + [13280] = 13280, + [13281] = 8450, + [13282] = 13282, + [13283] = 8847, + [13284] = 9006, + [13285] = 9005, + [13286] = 9878, + [13287] = 9007, + [13288] = 9020, + [13289] = 9030, + [13290] = 9504, + [13291] = 13291, + [13292] = 13292, + [13293] = 13293, + [13294] = 13294, + [13295] = 9878, + [13296] = 13296, + [13297] = 9005, + [13298] = 9006, + [13299] = 9007, + [13300] = 13300, + [13301] = 13301, + [13302] = 13302, + [13303] = 13303, + [13304] = 9019, + [13305] = 9033, + [13306] = 13306, + [13307] = 9006, + [13308] = 9007, + [13309] = 8549, + [13310] = 9394, + [13311] = 10035, + [13312] = 10040, + [13313] = 10041, + [13314] = 10042, + [13315] = 10043, + [13316] = 8480, + [13317] = 10035, + [13318] = 10040, + [13319] = 10041, + [13320] = 10042, + [13321] = 10043, + [13322] = 8482, + [13323] = 8450, + [13324] = 13324, + [13325] = 4152, + [13326] = 10691, + [13327] = 10767, + [13328] = 10788, + [13329] = 10665, + [13330] = 10776, + [13331] = 12060, + [13332] = 13332, + [13333] = 8559, + [13334] = 8457, + [13335] = 10656, + [13336] = 13332, + [13337] = 9006, + [13338] = 9007, + [13339] = 8490, + [13340] = 10624, + [13341] = 10691, + [13342] = 10767, + [13343] = 10788, + [13344] = 10665, + [13345] = 10776, + [13346] = 9019, + [13347] = 9033, + [13348] = 9020, + [13349] = 10272, + [13350] = 13350, + [13351] = 13332, + [13352] = 10273, + [13353] = 9504, + [13354] = 9019, + [13355] = 9033, + [13356] = 10274, + [13357] = 8450, + [13358] = 9019, + [13359] = 9033, + [13360] = 8468, + [13361] = 13332, + [13362] = 9030, + [13363] = 9005, + [13364] = 13332, + [13365] = 8762, + [13366] = 10691, + [13367] = 10767, + [13368] = 10788, + [13369] = 10665, + [13370] = 10776, + [13371] = 9006, + [13372] = 9007, + [13373] = 13373, + [13374] = 8493, + [13375] = 10274, + [13376] = 8485, + [13377] = 10272, + [13378] = 8832, + [13379] = 9878, + [13380] = 13332, + [13381] = 13381, + [13382] = 13332, + [13383] = 13350, + [13384] = 13332, + [13385] = 9019, + [13386] = 10591, + [13387] = 9033, + [13388] = 9831, + [13389] = 9020, + [13390] = 10273, + [13391] = 13373, + [13392] = 13392, + [13393] = 10763, + [13394] = 8452, + [13395] = 11345, + [13396] = 11467, + [13397] = 10610, + [13398] = 13332, + [13399] = 10274, + [13400] = 10763, + [13401] = 9005, + [13402] = 13332, + [13403] = 8490, + [13404] = 13350, + [13405] = 9006, + [13406] = 8493, + [13407] = 8560, + [13408] = 13332, + [13409] = 9007, + [13410] = 9005, + [13411] = 10625, + [13412] = 10656, + [13413] = 8460, + [13414] = 8452, + [13415] = 13332, + [13416] = 8832, + [13417] = 13332, + [13418] = 9005, + [13419] = 9006, + [13420] = 8468, + [13421] = 9007, + [13422] = 13332, + [13423] = 9019, + [13424] = 9033, + [13425] = 9005, + [13426] = 13332, + [13427] = 13332, + [13428] = 13332, + [13429] = 13332, + [13430] = 13430, + [13431] = 10273, + [13432] = 8482, + [13433] = 9020, + [13434] = 9005, + [13435] = 13381, + [13436] = 13332, + [13437] = 8462, + [13438] = 11351, + [13439] = 8559, + [13440] = 9006, + [13441] = 9007, + [13442] = 8454, + [13443] = 9006, + [13444] = 9007, + [13445] = 13445, + [13446] = 8480, + [13447] = 8454, + [13448] = 8549, + [13449] = 8560, + [13450] = 9019, + [13451] = 13430, + [13452] = 13332, + [13453] = 8467, + [13454] = 10624, + [13455] = 10625, + [13456] = 13332, + [13457] = 13381, + [13458] = 13350, + [13459] = 9019, + [13460] = 9019, + [13461] = 8455, + [13462] = 10610, + [13463] = 9033, + [13464] = 13332, + [13465] = 8482, + [13466] = 10591, + [13467] = 9033, + [13468] = 9030, + [13469] = 8467, + [13470] = 9006, + [13471] = 9007, + [13472] = 8464, + [13473] = 9831, + [13474] = 8450, + [13475] = 9005, + [13476] = 10610, + [13477] = 8832, + [13478] = 10763, + [13479] = 8457, + [13480] = 8469, + [13481] = 9005, + [13482] = 9878, + [13483] = 10624, + [13484] = 10272, + [13485] = 13430, + [13486] = 9033, + [13487] = 13381, + [13488] = 10625, + [13489] = 10865, + [13490] = 9006, + [13491] = 8480, + [13492] = 9007, + [13493] = 10591, + [13494] = 8559, + [13495] = 8560, + [13496] = 8460, + [13497] = 9019, + [13498] = 8762, + [13499] = 13332, + [13500] = 8549, + [13501] = 10656, + [13502] = 8832, + [13503] = 10865, + [13504] = 8462, + [13505] = 8464, + [13506] = 8469, + [13507] = 9504, + [13508] = 8455, + [13509] = 8485, + [13510] = 10865, + [13511] = 9033, + [13512] = 9005, + [13513] = 9020, + [13514] = 9006, + [13515] = 13332, + [13516] = 8832, + [13517] = 9007, + [13518] = 8549, + [13519] = 13519, + [13520] = 8894, + [13521] = 10624, + [13522] = 13096, + [13523] = 10625, + [13524] = 13294, + [13525] = 13296, + [13526] = 10656, + [13527] = 13099, + [13528] = 13306, + [13529] = 4152, + [13530] = 13324, + [13531] = 9033, + [13532] = 13153, + [13533] = 13533, + [13534] = 13534, + [13535] = 13519, + [13536] = 12804, + [13537] = 8448, + [13538] = 13178, + [13539] = 13301, + [13540] = 13302, + [13541] = 13179, + [13542] = 12839, + [13543] = 8762, + [13544] = 13180, + [13545] = 9036, + [13546] = 9037, + [13547] = 13182, + [13548] = 10610, + [13549] = 10691, + [13550] = 13534, + [13551] = 12880, + [13552] = 12881, + [13553] = 12883, + [13554] = 9005, + [13555] = 9006, + [13556] = 9007, + [13557] = 8549, + [13558] = 13519, + [13559] = 11434, + [13560] = 8448, + [13561] = 12957, + [13562] = 13158, + [13563] = 13534, + [13564] = 13534, + [13565] = 13172, + [13566] = 13519, + [13567] = 8559, + [13568] = 8560, + [13569] = 8448, + [13570] = 8980, + [13571] = 10763, + [13572] = 10767, + [13573] = 10788, + [13574] = 12857, + [13575] = 12859, + [13576] = 13026, + [13577] = 4152, + [13578] = 13194, + [13579] = 4229, + [13580] = 13259, + [13581] = 13195, + [13582] = 13265, + [13583] = 13534, + [13584] = 4242, + [13585] = 13519, + [13586] = 11329, + [13587] = 11154, + [13588] = 13534, + [13589] = 13519, + [13590] = 8762, + [13591] = 13534, + [13592] = 13197, + [13593] = 10665, + [13594] = 13216, + [13595] = 10776, + [13596] = 13534, + [13597] = 13519, + [13598] = 13152, + [13599] = 11329, + [13600] = 11154, + [13601] = 12899, + [13602] = 8832, + [13603] = 9006, + [13604] = 9007, + [13605] = 13534, + [13606] = 10591, + [13607] = 10610, + [13608] = 10763, + [13609] = 11715, + [13610] = 13534, + [13611] = 11434, + [13612] = 13534, + [13613] = 13519, + [13614] = 13534, + [13615] = 13519, + [13616] = 13534, + [13617] = 13519, + [13618] = 9019, + [13619] = 11329, + [13620] = 11154, + [13621] = 9033, + [13622] = 13534, + [13623] = 10691, + [13624] = 10767, + [13625] = 10788, + [13626] = 10665, + [13627] = 10776, + [13628] = 9019, + [13629] = 13534, + [13630] = 10591, + [13631] = 8559, + [13632] = 8560, + [13633] = 13534, + [13634] = 13534, + [13635] = 10272, + [13636] = 10273, + [13637] = 10274, + [13638] = 9005, + [13639] = 13534, + [13640] = 13519, + [13641] = 13534, + [13642] = 10624, + [13643] = 10625, + [13644] = 10656, + [13645] = 13533, + [13646] = 13534, + [13647] = 13519, + [13648] = 13534, + [13649] = 12923, + [13650] = 13089, + [13651] = 13534, + [13652] = 11659, + [13653] = 11823, + [13654] = 11352, + [13655] = 11659, + [13656] = 8832, + [13657] = 11823, + [13658] = 11352, + [13659] = 13155, + [13660] = 11659, + [13661] = 10272, + [13662] = 11823, + [13663] = 13534, + [13664] = 10273, + [13665] = 11352, + [13666] = 10274, + [13667] = 13534, + [13668] = 8762, + [13669] = 13291, + [13670] = 13292, + [13671] = 13303, + [13672] = 11217, + [13673] = 11832, + [13674] = 11786, + [13675] = 11303, + [13676] = 11191, + [13677] = 11217, + [13678] = 11832, + [13679] = 11786, + [13680] = 11303, + [13681] = 11191, + [13682] = 13293, + [13683] = 13091, + [13684] = 11217, + [13685] = 11832, + [13686] = 11786, + [13687] = 11303, + [13688] = 11191, + [13689] = 11715, + [13690] = 11715, + [13691] = 11434, + [13692] = 8549, + [13693] = 11329, + [13694] = 8493, + [13695] = 13110, + [13696] = 11352, + [13697] = 13697, + [13698] = 13698, + [13699] = 13120, + [13700] = 8460, + [13701] = 13697, + [13702] = 13698, + [13703] = 13697, + [13704] = 13698, + [13705] = 13697, + [13706] = 13697, + [13707] = 13698, + [13708] = 13697, + [13709] = 13698, + [13710] = 13697, + [13711] = 13698, + [13712] = 13167, + [13713] = 13169, + [13714] = 13697, + [13715] = 13698, + [13716] = 13698, + [13717] = 13697, + [13718] = 13698, + [13719] = 8599, + [13720] = 12329, + [13721] = 8485, + [13722] = 8467, + [13723] = 8462, + [13724] = 8448, + [13725] = 12093, + [13726] = 13697, + [13727] = 13697, + [13728] = 13698, + [13729] = 8464, + [13730] = 13697, + [13731] = 13697, + [13732] = 13697, + [13733] = 13697, + [13734] = 13697, + [13735] = 13698, + [13736] = 13698, + [13737] = 13697, + [13738] = 13698, + [13739] = 13697, + [13740] = 13698, + [13741] = 13697, + [13742] = 13698, + [13743] = 13698, + [13744] = 13698, + [13745] = 13745, + [13746] = 13697, + [13747] = 8469, + [13748] = 13697, + [13749] = 13698, + [13750] = 13697, + [13751] = 13697, + [13752] = 13698, + [13753] = 13753, + [13754] = 13697, + [13755] = 13698, + [13756] = 13697, + [13757] = 13698, + [13758] = 13697, + [13759] = 13698, + [13760] = 13697, + [13761] = 13761, + [13762] = 13762, + [13763] = 13763, + [13764] = 13089, + [13765] = 13698, + [13766] = 13697, + [13767] = 13698, + [13768] = 13091, + [13769] = 13096, + [13770] = 13099, + [13771] = 4236, + [13772] = 13698, + [13773] = 13697, + [13774] = 13698, + [13775] = 13064, + [13776] = 13027, + [13777] = 13697, + [13778] = 13698, + [13779] = 13697, + [13780] = 13698, + [13781] = 13164, + [13782] = 13697, + [13783] = 13698, + [13784] = 8468, + [13785] = 13697, + [13786] = 13698, + [13787] = 13697, + [13788] = 13698, + [13789] = 13697, + [13790] = 13698, + [13791] = 13697, + [13792] = 13697, + [13793] = 13698, + [13794] = 13698, + [13795] = 13697, + [13796] = 13698, + [13797] = 13697, + [13798] = 13698, + [13799] = 8485, + [13800] = 13697, + [13801] = 13698, + [13802] = 13697, + [13803] = 13698, + [13804] = 13697, + [13805] = 13698, + [13806] = 4236, + [13807] = 13697, + [13808] = 13698, + [13809] = 13697, + [13810] = 13698, + [13811] = 13698, + [13812] = 13697, + [13813] = 13698, + [13814] = 4266, + [13815] = 13697, + [13816] = 13698, + [13817] = 4229, + [13818] = 13697, + [13819] = 13698, + [13820] = 11786, + [13821] = 13697, + [13822] = 13698, + [13823] = 13697, + [13824] = 13698, + [13825] = 13697, + [13826] = 13697, + [13827] = 13697, + [13828] = 13698, + [13829] = 8493, + [13830] = 13697, + [13831] = 13698, + [13832] = 13698, + [13833] = 13697, + [13834] = 13698, + [13835] = 8740, + [13836] = 13697, + [13837] = 13698, + [13838] = 13697, + [13839] = 13698, + [13840] = 8735, + [13841] = 13697, + [13842] = 13698, + [13843] = 13697, + [13844] = 13698, + [13845] = 13697, + [13846] = 4242, + [13847] = 13847, + [13848] = 13697, + [13849] = 13697, + [13850] = 8599, + [13851] = 13698, + [13852] = 4266, + [13853] = 13698, + [13854] = 13697, + [13855] = 13698, + [13856] = 13856, + [13857] = 13857, + [13858] = 13858, + [13859] = 13697, + [13860] = 13698, + [13861] = 4266, + [13862] = 13697, + [13863] = 13698, + [13864] = 13864, + [13865] = 13698, + [13866] = 13152, + [13867] = 8832, + [13868] = 13697, + [13869] = 13698, + [13870] = 13153, + [13871] = 13155, + [13872] = 13158, + [13873] = 13698, + [13874] = 13698, + [13875] = 13697, + [13876] = 13698, + [13877] = 13697, + [13878] = 13698, + [13879] = 13105, + [13880] = 4229, + [13881] = 13697, + [13882] = 13698, + [13883] = 13697, + [13884] = 13698, + [13885] = 13697, + [13886] = 13698, + [13887] = 13697, + [13888] = 13698, + [13889] = 13697, + [13890] = 8448, + [13891] = 13697, + [13892] = 13698, + [13893] = 12329, + [13894] = 13697, + [13895] = 13697, + [13896] = 13698, + [13897] = 11154, + [13898] = 13698, + [13899] = 13698, + [13900] = 13697, + [13901] = 13698, + [13902] = 13697, + [13903] = 13697, + [13904] = 13697, + [13905] = 13697, + [13906] = 13698, + [13907] = 13697, + [13908] = 13698, + [13909] = 13698, + [13910] = 13698, + [13911] = 13698, + [13912] = 13912, + [13913] = 12645, + [13914] = 12609, + [13915] = 12069, + [13916] = 8762, + [13917] = 13698, + [13918] = 13697, + [13919] = 13698, + [13920] = 8762, + [13921] = 13847, + [13922] = 13178, + [13923] = 13179, + [13924] = 8740, + [13925] = 8735, + [13926] = 12645, + [13927] = 12609, + [13928] = 13698, + [13929] = 12069, + [13930] = 13698, + [13931] = 13697, + [13932] = 13698, + [13933] = 11823, + [13934] = 13180, + [13935] = 13697, + [13936] = 13182, + [13937] = 13697, + [13938] = 13698, + [13939] = 13125, + [13940] = 13697, + [13941] = 13697, + [13942] = 13698, + [13943] = 13697, + [13944] = 13698, + [13945] = 13172, + [13946] = 12645, + [13947] = 12609, + [13948] = 13259, + [13949] = 12069, + [13950] = 13265, + [13951] = 13697, + [13952] = 4242, + [13953] = 13698, + [13954] = 13697, + [13955] = 13698, + [13956] = 8468, + [13957] = 13698, + [13958] = 13697, + [13959] = 13291, + [13960] = 13292, + [13961] = 13194, + [13962] = 13698, + [13963] = 13303, + [13964] = 13306, + [13965] = 13195, + [13966] = 13697, + [13967] = 13697, + [13968] = 13698, + [13969] = 13324, + [13970] = 13698, + [13971] = 13197, + [13972] = 13697, + [13973] = 13698, + [13974] = 13974, + [13975] = 13697, + [13976] = 13976, + [13977] = 13216, + [13978] = 13978, + [13979] = 13276, + [13980] = 8480, + [13981] = 8482, + [13982] = 8450, + [13983] = 8490, + [13984] = 8452, + [13985] = 12093, + [13986] = 8454, + [13987] = 8455, + [13988] = 13697, + [13989] = 13698, + [13990] = 13698, + [13991] = 13209, + [13992] = 13697, + [13993] = 13847, + [13994] = 8457, + [13995] = 13697, + [13996] = 8460, + [13997] = 8462, + [13998] = 8464, + [13999] = 8469, + [14000] = 13698, + [14001] = 13697, + [14002] = 13698, + [14003] = 13698, + [14004] = 8493, + [14005] = 11217, + [14006] = 13059, + [14007] = 11659, + [14008] = 13697, + [14009] = 11329, + [14010] = 13698, + [14011] = 12147, + [14012] = 12411, + [14013] = 12260, + [14014] = 12506, + [14015] = 12053, + [14016] = 12064, + [14017] = 12147, + [14018] = 12411, + [14019] = 13697, + [14020] = 4266, + [14021] = 12260, + [14022] = 12506, + [14023] = 13698, + [14024] = 13300, + [14025] = 12053, + [14026] = 12064, + [14027] = 11659, + [14028] = 8740, + [14029] = 11823, + [14030] = 13037, + [14031] = 11352, + [14032] = 13697, + [14033] = 13698, + [14034] = 13697, + [14035] = 12147, + [14036] = 12411, + [14037] = 11154, + [14038] = 13698, + [14039] = 8457, + [14040] = 12260, + [14041] = 12506, + [14042] = 8485, + [14043] = 13697, + [14044] = 12053, + [14045] = 12064, + [14046] = 13250, + [14047] = 13697, + [14048] = 13698, + [14049] = 13280, + [14050] = 13698, + [14051] = 13698, + [14052] = 8832, + [14053] = 13697, + [14054] = 11955, + [14055] = 13697, + [14056] = 13698, + [14057] = 13697, + [14058] = 13698, + [14059] = 13697, + [14060] = 13698, + [14061] = 13698, + [14062] = 8599, + [14063] = 13293, + [14064] = 13697, + [14065] = 13698, + [14066] = 13294, + [14067] = 13296, + [14068] = 13301, + [14069] = 8480, + [14070] = 13302, + [14071] = 8482, + [14072] = 8450, + [14073] = 13697, + [14074] = 13697, + [14075] = 13697, + [14076] = 13698, + [14077] = 13697, + [14078] = 8740, + [14079] = 8735, + [14080] = 8490, + [14081] = 8452, + [14082] = 13697, + [14083] = 13698, + [14084] = 13698, + [14085] = 13210, + [14086] = 13697, + [14087] = 13698, + [14088] = 8467, + [14089] = 13697, + [14090] = 13697, + [14091] = 12248, + [14092] = 12410, + [14093] = 11303, + [14094] = 13697, + [14095] = 12059, + [14096] = 13698, + [14097] = 13698, + [14098] = 4266, + [14099] = 8454, + [14100] = 8455, + [14101] = 11832, + [14102] = 12248, + [14103] = 8832, + [14104] = 12410, + [14105] = 13698, + [14106] = 12059, + [14107] = 13046, + [14108] = 11191, + [14109] = 8468, + [14110] = 11217, + [14111] = 11832, + [14112] = 11786, + [14113] = 11303, + [14114] = 11191, + [14115] = 12248, + [14116] = 12410, + [14117] = 12059, + [14118] = 11955, + [14119] = 12329, + [14120] = 12093, + [14121] = 11955, + [14122] = 13093, + [14123] = 8450, + [14124] = 8482, + [14125] = 8452, + [14126] = 8454, + [14127] = 8455, + [14128] = 8457, + [14129] = 8460, + [14130] = 8462, + [14131] = 8464, + [14132] = 8469, + [14133] = 8485, + [14134] = 8493, + [14135] = 8559, + [14136] = 8560, + [14137] = 8493, + [14138] = 8549, + [14139] = 12147, + [14140] = 14140, + [14141] = 8448, + [14142] = 8485, + [14143] = 14143, + [14144] = 8468, + [14145] = 8467, + [14146] = 8454, + [14147] = 12248, + [14148] = 4266, + [14149] = 12411, + [14150] = 8480, + [14151] = 8482, + [14152] = 8448, + [14153] = 12959, + [14154] = 8455, + [14155] = 4152, + [14156] = 8450, + [14157] = 12959, + [14158] = 8599, + [14159] = 12147, + [14160] = 12411, + [14161] = 12645, + [14162] = 12260, + [14163] = 12506, + [14164] = 8735, + [14165] = 12053, + [14166] = 12064, + [14167] = 12959, + [14168] = 8832, + [14169] = 8832, + [14170] = 8468, + [14171] = 12609, + [14172] = 8599, + [14173] = 8490, + [14174] = 8457, + [14175] = 12506, + [14176] = 8460, + [14177] = 12645, + [14178] = 12609, + [14179] = 12069, + [14180] = 8735, + [14181] = 12069, + [14182] = 12260, + [14183] = 12053, + [14184] = 8462, + [14185] = 8464, + [14186] = 8469, + [14187] = 8448, + [14188] = 12059, + [14189] = 8740, + [14190] = 12410, + [14191] = 8559, + [14192] = 8560, + [14193] = 12248, + [14194] = 8549, + [14195] = 12410, + [14196] = 8452, + [14197] = 12059, + [14198] = 8467, + [14199] = 8480, + [14200] = 4266, + [14201] = 12064, + [14202] = 8490, + [14203] = 8493, + [14204] = 12959, + [14205] = 8490, + [14206] = 13197, + [14207] = 13291, + [14208] = 13292, + [14209] = 13303, + [14210] = 13306, + [14211] = 13155, + [14212] = 8480, + [14213] = 8460, + [14214] = 8462, + [14215] = 8468, + [14216] = 13324, + [14217] = 8452, + [14218] = 13194, + [14219] = 8493, + [14220] = 13178, + [14221] = 8482, + [14222] = 14222, + [14223] = 8457, + [14224] = 4242, + [14225] = 13089, + [14226] = 13091, + [14227] = 13096, + [14228] = 8450, + [14229] = 8464, + [14230] = 8485, + [14231] = 13099, + [14232] = 8762, + [14233] = 8462, + [14234] = 8454, + [14235] = 8450, + [14236] = 14236, + [14237] = 14237, + [14238] = 14238, + [14239] = 8464, + [14240] = 13195, + [14241] = 8469, + [14242] = 8450, + [14243] = 13152, + [14244] = 8467, + [14245] = 14245, + [14246] = 8482, + [14247] = 8467, + [14248] = 8559, + [14249] = 8560, + [14250] = 8549, + [14251] = 8455, + [14252] = 8460, + [14253] = 8469, + [14254] = 13182, + [14255] = 13293, + [14256] = 12959, + [14257] = 13158, + [14258] = 14258, + [14259] = 8485, + [14260] = 4236, + [14261] = 13294, + [14262] = 13216, + [14263] = 13179, + [14264] = 8480, + [14265] = 8455, + [14266] = 8457, + [14267] = 13180, + [14268] = 8467, + [14269] = 8490, + [14270] = 14270, + [14271] = 8480, + [14272] = 14272, + [14273] = 8448, + [14274] = 13172, + [14275] = 13296, + [14276] = 13153, + [14277] = 8493, + [14278] = 8454, + [14279] = 8462, + [14280] = 8455, + [14281] = 8464, + [14282] = 14282, + [14283] = 4229, + [14284] = 8468, + [14285] = 13301, + [14286] = 8559, + [14287] = 13259, + [14288] = 13265, + [14289] = 8560, + [14290] = 8460, + [14291] = 8448, + [14292] = 8490, + [14293] = 8762, + [14294] = 4266, + [14295] = 8549, + [14296] = 8452, + [14297] = 8468, + [14298] = 8457, + [14299] = 8469, + [14300] = 8485, + [14301] = 8448, + [14302] = 8482, + [14303] = 8467, + [14304] = 13302, + [14305] = 8454, + [14306] = 8452, + [14307] = 14307, + [14308] = 8559, + [14309] = 8457, + [14310] = 8448, + [14311] = 8549, + [14312] = 8454, + [14313] = 4152, + [14314] = 8462, + [14315] = 8464, + [14316] = 14316, + [14317] = 8455, + [14318] = 8485, + [14319] = 14319, + [14320] = 8460, + [14321] = 14321, + [14322] = 8490, + [14323] = 8452, + [14324] = 14321, + [14325] = 8450, + [14326] = 8469, + [14327] = 8467, + [14328] = 14328, + [14329] = 8462, + [14330] = 8490, + [14331] = 14331, + [14332] = 8467, + [14333] = 14333, + [14334] = 8448, + [14335] = 8490, + [14336] = 14336, + [14337] = 8469, + [14338] = 14338, + [14339] = 8457, + [14340] = 8485, + [14341] = 8452, + [14342] = 14342, + [14343] = 8832, + [14344] = 14344, + [14345] = 8559, + [14346] = 8468, + [14347] = 8464, + [14348] = 14331, + [14349] = 8560, + [14350] = 14350, + [14351] = 8454, + [14352] = 8457, + [14353] = 8464, + [14354] = 8448, + [14355] = 8462, + [14356] = 14356, + [14357] = 8467, + [14358] = 8469, + [14359] = 8460, + [14360] = 8549, + [14361] = 8762, + [14362] = 8455, + [14363] = 8450, + [14364] = 8460, + [14365] = 14336, + [14366] = 8559, + [14367] = 14367, + [14368] = 8455, + [14369] = 14333, + [14370] = 8480, + [14371] = 8549, + [14372] = 8493, + [14373] = 8482, + [14374] = 8450, + [14375] = 8493, + [14376] = 8454, + [14377] = 8560, + [14378] = 14338, + [14379] = 14328, + [14380] = 8832, + [14381] = 14367, + [14382] = 8485, + [14383] = 8480, + [14384] = 8493, + [14385] = 8468, + [14386] = 8482, + [14387] = 8762, + [14388] = 8467, + [14389] = 8482, + [14390] = 8560, + [14391] = 8452, + [14392] = 8480, + [14393] = 8468, + [14394] = 14394, + [14395] = 14395, + [14396] = 14396, + [14397] = 14397, + [14398] = 14398, + [14399] = 14394, + [14400] = 14395, + [14401] = 14396, + [14402] = 14396, + [14403] = 14395, + [14404] = 14397, + [14405] = 14397, + [14406] = 14398, + [14407] = 14396, + [14408] = 8448, + [14409] = 14394, + [14410] = 14395, + [14411] = 14398, + [14412] = 14397, + [14413] = 14394, + [14414] = 14396, + [14415] = 14397, + [14416] = 14395, + [14417] = 14398, + [14418] = 14398, + [14419] = 8490, + [14420] = 8452, + [14421] = 14394, + [14422] = 8468, + [14423] = 14395, + [14424] = 14398, + [14425] = 14394, + [14426] = 14396, + [14427] = 14396, + [14428] = 14395, + [14429] = 14397, + [14430] = 14396, + [14431] = 14398, + [14432] = 14394, + [14433] = 14395, + [14434] = 14397, + [14435] = 14397, + [14436] = 14398, + [14437] = 14396, + [14438] = 14394, + [14439] = 14396, + [14440] = 14396, + [14441] = 14395, + [14442] = 14397, + [14443] = 14396, + [14444] = 14398, + [14445] = 14394, + [14446] = 14395, + [14447] = 14397, + [14448] = 14448, + [14449] = 14396, + [14450] = 14397, + [14451] = 14451, + [14452] = 14398, + [14453] = 14453, + [14454] = 14394, + [14455] = 14455, + [14456] = 14396, + [14457] = 14395, + [14458] = 14458, + [14459] = 14459, + [14460] = 14460, + [14461] = 14461, + [14462] = 14462, + [14463] = 14397, + [14464] = 14464, + [14465] = 14398, + [14466] = 14398, + [14467] = 14398, + [14468] = 14468, + [14469] = 14396, + [14470] = 8454, + [14471] = 8455, + [14472] = 14397, + [14473] = 14394, + [14474] = 14398, + [14475] = 14394, + [14476] = 14395, + [14477] = 14395, + [14478] = 14478, + [14479] = 14394, + [14480] = 14396, + [14481] = 14397, + [14482] = 14396, + [14483] = 14397, + [14484] = 14397, + [14485] = 14398, + [14486] = 14395, + [14487] = 14395, + [14488] = 14398, + [14489] = 14394, + [14490] = 14397, + [14491] = 14394, + [14492] = 14395, + [14493] = 14394, + [14494] = 14395, + [14495] = 8762, + [14496] = 14496, + [14497] = 14396, + [14498] = 14398, + [14499] = 14396, + [14500] = 14397, + [14501] = 14501, + [14502] = 14397, + [14503] = 14395, + [14504] = 14504, + [14505] = 14398, + [14506] = 14398, + [14507] = 14394, + [14508] = 14394, + [14509] = 14398, + [14510] = 14395, + [14511] = 14395, + [14512] = 14396, + [14513] = 8762, + [14514] = 8559, + [14515] = 8560, + [14516] = 14396, + [14517] = 14395, + [14518] = 14397, + [14519] = 14519, + [14520] = 14398, + [14521] = 14394, + [14522] = 14395, + [14523] = 14523, + [14524] = 14524, + [14525] = 14396, + [14526] = 8559, + [14527] = 8560, + [14528] = 14397, + [14529] = 14529, + [14530] = 14398, + [14531] = 14394, + [14532] = 14395, + [14533] = 14396, + [14534] = 14396, + [14535] = 14397, + [14536] = 14396, + [14537] = 14398, + [14538] = 14394, + [14539] = 14395, + [14540] = 14397, + [14541] = 14455, + [14542] = 14398, + [14543] = 14394, + [14544] = 14396, + [14545] = 14397, + [14546] = 14397, + [14547] = 14394, + [14548] = 14394, + [14549] = 8832, + [14550] = 8457, + [14551] = 14398, + [14552] = 14395, + [14553] = 14394, + [14554] = 14462, + [14555] = 14395, + [14556] = 14398, + [14557] = 14398, + [14558] = 14396, + [14559] = 14396, + [14560] = 14397, + [14561] = 14397, + [14562] = 8832, + [14563] = 14394, + [14564] = 14395, + [14565] = 14398, + [14566] = 14398, + [14567] = 4266, + [14568] = 14396, + [14569] = 14394, + [14570] = 14519, + [14571] = 14394, + [14572] = 14572, + [14573] = 14395, + [14574] = 14395, + [14575] = 14397, + [14576] = 14395, + [14577] = 14397, + [14578] = 8460, + [14579] = 14396, + [14580] = 14396, + [14581] = 14459, + [14582] = 14397, + [14583] = 14398, + [14584] = 14394, + [14585] = 8549, + [14586] = 14398, + [14587] = 14395, + [14588] = 14396, + [14589] = 8462, + [14590] = 8448, + [14591] = 14397, + [14592] = 14478, + [14593] = 8480, + [14594] = 14396, + [14595] = 8482, + [14596] = 8450, + [14597] = 14397, + [14598] = 8490, + [14599] = 8452, + [14600] = 8454, + [14601] = 8762, + [14602] = 8455, + [14603] = 14398, + [14604] = 8457, + [14605] = 8460, + [14606] = 8462, + [14607] = 8464, + [14608] = 14394, + [14609] = 8469, + [14610] = 8464, + [14611] = 8493, + [14612] = 14398, + [14613] = 8480, + [14614] = 14395, + [14615] = 8482, + [14616] = 8450, + [14617] = 8490, + [14618] = 8452, + [14619] = 8454, + [14620] = 8455, + [14621] = 8457, + [14622] = 8460, + [14623] = 8462, + [14624] = 14394, + [14625] = 8464, + [14626] = 8469, + [14627] = 14396, + [14628] = 8493, + [14629] = 8485, + [14630] = 14397, + [14631] = 14394, + [14632] = 14496, + [14633] = 14396, + [14634] = 14398, + [14635] = 8468, + [14636] = 14394, + [14637] = 14395, + [14638] = 8467, + [14639] = 14395, + [14640] = 8469, + [14641] = 8485, + [14642] = 14397, + [14643] = 14395, + [14644] = 14394, + [14645] = 8468, + [14646] = 14398, + [14647] = 14396, + [14648] = 14394, + [14649] = 8467, + [14650] = 14519, + [14651] = 14397, + [14652] = 14395, + [14653] = 14398, + [14654] = 14398, + [14655] = 14396, + [14656] = 14394, + [14657] = 14397, + [14658] = 8549, + [14659] = 14395, + [14660] = 14396, + [14661] = 14397, + [14662] = 14319, + [14663] = 14397, + [14664] = 14396, + [14665] = 14397, + [14666] = 14398, + [14667] = 14398, + [14668] = 14394, + [14669] = 14529, + [14670] = 14395, + [14671] = 14394, + [14672] = 14342, + [14673] = 14395, + [14674] = 14396, + [14675] = 14394, + [14676] = 14397, + [14677] = 14398, + [14678] = 14396, + [14679] = 14394, + [14680] = 14395, + [14681] = 14397, + [14682] = 14397, + [14683] = 14396, + [14684] = 8493, + [14685] = 14397, + [14686] = 14396, + [14687] = 14398, + [14688] = 14394, + [14689] = 8448, + [14690] = 14398, + [14691] = 14395, + [14692] = 14397, + [14693] = 14398, + [14694] = 8448, + [14695] = 14398, + [14696] = 14394, + [14697] = 14396, + [14698] = 14395, + [14699] = 14397, + [14700] = 14394, + [14701] = 14398, + [14702] = 14395, + [14703] = 14394, + [14704] = 14394, + [14705] = 14396, + [14706] = 14395, + [14707] = 14496, + [14708] = 14397, + [14709] = 14395, + [14710] = 14459, + [14711] = 14396, + [14712] = 14396, + [14713] = 14397, + [14714] = 14395, + [14715] = 14396, + [14716] = 14398, + [14717] = 14397, + [14718] = 14397, + [14719] = 14398, + [14720] = 14398, + [14721] = 14478, + [14722] = 14394, + [14723] = 14394, + [14724] = 14398, + [14725] = 14395, + [14726] = 14394, + [14727] = 14496, + [14728] = 14394, + [14729] = 14396, + [14730] = 14395, + [14731] = 14396, + [14732] = 14397, + [14733] = 14395, + [14734] = 14398, + [14735] = 14394, + [14736] = 14395, + [14737] = 14519, + [14738] = 14395, + [14739] = 14397, + [14740] = 14459, + [14741] = 8549, + [14742] = 14742, + [14743] = 14396, + [14744] = 14529, + [14745] = 14460, + [14746] = 14397, + [14747] = 14396, + [14748] = 14398, + [14749] = 14394, + [14750] = 14395, + [14751] = 14398, + [14752] = 8559, + [14753] = 8560, + [14754] = 14397, + [14755] = 14396, + [14756] = 14397, + [14757] = 14396, + [14758] = 14398, + [14759] = 14478, + [14760] = 14394, + [14761] = 14395, + [14762] = 14397, + [14763] = 14398, + [14764] = 14396, + [14765] = 14451, + [14766] = 14397, + [14767] = 14398, + [14768] = 14396, + [14769] = 14398, + [14770] = 14394, + [14771] = 14397, + [14772] = 14772, + [14773] = 14398, + [14774] = 14394, + [14775] = 14395, + [14776] = 14394, + [14777] = 14478, + [14778] = 14395, + [14779] = 14396, + [14780] = 14397, + [14781] = 14395, + [14782] = 14496, + [14783] = 14398, + [14784] = 14394, + [14785] = 14394, + [14786] = 14395, + [14787] = 14394, + [14788] = 14394, + [14789] = 14396, + [14790] = 14397, + [14791] = 14395, + [14792] = 14398, + [14793] = 14394, + [14794] = 14395, + [14795] = 14395, + [14796] = 14396, + [14797] = 8480, + [14798] = 14395, + [14799] = 14799, + [14800] = 14519, + [14801] = 14396, + [14802] = 14397, + [14803] = 14397, + [14804] = 14398, + [14805] = 8485, + [14806] = 8482, + [14807] = 14394, + [14808] = 14398, + [14809] = 14396, + [14810] = 14395, + [14811] = 14394, + [14812] = 14396, + [14813] = 14813, + [14814] = 14395, + [14815] = 14815, + [14816] = 14396, + [14817] = 8450, + [14818] = 14397, + [14819] = 14529, + [14820] = 14398, + [14821] = 14396, + [14822] = 14394, + [14823] = 14344, + [14824] = 14395, + [14825] = 14397, + [14826] = 14397, + [14827] = 8467, + [14828] = 14397, + [14829] = 14398, + [14830] = 14830, + [14831] = 14396, + [14832] = 14398, + [14833] = 14397, + [14834] = 14396, + [14835] = 14394, + [14836] = 14398, + [14837] = 14395, + [14838] = 14396, + [14839] = 14395, + [14840] = 14397, + [14841] = 14394, + [14842] = 14398, + [14843] = 14843, + [14844] = 14396, + [14845] = 14395, + [14846] = 14397, + [14847] = 14396, + [14848] = 14397, + [14849] = 14398, + [14850] = 14394, + [14851] = 14851, + [14852] = 14398, + [14853] = 14395, + [14854] = 14394, + [14855] = 14394, + [14856] = 14459, + [14857] = 14395, + [14858] = 14395, + [14859] = 14859, + [14860] = 14396, + [14861] = 14397, + [14862] = 14398, + [14863] = 14394, + [14864] = 14396, + [14865] = 14397, + [14866] = 14529, + [14867] = 14395, + [14868] = 14398, + [14869] = 14398, + [14870] = 14394, + [14871] = 14395, + [14872] = 14396, + [14873] = 14396, + [14874] = 14874, + [14875] = 14875, + [14876] = 10042, + [14877] = 10043, + [14878] = 14875, + [14879] = 14397, + [14880] = 14397, + [14881] = 8448, + [14882] = 14396, + [14883] = 10035, + [14884] = 14398, + [14885] = 14397, + [14886] = 14398, + [14887] = 14394, + [14888] = 14874, + [14889] = 14395, + [14890] = 14394, + [14891] = 14398, + [14892] = 14396, + [14893] = 14572, + [14894] = 14396, + [14895] = 14395, + [14896] = 10035, + [14897] = 14397, + [14898] = 14395, + [14899] = 14398, + [14900] = 14394, + [14901] = 14397, + [14902] = 14395, + [14903] = 14459, + [14904] = 14904, + [14905] = 14396, + [14906] = 14394, + [14907] = 14397, + [14908] = 14396, + [14909] = 14398, + [14910] = 14398, + [14911] = 14394, + [14912] = 14395, + [14913] = 14395, + [14914] = 14478, + [14915] = 14396, + [14916] = 14397, + [14917] = 14396, + [14918] = 14397, + [14919] = 14398, + [14920] = 14394, + [14921] = 14395, + [14922] = 14394, + [14923] = 14397, + [14924] = 14394, + [14925] = 14398, + [14926] = 14396, + [14927] = 14396, + [14928] = 14397, + [14929] = 14496, + [14930] = 14398, + [14931] = 14772, + [14932] = 14815, + [14933] = 10040, + [14934] = 10041, + [14935] = 14394, + [14936] = 14395, + [14937] = 14398, + [14938] = 10042, + [14939] = 10043, + [14940] = 14396, + [14941] = 14395, + [14942] = 10040, + [14943] = 10041, + [14944] = 14397, + [14945] = 14397, + [14946] = 14398, + [14947] = 14394, + [14948] = 10040, + [14949] = 10041, + [14950] = 10042, + [14951] = 10043, + [14952] = 14394, + [14953] = 14519, + [14954] = 14395, + [14955] = 14394, + [14956] = 14398, + [14957] = 10040, + [14958] = 10041, + [14959] = 10042, + [14960] = 10043, + [14961] = 14395, + [14962] = 14396, + [14963] = 14397, + [14964] = 14398, + [14965] = 14394, + [14966] = 14451, + [14967] = 14772, + [14968] = 14395, + [14969] = 14451, + [14970] = 14772, + [14971] = 14529, + [14972] = 14394, + [14973] = 14973, + [14974] = 8448, + [14975] = 8448, + [14976] = 8448, + [14977] = 8448, + [14978] = 8469, + [14979] = 8559, + [14980] = 14980, + [14981] = 8560, + [14982] = 8448, + [14983] = 8448, + [14984] = 8467, + [14985] = 14985, + [14986] = 8832, + [14987] = 14987, + [14988] = 8485, + [14989] = 8493, + [14990] = 8485, + [14991] = 8549, + [14992] = 8448, + [14993] = 8549, + [14994] = 8468, + [14995] = 8550, + [14996] = 8468, + [14997] = 8480, + [14998] = 8482, + [14999] = 8450, + [15000] = 8490, + [15001] = 8452, + [15002] = 8454, + [15003] = 8455, + [15004] = 8457, + [15005] = 8460, + [15006] = 8762, + [15007] = 8462, + [15008] = 8464, + [15009] = 8469, + [15010] = 8493, + [15011] = 8480, + [15012] = 8482, + [15013] = 8448, + [15014] = 8450, + [15015] = 8490, + [15016] = 8452, + [15017] = 8454, + [15018] = 8455, + [15019] = 8457, + [15020] = 8460, + [15021] = 8462, + [15022] = 8464, + [15023] = 8469, + [15024] = 8493, + [15025] = 8485, + [15026] = 8468, + [15027] = 8550, + [15028] = 8467, + [15029] = 8485, + [15030] = 8468, + [15031] = 8762, + [15032] = 8467, + [15033] = 15033, + [15034] = 15034, + [15035] = 8448, + [15036] = 8480, + [15037] = 8482, + [15038] = 8450, + [15039] = 8559, + [15040] = 8560, + [15041] = 8559, + [15042] = 8560, + [15043] = 8490, + [15044] = 8452, + [15045] = 8454, + [15046] = 8455, + [15047] = 8457, + [15048] = 15048, + [15049] = 15049, + [15050] = 15033, + [15051] = 15034, + [15052] = 8460, + [15053] = 14980, + [15054] = 8462, + [15055] = 15055, + [15056] = 15056, + [15057] = 8448, + [15058] = 8469, + [15059] = 15059, + [15060] = 8464, + [15061] = 15061, + [15062] = 15062, + [15063] = 8448, + [15064] = 8448, + [15065] = 8493, + [15066] = 12506, + [15067] = 12064, + [15068] = 15061, + [15069] = 12411, + [15070] = 12506, + [15071] = 12064, + [15072] = 8847, + [15073] = 8848, + [15074] = 8849, + [15075] = 15048, + [15076] = 12411, + [15077] = 8549, + [15078] = 15049, + [15079] = 15079, + [15080] = 15062, + [15081] = 15081, + [15082] = 8937, + [15083] = 15083, + [15084] = 8939, + [15085] = 15085, + [15086] = 15055, + [15087] = 8467, + [15088] = 15056, + [15089] = 15089, + [15090] = 8832, + [15091] = 8480, + [15092] = 8482, + [15093] = 8480, + [15094] = 8482, + [15095] = 8450, + [15096] = 8450, + [15097] = 15097, + [15098] = 15059, + [15099] = 15099, + [15100] = 8490, + [15101] = 8490, + [15102] = 8452, + [15103] = 8452, + [15104] = 8485, + [15105] = 15105, + [15106] = 15106, + [15107] = 8468, + [15108] = 15108, + [15109] = 15055, + [15110] = 8454, + [15111] = 8455, + [15112] = 8832, + [15113] = 8454, + [15114] = 8455, + [15115] = 8457, + [15116] = 8462, + [15117] = 8460, + [15118] = 8457, + [15119] = 15099, + [15120] = 8462, + [15121] = 8464, + [15122] = 8469, + [15123] = 15123, + [15124] = 8493, + [15125] = 8467, + [15126] = 8460, + [15127] = 14985, + [15128] = 15106, + [15129] = 8762, + [15130] = 15081, + [15131] = 8464, + [15132] = 8450, + [15133] = 8493, + [15134] = 8549, + [15135] = 8460, + [15136] = 15136, + [15137] = 13753, + [15138] = 13762, + [15139] = 15139, + [15140] = 8460, + [15141] = 8549, + [15142] = 8454, + [15143] = 8455, + [15144] = 8448, + [15145] = 15136, + [15146] = 8454, + [15147] = 15136, + [15148] = 8490, + [15149] = 8455, + [15150] = 13856, + [15151] = 13857, + [15152] = 9006, + [15153] = 9007, + [15154] = 13858, + [15155] = 13864, + [15156] = 8457, + [15157] = 15136, + [15158] = 8485, + [15159] = 15136, + [15160] = 8448, + [15161] = 8493, + [15162] = 15136, + [15163] = 14140, + [15164] = 8485, + [15165] = 8480, + [15166] = 8549, + [15167] = 8457, + [15168] = 15168, + [15169] = 15136, + [15170] = 8452, + [15171] = 8462, + [15172] = 15136, + [15173] = 8448, + [15174] = 8468, + [15175] = 8462, + [15176] = 15136, + [15177] = 8464, + [15178] = 8457, + [15179] = 15136, + [15180] = 8468, + [15181] = 9033, + [15182] = 8460, + [15183] = 8485, + [15184] = 8464, + [15185] = 8469, + [15186] = 8454, + [15187] = 8460, + [15188] = 8462, + [15189] = 8462, + [15190] = 8464, + [15191] = 8469, + [15192] = 8549, + [15193] = 8464, + [15194] = 8469, + [15195] = 15136, + [15196] = 8469, + [15197] = 8549, + [15198] = 8468, + [15199] = 8480, + [15200] = 15136, + [15201] = 8448, + [15202] = 15136, + [15203] = 8559, + [15204] = 8560, + [15205] = 8482, + [15206] = 15136, + [15207] = 15136, + [15208] = 8450, + [15209] = 8455, + [15210] = 8762, + [15211] = 50, + [15212] = 8762, + [15213] = 8493, + [15214] = 15136, + [15215] = 8457, + [15216] = 8493, + [15217] = 9005, + [15218] = 8482, + [15219] = 8460, + [15220] = 8462, + [15221] = 8464, + [15222] = 8559, + [15223] = 8560, + [15224] = 8469, + [15225] = 8467, + [15226] = 8832, + [15227] = 8493, + [15228] = 8480, + [15229] = 8485, + [15230] = 8467, + [15231] = 8482, + [15232] = 15136, + [15233] = 8450, + [15234] = 8490, + [15235] = 15136, + [15236] = 8450, + [15237] = 8550, + [15238] = 8452, + [15239] = 8468, + [15240] = 8454, + [15241] = 15136, + [15242] = 8455, + [15243] = 8457, + [15244] = 8485, + [15245] = 8460, + [15246] = 8480, + [15247] = 15136, + [15248] = 15136, + [15249] = 8468, + [15250] = 8832, + [15251] = 8462, + [15252] = 8464, + [15253] = 8490, + [15254] = 15136, + [15255] = 8493, + [15256] = 8467, + [15257] = 8559, + [15258] = 8560, + [15259] = 15136, + [15260] = 15136, + [15261] = 8469, + [15262] = 15136, + [15263] = 15136, + [15264] = 8467, + [15265] = 8452, + [15266] = 8485, + [15267] = 8493, + [15268] = 8480, + [15269] = 15136, + [15270] = 8482, + [15271] = 8450, + [15272] = 15136, + [15273] = 8485, + [15274] = 8448, + [15275] = 8468, + [15276] = 15136, + [15277] = 8559, + [15278] = 8560, + [15279] = 15136, + [15280] = 8559, + [15281] = 8560, + [15282] = 8490, + [15283] = 8452, + [15284] = 15136, + [15285] = 8467, + [15286] = 13976, + [15287] = 8847, + [15288] = 8480, + [15289] = 13978, + [15290] = 8467, + [15291] = 8848, + [15292] = 15136, + [15293] = 8849, + [15294] = 15136, + [15295] = 15136, + [15296] = 8482, + [15297] = 8468, + [15298] = 15136, + [15299] = 8450, + [15300] = 8454, + [15301] = 15136, + [15302] = 8455, + [15303] = 8762, + [15304] = 8467, + [15305] = 8485, + [15306] = 8455, + [15307] = 8457, + [15308] = 15136, + [15309] = 14143, + [15310] = 8485, + [15311] = 8937, + [15312] = 8939, + [15313] = 15136, + [15314] = 15314, + [15315] = 15136, + [15316] = 8485, + [15317] = 15136, + [15318] = 8485, + [15319] = 8480, + [15320] = 8485, + [15321] = 8482, + [15322] = 15322, + [15323] = 8457, + [15324] = 15136, + [15325] = 15136, + [15326] = 8460, + [15327] = 8448, + [15328] = 8493, + [15329] = 9019, + [15330] = 9020, + [15331] = 8468, + [15332] = 13912, + [15333] = 8482, + [15334] = 15334, + [15335] = 15136, + [15336] = 15136, + [15337] = 8480, + [15338] = 8480, + [15339] = 8462, + [15340] = 8490, + [15341] = 15341, + [15342] = 8448, + [15343] = 15136, + [15344] = 8464, + [15345] = 15136, + [15346] = 8452, + [15347] = 8469, + [15348] = 8468, + [15349] = 8468, + [15350] = 15136, + [15351] = 15136, + [15352] = 15352, + [15353] = 15136, + [15354] = 15136, + [15355] = 8450, + [15356] = 8550, + [15357] = 15357, + [15358] = 8454, + [15359] = 15136, + [15360] = 15136, + [15361] = 15361, + [15362] = 15136, + [15363] = 15363, + [15364] = 8467, + [15365] = 8455, + [15366] = 8460, + [15367] = 8448, + [15368] = 15136, + [15369] = 8493, + [15370] = 15136, + [15371] = 15136, + [15372] = 8467, + [15373] = 8482, + [15374] = 15136, + [15375] = 8847, + [15376] = 8848, + [15377] = 8849, + [15378] = 8457, + [15379] = 8493, + [15380] = 8457, + [15381] = 8450, + [15382] = 8937, + [15383] = 8939, + [15384] = 15384, + [15385] = 15136, + [15386] = 8467, + [15387] = 15136, + [15388] = 8490, + [15389] = 8452, + [15390] = 8460, + [15391] = 8480, + [15392] = 15136, + [15393] = 8448, + [15394] = 8482, + [15395] = 15136, + [15396] = 8462, + [15397] = 8482, + [15398] = 9020, + [15399] = 8450, + [15400] = 8455, + [15401] = 15136, + [15402] = 8462, + [15403] = 8464, + [15404] = 15341, + [15405] = 8469, + [15406] = 8464, + [15407] = 8469, + [15408] = 15136, + [15409] = 15136, + [15410] = 8490, + [15411] = 15136, + [15412] = 8452, + [15413] = 15136, + [15414] = 8468, + [15415] = 15136, + [15416] = 8468, + [15417] = 15314, + [15418] = 15136, + [15419] = 8448, + [15420] = 8452, + [15421] = 8454, + [15422] = 9030, + [15423] = 8490, + [15424] = 15136, + [15425] = 8452, + [15426] = 8467, + [15427] = 8493, + [15428] = 15136, + [15429] = 15136, + [15430] = 15136, + [15431] = 15136, + [15432] = 15136, + [15433] = 8480, + [15434] = 8454, + [15435] = 8482, + [15436] = 15136, + [15437] = 8454, + [15438] = 8455, + [15439] = 15136, + [15440] = 8467, + [15441] = 8457, + [15442] = 15136, + [15443] = 8450, + [15444] = 8490, + [15445] = 15136, + [15446] = 8452, + [15447] = 15136, + [15448] = 8490, + [15449] = 15136, + [15450] = 8490, + [15451] = 15363, + [15452] = 8454, + [15453] = 8455, + [15454] = 8457, + [15455] = 8452, + [15456] = 15136, + [15457] = 8454, + [15458] = 8460, + [15459] = 8462, + [15460] = 8464, + [15461] = 8469, + [15462] = 15136, + [15463] = 8493, + [15464] = 8480, + [15465] = 8482, + [15466] = 8455, + [15467] = 8450, + [15468] = 8490, + [15469] = 8452, + [15470] = 8460, + [15471] = 8454, + [15472] = 8455, + [15473] = 8457, + [15474] = 8460, + [15475] = 8462, + [15476] = 15136, + [15477] = 8462, + [15478] = 15136, + [15479] = 8464, + [15480] = 8464, + [15481] = 8469, + [15482] = 8469, + [15483] = 8832, + [15484] = 8450, + [15485] = 8559, + [15486] = 8485, + [15487] = 15487, + [15488] = 15488, + [15489] = 15489, + [15490] = 15487, + [15491] = 15491, + [15492] = 15488, + [15493] = 15487, + [15494] = 15494, + [15495] = 15491, + [15496] = 15489, + [15497] = 15491, + [15498] = 15488, + [15499] = 15489, + [15500] = 15489, + [15501] = 15494, + [15502] = 15487, + [15503] = 15494, + [15504] = 15488, + [15505] = 15488, + [15506] = 15491, + [15507] = 15489, + [15508] = 15487, + [15509] = 15491, + [15510] = 15494, + [15511] = 15488, + [15512] = 15491, + [15513] = 15489, + [15514] = 15488, + [15515] = 8559, + [15516] = 15491, + [15517] = 15489, + [15518] = 15491, + [15519] = 15487, + [15520] = 15494, + [15521] = 15487, + [15522] = 15488, + [15523] = 15487, + [15524] = 9033, + [15525] = 15494, + [15526] = 15526, + [15527] = 15491, + [15528] = 15491, + [15529] = 15488, + [15530] = 15489, + [15531] = 8559, + [15532] = 8560, + [15533] = 8480, + [15534] = 15489, + [15535] = 15488, + [15536] = 15487, + [15537] = 15487, + [15538] = 15487, + [15539] = 15494, + [15540] = 8467, + [15541] = 15489, + [15542] = 15494, + [15543] = 15543, + [15544] = 15489, + [15545] = 8559, + [15546] = 8560, + [15547] = 15487, + [15548] = 15488, + [15549] = 8485, + [15550] = 15494, + [15551] = 15487, + [15552] = 15491, + [15553] = 8559, + [15554] = 8560, + [15555] = 15494, + [15556] = 15488, + [15557] = 15491, + [15558] = 15491, + [15559] = 15489, + [15560] = 15487, + [15561] = 15494, + [15562] = 15488, + [15563] = 15488, + [15564] = 15489, + [15565] = 15487, + [15566] = 15491, + [15567] = 15488, + [15568] = 15489, + [15569] = 15487, + [15570] = 8462, + [15571] = 8549, + [15572] = 15491, + [15573] = 15494, + [15574] = 8480, + [15575] = 15494, + [15576] = 15491, + [15577] = 15488, + [15578] = 8482, + [15579] = 15489, + [15580] = 8467, + [15581] = 8457, + [15582] = 15487, + [15583] = 8450, + [15584] = 15494, + [15585] = 15491, + [15586] = 15487, + [15587] = 8480, + [15588] = 15491, + [15589] = 15491, + [15590] = 15488, + [15591] = 8482, + [15592] = 8482, + [15593] = 8450, + [15594] = 15491, + [15595] = 15489, + [15596] = 15488, + [15597] = 8559, + [15598] = 8560, + [15599] = 15487, + [15600] = 8490, + [15601] = 15494, + [15602] = 8559, + [15603] = 8560, + [15604] = 15489, + [15605] = 15489, + [15606] = 8559, + [15607] = 8560, + [15608] = 15491, + [15609] = 15489, + [15610] = 15488, + [15611] = 15489, + [15612] = 8559, + [15613] = 8560, + [15614] = 8452, + [15615] = 15487, + [15616] = 15491, + [15617] = 15488, + [15618] = 15494, + [15619] = 8450, + [15620] = 15489, + [15621] = 15487, + [15622] = 8464, + [15623] = 8490, + [15624] = 15489, + [15625] = 15494, + [15626] = 15494, + [15627] = 15494, + [15628] = 15491, + [15629] = 15488, + [15630] = 8452, + [15631] = 15491, + [15632] = 15488, + [15633] = 15487, + [15634] = 15488, + [15635] = 15488, + [15636] = 15489, + [15637] = 15491, + [15638] = 15487, + [15639] = 15488, + [15640] = 15494, + [15641] = 15494, + [15642] = 15491, + [15643] = 15488, + [15644] = 15489, + [15645] = 8450, + [15646] = 15489, + [15647] = 15489, + [15648] = 15487, + [15649] = 15487, + [15650] = 15494, + [15651] = 15494, + [15652] = 8454, + [15653] = 15494, + [15654] = 8549, + [15655] = 15487, + [15656] = 15487, + [15657] = 15489, + [15658] = 15494, + [15659] = 8455, + [15660] = 8549, + [15661] = 15491, + [15662] = 15489, + [15663] = 15488, + [15664] = 8454, + [15665] = 8455, + [15666] = 15489, + [15667] = 15494, + [15668] = 15489, + [15669] = 15487, + [15670] = 15487, + [15671] = 15494, + [15672] = 15494, + [15673] = 15487, + [15674] = 15487, + [15675] = 15494, + [15676] = 15487, + [15677] = 15487, + [15678] = 15494, + [15679] = 15487, + [15680] = 15491, + [15681] = 8490, + [15682] = 15491, + [15683] = 15491, + [15684] = 8469, + [15685] = 9005, + [15686] = 15494, + [15687] = 8457, + [15688] = 8480, + [15689] = 15491, + [15690] = 15488, + [15691] = 15491, + [15692] = 15488, + [15693] = 15489, + [15694] = 8467, + [15695] = 8457, + [15696] = 15494, + [15697] = 15489, + [15698] = 15487, + [15699] = 15494, + [15700] = 8457, + [15701] = 8549, + [15702] = 9020, + [15703] = 15491, + [15704] = 8460, + [15705] = 15489, + [15706] = 15491, + [15707] = 15487, + [15708] = 9030, + [15709] = 8462, + [15710] = 8464, + [15711] = 8469, + [15712] = 15488, + [15713] = 15494, + [15714] = 15491, + [15715] = 15489, + [15716] = 8454, + [15717] = 15488, + [15718] = 15488, + [15719] = 8455, + [15720] = 15720, + [15721] = 8460, + [15722] = 15489, + [15723] = 8468, + [15724] = 15489, + [15725] = 8452, + [15726] = 8485, + [15727] = 8493, + [15728] = 8462, + [15729] = 15487, + [15730] = 15494, + [15731] = 8464, + [15732] = 15487, + [15733] = 15494, + [15734] = 8467, + [15735] = 8493, + [15736] = 15488, + [15737] = 15494, + [15738] = 15488, + [15739] = 15491, + [15740] = 8460, + [15741] = 8469, + [15742] = 8549, + [15743] = 8468, + [15744] = 15491, + [15745] = 8482, + [15746] = 8450, + [15747] = 15488, + [15748] = 15491, + [15749] = 15488, + [15750] = 15491, + [15751] = 8490, + [15752] = 15491, + [15753] = 15491, + [15754] = 8832, + [15755] = 15488, + [15756] = 15488, + [15757] = 8452, + [15758] = 8469, + [15759] = 9030, + [15760] = 15489, + [15761] = 15491, + [15762] = 15487, + [15763] = 15494, + [15764] = 15764, + [15765] = 15488, + [15766] = 15488, + [15767] = 15489, + [15768] = 15487, + [15769] = 15488, + [15770] = 8485, + [15771] = 9020, + [15772] = 15494, + [15773] = 15487, + [15774] = 15491, + [15775] = 15491, + [15776] = 15491, + [15777] = 15491, + [15778] = 15489, + [15779] = 15488, + [15780] = 8490, + [15781] = 15487, + [15782] = 15489, + [15783] = 15489, + [15784] = 15487, + [15785] = 15494, + [15786] = 15488, + [15787] = 15487, + [15788] = 15491, + [15789] = 15494, + [15790] = 8480, + [15791] = 15487, + [15792] = 15487, + [15793] = 15489, + [15794] = 15489, + [15795] = 15494, + [15796] = 15488, + [15797] = 15494, + [15798] = 15494, + [15799] = 15489, + [15800] = 15800, + [15801] = 15487, + [15802] = 15526, + [15803] = 8457, + [15804] = 15487, + [15805] = 8448, + [15806] = 15494, + [15807] = 15800, + [15808] = 15488, + [15809] = 15491, + [15810] = 15489, + [15811] = 8493, + [15812] = 15491, + [15813] = 15488, + [15814] = 8460, + [15815] = 8493, + [15816] = 8482, + [15817] = 8450, + [15818] = 15488, + [15819] = 8490, + [15820] = 15488, + [15821] = 15491, + [15822] = 8460, + [15823] = 15487, + [15824] = 15489, + [15825] = 15489, + [15826] = 15489, + [15827] = 15494, + [15828] = 15488, + [15829] = 15489, + [15830] = 15487, + [15831] = 8490, + [15832] = 8549, + [15833] = 15487, + [15834] = 15494, + [15835] = 15494, + [15836] = 8468, + [15837] = 15489, + [15838] = 15487, + [15839] = 8462, + [15840] = 15487, + [15841] = 15526, + [15842] = 15488, + [15843] = 8560, + [15844] = 15800, + [15845] = 15494, + [15846] = 8464, + [15847] = 15489, + [15848] = 15487, + [15849] = 8762, + [15850] = 15491, + [15851] = 15488, + [15852] = 8469, + [15853] = 15494, + [15854] = 15487, + [15855] = 15491, + [15856] = 9019, + [15857] = 15489, + [15858] = 15487, + [15859] = 9020, + [15860] = 15491, + [15861] = 15491, + [15862] = 15862, + [15863] = 8452, + [15864] = 15488, + [15865] = 15494, + [15866] = 15489, + [15867] = 15488, + [15868] = 15491, + [15869] = 8549, + [15870] = 15487, + [15871] = 8480, + [15872] = 15526, + [15873] = 8560, + [15874] = 15487, + [15875] = 15800, + [15876] = 15489, + [15877] = 15489, + [15878] = 15487, + [15879] = 15494, + [15880] = 15494, + [15881] = 15488, + [15882] = 15489, + [15883] = 15489, + [15884] = 8454, + [15885] = 8455, + [15886] = 15494, + [15887] = 15494, + [15888] = 8450, + [15889] = 9005, + [15890] = 8762, + [15891] = 15487, + [15892] = 8457, + [15893] = 15494, + [15894] = 9006, + [15895] = 8482, + [15896] = 9007, + [15897] = 15491, + [15898] = 8450, + [15899] = 8462, + [15900] = 9006, + [15901] = 8549, + [15902] = 9007, + [15903] = 15491, + [15904] = 15489, + [15905] = 15494, + [15906] = 15526, + [15907] = 15494, + [15908] = 8464, + [15909] = 8469, + [15910] = 15800, + [15911] = 15488, + [15912] = 15487, + [15913] = 15494, + [15914] = 15488, + [15915] = 15487, + [15916] = 15489, + [15917] = 15489, + [15918] = 15494, + [15919] = 8467, + [15920] = 15491, + [15921] = 15491, + [15922] = 15487, + [15923] = 15494, + [15924] = 15491, + [15925] = 8460, + [15926] = 8467, + [15927] = 8452, + [15928] = 8462, + [15929] = 15494, + [15930] = 15487, + [15931] = 8480, + [15932] = 15488, + [15933] = 15526, + [15934] = 15491, + [15935] = 8454, + [15936] = 15800, + [15937] = 8464, + [15938] = 8469, + [15939] = 8455, + [15940] = 8490, + [15941] = 15526, + [15942] = 15800, + [15943] = 15488, + [15944] = 15491, + [15945] = 15489, + [15946] = 8452, + [15947] = 15491, + [15948] = 8493, + [15949] = 15494, + [15950] = 15526, + [15951] = 15800, + [15952] = 15494, + [15953] = 8454, + [15954] = 8457, + [15955] = 15491, + [15956] = 15526, + [15957] = 15800, + [15958] = 15488, + [15959] = 15488, + [15960] = 15488, + [15961] = 15489, + [15962] = 8455, + [15963] = 8480, + [15964] = 15488, + [15965] = 15487, + [15966] = 15526, + [15967] = 15800, + [15968] = 8493, + [15969] = 15491, + [15970] = 15491, + [15971] = 15488, + [15972] = 15489, + [15973] = 15526, + [15974] = 15800, + [15975] = 15494, + [15976] = 8559, + [15977] = 15487, + [15978] = 15526, + [15979] = 15494, + [15980] = 8468, + [15981] = 15488, + [15982] = 15494, + [15983] = 15491, + [15984] = 8847, + [15985] = 8848, + [15986] = 8849, + [15987] = 15487, + [15988] = 8560, + [15989] = 8485, + [15990] = 15488, + [15991] = 15526, + [15992] = 15491, + [15993] = 15489, + [15994] = 15487, + [15995] = 15489, + [15996] = 15494, + [15997] = 8468, + [15998] = 15487, + [15999] = 15488, + [16000] = 15488, + [16001] = 15489, + [16002] = 15494, + [16003] = 8462, + [16004] = 15491, + [16005] = 15491, + [16006] = 15488, + [16007] = 15491, + [16008] = 15491, + [16009] = 15491, + [16010] = 8485, + [16011] = 15488, + [16012] = 8454, + [16013] = 8455, + [16014] = 15489, + [16015] = 15489, + [16016] = 15489, + [16017] = 15487, + [16018] = 15489, + [16019] = 15491, + [16020] = 15488, + [16021] = 15488, + [16022] = 15488, + [16023] = 15488, + [16024] = 15489, + [16025] = 15488, + [16026] = 15488, + [16027] = 15491, + [16028] = 8937, + [16029] = 8939, + [16030] = 8452, + [16031] = 8493, + [16032] = 8457, + [16033] = 8448, + [16034] = 8493, + [16035] = 15489, + [16036] = 15494, + [16037] = 15488, + [16038] = 15487, + [16039] = 15494, + [16040] = 15487, + [16041] = 15494, + [16042] = 8468, + [16043] = 15489, + [16044] = 15487, + [16045] = 15487, + [16046] = 15488, + [16047] = 15494, + [16048] = 15494, + [16049] = 8460, + [16050] = 15488, + [16051] = 15489, + [16052] = 15487, + [16053] = 15494, + [16054] = 8462, + [16055] = 15488, + [16056] = 15489, + [16057] = 8464, + [16058] = 15487, + [16059] = 8469, + [16060] = 8467, + [16061] = 15489, + [16062] = 15487, + [16063] = 15494, + [16064] = 15489, + [16065] = 15488, + [16066] = 15487, + [16067] = 15491, + [16068] = 8549, + [16069] = 15488, + [16070] = 15494, + [16071] = 15487, + [16072] = 16072, + [16073] = 8448, + [16074] = 15494, + [16075] = 15489, + [16076] = 15491, + [16077] = 15491, + [16078] = 8485, + [16079] = 15488, + [16080] = 15494, + [16081] = 15489, + [16082] = 15491, + [16083] = 9006, + [16084] = 8454, + [16085] = 15487, + [16086] = 9007, + [16087] = 15494, + [16088] = 8455, + [16089] = 8493, + [16090] = 8468, + [16091] = 15491, + [16092] = 8832, + [16093] = 15489, + [16094] = 15487, + [16095] = 15491, + [16096] = 15489, + [16097] = 15491, + [16098] = 15489, + [16099] = 15488, + [16100] = 15488, + [16101] = 15491, + [16102] = 15494, + [16103] = 15489, + [16104] = 15489, + [16105] = 15488, + [16106] = 15487, + [16107] = 9005, + [16108] = 15489, + [16109] = 15494, + [16110] = 15487, + [16111] = 15491, + [16112] = 15494, + [16113] = 15494, + [16114] = 8448, + [16115] = 15487, + [16116] = 9020, + [16117] = 15487, + [16118] = 15489, + [16119] = 15488, + [16120] = 15488, + [16121] = 15494, + [16122] = 15487, + [16123] = 15494, + [16124] = 8832, + [16125] = 8549, + [16126] = 15488, + [16127] = 8457, + [16128] = 15489, + [16129] = 8468, + [16130] = 15488, + [16131] = 15494, + [16132] = 15491, + [16133] = 15487, + [16134] = 16134, + [16135] = 15488, + [16136] = 15491, + [16137] = 15491, + [16138] = 8480, + [16139] = 8485, + [16140] = 15489, + [16141] = 8482, + [16142] = 8450, + [16143] = 15491, + [16144] = 15487, + [16145] = 15494, + [16146] = 15488, + [16147] = 15489, + [16148] = 15487, + [16149] = 15491, + [16150] = 8559, + [16151] = 15489, + [16152] = 15487, + [16153] = 15487, + [16154] = 8460, + [16155] = 15494, + [16156] = 15488, + [16157] = 8559, + [16158] = 8560, + [16159] = 8762, + [16160] = 15489, + [16161] = 15488, + [16162] = 8450, + [16163] = 15494, + [16164] = 8560, + [16165] = 15487, + [16166] = 15494, + [16167] = 15491, + [16168] = 15491, + [16169] = 15494, + [16170] = 15491, + [16171] = 8490, + [16172] = 15491, + [16173] = 8452, + [16174] = 15489, + [16175] = 15488, + [16176] = 15488, + [16177] = 8468, + [16178] = 15487, + [16179] = 15489, + [16180] = 15488, + [16181] = 15487, + [16182] = 15494, + [16183] = 15488, + [16184] = 15487, + [16185] = 15489, + [16186] = 15491, + [16187] = 8464, + [16188] = 8448, + [16189] = 15487, + [16190] = 15489, + [16191] = 15488, + [16192] = 8454, + [16193] = 15494, + [16194] = 15488, + [16195] = 15494, + [16196] = 15491, + [16197] = 15491, + [16198] = 15491, + [16199] = 8455, + [16200] = 15488, + [16201] = 15494, + [16202] = 8485, + [16203] = 15489, + [16204] = 15488, + [16205] = 15487, + [16206] = 15487, + [16207] = 15494, + [16208] = 15488, + [16209] = 15487, + [16210] = 15489, + [16211] = 15494, + [16212] = 8762, + [16213] = 8482, + [16214] = 15489, + [16215] = 15494, + [16216] = 8462, + [16217] = 15489, + [16218] = 15487, + [16219] = 8454, + [16220] = 8464, + [16221] = 8467, + [16222] = 15494, + [16223] = 15494, + [16224] = 15489, + [16225] = 15491, + [16226] = 15489, + [16227] = 8469, + [16228] = 15491, + [16229] = 15491, + [16230] = 8549, + [16231] = 15491, + [16232] = 15491, + [16233] = 15494, + [16234] = 15488, + [16235] = 15488, + [16236] = 8457, + [16237] = 15491, + [16238] = 15487, + [16239] = 9019, + [16240] = 15489, + [16241] = 15487, + [16242] = 15487, + [16243] = 15494, + [16244] = 15488, + [16245] = 8493, + [16246] = 8460, + [16247] = 15489, + [16248] = 9019, + [16249] = 8762, + [16250] = 8549, + [16251] = 15487, + [16252] = 8467, + [16253] = 9033, + [16254] = 15489, + [16255] = 15488, + [16256] = 15487, + [16257] = 15491, + [16258] = 8482, + [16259] = 15487, + [16260] = 8467, + [16261] = 15494, + [16262] = 15487, + [16263] = 15489, + [16264] = 15491, + [16265] = 15488, + [16266] = 15488, + [16267] = 15494, + [16268] = 8460, + [16269] = 15494, + [16270] = 9033, + [16271] = 15489, + [16272] = 15487, + [16273] = 15487, + [16274] = 15491, + [16275] = 15494, + [16276] = 15488, + [16277] = 15494, + [16278] = 15491, + [16279] = 15489, + [16280] = 15487, + [16281] = 15494, + [16282] = 15491, + [16283] = 15494, + [16284] = 15487, + [16285] = 15491, + [16286] = 15491, + [16287] = 8480, + [16288] = 8462, + [16289] = 8464, + [16290] = 8490, + [16291] = 8469, + [16292] = 15487, + [16293] = 15488, + [16294] = 15491, + [16295] = 15489, + [16296] = 15488, + [16297] = 15494, + [16298] = 15494, + [16299] = 15491, + [16300] = 15488, + [16301] = 15489, + [16302] = 15488, + [16303] = 15488, + [16304] = 15489, + [16305] = 15489, + [16306] = 15487, + [16307] = 15487, + [16308] = 15488, + [16309] = 15494, + [16310] = 15488, + [16311] = 8452, + [16312] = 15487, + [16313] = 15494, + [16314] = 15489, + [16315] = 15487, + [16316] = 15487, + [16317] = 15494, + [16318] = 15488, + [16319] = 15487, + [16320] = 15494, + [16321] = 15494, + [16322] = 8455, + [16323] = 15489, + [16324] = 15494, + [16325] = 15491, + [16326] = 15491, + [16327] = 15491, + [16328] = 15491, + [16329] = 15489, + [16330] = 15489, + [16331] = 8485, + [16332] = 15488, + [16333] = 15488, + [16334] = 15494, + [16335] = 8468, + [16336] = 15491, + [16337] = 15489, + [16338] = 15487, + [16339] = 15491, + [16340] = 15489, + [16341] = 15489, + [16342] = 8482, + [16343] = 15489, + [16344] = 15491, + [16345] = 16345, + [16346] = 16345, + [16347] = 8467, + [16348] = 16348, + [16349] = 16349, + [16350] = 8559, + [16351] = 9007, + [16352] = 16352, + [16353] = 16353, + [16354] = 8480, + [16355] = 8485, + [16356] = 8482, + [16357] = 8450, + [16358] = 8559, + [16359] = 8560, + [16360] = 8490, + [16361] = 16349, + [16362] = 8452, + [16363] = 8468, + [16364] = 8480, + [16365] = 8482, + [16366] = 8450, + [16367] = 8490, + [16368] = 8452, + [16369] = 8454, + [16370] = 8455, + [16371] = 8457, + [16372] = 8460, + [16373] = 8462, + [16374] = 8464, + [16375] = 8469, + [16376] = 8493, + [16377] = 8480, + [16378] = 8482, + [16379] = 8450, + [16380] = 8490, + [16381] = 8452, + [16382] = 8454, + [16383] = 8455, + [16384] = 8457, + [16385] = 8460, + [16386] = 8462, + [16387] = 8464, + [16388] = 8469, + [16389] = 8493, + [16390] = 8485, + [16391] = 8468, + [16392] = 8467, + [16393] = 16348, + [16394] = 8485, + [16395] = 8468, + [16396] = 16349, + [16397] = 8467, + [16398] = 8454, + [16399] = 8455, + [16400] = 16400, + [16401] = 8457, + [16402] = 16402, + [16403] = 16403, + [16404] = 8457, + [16405] = 9019, + [16406] = 8460, + [16407] = 8460, + [16408] = 8462, + [16409] = 8464, + [16410] = 8469, + [16411] = 16411, + [16412] = 9033, + [16413] = 8560, + [16414] = 8467, + [16415] = 8493, + [16416] = 16348, + [16417] = 16349, + [16418] = 16349, + [16419] = 16348, + [16420] = 8448, + [16421] = 8448, + [16422] = 16422, + [16423] = 16348, + [16424] = 16349, + [16425] = 8462, + [16426] = 8762, + [16427] = 16345, + [16428] = 16428, + [16429] = 8549, + [16430] = 16345, + [16431] = 16428, + [16432] = 8549, + [16433] = 8549, + [16434] = 16345, + [16435] = 16428, + [16436] = 8464, + [16437] = 8469, + [16438] = 8448, + [16439] = 8549, + [16440] = 16345, + [16441] = 16428, + [16442] = 16428, + [16443] = 8549, + [16444] = 16345, + [16445] = 16428, + [16446] = 8549, + [16447] = 16345, + [16448] = 16428, + [16449] = 9020, + [16450] = 16345, + [16451] = 16348, + [16452] = 8847, + [16453] = 16428, + [16454] = 8848, + [16455] = 8849, + [16456] = 8559, + [16457] = 8560, + [16458] = 16349, + [16459] = 16345, + [16460] = 16428, + [16461] = 8559, + [16462] = 8560, + [16463] = 8549, + [16464] = 16345, + [16465] = 16428, + [16466] = 8559, + [16467] = 8560, + [16468] = 8762, + [16469] = 8549, + [16470] = 16345, + [16471] = 16428, + [16472] = 8559, + [16473] = 8560, + [16474] = 8762, + [16475] = 16345, + [16476] = 16428, + [16477] = 8559, + [16478] = 8560, + [16479] = 16345, + [16480] = 16428, + [16481] = 8559, + [16482] = 8560, + [16483] = 16345, + [16484] = 16428, + [16485] = 8832, + [16486] = 16345, + [16487] = 16428, + [16488] = 16345, + [16489] = 8832, + [16490] = 8480, + [16491] = 16345, + [16492] = 8485, + [16493] = 8482, + [16494] = 16345, + [16495] = 16348, + [16496] = 8762, + [16497] = 16345, + [16498] = 9030, + [16499] = 8762, + [16500] = 9019, + [16501] = 9020, + [16502] = 16345, + [16503] = 8450, + [16504] = 9019, + [16505] = 16345, + [16506] = 8762, + [16507] = 16345, + [16508] = 16345, + [16509] = 8832, + [16510] = 16345, + [16511] = 8559, + [16512] = 8560, + [16513] = 9006, + [16514] = 9007, + [16515] = 8762, + [16516] = 16345, + [16517] = 8559, + [16518] = 8560, + [16519] = 9006, + [16520] = 9007, + [16521] = 8762, + [16522] = 16345, + [16523] = 16348, + [16524] = 16349, + [16525] = 16352, + [16526] = 16345, + [16527] = 8762, + [16528] = 16345, + [16529] = 16345, + [16530] = 16345, + [16531] = 8832, + [16532] = 16345, + [16533] = 8762, + [16534] = 8832, + [16535] = 8467, + [16536] = 16345, + [16537] = 9005, + [16538] = 16345, + [16539] = 9033, + [16540] = 16345, + [16541] = 16348, + [16542] = 9033, + [16543] = 8490, + [16544] = 8452, + [16545] = 16345, + [16546] = 16349, + [16547] = 8468, + [16548] = 9006, + [16549] = 16345, + [16550] = 16345, + [16551] = 16345, + [16552] = 16345, + [16553] = 16345, + [16554] = 16345, + [16555] = 16345, + [16556] = 16345, + [16557] = 8454, + [16558] = 8455, + [16559] = 16345, + [16560] = 16345, + [16561] = 16345, + [16562] = 16345, + [16563] = 16345, + [16564] = 16345, + [16565] = 16345, + [16566] = 16345, + [16567] = 16345, + [16568] = 16345, + [16569] = 16345, + [16570] = 16345, + [16571] = 16345, + [16572] = 16345, + [16573] = 9005, + [16574] = 16345, + [16575] = 9005, + [16576] = 16345, + [16577] = 16345, + [16578] = 16345, + [16579] = 16345, + [16580] = 16345, + [16581] = 16345, + [16582] = 16345, + [16583] = 16345, + [16584] = 8457, + [16585] = 16345, + [16586] = 16345, + [16587] = 16348, + [16588] = 16345, + [16589] = 16349, + [16590] = 16345, + [16591] = 16345, + [16592] = 16345, + [16593] = 16345, + [16594] = 16345, + [16595] = 16345, + [16596] = 16345, + [16597] = 16345, + [16598] = 8460, + [16599] = 16345, + [16600] = 16345, + [16601] = 16345, + [16602] = 16345, + [16603] = 16345, + [16604] = 8462, + [16605] = 16345, + [16606] = 16606, + [16607] = 16607, + [16608] = 8464, + [16609] = 16422, + [16610] = 16402, + [16611] = 16403, + [16612] = 16411, + [16613] = 8469, + [16614] = 16402, + [16615] = 16349, + [16616] = 16400, + [16617] = 16402, + [16618] = 16403, + [16619] = 16411, + [16620] = 16348, + [16621] = 16403, + [16622] = 16349, + [16623] = 16402, + [16624] = 16403, + [16625] = 16411, + [16626] = 16606, + [16627] = 16402, + [16628] = 16403, + [16629] = 16411, + [16630] = 8493, + [16631] = 8937, + [16632] = 8939, + [16633] = 8847, + [16634] = 8848, + [16635] = 8849, + [16636] = 16348, + [16637] = 16411, + [16638] = 16349, + [16639] = 8847, + [16640] = 8848, + [16641] = 8849, + [16642] = 16607, + [16643] = 8847, + [16644] = 8848, + [16645] = 8849, + [16646] = 8937, + [16647] = 8939, + [16648] = 8493, + [16649] = 8937, + [16650] = 8939, + [16651] = 8937, + [16652] = 8939, + [16653] = 8480, + [16654] = 8485, + [16655] = 8482, + [16656] = 8549, + [16657] = 8450, + [16658] = 16348, + [16659] = 16349, + [16660] = 16660, + [16661] = 8490, + [16662] = 8452, + [16663] = 8762, + [16664] = 8468, + [16665] = 8549, + [16666] = 16348, + [16667] = 16349, + [16668] = 8454, + [16669] = 8455, + [16670] = 8762, + [16671] = 16671, + [16672] = 16672, + [16673] = 16673, + [16674] = 16674, + [16675] = 16675, + [16676] = 16676, + [16677] = 8467, + [16678] = 16678, + [16679] = 16679, + [16680] = 16678, + [16681] = 16671, + [16682] = 16682, + [16683] = 16679, + [16684] = 16684, + [16685] = 16672, + [16686] = 16673, + [16687] = 16674, + [16688] = 16675, + [16689] = 16674, + [16690] = 16671, + [16691] = 16682, + [16692] = 16675, + [16693] = 16676, + [16694] = 16684, + [16695] = 16671, + [16696] = 16678, + [16697] = 16679, + [16698] = 16676, + [16699] = 16672, + [16700] = 16678, + [16701] = 16679, + [16702] = 16673, + [16703] = 16678, + [16704] = 16671, + [16705] = 16682, + [16706] = 16684, + [16707] = 16671, + [16708] = 16672, + [16709] = 16673, + [16710] = 8480, + [16711] = 16682, + [16712] = 16679, + [16713] = 16684, + [16714] = 16674, + [16715] = 16675, + [16716] = 16672, + [16717] = 16673, + [16718] = 16676, + [16719] = 8482, + [16720] = 8450, + [16721] = 16674, + [16722] = 16674, + [16723] = 16675, + [16724] = 16678, + [16725] = 16679, + [16726] = 16675, + [16727] = 16671, + [16728] = 16682, + [16729] = 16684, + [16730] = 16672, + [16731] = 16673, + [16732] = 16674, + [16733] = 16675, + [16734] = 16678, + [16735] = 16676, + [16736] = 16682, + [16737] = 16676, + [16738] = 8490, + [16739] = 8452, + [16740] = 16678, + [16741] = 16679, + [16742] = 16671, + [16743] = 16682, + [16744] = 16684, + [16745] = 16672, + [16746] = 16673, + [16747] = 16676, + [16748] = 16674, + [16749] = 16675, + [16750] = 16676, + [16751] = 16678, + [16752] = 16679, + [16753] = 8454, + [16754] = 8455, + [16755] = 16671, + [16756] = 16682, + [16757] = 16678, + [16758] = 16679, + [16759] = 16671, + [16760] = 16682, + [16761] = 16684, + [16762] = 16672, + [16763] = 16673, + [16764] = 16684, + [16765] = 16672, + [16766] = 16673, + [16767] = 16674, + [16768] = 16675, + [16769] = 16676, + [16770] = 8762, + [16771] = 16674, + [16772] = 16675, + [16773] = 16678, + [16774] = 16679, + [16775] = 8559, + [16776] = 16671, + [16777] = 16682, + [16778] = 16684, + [16779] = 16672, + [16780] = 16673, + [16781] = 8457, + [16782] = 16676, + [16783] = 16674, + [16784] = 16675, + [16785] = 16676, + [16786] = 16678, + [16787] = 16679, + [16788] = 16676, + [16789] = 16671, + [16790] = 16682, + [16791] = 16684, + [16792] = 16672, + [16793] = 16673, + [16794] = 8460, + [16795] = 16674, + [16796] = 16675, + [16797] = 16676, + [16798] = 16678, + [16799] = 16679, + [16800] = 8462, + [16801] = 16671, + [16802] = 8464, + [16803] = 8469, + [16804] = 16678, + [16805] = 16805, + [16806] = 16679, + [16807] = 16678, + [16808] = 16679, + [16809] = 16671, + [16810] = 16682, + [16811] = 16684, + [16812] = 16672, + [16813] = 16673, + [16814] = 8560, + [16815] = 16671, + [16816] = 16682, + [16817] = 16674, + [16818] = 16675, + [16819] = 16676, + [16820] = 16671, + [16821] = 16682, + [16822] = 16684, + [16823] = 16684, + [16824] = 16672, + [16825] = 16673, + [16826] = 16678, + [16827] = 16672, + [16828] = 16679, + [16829] = 16673, + [16830] = 16671, + [16831] = 16682, + [16832] = 16684, + [16833] = 16672, + [16834] = 16673, + [16835] = 16682, + [16836] = 16684, + [16837] = 16674, + [16838] = 16675, + [16839] = 16676, + [16840] = 16840, + [16841] = 16841, + [16842] = 16842, + [16843] = 16674, + [16844] = 16675, + [16845] = 16678, + [16846] = 16679, + [16847] = 16671, + [16848] = 16682, + [16849] = 16684, + [16850] = 16672, + [16851] = 16673, + [16852] = 16678, + [16853] = 8493, + [16854] = 16674, + [16855] = 16675, + [16856] = 16676, + [16857] = 16676, + [16858] = 16674, + [16859] = 16675, + [16860] = 16678, + [16861] = 16679, + [16862] = 16671, + [16863] = 16682, + [16864] = 16684, + [16865] = 16672, + [16866] = 16673, + [16867] = 16674, + [16868] = 16675, + [16869] = 8448, + [16870] = 16676, + [16871] = 16679, + [16872] = 16678, + [16873] = 16679, + [16874] = 16678, + [16875] = 16684, + [16876] = 16671, + [16877] = 16682, + [16878] = 16684, + [16879] = 16672, + [16880] = 16673, + [16881] = 16678, + [16882] = 16674, + [16883] = 16675, + [16884] = 16679, + [16885] = 16676, + [16886] = 16678, + [16887] = 16676, + [16888] = 16679, + [16889] = 16678, + [16890] = 16679, + [16891] = 16671, + [16892] = 16671, + [16893] = 16682, + [16894] = 16682, + [16895] = 16684, + [16896] = 16672, + [16897] = 16673, + [16898] = 16674, + [16899] = 16675, + [16900] = 16684, + [16901] = 16672, + [16902] = 16673, + [16903] = 16676, + [16904] = 16679, + [16905] = 16678, + [16906] = 16679, + [16907] = 16671, + [16908] = 16682, + [16909] = 16684, + [16910] = 16672, + [16911] = 16673, + [16912] = 16674, + [16913] = 16675, + [16914] = 16674, + [16915] = 16675, + [16916] = 16676, + [16917] = 16671, + [16918] = 16682, + [16919] = 16676, + [16920] = 16678, + [16921] = 16679, + [16922] = 16671, + [16923] = 16682, + [16924] = 16684, + [16925] = 16672, + [16926] = 16673, + [16927] = 16674, + [16928] = 16675, + [16929] = 16676, + [16930] = 8560, + [16931] = 16678, + [16932] = 16672, + [16933] = 16679, + [16934] = 16671, + [16935] = 16682, + [16936] = 16684, + [16937] = 16684, + [16938] = 16672, + [16939] = 16673, + [16940] = 16678, + [16941] = 16674, + [16942] = 16675, + [16943] = 16673, + [16944] = 16672, + [16945] = 16673, + [16946] = 16679, + [16947] = 16676, + [16948] = 16678, + [16949] = 16679, + [16950] = 8559, + [16951] = 16671, + [16952] = 16678, + [16953] = 16682, + [16954] = 16679, + [16955] = 16671, + [16956] = 16682, + [16957] = 16684, + [16958] = 16672, + [16959] = 16673, + [16960] = 16679, + [16961] = 16684, + [16962] = 16674, + [16963] = 16675, + [16964] = 16672, + [16965] = 16673, + [16966] = 16676, + [16967] = 8480, + [16968] = 16674, + [16969] = 16675, + [16970] = 16678, + [16971] = 16679, + [16972] = 16671, + [16973] = 16682, + [16974] = 16684, + [16975] = 16672, + [16976] = 16673, + [16977] = 8485, + [16978] = 8482, + [16979] = 16674, + [16980] = 16675, + [16981] = 16676, + [16982] = 16676, + [16983] = 8450, + [16984] = 8939, + [16985] = 16678, + [16986] = 16679, + [16987] = 16671, + [16988] = 16682, + [16989] = 16684, + [16990] = 16672, + [16991] = 16673, + [16992] = 16674, + [16993] = 16675, + [16994] = 16678, + [16995] = 16674, + [16996] = 16675, + [16997] = 16679, + [16998] = 16676, + [16999] = 8847, + [17000] = 16678, + [17001] = 16679, + [17002] = 16671, + [17003] = 16682, + [17004] = 16671, + [17005] = 16682, + [17006] = 16684, + [17007] = 16672, + [17008] = 16673, + [17009] = 16671, + [17010] = 16674, + [17011] = 16675, + [17012] = 16678, + [17013] = 16684, + [17014] = 16672, + [17015] = 16673, + [17016] = 16676, + [17017] = 16679, + [17018] = 16682, + [17019] = 16671, + [17020] = 16682, + [17021] = 16678, + [17022] = 16679, + [17023] = 16671, + [17024] = 16682, + [17025] = 16684, + [17026] = 16684, + [17027] = 16672, + [17028] = 16673, + [17029] = 16672, + [17030] = 16673, + [17031] = 16674, + [17032] = 16675, + [17033] = 16676, + [17034] = 16674, + [17035] = 16675, + [17036] = 17036, + [17037] = 16678, + [17038] = 16679, + [17039] = 16671, + [17040] = 16682, + [17041] = 16674, + [17042] = 16684, + [17043] = 16672, + [17044] = 16673, + [17045] = 16675, + [17046] = 16674, + [17047] = 16675, + [17048] = 16676, + [17049] = 16676, + [17050] = 16678, + [17051] = 16679, + [17052] = 16676, + [17053] = 16671, + [17054] = 16682, + [17055] = 16684, + [17056] = 16672, + [17057] = 16673, + [17058] = 16676, + [17059] = 16674, + [17060] = 16675, + [17061] = 16676, + [17062] = 8485, + [17063] = 16678, + [17064] = 16679, + [17065] = 16671, + [17066] = 16682, + [17067] = 16684, + [17068] = 16672, + [17069] = 16673, + [17070] = 16674, + [17071] = 16675, + [17072] = 8490, + [17073] = 16676, + [17074] = 8452, + [17075] = 8468, + [17076] = 16678, + [17077] = 16678, + [17078] = 16679, + [17079] = 16679, + [17080] = 16671, + [17081] = 16682, + [17082] = 16684, + [17083] = 16672, + [17084] = 16673, + [17085] = 16674, + [17086] = 16675, + [17087] = 16676, + [17088] = 16671, + [17089] = 16682, + [17090] = 8468, + [17091] = 16678, + [17092] = 16679, + [17093] = 16684, + [17094] = 16671, + [17095] = 16682, + [17096] = 16672, + [17097] = 16684, + [17098] = 16673, + [17099] = 16672, + [17100] = 16673, + [17101] = 16674, + [17102] = 16675, + [17103] = 16684, + [17104] = 16676, + [17105] = 16671, + [17106] = 16674, + [17107] = 16675, + [17108] = 16672, + [17109] = 16678, + [17110] = 16679, + [17111] = 16671, + [17112] = 16682, + [17113] = 16684, + [17114] = 16672, + [17115] = 16673, + [17116] = 8454, + [17117] = 8455, + [17118] = 16674, + [17119] = 16675, + [17120] = 16676, + [17121] = 16676, + [17122] = 16673, + [17123] = 16678, + [17124] = 16679, + [17125] = 17125, + [17126] = 16671, + [17127] = 16682, + [17128] = 16684, + [17129] = 16672, + [17130] = 16673, + [17131] = 16674, + [17132] = 16675, + [17133] = 16676, + [17134] = 16678, + [17135] = 16679, + [17136] = 16682, + [17137] = 16678, + [17138] = 16679, + [17139] = 16678, + [17140] = 16671, + [17141] = 16682, + [17142] = 8832, + [17143] = 16684, + [17144] = 16672, + [17145] = 16673, + [17146] = 8457, + [17147] = 16679, + [17148] = 16684, + [17149] = 16674, + [17150] = 16675, + [17151] = 16676, + [17152] = 16671, + [17153] = 16682, + [17154] = 8460, + [17155] = 8462, + [17156] = 16684, + [17157] = 16678, + [17158] = 16679, + [17159] = 8464, + [17160] = 8467, + [17161] = 8469, + [17162] = 16675, + [17163] = 16671, + [17164] = 16682, + [17165] = 16672, + [17166] = 16673, + [17167] = 16684, + [17168] = 16672, + [17169] = 16673, + [17170] = 16674, + [17171] = 16675, + [17172] = 16674, + [17173] = 8762, + [17174] = 16676, + [17175] = 8493, + [17176] = 16672, + [17177] = 16671, + [17178] = 16840, + [17179] = 16673, + [17180] = 16674, + [17181] = 16675, + [17182] = 16682, + [17183] = 16678, + [17184] = 16679, + [17185] = 16671, + [17186] = 16682, + [17187] = 16674, + [17188] = 16675, + [17189] = 16671, + [17190] = 16682, + [17191] = 16684, + [17192] = 16672, + [17193] = 16673, + [17194] = 16684, + [17195] = 16841, + [17196] = 16672, + [17197] = 16673, + [17198] = 16674, + [17199] = 16675, + [17200] = 8762, + [17201] = 8448, + [17202] = 9020, + [17203] = 16674, + [17204] = 16676, + [17205] = 16675, + [17206] = 16676, + [17207] = 16676, + [17208] = 16841, + [17209] = 8762, + [17210] = 16674, + [17211] = 16675, + [17212] = 16678, + [17213] = 16679, + [17214] = 16676, + [17215] = 16674, + [17216] = 16671, + [17217] = 16682, + [17218] = 16841, + [17219] = 16684, + [17220] = 16675, + [17221] = 16672, + [17222] = 16684, + [17223] = 8480, + [17224] = 8485, + [17225] = 8549, + [17226] = 8482, + [17227] = 8762, + [17228] = 8450, + [17229] = 16676, + [17230] = 16674, + [17231] = 16675, + [17232] = 16675, + [17233] = 16676, + [17234] = 16841, + [17235] = 8549, + [17236] = 9019, + [17237] = 9020, + [17238] = 8549, + [17239] = 16678, + [17240] = 16679, + [17241] = 16676, + [17242] = 16678, + [17243] = 16679, + [17244] = 8847, + [17245] = 16678, + [17246] = 8848, + [17247] = 8849, + [17248] = 16671, + [17249] = 16682, + [17250] = 16684, + [17251] = 16672, + [17252] = 16673, + [17253] = 16671, + [17254] = 8762, + [17255] = 16682, + [17256] = 9019, + [17257] = 16676, + [17258] = 16679, + [17259] = 16671, + [17260] = 9030, + [17261] = 8490, + [17262] = 8452, + [17263] = 16674, + [17264] = 16675, + [17265] = 16682, + [17266] = 16684, + [17267] = 8762, + [17268] = 16672, + [17269] = 16673, + [17270] = 16684, + [17271] = 16676, + [17272] = 16672, + [17273] = 16673, + [17274] = 8468, + [17275] = 16674, + [17276] = 16675, + [17277] = 16676, + [17278] = 16676, + [17279] = 8832, + [17280] = 16684, + [17281] = 16678, + [17282] = 16679, + [17283] = 8832, + [17284] = 16674, + [17285] = 16675, + [17286] = 16671, + [17287] = 16682, + [17288] = 16684, + [17289] = 8762, + [17290] = 16678, + [17291] = 16672, + [17292] = 16679, + [17293] = 16678, + [17294] = 16673, + [17295] = 16679, + [17296] = 8454, + [17297] = 8455, + [17298] = 9006, + [17299] = 9007, + [17300] = 8762, + [17301] = 16674, + [17302] = 16675, + [17303] = 9006, + [17304] = 9007, + [17305] = 16671, + [17306] = 9019, + [17307] = 9020, + [17308] = 16682, + [17309] = 16671, + [17310] = 16682, + [17311] = 9030, + [17312] = 8559, + [17313] = 8560, + [17314] = 16676, + [17315] = 16676, + [17316] = 16684, + [17317] = 16684, + [17318] = 16672, + [17319] = 16673, + [17320] = 16672, + [17321] = 8559, + [17322] = 8560, + [17323] = 16672, + [17324] = 9020, + [17325] = 16673, + [17326] = 16678, + [17327] = 16679, + [17328] = 8457, + [17329] = 16673, + [17330] = 16678, + [17331] = 16679, + [17332] = 8832, + [17333] = 9020, + [17334] = 16676, + [17335] = 16674, + [17336] = 16671, + [17337] = 16682, + [17338] = 9006, + [17339] = 9007, + [17340] = 9033, + [17341] = 8832, + [17342] = 16675, + [17343] = 16684, + [17344] = 9030, + [17345] = 16672, + [17346] = 16673, + [17347] = 16671, + [17348] = 16676, + [17349] = 16674, + [17350] = 16682, + [17351] = 16675, + [17352] = 9030, + [17353] = 8460, + [17354] = 9033, + [17355] = 8832, + [17356] = 9019, + [17357] = 9020, + [17358] = 16674, + [17359] = 16675, + [17360] = 8848, + [17361] = 8849, + [17362] = 9019, + [17363] = 9020, + [17364] = 8462, + [17365] = 16676, + [17366] = 16684, + [17367] = 8464, + [17368] = 16672, + [17369] = 16673, + [17370] = 8469, + [17371] = 8832, + [17372] = 16676, + [17373] = 17373, + [17374] = 9005, + [17375] = 16678, + [17376] = 16679, + [17377] = 8832, + [17378] = 16672, + [17379] = 9006, + [17380] = 9007, + [17381] = 8832, + [17382] = 16682, + [17383] = 16684, + [17384] = 16678, + [17385] = 16679, + [17386] = 9006, + [17387] = 9007, + [17388] = 8832, + [17389] = 16672, + [17390] = 8549, + [17391] = 16673, + [17392] = 16671, + [17393] = 16682, + [17394] = 9033, + [17395] = 16684, + [17396] = 16672, + [17397] = 16673, + [17398] = 16678, + [17399] = 16679, + [17400] = 8832, + [17401] = 9005, + [17402] = 16674, + [17403] = 16674, + [17404] = 16675, + [17405] = 16675, + [17406] = 16674, + [17407] = 16675, + [17408] = 8493, + [17409] = 16676, + [17410] = 16673, + [17411] = 16671, + [17412] = 16682, + [17413] = 16676, + [17414] = 16684, + [17415] = 16672, + [17416] = 16673, + [17417] = 16678, + [17418] = 16671, + [17419] = 16679, + [17420] = 9033, + [17421] = 16674, + [17422] = 8448, + [17423] = 16671, + [17424] = 16682, + [17425] = 9033, + [17426] = 16684, + [17427] = 16672, + [17428] = 16673, + [17429] = 16676, + [17430] = 16674, + [17431] = 16675, + [17432] = 16678, + [17433] = 16682, + [17434] = 9005, + [17435] = 16679, + [17436] = 16678, + [17437] = 16679, + [17438] = 16674, + [17439] = 16676, + [17440] = 16675, + [17441] = 16671, + [17442] = 16682, + [17443] = 16671, + [17444] = 16682, + [17445] = 16675, + [17446] = 16684, + [17447] = 16684, + [17448] = 16672, + [17449] = 16673, + [17450] = 16672, + [17451] = 16673, + [17452] = 16676, + [17453] = 16674, + [17454] = 16674, + [17455] = 16678, + [17456] = 16675, + [17457] = 16676, + [17458] = 16675, + [17459] = 16678, + [17460] = 16679, + [17461] = 16679, + [17462] = 16671, + [17463] = 16682, + [17464] = 16676, + [17465] = 16676, + [17466] = 16684, + [17467] = 16672, + [17468] = 16673, + [17469] = 9005, + [17470] = 16674, + [17471] = 16675, + [17472] = 9005, + [17473] = 16678, + [17474] = 16679, + [17475] = 8559, + [17476] = 16676, + [17477] = 16672, + [17478] = 16674, + [17479] = 16840, + [17480] = 16678, + [17481] = 16673, + [17482] = 16671, + [17483] = 16679, + [17484] = 16682, + [17485] = 16674, + [17486] = 17486, + [17487] = 16678, + [17488] = 16679, + [17489] = 8560, + [17490] = 16678, + [17491] = 16679, + [17492] = 16671, + [17493] = 16682, + [17494] = 16671, + [17495] = 16682, + [17496] = 16684, + [17497] = 16672, + [17498] = 16673, + [17499] = 16684, + [17500] = 16678, + [17501] = 16672, + [17502] = 16671, + [17503] = 16682, + [17504] = 16679, + [17505] = 16684, + [17506] = 16672, + [17507] = 16673, + [17508] = 16675, + [17509] = 16674, + [17510] = 16673, + [17511] = 16675, + [17512] = 16671, + [17513] = 16682, + [17514] = 16678, + [17515] = 16679, + [17516] = 16676, + [17517] = 16674, + [17518] = 16674, + [17519] = 16675, + [17520] = 16840, + [17521] = 16675, + [17522] = 16842, + [17523] = 16676, + [17524] = 16840, + [17525] = 16684, + [17526] = 8549, + [17527] = 16672, + [17528] = 16673, + [17529] = 16684, + [17530] = 16676, + [17531] = 16672, + [17532] = 16840, + [17533] = 16671, + [17534] = 16842, + [17535] = 16840, + [17536] = 16678, + [17537] = 16679, + [17538] = 16673, + [17539] = 16682, + [17540] = 16671, + [17541] = 16682, + [17542] = 16684, + [17543] = 16672, + [17544] = 16673, + [17545] = 16840, + [17546] = 16684, + [17547] = 16842, + [17548] = 8847, + [17549] = 8848, + [17550] = 8849, + [17551] = 16672, + [17552] = 16674, + [17553] = 16675, + [17554] = 16674, + [17555] = 16675, + [17556] = 16673, + [17557] = 16840, + [17558] = 16842, + [17559] = 16678, + [17560] = 8847, + [17561] = 8848, + [17562] = 8849, + [17563] = 16679, + [17564] = 16676, + [17565] = 16671, + [17566] = 16682, + [17567] = 16684, + [17568] = 8937, + [17569] = 8939, + [17570] = 16672, + [17571] = 16673, + [17572] = 8847, + [17573] = 8848, + [17574] = 8849, + [17575] = 16671, + [17576] = 16682, + [17577] = 16678, + [17578] = 16674, + [17579] = 16675, + [17580] = 8847, + [17581] = 8848, + [17582] = 8849, + [17583] = 16676, + [17584] = 16676, + [17585] = 8847, + [17586] = 8848, + [17587] = 8849, + [17588] = 8937, + [17589] = 8939, + [17590] = 8937, + [17591] = 8939, + [17592] = 16678, + [17593] = 16679, + [17594] = 16679, + [17595] = 16841, + [17596] = 16671, + [17597] = 16682, + [17598] = 16671, + [17599] = 16842, + [17600] = 8937, + [17601] = 8939, + [17602] = 16682, + [17603] = 16684, + [17604] = 16684, + [17605] = 16672, + [17606] = 16673, + [17607] = 16672, + [17608] = 16673, + [17609] = 16674, + [17610] = 16675, + [17611] = 16678, + [17612] = 16679, + [17613] = 8937, + [17614] = 8939, + [17615] = 8448, + [17616] = 8937, + [17617] = 8939, + [17618] = 16671, + [17619] = 16682, + [17620] = 16684, + [17621] = 16672, + [17622] = 16673, + [17623] = 16674, + [17624] = 16675, + [17625] = 8762, + [17626] = 16674, + [17627] = 16675, + [17628] = 16674, + [17629] = 16675, + [17630] = 9020, + [17631] = 16676, + [17632] = 16684, + [17633] = 16676, + [17634] = 16676, + [17635] = 16672, + [17636] = 16676, + [17637] = 16673, + [17638] = 17638, + [17639] = 16678, + [17640] = 16679, + [17641] = 16671, + [17642] = 16682, + [17643] = 16684, + [17644] = 16672, + [17645] = 16673, + [17646] = 8832, + [17647] = 16678, + [17648] = 16679, + [17649] = 16674, + [17650] = 16675, + [17651] = 16678, + [17652] = 16676, + [17653] = 16679, + [17654] = 16842, + [17655] = 17125, + [17656] = 16671, + [17657] = 16682, + [17658] = 16684, + [17659] = 16678, + [17660] = 16672, + [17661] = 16673, + [17662] = 16679, + [17663] = 16674, + [17664] = 16675, + [17665] = 16671, + [17666] = 16682, + [17667] = 16676, + [17668] = 16674, + [17669] = 16675, + [17670] = 16684, + [17671] = 8467, + [17672] = 16672, + [17673] = 16673, + [17674] = 16678, + [17675] = 16679, + [17676] = 16678, + [17677] = 16671, + [17678] = 16682, + [17679] = 16679, + [17680] = 16671, + [17681] = 16682, + [17682] = 16684, + [17683] = 16672, + [17684] = 16673, + [17685] = 16684, + [17686] = 16672, + [17687] = 16673, + [17688] = 16671, + [17689] = 16674, + [17690] = 16675, + [17691] = 16674, + [17692] = 16675, + [17693] = 16684, + [17694] = 16676, + [17695] = 8937, + [17696] = 16682, + [17697] = 16676, + [17698] = 16678, + [17699] = 16679, + [17700] = 16673, + [17701] = 17701, + [17702] = 8452, + [17703] = 9006, + [17704] = 9007, + [17705] = 9020, + [17706] = 9019, + [17707] = 8464, + [17708] = 8448, + [17709] = 8454, + [17710] = 17701, + [17711] = 8762, + [17712] = 17712, + [17713] = 8455, + [17714] = 8480, + [17715] = 17715, + [17716] = 8457, + [17717] = 8469, + [17718] = 8847, + [17719] = 8848, + [17720] = 8849, + [17721] = 8493, + [17722] = 8894, + [17723] = 17723, + [17724] = 17724, + [17725] = 17725, + [17726] = 50, + [17727] = 9006, + [17728] = 9007, + [17729] = 17729, + [17730] = 8762, + [17731] = 9019, + [17732] = 17732, + [17733] = 17701, + [17734] = 17712, + [17735] = 8490, + [17736] = 17736, + [17737] = 8462, + [17738] = 17736, + [17739] = 17724, + [17740] = 17740, + [17741] = 9006, + [17742] = 9007, + [17743] = 17743, + [17744] = 9020, + [17745] = 9030, + [17746] = 8560, + [17747] = 17747, + [17748] = 8457, + [17749] = 17749, + [17750] = 8832, + [17751] = 8460, + [17752] = 17715, + [17753] = 8482, + [17754] = 17723, + [17755] = 8937, + [17756] = 8462, + [17757] = 8939, + [17758] = 17758, + [17759] = 17729, + [17760] = 9006, + [17761] = 9007, + [17762] = 8464, + [17763] = 17740, + [17764] = 8832, + [17765] = 17724, + [17766] = 17758, + [17767] = 8464, + [17768] = 9006, + [17769] = 9007, + [17770] = 8469, + [17771] = 9033, + [17772] = 8460, + [17773] = 8937, + [17774] = 8939, + [17775] = 8493, + [17776] = 8559, + [17777] = 8560, + [17778] = 8493, + [17779] = 8490, + [17780] = 9033, + [17781] = 8452, + [17782] = 17701, + [17783] = 17712, + [17784] = 17724, + [17785] = 17701, + [17786] = 8832, + [17787] = 17747, + [17788] = 17712, + [17789] = 17789, + [17790] = 8450, + [17791] = 9033, + [17792] = 9033, + [17793] = 8832, + [17794] = 9020, + [17795] = 8454, + [17796] = 8455, + [17797] = 17715, + [17798] = 9019, + [17799] = 8450, + [17800] = 9006, + [17801] = 9007, + [17802] = 9019, + [17803] = 8937, + [17804] = 8939, + [17805] = 17740, + [17806] = 9019, + [17807] = 9020, + [17808] = 9020, + [17809] = 8549, + [17810] = 9030, + [17811] = 17811, + [17812] = 9006, + [17813] = 9007, + [17814] = 8469, + [17815] = 17815, + [17816] = 9033, + [17817] = 9019, + [17818] = 9033, + [17819] = 9020, + [17820] = 9005, + [17821] = 9033, + [17822] = 9020, + [17823] = 9006, + [17824] = 27, + [17825] = 9007, + [17826] = 9030, + [17827] = 9033, + [17828] = 8847, + [17829] = 17723, + [17830] = 8559, + [17831] = 8848, + [17832] = 9033, + [17833] = 8549, + [17834] = 17834, + [17835] = 17835, + [17836] = 8849, + [17837] = 8762, + [17838] = 9030, + [17839] = 8468, + [17840] = 17723, + [17841] = 17841, + [17842] = 17701, + [17843] = 8832, + [17844] = 17712, + [17845] = 9019, + [17846] = 9020, + [17847] = 8832, + [17848] = 17848, + [17849] = 8490, + [17850] = 8485, + [17851] = 9020, + [17852] = 8480, + [17853] = 8485, + [17854] = 9005, + [17855] = 17729, + [17856] = 8482, + [17857] = 8450, + [17858] = 8467, + [17859] = 17747, + [17860] = 9005, + [17861] = 9005, + [17862] = 17724, + [17863] = 9019, + [17864] = 9006, + [17865] = 8847, + [17866] = 9007, + [17867] = 8762, + [17868] = 9005, + [17869] = 8485, + [17870] = 9005, + [17871] = 8468, + [17872] = 8848, + [17873] = 17789, + [17874] = 8832, + [17875] = 8849, + [17876] = 8832, + [17877] = 9030, + [17878] = 17723, + [17879] = 17729, + [17880] = 8762, + [17881] = 9005, + [17882] = 8452, + [17883] = 8560, + [17884] = 8468, + [17885] = 17712, + [17886] = 17886, + [17887] = 8480, + [17888] = 17841, + [17889] = 8485, + [17890] = 17701, + [17891] = 17712, + [17892] = 8460, + [17893] = 17747, + [17894] = 17894, + [17895] = 8467, + [17896] = 17715, + [17897] = 17740, + [17898] = 9005, + [17899] = 8490, + [17900] = 8452, + [17901] = 8482, + [17902] = 9005, + [17903] = 8462, + [17904] = 9005, + [17905] = 8468, + [17906] = 17906, + [17907] = 9005, + [17908] = 9033, + [17909] = 9019, + [17910] = 9020, + [17911] = 17911, + [17912] = 8454, + [17913] = 8455, + [17914] = 17724, + [17915] = 9030, + [17916] = 17916, + [17917] = 17906, + [17918] = 8832, + [17919] = 17723, + [17920] = 17729, + [17921] = 8549, + [17922] = 9020, + [17923] = 9006, + [17924] = 9007, + [17925] = 9033, + [17926] = 8454, + [17927] = 9020, + [17928] = 8467, + [17929] = 9020, + [17930] = 9019, + [17931] = 8455, + [17932] = 8493, + [17933] = 17747, + [17934] = 17747, + [17935] = 8467, + [17936] = 9030, + [17937] = 17715, + [17938] = 9006, + [17939] = 9007, + [17940] = 9019, + [17941] = 8457, + [17942] = 9020, + [17943] = 17740, + [17944] = 8460, + [17945] = 17732, + [17946] = 8480, + [17947] = 8482, + [17948] = 8450, + [17949] = 17894, + [17950] = 17715, + [17951] = 8462, + [17952] = 8464, + [17953] = 8469, + [17954] = 8457, + [17955] = 17894, + [17956] = 17848, + [17957] = 17894, + [17958] = 17894, + [17959] = 17894, + [17960] = 17740, + [17961] = 17732, + [17962] = 17732, + [17963] = 8832, + [17964] = 8559, + [17965] = 17729, + [17966] = 10042, + [17967] = 17967, + [17968] = 17968, + [17969] = 17967, + [17970] = 17970, + [17971] = 8457, + [17972] = 9033, + [17973] = 17967, + [17974] = 17970, + [17975] = 17968, + [17976] = 17968, + [17977] = 17967, + [17978] = 17970, + [17979] = 17979, + [17980] = 17980, + [17981] = 8832, + [17982] = 17982, + [17983] = 17979, + [17984] = 17982, + [17985] = 17985, + [17986] = 17980, + [17987] = 17985, + [17988] = 17967, + [17989] = 17985, + [17990] = 17970, + [17991] = 17967, + [17992] = 17968, + [17993] = 17979, + [17994] = 17985, + [17995] = 17967, + [17996] = 17970, + [17997] = 17968, + [17998] = 17970, + [17999] = 17979, + [18000] = 17982, + [18001] = 17968, + [18002] = 17979, + [18003] = 17970, + [18004] = 17982, + [18005] = 17980, + [18006] = 17970, + [18007] = 17968, + [18008] = 17967, + [18009] = 17967, + [18010] = 17968, + [18011] = 17970, + [18012] = 17968, + [18013] = 17985, + [18014] = 17979, + [18015] = 17982, + [18016] = 17985, + [18017] = 17970, + [18018] = 18018, + [18019] = 17970, + [18020] = 17970, + [18021] = 17982, + [18022] = 9005, + [18023] = 18023, + [18024] = 17979, + [18025] = 17970, + [18026] = 17982, + [18027] = 9033, + [18028] = 17970, + [18029] = 17985, + [18030] = 17970, + [18031] = 9005, + [18032] = 17967, + [18033] = 17970, + [18034] = 17967, + [18035] = 17970, + [18036] = 17970, + [18037] = 17968, + [18038] = 17970, + [18039] = 17970, + [18040] = 18040, + [18041] = 9007, + [18042] = 17979, + [18043] = 17985, + [18044] = 8460, + [18045] = 17982, + [18046] = 17980, + [18047] = 17970, + [18048] = 17985, + [18049] = 17970, + [18050] = 17970, + [18051] = 17967, + [18052] = 17970, + [18053] = 17967, + [18054] = 17970, + [18055] = 17970, + [18056] = 17967, + [18057] = 17970, + [18058] = 17968, + [18059] = 17985, + [18060] = 17985, + [18061] = 17979, + [18062] = 17982, + [18063] = 17985, + [18064] = 17970, + [18065] = 17970, + [18066] = 17970, + [18067] = 17970, + [18068] = 17979, + [18069] = 17970, + [18070] = 17982, + [18071] = 17979, + [18072] = 17980, + [18073] = 17982, + [18074] = 17967, + [18075] = 17968, + [18076] = 17968, + [18077] = 17970, + [18078] = 17979, + [18079] = 17979, + [18080] = 17982, + [18081] = 17982, + [18082] = 17967, + [18083] = 17970, + [18084] = 17968, + [18085] = 17979, + [18086] = 17967, + [18087] = 17968, + [18088] = 17979, + [18089] = 17970, + [18090] = 17970, + [18091] = 17970, + [18092] = 17982, + [18093] = 17979, + [18094] = 17985, + [18095] = 17968, + [18096] = 9019, + [18097] = 17979, + [18098] = 17980, + [18099] = 17970, + [18100] = 17982, + [18101] = 8462, + [18102] = 17967, + [18103] = 17968, + [18104] = 8464, + [18105] = 17985, + [18106] = 18106, + [18107] = 8485, + [18108] = 17980, + [18109] = 17985, + [18110] = 18110, + [18111] = 18110, + [18112] = 17970, + [18113] = 17968, + [18114] = 17970, + [18115] = 17985, + [18116] = 17970, + [18117] = 17985, + [18118] = 17985, + [18119] = 17970, + [18120] = 17979, + [18121] = 17979, + [18122] = 17982, + [18123] = 17970, + [18124] = 8469, + [18125] = 17970, + [18126] = 17985, + [18127] = 17970, + [18128] = 17979, + [18129] = 17967, + [18130] = 17979, + [18131] = 17967, + [18132] = 17968, + [18133] = 17980, + [18134] = 17968, + [18135] = 18110, + [18136] = 17982, + [18137] = 17985, + [18138] = 17985, + [18139] = 17979, + [18140] = 17982, + [18141] = 8468, + [18142] = 9005, + [18143] = 17970, + [18144] = 17967, + [18145] = 17982, + [18146] = 17985, + [18147] = 18147, + [18148] = 17968, + [18149] = 17967, + [18150] = 17968, + [18151] = 17979, + [18152] = 17982, + [18153] = 18153, + [18154] = 17967, + [18155] = 17970, + [18156] = 17979, + [18157] = 18157, + [18158] = 17982, + [18159] = 17982, + [18160] = 17979, + [18161] = 17970, + [18162] = 17979, + [18163] = 17979, + [18164] = 17982, + [18165] = 17985, + [18166] = 18110, + [18167] = 9020, + [18168] = 17982, + [18169] = 17982, + [18170] = 18170, + [18171] = 18023, + [18172] = 17979, + [18173] = 17967, + [18174] = 17982, + [18175] = 17968, + [18176] = 17967, + [18177] = 17968, + [18178] = 17970, + [18179] = 17970, + [18180] = 8762, + [18181] = 18110, + [18182] = 8549, + [18183] = 9020, + [18184] = 18184, + [18185] = 17985, + [18186] = 17970, + [18187] = 17985, + [18188] = 17968, + [18189] = 17968, + [18190] = 17967, + [18191] = 17970, + [18192] = 17968, + [18193] = 17967, + [18194] = 17968, + [18195] = 17979, + [18196] = 17985, + [18197] = 17980, + [18198] = 17982, + [18199] = 17979, + [18200] = 17985, + [18201] = 17979, + [18202] = 17970, + [18203] = 17982, + [18204] = 18204, + [18205] = 17979, + [18206] = 17982, + [18207] = 17967, + [18208] = 17968, + [18209] = 17982, + [18210] = 9030, + [18211] = 17980, + [18212] = 9020, + [18213] = 8832, + [18214] = 17967, + [18215] = 18147, + [18216] = 17979, + [18217] = 17985, + [18218] = 18023, + [18219] = 17982, + [18220] = 17967, + [18221] = 17967, + [18222] = 17970, + [18223] = 17968, + [18224] = 17970, + [18225] = 17985, + [18226] = 8549, + [18227] = 17985, + [18228] = 17970, + [18229] = 17985, + [18230] = 9006, + [18231] = 17985, + [18232] = 9007, + [18233] = 17979, + [18234] = 17982, + [18235] = 17968, + [18236] = 9019, + [18237] = 9005, + [18238] = 17970, + [18239] = 17970, + [18240] = 9019, + [18241] = 17970, + [18242] = 17985, + [18243] = 17967, + [18244] = 8480, + [18245] = 18245, + [18246] = 17970, + [18247] = 9020, + [18248] = 17980, + [18249] = 17968, + [18250] = 17967, + [18251] = 17985, + [18252] = 17968, + [18253] = 8482, + [18254] = 9030, + [18255] = 8559, + [18256] = 17967, + [18257] = 17979, + [18258] = 17968, + [18259] = 17982, + [18260] = 9019, + [18261] = 17985, + [18262] = 17979, + [18263] = 17982, + [18264] = 17967, + [18265] = 17979, + [18266] = 8560, + [18267] = 17985, + [18268] = 17968, + [18269] = 17985, + [18270] = 17968, + [18271] = 17985, + [18272] = 17970, + [18273] = 17985, + [18274] = 17967, + [18275] = 17968, + [18276] = 17970, + [18277] = 17970, + [18278] = 17970, + [18279] = 8450, + [18280] = 17970, + [18281] = 17970, + [18282] = 18023, + [18283] = 17967, + [18284] = 17979, + [18285] = 17979, + [18286] = 17979, + [18287] = 17982, + [18288] = 17979, + [18289] = 17982, + [18290] = 17982, + [18291] = 17982, + [18292] = 17968, + [18293] = 17967, + [18294] = 9019, + [18295] = 17968, + [18296] = 9019, + [18297] = 17967, + [18298] = 17982, + [18299] = 17968, + [18300] = 17967, + [18301] = 17968, + [18302] = 17979, + [18303] = 17982, + [18304] = 18304, + [18305] = 17967, + [18306] = 17970, + [18307] = 9006, + [18308] = 9007, + [18309] = 17967, + [18310] = 17968, + [18311] = 17968, + [18312] = 17967, + [18313] = 17967, + [18314] = 17980, + [18315] = 9019, + [18316] = 17968, + [18317] = 17985, + [18318] = 17985, + [18319] = 17970, + [18320] = 17980, + [18321] = 17967, + [18322] = 8493, + [18323] = 17970, + [18324] = 17985, + [18325] = 17970, + [18326] = 9019, + [18327] = 17967, + [18328] = 17968, + [18329] = 17985, + [18330] = 18170, + [18331] = 8832, + [18332] = 8467, + [18333] = 9033, + [18334] = 9006, + [18335] = 9020, + [18336] = 17979, + [18337] = 17968, + [18338] = 18023, + [18339] = 17979, + [18340] = 17982, + [18341] = 17967, + [18342] = 17982, + [18343] = 17967, + [18344] = 18344, + [18345] = 18345, + [18346] = 18018, + [18347] = 9006, + [18348] = 9007, + [18349] = 17970, + [18350] = 8549, + [18351] = 17968, + [18352] = 17967, + [18353] = 17968, + [18354] = 17985, + [18355] = 17979, + [18356] = 17967, + [18357] = 17968, + [18358] = 17985, + [18359] = 9030, + [18360] = 17970, + [18361] = 17970, + [18362] = 9019, + [18363] = 17970, + [18364] = 17979, + [18365] = 17985, + [18366] = 17970, + [18367] = 17985, + [18368] = 17968, + [18369] = 17979, + [18370] = 17982, + [18371] = 17970, + [18372] = 18344, + [18373] = 17982, + [18374] = 18018, + [18375] = 17980, + [18376] = 17979, + [18377] = 17982, + [18378] = 9006, + [18379] = 17967, + [18380] = 17968, + [18381] = 9005, + [18382] = 17982, + [18383] = 17985, + [18384] = 9006, + [18385] = 9007, + [18386] = 9033, + [18387] = 17967, + [18388] = 17979, + [18389] = 17982, + [18390] = 17968, + [18391] = 17985, + [18392] = 17970, + [18393] = 17985, + [18394] = 17967, + [18395] = 17967, + [18396] = 8448, + [18397] = 17968, + [18398] = 17970, + [18399] = 18344, + [18400] = 8490, + [18401] = 18344, + [18402] = 17979, + [18403] = 18018, + [18404] = 17985, + [18405] = 17970, + [18406] = 17968, + [18407] = 17970, + [18408] = 17979, + [18409] = 17982, + [18410] = 17982, + [18411] = 18411, + [18412] = 9005, + [18413] = 8452, + [18414] = 17970, + [18415] = 17985, + [18416] = 9006, + [18417] = 17970, + [18418] = 9007, + [18419] = 9033, + [18420] = 18344, + [18421] = 17967, + [18422] = 18018, + [18423] = 17968, + [18424] = 17968, + [18425] = 17985, + [18426] = 17967, + [18427] = 17979, + [18428] = 17982, + [18429] = 18245, + [18430] = 17968, + [18431] = 17985, + [18432] = 17979, + [18433] = 17967, + [18434] = 17968, + [18435] = 17979, + [18436] = 17982, + [18437] = 17970, + [18438] = 17985, + [18439] = 17967, + [18440] = 17982, + [18441] = 18441, + [18442] = 17982, + [18443] = 17970, + [18444] = 17967, + [18445] = 17968, + [18446] = 18344, + [18447] = 18018, + [18448] = 9005, + [18449] = 9006, + [18450] = 9007, + [18451] = 9033, + [18452] = 9007, + [18453] = 17979, + [18454] = 18344, + [18455] = 18018, + [18456] = 17982, + [18457] = 17979, + [18458] = 17982, + [18459] = 17967, + [18460] = 17980, + [18461] = 8762, + [18462] = 17968, + [18463] = 17985, + [18464] = 17982, + [18465] = 18344, + [18466] = 18018, + [18467] = 18467, + [18468] = 17980, + [18469] = 8549, + [18470] = 9005, + [18471] = 17967, + [18472] = 17985, + [18473] = 18344, + [18474] = 18018, + [18475] = 9019, + [18476] = 9033, + [18477] = 17968, + [18478] = 17970, + [18479] = 18344, + [18480] = 18018, + [18481] = 17967, + [18482] = 17985, + [18483] = 17980, + [18484] = 9020, + [18485] = 17980, + [18486] = 8762, + [18487] = 17979, + [18488] = 17982, + [18489] = 17970, + [18490] = 17985, + [18491] = 17985, + [18492] = 18344, + [18493] = 18018, + [18494] = 18494, + [18495] = 8559, + [18496] = 8560, + [18497] = 8559, + [18498] = 18344, + [18499] = 17970, + [18500] = 17985, + [18501] = 17967, + [18502] = 17968, + [18503] = 17985, + [18504] = 9005, + [18505] = 17970, + [18506] = 18344, + [18507] = 17985, + [18508] = 17979, + [18509] = 17967, + [18510] = 17968, + [18511] = 17982, + [18512] = 18512, + [18513] = 17970, + [18514] = 17979, + [18515] = 17985, + [18516] = 17982, + [18517] = 17970, + [18518] = 17979, + [18519] = 17982, + [18520] = 17970, + [18521] = 17985, + [18522] = 17970, + [18523] = 17979, + [18524] = 17982, + [18525] = 17967, + [18526] = 17968, + [18527] = 17979, + [18528] = 17982, + [18529] = 18529, + [18530] = 17970, + [18531] = 17970, + [18532] = 9005, + [18533] = 17967, + [18534] = 17968, + [18535] = 17967, + [18536] = 17968, + [18537] = 9006, + [18538] = 9007, + [18539] = 17967, + [18540] = 17968, + [18541] = 17982, + [18542] = 17979, + [18543] = 17979, + [18544] = 18345, + [18545] = 17982, + [18546] = 17979, + [18547] = 17982, + [18548] = 17980, + [18549] = 17970, + [18550] = 17968, + [18551] = 17982, + [18552] = 8559, + [18553] = 8560, + [18554] = 17979, + [18555] = 17982, + [18556] = 17970, + [18557] = 9006, + [18558] = 9007, + [18559] = 9033, + [18560] = 17970, + [18561] = 17985, + [18562] = 18562, + [18563] = 8454, + [18564] = 17967, + [18565] = 17970, + [18566] = 8455, + [18567] = 17970, + [18568] = 17985, + [18569] = 17968, + [18570] = 17985, + [18571] = 17985, + [18572] = 18572, + [18573] = 17970, + [18574] = 17970, + [18575] = 17979, + [18576] = 17982, + [18577] = 17985, + [18578] = 17985, + [18579] = 17970, + [18580] = 17970, + [18581] = 17979, + [18582] = 17967, + [18583] = 17982, + [18584] = 17970, + [18585] = 17967, + [18586] = 17968, + [18587] = 17970, + [18588] = 8832, + [18589] = 17985, + [18590] = 17967, + [18591] = 17967, + [18592] = 17979, + [18593] = 17982, + [18594] = 17980, + [18595] = 17979, + [18596] = 17967, + [18597] = 17968, + [18598] = 17982, + [18599] = 17979, + [18600] = 17982, + [18601] = 9033, + [18602] = 18157, + [18603] = 17979, + [18604] = 18110, + [18605] = 17968, + [18606] = 17982, + [18607] = 18184, + [18608] = 17968, + [18609] = 17970, + [18610] = 17967, + [18611] = 17968, + [18612] = 18153, + [18613] = 8832, + [18614] = 17985, + [18615] = 17967, + [18616] = 17968, + [18617] = 18184, + [18618] = 17967, + [18619] = 17968, + [18620] = 17980, + [18621] = 18184, + [18622] = 17967, + [18623] = 17985, + [18624] = 18624, + [18625] = 17968, + [18626] = 17970, + [18627] = 18184, + [18628] = 17967, + [18629] = 17985, + [18630] = 17979, + [18631] = 17982, + [18632] = 17970, + [18633] = 17970, + [18634] = 18184, + [18635] = 10035, + [18636] = 17985, + [18637] = 17979, + [18638] = 17970, + [18639] = 17970, + [18640] = 17970, + [18641] = 17982, + [18642] = 17985, + [18643] = 17979, + [18644] = 17979, + [18645] = 17982, + [18646] = 17982, + [18647] = 17979, + [18648] = 17982, + [18649] = 17980, + [18650] = 17967, + [18651] = 17968, + [18652] = 17967, + [18653] = 17968, + [18654] = 17979, + [18655] = 18655, + [18656] = 17967, + [18657] = 17968, + [18658] = 17968, + [18659] = 17967, + [18660] = 17968, + [18661] = 8560, + [18662] = 17982, + [18663] = 17970, + [18664] = 17979, + [18665] = 18665, + [18666] = 18666, + [18667] = 17979, + [18668] = 17982, + [18669] = 17968, + [18670] = 17967, + [18671] = 17968, + [18672] = 17982, + [18673] = 17985, + [18674] = 17980, + [18675] = 17980, + [18676] = 17985, + [18677] = 10035, + [18678] = 17970, + [18679] = 17970, + [18680] = 17985, + [18681] = 17985, + [18682] = 10042, + [18683] = 10043, + [18684] = 10040, + [18685] = 10041, + [18686] = 17970, + [18687] = 17985, + [18688] = 10043, + [18689] = 10040, + [18690] = 10041, + [18691] = 9033, + [18692] = 17970, + [18693] = 17970, + [18694] = 17985, + [18695] = 17970, + [18696] = 17979, + [18697] = 17985, + [18698] = 17979, + [18699] = 17982, + [18700] = 17979, + [18701] = 18023, + [18702] = 17982, + [18703] = 17982, + [18704] = 17979, + [18705] = 18147, + [18706] = 18706, + [18707] = 18706, + [18708] = 18708, + [18709] = 18709, + [18710] = 18706, + [18711] = 18711, + [18712] = 18712, + [18713] = 18713, + [18714] = 18706, + [18715] = 18708, + [18716] = 18706, + [18717] = 18711, + [18718] = 9006, + [18719] = 18719, + [18720] = 18709, + [18721] = 18712, + [18722] = 9007, + [18723] = 18709, + [18724] = 18708, + [18725] = 18709, + [18726] = 18706, + [18727] = 18711, + [18728] = 18706, + [18729] = 18729, + [18730] = 18706, + [18731] = 18706, + [18732] = 18711, + [18733] = 18709, + [18734] = 18706, + [18735] = 18709, + [18736] = 18712, + [18737] = 18712, + [18738] = 18713, + [18739] = 18706, + [18740] = 18708, + [18741] = 18706, + [18742] = 18742, + [18743] = 10691, + [18744] = 18744, + [18745] = 9007, + [18746] = 18746, + [18747] = 18706, + [18748] = 10767, + [18749] = 18709, + [18750] = 18709, + [18751] = 18709, + [18752] = 18709, + [18753] = 18709, + [18754] = 18706, + [18755] = 18712, + [18756] = 18711, + [18757] = 18712, + [18758] = 18758, + [18759] = 18708, + [18760] = 18706, + [18761] = 18706, + [18762] = 18709, + [18763] = 18711, + [18764] = 18706, + [18765] = 18742, + [18766] = 18706, + [18767] = 18709, + [18768] = 18768, + [18769] = 8832, + [18770] = 18711, + [18771] = 18711, + [18772] = 18713, + [18773] = 18709, + [18774] = 18711, + [18775] = 18712, + [18776] = 18712, + [18777] = 18712, + [18778] = 18712, + [18779] = 18712, + [18780] = 18712, + [18781] = 18712, + [18782] = 18712, + [18783] = 18712, + [18784] = 18712, + [18785] = 18712, + [18786] = 18712, + [18787] = 18712, + [18788] = 18712, + [18789] = 18712, + [18790] = 18712, + [18791] = 18712, + [18792] = 18712, + [18793] = 18712, + [18794] = 18712, + [18795] = 18712, + [18796] = 18712, + [18797] = 18712, + [18798] = 18712, + [18799] = 18712, + [18800] = 18712, + [18801] = 18712, + [18802] = 18713, + [18803] = 18803, + [18804] = 9006, + [18805] = 9006, + [18806] = 18709, + [18807] = 18807, + [18808] = 18706, + [18809] = 18711, + [18810] = 18810, + [18811] = 18709, + [18812] = 18709, + [18813] = 18813, + [18814] = 18712, + [18815] = 18706, + [18816] = 18807, + [18817] = 31, + [18818] = 18708, + [18819] = 18709, + [18820] = 18711, + [18821] = 18706, + [18822] = 18712, + [18823] = 8832, + [18824] = 18711, + [18825] = 18810, + [18826] = 18813, + [18827] = 18706, + [18828] = 18711, + [18829] = 18706, + [18830] = 18713, + [18831] = 18709, + [18832] = 18712, + [18833] = 18706, + [18834] = 18711, + [18835] = 18709, + [18836] = 18708, + [18837] = 18713, + [18838] = 18711, + [18839] = 18706, + [18840] = 18711, + [18841] = 18712, + [18842] = 18709, + [18843] = 18843, + [18844] = 18706, + [18845] = 8480, + [18846] = 8485, + [18847] = 8482, + [18848] = 18711, + [18849] = 18709, + [18850] = 18711, + [18851] = 18851, + [18852] = 18768, + [18853] = 18712, + [18854] = 18706, + [18855] = 8450, + [18856] = 18706, + [18857] = 18709, + [18858] = 18711, + [18859] = 18706, + [18860] = 18711, + [18861] = 18709, + [18862] = 9033, + [18863] = 9005, + [18864] = 18709, + [18865] = 18712, + [18866] = 18713, + [18867] = 8490, + [18868] = 18712, + [18869] = 18744, + [18870] = 18706, + [18871] = 8452, + [18872] = 18709, + [18873] = 18708, + [18874] = 18706, + [18875] = 18713, + [18876] = 8468, + [18877] = 18709, + [18878] = 18706, + [18879] = 18709, + [18880] = 18709, + [18881] = 18712, + [18882] = 18709, + [18883] = 18709, + [18884] = 18711, + [18885] = 18742, + [18886] = 18886, + [18887] = 18709, + [18888] = 18709, + [18889] = 18706, + [18890] = 18758, + [18891] = 18706, + [18892] = 18706, + [18893] = 18706, + [18894] = 18706, + [18895] = 18712, + [18896] = 18706, + [18897] = 18713, + [18898] = 18742, + [18899] = 18768, + [18900] = 30, + [18901] = 18711, + [18902] = 18712, + [18903] = 18746, + [18904] = 18711, + [18905] = 18713, + [18906] = 9019, + [18907] = 18709, + [18908] = 18711, + [18909] = 18712, + [18910] = 18711, + [18911] = 18709, + [18912] = 18711, + [18913] = 18709, + [18914] = 18706, + [18915] = 18713, + [18916] = 18711, + [18917] = 18706, + [18918] = 18713, + [18919] = 18706, + [18920] = 18709, + [18921] = 18712, + [18922] = 18709, + [18923] = 18708, + [18924] = 18807, + [18925] = 8454, + [18926] = 8455, + [18927] = 18713, + [18928] = 18810, + [18929] = 18712, + [18930] = 18711, + [18931] = 18708, + [18932] = 8832, + [18933] = 18813, + [18934] = 18706, + [18935] = 18713, + [18936] = 18706, + [18937] = 18712, + [18938] = 18711, + [18939] = 18706, + [18940] = 18713, + [18941] = 18706, + [18942] = 18712, + [18943] = 18708, + [18944] = 18713, + [18945] = 18709, + [18946] = 18711, + [18947] = 18706, + [18948] = 8762, + [18949] = 18709, + [18950] = 18706, + [18951] = 18709, + [18952] = 18713, + [18953] = 18706, + [18954] = 18742, + [18955] = 18711, + [18956] = 18709, + [18957] = 18713, + [18958] = 18709, + [18959] = 18706, + [18960] = 18709, + [18961] = 18706, + [18962] = 18709, + [18963] = 8457, + [18964] = 18713, + [18965] = 18706, + [18966] = 18711, + [18967] = 18712, + [18968] = 18712, + [18969] = 18706, + [18970] = 18709, + [18971] = 18768, + [18972] = 18713, + [18973] = 18708, + [18974] = 18711, + [18975] = 18709, + [18976] = 18711, + [18977] = 18706, + [18978] = 18706, + [18979] = 18713, + [18980] = 18709, + [18981] = 18713, + [18982] = 18711, + [18983] = 18712, + [18984] = 18709, + [18985] = 18709, + [18986] = 18709, + [18987] = 18713, + [18988] = 18706, + [18989] = 18711, + [18990] = 18711, + [18991] = 18706, + [18992] = 18712, + [18993] = 18711, + [18994] = 8460, + [18995] = 18713, + [18996] = 18807, + [18997] = 18706, + [18998] = 18709, + [18999] = 18706, + [19000] = 18711, + [19001] = 8462, + [19002] = 8464, + [19003] = 18713, + [19004] = 8469, + [19005] = 18711, + [19006] = 18810, + [19007] = 18813, + [19008] = 18712, + [19009] = 18758, + [19010] = 18711, + [19011] = 18713, + [19012] = 18742, + [19013] = 18768, + [19014] = 18706, + [19015] = 18712, + [19016] = 18713, + [19017] = 19017, + [19018] = 18712, + [19019] = 18709, + [19020] = 18711, + [19021] = 18708, + [19022] = 9019, + [19023] = 18712, + [19024] = 18711, + [19025] = 18711, + [19026] = 18713, + [19027] = 18706, + [19028] = 18807, + [19029] = 8493, + [19030] = 18712, + [19031] = 19031, + [19032] = 18713, + [19033] = 18706, + [19034] = 18706, + [19035] = 19035, + [19036] = 18713, + [19037] = 18711, + [19038] = 18709, + [19039] = 18709, + [19040] = 18711, + [19041] = 18713, + [19042] = 18712, + [19043] = 18706, + [19044] = 18711, + [19045] = 18713, + [19046] = 18709, + [19047] = 18712, + [19048] = 18706, + [19049] = 8467, + [19050] = 18713, + [19051] = 18711, + [19052] = 18713, + [19053] = 18712, + [19054] = 18709, + [19055] = 18706, + [19056] = 18712, + [19057] = 18706, + [19058] = 18713, + [19059] = 19059, + [19060] = 18706, + [19061] = 18712, + [19062] = 18713, + [19063] = 18706, + [19064] = 18708, + [19065] = 18712, + [19066] = 18706, + [19067] = 18713, + [19068] = 18713, + [19069] = 18706, + [19070] = 18708, + [19071] = 18713, + [19072] = 18712, + [19073] = 19073, + [19074] = 18711, + [19075] = 18713, + [19076] = 18706, + [19077] = 18706, + [19078] = 18713, + [19079] = 18711, + [19080] = 18712, + [19081] = 18706, + [19082] = 18706, + [19083] = 18706, + [19084] = 9033, + [19085] = 18706, + [19086] = 18709, + [19087] = 18709, + [19088] = 18709, + [19089] = 18712, + [19090] = 18706, + [19091] = 18706, + [19092] = 19092, + [19093] = 19093, + [19094] = 18758, + [19095] = 18711, + [19096] = 18712, + [19097] = 18706, + [19098] = 18712, + [19099] = 18706, + [19100] = 18709, + [19101] = 18758, + [19102] = 18706, + [19103] = 18708, + [19104] = 19073, + [19105] = 18712, + [19106] = 18709, + [19107] = 18709, + [19108] = 18709, + [19109] = 18706, + [19110] = 18706, + [19111] = 18711, + [19112] = 18706, + [19113] = 18706, + [19114] = 18709, + [19115] = 18712, + [19116] = 18711, + [19117] = 18709, + [19118] = 18711, + [19119] = 18758, + [19120] = 18712, + [19121] = 18711, + [19122] = 18742, + [19123] = 18768, + [19124] = 18711, + [19125] = 18712, + [19126] = 8762, + [19127] = 18712, + [19128] = 18708, + [19129] = 18711, + [19130] = 18712, + [19131] = 19131, + [19132] = 18709, + [19133] = 18706, + [19134] = 27, + [19135] = 18712, + [19136] = 18711, + [19137] = 18706, + [19138] = 18709, + [19139] = 9007, + [19140] = 9005, + [19141] = 18711, + [19142] = 18709, + [19143] = 18711, + [19144] = 18706, + [19145] = 18709, + [19146] = 18709, + [19147] = 18706, + [19148] = 18712, + [19149] = 29, + [19150] = 19150, + [19151] = 18706, + [19152] = 18708, + [19153] = 18711, + [19154] = 18711, + [19155] = 18712, + [19156] = 18709, + [19157] = 8559, + [19158] = 18711, + [19159] = 18706, + [19160] = 18706, + [19161] = 18709, + [19162] = 18708, + [19163] = 18706, + [19164] = 18706, + [19165] = 18706, + [19166] = 18711, + [19167] = 18711, + [19168] = 18706, + [19169] = 18711, + [19170] = 18709, + [19171] = 18709, + [19172] = 18706, + [19173] = 18706, + [19174] = 18810, + [19175] = 18709, + [19176] = 18706, + [19177] = 18711, + [19178] = 18711, + [19179] = 18706, + [19180] = 18706, + [19181] = 18709, + [19182] = 18706, + [19183] = 18709, + [19184] = 18706, + [19185] = 18706, + [19186] = 18711, + [19187] = 9019, + [19188] = 18712, + [19189] = 18711, + [19190] = 18706, + [19191] = 18711, + [19192] = 18712, + [19193] = 18712, + [19194] = 18708, + [19195] = 18706, + [19196] = 18713, + [19197] = 18711, + [19198] = 18711, + [19199] = 18709, + [19200] = 8762, + [19201] = 18708, + [19202] = 9033, + [19203] = 18706, + [19204] = 18709, + [19205] = 18711, + [19206] = 18706, + [19207] = 18709, + [19208] = 18706, + [19209] = 18709, + [19210] = 18807, + [19211] = 18711, + [19212] = 18711, + [19213] = 18712, + [19214] = 18706, + [19215] = 18709, + [19216] = 8549, + [19217] = 18712, + [19218] = 18813, + [19219] = 18709, + [19220] = 18706, + [19221] = 18708, + [19222] = 18708, + [19223] = 8560, + [19224] = 18706, + [19225] = 18810, + [19226] = 18709, + [19227] = 8762, + [19228] = 18711, + [19229] = 18711, + [19230] = 18706, + [19231] = 18709, + [19232] = 18711, + [19233] = 18706, + [19234] = 10610, + [19235] = 18706, + [19236] = 18706, + [19237] = 18709, + [19238] = 9005, + [19239] = 18706, + [19240] = 18709, + [19241] = 18706, + [19242] = 18712, + [19243] = 18709, + [19244] = 18708, + [19245] = 10763, + [19246] = 18711, + [19247] = 18768, + [19248] = 10788, + [19249] = 18706, + [19250] = 18706, + [19251] = 10665, + [19252] = 10776, + [19253] = 18711, + [19254] = 18813, + [19255] = 18709, + [19256] = 18706, + [19257] = 18711, + [19258] = 18711, + [19259] = 18709, + [19260] = 18711, + [19261] = 18712, + [19262] = 19262, + [19263] = 19263, + [19264] = 19264, + [19265] = 19265, + [19266] = 19266, + [19267] = 19267, + [19268] = 19268, + [19269] = 19262, + [19270] = 19270, + [19271] = 19271, + [19272] = 19272, + [19273] = 19263, + [19274] = 19274, + [19275] = 19265, + [19276] = 19276, + [19277] = 19277, + [19278] = 19266, + [19279] = 19279, + [19280] = 19262, + [19281] = 19274, + [19282] = 19274, + [19283] = 19267, + [19284] = 19284, + [19285] = 19285, + [19286] = 19276, + [19287] = 19284, + [19288] = 19268, + [19289] = 19289, + [19290] = 19290, + [19291] = 19291, + [19292] = 19292, + [19293] = 19293, + [19294] = 19264, + [19295] = 19295, + [19296] = 19279, + [19297] = 19297, + [19298] = 19298, + [19299] = 19295, + [19300] = 19289, + [19301] = 19285, + [19302] = 19272, + [19303] = 19270, + [19304] = 19263, + [19305] = 19297, + [19306] = 19265, + [19307] = 19266, + [19308] = 19277, + [19309] = 19267, + [19310] = 19268, + [19311] = 19276, + [19312] = 19298, + [19313] = 19313, + [19314] = 19289, + [19315] = 19272, + [19316] = 19295, + [19317] = 19272, + [19318] = 19262, + [19319] = 19274, + [19320] = 19277, + [19321] = 19277, + [19322] = 19279, + [19323] = 19262, + [19324] = 19284, + [19325] = 19274, + [19326] = 19297, + [19327] = 19284, + [19328] = 19284, + [19329] = 19285, + [19330] = 19276, + [19331] = 19285, + [19332] = 19289, + [19333] = 19291, + [19334] = 19262, + [19335] = 19292, + [19336] = 19291, + [19337] = 19292, + [19338] = 19274, + [19339] = 19264, + [19340] = 19276, + [19341] = 19279, + [19342] = 19297, + [19343] = 19298, + [19344] = 19270, + [19345] = 19295, + [19346] = 19289, + [19347] = 19284, + [19348] = 19285, + [19349] = 19291, + [19350] = 19270, + [19351] = 19263, + [19352] = 19285, + [19353] = 19265, + [19354] = 19266, + [19355] = 19291, + [19356] = 19292, + [19357] = 19267, + [19358] = 19292, + [19359] = 19268, + [19360] = 19264, + [19361] = 19276, + [19362] = 19279, + [19363] = 19264, + [19364] = 19289, + [19365] = 19297, + [19366] = 19264, + [19367] = 19298, + [19368] = 19263, + [19369] = 19272, + [19370] = 19276, + [19371] = 19295, + [19372] = 19277, + [19373] = 19262, + [19374] = 19291, + [19375] = 19292, + [19376] = 19262, + [19377] = 19264, + [19378] = 19274, + [19379] = 19284, + [19380] = 19285, + [19381] = 19276, + [19382] = 19279, + [19383] = 19289, + [19384] = 19279, + [19385] = 19297, + [19386] = 19297, + [19387] = 19291, + [19388] = 19292, + [19389] = 19298, + [19390] = 19264, + [19391] = 19298, + [19392] = 19279, + [19393] = 19270, + [19394] = 19297, + [19395] = 19265, + [19396] = 19298, + [19397] = 19295, + [19398] = 19295, + [19399] = 19263, + [19400] = 19279, + [19401] = 19265, + [19402] = 19270, + [19403] = 19263, + [19404] = 19298, + [19405] = 19266, + [19406] = 19265, + [19407] = 19266, + [19408] = 19266, + [19409] = 19267, + [19410] = 19268, + [19411] = 19295, + [19412] = 19267, + [19413] = 19277, + [19414] = 19272, + [19415] = 19268, + [19416] = 19272, + [19417] = 19270, + [19418] = 19268, + [19419] = 19277, + [19420] = 19263, + [19421] = 19276, + [19422] = 19265, + [19423] = 19423, + [19424] = 19266, + [19425] = 19297, + [19426] = 19262, + [19427] = 19274, + [19428] = 19284, + [19429] = 19285, + [19430] = 19276, + [19431] = 19431, + [19432] = 19289, + [19433] = 19277, + [19434] = 19291, + [19435] = 19292, + [19436] = 19264, + [19437] = 19279, + [19438] = 19267, + [19439] = 19297, + [19440] = 19298, + [19441] = 19295, + [19442] = 19298, + [19443] = 19268, + [19444] = 19270, + [19445] = 19263, + [19446] = 19265, + [19447] = 19266, + [19448] = 19267, + [19449] = 19268, + [19450] = 19450, + [19451] = 19451, + [19452] = 19289, + [19453] = 19270, + [19454] = 19295, + [19455] = 19267, + [19456] = 19295, + [19457] = 19272, + [19458] = 19263, + [19459] = 19272, + [19460] = 19277, + [19461] = 19272, + [19462] = 19265, + [19463] = 19262, + [19464] = 19268, + [19465] = 19274, + [19466] = 19266, + [19467] = 19274, + [19468] = 19262, + [19469] = 19277, + [19470] = 19274, + [19471] = 19471, + [19472] = 19284, + [19473] = 19285, + [19474] = 19276, + [19475] = 19284, + [19476] = 19289, + [19477] = 19277, + [19478] = 19285, + [19479] = 19291, + [19480] = 19292, + [19481] = 19264, + [19482] = 19279, + [19483] = 19297, + [19484] = 19298, + [19485] = 19295, + [19486] = 19295, + [19487] = 19276, + [19488] = 19289, + [19489] = 19270, + [19490] = 19263, + [19491] = 19262, + [19492] = 19265, + [19493] = 19266, + [19494] = 19274, + [19495] = 19267, + [19496] = 19268, + [19497] = 19497, + [19498] = 19267, + [19499] = 19284, + [19500] = 19285, + [19501] = 19262, + [19502] = 19274, + [19503] = 19272, + [19504] = 19276, + [19505] = 19262, + [19506] = 19284, + [19507] = 19277, + [19508] = 19285, + [19509] = 19289, + [19510] = 19276, + [19511] = 19262, + [19512] = 19274, + [19513] = 19268, + [19514] = 19284, + [19515] = 19285, + [19516] = 19276, + [19517] = 19291, + [19518] = 19518, + [19519] = 19289, + [19520] = 19292, + [19521] = 19289, + [19522] = 19264, + [19523] = 19291, + [19524] = 19292, + [19525] = 19264, + [19526] = 8832, + [19527] = 19279, + [19528] = 19297, + [19529] = 19298, + [19530] = 19279, + [19531] = 19295, + [19532] = 19284, + [19533] = 19291, + [19534] = 19292, + [19535] = 19270, + [19536] = 19264, + [19537] = 19263, + [19538] = 19297, + [19539] = 19265, + [19540] = 19266, + [19541] = 19291, + [19542] = 19267, + [19543] = 19292, + [19544] = 19268, + [19545] = 19279, + [19546] = 19297, + [19547] = 19264, + [19548] = 19298, + [19549] = 19298, + [19550] = 19270, + [19551] = 19289, + [19552] = 19272, + [19553] = 19295, + [19554] = 19554, + [19555] = 19279, + [19556] = 19556, + [19557] = 19277, + [19558] = 19297, + [19559] = 19559, + [19560] = 19560, + [19561] = 19298, + [19562] = 19262, + [19563] = 19563, + [19564] = 19274, + [19565] = 19284, + [19566] = 19285, + [19567] = 19276, + [19568] = 19270, + [19569] = 19289, + [19570] = 19270, + [19571] = 19263, + [19572] = 19572, + [19573] = 19291, + [19574] = 19292, + [19575] = 19264, + [19576] = 19279, + [19577] = 19297, + [19578] = 19298, + [19579] = 19265, + [19580] = 19295, + [19581] = 19295, + [19582] = 19582, + [19583] = 19266, + [19584] = 19263, + [19585] = 19291, + [19586] = 19270, + [19587] = 19263, + [19588] = 19265, + [19589] = 19266, + [19590] = 19267, + [19591] = 19285, + [19592] = 19268, + [19593] = 19295, + [19594] = 10040, + [19595] = 19265, + [19596] = 19272, + [19597] = 19270, + [19598] = 19277, + [19599] = 19263, + [19600] = 19270, + [19601] = 19267, + [19602] = 19266, + [19603] = 19268, + [19604] = 19265, + [19605] = 19262, + [19606] = 19270, + [19607] = 19274, + [19608] = 19266, + [19609] = 19284, + [19610] = 19285, + [19611] = 19276, + [19612] = 19272, + [19613] = 19263, + [19614] = 19289, + [19615] = 19272, + [19616] = 19291, + [19617] = 19292, + [19618] = 19264, + [19619] = 19619, + [19620] = 19279, + [19621] = 19297, + [19622] = 19298, + [19623] = 19295, + [19624] = 19624, + [19625] = 19625, + [19626] = 19626, + [19627] = 19270, + [19628] = 19263, + [19629] = 19265, + [19630] = 19265, + [19631] = 19266, + [19632] = 19632, + [19633] = 19291, + [19634] = 19267, + [19635] = 19267, + [19636] = 19268, + [19637] = 19268, + [19638] = 19292, + [19639] = 19272, + [19640] = 19272, + [19641] = 19641, + [19642] = 19277, + [19643] = 19272, + [19644] = 19265, + [19645] = 19264, + [19646] = 19270, + [19647] = 19270, + [19648] = 19272, + [19649] = 19266, + [19650] = 19262, + [19651] = 19274, + [19652] = 19284, + [19653] = 19285, + [19654] = 19277, + [19655] = 19276, + [19656] = 19289, + [19657] = 19277, + [19658] = 19291, + [19659] = 19292, + [19660] = 19450, + [19661] = 19264, + [19662] = 19279, + [19663] = 19263, + [19664] = 19297, + [19665] = 19298, + [19666] = 19277, + [19667] = 19295, + [19668] = 19267, + [19669] = 19270, + [19670] = 19263, + [19671] = 19274, + [19672] = 19267, + [19673] = 19265, + [19674] = 19266, + [19675] = 19266, + [19676] = 19267, + [19677] = 19276, + [19678] = 19268, + [19679] = 19272, + [19680] = 19268, + [19681] = 19279, + [19682] = 19272, + [19683] = 19262, + [19684] = 19274, + [19685] = 19277, + [19686] = 19277, + [19687] = 19263, + [19688] = 19263, + [19689] = 19284, + [19690] = 19285, + [19691] = 19268, + [19692] = 19262, + [19693] = 19274, + [19694] = 19265, + [19695] = 19276, + [19696] = 19284, + [19697] = 19285, + [19698] = 19276, + [19699] = 19262, + [19700] = 19289, + [19701] = 19289, + [19702] = 19291, + [19703] = 19292, + [19704] = 19274, + [19705] = 19264, + [19706] = 19279, + [19707] = 19297, + [19708] = 19298, + [19709] = 19277, + [19710] = 19295, + [19711] = 19297, + [19712] = 19270, + [19713] = 19263, + [19714] = 19262, + [19715] = 19265, + [19716] = 19266, + [19717] = 19292, + [19718] = 19267, + [19719] = 19274, + [19720] = 19268, + [19721] = 19291, + [19722] = 19292, + [19723] = 19266, + [19724] = 19284, + [19725] = 19285, + [19726] = 19272, + [19727] = 19264, + [19728] = 19276, + [19729] = 19277, + [19730] = 19279, + [19731] = 19297, + [19732] = 19284, + [19733] = 19298, + [19734] = 19262, + [19735] = 19274, + [19736] = 19285, + [19737] = 19289, + [19738] = 19284, + [19739] = 19285, + [19740] = 19276, + [19741] = 19295, + [19742] = 19289, + [19743] = 19298, + [19744] = 19262, + [19745] = 19291, + [19746] = 19292, + [19747] = 19264, + [19748] = 19279, + [19749] = 19297, + [19750] = 19298, + [19751] = 19274, + [19752] = 19295, + [19753] = 19291, + [19754] = 19292, + [19755] = 19270, + [19756] = 19264, + [19757] = 19270, + [19758] = 19263, + [19759] = 19265, + [19760] = 19266, + [19761] = 19276, + [19762] = 19267, + [19763] = 19268, + [19764] = 19279, + [19765] = 19270, + [19766] = 19297, + [19767] = 19289, + [19768] = 19298, + [19769] = 19284, + [19770] = 19272, + [19771] = 19263, + [19772] = 19265, + [19773] = 19295, + [19774] = 19277, + [19775] = 19266, + [19776] = 19262, + [19777] = 19285, + [19778] = 19274, + [19779] = 19289, + [19780] = 19267, + [19781] = 19284, + [19782] = 19285, + [19783] = 19276, + [19784] = 19289, + [19785] = 19268, + [19786] = 10041, + [19787] = 19291, + [19788] = 19292, + [19789] = 19264, + [19790] = 19270, + [19791] = 19279, + [19792] = 19297, + [19793] = 19263, + [19794] = 19298, + [19795] = 19295, + [19796] = 19265, + [19797] = 19266, + [19798] = 19270, + [19799] = 19263, + [19800] = 19265, + [19801] = 19266, + [19802] = 19267, + [19803] = 19268, + [19804] = 19267, + [19805] = 19267, + [19806] = 19291, + [19807] = 19268, + [19808] = 19272, + [19809] = 19292, + [19810] = 19276, + [19811] = 19277, + [19812] = 19267, + [19813] = 19264, + [19814] = 19272, + [19815] = 19272, + [19816] = 19262, + [19817] = 19274, + [19818] = 19284, + [19819] = 19285, + [19820] = 19276, + [19821] = 19289, + [19822] = 19279, + [19823] = 19289, + [19824] = 19277, + [19825] = 19277, + [19826] = 19297, + [19827] = 19291, + [19828] = 19292, + [19829] = 19264, + [19830] = 19423, + [19831] = 19279, + [19832] = 19297, + [19833] = 19267, + [19834] = 19298, + [19835] = 19298, + [19836] = 19295, + [19837] = 10042, + [19838] = 19295, + [19839] = 19277, + [19840] = 19272, + [19841] = 19270, + [19842] = 19263, + [19843] = 19265, + [19844] = 19266, + [19845] = 19272, + [19846] = 19262, + [19847] = 19267, + [19848] = 19268, + [19849] = 19268, + [19850] = 19274, + [19851] = 19284, + [19852] = 19852, + [19853] = 19295, + [19854] = 19272, + [19855] = 19265, + [19856] = 19266, + [19857] = 19268, + [19858] = 19285, + [19859] = 19277, + [19860] = 19295, + [19861] = 19277, + [19862] = 19265, + [19863] = 19266, + [19864] = 19268, + [19865] = 19276, + [19866] = 10043, + [19867] = 19295, + [19868] = 19265, + [19869] = 19266, + [19870] = 19289, + [19871] = 19268, + [19872] = 10035, + [19873] = 19262, + [19874] = 19295, + [19875] = 19274, + [19876] = 19265, + [19877] = 19266, + [19878] = 19268, + [19879] = 19291, + [19880] = 19284, + [19881] = 19285, + [19882] = 19295, + [19883] = 19292, + [19884] = 19265, + [19885] = 19266, + [19886] = 19276, + [19887] = 19268, + [19888] = 19289, + [19889] = 19264, + [19890] = 19295, + [19891] = 19265, + [19892] = 19266, + [19893] = 19268, + [19894] = 19270, + [19895] = 19279, + [19896] = 19291, + [19897] = 19295, + [19898] = 19292, + [19899] = 19265, + [19900] = 19266, + [19901] = 19268, + [19902] = 19264, + [19903] = 19297, + [19904] = 19262, + [19905] = 19295, + [19906] = 19279, + [19907] = 19291, + [19908] = 19265, + [19909] = 19266, + [19910] = 19297, + [19911] = 19268, + [19912] = 19298, + [19913] = 19263, + [19914] = 19298, + [19915] = 19291, + [19916] = 19295, + [19917] = 19295, + [19918] = 19265, + [19919] = 19266, + [19920] = 19295, + [19921] = 19268, + [19922] = 19291, + [19923] = 19292, + [19924] = 19262, + [19925] = 19295, + [19926] = 19265, + [19927] = 19266, + [19928] = 19928, + [19929] = 19268, + [19930] = 19264, + [19931] = 19292, + [19932] = 19292, + [19933] = 19270, + [19934] = 19265, + [19935] = 19295, + [19936] = 19263, + [19937] = 19265, + [19938] = 19266, + [19939] = 19268, + [19940] = 19265, + [19941] = 19266, + [19942] = 19295, + [19943] = 19265, + [19944] = 19266, + [19945] = 19268, + [19946] = 19274, + [19947] = 19267, + [19948] = 19295, + [19949] = 19268, + [19950] = 19265, + [19951] = 19266, + [19952] = 19268, + [19953] = 19295, + [19954] = 19266, + [19955] = 19265, + [19956] = 19266, + [19957] = 19268, + [19958] = 19270, + [19959] = 19295, + [19960] = 19279, + [19961] = 19265, + [19962] = 19266, + [19963] = 19263, + [19964] = 19268, + [19965] = 19295, + [19966] = 19284, + [19967] = 19285, + [19968] = 19295, + [19969] = 19272, + [19970] = 19265, + [19971] = 19266, + [19972] = 19268, + [19973] = 19265, + [19974] = 19266, + [19975] = 19276, + [19976] = 19295, + [19977] = 19277, + [19978] = 19265, + [19979] = 19266, + [19980] = 19268, + [19981] = 19264, + [19982] = 19295, + [19983] = 19265, + [19984] = 19266, + [19985] = 19267, + [19986] = 19268, + [19987] = 19268, + [19988] = 19289, + [19989] = 19295, + [19990] = 19274, + [19991] = 19265, + [19992] = 19266, + [19993] = 19268, + [19994] = 19284, + [19995] = 19285, + [19996] = 19295, + [19997] = 19265, + [19998] = 19266, + [19999] = 19268, + [20000] = 19276, + [20001] = 19295, + [20002] = 19265, + [20003] = 19266, + [20004] = 19289, + [20005] = 19268, + [20006] = 19295, + [20007] = 19265, + [20008] = 19266, + [20009] = 19268, + [20010] = 19264, + [20011] = 19297, + [20012] = 19295, + [20013] = 19291, + [20014] = 19265, + [20015] = 19266, + [20016] = 19292, + [20017] = 19268, + [20018] = 19295, + [20019] = 19264, + [20020] = 19265, + [20021] = 19266, + [20022] = 19268, + [20023] = 19279, + [20024] = 19295, + [20025] = 19279, + [20026] = 19267, + [20027] = 19265, + [20028] = 19266, + [20029] = 19297, + [20030] = 19268, + [20031] = 19298, + [20032] = 19298, + [20033] = 19295, + [20034] = 19265, + [20035] = 19266, + [20036] = 19268, + [20037] = 19295, + [20038] = 19295, + [20039] = 19265, + [20040] = 19266, + [20041] = 19268, + [20042] = 19268, + [20043] = 19295, + [20044] = 19297, + [20045] = 19265, + [20046] = 19266, + [20047] = 19268, + [20048] = 19295, + [20049] = 19274, + [20050] = 19298, + [20051] = 19265, + [20052] = 19266, + [20053] = 19270, + [20054] = 19268, + [20055] = 19291, + [20056] = 19263, + [20057] = 19295, + [20058] = 19292, + [20059] = 19265, + [20060] = 19266, + [20061] = 19265, + [20062] = 19268, + [20063] = 19266, + [20064] = 19295, + [20065] = 19265, + [20066] = 19266, + [20067] = 19268, + [20068] = 19295, + [20069] = 19265, + [20070] = 19266, + [20071] = 19268, + [20072] = 19267, + [20073] = 19295, + [20074] = 19264, + [20075] = 19268, + [20076] = 19265, + [20077] = 19266, + [20078] = 19268, + [20079] = 19295, + [20080] = 19265, + [20081] = 19266, + [20082] = 19268, + [20083] = 19295, + [20084] = 19265, + [20085] = 19266, + [20086] = 19272, + [20087] = 19268, + [20088] = 19267, + [20089] = 19279, + [20090] = 20090, + [20091] = 19313, + [20092] = 19295, + [20093] = 19277, + [20094] = 19450, + [20095] = 19451, + [20096] = 19279, + [20097] = 19268, + [20098] = 19297, + [20099] = 19297, + [20100] = 19298, + [20101] = 19272, + [20102] = 19262, + [20103] = 19262, + [20104] = 20104, + [20105] = 19274, + [20106] = 19264, + [20107] = 19262, + [20108] = 19284, + [20109] = 19295, + [20110] = 19277, + [20111] = 19285, + [20112] = 19518, + [20113] = 19298, + [20114] = 20114, + [20115] = 19276, + [20116] = 19274, + [20117] = 19289, + [20118] = 19274, + [20119] = 19284, + [20120] = 19271, + [20121] = 19291, + [20122] = 19262, + [20123] = 20123, + [20124] = 19274, + [20125] = 19292, + [20126] = 19284, + [20127] = 19285, + [20128] = 17486, + [20129] = 19276, + [20130] = 19289, + [20131] = 19264, + [20132] = 19285, + [20133] = 19276, + [20134] = 19279, + [20135] = 19297, + [20136] = 19298, + [20137] = 19291, + [20138] = 19289, + [20139] = 19295, + [20140] = 19292, + [20141] = 19264, + [20142] = 19270, + [20143] = 19279, + [20144] = 19263, + [20145] = 19297, + [20146] = 19270, + [20147] = 19298, + [20148] = 19497, + [20149] = 19272, + [20150] = 19272, + [20151] = 19265, + [20152] = 19270, + [20153] = 19263, + [20154] = 19295, + [20155] = 19284, + [20156] = 19266, + [20157] = 20090, + [20158] = 19313, + [20159] = 19265, + [20160] = 19263, + [20161] = 19263, + [20162] = 19266, + [20163] = 19265, + [20164] = 19267, + [20165] = 19266, + [20166] = 19268, + [20167] = 19270, + [20168] = 19291, + [20169] = 19292, + [20170] = 19263, + [20171] = 19265, + [20172] = 19266, + [20173] = 19267, + [20174] = 19268, + [20175] = 19264, + [20176] = 19279, + [20177] = 19267, + [20178] = 19267, + [20179] = 19263, + [20180] = 19285, + [20181] = 19268, + [20182] = 19277, + [20183] = 19267, + [20184] = 19297, + [20185] = 19295, + [20186] = 19268, + [20187] = 19298, + [20188] = 20090, + [20189] = 19313, + [20190] = 19272, + [20191] = 19272, + [20192] = 19556, + [20193] = 19560, + [20194] = 19563, + [20195] = 19277, + [20196] = 19572, + [20197] = 19582, + [20198] = 19277, + [20199] = 19276, + [20200] = 19284, + [20201] = 19277, + [20202] = 20114, + [20203] = 19262, + [20204] = 19274, + [20205] = 19279, + [20206] = 19262, + [20207] = 19284, + [20208] = 19285, + [20209] = 19274, + [20210] = 19295, + [20211] = 19262, + [20212] = 19274, + [20213] = 19284, + [20214] = 19285, + [20215] = 19276, + [20216] = 19289, + [20217] = 19276, + [20218] = 19289, + [20219] = 19289, + [20220] = 19284, + [20221] = 19291, + [20222] = 19292, + [20223] = 19270, + [20224] = 19291, + [20225] = 19292, + [20226] = 19263, + [20227] = 20090, + [20228] = 19313, + [20229] = 19264, + [20230] = 19264, + [20231] = 19270, + [20232] = 19285, + [20233] = 19263, + [20234] = 19279, + [20235] = 19279, + [20236] = 19619, + [20237] = 19624, + [20238] = 19297, + [20239] = 19298, + [20240] = 19626, + [20241] = 19297, + [20242] = 19632, + [20243] = 19272, + [20244] = 19295, + [20245] = 19285, + [20246] = 19298, + [20247] = 19272, + [20248] = 19297, + [20249] = 19295, + [20250] = 19270, + [20251] = 19263, + [20252] = 19265, + [20253] = 19266, + [20254] = 19276, + [20255] = 19265, + [20256] = 8832, + [20257] = 19267, + [20258] = 19268, + [20259] = 19270, + [20260] = 19556, + [20261] = 19265, + [20262] = 19263, + [20263] = 19266, + [20264] = 19289, + [20265] = 19277, + [20266] = 19265, + [20267] = 19266, + [20268] = 20090, + [20269] = 19313, + [20270] = 19267, + [20271] = 19267, + [20272] = 19277, + [20273] = 19268, + [20274] = 19270, + [20275] = 19268, + [20276] = 19272, + [20277] = 20277, + [20278] = 19298, + [20279] = 19263, + [20280] = 19277, + [20281] = 19266, + [20282] = 19291, + [20283] = 19292, + [20284] = 19291, + [20285] = 19292, + [20286] = 19268, + [20287] = 20090, + [20288] = 19264, + [20289] = 19272, + [20290] = 19262, + [20291] = 19272, + [20292] = 19274, + [20293] = 19279, + [20294] = 19264, + [20295] = 19277, + [20296] = 19262, + [20297] = 19276, + [20298] = 19274, + [20299] = 19297, + [20300] = 19262, + [20301] = 19284, + [20302] = 19285, + [20303] = 19276, + [20304] = 19274, + [20305] = 19289, + [20306] = 19298, + [20307] = 19284, + [20308] = 19284, + [20309] = 19285, + [20310] = 19262, + [20311] = 19274, + [20312] = 19295, + [20313] = 20090, + [20314] = 19284, + [20315] = 19284, + [20316] = 19291, + [20317] = 19285, + [20318] = 19292, + [20319] = 19619, + [20320] = 19276, + [20321] = 19276, + [20322] = 19285, + [20323] = 19264, + [20324] = 19279, + [20325] = 19279, + [20326] = 19289, + [20327] = 19297, + [20328] = 19298, + [20329] = 19295, + [20330] = 19451, + [20331] = 20331, + [20332] = 19291, + [20333] = 19292, + [20334] = 19264, + [20335] = 19276, + [20336] = 20090, + [20337] = 19289, + [20338] = 19279, + [20339] = 19297, + [20340] = 19270, + [20341] = 19289, + [20342] = 19263, + [20343] = 19298, + [20344] = 19265, + [20345] = 19266, + [20346] = 19262, + [20347] = 19265, + [20348] = 19267, + [20349] = 19295, + [20350] = 19268, + [20351] = 19274, + [20352] = 8549, + [20353] = 20090, + [20354] = 19270, + [20355] = 19297, + [20356] = 19263, + [20357] = 19295, + [20358] = 19270, + [20359] = 19291, + [20360] = 19263, + [20361] = 19298, + [20362] = 19266, + [20363] = 19560, + [20364] = 19292, + [20365] = 19265, + [20366] = 19266, + [20367] = 19291, + [20368] = 19292, + [20369] = 19264, + [20370] = 19265, + [20371] = 19264, + [20372] = 19267, + [20373] = 19268, + [20374] = 20090, + [20375] = 19266, + [20376] = 19272, + [20377] = 19279, + [20378] = 19266, + [20379] = 19297, + [20380] = 19279, + [20381] = 19277, + [20382] = 20382, + [20383] = 19297, + [20384] = 19298, + [20385] = 19298, + [20386] = 19295, + [20387] = 19272, + [20388] = 19267, + [20389] = 19272, + [20390] = 19284, + [20391] = 19277, + [20392] = 20090, + [20393] = 19267, + [20394] = 19423, + [20395] = 19262, + [20396] = 19285, + [20397] = 19274, + [20398] = 19268, + [20399] = 19284, + [20400] = 8832, + [20401] = 19285, + [20402] = 19262, + [20403] = 19295, + [20404] = 19276, + [20405] = 19274, + [20406] = 20406, + [20407] = 19284, + [20408] = 19289, + [20409] = 19285, + [20410] = 20410, + [20411] = 19277, + [20412] = 20090, + [20413] = 19268, + [20414] = 19276, + [20415] = 19289, + [20416] = 19624, + [20417] = 19291, + [20418] = 19292, + [20419] = 19270, + [20420] = 19263, + [20421] = 19291, + [20422] = 19292, + [20423] = 19264, + [20424] = 19264, + [20425] = 19279, + [20426] = 19265, + [20427] = 20090, + [20428] = 19297, + [20429] = 19450, + [20430] = 19451, + [20431] = 19298, + [20432] = 19279, + [20433] = 19289, + [20434] = 19626, + [20435] = 19297, + [20436] = 19298, + [20437] = 19295, + [20438] = 19266, + [20439] = 19295, + [20440] = 19289, + [20441] = 19262, + [20442] = 19267, + [20443] = 19274, + [20444] = 20090, + [20445] = 19270, + [20446] = 19263, + [20447] = 19276, + [20448] = 19284, + [20449] = 19270, + [20450] = 19265, + [20451] = 19263, + [20452] = 19266, + [20453] = 19270, + [20454] = 19290, + [20455] = 19285, + [20456] = 19265, + [20457] = 19266, + [20458] = 19276, + [20459] = 20090, + [20460] = 19267, + [20461] = 19267, + [20462] = 19289, + [20463] = 19268, + [20464] = 19265, + [20465] = 19563, + [20466] = 19267, + [20467] = 19268, + [20468] = 19268, + [20469] = 19266, + [20470] = 20090, + [20471] = 19497, + [20472] = 19295, + [20473] = 19268, + [20474] = 19272, + [20475] = 19272, + [20476] = 19272, + [20477] = 19289, + [20478] = 20090, + [20479] = 19277, + [20480] = 19267, + [20481] = 19277, + [20482] = 19272, + [20483] = 19262, + [20484] = 19277, + [20485] = 19274, + [20486] = 19632, + [20487] = 19284, + [20488] = 20090, + [20489] = 19285, + [20490] = 19268, + [20491] = 19276, + [20492] = 19262, + [20493] = 19572, + [20494] = 19274, + [20495] = 19265, + [20496] = 19284, + [20497] = 19285, + [20498] = 19289, + [20499] = 19291, + [20500] = 19423, + [20501] = 19276, + [20502] = 19291, + [20503] = 19292, + [20504] = 19291, + [20505] = 20090, + [20506] = 19292, + [20507] = 19264, + [20508] = 19264, + [20509] = 19289, + [20510] = 19290, + [20511] = 19262, + [20512] = 19582, + [20513] = 19279, + [20514] = 19270, + [20515] = 19279, + [20516] = 19297, + [20517] = 19297, + [20518] = 19292, + [20519] = 19298, + [20520] = 19291, + [20521] = 19298, + [20522] = 19262, + [20523] = 20090, + [20524] = 19295, + [20525] = 19292, + [20526] = 19274, + [20527] = 19556, + [20528] = 19264, + [20529] = 19560, + [20530] = 19279, + [20531] = 19297, + [20532] = 19277, + [20533] = 19563, + [20534] = 19270, + [20535] = 20090, + [20536] = 19263, + [20537] = 19298, + [20538] = 19572, + [20539] = 19263, + [20540] = 19265, + [20541] = 19295, + [20542] = 19582, + [20543] = 19266, + [20544] = 19264, + [20545] = 19284, + [20546] = 20090, + [20547] = 19267, + [20548] = 19272, + [20549] = 19295, + [20550] = 19270, + [20551] = 19268, + [20552] = 19263, + [20553] = 19265, + [20554] = 19266, + [20555] = 20090, + [20556] = 19285, + [20557] = 19267, + [20558] = 19268, + [20559] = 19276, + [20560] = 19289, + [20561] = 19270, + [20562] = 19263, + [20563] = 20090, + [20564] = 19277, + [20565] = 19619, + [20566] = 19272, + [20567] = 19274, + [20568] = 19265, + [20569] = 17911, + [20570] = 19266, + [20571] = 19268, + [20572] = 19291, + [20573] = 19624, + [20574] = 19277, + [20575] = 19272, + [20576] = 19292, + [20577] = 20090, + [20578] = 19626, + [20579] = 19279, + [20580] = 19264, + [20581] = 19272, + [20582] = 19632, + [20583] = 19272, + [20584] = 19266, + [20585] = 19279, + [20586] = 19262, + [20587] = 19450, + [20588] = 19274, + [20589] = 19297, + [20590] = 19277, + [20591] = 19297, + [20592] = 20090, + [20593] = 19284, + [20594] = 19285, + [20595] = 19451, + [20596] = 19276, + [20597] = 19298, + [20598] = 19265, + [20599] = 19277, + [20600] = 19277, + [20601] = 19262, + [20602] = 19289, + [20603] = 19266, + [20604] = 19262, + [20605] = 20090, + [20606] = 20606, + [20607] = 19274, + [20608] = 19291, + [20609] = 19292, + [20610] = 19284, + [20611] = 19285, + [20612] = 19274, + [20613] = 19276, + [20614] = 19264, + [20615] = 19289, + [20616] = 19267, + [20617] = 20090, + [20618] = 19295, + [20619] = 19279, + [20620] = 19297, + [20621] = 17916, + [20622] = 19298, + [20623] = 19291, + [20624] = 19292, + [20625] = 19298, + [20626] = 19264, + [20627] = 20090, + [20628] = 19295, + [20629] = 19279, + [20630] = 19297, + [20631] = 19268, + [20632] = 19298, + [20633] = 19284, + [20634] = 20090, + [20635] = 19295, + [20636] = 19497, + [20637] = 19262, + [20638] = 19270, + [20639] = 19274, + [20640] = 19263, + [20641] = 19285, + [20642] = 19265, + [20643] = 20090, + [20644] = 19270, + [20645] = 19266, + [20646] = 19263, + [20647] = 19262, + [20648] = 19265, + [20649] = 19266, + [20650] = 20090, + [20651] = 19274, + [20652] = 19267, + [20653] = 19268, + [20654] = 19267, + [20655] = 20090, + [20656] = 19268, + [20657] = 19284, + [20658] = 19285, + [20659] = 19276, + [20660] = 19272, + [20661] = 19284, + [20662] = 20090, + [20663] = 19289, + [20664] = 19270, + [20665] = 19285, + [20666] = 19277, + [20667] = 19272, + [20668] = 19276, + [20669] = 19262, + [20670] = 20670, + [20671] = 19270, + [20672] = 19267, + [20673] = 20090, + [20674] = 19276, + [20675] = 19289, + [20676] = 19272, + [20677] = 19263, + [20678] = 19262, + [20679] = 19274, + [20680] = 19265, + [20681] = 19289, + [20682] = 19277, + [20683] = 19291, + [20684] = 19284, + [20685] = 19266, + [20686] = 20090, + [20687] = 20687, + [20688] = 19285, + [20689] = 19276, + [20690] = 19295, + [20691] = 19291, + [20692] = 19289, + [20693] = 19262, + [20694] = 19267, + [20695] = 19274, + [20696] = 20090, + [20697] = 19284, + [20698] = 19292, + [20699] = 19285, + [20700] = 19264, + [20701] = 19291, + [20702] = 19292, + [20703] = 19264, + [20704] = 19272, + [20705] = 20090, + [20706] = 19276, + [20707] = 19279, + [20708] = 19297, + [20709] = 19279, + [20710] = 19298, + [20711] = 19268, + [20712] = 19497, + [20713] = 19289, + [20714] = 19423, + [20715] = 20090, + [20716] = 19295, + [20717] = 19292, + [20718] = 17373, + [20719] = 19291, + [20720] = 19277, + [20721] = 19292, + [20722] = 20090, + [20723] = 19297, + [20724] = 19264, + [20725] = 20090, + [20726] = 19279, + [20727] = 17911, + [20728] = 19298, + [20729] = 17916, + [20730] = 19270, + [20731] = 19263, + [20732] = 19297, + [20733] = 19450, + [20734] = 19451, + [20735] = 19298, + [20736] = 19265, + [20737] = 19295, + [20738] = 19266, + [20739] = 19291, + [20740] = 19292, + [20741] = 19262, + [20742] = 19274, + [20743] = 19284, + [20744] = 19285, + [20745] = 19276, + [20746] = 19295, + [20747] = 19267, + [20748] = 19264, + [20749] = 19289, + [20750] = 19270, + [20751] = 19268, + [20752] = 19497, + [20753] = 19263, + [20754] = 19268, + [20755] = 19265, + [20756] = 19266, + [20757] = 19279, + [20758] = 19267, + [20759] = 19277, + [20760] = 19268, + [20761] = 19291, + [20762] = 19292, + [20763] = 19297, + [20764] = 19264, + [20765] = 19264, + [20766] = 19279, + [20767] = 19272, + [20768] = 19270, + [20769] = 19297, + [20770] = 19272, + [20771] = 19298, + [20772] = 19298, + [20773] = 19263, + [20774] = 19277, + [20775] = 19274, + [20776] = 19556, + [20777] = 19560, + [20778] = 19563, + [20779] = 19295, + [20780] = 19272, + [20781] = 19572, + [20782] = 19270, + [20783] = 19272, + [20784] = 19265, + [20785] = 19582, + [20786] = 19277, + [20787] = 19263, + [20788] = 19277, + [20789] = 19266, + [20790] = 19262, + [20791] = 19295, + [20792] = 19274, + [20793] = 19284, + [20794] = 19285, + [20795] = 19270, + [20796] = 19263, + [20797] = 19277, + [20798] = 19276, + [20799] = 19619, + [20800] = 19272, + [20801] = 19624, + [20802] = 19262, + [20803] = 19626, + [20804] = 19289, + [20805] = 19274, + [20806] = 19632, + [20807] = 19265, + [20808] = 19284, + [20809] = 19285, + [20810] = 19267, + [20811] = 19291, + [20812] = 19292, + [20813] = 19264, + [20814] = 19265, + [20815] = 19266, + [20816] = 19279, + [20817] = 19268, + [20818] = 19297, + [20819] = 19267, + [20820] = 19276, + [20821] = 19298, + [20822] = 19289, + [20823] = 19263, + [20824] = 19295, + [20825] = 19268, + [20826] = 19279, + [20827] = 19270, + [20828] = 19263, + [20829] = 19291, + [20830] = 19292, + [20831] = 19265, + [20832] = 19266, + [20833] = 19264, + [20834] = 19266, + [20835] = 19267, + [20836] = 19279, + [20837] = 19268, + [20838] = 19297, + [20839] = 19297, + [20840] = 19298, + [20841] = 19265, + [20842] = 19295, + [20843] = 19270, + [20844] = 19284, + [20845] = 19263, + [20846] = 19262, + [20847] = 19291, + [20848] = 19292, + [20849] = 19262, + [20850] = 19270, + [20851] = 19298, + [20852] = 19263, + [20853] = 19274, + [20854] = 19265, + [20855] = 19265, + [20856] = 19266, + [20857] = 19272, + [20858] = 19272, + [20859] = 19272, + [20860] = 19264, + [20861] = 19267, + [20862] = 19266, + [20863] = 19268, + [20864] = 19277, + [20865] = 19284, + [20866] = 19277, + [20867] = 19274, + [20868] = 19285, + [20869] = 19279, + [20870] = 19262, + [20871] = 19277, + [20872] = 19274, + [20873] = 19297, + [20874] = 19284, + [20875] = 19285, + [20876] = 19276, + [20877] = 19284, + [20878] = 19272, + [20879] = 19289, + [20880] = 19298, + [20881] = 19285, + [20882] = 19262, + [20883] = 19274, + [20884] = 19266, + [20885] = 19267, + [20886] = 19277, + [20887] = 19284, + [20888] = 19285, + [20889] = 19276, + [20890] = 19276, + [20891] = 19289, + [20892] = 19556, + [20893] = 19285, + [20894] = 19289, + [20895] = 19291, + [20896] = 19292, + [20897] = 19264, + [20898] = 19268, + [20899] = 19279, + [20900] = 19276, + [20901] = 19297, + [20902] = 19262, + [20903] = 19298, + [20904] = 19262, + [20905] = 19560, + [20906] = 19274, + [20907] = 19265, + [20908] = 19284, + [20909] = 19295, + [20910] = 19291, + [20911] = 19292, + [20912] = 19285, + [20913] = 19264, + [20914] = 19274, + [20915] = 19276, + [20916] = 19276, + [20917] = 19563, + [20918] = 19289, + [20919] = 19267, + [20920] = 19284, + [20921] = 19279, + [20922] = 20922, + [20923] = 19431, + [20924] = 19285, + [20925] = 19270, + [20926] = 19263, + [20927] = 19291, + [20928] = 19292, + [20929] = 19265, + [20930] = 19266, + [20931] = 19297, + [20932] = 19298, + [20933] = 19264, + [20934] = 19291, + [20935] = 19279, + [20936] = 19572, + [20937] = 19295, + [20938] = 19276, + [20939] = 19297, + [20940] = 19267, + [20941] = 19298, + [20942] = 19292, + [20943] = 19270, + [20944] = 19263, + [20945] = 19295, + [20946] = 19268, + [20947] = 19265, + [20948] = 19266, + [20949] = 20949, + [20950] = 19582, + [20951] = 19264, + [20952] = 19270, + [20953] = 19263, + [20954] = 19265, + [20955] = 19266, + [20956] = 19268, + [20957] = 19267, + [20958] = 19268, + [20959] = 19267, + [20960] = 19279, + [20961] = 19289, + [20962] = 19268, + [20963] = 19297, + [20964] = 19272, + [20965] = 19298, + [20966] = 19272, + [20967] = 19289, + [20968] = 19295, + [20969] = 19272, + [20970] = 19291, + [20971] = 19277, + [20972] = 19292, + [20973] = 19277, + [20974] = 19277, + [20975] = 19270, + [20976] = 19263, + [20977] = 19264, + [20978] = 19262, + [20979] = 19274, + [20980] = 19262, + [20981] = 19295, + [20982] = 19274, + [20983] = 19284, + [20984] = 19285, + [20985] = 19276, + [20986] = 19284, + [20987] = 19285, + [20988] = 19289, + [20989] = 19276, + [20990] = 19265, + [20991] = 19272, + [20992] = 19289, + [20993] = 19279, + [20994] = 19266, + [20995] = 19291, + [20996] = 19292, + [20997] = 19291, + [20998] = 19292, + [20999] = 19264, + [21000] = 19297, + [21001] = 19264, + [21002] = 19279, + [21003] = 19297, + [21004] = 19298, + [21005] = 19298, + [21006] = 19279, + [21007] = 19295, + [21008] = 19297, + [21009] = 19298, + [21010] = 19272, + [21011] = 19295, + [21012] = 19277, + [21013] = 19289, + [21014] = 19277, + [21015] = 19295, + [21016] = 19270, + [21017] = 19267, + [21018] = 19270, + [21019] = 19270, + [21020] = 19263, + [21021] = 19263, + [21022] = 19265, + [21023] = 19266, + [21024] = 19265, + [21025] = 19266, + [21026] = 19262, + [21027] = 19274, + [21028] = 21028, + [21029] = 19284, + [21030] = 19285, + [21031] = 19276, + [21032] = 19277, + [21033] = 19263, + [21034] = 19268, + [21035] = 19289, + [21036] = 19267, + [21037] = 19267, + [21038] = 19268, + [21039] = 19268, + [21040] = 19619, + [21041] = 19291, + [21042] = 19624, + [21043] = 19292, + [21044] = 19264, + [21045] = 19277, + [21046] = 19279, + [21047] = 19297, + [21048] = 19298, + [21049] = 19272, + [21050] = 19284, + [21051] = 19295, + [21052] = 19285, + [21053] = 19626, + [21054] = 19262, + [21055] = 19277, + [21056] = 19270, + [21057] = 19632, + [21058] = 19263, + [21059] = 19272, + [21060] = 19270, + [21061] = 19267, + [21062] = 19263, + [21063] = 8559, + [21064] = 19274, + [21065] = 19262, + [21066] = 19274, + [21067] = 19265, + [21068] = 19272, + [21069] = 19266, + [21070] = 19268, + [21071] = 19284, + [21072] = 19285, + [21073] = 19285, + [21074] = 19262, + [21075] = 19267, + [21076] = 19277, + [21077] = 19268, + [21078] = 19276, + [21079] = 19266, + [21080] = 19272, + [21081] = 19265, + [21082] = 19289, + [21083] = 19274, + [21084] = 19277, + [21085] = 19284, + [21086] = 19291, + [21087] = 19292, + [21088] = 19285, + [21089] = 19266, + [21090] = 8560, + [21091] = 19264, + [21092] = 19262, + [21093] = 19274, + [21094] = 19279, + [21095] = 19297, + [21096] = 19298, + [21097] = 19295, + [21098] = 19284, + [21099] = 19285, + [21100] = 19276, + [21101] = 21101, + [21102] = 19276, + [21103] = 19289, + [21104] = 21104, + [21105] = 19284, + [21106] = 19270, + [21107] = 19289, + [21108] = 19263, + [21109] = 20090, + [21110] = 19272, + [21111] = 19265, + [21112] = 19266, + [21113] = 19277, + [21114] = 19291, + [21115] = 19292, + [21116] = 19267, + [21117] = 19264, + [21118] = 19265, + [21119] = 19266, + [21120] = 19267, + [21121] = 19268, + [21122] = 19262, + [21123] = 19274, + [21124] = 19285, + [21125] = 19279, + [21126] = 19284, + [21127] = 19285, + [21128] = 19276, + [21129] = 19289, + [21130] = 19297, + [21131] = 19268, + [21132] = 19268, + [21133] = 19276, + [21134] = 21134, + [21135] = 19262, + [21136] = 19291, + [21137] = 19298, + [21138] = 19292, + [21139] = 5314, + [21140] = 19272, + [21141] = 19291, + [21142] = 19292, + [21143] = 19264, + [21144] = 19295, + [21145] = 19264, + [21146] = 19274, + [21147] = 19279, + [21148] = 19297, + [21149] = 19298, + [21150] = 19267, + [21151] = 19277, + [21152] = 19295, + [21153] = 19291, + [21154] = 19291, + [21155] = 19284, + [21156] = 19279, + [21157] = 19270, + [21158] = 19263, + [21159] = 19285, + [21160] = 19292, + [21161] = 19265, + [21162] = 19266, + [21163] = 8762, + [21164] = 19267, + [21165] = 19270, + [21166] = 19268, + [21167] = 19263, + [21168] = 19262, + [21169] = 19265, + [21170] = 19274, + [21171] = 19277, + [21172] = 19266, + [21173] = 19297, + [21174] = 21174, + [21175] = 21175, + [21176] = 19284, + [21177] = 19285, + [21178] = 19267, + [21179] = 19268, + [21180] = 21180, + [21181] = 19276, + [21182] = 19276, + [21183] = 19272, + [21184] = 19289, + [21185] = 19289, + [21186] = 19277, + [21187] = 19289, + [21188] = 19298, + [21189] = 19291, + [21190] = 19292, + [21191] = 19264, + [21192] = 19264, + [21193] = 19262, + [21194] = 19274, + [21195] = 21195, + [21196] = 19284, + [21197] = 19285, + [21198] = 19276, + [21199] = 19279, + [21200] = 19272, + [21201] = 19289, + [21202] = 19297, + [21203] = 19272, + [21204] = 19298, + [21205] = 21205, + [21206] = 19295, + [21207] = 19295, + [21208] = 19291, + [21209] = 19292, + [21210] = 19264, + [21211] = 19262, + [21212] = 19279, + [21213] = 19297, + [21214] = 19277, + [21215] = 19298, + [21216] = 19292, + [21217] = 19295, + [21218] = 21218, + [21219] = 19265, + [21220] = 19266, + [21221] = 19270, + [21222] = 19263, + [21223] = 20922, + [21224] = 19291, + [21225] = 19265, + [21226] = 19270, + [21227] = 11823, + [21228] = 19266, + [21229] = 11352, + [21230] = 19277, + [21231] = 19263, + [21232] = 19292, + [21233] = 19262, + [21234] = 19274, + [21235] = 19265, + [21236] = 19284, + [21237] = 19285, + [21238] = 19266, + [21239] = 19276, + [21240] = 19289, + [21241] = 19267, + [21242] = 19279, + [21243] = 19291, + [21244] = 19292, + [21245] = 19267, + [21246] = 19264, + [21247] = 19279, + [21248] = 19268, + [21249] = 19274, + [21250] = 19297, + [21251] = 19268, + [21252] = 19298, + [21253] = 19270, + [21254] = 19295, + [21255] = 19297, + [21256] = 19295, + [21257] = 19262, + [21258] = 19298, + [21259] = 19274, + [21260] = 19264, + [21261] = 19270, + [21262] = 19263, + [21263] = 19265, + [21264] = 19266, + [21265] = 19284, + [21266] = 19267, + [21267] = 19285, + [21268] = 19268, + [21269] = 19268, + [21270] = 10035, + [21271] = 19270, + [21272] = 19276, + [21273] = 19272, + [21274] = 19279, + [21275] = 19263, + [21276] = 19267, + [21277] = 19272, + [21278] = 19284, + [21279] = 19289, + [21280] = 19297, + [21281] = 19265, + [21282] = 19272, + [21283] = 19277, + [21284] = 19277, + [21285] = 19277, + [21286] = 19298, + [21287] = 19291, + [21288] = 19292, + [21289] = 19291, + [21290] = 19266, + [21291] = 19262, + [21292] = 19274, + [21293] = 19292, + [21294] = 19264, + [21295] = 19284, + [21296] = 19295, + [21297] = 19285, + [21298] = 19262, + [21299] = 19274, + [21300] = 19262, + [21301] = 19274, + [21302] = 19276, + [21303] = 19289, + [21304] = 19284, + [21305] = 19284, + [21306] = 19285, + [21307] = 19285, + [21308] = 19276, + [21309] = 19291, + [21310] = 19292, + [21311] = 19276, + [21312] = 19289, + [21313] = 19276, + [21314] = 19279, + [21315] = 19264, + [21316] = 19423, + [21317] = 11659, + [21318] = 10865, + [21319] = 19279, + [21320] = 19297, + [21321] = 19289, + [21322] = 19298, + [21323] = 19264, + [21324] = 19295, + [21325] = 19297, + [21326] = 8832, + [21327] = 19298, + [21328] = 19291, + [21329] = 19292, + [21330] = 19291, + [21331] = 10865, + [21332] = 19270, + [21333] = 19295, + [21334] = 19263, + [21335] = 19265, + [21336] = 19266, + [21337] = 19267, + [21338] = 10042, + [21339] = 10043, + [21340] = 19292, + [21341] = 19268, + [21342] = 10040, + [21343] = 10041, + [21344] = 19264, + [21345] = 19262, + [21346] = 19264, + [21347] = 19279, + [21348] = 19295, + [21349] = 19267, + [21350] = 19297, + [21351] = 19298, + [21352] = 19279, + [21353] = 19295, + [21354] = 19270, + [21355] = 19285, + [21356] = 19272, + [21357] = 19297, + [21358] = 19263, + [21359] = 19298, + [21360] = 19268, + [21361] = 19277, + [21362] = 20670, + [21363] = 19265, + [21364] = 19290, + [21365] = 19263, + [21366] = 21366, + [21367] = 21367, + [21368] = 21368, + [21369] = 21369, + [21370] = 21370, + [21371] = 21371, + [21372] = 21372, + [21373] = 21373, + [21374] = 21374, + [21375] = 21375, + [21376] = 21376, + [21377] = 21377, + [21378] = 21378, + [21379] = 21379, + [21380] = 21380, + [21381] = 21381, + [21382] = 21382, + [21383] = 21371, + [21384] = 21381, + [21385] = 21385, + [21386] = 21386, + [21387] = 21367, + [21388] = 21368, + [21389] = 21389, + [21390] = 21370, + [21391] = 21391, + [21392] = 21372, + [21393] = 21379, + [21394] = 21389, + [21395] = 21376, + [21396] = 21396, + [21397] = 21378, + [21398] = 21379, + [21399] = 21370, + [21400] = 21377, + [21401] = 21382, + [21402] = 21371, + [21403] = 21381, + [21404] = 21391, + [21405] = 21386, + [21406] = 21367, + [21407] = 21368, + [21408] = 21372, + [21409] = 21370, + [21410] = 21369, + [21411] = 21372, + [21412] = 21412, + [21413] = 21368, + [21414] = 21414, + [21415] = 21376, + [21416] = 21385, + [21417] = 21378, + [21418] = 21379, + [21419] = 21389, + [21420] = 21367, + [21421] = 21382, + [21422] = 21371, + [21423] = 21381, + [21424] = 21385, + [21425] = 21386, + [21426] = 21367, + [21427] = 21368, + [21428] = 21389, + [21429] = 21370, + [21430] = 21386, + [21431] = 21372, + [21432] = 21367, + [21433] = 21377, + [21434] = 21368, + [21435] = 21376, + [21436] = 21368, + [21437] = 21378, + [21438] = 21379, + [21439] = 21391, + [21440] = 21440, + [21441] = 21382, + [21442] = 21371, + [21443] = 21381, + [21444] = 21444, + [21445] = 21386, + [21446] = 21367, + [21447] = 21368, + [21448] = 21382, + [21449] = 21370, + [21450] = 21381, + [21451] = 21372, + [21452] = 21373, + [21453] = 21453, + [21454] = 21454, + [21455] = 21376, + [21456] = 21412, + [21457] = 21378, + [21458] = 21379, + [21459] = 21459, + [21460] = 21444, + [21461] = 21382, + [21462] = 21371, + [21463] = 21381, + [21464] = 21464, + [21465] = 21386, + [21466] = 21367, + [21467] = 21368, + [21468] = 21369, + [21469] = 21370, + [21470] = 21373, + [21471] = 21372, + [21472] = 21472, + [21473] = 21473, + [21474] = 21376, + [21475] = 21440, + [21476] = 21378, + [21477] = 21379, + [21478] = 21377, + [21479] = 21479, + [21480] = 21382, + [21481] = 21371, + [21482] = 21381, + [21483] = 21376, + [21484] = 21386, + [21485] = 21367, + [21486] = 21368, + [21487] = 21373, + [21488] = 21370, + [21489] = 21453, + [21490] = 21372, + [21491] = 21378, + [21492] = 21492, + [21493] = 21396, + [21494] = 21376, + [21495] = 21370, + [21496] = 21378, + [21497] = 21379, + [21498] = 21479, + [21499] = 21377, + [21500] = 21382, + [21501] = 21371, + [21502] = 21381, + [21503] = 21503, + [21504] = 21386, + [21505] = 21367, + [21506] = 21368, + [21507] = 21507, + [21508] = 21370, + [21509] = 21412, + [21510] = 21372, + [21511] = 21396, + [21512] = 21366, + [21513] = 21444, + [21514] = 21376, + [21515] = 21515, + [21516] = 21378, + [21517] = 21379, + [21518] = 21369, + [21519] = 21369, + [21520] = 21382, + [21521] = 21371, + [21522] = 21381, + [21523] = 21453, + [21524] = 21386, + [21525] = 21367, + [21526] = 21368, + [21527] = 21379, + [21528] = 21370, + [21529] = 21371, + [21530] = 21372, + [21531] = 21459, + [21532] = 21503, + [21533] = 21376, + [21534] = 21369, + [21535] = 21378, + [21536] = 21379, + [21537] = 21382, + [21538] = 21376, + [21539] = 21382, + [21540] = 21371, + [21541] = 21381, + [21542] = 21366, + [21543] = 21386, + [21544] = 21367, + [21545] = 21368, + [21546] = 21546, + [21547] = 21370, + [21548] = 21370, + [21549] = 21372, + [21550] = 21412, + [21551] = 21371, + [21552] = 21507, + [21553] = 21376, + [21554] = 21372, + [21555] = 21378, + [21556] = 21379, + [21557] = 21381, + [21558] = 21558, + [21559] = 21382, + [21560] = 21371, + [21561] = 21381, + [21562] = 21444, + [21563] = 21386, + [21564] = 21367, + [21565] = 21368, + [21566] = 21386, + [21567] = 21370, + [21568] = 21453, + [21569] = 21372, + [21570] = 21367, + [21571] = 21368, + [21572] = 21473, + [21573] = 21376, + [21574] = 21385, + [21575] = 21378, + [21576] = 21379, + [21577] = 21389, + [21578] = 21372, + [21579] = 21382, + [21580] = 21371, + [21581] = 21381, + [21582] = 21546, + [21583] = 21386, + [21584] = 21367, + [21585] = 21368, + [21586] = 21377, + [21587] = 21391, + [21588] = 21371, + [21589] = 21381, + [21590] = 21370, + [21591] = 21591, + [21592] = 21391, + [21593] = 21378, + [21594] = 21594, + [21595] = 21412, + [21596] = 21375, + [21597] = 21369, + [21598] = 21372, + [21599] = 21376, + [21600] = 21558, + [21601] = 21380, + [21602] = 21492, + [21603] = 21386, + [21604] = 12506, + [21605] = 21367, + [21606] = 21372, + [21607] = 21368, + [21608] = 21385, + [21609] = 21380, + [21610] = 21378, + [21611] = 21376, + [21612] = 21368, + [21613] = 21396, + [21614] = 12064, + [21615] = 21378, + [21616] = 21492, + [21617] = 21479, + [21618] = 21503, + [21619] = 21507, + [21620] = 21620, + [21621] = 21385, + [21622] = 21622, + [21623] = 21370, + [21624] = 21389, + [21625] = 21440, + [21626] = 21492, + [21627] = 21375, + [21628] = 21372, + [21629] = 21379, + [21630] = 21373, + [21631] = 21380, + [21632] = 21479, + [21633] = 21453, + [21634] = 21412, + [21635] = 21382, + [21636] = 21389, + [21637] = 21366, + [21638] = 21459, + [21639] = 21546, + [21640] = 21382, + [21641] = 21641, + [21642] = 21370, + [21643] = 21371, + [21644] = 21412, + [21645] = 21473, + [21646] = 21377, + [21647] = 21381, + [21648] = 21391, + [21649] = 21377, + [21650] = 21444, + [21651] = 21386, + [21652] = 21652, + [21653] = 21367, + [21654] = 21368, + [21655] = 21479, + [21656] = 21444, + [21657] = 21396, + [21658] = 21385, + [21659] = 21372, + [21660] = 21440, + [21661] = 21391, + [21662] = 21373, + [21663] = 21453, + [21664] = 21459, + [21665] = 21503, + [21666] = 21507, + [21667] = 21412, + [21668] = 21389, + [21669] = 21444, + [21670] = 21473, + [21671] = 21440, + [21672] = 21373, + [21673] = 21453, + [21674] = 21377, + [21675] = 21385, + [21676] = 21369, + [21677] = 21373, + [21678] = 21459, + [21679] = 21391, + [21680] = 21558, + [21681] = 21503, + [21682] = 21682, + [21683] = 21389, + [21684] = 21385, + [21685] = 21366, + [21686] = 21369, + [21687] = 21546, + [21688] = 21688, + [21689] = 21379, + [21690] = 21370, + [21691] = 21507, + [21692] = 21389, + [21693] = 21386, + [21694] = 21372, + [21695] = 21381, + [21696] = 21396, + [21697] = 21620, + [21698] = 21391, + [21699] = 21412, + [21700] = 21444, + [21701] = 21376, + [21702] = 21702, + [21703] = 21369, + [21704] = 21377, + [21705] = 21385, + [21706] = 21389, + [21707] = 21391, + [21708] = 21375, + [21709] = 21375, + [21710] = 21473, + [21711] = 21377, + [21712] = 21391, + [21713] = 21380, + [21714] = 21367, + [21715] = 21371, + [21716] = 21370, + [21717] = 21717, + [21718] = 21370, + [21719] = 21719, + [21720] = 21379, + [21721] = 21376, + [21722] = 21722, + [21723] = 21379, + [21724] = 21370, + [21725] = 21372, + [21726] = 21382, + [21727] = 21380, + [21728] = 21376, + [21729] = 21372, + [21730] = 21376, + [21731] = 21372, + [21732] = 21366, + [21733] = 21385, + [21734] = 21378, + [21735] = 21389, + [21736] = 21492, + [21737] = 21473, + [21738] = 21479, + [21739] = 21503, + [21740] = 21507, + [21741] = 21378, + [21742] = 21492, + [21743] = 21377, + [21744] = 21479, + [21745] = 21391, + [21746] = 21622, + [21747] = 21546, + [21748] = 21376, + [21749] = 21376, + [21750] = 21385, + [21751] = 21379, + [21752] = 21503, + [21753] = 21440, + [21754] = 21389, + [21755] = 21373, + [21756] = 21453, + [21757] = 21652, + [21758] = 21378, + [21759] = 21378, + [21760] = 21382, + [21761] = 21366, + [21762] = 21382, + [21763] = 21376, + [21764] = 21459, + [21765] = 21378, + [21766] = 21492, + [21767] = 21479, + [21768] = 21503, + [21769] = 21507, + [21770] = 21492, + [21771] = 21479, + [21772] = 21503, + [21773] = 21377, + [21774] = 21379, + [21775] = 21507, + [21776] = 21391, + [21777] = 21382, + [21778] = 21396, + [21779] = 21366, + [21780] = 21412, + [21781] = 21444, + [21782] = 21546, + [21783] = 21371, + [21784] = 21369, + [21785] = 21381, + [21786] = 21546, + [21787] = 21682, + [21788] = 21440, + [21789] = 21371, + [21790] = 21381, + [21791] = 21507, + [21792] = 21688, + [21793] = 21386, + [21794] = 21367, + [21795] = 21371, + [21796] = 21386, + [21797] = 21367, + [21798] = 21368, + [21799] = 21368, + [21800] = 21381, + [21801] = 21473, + [21802] = 21379, + [21803] = 21370, + [21804] = 21374, + [21805] = 21381, + [21806] = 21492, + [21807] = 21366, + [21808] = 21479, + [21809] = 21382, + [21810] = 21366, + [21811] = 21546, + [21812] = 21396, + [21813] = 21379, + [21814] = 21375, + [21815] = 21373, + [21816] = 21503, + [21817] = 21377, + [21818] = 21546, + [21819] = 21412, + [21820] = 21382, + [21821] = 21366, + [21822] = 21546, + [21823] = 21444, + [21824] = 21376, + [21825] = 21369, + [21826] = 21380, + [21827] = 21453, + [21828] = 21828, + [21829] = 21386, + [21830] = 21371, + [21831] = 21374, + [21832] = 21371, + [21833] = 21371, + [21834] = 21414, + [21835] = 21381, + [21836] = 21507, + [21837] = 21381, + [21838] = 21391, + [21839] = 21381, + [21840] = 21454, + [21841] = 21464, + [21842] = 21375, + [21843] = 21386, + [21844] = 21372, + [21845] = 21386, + [21846] = 21386, + [21847] = 21515, + [21848] = 21380, + [21849] = 21367, + [21850] = 21367, + [21851] = 21370, + [21852] = 21375, + [21853] = 21368, + [21854] = 21380, + [21855] = 21367, + [21856] = 21444, + [21857] = 21368, + [21858] = 21372, + [21859] = 21367, + [21860] = 21459, + [21861] = 21369, + [21862] = 21378, + [21863] = 21376, + [21864] = 21864, + [21865] = 21385, + [21866] = 21385, + [21867] = 21389, + [21868] = 21368, + [21869] = 21377, + [21870] = 21440, + [21871] = 21391, + [21872] = 21558, + [21873] = 21620, + [21874] = 21373, + [21875] = 21453, + [21876] = 21622, + [21877] = 21877, + [21878] = 21370, + [21879] = 21386, + [21880] = 21880, + [21881] = 21682, + [21882] = 21375, + [21883] = 21378, + [21884] = 21492, + [21885] = 21440, + [21886] = 21688, + [21887] = 21373, + [21888] = 21372, + [21889] = 21479, + [21890] = 21459, + [21891] = 21453, + [21892] = 21892, + [21893] = 21503, + [21894] = 21453, + [21895] = 21459, + [21896] = 21507, + [21897] = 21385, + [21898] = 21376, + [21899] = 21473, + [21900] = 21389, + [21901] = 21368, + [21902] = 21367, + [21903] = 21378, + [21904] = 21492, + [21905] = 21473, + [21906] = 21440, + [21907] = 21396, + [21908] = 21479, + [21909] = 21503, + [21910] = 21385, + [21911] = 21507, + [21912] = 21396, + [21913] = 21389, + [21914] = 21440, + [21915] = 21377, + [21916] = 21385, + [21917] = 21378, + [21918] = 21368, + [21919] = 21379, + [21920] = 21412, + [21921] = 21391, + [21922] = 21379, + [21923] = 21412, + [21924] = 21444, + [21925] = 21444, + [21926] = 21379, + [21927] = 21492, + [21928] = 21369, + [21929] = 21382, + [21930] = 21369, + [21931] = 21366, + [21932] = 21546, + [21933] = 21492, + [21934] = 21828, + [21935] = 21373, + [21936] = 21371, + [21937] = 21864, + [21938] = 21381, + [21939] = 21377, + [21940] = 21877, + [21941] = 21376, + [21942] = 21374, + [21943] = 21880, + [21944] = 21386, + [21945] = 21367, + [21946] = 21368, + [21947] = 21382, + [21948] = 21370, + [21949] = 21396, + [21950] = 21372, + [21951] = 21391, + [21952] = 21382, + [21953] = 21366, + [21954] = 21385, + [21955] = 21389, + [21956] = 21546, + [21957] = 21377, + [21958] = 21391, + [21959] = 21453, + [21960] = 21386, + [21961] = 21370, + [21962] = 21371, + [21963] = 21366, + [21964] = 21372, + [21965] = 21381, + [21966] = 21376, + [21967] = 21374, + [21968] = 21968, + [21969] = 21479, + [21970] = 21376, + [21971] = 21378, + [21972] = 21492, + [21973] = 21479, + [21974] = 21503, + [21975] = 21507, + [21976] = 21385, + [21977] = 21682, + [21978] = 21389, + [21979] = 21546, + [21980] = 21377, + [21981] = 21391, + [21982] = 21688, + [21983] = 21459, + [21984] = 21473, + [21985] = 21386, + [21986] = 21380, + [21987] = 21987, + [21988] = 21479, + [21989] = 21379, + [21990] = 21373, + [21991] = 21371, + [21992] = 21375, + [21993] = 21382, + [21994] = 21366, + [21995] = 21546, + [21996] = 21367, + [21997] = 21371, + [21998] = 21381, + [21999] = 21380, + [22000] = 21381, + [22001] = 22001, + [22002] = 21376, + [22003] = 21368, + [22004] = 21366, + [22005] = 21378, + [22006] = 21503, + [22007] = 21386, + [22008] = 21376, + [22009] = 21492, + [22010] = 21479, + [22011] = 21376, + [22012] = 21367, + [22013] = 21368, + [22014] = 21378, + [22015] = 21492, + [22016] = 21503, + [22017] = 21507, + [22018] = 21386, + [22019] = 21367, + [22020] = 21368, + [22021] = 21479, + [22022] = 21389, + [22023] = 21503, + [22024] = 21507, + [22025] = 21453, + [22026] = 22026, + [22027] = 21375, + [22028] = 21376, + [22029] = 22029, + [22030] = 21507, + [22031] = 21472, + [22032] = 21378, + [22033] = 21379, + [22034] = 21892, + [22035] = 21380, + [22036] = 21378, + [22037] = 21382, + [22038] = 21375, + [22039] = 21377, + [22040] = 21380, + [22041] = 21366, + [22042] = 21546, + [22043] = 21412, + [22044] = 21444, + [22045] = 22045, + [22046] = 21371, + [22047] = 21503, + [22048] = 21381, + [22049] = 21379, + [22050] = 21386, + [22051] = 21367, + [22052] = 21440, + [22053] = 21368, + [22054] = 21391, + [22055] = 21375, + [22056] = 21473, + [22057] = 21380, + [22058] = 21373, + [22059] = 21479, + [22060] = 21453, + [22061] = 21378, + [22062] = 21370, + [22063] = 21719, + [22064] = 21459, + [22065] = 21375, + [22066] = 22066, + [22067] = 21382, + [22068] = 21366, + [22069] = 21546, + [22070] = 21396, + [22071] = 22071, + [22072] = 22072, + [22073] = 21396, + [22074] = 21492, + [22075] = 21459, + [22076] = 21412, + [22077] = 22077, + [22078] = 22078, + [22079] = 21367, + [22080] = 21379, + [22081] = 21473, + [22082] = 21444, + [22083] = 21372, + [22084] = 21371, + [22085] = 21369, + [22086] = 21381, + [22087] = 21507, + [22088] = 21479, + [22089] = 21503, + [22090] = 22090, + [22091] = 22029, + [22092] = 21375, + [22093] = 21375, + [22094] = 21396, + [22095] = 22095, + [22096] = 21376, + [22097] = 21380, + [22098] = 21412, + [22099] = 21386, + [22100] = 21367, + [22101] = 21444, + [22102] = 21440, + [22103] = 21507, + [22104] = 21373, + [22105] = 21453, + [22106] = 21369, + [22107] = 21459, + [22108] = 21412, + [22109] = 21382, + [22110] = 21492, + [22111] = 21372, + [22112] = 21444, + [22113] = 21440, + [22114] = 21492, + [22115] = 21370, + [22116] = 21366, + [22117] = 21373, + [22118] = 21375, + [22119] = 21453, + [22120] = 21370, + [22121] = 21386, + [22122] = 21473, + [22123] = 21368, + [22124] = 22124, + [22125] = 21372, + [22126] = 21372, + [22127] = 21479, + [22128] = 21375, + [22129] = 21459, + [22130] = 21380, + [22131] = 21440, + [22132] = 21380, + [22133] = 21440, + [22134] = 21385, + [22135] = 21373, + [22136] = 21453, + [22137] = 21389, + [22138] = 21380, + [22139] = 21377, + [22140] = 21391, + [22141] = 21459, + [22142] = 21369, + [22143] = 21396, + [22144] = 21369, + [22145] = 22026, + [22146] = 21412, + [22147] = 21444, + [22148] = 22029, + [22149] = 21369, + [22150] = 21391, + [22151] = 21370, + [22152] = 21472, + [22153] = 21370, + [22154] = 21375, + [22155] = 21385, + [22156] = 21473, + [22157] = 21370, + [22158] = 21459, + [22159] = 21389, + [22160] = 21546, + [22161] = 21372, + [22162] = 21373, + [22163] = 21380, + [22164] = 21453, + [22165] = 21379, + [22166] = 21376, + [22167] = 21479, + [22168] = 21396, + [22169] = 21503, + [22170] = 21378, + [22171] = 21385, + [22172] = 21389, + [22173] = 21492, + [22174] = 21377, + [22175] = 21412, + [22176] = 21391, + [22177] = 21444, + [22178] = 21479, + [22179] = 21503, + [22180] = 21369, + [22181] = 22181, + [22182] = 21459, + [22183] = 21507, + [22184] = 21377, + [22185] = 21892, + [22186] = 21379, + [22187] = 21372, + [22188] = 21367, + [22189] = 21391, + [22190] = 21379, + [22191] = 21376, + [22192] = 21376, + [22193] = 21378, + [22194] = 21378, + [22195] = 21492, + [22196] = 21479, + [22197] = 21503, + [22198] = 21507, + [22199] = 22071, + [22200] = 21382, + [22201] = 21366, + [22202] = 21546, + [22203] = 21370, + [22204] = 21379, + [22205] = 21376, + [22206] = 21371, + [22207] = 21372, + [22208] = 21382, + [22209] = 21366, + [22210] = 21507, + [22211] = 22072, + [22212] = 21473, + [22213] = 21546, + [22214] = 21473, + [22215] = 21385, + [22216] = 21389, + [22217] = 21381, + [22218] = 21371, + [22219] = 21380, + [22220] = 21381, + [22221] = 21377, + [22222] = 21386, + [22223] = 21391, + [22224] = 21367, + [22225] = 21368, + [22226] = 21386, + [22227] = 21507, + [22228] = 21473, + [22229] = 21367, + [22230] = 21378, + [22231] = 21368, + [22232] = 21492, + [22233] = 21382, + [22234] = 21366, + [22235] = 21492, + [22236] = 21414, + [22237] = 22045, + [22238] = 21368, + [22239] = 21376, + [22240] = 21378, + [22241] = 21479, + [22242] = 21492, + [22243] = 21479, + [22244] = 21369, + [22245] = 21396, + [22246] = 21503, + [22247] = 21507, + [22248] = 21378, + [22249] = 21375, + [22250] = 21396, + [22251] = 21546, + [22252] = 21503, + [22253] = 21375, + [22254] = 21379, + [22255] = 21412, + [22256] = 21380, + [22257] = 21382, + [22258] = 21366, + [22259] = 21546, + [22260] = 21444, + [22261] = 21371, + [22262] = 21380, + [22263] = 21381, + [22264] = 21376, + [22265] = 21386, + [22266] = 21367, + [22267] = 21368, + [22268] = 21507, + [22269] = 21412, + [22270] = 21369, + [22271] = 21444, + [22272] = 21371, + [22273] = 21379, + [22274] = 21369, + [22275] = 21440, + [22276] = 21440, + [22277] = 21375, + [22278] = 21373, + [22279] = 21380, + [22280] = 21378, + [22281] = 21453, + [22282] = 21492, + [22283] = 21479, + [22284] = 22045, + [22285] = 21503, + [22286] = 21373, + [22287] = 21370, + [22288] = 21382, + [22289] = 21453, + [22290] = 21372, + [22291] = 21381, + [22292] = 21385, + [22293] = 21507, + [22294] = 22294, + [22295] = 21459, + [22296] = 21828, + [22297] = 21440, + [22298] = 21385, + [22299] = 21459, + [22300] = 21375, + [22301] = 21440, + [22302] = 21389, + [22303] = 21380, + [22304] = 21479, + [22305] = 21373, + [22306] = 21379, + [22307] = 21379, + [22308] = 21453, + [22309] = 21377, + [22310] = 21366, + [22311] = 21492, + [22312] = 21459, + [22313] = 21382, + [22314] = 21370, + [22315] = 21375, + [22316] = 21366, + [22317] = 21391, + [22318] = 21546, + [22319] = 22319, + [22320] = 21440, + [22321] = 21385, + [22322] = 21373, + [22323] = 21546, + [22324] = 21453, + [22325] = 21389, + [22326] = 21473, + [22327] = 21459, + [22328] = 21376, + [22329] = 21372, + [22330] = 21373, + [22331] = 21371, + [22332] = 21371, + [22333] = 22071, + [22334] = 21440, + [22335] = 21473, + [22336] = 21386, + [22337] = 21373, + [22338] = 21396, + [22339] = 21367, + [22340] = 21375, + [22341] = 21453, + [22342] = 21412, + [22343] = 21444, + [22344] = 21459, + [22345] = 21380, + [22346] = 21381, + [22347] = 21453, + [22348] = 22072, + [22349] = 21369, + [22350] = 21386, + [22351] = 21367, + [22352] = 21473, + [22353] = 21473, + [22354] = 21479, + [22355] = 21503, + [22356] = 21507, + [22357] = 21380, + [22358] = 22077, + [22359] = 21375, + [22360] = 21368, + [22361] = 22078, + [22362] = 21396, + [22363] = 21396, + [22364] = 21385, + [22365] = 21473, + [22366] = 21396, + [22367] = 21368, + [22368] = 21412, + [22369] = 21372, + [22370] = 21370, + [22371] = 21412, + [22372] = 21444, + [22373] = 21382, + [22374] = 21444, + [22375] = 21864, + [22376] = 21369, + [22377] = 21389, + [22378] = 21473, + [22379] = 21369, + [22380] = 21372, + [22381] = 21412, + [22382] = 21376, + [22383] = 21385, + [22384] = 21389, + [22385] = 21877, + [22386] = 21381, + [22387] = 21382, + [22388] = 21377, + [22389] = 21880, + [22390] = 21391, + [22391] = 22045, + [22392] = 21377, + [22393] = 21459, + [22394] = 21370, + [22395] = 21372, + [22396] = 21371, + [22397] = 21370, + [22398] = 21444, + [22399] = 21372, + [22400] = 21385, + [22401] = 21391, + [22402] = 21381, + [22403] = 21389, + [22404] = 21378, + [22405] = 21377, + [22406] = 21391, + [22407] = 21385, + [22408] = 21389, + [22409] = 21492, + [22410] = 21479, + [22411] = 21375, + [22412] = 21375, + [22413] = 21369, + [22414] = 21503, + [22415] = 21380, + [22416] = 21376, + [22417] = 21507, + [22418] = 21385, + [22419] = 21378, + [22420] = 21377, + [22421] = 21391, + [22422] = 21492, + [22423] = 21440, + [22424] = 22045, + [22425] = 21479, + [22426] = 21503, + [22427] = 21507, + [22428] = 21376, + [22429] = 21389, + [22430] = 22090, + [22431] = 21378, + [22432] = 22095, + [22433] = 21380, + [22434] = 21373, + [22435] = 21492, + [22436] = 21379, + [22437] = 21379, + [22438] = 21376, + [22439] = 21389, + [22440] = 21479, + [22441] = 21453, + [22442] = 21378, + [22443] = 21503, + [22444] = 21507, + [22445] = 21379, + [22446] = 21459, + [22447] = 21366, + [22448] = 21382, + [22449] = 21366, + [22450] = 21546, + [22451] = 21492, + [22452] = 21459, + [22453] = 21479, + [22454] = 21379, + [22455] = 21379, + [22456] = 21371, + [22457] = 21503, + [22458] = 21507, + [22459] = 21382, + [22460] = 21381, + [22461] = 21366, + [22462] = 21546, + [22463] = 21370, + [22464] = 21386, + [22465] = 21379, + [22466] = 21376, + [22467] = 21367, + [22468] = 21382, + [22469] = 21366, + [22470] = 21546, + [22471] = 21546, + [22472] = 21371, + [22473] = 21381, + [22474] = 21368, + [22475] = 21396, + [22476] = 21371, + [22477] = 21386, + [22478] = 21367, + [22479] = 21368, + [22480] = 21459, + [22481] = 21381, + [22482] = 21370, + [22483] = 21503, + [22484] = 21382, + [22485] = 21386, + [22486] = 21717, + [22487] = 21378, + [22488] = 21386, + [22489] = 21719, + [22490] = 21367, + [22491] = 21368, + [22492] = 21366, + [22493] = 21454, + [22494] = 21372, + [22495] = 21372, + [22496] = 21440, + [22497] = 21492, + [22498] = 21546, + [22499] = 22077, + [22500] = 21371, + [22501] = 21479, + [22502] = 21503, + [22503] = 21507, + [22504] = 21377, + [22505] = 21381, + [22506] = 21373, + [22507] = 21382, + [22508] = 21366, + [22509] = 21391, + [22510] = 21374, + [22511] = 21386, + [22512] = 21386, + [22513] = 21366, + [22514] = 21367, + [22515] = 21546, + [22516] = 21367, + [22517] = 21382, + [22518] = 21546, + [22519] = 21464, + [22520] = 21375, + [22521] = 21368, + [22522] = 21412, + [22523] = 21380, + [22524] = 21379, + [22525] = 21453, + [22526] = 21375, + [22527] = 21444, + [22528] = 21380, + [22529] = 22078, + [22530] = 21385, + [22531] = 21371, + [22532] = 21385, + [22533] = 21389, + [22534] = 21473, + [22535] = 21389, + [22536] = 21377, + [22537] = 21385, + [22538] = 21389, + [22539] = 21375, + [22540] = 21375, + [22541] = 21391, + [22542] = 21473, + [22543] = 21459, + [22544] = 21380, + [22545] = 21622, + [22546] = 21440, + [22547] = 21369, + [22548] = 21373, + [22549] = 21366, + [22550] = 21382, + [22551] = 21453, + [22552] = 21380, + [22553] = 22553, + [22554] = 21368, + [22555] = 21377, + [22556] = 21459, + [22557] = 22557, + [22558] = 21391, + [22559] = 21366, + [22560] = 21546, + [22561] = 21440, + [22562] = 21373, + [22563] = 21453, + [22564] = 21377, + [22565] = 21377, + [22566] = 22566, + [22567] = 21473, + [22568] = 21391, + [22569] = 21515, + [22570] = 22570, + [22571] = 21371, + [22572] = 21440, + [22573] = 21381, + [22574] = 21492, + [22575] = 21377, + [22576] = 21440, + [22577] = 21507, + [22578] = 21396, + [22579] = 21396, + [22580] = 21459, + [22581] = 21371, + [22582] = 21373, + [22583] = 21453, + [22584] = 21412, + [22585] = 21412, + [22586] = 21370, + [22587] = 21444, + [22588] = 21391, + [22589] = 21444, + [22590] = 21369, + [22591] = 21546, + [22592] = 21459, + [22593] = 21369, + [22594] = 21473, + [22595] = 21371, + [22596] = 21386, + [22597] = 21372, + [22598] = 21369, + [22599] = 21376, + [22600] = 21371, + [22601] = 21473, + [22602] = 21367, + [22603] = 21368, + [22604] = 22604, + [22605] = 21396, + [22606] = 21378, + [22607] = 21492, + [22608] = 21370, + [22609] = 21396, + [22610] = 21473, + [22611] = 21372, + [22612] = 21376, + [22613] = 21479, + [22614] = 21396, + [22615] = 21371, + [22616] = 21412, + [22617] = 21444, + [22618] = 21373, + [22619] = 21412, + [22620] = 21444, + [22621] = 22621, + [22622] = 21385, + [22623] = 21369, + [22624] = 21369, + [22625] = 21414, + [22626] = 21503, + [22627] = 21381, + [22628] = 21385, + [22629] = 21389, + [22630] = 21381, + [22631] = 21377, + [22632] = 21391, + [22633] = 21381, + [22634] = 21507, + [22635] = 21375, + [22636] = 21386, + [22637] = 21389, + [22638] = 21454, + [22639] = 21464, + [22640] = 21367, + [22641] = 22641, + [22642] = 21380, + [22643] = 21377, + [22644] = 21370, + [22645] = 21391, + [22646] = 21372, + [22647] = 21515, + [22648] = 21370, + [22649] = 21453, + [22650] = 21372, + [22651] = 21381, + [22652] = 21379, + [22653] = 21376, + [22654] = 21385, + [22655] = 21378, + [22656] = 21492, + [22657] = 21385, + [22658] = 21389, + [22659] = 21479, + [22660] = 21503, + [22661] = 21386, + [22662] = 21377, + [22663] = 21391, + [22664] = 21507, + [22665] = 21389, + [22666] = 21367, + [22667] = 21367, + [22668] = 21558, + [22669] = 21620, + [22670] = 21396, + [22671] = 21377, + [22672] = 21391, + [22673] = 21379, + [22674] = 21622, + [22675] = 21391, + [22676] = 21368, + [22677] = 21370, + [22678] = 21453, + [22679] = 21368, + [22680] = 21373, + [22681] = 21382, + [22682] = 21372, + [22683] = 21382, + [22684] = 21379, + [22685] = 21412, + [22686] = 21366, + [22687] = 21546, + [22688] = 21376, + [22689] = 21366, + [22690] = 21371, + [22691] = 21381, + [22692] = 21440, + [22693] = 21378, + [22694] = 21492, + [22695] = 21479, + [22696] = 21503, + [22697] = 21385, + [22698] = 21389, + [22699] = 21507, + [22700] = 21386, + [22701] = 21378, + [22702] = 21367, + [22703] = 21368, + [22704] = 21377, + [22705] = 21391, + [22706] = 21444, + [22707] = 21373, + [22708] = 21622, + [22709] = 21546, + [22710] = 21379, + [22711] = 21386, + [22712] = 21453, + [22713] = 21412, + [22714] = 21376, + [22715] = 21382, + [22716] = 21366, + [22717] = 21546, + [22718] = 21503, + [22719] = 21371, + [22720] = 21459, + [22721] = 21377, + [22722] = 21444, + [22723] = 21368, + [22724] = 21378, + [22725] = 21381, + [22726] = 21492, + [22727] = 21367, + [22728] = 21479, + [22729] = 21503, + [22730] = 21507, + [22731] = 21375, + [22732] = 21386, + [22733] = 21367, + [22734] = 21368, + [22735] = 8762, + [22736] = 21371, + [22737] = 21381, + [22738] = 21380, + [22739] = 21473, + [22740] = 21828, + [22741] = 21379, + [22742] = 22553, + [22743] = 21507, + [22744] = 21369, + [22745] = 21376, + [22746] = 21382, + [22747] = 21366, + [22748] = 21546, + [22749] = 21375, + [22750] = 21369, + [22751] = 21864, + [22752] = 21877, + [22753] = 21380, + [22754] = 21371, + [22755] = 21381, + [22756] = 21396, + [22757] = 21880, + [22758] = 21386, + [22759] = 21386, + [22760] = 21367, + [22761] = 21368, + [22762] = 21412, + [22763] = 21682, + [22764] = 21444, + [22765] = 21368, + [22766] = 21459, + [22767] = 21382, + [22768] = 21367, + [22769] = 21369, + [22770] = 21473, + [22771] = 21368, + [22772] = 21459, + [22773] = 21459, + [22774] = 21382, + [22775] = 21378, + [22776] = 21366, + [22777] = 21382, + [22778] = 21440, + [22779] = 21375, + [22780] = 21378, + [22781] = 21440, + [22782] = 21366, + [22783] = 21440, + [22784] = 21380, + [22785] = 21370, + [22786] = 21373, + [22787] = 21453, + [22788] = 21546, + [22789] = 21373, + [22790] = 21372, + [22791] = 21459, + [22792] = 21377, + [22793] = 21375, + [22794] = 21376, + [22795] = 21380, + [22796] = 21453, + [22797] = 21368, + [22798] = 21378, + [22799] = 21376, + [22800] = 21492, + [22801] = 21473, + [22802] = 21378, + [22803] = 21378, + [22804] = 21492, + [22805] = 21370, + [22806] = 21479, + [22807] = 21385, + [22808] = 21492, + [22809] = 21479, + [22810] = 21375, + [22811] = 21503, + [22812] = 21503, + [22813] = 21507, + [22814] = 21389, + [22815] = 21507, + [22816] = 21396, + [22817] = 21492, + [22818] = 21440, + [22819] = 21370, + [22820] = 21373, + [22821] = 21453, + [22822] = 21440, + [22823] = 21459, + [22824] = 21372, + [22825] = 21412, + [22826] = 21380, + [22827] = 21546, + [22828] = 21377, + [22829] = 21444, + [22830] = 21459, + [22831] = 21440, + [22832] = 22026, + [22833] = 22029, + [22834] = 21369, + [22835] = 21379, + [22836] = 21372, + [22837] = 21373, + [22838] = 21473, + [22839] = 21472, + [22840] = 21892, + [22841] = 21479, + [22842] = 21453, + [22843] = 21391, + [22844] = 21459, + [22845] = 21396, + [22846] = 21379, + [22847] = 21503, + [22848] = 21373, + [22849] = 22849, + [22850] = 21412, + [22851] = 22045, + [22852] = 21370, + [22853] = 21370, + [22854] = 21440, + [22855] = 21444, + [22856] = 21372, + [22857] = 21379, + [22858] = 21369, + [22859] = 21382, + [22860] = 21473, + [22861] = 21366, + [22862] = 21382, + [22863] = 21366, + [22864] = 21546, + [22865] = 21385, + [22866] = 21389, + [22867] = 21479, + [22868] = 21546, + [22869] = 21385, + [22870] = 21389, + [22871] = 22871, + [22872] = 22071, + [22873] = 22072, + [22874] = 21440, + [22875] = 22875, + [22876] = 21377, + [22877] = 22077, + [22878] = 22078, + [22879] = 21391, + [22880] = 21370, + [22881] = 21379, + [22882] = 21372, + [22883] = 21396, + [22884] = 21380, + [22885] = 21385, + [22886] = 21389, + [22887] = 21717, + [22888] = 21377, + [22889] = 21391, + [22890] = 21375, + [22891] = 21412, + [22892] = 21444, + [22893] = 21507, + [22894] = 21381, + [22895] = 21371, + [22896] = 21381, + [22897] = 21369, + [22898] = 21380, + [22899] = 21376, + [22900] = 22090, + [22901] = 21371, + [22902] = 22095, + [22903] = 21440, + [22904] = 21371, + [22905] = 21378, + [22906] = 21376, + [22907] = 21381, + [22908] = 21376, + [22909] = 21453, + [22910] = 21378, + [22911] = 21492, + [22912] = 21479, + [22913] = 21503, + [22914] = 21492, + [22915] = 21507, + [22916] = 21479, + [22917] = 21386, + [22918] = 21367, + [22919] = 21503, + [22920] = 21370, + [22921] = 21507, + [22922] = 21473, + [22923] = 21372, + [22924] = 21368, + [22925] = 21379, + [22926] = 21377, + [22927] = 21386, + [22928] = 21382, + [22929] = 21366, + [22930] = 21546, + [22931] = 21591, + [22932] = 21371, + [22933] = 21381, + [22934] = 21391, + [22935] = 21386, + [22936] = 21373, + [22937] = 21367, + [22938] = 21368, + [22939] = 21367, + [22940] = 21374, + [22941] = 21379, + [22942] = 21453, + [22943] = 21385, + [22944] = 21389, + [22945] = 21440, + [22946] = 21382, + [22947] = 21373, + [22948] = 21382, + [22949] = 21366, + [22950] = 21453, + [22951] = 21377, + [22952] = 21459, + [22953] = 21546, + [22954] = 21391, + [22955] = 21368, + [22956] = 21371, + [22957] = 21381, + [22958] = 21386, + [22959] = 21376, + [22960] = 21386, + [22961] = 21373, + [22962] = 21367, + [22963] = 21368, + [22964] = 21378, + [22965] = 21440, + [22966] = 21373, + [22967] = 21373, + [22968] = 21377, + [22969] = 4152, + [22970] = 21375, + [22971] = 21378, + [22972] = 21380, + [22973] = 21453, + [22974] = 21389, + [22975] = 21492, + [22976] = 21453, + [22977] = 21473, + [22978] = 21459, + [22979] = 21376, + [22980] = 21492, + [22981] = 21378, + [22982] = 21492, + [22983] = 21479, + [22984] = 21503, + [22985] = 21459, + [22986] = 21507, + [22987] = 21379, + [22988] = 21479, + [22989] = 21370, + [22990] = 21503, + [22991] = 21507, + [22992] = 21376, + [22993] = 21453, + [22994] = 21379, + [22995] = 21375, + [22996] = 21473, + [22997] = 21382, + [22998] = 21380, + [22999] = 21378, + [23000] = 21492, + [23001] = 21479, + [23002] = 21366, + [23003] = 21503, + [23004] = 21507, + [23005] = 21546, + [23006] = 21440, + [23007] = 21507, + [23008] = 21373, + [23009] = 21453, + [23010] = 23010, + [23011] = 21371, + [23012] = 21381, + [23013] = 21459, + [23014] = 21372, + [23015] = 21479, + [23016] = 21386, + [23017] = 21367, + [23018] = 21368, + [23019] = 21503, + [23020] = 21379, + [23021] = 21380, + [23022] = 21507, + [23023] = 21473, + [23024] = 21396, + [23025] = 21440, + [23026] = 21379, + [23027] = 21396, + [23028] = 21473, + [23029] = 21375, + [23030] = 21479, + [23031] = 21412, + [23032] = 21381, + [23033] = 21459, + [23034] = 21396, + [23035] = 21444, + [23036] = 21373, + [23037] = 21440, + [23038] = 21412, + [23039] = 21444, + [23040] = 21382, + [23041] = 21453, + [23042] = 21396, + [23043] = 21412, + [23044] = 21369, + [23045] = 23045, + [23046] = 21366, + [23047] = 21459, + [23048] = 21369, + [23049] = 21546, + [23050] = 21373, + [23051] = 21375, + [23052] = 21371, + [23053] = 21380, + [23054] = 21382, + [23055] = 21459, + [23056] = 21366, + [23057] = 21473, + [23058] = 21546, + [23059] = 21717, + [23060] = 21370, + [23061] = 21453, + [23062] = 21372, + [23063] = 21381, + [23064] = 21652, + [23065] = 21385, + [23066] = 21444, + [23067] = 21389, + [23068] = 21620, + [23069] = 21459, + [23070] = 21412, + [23071] = 21396, + [23072] = 21375, + [23073] = 21377, + [23074] = 21380, + [23075] = 21371, + [23076] = 21391, + [23077] = 21380, + [23078] = 21412, + [23079] = 21444, + [23080] = 21719, + [23081] = 21444, + [23082] = 21369, + [23083] = 21453, + [23084] = 22045, + [23085] = 21369, + [23086] = 21386, + [23087] = 21369, + [23088] = 21381, + [23089] = 21440, + [23090] = 21366, + [23091] = 21373, + [23092] = 21453, + [23093] = 21385, + [23094] = 21386, + [23095] = 21367, + [23096] = 21503, + [23097] = 21376, + [23098] = 21370, + [23099] = 21459, + [23100] = 21473, + [23101] = 21372, + [23102] = 21378, + [23103] = 21386, + [23104] = 21368, + [23105] = 21440, + [23106] = 21459, + [23107] = 21492, + [23108] = 21479, + [23109] = 21367, + [23110] = 21385, + [23111] = 21389, + [23112] = 21503, + [23113] = 21507, + [23114] = 21473, + [23115] = 21440, + [23116] = 21396, + [23117] = 21377, + [23118] = 21367, + [23119] = 21373, + [23120] = 21391, + [23121] = 21453, + [23122] = 21370, + [23123] = 21375, + [23124] = 21479, + [23125] = 21459, + [23126] = 21375, + [23127] = 21396, + [23128] = 21375, + [23129] = 21412, + [23130] = 21396, + [23131] = 22604, + [23132] = 21379, + [23133] = 21368, + [23134] = 21372, + [23135] = 23135, + [23136] = 21382, + [23137] = 21382, + [23138] = 21412, + [23139] = 21717, + [23140] = 21444, + [23141] = 21412, + [23142] = 21366, + [23143] = 21719, + [23144] = 21546, + [23145] = 21444, + [23146] = 21396, + [23147] = 21369, + [23148] = 21376, + [23149] = 21444, + [23150] = 21378, + [23151] = 21371, + [23152] = 21492, + [23153] = 21479, + [23154] = 21381, + [23155] = 21371, + [23156] = 21386, + [23157] = 21367, + [23158] = 21368, + [23159] = 21473, + [23160] = 21503, + [23161] = 21507, + [23162] = 21389, + [23163] = 21369, + [23164] = 21380, + [23165] = 21373, + [23166] = 21385, + [23167] = 21389, + [23168] = 21379, + [23169] = 21369, + [23170] = 21377, + [23171] = 21378, + [23172] = 21366, + [23173] = 21382, + [23174] = 21453, + [23175] = 21366, + [23176] = 21546, + [23177] = 21396, + [23178] = 21370, + [23179] = 21391, + [23180] = 21375, + [23181] = 21396, + [23182] = 21371, + [23183] = 21372, + [23184] = 21412, + [23185] = 21444, + [23186] = 21381, + [23187] = 21380, + [23188] = 21386, + [23189] = 21369, + [23190] = 21380, + [23191] = 21375, + [23192] = 21546, + [23193] = 21367, + [23194] = 21368, + [23195] = 21385, + [23196] = 21389, + [23197] = 21370, + [23198] = 21377, + [23199] = 21377, + [23200] = 21382, + [23201] = 21391, + [23202] = 21366, + [23203] = 21391, + [23204] = 21546, + [23205] = 21370, + [23206] = 21507, + [23207] = 21375, + [23208] = 21375, + [23209] = 21492, + [23210] = 21479, + [23211] = 21370, + [23212] = 21412, + [23213] = 21380, + [23214] = 21473, + [23215] = 21414, + [23216] = 21370, + [23217] = 21371, + [23218] = 21454, + [23219] = 21464, + [23220] = 21380, + [23221] = 21372, + [23222] = 21372, + [23223] = 21372, + [23224] = 21515, + [23225] = 21379, + [23226] = 21372, + [23227] = 21376, + [23228] = 21380, + [23229] = 21381, + [23230] = 21378, + [23231] = 21376, + [23232] = 21375, + [23233] = 21492, + [23234] = 21479, + [23235] = 21375, + [23236] = 21558, + [23237] = 21503, + [23238] = 21620, + [23239] = 21622, + [23240] = 21378, + [23241] = 21507, + [23242] = 21370, + [23243] = 21379, + [23244] = 21372, + [23245] = 21371, + [23246] = 21380, + [23247] = 21492, + [23248] = 23248, + [23249] = 21546, + [23250] = 21385, + [23251] = 21385, + [23252] = 21389, + [23253] = 21479, + [23254] = 21459, + [23255] = 21377, + [23256] = 21391, + [23257] = 21386, + [23258] = 21367, + [23259] = 21440, + [23260] = 21385, + [23261] = 21373, + [23262] = 21453, + [23263] = 21503, + [23264] = 21379, + [23265] = 21368, + [23266] = 21389, + [23267] = 21389, + [23268] = 21503, + [23269] = 21371, + [23270] = 21382, + [23271] = 21366, + [23272] = 21459, + [23273] = 21828, + [23274] = 21546, + [23275] = 21377, + [23276] = 21722, + [23277] = 21864, + [23278] = 21877, + [23279] = 21507, + [23280] = 21371, + [23281] = 21880, + [23282] = 21381, + [23283] = 21385, + [23284] = 21386, + [23285] = 21375, + [23286] = 21444, + [23287] = 21367, + [23288] = 21368, + [23289] = 21377, + [23290] = 21389, + [23291] = 21473, + [23292] = 21440, + [23293] = 21473, + [23294] = 21391, + [23295] = 21381, + [23296] = 21473, + [23297] = 21396, + [23298] = 21379, + [23299] = 21370, + [23300] = 21373, + [23301] = 23301, + [23302] = 21376, + [23303] = 21412, + [23304] = 21372, + [23305] = 21378, + [23306] = 21444, + [23307] = 21453, + [23308] = 21492, + [23309] = 21479, + [23310] = 21503, + [23311] = 23311, + [23312] = 21507, + [23313] = 21369, + [23314] = 21368, + [23315] = 22566, + [23316] = 21372, + [23317] = 21376, + [23318] = 21546, + [23319] = 21459, + [23320] = 22026, + [23321] = 22029, + [23322] = 21380, + [23323] = 21378, + [23324] = 21472, + [23325] = 21473, + [23326] = 21892, + [23327] = 21379, + [23328] = 21370, + [23329] = 21440, + [23330] = 21366, + [23331] = 22045, + [23332] = 21376, + [23333] = 21372, + [23334] = 21379, + [23335] = 21382, + [23336] = 21473, + [23337] = 21366, + [23338] = 21385, + [23339] = 21389, + [23340] = 21382, + [23341] = 21382, + [23342] = 21366, + [23343] = 21391, + [23344] = 21546, + [23345] = 21546, + [23346] = 21377, + [23347] = 22071, + [23348] = 21391, + [23349] = 21369, + [23350] = 21371, + [23351] = 22072, + [23352] = 22077, + [23353] = 22078, + [23354] = 21381, + [23355] = 21371, + [23356] = 21381, + [23357] = 21371, + [23358] = 21381, + [23359] = 21386, + [23360] = 21385, + [23361] = 22090, + [23362] = 22095, + [23363] = 21386, + [23364] = 21367, + [23365] = 21396, + [23366] = 21367, + [23367] = 21386, + [23368] = 21367, + [23369] = 21368, + [23370] = 21376, + [23371] = 21368, + [23372] = 21373, + [23373] = 21440, + [23374] = 21378, + [23375] = 21492, + [23376] = 21479, + [23377] = 21503, + [23378] = 21507, + [23379] = 21368, + [23380] = 21453, + [23381] = 21412, + [23382] = 21444, + [23383] = 21370, + [23384] = 21381, + [23385] = 21369, + [23386] = 21386, + [23387] = 21379, + [23388] = 21375, + [23389] = 21370, + [23390] = 21382, + [23391] = 21381, + [23392] = 21366, + [23393] = 21546, + [23394] = 21389, + [23395] = 21368, + [23396] = 21371, + [23397] = 21381, + [23398] = 21372, + [23399] = 21440, + [23400] = 21386, + [23401] = 21367, + [23402] = 21368, + [23403] = 21378, + [23404] = 21375, + [23405] = 21370, + [23406] = 21376, + [23407] = 21372, + [23408] = 21376, + [23409] = 21377, + [23410] = 21391, + [23411] = 21492, + [23412] = 21385, + [23413] = 21389, + [23414] = 21378, + [23415] = 21377, + [23416] = 21391, + [23417] = 21479, + [23418] = 21379, + [23419] = 21385, + [23420] = 21378, + [23421] = 21382, + [23422] = 21371, + [23423] = 21381, + [23424] = 21396, + [23425] = 21380, + [23426] = 21386, + [23427] = 21503, + [23428] = 21367, + [23429] = 21368, + [23430] = 21376, + [23431] = 21492, + [23432] = 21459, + [23433] = 21378, + [23434] = 21492, + [23435] = 21382, + [23436] = 21479, + [23437] = 21503, + [23438] = 21507, + [23439] = 21376, + [23440] = 21479, + [23441] = 21412, + [23442] = 21370, + [23443] = 21379, + [23444] = 21503, + [23445] = 21372, + [23446] = 21377, + [23447] = 21375, + [23448] = 21382, + [23449] = 21380, + [23450] = 21380, + [23451] = 21366, + [23452] = 21507, + [23453] = 21546, + [23454] = 21444, + [23455] = 21371, + [23456] = 21375, + [23457] = 21381, + [23458] = 21378, + [23459] = 21386, + [23460] = 21367, + [23461] = 21440, + [23462] = 21380, + [23463] = 21368, + [23464] = 21376, + [23465] = 21492, + [23466] = 21385, + [23467] = 21369, + [23468] = 21378, + [23469] = 21379, + [23470] = 21479, + [23471] = 21546, + [23472] = 21391, + [23473] = 21382, + [23474] = 21440, + [23475] = 21376, + [23476] = 21503, + [23477] = 21371, + [23478] = 21440, + [23479] = 21375, + [23480] = 21381, + [23481] = 21373, + [23482] = 21453, + [23483] = 21507, + [23484] = 21507, + [23485] = 21391, + [23486] = 21459, + [23487] = 21386, + [23488] = 21367, + [23489] = 21368, + [23490] = 21366, + [23491] = 21440, + [23492] = 21473, + [23493] = 21373, + [23494] = 21380, + [23495] = 21373, + [23496] = 21492, + [23497] = 21453, + [23498] = 21379, + [23499] = 21396, + [23500] = 21473, + [23501] = 21370, + [23502] = 21389, + [23503] = 21375, + [23504] = 21379, + [23505] = 21453, + [23506] = 21372, + [23507] = 21440, + [23508] = 21373, + [23509] = 21453, + [23510] = 21380, + [23511] = 21546, + [23512] = 21459, + [23513] = 21382, + [23514] = 21370, + [23515] = 21376, + [23516] = 21459, + [23517] = 21366, + [23518] = 21378, + [23519] = 21373, + [23520] = 21473, + [23521] = 21379, + [23522] = 21453, + [23523] = 21546, + [23524] = 21546, + [23525] = 21396, + [23526] = 21380, + [23527] = 21382, + [23528] = 21412, + [23529] = 21444, + [23530] = 21371, + [23531] = 21369, + [23532] = 21381, + [23533] = 21371, + [23534] = 21386, + [23535] = 21367, + [23536] = 21368, + [23537] = 21473, + [23538] = 21371, + [23539] = 21440, + [23540] = 21381, + [23541] = 21473, + [23542] = 21382, + [23543] = 21373, + [23544] = 21440, + [23545] = 21370, + [23546] = 21370, + [23547] = 21367, + [23548] = 22871, + [23549] = 12411, + [23550] = 23045, + [23551] = 21372, + [23552] = 21372, + [23553] = 21396, + [23554] = 21453, + [23555] = 21373, + [23556] = 21386, + [23557] = 21412, + [23558] = 21367, + [23559] = 21453, + [23560] = 21688, + [23561] = 21414, + [23562] = 21376, + [23563] = 21444, + [23564] = 21459, + [23565] = 21368, + [23566] = 21378, + [23567] = 21385, + [23568] = 21389, + [23569] = 21379, + [23570] = 21368, + [23571] = 21379, + [23572] = 21377, + [23573] = 23573, + [23574] = 21391, + [23575] = 21459, + [23576] = 21369, + [23577] = 21717, + [23578] = 21473, + [23579] = 21366, + [23580] = 21382, + [23581] = 21371, + [23582] = 21440, + [23583] = 21454, + [23584] = 21464, + [23585] = 21381, + [23586] = 21459, + [23587] = 21386, + [23588] = 21373, + [23589] = 21367, + [23590] = 21368, + [23591] = 21396, + [23592] = 21453, + [23593] = 23593, + [23594] = 21376, + [23595] = 21378, + [23596] = 21492, + [23597] = 21479, + [23598] = 21503, + [23599] = 21379, + [23600] = 21396, + [23601] = 21546, + [23602] = 21507, + [23603] = 21719, + [23604] = 21370, + [23605] = 21412, + [23606] = 21444, + [23607] = 21386, + [23608] = 21558, + [23609] = 21620, + [23610] = 21369, + [23611] = 21372, + [23612] = 21412, + [23613] = 21622, + [23614] = 21370, + [23615] = 21372, + [23616] = 21440, + [23617] = 21376, + [23618] = 21515, + [23619] = 21385, + [23620] = 21389, + [23621] = 21373, + [23622] = 21377, + [23623] = 21391, + [23624] = 21378, + [23625] = 21379, + [23626] = 21379, + [23627] = 21444, + [23628] = 21396, + [23629] = 21373, + [23630] = 21370, + [23631] = 21459, + [23632] = 21382, + [23633] = 21371, + [23634] = 21382, + [23635] = 21372, + [23636] = 21371, + [23637] = 21366, + [23638] = 21546, + [23639] = 21594, + [23640] = 21371, + [23641] = 21381, + [23642] = 21376, + [23643] = 21473, + [23644] = 21378, + [23645] = 21381, + [23646] = 21385, + [23647] = 21389, + [23648] = 21386, + [23649] = 21377, + [23650] = 21391, + [23651] = 21367, + [23652] = 21368, + [23653] = 21591, + [23654] = 21412, + [23655] = 23655, + [23656] = 21386, + [23657] = 21369, + [23658] = 21444, + [23659] = 21367, + [23660] = 21396, + [23661] = 21376, + [23662] = 22026, + [23663] = 21378, + [23664] = 21492, + [23665] = 21479, + [23666] = 21503, + [23667] = 21507, + [23668] = 21688, + [23669] = 21369, + [23670] = 21370, + [23671] = 21492, + [23672] = 21479, + [23673] = 21503, + [23674] = 21507, + [23675] = 21381, + [23676] = 21379, + [23677] = 21368, + [23678] = 21453, + [23679] = 22871, + [23680] = 21386, + [23681] = 23045, + [23682] = 21372, + [23683] = 21382, + [23684] = 21367, + [23685] = 22045, + [23686] = 21368, + [23687] = 21379, + [23688] = 21366, + [23689] = 21546, + [23690] = 21453, + [23691] = 21396, + [23692] = 21371, + [23693] = 21381, + [23694] = 21382, + [23695] = 21412, + [23696] = 21386, + [23697] = 21367, + [23698] = 21368, + [23699] = 21376, + [23700] = 21379, + [23701] = 21473, + [23702] = 21378, + [23703] = 21378, + [23704] = 21379, + [23705] = 21381, + [23706] = 21459, + [23707] = 21370, + [23708] = 22553, + [23709] = 21382, + [23710] = 21366, + [23711] = 21372, + [23712] = 21366, + [23713] = 21546, + [23714] = 21546, + [23715] = 21371, + [23716] = 21381, + [23717] = 23717, + [23718] = 21492, + [23719] = 21386, + [23720] = 21367, + [23721] = 21385, + [23722] = 21382, + [23723] = 21389, + [23724] = 21479, + [23725] = 21371, + [23726] = 21381, + [23727] = 21375, + [23728] = 21368, + [23729] = 21459, + [23730] = 21380, + [23731] = 21377, + [23732] = 21396, + [23733] = 21391, + [23734] = 21558, + [23735] = 21620, + [23736] = 21386, + [23737] = 23573, + [23738] = 21375, + [23739] = 21367, + [23740] = 21380, + [23741] = 21503, + [23742] = 22871, + [23743] = 21622, + [23744] = 23045, + [23745] = 21371, + [23746] = 21375, + [23747] = 21381, + [23748] = 21368, + [23749] = 21507, + [23750] = 21376, + [23751] = 21412, + [23752] = 21444, + [23753] = 21412, + [23754] = 21370, + [23755] = 21377, + [23756] = 21369, + [23757] = 21370, + [23758] = 21412, + [23759] = 21444, + [23760] = 21386, + [23761] = 21372, + [23762] = 21440, + [23763] = 22604, + [23764] = 21373, + [23765] = 21453, + [23766] = 21558, + [23767] = 21378, + [23768] = 21459, + [23769] = 21380, + [23770] = 21375, + [23771] = 21440, + [23772] = 21376, + [23773] = 21369, + [23774] = 21373, + [23775] = 21440, + [23776] = 21453, + [23777] = 23777, + [23778] = 21372, + [23779] = 21378, + [23780] = 21459, + [23781] = 21379, + [23782] = 21380, + [23783] = 21473, + [23784] = 21382, + [23785] = 21473, + [23786] = 21376, + [23787] = 21371, + [23788] = 21473, + [23789] = 21378, + [23790] = 21492, + [23791] = 23791, + [23792] = 21381, + [23793] = 21492, + [23794] = 21396, + [23795] = 21479, + [23796] = 21386, + [23797] = 21367, + [23798] = 22871, + [23799] = 23045, + [23800] = 21396, + [23801] = 21368, + [23802] = 21412, + [23803] = 21479, + [23804] = 21373, + [23805] = 21412, + [23806] = 21444, + [23807] = 21369, + [23808] = 21503, + [23809] = 21444, + [23810] = 21370, + [23811] = 21370, + [23812] = 21370, + [23813] = 21385, + [23814] = 21369, + [23815] = 21453, + [23816] = 21370, + [23817] = 21389, + [23818] = 21372, + [23819] = 21372, + [23820] = 21382, + [23821] = 21688, + [23822] = 21503, + [23823] = 21385, + [23824] = 21389, + [23825] = 21372, + [23826] = 21473, + [23827] = 21377, + [23828] = 21507, + [23829] = 21367, + [23830] = 21391, + [23831] = 21370, + [23832] = 21376, + [23833] = 21372, + [23834] = 21368, + [23835] = 21377, + [23836] = 21391, + [23837] = 21375, + [23838] = 21391, + [23839] = 21385, + [23840] = 21389, + [23841] = 21378, + [23842] = 21370, + [23843] = 21380, + [23844] = 21377, + [23845] = 21391, + [23846] = 22090, + [23847] = 21379, + [23848] = 21503, + [23849] = 21375, + [23850] = 21507, + [23851] = 21382, + [23852] = 21371, + [23853] = 21381, + [23854] = 21459, + [23855] = 21379, + [23856] = 21372, + [23857] = 22871, + [23858] = 23045, + [23859] = 21386, + [23860] = 21380, + [23861] = 21367, + [23862] = 21376, + [23863] = 21368, + [23864] = 21558, + [23865] = 21372, + [23866] = 21376, + [23867] = 21444, + [23868] = 21378, + [23869] = 21492, + [23870] = 21378, + [23871] = 21479, + [23872] = 21503, + [23873] = 21492, + [23874] = 21507, + [23875] = 21385, + [23876] = 21389, + [23877] = 21479, + [23878] = 21503, + [23879] = 21507, + [23880] = 21368, + [23881] = 21370, + [23882] = 21440, + [23883] = 21507, + [23884] = 21373, + [23885] = 21453, + [23886] = 21374, + [23887] = 21372, + [23888] = 21459, + [23889] = 21377, + [23890] = 21391, + [23891] = 21385, + [23892] = 21382, + [23893] = 22871, + [23894] = 21376, + [23895] = 21396, + [23896] = 21379, + [23897] = 21378, + [23898] = 21382, + [23899] = 21379, + [23900] = 21379, + [23901] = 21382, + [23902] = 21389, + [23903] = 21366, + [23904] = 21440, + [23905] = 21546, + [23906] = 21382, + [23907] = 21473, + [23908] = 21366, + [23909] = 21371, + [23910] = 21381, + [23911] = 21366, + [23912] = 21386, + [23913] = 21546, + [23914] = 21367, + [23915] = 21368, + [23916] = 21546, + [23917] = 21369, + [23918] = 21620, + [23919] = 21828, + [23920] = 22871, + [23921] = 21371, + [23922] = 21375, + [23923] = 21382, + [23924] = 21381, + [23925] = 21371, + [23926] = 21377, + [23927] = 21864, + [23928] = 21381, + [23929] = 21396, + [23930] = 21386, + [23931] = 21373, + [23932] = 21412, + [23933] = 21371, + [23934] = 21444, + [23935] = 21367, + [23936] = 21369, + [23937] = 21381, + [23938] = 21386, + [23939] = 21386, + [23940] = 21367, + [23941] = 21368, + [23942] = 21368, + [23943] = 21453, + [23944] = 21367, + [23945] = 21877, + [23946] = 21368, + [23947] = 22871, + [23948] = 21412, + [23949] = 21507, + [23950] = 21558, + [23951] = 21391, + [23952] = 21880, + [23953] = 21380, + [23954] = 21375, + [23955] = 21620, + [23956] = 21622, + [23957] = 21473, + [23958] = 21370, + [23959] = 21379, + [23960] = 21459, + [23961] = 21372, + [23962] = 23962, + [23963] = 21440, + [23964] = 21370, + [23965] = 21372, + [23966] = 23966, + [23967] = 21385, + [23968] = 21389, + [23969] = 21375, + [23970] = 21377, + [23971] = 22095, + [23972] = 21391, + [23973] = 21380, + [23974] = 21373, + [23975] = 21473, + [23976] = 21372, + [23977] = 21385, + [23978] = 21382, + [23979] = 23979, + [23980] = 21376, + [23981] = 21379, + [23982] = 21366, + [23983] = 21378, + [23984] = 21379, + [23985] = 21380, + [23986] = 21376, + [23987] = 23987, + [23988] = 21389, + [23989] = 21396, + [23990] = 21379, + [23991] = 21382, + [23992] = 21391, + [23993] = 21371, + [23994] = 21381, + [23995] = 21376, + [23996] = 21473, + [23997] = 21386, + [23998] = 21473, + [23999] = 21378, + [24000] = 21367, + [24001] = 21368, + [24002] = 21622, + [24003] = 21440, + [24004] = 21396, + [24005] = 21373, + [24006] = 21492, + [24007] = 21479, + [24008] = 21503, + [24009] = 21507, + [24010] = 21376, + [24011] = 21453, + [24012] = 21546, + [24013] = 21378, + [24014] = 22045, + [24015] = 21492, + [24016] = 21379, + [24017] = 21375, + [24018] = 21370, + [24019] = 21382, + [24020] = 21366, + [24021] = 21546, + [24022] = 21366, + [24023] = 21459, + [24024] = 21372, + [24025] = 21371, + [24026] = 21479, + [24027] = 21381, + [24028] = 21503, + [24029] = 21378, + [24030] = 21380, + [24031] = 24031, + [24032] = 21386, + [24033] = 21367, + [24034] = 21376, + [24035] = 21368, + [24036] = 21473, + [24037] = 21376, + [24038] = 21371, + [24039] = 21373, + [24040] = 21378, + [24041] = 24041, + [24042] = 21440, + [24043] = 21379, + [24044] = 21507, + [24045] = 21396, + [24046] = 21381, + [24047] = 21382, + [24048] = 21371, + [24049] = 21381, + [24050] = 21412, + [24051] = 24051, + [24052] = 21378, + [24053] = 21444, + [24054] = 21373, + [24055] = 21386, + [24056] = 21369, + [24057] = 21367, + [24058] = 21453, + [24059] = 21368, + [24060] = 21375, + [24061] = 21377, + [24062] = 21382, + [24063] = 21380, + [24064] = 21370, + [24065] = 21396, + [24066] = 21492, + [24067] = 21444, + [24068] = 21372, + [24069] = 21440, + [24070] = 21412, + [24071] = 21379, + [24072] = 21373, + [24073] = 21459, + [24074] = 21453, + [24075] = 21366, + [24076] = 21479, + [24077] = 21370, + [24078] = 21385, + [24079] = 21412, + [24080] = 21389, + [24081] = 21459, + [24082] = 21377, + [24083] = 21391, + [24084] = 21372, + [24085] = 21391, + [24086] = 21412, + [24087] = 21444, + [24088] = 21503, + [24089] = 21376, + [24090] = 21386, + [24091] = 21378, + [24092] = 21507, + [24093] = 21440, + [24094] = 21379, + [24095] = 21382, + [24096] = 21376, + [24097] = 21473, + [24098] = 21369, + [24099] = 21378, + [24100] = 21492, + [24101] = 21479, + [24102] = 21382, + [24103] = 21375, + [24104] = 21371, + [24105] = 21381, + [24106] = 21396, + [24107] = 21366, + [24108] = 21380, + [24109] = 21503, + [24110] = 21386, + [24111] = 21507, + [24112] = 21367, + [24113] = 21412, + [24114] = 21376, + [24115] = 21368, + [24116] = 21376, + [24117] = 21379, + [24118] = 21444, + [24119] = 24119, + [24120] = 21473, + [24121] = 21546, + [24122] = 21382, + [24123] = 21379, + [24124] = 21366, + [24125] = 21546, + [24126] = 21369, + [24127] = 21378, + [24128] = 21371, + [24129] = 21371, + [24130] = 21381, + [24131] = 21381, + [24132] = 21370, + [24133] = 21367, + [24134] = 21440, + [24135] = 21386, + [24136] = 21372, + [24137] = 21373, + [24138] = 21453, + [24139] = 21367, + [24140] = 21444, + [24141] = 21368, + [24142] = 21459, + [24143] = 21373, + [24144] = 21453, + [24145] = 21386, + [24146] = 21492, + [24147] = 21479, + [24148] = 21368, + [24149] = 21503, + [24150] = 21376, + [24151] = 21507, + [24152] = 21620, + [24153] = 21378, + [24154] = 21473, + [24155] = 21379, + [24156] = 21367, + [24157] = 21440, + [24158] = 21382, + [24159] = 21371, + [24160] = 21396, + [24161] = 21381, + [24162] = 21368, + [24163] = 21370, + [24164] = 21386, + [24165] = 21367, + [24166] = 21368, + [24167] = 21396, + [24168] = 21378, + [24169] = 21492, + [24170] = 21412, + [24171] = 21444, + [24172] = 21412, + [24173] = 21372, + [24174] = 21620, + [24175] = 21369, + [24176] = 21369, + [24177] = 21369, + [24178] = 21382, + [24179] = 21479, + [24180] = 21366, + [24181] = 21370, + [24182] = 21444, + [24183] = 21444, + [24184] = 21459, + [24185] = 21372, + [24186] = 21546, + [24187] = 21558, + [24188] = 21375, + [24189] = 21620, + [24190] = 21369, + [24191] = 21380, + [24192] = 21622, + [24193] = 21385, + [24194] = 21370, + [24195] = 21370, + [24196] = 21372, + [24197] = 21546, + [24198] = 21389, + [24199] = 21396, + [24200] = 21377, + [24201] = 21391, + [24202] = 22026, + [24203] = 21385, + [24204] = 21389, + [24205] = 21371, + [24206] = 21377, + [24207] = 21391, + [24208] = 21396, + [24209] = 22029, + [24210] = 21376, + [24211] = 21372, + [24212] = 21378, + [24213] = 21440, + [24214] = 21379, + [24215] = 21385, + [24216] = 21373, + [24217] = 21381, + [24218] = 21503, + [24219] = 21382, + [24220] = 21376, + [24221] = 21371, + [24222] = 21378, + [24223] = 21472, + [24224] = 21492, + [24225] = 21479, + [24226] = 21503, + [24227] = 21507, + [24228] = 8832, + [24229] = 21381, + [24230] = 21386, + [24231] = 21503, + [24232] = 22045, + [24233] = 21379, + [24234] = 21386, + [24235] = 21367, + [24236] = 21382, + [24237] = 21366, + [24238] = 21546, + [24239] = 21367, + [24240] = 21371, + [24241] = 21381, + [24242] = 21368, + [24243] = 21473, + [24244] = 21386, + [24245] = 21367, + [24246] = 21368, + [24247] = 21368, + [24248] = 21385, + [24249] = 21376, + [24250] = 21892, + [24251] = 21440, + [24252] = 21453, + [24253] = 21389, + [24254] = 21378, + [24255] = 21370, + [24256] = 21369, + [24257] = 21372, + [24258] = 21492, + [24259] = 21373, + [24260] = 21479, + [24261] = 21440, + [24262] = 21503, + [24263] = 21507, + [24264] = 21377, + [24265] = 21373, + [24266] = 21396, + [24267] = 21391, + [24268] = 21379, + [24269] = 21376, + [24270] = 21382, + [24271] = 21366, + [24272] = 21546, + [24273] = 21453, + [24274] = 24274, + [24275] = 21492, + [24276] = 24276, + [24277] = 21378, + [24278] = 21379, + [24279] = 21459, + [24280] = 21371, + [24281] = 21381, + [24282] = 21459, + [24283] = 21453, + [24284] = 21386, + [24285] = 21367, + [24286] = 21459, + [24287] = 21382, + [24288] = 21368, + [24289] = 21375, + [24290] = 21371, + [24291] = 21375, + [24292] = 21381, + [24293] = 21380, + [24294] = 21473, + [24295] = 21389, + [24296] = 21396, + [24297] = 21386, + [24298] = 21371, + [24299] = 21386, + [24300] = 21367, + [24301] = 21396, + [24302] = 21473, + [24303] = 21368, + [24304] = 21412, + [24305] = 21444, + [24306] = 21376, + [24307] = 21412, + [24308] = 21386, + [24309] = 24309, + [24310] = 21378, + [24311] = 21370, + [24312] = 21369, + [24313] = 21389, + [24314] = 21503, + [24315] = 21440, + [24316] = 21370, + [24317] = 21373, + [24318] = 21453, + [24319] = 21444, + [24320] = 21371, + [24321] = 21459, + [24322] = 21372, + [24323] = 21459, + [24324] = 21381, + [24325] = 23987, + [24326] = 21370, + [24327] = 21376, + [24328] = 23791, + [24329] = 21367, + [24330] = 24330, + [24331] = 21473, + [24332] = 21378, + [24333] = 21473, + [24334] = 21380, + [24335] = 21370, + [24336] = 21379, + [24337] = 21372, + [24338] = 21375, + [24339] = 21367, + [24340] = 21382, + [24341] = 21396, + [24342] = 21372, + [24343] = 21371, + [24344] = 21412, + [24345] = 21444, + [24346] = 21381, + [24347] = 21369, + [24348] = 21492, + [24349] = 21385, + [24350] = 21386, + [24351] = 21367, + [24352] = 21368, + [24353] = 21389, + [24354] = 21479, + [24355] = 21375, + [24356] = 21558, + [24357] = 21620, + [24358] = 21622, + [24359] = 21370, + [24360] = 21370, + [24361] = 21380, + [24362] = 21372, + [24363] = 21380, + [24364] = 21377, + [24365] = 21391, + [24366] = 21385, + [24367] = 21389, + [24368] = 21503, + [24369] = 21377, + [24370] = 21391, + [24371] = 21507, + [24372] = 21376, + [24373] = 21376, + [24374] = 21370, + [24375] = 21372, + [24376] = 21378, + [24377] = 22045, + [24378] = 21372, + [24379] = 21507, + [24380] = 22124, + [24381] = 23010, + [24382] = 21412, + [24383] = 21378, + [24384] = 21376, + [24385] = 21376, + [24386] = 21492, + [24387] = 21378, + [24388] = 21379, + [24389] = 21385, + [24390] = 21479, + [24391] = 21503, + [24392] = 21375, + [24393] = 21369, + [24394] = 21378, + [24395] = 21382, + [24396] = 21389, + [24397] = 21371, + [24398] = 21381, + [24399] = 21376, + [24400] = 21380, + [24401] = 21379, + [24402] = 21440, + [24403] = 21386, + [24404] = 21373, + [24405] = 21453, + [24406] = 21367, + [24407] = 21368, + [24408] = 21459, + [24409] = 21378, + [24410] = 21492, + [24411] = 21492, + [24412] = 21479, + [24413] = 21503, + [24414] = 21507, + [24415] = 21444, + [24416] = 21479, + [24417] = 22124, + [24418] = 21503, + [24419] = 21507, + [24420] = 21507, + [24421] = 22045, + [24422] = 21396, + [24423] = 21375, + [24424] = 21473, + [24425] = 21377, + [24426] = 21412, + [24427] = 21391, + [24428] = 21382, + [24429] = 21366, + [24430] = 21396, + [24431] = 21370, + [24432] = 21444, + [24433] = 21412, + [24434] = 21444, + [24435] = 21379, + [24436] = 21369, + [24437] = 21372, + [24438] = 21379, + [24439] = 21473, + [24440] = 21382, + [24441] = 21366, + [24442] = 21546, + [24443] = 21368, + [24444] = 22124, + [24445] = 21371, + [24446] = 21381, + [24447] = 21444, + [24448] = 21376, + [24449] = 21379, + [24450] = 21382, + [24451] = 21378, + [24452] = 21370, + [24453] = 21379, + [24454] = 21372, + [24455] = 21546, + [24456] = 21546, + [24457] = 24457, + [24458] = 21385, + [24459] = 21389, + [24460] = 22566, + [24461] = 21377, + [24462] = 21391, + [24463] = 21382, + [24464] = 21386, + [24465] = 21367, + [24466] = 21371, + [24467] = 21368, + [24468] = 21381, + [24469] = 21371, + [24470] = 21381, + [24471] = 22124, + [24472] = 21386, + [24473] = 21386, + [24474] = 21367, + [24475] = 21682, + [24476] = 21386, + [24477] = 21368, + [24478] = 21367, + [24479] = 21412, + [24480] = 21379, + [24481] = 21368, + [24482] = 21376, + [24483] = 21371, + [24484] = 21378, + [24485] = 21492, + [24486] = 21479, + [24487] = 21503, + [24488] = 21507, + [24489] = 21381, + [24490] = 21440, + [24491] = 19059, + [24492] = 21444, + [24493] = 21370, + [24494] = 21379, + [24495] = 21440, + [24496] = 21382, + [24497] = 21382, + [24498] = 21366, + [24499] = 22124, + [24500] = 21370, + [24501] = 21382, + [24502] = 21366, + [24503] = 21366, + [24504] = 21546, + [24505] = 21373, + [24506] = 21371, + [24507] = 21381, + [24508] = 21453, + [24509] = 21386, + [24510] = 21367, + [24511] = 21396, + [24512] = 21368, + [24513] = 21369, + [24514] = 21372, + [24515] = 21373, + [24516] = 21459, + [24517] = 21453, + [24518] = 21492, + [24519] = 21546, + [24520] = 21376, + [24521] = 21546, + [24522] = 21369, + [24523] = 21378, + [24524] = 21379, + [24525] = 22071, + [24526] = 21369, + [24527] = 21371, + [24528] = 21378, + [24529] = 21382, + [24530] = 21371, + [24531] = 22072, + [24532] = 21558, + [24533] = 21473, + [24534] = 22077, + [24535] = 21381, + [24536] = 21375, + [24537] = 21620, + [24538] = 21376, + [24539] = 21381, + [24540] = 21375, + [24541] = 21380, + [24542] = 21380, + [24543] = 21386, + [24544] = 21375, + [24545] = 21367, + [24546] = 21368, + [24547] = 22078, + [24548] = 21459, + [24549] = 21370, + [24550] = 21396, + [24551] = 21380, + [24552] = 21396, + [24553] = 21622, + [24554] = 21372, + [24555] = 21453, + [24556] = 21386, + [24557] = 21367, + [24558] = 21479, + [24559] = 21378, + [24560] = 21370, + [24561] = 21386, + [24562] = 21376, + [24563] = 21440, + [24564] = 21367, + [24565] = 21378, + [24566] = 21373, + [24567] = 21492, + [24568] = 21503, + [24569] = 21507, + [24570] = 21453, + [24571] = 21479, + [24572] = 21379, + [24573] = 24457, + [24574] = 21412, + [24575] = 21368, + [24576] = 21546, + [24577] = 21382, + [24578] = 21372, + [24579] = 21371, + [24580] = 21459, + [24581] = 22045, + [24582] = 21503, + [24583] = 21444, + [24584] = 21381, + [24585] = 21368, + [24586] = 21386, + [24587] = 21440, + [24588] = 21367, + [24589] = 21473, + [24590] = 21440, + [24591] = 21368, + [24592] = 21369, + [24593] = 21396, + [24594] = 21370, + [24595] = 21473, + [24596] = 21396, + [24597] = 21373, + [24598] = 21453, + [24599] = 21373, + [24600] = 21372, + [24601] = 21459, + [24602] = 21453, + [24603] = 21507, + [24604] = 21367, + [24605] = 24605, + [24606] = 21459, + [24607] = 21440, + [24608] = 21376, + [24609] = 21412, + [24610] = 23045, + [24611] = 21378, + [24612] = 21412, + [24613] = 21473, + [24614] = 21396, + [24615] = 21968, + [24616] = 23777, + [24617] = 21444, + [24618] = 21459, + [24619] = 21379, + [24620] = 21369, + [24621] = 21473, + [24622] = 21385, + [24623] = 21382, + [24624] = 21371, + [24625] = 21381, + [24626] = 21385, + [24627] = 21370, + [24628] = 21372, + [24629] = 21372, + [24630] = 21386, + [24631] = 21473, + [24632] = 21367, + [24633] = 21440, + [24634] = 21368, + [24635] = 21385, + [24636] = 21389, + [24637] = 21987, + [24638] = 21377, + [24639] = 21391, + [24640] = 22066, + [24641] = 21412, + [24642] = 21370, + [24643] = 21492, + [24644] = 21372, + [24645] = 21370, + [24646] = 21412, + [24647] = 21444, + [24648] = 21396, + [24649] = 21372, + [24650] = 21376, + [24651] = 21376, + [24652] = 21389, + [24653] = 21378, + [24654] = 21492, + [24655] = 21479, + [24656] = 21503, + [24657] = 21507, + [24658] = 21389, + [24659] = 21372, + [24660] = 21378, + [24661] = 21379, + [24662] = 24662, + [24663] = 21379, + [24664] = 21375, + [24665] = 21369, + [24666] = 21396, + [24667] = 21382, + [24668] = 21371, + [24669] = 21381, + [24670] = 21382, + [24671] = 21366, + [24672] = 21546, + [24673] = 21396, + [24674] = 21371, + [24675] = 21381, + [24676] = 21385, + [24677] = 21386, + [24678] = 21367, + [24679] = 21368, + [24680] = 21412, + [24681] = 21389, + [24682] = 21444, + [24683] = 21386, + [24684] = 21367, + [24685] = 21412, + [24686] = 21444, + [24687] = 21369, + [24688] = 21368, + [24689] = 21370, + [24690] = 21377, + [24691] = 21391, + [24692] = 21473, + [24693] = 21370, + [24694] = 21444, + [24695] = 21372, + [24696] = 21367, + [24697] = 21371, + [24698] = 21372, + [24699] = 21370, + [24700] = 21369, + [24701] = 21377, + [24702] = 21391, + [24703] = 21370, + [24704] = 21370, + [24705] = 21412, + [24706] = 21372, + [24707] = 21380, + [24708] = 21379, + [24709] = 21381, + [24710] = 21376, + [24711] = 21372, + [24712] = 21378, + [24713] = 21379, + [24714] = 21444, + [24715] = 22001, + [24716] = 21385, + [24717] = 21389, + [24718] = 21444, + [24719] = 21368, + [24720] = 21385, + [24721] = 21594, + [24722] = 21377, + [24723] = 21391, + [24724] = 21382, + [24725] = 21375, + [24726] = 21594, + [24727] = 22090, + [24728] = 21371, + [24729] = 21381, + [24730] = 21386, + [24731] = 21722, + [24732] = 21386, + [24733] = 21722, + [24734] = 21380, + [24735] = 22095, + [24736] = 21376, + [24737] = 21382, + [24738] = 21366, + [24739] = 21367, + [24740] = 4212, + [24741] = 24741, + [24742] = 13302, + [24743] = 13099, + [24744] = 13091, + [24745] = 24745, + [24746] = 24746, + [24747] = 13096, + [24748] = 13296, + [24749] = 24749, + [24750] = 24750, + [24751] = 5734, + [24752] = 13293, + [24753] = 13301, + [24754] = 13194, + [24755] = 13291, + [24756] = 24756, + [24757] = 24757, + [24758] = 13153, + [24759] = 13155, + [24760] = 24760, + [24761] = 13172, + [24762] = 14344, + [24763] = 13195, + [24764] = 24764, + [24765] = 13296, + [24766] = 13292, + [24767] = 13324, + [24768] = 13303, + [24769] = 24769, + [24770] = 13152, + [24771] = 13292, + [24772] = 4242, + [24773] = 13265, + [24774] = 24774, + [24775] = 13172, + [24776] = 13302, + [24777] = 24777, + [24778] = 13194, + [24779] = 13178, + [24780] = 13195, + [24781] = 13197, + [24782] = 24782, + [24783] = 13179, + [24784] = 13089, + [24785] = 13089, + [24786] = 13180, + [24787] = 8467, + [24788] = 13182, + [24789] = 24789, + [24790] = 13153, + [24791] = 13303, + [24792] = 5658, + [24793] = 13306, + [24794] = 24769, + [24795] = 24757, + [24796] = 24796, + [24797] = 13091, + [24798] = 13259, + [24799] = 24769, + [24800] = 24800, + [24801] = 24801, + [24802] = 13324, + [24803] = 8832, + [24804] = 13178, + [24805] = 13179, + [24806] = 13294, + [24807] = 24807, + [24808] = 20949, + [24809] = 24809, + [24810] = 13180, + [24811] = 14342, + [24812] = 13182, + [24813] = 24769, + [24814] = 13291, + [24815] = 13293, + [24816] = 13294, + [24817] = 13096, + [24818] = 13197, + [24819] = 24819, + [24820] = 13099, + [24821] = 13216, + [24822] = 13259, + [24823] = 13265, + [24824] = 13155, + [24825] = 4236, + [24826] = 4266, + [24827] = 24827, + [24828] = 24828, + [24829] = 24769, + [24830] = 24830, + [24831] = 24831, + [24832] = 13216, + [24833] = 24833, + [24834] = 14319, + [24835] = 24769, + [24836] = 13158, + [24837] = 24837, + [24838] = 13306, + [24839] = 24839, + [24840] = 13152, + [24841] = 24757, + [24842] = 24757, + [24843] = 24843, + [24844] = 4236, + [24845] = 13301, + [24846] = 24846, + [24847] = 13158, + [24848] = 24848, + [24849] = 24749, + [24850] = 24750, + [24851] = 24851, + [24852] = 24852, + [24853] = 24853, + [24854] = 24854, + [24855] = 24855, + [24856] = 24856, + [24857] = 24857, + [24858] = 24858, + [24859] = 24859, + [24860] = 24860, + [24861] = 24859, + [24862] = 24862, + [24863] = 24855, + [24864] = 24864, + [24865] = 24862, + [24866] = 24856, + [24867] = 24867, + [24868] = 24868, + [24869] = 24856, + [24870] = 24870, + [24871] = 24871, + [24872] = 24862, + [24873] = 24873, + [24874] = 24874, + [24875] = 24871, + [24876] = 24857, + [24877] = 24877, + [24878] = 24859, + [24879] = 24879, + [24880] = 24880, + [24881] = 24881, + [24882] = 24882, + [24883] = 24883, + [24884] = 24884, + [24885] = 24885, + [24886] = 24862, + [24887] = 24859, + [24888] = 24888, + [24889] = 24880, + [24890] = 24884, + [24891] = 24891, + [24892] = 24892, + [24893] = 24857, + [24894] = 24894, + [24895] = 24880, + [24896] = 24896, + [24897] = 24855, + [24898] = 24873, + [24899] = 24857, + [24900] = 24884, + [24901] = 24901, + [24902] = 24901, + [24903] = 24891, + [24904] = 24857, + [24905] = 24860, + [24906] = 24871, + [24907] = 24907, + [24908] = 24859, + [24909] = 24862, + [24910] = 24857, + [24911] = 24911, + [24912] = 24860, + [24913] = 24881, + [24914] = 24859, + [24915] = 24915, + [24916] = 24882, + [24917] = 24881, + [24918] = 24918, + [24919] = 24882, + [24920] = 24855, + [24921] = 24921, + [24922] = 24922, + [24923] = 24870, + [24924] = 24924, + [24925] = 24880, + [24926] = 24880, + [24927] = 24927, + [24928] = 24891, + [24929] = 24873, + [24930] = 24894, + [24931] = 24927, + [24932] = 24932, + [24933] = 24922, + [24934] = 24934, + [24935] = 24891, + [24936] = 24936, + [24937] = 24870, + [24938] = 24881, + [24939] = 24894, + [24940] = 24871, + [24941] = 24859, + [24942] = 24881, + [24943] = 24943, + [24944] = 24855, + [24945] = 24881, + [24946] = 24857, + [24947] = 24855, + [24948] = 24873, + [24949] = 24949, + [24950] = 24859, + [24951] = 24921, + [24952] = 24952, + [24953] = 24870, + [24954] = 24954, + [24955] = 24859, + [24956] = 24956, + [24957] = 24884, + [24958] = 24882, + [24959] = 24880, + [24960] = 24960, + [24961] = 24871, + [24962] = 24891, + [24963] = 24963, + [24964] = 24921, + [24965] = 24965, + [24966] = 24894, + [24967] = 24855, + [24968] = 24862, + [24969] = 24856, + [24970] = 24871, + [24971] = 24881, + [24972] = 24882, + [24973] = 24973, + [24974] = 24922, + [24975] = 24859, + [24976] = 24901, + [24977] = 24880, + [24978] = 24978, + [24979] = 24855, + [24980] = 24873, + [24981] = 24981, + [24982] = 24894, + [24983] = 24871, + [24984] = 24885, + [24985] = 24856, + [24986] = 24943, + [24987] = 24860, + [24988] = 24871, + [24989] = 24894, + [24990] = 24862, + [24991] = 24855, + [24992] = 24877, + [24993] = 24856, + [24994] = 24949, + [24995] = 24884, + [24996] = 24871, + [24997] = 24880, + [24998] = 24873, + [24999] = 24921, + [25000] = 25000, + [25001] = 25001, + [25002] = 24901, + [25003] = 24871, + [25004] = 24862, + [25005] = 24860, + [25006] = 24922, + [25007] = 24936, + [25008] = 24901, + [25009] = 24857, + [25010] = 24855, + [25011] = 24859, + [25012] = 24881, + [25013] = 24856, + [25014] = 24882, + [25015] = 25015, + [25016] = 24871, + [25017] = 24873, + [25018] = 25018, + [25019] = 24871, + [25020] = 24855, + [25021] = 24921, + [25022] = 25022, + [25023] = 24857, + [25024] = 24859, + [25025] = 24881, + [25026] = 24873, + [25027] = 24882, + [25028] = 24891, + [25029] = 24855, + [25030] = 24873, + [25031] = 24901, + [25032] = 24922, + [25033] = 24881, + [25034] = 24888, + [25035] = 24894, + [25036] = 25036, + [25037] = 24921, + [25038] = 24922, + [25039] = 24857, + [25040] = 24857, + [25041] = 24880, + [25042] = 24857, + [25043] = 25043, + [25044] = 25044, + [25045] = 24870, + [25046] = 24859, + [25047] = 24882, + [25048] = 24884, + [25049] = 24881, + [25050] = 25050, + [25051] = 24873, + [25052] = 24870, + [25053] = 24882, + [25054] = 24855, + [25055] = 24873, + [25056] = 25044, + [25057] = 24860, + [25058] = 25058, + [25059] = 24857, + [25060] = 24862, + [25061] = 24882, + [25062] = 24882, +}; + +static TSCharacterRange sym__symbolic_ident_character_set_1[] = { + {'!', '!'}, {'#', '&'}, {'*', '+'}, {'-', '-'}, {'/', '/'}, {':', ':'}, {'<', '@'}, {'\\', '\\'}, + {'^', '^'}, {'`', '`'}, {'|', '|'}, {'~', '~'}, +}; + +static TSCharacterRange sym__hol_symbolic_character_set_2[] = { + {'!', '!'}, {'#', '#'}, {'%', '&'}, {'*', '+'}, {'-', '-'}, {'/', '/'}, {':', ':'}, {'<', '@'}, + {'\\', '\\'}, {'|', '|'}, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '!', 1069, + '"', 31, + '#', 819, + '$', 1127, + '\'', 787, + '(', 795, + ')', 797, + '*', 909, + '+', 1131, + ',', 796, + '-', 1077, + '.', 799, + '/', 298, + '0', 898, + ':', 812, + ';', 824, + '<', 1119, + '=', 807, + '>', 1117, + '?', 1066, + '@', 1071, + 'D', 312, + 'E', 422, + 'F', 1148, + 'H', 254, + 'I', 274, + 'L', 268, + 'N', 276, + 'O', 272, + 'P', 261, + 'Q', 262, + 'R', 286, + 'T', 1144, + '[', 821, + '\\', 1074, + ']', 822, + '^', 932, + '_', 903, + '`', 940, + 'a', 325, + 'c', 315, + 'd', 324, + 'e', 415, + 'f', 423, + 'h', 319, + 'i', 370, + 'l', 362, + 'n', 450, + 'o', 1134, + 'r', 313, + 's', 385, + 't', 381, + 'v', 314, + 'w', 382, + '{', 804, + '|', 860, + '}', 805, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x2018, 938, + 0x2019, 939, + 0x201c, 934, + 0x201d, 935, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(0); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(800); + END_STATE(); + case 1: + if (lookahead == '\n') ADVANCE(300); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(35); + if (lookahead != 0) ADVANCE(31); + END_STATE(); + case 2: + if (lookahead == '\n') ADVANCE(32); + if (lookahead == '"') ADVANCE(580); + if (lookahead == '\\') ADVANCE(39); + if (lookahead != 0) ADVANCE(31); + END_STATE(); + case 3: + if (lookahead == '\n') ADVANCE(34); + if (lookahead == '"') ADVANCE(582); + if (lookahead == '\\') ADVANCE(40); + if (lookahead != 0) ADVANCE(33); + END_STATE(); + case 4: + if (lookahead == '\n') ADVANCE(301); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(37); + if (lookahead != 0) ADVANCE(33); + END_STATE(); + case 5: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + ')', 797, + '+', 1132, + ',', 796, + '-', 1079, + '/', 1050, + ':', 813, + ';', 824, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + ']', 822, + 'c', 1006, + 'i', 1013, + 'o', 1136, + 's', 1030, + '{', 804, + '|', 861, + '}', 805, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x201d, 935, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(5); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 6: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + ')', 797, + '+', 1132, + ',', 796, + '-', 1079, + '/', 1050, + ':', 813, + ';', 824, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + ']', 822, + 'c', 1006, + 'i', 1013, + 'o', 1136, + 's', 1030, + '{', 804, + '}', 805, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x201d, 935, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + '|', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(6); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 7: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + ')', 797, + '+', 1132, + ',', 796, + '-', 1078, + '/', 1050, + ':', 813, + ';', 824, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + ']', 822, + 'c', 1006, + 'i', 1013, + 'l', 1018, + 'o', 1136, + 's', 1030, + '{', 804, + '|', 861, + '}', 805, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x201d, 935, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(7); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 8: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + ')', 797, + '+', 1132, + ',', 796, + '-', 1078, + '/', 1050, + ':', 813, + ';', 824, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + ']', 822, + 'c', 1006, + 'i', 1013, + 'l', 1018, + 'o', 1136, + 's', 1030, + '{', 804, + '}', 805, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x201d, 935, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + '|', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(8); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 9: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1079, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'E', 1025, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1145, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'o', 1136, + 's', 1030, + '{', 804, + '|', 861, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(9); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 10: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1079, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'E', 1025, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1145, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'o', 1136, + 's', 1030, + '{', 804, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + '|', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(10); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 11: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1079, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'e', 1021, + 'i', 1013, + 'o', 1136, + 's', 1030, + '{', 804, + '|', 861, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(11); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 12: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1079, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'e', 1021, + 'i', 1013, + 'o', 1136, + 's', 1030, + '{', 804, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + '|', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(12); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 13: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1079, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'o', 1136, + 's', 1030, + 't', 1016, + '{', 804, + '|', 861, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(13); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 14: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1079, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'o', 1136, + 's', 1030, + 't', 1016, + '{', 804, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + '|', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(14); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 15: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1079, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'o', 1135, + 's', 1030, + '{', 804, + '|', 861, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(15); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 16: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1079, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'o', 1135, + 's', 1030, + '{', 804, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + '|', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 17: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1079, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 968, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'o', 1136, + 's', 1030, + '{', 804, + '|', 861, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 18: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1079, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 968, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'o', 1136, + 's', 1030, + '{', 804, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + '|', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(18); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 19: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1078, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'E', 1025, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1145, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'l', 1018, + 'o', 1136, + 's', 1030, + '{', 804, + '|', 861, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(19); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 20: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1078, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'E', 1025, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1145, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'l', 1018, + 'o', 1136, + 's', 1030, + '{', 804, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + '|', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(20); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 21: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1078, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'e', 1021, + 'i', 1013, + 'l', 1018, + 'o', 1136, + 's', 1030, + '{', 804, + '|', 861, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(21); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 22: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1078, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'e', 1021, + 'i', 1013, + 'l', 1018, + 'o', 1136, + 's', 1030, + '{', 804, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + '|', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 23: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1078, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'l', 1018, + 'o', 1136, + 's', 1030, + 't', 1016, + '{', 804, + '|', 861, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 24: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1078, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'l', 1018, + 'o', 1136, + 's', 1030, + 't', 1016, + '{', 804, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + '|', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 25: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1078, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'l', 1018, + 'o', 1135, + 's', 1030, + '{', 804, + '|', 861, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 26: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1078, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 969, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'l', 1018, + 'o', 1135, + 's', 1030, + '{', 804, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + '|', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 27: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1078, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 968, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'l', 1018, + 'o', 1136, + 's', 1030, + '{', 804, + '|', 861, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 28: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1128, + '(', 795, + '+', 1132, + '-', 1078, + '/', 1050, + ':', 813, + '<', 1120, + '=', 808, + '>', 1118, + '?', 1067, + '@', 1072, + 'F', 1149, + 'H', 963, + 'I', 981, + 'L', 975, + 'N', 983, + 'O', 979, + 'P', 968, + 'R', 993, + 'T', 1146, + '[', 821, + '\\', 1075, + 'c', 1006, + 'i', 1013, + 'l', 1018, + 'o', 1136, + 's', 1030, + '{', 804, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2200, 1068, + 0x2203, 1065, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + '%', 1051, + '&', 1051, + '*', 1051, + '|', 1051, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(28); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 29: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1045, + '(', 795, + ')', 797, + '-', 1079, + '?', 1067, + '@', 1072, + 'F', 1149, + 'L', 975, + 'O', 979, + 'T', 1146, + '[', 821, + '\\', 1076, + ']', 822, + 'c', 1006, + 'i', 1013, + 's', 1030, + '{', 804, + '}', 805, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x2200, 1068, + 0x2203, 1065, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(29); + if (lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '/' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '|') ADVANCE(1051); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 30: + ADVANCE_MAP( + '!', 1070, + '"', 36, + '#', 1044, + '$', 1045, + '(', 795, + '-', 1079, + ':', 816, + '?', 1067, + '@', 1072, + 'F', 1149, + 'L', 975, + 'O', 979, + 'T', 1146, + '[', 821, + '\\', 1076, + 'c', 1006, + 'i', 1013, + 's', 1030, + '{', 804, + '~', 1081, + 0xac, 1080, + 0x3bb, 1073, + 0x2200, 1068, + 0x2203, 1065, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(30); + if (lookahead == '%' || + lookahead == '&' || + lookahead == '*' || + lookahead == '+' || + lookahead == '/' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '|') ADVANCE(1051); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 31: + if (lookahead == '"') ADVANCE(579); + if (lookahead == '\\') ADVANCE(1); + if (lookahead != 0) ADVANCE(31); + END_STATE(); + case 32: + if (lookahead == '"') ADVANCE(579); + if (lookahead == '\\') ADVANCE(524); + if (lookahead != 0) ADVANCE(32); + END_STATE(); + case 33: + if (lookahead == '"') ADVANCE(581); + if (lookahead == '\\') ADVANCE(4); + if (lookahead != 0) ADVANCE(33); + END_STATE(); + case 34: + if (lookahead == '"') ADVANCE(581); + if (lookahead == '\\') ADVANCE(525); + if (lookahead != 0) ADVANCE(34); + END_STATE(); + case 35: + if (lookahead == '"') ADVANCE(1152); + if (lookahead == '\\') ADVANCE(2); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(35); + if (lookahead != 0) ADVANCE(36); + END_STATE(); + case 36: + if (lookahead == '"') ADVANCE(1152); + if (lookahead == '\\') ADVANCE(531); + if (lookahead != 0) ADVANCE(36); + END_STATE(); + case 37: + if (lookahead == '"') ADVANCE(1154); + if (lookahead == '\\') ADVANCE(3); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(37); + if (lookahead != 0) ADVANCE(38); + END_STATE(); + case 38: + if (lookahead == '"') ADVANCE(1154); + if (lookahead == '\\') ADVANCE(532); + if (lookahead != 0) ADVANCE(38); + END_STATE(); + case 39: + if (lookahead == '"') ADVANCE(1153); + if (lookahead == '\\') ADVANCE(2); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(35); + if (lookahead != 0) ADVANCE(31); + END_STATE(); + case 40: + if (lookahead == '"') ADVANCE(1155); + if (lookahead == '\\') ADVANCE(3); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(37); + if (lookahead != 0) ADVANCE(33); + END_STATE(); + case 41: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + ',', 796, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '\\', 793, + '`', 941, + 'a', 698, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(41); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 42: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + ',', 796, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '\\', 793, + '`', 941, + 'a', 698, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(42); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 43: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + ',', 796, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '\\', 793, + '`', 941, + 'a', 698, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(43); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 44: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + ',', 796, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '\\', 793, + '`', 941, + 'a', 698, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(44); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 45: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + ',', 796, + '.', 235, + '0', 569, + ';', 824, + '[', 821, + ']', 822, + '`', 941, + 'c', 589, + 'f', 688, + 'i', 644, + 'l', 636, + 'o', 720, + 'r', 587, + 'w', 656, + '{', 804, + '}', 805, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(45); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + ('\\' <= lookahead && lookahead <= '^') || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 46: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(46); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 47: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(47); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 48: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(48); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 49: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(49); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 50: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(50); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 51: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(51); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 52: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(52); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 53: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(53); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 54: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(54); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 55: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(55); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 56: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(56); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 57: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(57); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 58: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(58); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 59: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(59); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 60: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(60); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 61: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(61); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 62: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(62); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 63: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(63); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 64: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(64); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 65: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(65); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 66: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(66); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 67: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(67); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 68: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(68); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 69: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(69); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 70: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 698, + 'e', 682, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(70); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 71: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 698, + 'e', 682, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(71); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 72: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 698, + 'e', 701, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(72); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 73: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 698, + 'e', 701, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(73); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 74: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(74); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 75: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(75); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 76: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(76); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 77: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(77); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 78: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(78); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 79: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(79); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 80: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(80); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 81: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(81); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 82: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(82); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 83: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(83); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 84: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(84); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 85: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(85); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 86: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(86); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 87: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 748, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(87); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 88: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(88); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 89: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(89); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 90: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + 'E', 703, + '[', 821, + '\\', 793, + '`', 941, + 'a', 698, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(90); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 91: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + 'E', 703, + '[', 821, + '\\', 793, + '`', 941, + 'a', 698, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(91); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 92: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + 'E', 703, + '[', 821, + '\\', 793, + '`', 941, + 'a', 698, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(92); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 93: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + 'E', 703, + '[', 821, + '\\', 793, + '`', 941, + 'a', 698, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(93); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 94: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + 'Q', 585, + '[', 821, + '\\', 793, + '`', 941, + 'a', 698, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(94); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 95: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + 'Q', 585, + '[', 821, + '\\', 793, + '`', 941, + 'a', 698, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(95); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 96: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + 'Q', 585, + '[', 821, + '\\', 793, + '`', 941, + 'a', 698, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(96); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 97: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + 'Q', 585, + '[', 821, + '\\', 793, + '`', 941, + 'a', 698, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(97); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 98: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '[', 821, + '`', 941, + 'a', 698, + 'd', 709, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 99: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '[', 821, + '`', 941, + 'a', 698, + 'd', 709, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(99); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 100: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '[', 821, + '`', 941, + 'a', 698, + 'd', 709, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(100); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 101: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '[', 821, + '`', 941, + 'a', 698, + 'd', 709, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(101); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 102: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '[', 821, + '`', 941, + 'a', 698, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 645, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(102); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 103: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '[', 821, + '`', 941, + 'a', 698, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 645, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(103); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 104: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '[', 821, + '`', 941, + 'a', 698, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 719, + 't', 658, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(104); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 105: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '[', 821, + '`', 941, + 'a', 698, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 719, + 't', 658, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 106: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '[', 821, + '`', 941, + 'a', 698, + 'h', 594, + 'l', 636, + 'o', 645, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(106); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 107: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '[', 821, + '`', 941, + 'a', 698, + 'h', 594, + 'l', 636, + 'o', 645, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 108: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '[', 821, + '`', 941, + 'a', 698, + 'h', 594, + 'l', 636, + 'o', 719, + 't', 658, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(108); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 109: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '[', 821, + '`', 941, + 'a', 698, + 'h', 594, + 'l', 636, + 'o', 719, + 't', 658, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(109); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 110: + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '0', 569, + ';', 824, + '[', 821, + '`', 941, + 'c', 589, + 'e', 701, + 'f', 688, + 'i', 644, + 'l', 636, + 'o', 720, + 'r', 587, + 'w', 656, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(110); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + ('/' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 111: + ADVANCE_MAP( + '"', 32, + '#', 789, + '\'', 788, + '(', 795, + ')', 797, + ',', 796, + '.', 235, + '0', 569, + '[', 821, + ']', 822, + '_', 903, + 'o', 720, + '{', 804, + '~', 790, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(111); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '@') || + ('\\' <= lookahead && lookahead <= '`') || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 112: + ADVANCE_MAP( + '"', 32, + '#', 789, + '\'', 788, + '(', 795, + '0', 569, + '[', 821, + '_', 903, + 'o', 720, + 'r', 639, + '{', 804, + '~', 790, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(112); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 113: + ADVANCE_MAP( + '"', 32, + '#', 789, + '\'', 788, + '(', 795, + '0', 569, + '[', 821, + '_', 903, + 'o', 720, + '{', 804, + '|', 862, + '~', 790, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(113); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + lookahead == '-' || + ('/' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + ('^' <= lookahead && lookahead <= '`')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 114: + ADVANCE_MAP( + '"', 32, + '#', 789, + '(', 795, + ')', 797, + ',', 796, + '.', 798, + '0', 569, + ':', 817, + '[', 821, + ']', 822, + '_', 903, + 'a', 741, + 'o', 720, + '{', 804, + '|', 862, + '}', 805, + '~', 790, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(114); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + ('\\' <= lookahead && lookahead <= '`')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 115: + ADVANCE_MAP( + '"', 32, + '#', 789, + '(', 795, + ')', 797, + '.', 798, + '0', 569, + ':', 817, + '=', 791, + '[', 821, + '_', 903, + 'a', 741, + 'o', 720, + '{', 804, + '|', 862, + '~', 790, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(115); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + ('^' <= lookahead && lookahead <= '`')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 116: + ADVANCE_MAP( + '"', 32, + '#', 789, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '=', 809, + '[', 821, + '_', 903, + 'a', 741, + 'o', 720, + '{', 804, + '|', 862, + '~', 790, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(116); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + ('^' <= lookahead && lookahead <= '`')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 117: + ADVANCE_MAP( + '"', 32, + '#', 789, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + '=', 809, + '[', 821, + '_', 903, + 'o', 720, + '{', 804, + '~', 790, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(117); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + ('^' <= lookahead && lookahead <= '`') || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 118: + ADVANCE_MAP( + '"', 32, + '#', 789, + '(', 795, + '.', 798, + '0', 569, + '[', 821, + '_', 903, + 'o', 720, + '{', 804, + '~', 790, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(118); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + ('^' <= lookahead && lookahead <= '`') || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 119: + ADVANCE_MAP( + '"', 36, + '#', 121, + '(', 795, + ')', 797, + ',', 796, + ':', 811, + ';', 824, + '=', 806, + 'F', 1150, + 'T', 1147, + '[', 821, + ']', 822, + '_', 903, + '|', 860, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(119); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(1052); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1053); + END_STATE(); + case 120: + ADVANCE_MAP( + '"', 36, + '#', 121, + '(', 795, + ')', 797, + ',', 796, + ':', 811, + ';', 824, + '=', 253, + 'F', 1150, + 'T', 1147, + '[', 821, + ']', 822, + '_', 903, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(1052); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(1053); + END_STATE(); + case 121: + if (lookahead == '"') ADVANCE(38); + END_STATE(); + case 122: + ADVANCE_MAP( + '$', 1127, + ')', 797, + '*', 909, + '+', 1131, + ',', 796, + '-', 250, + '/', 298, + ':', 811, + ';', 824, + '<', 1119, + '=', 807, + '>', 1117, + 'E', 422, + 'H', 254, + 'I', 274, + 'N', 276, + 'P', 261, + 'Q', 262, + 'R', 286, + 'T', 343, + '\\', 244, + ']', 822, + 'a', 438, + 'd', 323, + 'e', 415, + 'i', 439, + 'l', 403, + 'o', 1133, + 's', 387, + 't', 381, + 'v', 314, + 'w', 388, + '|', 860, + '}', 805, + 0x201d, 935, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(122); + END_STATE(); + case 123: + ADVANCE_MAP( + '$', 1127, + ')', 797, + '+', 1131, + '-', 250, + '/', 298, + ':', 811, + ';', 824, + '<', 1119, + '=', 807, + '>', 1117, + 'H', 254, + 'I', 274, + 'N', 276, + 'P', 260, + 'R', 286, + '\\', 243, + 'a', 438, + 'd', 323, + 'e', 434, + 'i', 439, + 'l', 403, + 'o', 1134, + 's', 387, + 't', 513, + 'v', 314, + 'w', 394, + '|', 860, + 0x21ce, 1082, + 0x21d2, 1090, + 0x21d4, 1087, + 0x2208, 1097, + 0x2209, 1094, + 0x2227, 958, + 0x2228, 1093, + 0x2260, 1124, + 0x2264, 1114, + 0x2265, 1111, + 0x227c, 1100, + 0x2282, 1107, + 0x2286, 1110, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(123); + END_STATE(); + case 124: + if (lookahead == '$') ADVANCE(1045); + if (lookahead == '(') ADVANCE(795); + if (lookahead == '.') ADVANCE(798); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(124); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 125: + if (lookahead == '\'') ADVANCE(788); + if (lookahead == '(') ADVANCE(795); + if (lookahead == ',') ADVANCE(796); + if (lookahead == '.') ADVANCE(235); + if (lookahead == '{') ADVANCE(804); + if (lookahead == '}') ADVANCE(805); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(125); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(801); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 126: + if (lookahead == '\'') ADVANCE(530); + if (lookahead == '(') ADVANCE(795); + if (lookahead == ')') ADVANCE(797); + if (lookahead == 'E') ADVANCE(1025); + if (lookahead == 'n') ADVANCE(1042); + if (lookahead == 's') ADVANCE(1040); + if (lookahead == '|') ADVANCE(860); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(126); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 127: + if (lookahead == '\'') ADVANCE(530); + if (lookahead == '(') ADVANCE(795); + if (lookahead == 'n') ADVANCE(1042); + if (lookahead == 's') ADVANCE(1040); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(127); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 128: + ADVANCE_MAP( + '(', 795, + ')', 797, + '*', 909, + '-', 250, + '.', 798, + ':', 814, + ';', 824, + '=', 806, + 'a', 326, + 'd', 324, + 'e', 435, + 'f', 507, + 'i', 424, + 'l', 448, + 'n', 449, + 'o', 371, + 's', 495, + 't', 513, + 'v', 314, + 'w', 389, + '|', 860, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(128); + END_STATE(); + case 129: + if (lookahead == '(') ADVANCE(795); + if (lookahead == '-') ADVANCE(250); + if (lookahead == '.') ADVANCE(798); + if (lookahead == 'l') ADVANCE(1018); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(129); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 130: + if (lookahead == '(') ADVANCE(795); + if (lookahead == '.') ADVANCE(798); + if (lookahead == ':') ADVANCE(810); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(130); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 131: + ADVANCE_MAP( + ')', 797, + '*', 909, + ',', 796, + '-', 250, + '.', 798, + ':', 810, + ';', 824, + '=', 806, + 'a', 325, + 'd', 324, + 'e', 416, + 'f', 507, + 'h', 319, + 'i', 424, + 'l', 448, + 'n', 449, + 'o', 466, + 's', 495, + 't', 513, + 'v', 314, + 'w', 401, + '|', 860, + '}', 805, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(131); + END_STATE(); + case 132: + ADVANCE_MAP( + ')', 797, + '*', 909, + ',', 796, + '-', 250, + ':', 814, + ';', 824, + '=', 806, + 'a', 602, + 'd', 597, + 'e', 777, + 'f', 772, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 727, + 's', 766, + 't', 780, + 'v', 588, + '}', 805, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(132); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 133: + ADVANCE_MAP( + ')', 797, + '*', 910, + ',', 796, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + '\\', 793, + 'a', 698, + 'e', 684, + 'h', 594, + 'o', 736, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(133); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + ('+' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '`' || + lookahead == '~') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 134: + ADVANCE_MAP( + ')', 797, + '*', 910, + ',', 796, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + '\\', 793, + 'a', 698, + 'e', 684, + 'h', 594, + 'o', 736, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(134); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 135: + ADVANCE_MAP( + ')', 797, + '*', 910, + ',', 796, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + '\\', 793, + 'a', 698, + 'h', 594, + 'o', 736, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(135); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + ('+' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^' || + lookahead == '`' || + lookahead == '~') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 136: + ADVANCE_MAP( + ')', 797, + '*', 910, + ',', 796, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + '\\', 793, + 'a', 698, + 'h', 594, + 'o', 736, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(136); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 137: + ADVANCE_MAP( + ')', 797, + '*', 910, + ',', 796, + '-', 792, + '.', 798, + ':', 817, + ']', 822, + 'a', 741, + '|', 862, + '}', 805, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(137); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + ('+' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + ('\\' <= lookahead && lookahead <= '^') || + lookahead == '`' || + lookahead == '~') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 138: + if (lookahead == ')') ADVANCE(797); + if (lookahead == '*') ADVANCE(910); + if (lookahead == ',') ADVANCE(796); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '.') ADVANCE(798); + if (lookahead == '}') ADVANCE(805); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(138); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 139: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(139); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 140: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(140); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 141: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(141); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 142: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(142); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 143: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(143); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 144: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(144); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 145: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(145); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 146: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(146); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 147: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ':', 815, + ';', 824, + 'a', 601, + 'd', 597, + 'e', 777, + 'f', 772, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 748, + 't', 780, + 'v', 588, + 'w', 659, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(147); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 148: + if (lookahead == ')') ADVANCE(797); + if (lookahead == '*') ADVANCE(910); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '.') ADVANCE(798); + if (lookahead == ':') ADVANCE(815); + if (lookahead == 'a') ADVANCE(706); + if (lookahead == 'w') ADVANCE(659); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(148); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 149: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 706, + 'd', 598, + 'e', 730, + 'i', 702, + 's', 657, + 't', 780, + 'v', 588, + 'w', 668, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(149); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 150: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 706, + 'd', 598, + 'e', 730, + 'i', 702, + 's', 657, + 't', 780, + 'v', 588, + 'w', 659, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(150); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 151: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 706, + 'd', 598, + 'e', 730, + 'i', 702, + 's', 657, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(151); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 152: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 601, + 'd', 597, + 'e', 777, + 'f', 772, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 748, + 't', 780, + 'v', 588, + 'w', 668, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(152); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 153: + ADVANCE_MAP( + ')', 797, + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 601, + 'd', 597, + 'e', 777, + 'f', 772, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(153); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 154: + if (lookahead == ')') ADVANCE(797); + if (lookahead == '*') ADVANCE(910); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '.') ADVANCE(798); + if (lookahead == 'a') ADVANCE(706); + if (lookahead == 'w') ADVANCE(659); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(154); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 155: + ADVANCE_MAP( + ')', 797, + '.', 798, + ';', 824, + 'a', 602, + 'd', 597, + 'e', 777, + 'f', 772, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(155); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 156: + ADVANCE_MAP( + ')', 797, + ';', 824, + 'd', 598, + 'e', 730, + 'i', 702, + 's', 657, + 't', 780, + 'v', 588, + 'w', 659, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(156); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 157: + ADVANCE_MAP( + ')', 797, + ';', 824, + 'd', 598, + 'e', 730, + 'i', 702, + 's', 657, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(157); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 158: + if (lookahead == '*') ADVANCE(910); + if (lookahead == ',') ADVANCE(796); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '.') ADVANCE(798); + if (lookahead == 'a') ADVANCE(741); + if (lookahead == '}') ADVANCE(805); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(158); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 159: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(159); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 160: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(160); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 161: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(161); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 162: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(162); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 163: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(163); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 164: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(164); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 165: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(165); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 166: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(166); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 167: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(167); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 168: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(168); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 169: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(169); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 170: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(170); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 171: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(171); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 172: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(172); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 173: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(173); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 174: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 599, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(174); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 175: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 698, + 'e', 682, + 'h', 594, + 'o', 736, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(175); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 176: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 698, + 'e', 682, + 'h', 594, + 'o', 736, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(176); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 177: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 698, + 'e', 701, + 'h', 594, + 'o', 736, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(177); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 178: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 698, + 'e', 701, + 'h', 594, + 'o', 736, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(178); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 179: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(179); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 180: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(180); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 181: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(181); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 182: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(182); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 183: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(183); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 184: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(184); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 185: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(185); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 186: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 772, + 'h', 594, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(186); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 187: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(187); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 188: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(188); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 189: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(189); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 190: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 681, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(190); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 191: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(191); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 192: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(192); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 193: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(193); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 194: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'a', 600, + 'd', 597, + 'e', 700, + 'f', 772, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(194); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 195: + if (lookahead == '*') ADVANCE(910); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '.') ADVANCE(798); + if (lookahead == ':') ADVANCE(817); + if (lookahead == '=') ADVANCE(791); + if (lookahead == 'a') ADVANCE(741); + if (lookahead == '|') ADVANCE(862); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(195); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 196: + if (lookahead == '*') ADVANCE(910); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '.') ADVANCE(798); + if (lookahead == ':') ADVANCE(817); + if (lookahead == '=') ADVANCE(809); + if (lookahead == 'a') ADVANCE(741); + if (lookahead == '|') ADVANCE(862); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(196); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 197: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'E', 703, + '\\', 793, + 'a', 698, + 'e', 684, + 'h', 594, + 'o', 736, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(197); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 198: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'E', 703, + '\\', 793, + 'a', 698, + 'e', 684, + 'h', 594, + 'o', 736, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(198); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 199: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'E', 703, + '\\', 793, + 'a', 698, + 'h', 594, + 'o', 736, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(199); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 200: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'E', 703, + '\\', 793, + 'a', 698, + 'h', 594, + 'o', 736, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(200); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 201: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'Q', 585, + '\\', 793, + 'a', 698, + 'e', 684, + 'h', 594, + 'o', 736, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(201); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 202: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'Q', 585, + '\\', 793, + 'a', 698, + 'e', 684, + 'h', 594, + 'o', 736, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(202); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 203: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'Q', 585, + '\\', 793, + 'a', 698, + 'h', 594, + 'o', 736, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(203); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 204: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'Q', 585, + '\\', 793, + 'a', 698, + 'h', 594, + 'o', 736, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(204); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 205: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'a', 698, + 'd', 709, + 'e', 684, + 'h', 594, + 'o', 736, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(205); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 206: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'a', 698, + 'd', 709, + 'e', 684, + 'h', 594, + 'o', 736, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(206); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 207: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'a', 698, + 'd', 709, + 'h', 594, + 'o', 736, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(207); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 208: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'a', 698, + 'd', 709, + 'h', 594, + 'o', 736, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(208); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 209: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'a', 698, + 'e', 684, + 'h', 594, + 'o', 646, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(209); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 210: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'a', 698, + 'e', 684, + 'h', 594, + 'o', 646, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(210); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 211: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'a', 698, + 'e', 684, + 'h', 594, + 'o', 736, + 't', 658, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(211); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 212: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'a', 698, + 'e', 684, + 'h', 594, + 'o', 736, + 't', 658, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(212); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 213: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'a', 698, + 'h', 594, + 'o', 646, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(213); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 214: + if (lookahead == '*') ADVANCE(910); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '.') ADVANCE(798); + if (lookahead == ':') ADVANCE(817); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'h') ADVANCE(594); + if (lookahead == 'o') ADVANCE(646); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(214); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 215: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'a', 698, + 'h', 594, + 'o', 736, + 't', 658, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(215); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 216: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + 'a', 698, + 'h', 594, + 'o', 736, + 't', 658, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(216); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 217: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 815, + ';', 824, + 'a', 601, + 'd', 597, + 'e', 777, + 'f', 772, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 748, + 't', 780, + 'v', 588, + 'w', 659, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(217); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 218: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 815, + ';', 824, + 'a', 601, + 'd', 597, + 'e', 700, + 'f', 772, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 748, + 't', 780, + 'v', 588, + 'w', 659, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(218); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 219: + if (lookahead == '*') ADVANCE(910); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '.') ADVANCE(798); + if (lookahead == ':') ADVANCE(815); + if (lookahead == 'a') ADVANCE(706); + if (lookahead == 'e') ADVANCE(701); + if (lookahead == 'w') ADVANCE(659); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(219); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 220: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 706, + 'd', 598, + 'e', 699, + 'i', 702, + 's', 657, + 't', 780, + 'v', 588, + 'w', 668, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(220); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 221: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 706, + 'd', 598, + 'e', 699, + 'i', 702, + 's', 657, + 't', 780, + 'v', 588, + 'w', 659, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(221); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 222: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 706, + 'd', 598, + 'e', 699, + 'i', 702, + 's', 657, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(222); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 223: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 601, + 'd', 597, + 'e', 777, + 'f', 772, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 748, + 't', 780, + 'v', 588, + 'w', 668, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(223); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 224: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 601, + 'd', 597, + 'e', 777, + 'f', 772, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(224); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 225: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 601, + 'd', 597, + 'e', 777, + 'f', 772, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 727, + 't', 780, + 'v', 588, + 'w', 668, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(225); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 226: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 601, + 'd', 597, + 'e', 777, + 'f', 772, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 727, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(226); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 227: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 601, + 'd', 597, + 'e', 700, + 'f', 772, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 748, + 't', 780, + 'v', 588, + 'w', 668, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(227); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 228: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 601, + 'd', 597, + 'e', 700, + 'f', 772, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(228); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 229: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 601, + 'd', 597, + 'e', 700, + 'f', 772, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 't', 780, + 'v', 588, + 'w', 668, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(229); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 230: + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'a', 601, + 'd', 597, + 'e', 700, + 'f', 772, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(230); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 231: + if (lookahead == '*') ADVANCE(910); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '.') ADVANCE(798); + if (lookahead == '=') ADVANCE(809); + if (lookahead == 'a') ADVANCE(706); + if (lookahead == 'w') ADVANCE(659); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(231); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 232: + if (lookahead == '*') ADVANCE(910); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '.') ADVANCE(798); + if (lookahead == '=') ADVANCE(809); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(232); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 233: + if (lookahead == '*') ADVANCE(910); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '.') ADVANCE(798); + if (lookahead == 'a') ADVANCE(706); + if (lookahead == 'w') ADVANCE(669); + if (lookahead == '|') ADVANCE(862); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(233); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 234: + if (lookahead == '*') ADVANCE(910); + if (lookahead == '-') ADVANCE(792); + if (lookahead == '.') ADVANCE(798); + if (lookahead == 'a') ADVANCE(706); + if (lookahead == 'w') ADVANCE(670); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(234); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 235: + if (lookahead == '.') ADVANCE(236); + END_STATE(); + case 236: + if (lookahead == '.') ADVANCE(818); + END_STATE(); + case 237: + ADVANCE_MAP( + '.', 798, + ':', 810, + ';', 824, + 'a', 602, + 'd', 597, + 'e', 777, + 'f', 772, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 727, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(237); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 238: + ADVANCE_MAP( + '.', 798, + ';', 824, + 'a', 602, + 'd', 597, + 'e', 777, + 'f', 772, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(238); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 239: + ADVANCE_MAP( + '.', 798, + ';', 824, + 'a', 602, + 'd', 597, + 'e', 777, + 'f', 772, + 'i', 693, + 'l', 711, + 'n', 712, + 'o', 727, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(239); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 240: + ADVANCE_MAP( + '.', 798, + ';', 824, + 'a', 602, + 'd', 597, + 'e', 700, + 'f', 772, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 748, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(240); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 241: + ADVANCE_MAP( + '.', 798, + ';', 824, + 'a', 602, + 'd', 597, + 'e', 700, + 'f', 772, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(241); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 242: + if (lookahead == '.') ADVANCE(798); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(242); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(897); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 243: + if (lookahead == '/') ADVANCE(1091); + END_STATE(); + case 244: + if (lookahead == '/') ADVANCE(1091); + if (lookahead == '\\') ADVANCE(956); + END_STATE(); + case 245: + if (lookahead == ':') ADVANCE(949); + END_STATE(); + case 246: + ADVANCE_MAP( + ';', 824, + 'd', 598, + 'e', 699, + 'i', 702, + 's', 657, + 't', 780, + 'v', 588, + 'w', 659, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(246); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 247: + if (lookahead == ';') ADVANCE(824); + if (lookahead == 'd') ADVANCE(598); + if (lookahead == 'e') ADVANCE(699); + if (lookahead == 'i') ADVANCE(702); + if (lookahead == 's') ADVANCE(657); + if (lookahead == 't') ADVANCE(780); + if (lookahead == 'v') ADVANCE(588); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(247); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 248: + if (lookahead == '=') ADVANCE(1101); + END_STATE(); + case 249: + if (lookahead == '=') ADVANCE(252); + END_STATE(); + case 250: + if (lookahead == '>') ADVANCE(906); + END_STATE(); + case 251: + if (lookahead == '>') ADVANCE(1088); + END_STATE(); + case 252: + if (lookahead == '>') ADVANCE(1083); + END_STATE(); + case 253: + if (lookahead == '>') ADVANCE(863); + END_STATE(); + case 254: + if (lookahead == 'A') ADVANCE(279); + END_STATE(); + case 255: + if (lookahead == 'A') ADVANCE(281); + END_STATE(); + case 256: + if (lookahead == 'A') ADVANCE(284); + END_STATE(); + case 257: + if (lookahead == 'B') ADVANCE(283); + END_STATE(); + case 258: + if (lookahead == 'B') ADVANCE(285); + END_STATE(); + case 259: + if (lookahead == 'D') ADVANCE(954); + END_STATE(); + case 260: + if (lookahead == 'E') ADVANCE(277); + if (lookahead == 'S') ADVANCE(294); + END_STATE(); + case 261: + if (lookahead == 'E') ADVANCE(277); + if (lookahead == 'S') ADVANCE(294); + if (lookahead == 'r') ADVANCE(447); + END_STATE(); + case 262: + if (lookahead == 'E') ADVANCE(259); + END_STATE(); + case 263: + if (lookahead == 'E') ADVANCE(1105); + END_STATE(); + case 264: + if (lookahead == 'E') ADVANCE(278); + END_STATE(); + case 265: + if (lookahead == 'E') ADVANCE(291); + END_STATE(); + case 266: + if (lookahead == 'E') ADVANCE(280); + END_STATE(); + case 267: + if (lookahead == 'E') ADVANCE(292); + END_STATE(); + case 268: + if (lookahead == 'E') ADVANCE(255); + END_STATE(); + case 269: + if (lookahead == 'E') ADVANCE(256); + END_STATE(); + case 270: + if (lookahead == 'I') ADVANCE(297); + END_STATE(); + case 271: + if (lookahead == 'I') ADVANCE(275); + END_STATE(); + case 272: + if (lookahead == 'L') ADVANCE(269); + END_STATE(); + case 273: + if (lookahead == 'M') ADVANCE(295); + END_STATE(); + case 274: + if (lookahead == 'N') ADVANCE(1099); + END_STATE(); + case 275: + if (lookahead == 'N') ADVANCE(1095); + END_STATE(); + case 276: + if (lookahead == 'O') ADVANCE(287); + END_STATE(); + case 277: + if (lookahead == 'R') ADVANCE(273); + END_STATE(); + case 278: + if (lookahead == 'R') ADVANCE(289); + END_STATE(); + case 279: + if (lookahead == 'S') ADVANCE(310); + END_STATE(); + case 280: + if (lookahead == 'S') ADVANCE(1103); + END_STATE(); + case 281: + if (lookahead == 'S') ADVANCE(288); + END_STATE(); + case 282: + if (lookahead == 'S') ADVANCE(270); + END_STATE(); + case 283: + if (lookahead == 'S') ADVANCE(265); + END_STATE(); + case 284: + if (lookahead == 'S') ADVANCE(290); + END_STATE(); + case 285: + if (lookahead == 'S') ADVANCE(267); + END_STATE(); + case 286: + if (lookahead == 'S') ADVANCE(296); + END_STATE(); + case 287: + if (lookahead == 'T') ADVANCE(271); + END_STATE(); + case 288: + if (lookahead == 'T') ADVANCE(1056); + END_STATE(); + case 289: + if (lookahead == 'T') ADVANCE(1129); + END_STATE(); + case 290: + if (lookahead == 'T') ADVANCE(1054); + END_STATE(); + case 291: + if (lookahead == 'T') ADVANCE(1108); + END_STATE(); + case 292: + if (lookahead == 'T') ADVANCE(1122); + END_STATE(); + case 293: + if (lookahead == 'T') ADVANCE(266); + END_STATE(); + case 294: + if (lookahead == 'U') ADVANCE(257); + END_STATE(); + case 295: + if (lookahead == 'U') ADVANCE(293); + END_STATE(); + case 296: + if (lookahead == 'U') ADVANCE(258); + END_STATE(); + case 297: + if (lookahead == 'Z') ADVANCE(263); + END_STATE(); + case 298: + if (lookahead == '\\') ADVANCE(959); + END_STATE(); + case 299: + if (lookahead == '\\') ADVANCE(956); + END_STATE(); + case 300: + if (lookahead == '\\') ADVANCE(32); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(300); + END_STATE(); + case 301: + if (lookahead == '\\') ADVANCE(34); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(301); + END_STATE(); + case 302: + if (lookahead == '^') ADVANCE(933); + if (lookahead == '`') ADVANCE(940); + if (lookahead == 0x2019) ADVANCE(939); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(936); + if (lookahead != 0 && + lookahead != 0x2018 && + lookahead != 0x2019) ADVANCE(937); + END_STATE(); + case 303: + if (lookahead == '_') ADVANCE(303); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(571); + END_STATE(); + case 304: + if (lookahead == '_') ADVANCE(304); + if (lookahead == '0' || + lookahead == '1') ADVANCE(572); + END_STATE(); + case 305: + if (lookahead == '_') ADVANCE(305); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(573); + END_STATE(); + case 306: + if (lookahead == '_') ADVANCE(306); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(577); + END_STATE(); + case 307: + if (lookahead == '_') ADVANCE(307); + if (lookahead == '0' || + lookahead == '1') ADVANCE(574); + END_STATE(); + case 308: + if (lookahead == '_') ADVANCE(308); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(575); + END_STATE(); + case 309: + if (lookahead == '_') ADVANCE(309); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(576); + END_STATE(); + case 310: + if (lookahead == '_') ADVANCE(282); + END_STATE(); + case 311: + if (lookahead == '_') ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(578); + END_STATE(); + case 312: + if (lookahead == 'a') ADVANCE(494); + if (lookahead == 'e') ADVANCE(374); + END_STATE(); + case 313: + if (lookahead == 'a') ADVANCE(406); + if (lookahead == 'e') ADVANCE(328); + END_STATE(); + case 314: + if (lookahead == 'a') ADVANCE(408); + END_STATE(); + case 315: + if (lookahead == 'a') ADVANCE(476); + END_STATE(); + case 316: + if (lookahead == 'a') ADVANCE(475); + END_STATE(); + case 317: + if (lookahead == 'a') ADVANCE(409); + END_STATE(); + case 318: + if (lookahead == 'a') ADVANCE(488); + END_STATE(); + case 319: + if (lookahead == 'a') ADVANCE(437); + END_STATE(); + case 320: + if (lookahead == 'a') ADVANCE(498); + END_STATE(); + case 321: + if (lookahead == 'a') ADVANCE(501); + END_STATE(); + case 322: + if (lookahead == 'a') ADVANCE(502); + END_STATE(); + case 323: + if (lookahead == 'a') ADVANCE(504); + END_STATE(); + case 324: + if (lookahead == 'a') ADVANCE(504); + if (lookahead == 'o') ADVANCE(850); + END_STATE(); + case 325: + if (lookahead == 'b') ADVANCE(483); + if (lookahead == 'n') ADVANCE(336); + if (lookahead == 's') ADVANCE(904); + END_STATE(); + case 326: + if (lookahead == 'b') ADVANCE(483); + if (lookahead == 'n') ADVANCE(338); + END_STATE(); + case 327: + if (lookahead == 'b') ADVANCE(523); + if (lookahead == 'x') ADVANCE(529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(576); + END_STATE(); + case 328: + if (lookahead == 'c') ADVANCE(867); + END_STATE(); + case 329: + if (lookahead == 'c') ADVANCE(361); + END_STATE(); + case 330: + if (lookahead == 'c') ADVANCE(411); + END_STATE(); + case 331: + if (lookahead == 'c') ADVANCE(411); + if (lookahead == 'f') ADVANCE(392); + END_STATE(); + case 332: + if (lookahead == 'c') ADVANCE(317); + END_STATE(); + case 333: + if (lookahead == 'c') ADVANCE(489); + END_STATE(); + case 334: + if (lookahead == 'c') ADVANCE(500); + END_STATE(); + case 335: + if (lookahead == 'd') ADVANCE(944); + END_STATE(); + case 336: + if (lookahead == 'd') ADVANCE(870); + END_STATE(); + case 337: + if (lookahead == 'd') ADVANCE(829); + END_STATE(); + case 338: + if (lookahead == 'd') ADVANCE(869); + END_STATE(); + case 339: + if (lookahead == 'd') ADVANCE(598); + if (lookahead == 'o') ADVANCE(720); + if (lookahead == '|') ADVANCE(862); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(339); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 340: + if (lookahead == 'd') ADVANCE(598); + if (lookahead == '|') ADVANCE(862); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(340); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 341: + if (lookahead == 'd') ADVANCE(359); + END_STATE(); + case 342: + if (lookahead == 'd') ADVANCE(413); + END_STATE(); + case 343: + if (lookahead == 'e') ADVANCE(470); + END_STATE(); + case 344: + if (lookahead == 'e') ADVANCE(852); + END_STATE(); + case 345: + if (lookahead == 'e') ADVANCE(845); + END_STATE(); + case 346: + if (lookahead == 'e') ADVANCE(1058); + END_STATE(); + case 347: + if (lookahead == 'e') ADVANCE(877); + END_STATE(); + case 348: + if (lookahead == 'e') ADVANCE(837); + END_STATE(); + case 349: + if (lookahead == 'e') ADVANCE(920); + END_STATE(); + case 350: + if (lookahead == 'e') ADVANCE(848); + END_STATE(); + case 351: + if (lookahead == 'e') ADVANCE(924); + END_STATE(); + case 352: + if (lookahead == 'e') ADVANCE(835); + END_STATE(); + case 353: + if (lookahead == 'e') ADVANCE(883); + END_STATE(); + case 354: + if (lookahead == 'e') ADVANCE(245); + END_STATE(); + case 355: + if (lookahead == 'e') ADVANCE(879); + END_STATE(); + case 356: + if (lookahead == 'e') ADVANCE(881); + END_STATE(); + case 357: + if (lookahead == 'e') ADVANCE(922); + END_STATE(); + case 358: + if (lookahead == 'e') ADVANCE(916); + END_STATE(); + case 359: + if (lookahead == 'e') ADVANCE(926); + END_STATE(); + case 360: + if (lookahead == 'e') ADVANCE(833); + END_STATE(); + case 361: + if (lookahead == 'e') ADVANCE(459); + END_STATE(); + case 362: + if (lookahead == 'e') ADVANCE(485); + if (lookahead == 'i') ADVANCE(479); + if (lookahead == 'o') ADVANCE(332); + END_STATE(); + case 363: + if (lookahead == 'e') ADVANCE(426); + END_STATE(); + case 364: + if (lookahead == 'e') ADVANCE(471); + END_STATE(); + case 365: + if (lookahead == 'e') ADVANCE(471); + if (lookahead == 'i') ADVANCE(412); + END_STATE(); + case 366: + if (lookahead == 'e') ADVANCE(419); + END_STATE(); + case 367: + if (lookahead == 'e') ADVANCE(417); + END_STATE(); + case 368: + if (lookahead == 'e') ADVANCE(430); + END_STATE(); + case 369: + if (lookahead == 'e') ADVANCE(457); + END_STATE(); + case 370: + if (lookahead == 'f') ADVANCE(839); + if (lookahead == 'n') ADVANCE(827); + END_STATE(); + case 371: + if (lookahead == 'f') ADVANCE(855); + if (lookahead == 'p') ADVANCE(368); + END_STATE(); + case 372: + if (lookahead == 'f') ADVANCE(855); + if (lookahead == 'p') ADVANCE(368); + if (lookahead == 'r') ADVANCE(367); + END_STATE(); + case 373: + if (lookahead == 'f') ADVANCE(952); + END_STATE(); + case 374: + if (lookahead == 'f') ADVANCE(396); + END_STATE(); + case 375: + if (lookahead == 'f') ADVANCE(392); + END_STATE(); + case 376: + if (lookahead == 'f') ADVANCE(393); + END_STATE(); + case 377: + if (lookahead == 'g') ADVANCE(918); + END_STATE(); + case 378: + if (lookahead == 'g') ADVANCE(1141); + END_STATE(); + case 379: + if (lookahead == 'g') ADVANCE(928); + END_STATE(); + case 380: + if (lookahead == 'g') ADVANCE(441); + END_STATE(); + case 381: + if (lookahead == 'h') ADVANCE(363); + if (lookahead == 'y') ADVANCE(458); + END_STATE(); + case 382: + if (lookahead == 'h') ADVANCE(365); + if (lookahead == 'i') ADVANCE(486); + END_STATE(); + case 383: + if (lookahead == 'h') ADVANCE(886); + END_STATE(); + case 384: + if (lookahead == 'h') ADVANCE(885); + END_STATE(); + case 385: + if (lookahead == 'h') ADVANCE(316); + if (lookahead == 'i') ADVANCE(377); + if (lookahead == 'o') ADVANCE(420); + if (lookahead == 't') ADVANCE(467); + END_STATE(); + case 386: + if (lookahead == 'h') ADVANCE(316); + if (lookahead == 'i') ADVANCE(380); + if (lookahead == 't') ADVANCE(469); + END_STATE(); + case 387: + if (lookahead == 'h') ADVANCE(316); + if (lookahead == 't') ADVANCE(469); + END_STATE(); + case 388: + if (lookahead == 'h') ADVANCE(364); + if (lookahead == 'i') ADVANCE(486); + END_STATE(); + case 389: + if (lookahead == 'h') ADVANCE(364); + if (lookahead == 'i') ADVANCE(492); + END_STATE(); + case 390: + if (lookahead == 'h') ADVANCE(369); + END_STATE(); + case 391: + if (lookahead == 'h') ADVANCE(503); + END_STATE(); + case 392: + if (lookahead == 'i') ADVANCE(511); + END_STATE(); + case 393: + if (lookahead == 'i') ADVANCE(512); + END_STATE(); + case 394: + if (lookahead == 'i') ADVANCE(486); + END_STATE(); + case 395: + if (lookahead == 'i') ADVANCE(380); + if (lookahead == 't') ADVANCE(469); + END_STATE(); + case 396: + if (lookahead == 'i') ADVANCE(440); + END_STATE(); + case 397: + if (lookahead == 'i') ADVANCE(454); + END_STATE(); + case 398: + if (lookahead == 'i') ADVANCE(433); + if (lookahead == 'u') ADVANCE(333); + END_STATE(); + case 399: + if (lookahead == 'i') ADVANCE(443); + END_STATE(); + case 400: + if (lookahead == 'i') ADVANCE(436); + END_STATE(); + case 401: + if (lookahead == 'i') ADVANCE(492); + END_STATE(); + case 402: + if (lookahead == 'i') ADVANCE(493); + END_STATE(); + case 403: + if (lookahead == 'i') ADVANCE(479); + END_STATE(); + case 404: + if (lookahead == 'i') ADVANCE(455); + END_STATE(); + case 405: + if (lookahead == 'i') ADVANCE(497); + END_STATE(); + case 406: + if (lookahead == 'i') ADVANCE(480); + END_STATE(); + case 407: + if (lookahead == 'i') ADVANCE(456); + END_STATE(); + case 408: + if (lookahead == 'l') ADVANCE(865); + END_STATE(); + case 409: + if (lookahead == 'l') ADVANCE(891); + END_STATE(); + case 410: + if (lookahead == 'l') ADVANCE(478); + END_STATE(); + case 411: + if (lookahead == 'l') ADVANCE(506); + END_STATE(); + case 412: + if (lookahead == 'l') ADVANCE(350); + END_STATE(); + case 413: + if (lookahead == 'l') ADVANCE(352); + END_STATE(); + case 414: + if (lookahead == 'l') ADVANCE(636); + if (lookahead == 's') ADVANCE(767); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(414); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 415: + if (lookahead == 'l') ADVANCE(477); + if (lookahead == 'n') ADVANCE(337); + if (lookahead == 'q') ADVANCE(484); + if (lookahead == 'x') ADVANCE(329); + END_STATE(); + case 416: + if (lookahead == 'l') ADVANCE(477); + if (lookahead == 'n') ADVANCE(337); + if (lookahead == 'x') ADVANCE(329); + END_STATE(); + case 417: + if (lookahead == 'l') ADVANCE(482); + END_STATE(); + case 418: + if (lookahead == 'm') ADVANCE(1139); + END_STATE(); + case 419: + if (lookahead == 'm') ADVANCE(950); + END_STATE(); + case 420: + if (lookahead == 'm') ADVANCE(346); + END_STATE(); + case 421: + if (lookahead == 'm') ADVANCE(399); + END_STATE(); + case 422: + if (lookahead == 'n') ADVANCE(335); + END_STATE(); + case 423: + if (lookahead == 'n') ADVANCE(858); + if (lookahead == 'u') ADVANCE(425); + END_STATE(); + case 424: + if (lookahead == 'n') ADVANCE(827); + END_STATE(); + case 425: + if (lookahead == 'n') ADVANCE(875); + END_STATE(); + case 426: + if (lookahead == 'n') ADVANCE(842); + END_STATE(); + case 427: + if (lookahead == 'n') ADVANCE(889); + END_STATE(); + case 428: + if (lookahead == 'n') ADVANCE(942); + END_STATE(); + case 429: + if (lookahead == 'n') ADVANCE(947); + END_STATE(); + case 430: + if (lookahead == 'n') ADVANCE(893); + END_STATE(); + case 431: + if (lookahead == 'n') ADVANCE(331); + END_STATE(); + case 432: + if (lookahead == 'n') ADVANCE(873); + END_STATE(); + case 433: + if (lookahead == 'n') ADVANCE(378); + END_STATE(); + case 434: + if (lookahead == 'n') ADVANCE(337); + if (lookahead == 'q') ADVANCE(484); + if (lookahead == 'x') ADVANCE(329); + END_STATE(); + case 435: + if (lookahead == 'n') ADVANCE(337); + if (lookahead == 'x') ADVANCE(329); + END_STATE(); + case 436: + if (lookahead == 'n') ADVANCE(379); + END_STATE(); + case 437: + if (lookahead == 'n') ADVANCE(342); + END_STATE(); + case 438: + if (lookahead == 'n') ADVANCE(338); + END_STATE(); + case 439: + if (lookahead == 'n') ADVANCE(330); + END_STATE(); + case 440: + if (lookahead == 'n') ADVANCE(405); + END_STATE(); + case 441: + if (lookahead == 'n') ADVANCE(318); + END_STATE(); + case 442: + if (lookahead == 'n') ADVANCE(376); + END_STATE(); + case 443: + if (lookahead == 'n') ADVANCE(320); + END_STATE(); + case 444: + if (lookahead == 'n') ADVANCE(375); + END_STATE(); + case 445: + if (lookahead == 'o') ADVANCE(831); + END_STATE(); + case 446: + if (lookahead == 'o') ADVANCE(373); + END_STATE(); + case 447: + if (lookahead == 'o') ADVANCE(446); + END_STATE(); + case 448: + if (lookahead == 'o') ADVANCE(332); + END_STATE(); + case 449: + if (lookahead == 'o') ADVANCE(442); + END_STATE(); + case 450: + if (lookahead == 'o') ADVANCE(442); + if (lookahead == 'u') ADVANCE(418); + END_STATE(); + case 451: + if (lookahead == 'o') ADVANCE(720); + if (lookahead == '|') ADVANCE(862); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(451); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 452: + if (lookahead == 'o') ADVANCE(720); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(452); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 453: + if (lookahead == 'o') ADVANCE(468); + END_STATE(); + case 454: + if (lookahead == 'o') ADVANCE(427); + END_STATE(); + case 455: + if (lookahead == 'o') ADVANCE(428); + END_STATE(); + case 456: + if (lookahead == 'o') ADVANCE(429); + END_STATE(); + case 457: + if (lookahead == 'o') ADVANCE(474); + END_STATE(); + case 458: + if (lookahead == 'p') ADVANCE(347); + END_STATE(); + case 459: + if (lookahead == 'p') ADVANCE(496); + END_STATE(); + case 460: + if (lookahead == 'p') ADVANCE(351); + END_STATE(); + case 461: + if (lookahead == 'p') ADVANCE(353); + END_STATE(); + case 462: + if (lookahead == 'p') ADVANCE(354); + END_STATE(); + case 463: + if (lookahead == 'p') ADVANCE(355); + END_STATE(); + case 464: + if (lookahead == 'p') ADVANCE(356); + END_STATE(); + case 465: + if (lookahead == 'p') ADVANCE(368); + END_STATE(); + case 466: + if (lookahead == 'p') ADVANCE(368); + if (lookahead == 'r') ADVANCE(367); + END_STATE(); + case 467: + if (lookahead == 'r') ADVANCE(398); + END_STATE(); + case 468: + if (lookahead == 'r') ADVANCE(930); + END_STATE(); + case 469: + if (lookahead == 'r') ADVANCE(509); + END_STATE(); + case 470: + if (lookahead == 'r') ADVANCE(421); + END_STATE(); + case 471: + if (lookahead == 'r') ADVANCE(349); + END_STATE(); + case 472: + if (lookahead == 'r') ADVANCE(357); + END_STATE(); + case 473: + if (lookahead == 'r') ADVANCE(358); + END_STATE(); + case 474: + if (lookahead == 'r') ADVANCE(366); + END_STATE(); + case 475: + if (lookahead == 'r') ADVANCE(400); + END_STATE(); + case 476: + if (lookahead == 's') ADVANCE(344); + END_STATE(); + case 477: + if (lookahead == 's') ADVANCE(345); + END_STATE(); + case 478: + if (lookahead == 's') ADVANCE(445); + END_STATE(); + case 479: + if (lookahead == 's') ADVANCE(487); + END_STATE(); + case 480: + if (lookahead == 's') ADVANCE(348); + END_STATE(); + case 481: + if (lookahead == 's') ADVANCE(666); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(481); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 482: + if (lookahead == 's') ADVANCE(360); + END_STATE(); + case 483: + if (lookahead == 's') ADVANCE(499); + END_STATE(); + case 484: + if (lookahead == 't') ADVANCE(514); + END_STATE(); + case 485: + if (lookahead == 't') ADVANCE(825); + END_STATE(); + case 486: + if (lookahead == 't') ADVANCE(383); + END_STATE(); + case 487: + if (lookahead == 't') ADVANCE(1137); + END_STATE(); + case 488: + if (lookahead == 't') ADVANCE(508); + END_STATE(); + case 489: + if (lookahead == 't') ADVANCE(912); + END_STATE(); + case 490: + if (lookahead == 't') ADVANCE(780); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(490); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 491: + if (lookahead == 't') ADVANCE(453); + END_STATE(); + case 492: + if (lookahead == 't') ADVANCE(391); + END_STATE(); + case 493: + if (lookahead == 't') ADVANCE(384); + END_STATE(); + case 494: + if (lookahead == 't') ADVANCE(321); + END_STATE(); + case 495: + if (lookahead == 't') ADVANCE(469); + END_STATE(); + case 496: + if (lookahead == 't') ADVANCE(397); + END_STATE(); + case 497: + if (lookahead == 't') ADVANCE(404); + END_STATE(); + case 498: + if (lookahead == 't') ADVANCE(407); + END_STATE(); + case 499: + if (lookahead == 't') ADVANCE(515); + END_STATE(); + case 500: + if (lookahead == 't') ADVANCE(510); + END_STATE(); + case 501: + if (lookahead == 't') ADVANCE(516); + END_STATE(); + case 502: + if (lookahead == 't') ADVANCE(517); + END_STATE(); + case 503: + if (lookahead == 't') ADVANCE(518); + END_STATE(); + case 504: + if (lookahead == 't') ADVANCE(322); + END_STATE(); + case 505: + if (lookahead == 'u') ADVANCE(425); + END_STATE(); + case 506: + if (lookahead == 'u') ADVANCE(341); + END_STATE(); + case 507: + if (lookahead == 'u') ADVANCE(432); + END_STATE(); + case 508: + if (lookahead == 'u') ADVANCE(472); + END_STATE(); + case 509: + if (lookahead == 'u') ADVANCE(334); + END_STATE(); + case 510: + if (lookahead == 'u') ADVANCE(473); + END_STATE(); + case 511: + if (lookahead == 'x') ADVANCE(895); + END_STATE(); + case 512: + if (lookahead == 'x') ADVANCE(901); + END_STATE(); + case 513: + if (lookahead == 'y') ADVANCE(458); + END_STATE(); + case 514: + if (lookahead == 'y') ADVANCE(460); + END_STATE(); + case 515: + if (lookahead == 'y') ADVANCE(461); + END_STATE(); + case 516: + if (lookahead == 'y') ADVANCE(462); + END_STATE(); + case 517: + if (lookahead == 'y') ADVANCE(463); + END_STATE(); + case 518: + if (lookahead == 'y') ADVANCE(464); + END_STATE(); + case 519: + if (lookahead == '|') ADVANCE(862); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(519); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 520: + if (lookahead == '~') ADVANCE(527); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(578); + END_STATE(); + case 521: + if (lookahead == '^' || + lookahead == '`') ADVANCE(937); + END_STATE(); + case 522: + if (lookahead == '0' || + lookahead == '1') ADVANCE(572); + END_STATE(); + case 523: + if (lookahead == '0' || + lookahead == '1') ADVANCE(574); + END_STATE(); + case 524: + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(300); + if (lookahead != 0) ADVANCE(32); + END_STATE(); + case 525: + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(301); + if (lookahead != 0) ADVANCE(34); + END_STATE(); + case 526: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(577); + END_STATE(); + case 527: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(578); + END_STATE(); + case 528: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(573); + END_STATE(); + case 529: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(575); + END_STATE(); + case 530: + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1143); + END_STATE(); + case 531: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(36); + END_STATE(); + case 532: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(38); + END_STATE(); + case 533: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '"', 32, + '#', 820, + '\'', 788, + '(', 795, + '.', 798, + '0', 569, + 'D', 586, + 'T', 653, + '[', 821, + '`', 941, + 'a', 602, + 'c', 589, + 'd', 597, + 'e', 777, + 'f', 687, + 'i', 643, + 'l', 635, + 'n', 712, + 'o', 718, + 'r', 587, + 's', 661, + 't', 780, + 'v', 588, + 'w', 656, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(533); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 534: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + ',', 796, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + ']', 822, + '`', 941, + 'a', 698, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '|', 862, + '}', 805, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(534); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + ('\\' <= lookahead && lookahead <= '^')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 535: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + ',', 796, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + ']', 822, + '`', 941, + 'a', 698, + 'e', 684, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '}', 805, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(535); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + ('\\' <= lookahead && lookahead <= '^') || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 536: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + ',', 796, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + ']', 822, + '`', 941, + 'a', 698, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '|', 862, + '}', 805, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(536); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + ('\\' <= lookahead && lookahead <= '^')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 537: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + ')', 797, + ',', 796, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + '[', 821, + ']', 822, + '`', 941, + 'a', 698, + 'h', 594, + 'l', 636, + 'o', 719, + '{', 804, + '}', 805, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(537); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + ('*' <= lookahead && lookahead <= '@') || + ('\\' <= lookahead && lookahead <= '^') || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 538: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 661, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(538); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 539: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 661, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(539); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 540: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 661, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(540); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 541: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + '[', 821, + '`', 941, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 661, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(541); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 542: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 661, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(542); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 543: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 661, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(543); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 544: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 661, + 't', 780, + 'v', 588, + '{', 804, + '|', 862, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(544); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 545: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '"', 32, + '#', 820, + '(', 795, + '.', 798, + '0', 569, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + '[', 821, + '`', 941, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 635, + 'n', 712, + 'o', 717, + 's', 661, + 't', 780, + 'v', 588, + '{', 804, + '~', 790, + 0x2018, 938, + 0x201c, 934, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(545); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (('!' <= lookahead && lookahead <= '&') || + lookahead == '*' || + lookahead == '+' || + ('-' <= lookahead && lookahead <= '@') || + lookahead == '\\' || + lookahead == '^' || + lookahead == '|') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 546: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '(', 795, + ')', 797, + '*', 909, + '-', 250, + '.', 798, + ':', 814, + ';', 824, + '=', 806, + 'D', 312, + 'T', 390, + 'a', 326, + 'd', 324, + 'e', 434, + 'f', 505, + 'i', 431, + 'l', 448, + 'n', 449, + 'o', 371, + 's', 386, + 't', 513, + 'v', 314, + 'w', 388, + '|', 860, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(546); + END_STATE(); + case 547: + if (eof) ADVANCE(568); + ADVANCE_MAP( + ')', 797, + '*', 909, + ',', 796, + '-', 250, + ':', 810, + ';', 824, + '=', 253, + 'D', 312, + 'E', 422, + 'Q', 262, + 'T', 390, + '[', 821, + '\\', 299, + ']', 822, + 'a', 325, + 'd', 324, + 'e', 416, + 'f', 505, + 'h', 319, + 'i', 444, + 'l', 448, + 'n', 449, + 'o', 372, + 's', 395, + 't', 381, + 'v', 314, + 'w', 401, + '|', 860, + '}', 805, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(547); + END_STATE(); + case 548: + if (eof) ADVANCE(568); + ADVANCE_MAP( + ')', 797, + '*', 909, + '-', 250, + ';', 824, + 'D', 312, + 'T', 390, + 'a', 326, + 'd', 324, + 'e', 434, + 'f', 505, + 'i', 431, + 'l', 448, + 'n', 449, + 'o', 465, + 's', 386, + 't', 513, + 'v', 314, + 'w', 402, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(548); + END_STATE(); + case 549: + if (eof) ADVANCE(568); + ADVANCE_MAP( + ')', 797, + '*', 910, + ',', 796, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + ']', 822, + 'a', 698, + 'e', 684, + 'h', 594, + 'o', 736, + '|', 862, + '}', 805, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(549); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + ('+' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + ('\\' <= lookahead && lookahead <= '^') || + lookahead == '`' || + lookahead == '~') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 550: + if (eof) ADVANCE(568); + ADVANCE_MAP( + ')', 797, + '*', 910, + ',', 796, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + ']', 822, + 'a', 698, + 'e', 684, + 'h', 594, + 'o', 736, + '}', 805, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(550); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + ('+' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + ('\\' <= lookahead && lookahead <= '^') || + lookahead == '`' || + ('|' <= lookahead && lookahead <= '~')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 551: + if (eof) ADVANCE(568); + ADVANCE_MAP( + ')', 797, + '*', 910, + ',', 796, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + ']', 822, + 'a', 698, + 'h', 594, + 'o', 736, + '|', 862, + '}', 805, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(551); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + ('+' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + ('\\' <= lookahead && lookahead <= '^') || + lookahead == '`' || + lookahead == '~') ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 552: + if (eof) ADVANCE(568); + ADVANCE_MAP( + ')', 797, + '*', 910, + ',', 796, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + ']', 822, + 'a', 698, + 'h', 594, + 'o', 736, + '}', 805, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(552); + if (lookahead == '!' || + ('#' <= lookahead && lookahead <= '&') || + ('+' <= lookahead && lookahead <= '/') || + ('<' <= lookahead && lookahead <= '@') || + ('\\' <= lookahead && lookahead <= '^') || + lookahead == '`' || + ('|' <= lookahead && lookahead <= '~')) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 553: + if (eof) ADVANCE(568); + ADVANCE_MAP( + ')', 797, + '.', 798, + ':', 810, + ';', 824, + '=', 806, + 'D', 312, + 'T', 390, + 'a', 326, + 'd', 324, + 'e', 434, + 'f', 505, + 'i', 431, + 'l', 448, + 'n', 449, + 'o', 371, + 's', 386, + 't', 513, + 'v', 314, + 'w', 394, + '|', 860, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(553); + END_STATE(); + case 554: + if (eof) ADVANCE(568); + ADVANCE_MAP( + ')', 797, + '.', 798, + ':', 814, + ';', 824, + '=', 806, + 'D', 586, + 'T', 653, + 'a', 602, + 'd', 597, + 'e', 777, + 'f', 769, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 661, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(554); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 555: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 661, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(555); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 556: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + 'a', 599, + 'd', 597, + 'e', 777, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 661, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(556); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 557: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 661, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(557); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 558: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + 'a', 599, + 'd', 597, + 'e', 683, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 661, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(558); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 559: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 661, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(559); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 560: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + 'a', 600, + 'd', 597, + 'e', 777, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 661, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(560); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 561: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 661, + 't', 780, + 'v', 588, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(561); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 562: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 817, + ';', 824, + 'D', 586, + 'T', 653, + 'a', 600, + 'd', 597, + 'e', 683, + 'f', 769, + 'h', 594, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 726, + 's', 661, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(562); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 563: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ':', 815, + ';', 824, + 'D', 586, + 'T', 653, + 'a', 601, + 'd', 597, + 'e', 777, + 'f', 769, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 661, + 't', 780, + 'v', 588, + 'w', 659, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(563); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 564: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'D', 586, + 'T', 653, + 'a', 601, + 'd', 597, + 'e', 777, + 'f', 769, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 661, + 't', 780, + 'v', 588, + 'w', 668, + '|', 862, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(564); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 565: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'D', 586, + 'T', 653, + 'a', 601, + 'd', 597, + 'e', 777, + 'f', 769, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 661, + 't', 780, + 'v', 588, + 'w', 659, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(565); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 566: + if (eof) ADVANCE(568); + ADVANCE_MAP( + '*', 910, + '-', 792, + '.', 798, + ';', 824, + 'D', 586, + 'T', 653, + 'a', 601, + 'd', 597, + 'e', 777, + 'f', 769, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 661, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(566); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 567: + if (eof) ADVANCE(568); + ADVANCE_MAP( + ';', 824, + 'D', 586, + 'T', 653, + 'a', 602, + 'd', 597, + 'e', 777, + 'f', 769, + 'i', 707, + 'l', 711, + 'n', 712, + 'o', 727, + 's', 661, + 't', 780, + 'v', 588, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(567); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 568: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 569: + ACCEPT_TOKEN(sym_integer_scon); + if (lookahead == '.') ADVANCE(526); + if (lookahead == '_') ADVANCE(303); + if (lookahead == 'b') ADVANCE(522); + if (lookahead == 'w') ADVANCE(327); + if (lookahead == 'x') ADVANCE(528); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(520); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(571); + END_STATE(); + case 570: + ACCEPT_TOKEN(sym_integer_scon); + if (lookahead == '.') ADVANCE(526); + if (lookahead == '_') ADVANCE(303); + if (lookahead == 'b') ADVANCE(522); + if (lookahead == 'x') ADVANCE(528); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(520); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(571); + END_STATE(); + case 571: + ACCEPT_TOKEN(sym_integer_scon); + if (lookahead == '.') ADVANCE(526); + if (lookahead == '_') ADVANCE(303); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(520); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(571); + END_STATE(); + case 572: + ACCEPT_TOKEN(sym_integer_scon); + if (lookahead == '_') ADVANCE(304); + if (lookahead == '0' || + lookahead == '1') ADVANCE(572); + END_STATE(); + case 573: + ACCEPT_TOKEN(sym_integer_scon); + if (lookahead == '_') ADVANCE(305); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(573); + END_STATE(); + case 574: + ACCEPT_TOKEN(sym_word_scon); + if (lookahead == '_') ADVANCE(307); + if (lookahead == '0' || + lookahead == '1') ADVANCE(574); + END_STATE(); + case 575: + ACCEPT_TOKEN(sym_word_scon); + if (lookahead == '_') ADVANCE(308); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(575); + END_STATE(); + case 576: + ACCEPT_TOKEN(sym_word_scon); + if (lookahead == '_') ADVANCE(309); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(576); + END_STATE(); + case 577: + ACCEPT_TOKEN(sym_real_scon); + if (lookahead == '_') ADVANCE(306); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(520); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(577); + END_STATE(); + case 578: + ACCEPT_TOKEN(sym_real_scon); + if (lookahead == '_') ADVANCE(311); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(578); + END_STATE(); + case 579: + ACCEPT_TOKEN(sym_string_scon); + END_STATE(); + case 580: + ACCEPT_TOKEN(sym_string_scon); + if (lookahead == '"') ADVANCE(1152); + if (lookahead == '\\') ADVANCE(531); + if (lookahead != 0) ADVANCE(36); + END_STATE(); + case 581: + ACCEPT_TOKEN(sym_char_scon); + END_STATE(); + case 582: + ACCEPT_TOKEN(sym_char_scon); + if (lookahead == '"') ADVANCE(1154); + if (lookahead == '\\') ADVANCE(532); + if (lookahead != 0) ADVANCE(38); + END_STATE(); + case 583: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == ':') ADVANCE(949); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 584: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'D') ADVANCE(955); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 585: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'E') ADVANCE(584); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 586: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'a') ADVANCE(755); + if (lookahead == 'e') ADVANCE(647); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 587: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'a') ADVANCE(665); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 588: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'a') ADVANCE(675); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 589: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'a') ADVANCE(742); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 590: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'a') ADVANCE(676); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 591: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'a') ADVANCE(738); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 592: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'a') ADVANCE(677); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 593: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'a') ADVANCE(752); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 594: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'a') ADVANCE(697); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 595: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'a') ADVANCE(762); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 596: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'a') ADVANCE(763); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 597: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'a') ADVANCE(768); + if (lookahead == 'o') ADVANCE(851); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 598: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'a') ADVANCE(768); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 599: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'b') ADVANCE(744); + if (lookahead == 'n') ADVANCE(610); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 600: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'b') ADVANCE(744); + if (lookahead == 'n') ADVANCE(614); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 601: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'b') ADVANCE(744); + if (lookahead == 'n') ADVANCE(613); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 602: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'b') ADVANCE(744); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 603: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'c') ADVANCE(868); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 604: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'c') ADVANCE(637); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 605: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'c') ADVANCE(590); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 606: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'c') ADVANCE(678); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 607: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'c') ADVANCE(750); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 608: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'c') ADVANCE(751); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 609: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'c') ADVANCE(760); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 610: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'd') ADVANCE(871); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 611: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'd') ADVANCE(830); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 612: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'd') ADVANCE(945); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 613: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'd') ADVANCE(872); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 614: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'd') ADVANCE(592); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 615: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'd') ADVANCE(633); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 616: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'd') ADVANCE(680); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 617: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(853); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 618: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(878); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 619: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(838); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 620: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(849); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 621: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(686); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 622: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(884); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 623: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(583); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 624: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(880); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 625: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(923); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 626: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(917); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 627: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(846); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 628: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(836); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 629: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(834); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 630: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(921); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 631: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(882); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 632: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(925); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 633: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(927); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 634: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(713); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 635: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(749); + if (lookahead == 'o') ADVANCE(605); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 636: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(749); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 637: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(722); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 638: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(690); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 639: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(603); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 640: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(685); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 641: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(695); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 642: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'e') ADVANCE(737); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 643: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'f') ADVANCE(840); + if (lookahead == 'n') ADVANCE(648); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 644: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'f') ADVANCE(840); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 645: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'f') ADVANCE(856); + if (lookahead == 'p') ADVANCE(803); + if (lookahead == 'r') ADVANCE(640); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 646: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'f') ADVANCE(856); + if (lookahead == 'r') ADVANCE(640); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 647: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'f') ADVANCE(667); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 648: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'f') ADVANCE(662); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 649: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'f') ADVANCE(664); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 650: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'g') ADVANCE(929); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 651: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'g') ADVANCE(919); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 652: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'g') ADVANCE(704); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 653: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'h') ADVANCE(634); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 654: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'h') ADVANCE(887); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 655: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'h') ADVANCE(888); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 656: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'h') ADVANCE(663); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 657: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'h') ADVANCE(591); + if (lookahead == 't') ADVANCE(731); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 658: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'h') ADVANCE(641); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 659: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'h') ADVANCE(642); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 660: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'h') ADVANCE(764); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 661: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(652); + if (lookahead == 't') ADVANCE(731); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 662: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(778); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 663: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(679); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 664: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(779); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 665: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(745); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 666: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(651); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 667: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(705); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 668: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(753); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 669: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(754); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 670: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(756); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 671: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(696); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 672: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(715); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 673: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(716); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 674: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'i') ADVANCE(761); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 675: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'l') ADVANCE(866); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 676: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'l') ADVANCE(892); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 677: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'l') ADVANCE(743); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 678: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'l') ADVANCE(771); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 679: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'l') ADVANCE(620); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 680: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'l') ADVANCE(628); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 681: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'l') ADVANCE(746); + if (lookahead == 'n') ADVANCE(611); + if (lookahead == 'x') ADVANCE(604); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 682: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'l') ADVANCE(746); + if (lookahead == 'n') ADVANCE(611); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 683: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'l') ADVANCE(746); + if (lookahead == 'x') ADVANCE(604); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 684: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'l') ADVANCE(746); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 685: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'l') ADVANCE(747); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 686: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'm') ADVANCE(951); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 687: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(859); + if (lookahead == 'u') ADVANCE(689); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 688: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(859); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 689: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(874); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 690: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(894); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 691: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(890); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 692: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(943); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 693: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(828); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 694: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(876); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 695: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(843); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 696: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(650); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 697: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(616); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 698: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(614); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 699: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(611); + if (lookahead == 'q') ADVANCE(765); + if (lookahead == 'x') ADVANCE(604); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 700: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(611); + if (lookahead == 'x') ADVANCE(604); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 701: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(611); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 702: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(606); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 703: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(612); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 704: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(593); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 705: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(674); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 706: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(613); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 707: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(648); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 708: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'n') ADVANCE(649); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 709: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'o') ADVANCE(851); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 710: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'o') ADVANCE(832); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 711: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'o') ADVANCE(605); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 712: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'o') ADVANCE(708); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 713: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'o') ADVANCE(733); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 714: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'o') ADVANCE(732); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 715: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'o') ADVANCE(691); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 716: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'o') ADVANCE(692); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 717: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'p') ADVANCE(802); + if (lookahead == 'r') ADVANCE(640); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 718: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'p') ADVANCE(802); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 719: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'p') ADVANCE(803); + if (lookahead == 'r') ADVANCE(640); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 720: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'p') ADVANCE(803); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 721: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'p') ADVANCE(618); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 722: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'p') ADVANCE(757); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 723: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'p') ADVANCE(622); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 724: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'p') ADVANCE(623); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 725: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'p') ADVANCE(624); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 726: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'p') ADVANCE(638); + if (lookahead == 'r') ADVANCE(640); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 727: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'p') ADVANCE(638); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 728: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'p') ADVANCE(631); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 729: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'p') ADVANCE(632); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 730: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'q') ADVANCE(765); + if (lookahead == 'x') ADVANCE(604); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 731: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'r') ADVANCE(770); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 732: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'r') ADVANCE(931); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 733: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'r') ADVANCE(621); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 734: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'r') ADVANCE(625); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 735: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'r') ADVANCE(626); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 736: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'r') ADVANCE(640); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 737: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'r') ADVANCE(630); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 738: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'r') ADVANCE(671); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 739: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'r') ADVANCE(774); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 740: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'r') ADVANCE(776); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 741: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 's') ADVANCE(905); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 742: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 's') ADVANCE(617); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 743: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 's') ADVANCE(710); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 744: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 's') ADVANCE(759); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 745: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 's') ADVANCE(619); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 746: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 's') ADVANCE(627); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 747: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 's') ADVANCE(629); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 748: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(731); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 749: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(826); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 750: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(911); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 751: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(913); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 752: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(773); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 753: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(660); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 754: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(654); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 755: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(595); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 756: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(655); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 757: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(672); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 758: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(714); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 759: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(781); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 760: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(775); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 761: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(673); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 762: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(782); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 763: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(783); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 764: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(784); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 765: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(785); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 766: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(739); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 767: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(740); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 768: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 't') ADVANCE(596); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 769: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'u') ADVANCE(689); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 770: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'u') ADVANCE(609); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 771: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'u') ADVANCE(615); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 772: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'u') ADVANCE(694); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 773: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'u') ADVANCE(734); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 774: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'u') ADVANCE(607); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 775: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'u') ADVANCE(735); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 776: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'u') ADVANCE(608); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 777: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'x') ADVANCE(604); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 778: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'x') ADVANCE(896); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 779: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'x') ADVANCE(902); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 780: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'y') ADVANCE(721); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 781: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'y') ADVANCE(723); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 782: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'y') ADVANCE(724); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 783: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'y') ADVANCE(725); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 784: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'y') ADVANCE(728); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 785: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == 'y') ADVANCE(729); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 786: + ACCEPT_TOKEN(sym__alphaAlphaNumeric_ident); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 787: + ACCEPT_TOKEN(sym__primeAlphaNumeric_ident); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(787); + if ((0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1143); + END_STATE(); + case 788: + ACCEPT_TOKEN(sym__primeAlphaNumeric_ident); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(788); + END_STATE(); + case 789: + ACCEPT_TOKEN(sym__symbolic_ident); + if (lookahead == '"') ADVANCE(34); + if (lookahead == '[') ADVANCE(823); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 790: + ACCEPT_TOKEN(sym__symbolic_ident); + if (lookahead == '0') ADVANCE(570); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(571); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 791: + ACCEPT_TOKEN(sym__symbolic_ident); + if (lookahead == '>') ADVANCE(864); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 792: + ACCEPT_TOKEN(sym__symbolic_ident); + if (lookahead == '>') ADVANCE(908); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 793: + ACCEPT_TOKEN(sym__symbolic_ident); + if (lookahead == '\\') ADVANCE(957); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 794: + ACCEPT_TOKEN(sym__symbolic_ident); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 795: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 796: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 797: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 798: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 799: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(236); + END_STATE(); + case 800: + ACCEPT_TOKEN(aux_sym_lab_token1); + if (lookahead == '_') ADVANCE(1151); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(800); + END_STATE(); + case 801: + ACCEPT_TOKEN(aux_sym_lab_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(801); + END_STATE(); + case 802: + ACCEPT_TOKEN(anon_sym_op); + if (lookahead == 'e') ADVANCE(690); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 803: + ACCEPT_TOKEN(anon_sym_op); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 804: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 805: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 806: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 807: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(251); + END_STATE(); + case 808: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(1048); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 809: + ACCEPT_TOKEN(anon_sym_EQ); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 810: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 811: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(961); + END_STATE(); + case 812: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(961); + if (lookahead == '>') ADVANCE(914); + END_STATE(); + case 813: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(962); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 814: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '>') ADVANCE(914); + END_STATE(); + case 815: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '>') ADVANCE(915); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 816: + ACCEPT_TOKEN(anon_sym_COLON); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 817: + ACCEPT_TOKEN(anon_sym_COLON); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 818: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 819: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '"') ADVANCE(33); + if (lookahead == '[') ADVANCE(823); + END_STATE(); + case 820: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '"') ADVANCE(34); + if (lookahead == '[') ADVANCE(823); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 821: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 822: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 823: + ACCEPT_TOKEN(anon_sym_POUND_LBRACK); + END_STATE(); + case 824: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 825: + ACCEPT_TOKEN(anon_sym_let); + END_STATE(); + case 826: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 827: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'f') ADVANCE(392); + END_STATE(); + case 828: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'f') ADVANCE(662); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 829: + ACCEPT_TOKEN(anon_sym_end); + END_STATE(); + case 830: + ACCEPT_TOKEN(anon_sym_end); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 831: + ACCEPT_TOKEN(anon_sym_andalso); + END_STATE(); + case 832: + ACCEPT_TOKEN(anon_sym_andalso); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 833: + ACCEPT_TOKEN(anon_sym_orelse); + END_STATE(); + case 834: + ACCEPT_TOKEN(anon_sym_orelse); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 835: + ACCEPT_TOKEN(anon_sym_handle); + END_STATE(); + case 836: + ACCEPT_TOKEN(anon_sym_handle); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 837: + ACCEPT_TOKEN(anon_sym_raise); + END_STATE(); + case 838: + ACCEPT_TOKEN(anon_sym_raise); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 839: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 840: + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 841: + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 842: + ACCEPT_TOKEN(anon_sym_then); + END_STATE(); + case 843: + ACCEPT_TOKEN(anon_sym_then); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 844: + ACCEPT_TOKEN(anon_sym_then); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 845: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 846: + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 847: + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 848: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 849: + ACCEPT_TOKEN(anon_sym_while); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 850: + ACCEPT_TOKEN(anon_sym_do); + END_STATE(); + case 851: + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 852: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 853: + ACCEPT_TOKEN(anon_sym_case); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 854: + ACCEPT_TOKEN(anon_sym_case); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 855: + ACCEPT_TOKEN(anon_sym_of); + END_STATE(); + case 856: + ACCEPT_TOKEN(anon_sym_of); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 857: + ACCEPT_TOKEN(anon_sym_of); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 858: + ACCEPT_TOKEN(anon_sym_fn); + END_STATE(); + case 859: + ACCEPT_TOKEN(anon_sym_fn); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 860: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 861: + ACCEPT_TOKEN(anon_sym_PIPE); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 862: + ACCEPT_TOKEN(anon_sym_PIPE); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 863: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 864: + ACCEPT_TOKEN(anon_sym_EQ_GT); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 865: + ACCEPT_TOKEN(anon_sym_val); + END_STATE(); + case 866: + ACCEPT_TOKEN(anon_sym_val); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 867: + ACCEPT_TOKEN(anon_sym_rec); + END_STATE(); + case 868: + ACCEPT_TOKEN(anon_sym_rec); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 869: + ACCEPT_TOKEN(anon_sym_and); + END_STATE(); + case 870: + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == 'a') ADVANCE(410); + END_STATE(); + case 871: + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == 'a') ADVANCE(677); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 872: + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 873: + ACCEPT_TOKEN(anon_sym_fun); + END_STATE(); + case 874: + ACCEPT_TOKEN(anon_sym_fun); + if (lookahead == 'c') ADVANCE(758); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 875: + ACCEPT_TOKEN(anon_sym_fun); + if (lookahead == 'c') ADVANCE(491); + END_STATE(); + case 876: + ACCEPT_TOKEN(anon_sym_fun); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 877: + ACCEPT_TOKEN(anon_sym_type); + END_STATE(); + case 878: + ACCEPT_TOKEN(anon_sym_type); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 879: + ACCEPT_TOKEN(anon_sym_datatype); + END_STATE(); + case 880: + ACCEPT_TOKEN(anon_sym_datatype); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 881: + ACCEPT_TOKEN(anon_sym_withtype); + END_STATE(); + case 882: + ACCEPT_TOKEN(anon_sym_withtype); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 883: + ACCEPT_TOKEN(anon_sym_abstype); + END_STATE(); + case 884: + ACCEPT_TOKEN(anon_sym_abstype); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 885: + ACCEPT_TOKEN(anon_sym_with); + END_STATE(); + case 886: + ACCEPT_TOKEN(anon_sym_with); + if (lookahead == 't') ADVANCE(518); + END_STATE(); + case 887: + ACCEPT_TOKEN(anon_sym_with); + if (lookahead == 't') ADVANCE(784); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 888: + ACCEPT_TOKEN(anon_sym_with); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 889: + ACCEPT_TOKEN(anon_sym_exception); + END_STATE(); + case 890: + ACCEPT_TOKEN(anon_sym_exception); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 891: + ACCEPT_TOKEN(anon_sym_local); + END_STATE(); + case 892: + ACCEPT_TOKEN(anon_sym_local); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 893: + ACCEPT_TOKEN(anon_sym_open); + END_STATE(); + case 894: + ACCEPT_TOKEN(anon_sym_open); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 895: + ACCEPT_TOKEN(anon_sym_infix); + if (lookahead == 'r') ADVANCE(899); + END_STATE(); + case 896: + ACCEPT_TOKEN(anon_sym_infix); + if (lookahead == 'r') ADVANCE(900); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 897: + ACCEPT_TOKEN(aux_sym_infix_dec_token1); + END_STATE(); + case 898: + ACCEPT_TOKEN(aux_sym_infix_dec_token1); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(1151); + END_STATE(); + case 899: + ACCEPT_TOKEN(anon_sym_infixr); + END_STATE(); + case 900: + ACCEPT_TOKEN(anon_sym_infixr); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 901: + ACCEPT_TOKEN(anon_sym_nonfix); + END_STATE(); + case 902: + ACCEPT_TOKEN(anon_sym_nonfix); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 903: + ACCEPT_TOKEN(anon_sym__); + END_STATE(); + case 904: + ACCEPT_TOKEN(anon_sym_as); + END_STATE(); + case 905: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 906: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 907: + ACCEPT_TOKEN(anon_sym_DASH_GT); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 908: + ACCEPT_TOKEN(anon_sym_DASH_GT); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 909: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 910: + ACCEPT_TOKEN(anon_sym_STAR); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 911: + ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'u') ADVANCE(735); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 912: + ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'u') ADVANCE(473); + END_STATE(); + case 913: + ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 914: + ACCEPT_TOKEN(anon_sym_COLON_GT); + END_STATE(); + case 915: + ACCEPT_TOKEN(anon_sym_COLON_GT); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 916: + ACCEPT_TOKEN(anon_sym_structure); + END_STATE(); + case 917: + ACCEPT_TOKEN(anon_sym_structure); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 918: + ACCEPT_TOKEN(anon_sym_sig); + if (lookahead == 'n') ADVANCE(318); + END_STATE(); + case 919: + ACCEPT_TOKEN(anon_sym_sig); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 920: + ACCEPT_TOKEN(anon_sym_where); + END_STATE(); + case 921: + ACCEPT_TOKEN(anon_sym_where); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 922: + ACCEPT_TOKEN(anon_sym_signature); + END_STATE(); + case 923: + ACCEPT_TOKEN(anon_sym_signature); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 924: + ACCEPT_TOKEN(anon_sym_eqtype); + END_STATE(); + case 925: + ACCEPT_TOKEN(anon_sym_eqtype); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 926: + ACCEPT_TOKEN(anon_sym_include); + END_STATE(); + case 927: + ACCEPT_TOKEN(anon_sym_include); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 928: + ACCEPT_TOKEN(anon_sym_sharing); + END_STATE(); + case 929: + ACCEPT_TOKEN(anon_sym_sharing); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 930: + ACCEPT_TOKEN(anon_sym_functor); + END_STATE(); + case 931: + ACCEPT_TOKEN(anon_sym_functor); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 932: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 933: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '^' || + lookahead == '`') ADVANCE(937); + END_STATE(); + case 934: + ACCEPT_TOKEN(anon_sym_u201c); + END_STATE(); + case 935: + ACCEPT_TOKEN(anon_sym_u201d); + END_STATE(); + case 936: + ACCEPT_TOKEN(aux_sym__quote_content_token1); + if (lookahead == '^') ADVANCE(933); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(936); + if (lookahead != 0 && + lookahead != '`' && + lookahead != 0x2018 && + lookahead != 0x2019) ADVANCE(937); + END_STATE(); + case 937: + ACCEPT_TOKEN(aux_sym__quote_content_token1); + if (lookahead == '^') ADVANCE(521); + if (lookahead != 0 && + lookahead != '`' && + lookahead != 0x2018 && + lookahead != 0x2019) ADVANCE(937); + END_STATE(); + case 938: + ACCEPT_TOKEN(anon_sym_u2018); + END_STATE(); + case 939: + ACCEPT_TOKEN(anon_sym_u2019); + END_STATE(); + case 940: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 941: + ACCEPT_TOKEN(anon_sym_BQUOTE); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 942: + ACCEPT_TOKEN(anon_sym_Definition); + END_STATE(); + case 943: + ACCEPT_TOKEN(anon_sym_Definition); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 944: + ACCEPT_TOKEN(anon_sym_End); + END_STATE(); + case 945: + ACCEPT_TOKEN(anon_sym_End); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 946: + ACCEPT_TOKEN(anon_sym_End); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 947: + ACCEPT_TOKEN(anon_sym_Termination); + END_STATE(); + case 948: + ACCEPT_TOKEN(anon_sym_Termination); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 949: + ACCEPT_TOKEN(anon_sym_Datatype_COLON); + END_STATE(); + case 950: + ACCEPT_TOKEN(anon_sym_Theorem); + END_STATE(); + case 951: + ACCEPT_TOKEN(anon_sym_Theorem); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 952: + ACCEPT_TOKEN(anon_sym_Proof); + END_STATE(); + case 953: + ACCEPT_TOKEN(anon_sym_Proof); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 954: + ACCEPT_TOKEN(anon_sym_QED); + END_STATE(); + case 955: + ACCEPT_TOKEN(anon_sym_QED); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(786); + END_STATE(); + case 956: + ACCEPT_TOKEN(anon_sym_BSLASH_BSLASH); + END_STATE(); + case 957: + ACCEPT_TOKEN(anon_sym_BSLASH_BSLASH); + if (set_contains(sym__symbolic_ident_character_set_1, 12, lookahead)) ADVANCE(794); + END_STATE(); + case 958: + ACCEPT_TOKEN(anon_sym_u2227); + END_STATE(); + case 959: + ACCEPT_TOKEN(anon_sym_SLASH_BSLASH); + END_STATE(); + case 960: + ACCEPT_TOKEN(anon_sym_SLASH_BSLASH); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 961: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 962: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 963: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'A') ADVANCE(986); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 964: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'A') ADVANCE(988); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 965: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'A') ADVANCE(991); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('B' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 966: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'B') ADVANCE(990); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 967: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'B') ADVANCE(992); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 968: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'E') ADVANCE(984); + if (lookahead == 'S') ADVANCE(1001); + if (lookahead == 'r') ADVANCE(1033); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 969: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'E') ADVANCE(984); + if (lookahead == 'S') ADVANCE(1001); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 970: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'E') ADVANCE(1106); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 971: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'E') ADVANCE(985); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 972: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'E') ADVANCE(998); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 973: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'E') ADVANCE(987); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 974: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'E') ADVANCE(999); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 975: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'E') ADVANCE(964); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 976: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'E') ADVANCE(965); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 977: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'I') ADVANCE(1004); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 978: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'I') ADVANCE(982); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 979: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'L') ADVANCE(976); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 980: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'M') ADVANCE(1002); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 981: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'N') ADVANCE(1098); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 982: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'N') ADVANCE(1096); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 983: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'O') ADVANCE(994); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 984: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'R') ADVANCE(980); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 985: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'R') ADVANCE(996); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 986: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'S') ADVANCE(1005); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 987: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'S') ADVANCE(1104); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 988: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'S') ADVANCE(995); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 989: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'S') ADVANCE(977); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 990: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'S') ADVANCE(972); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 991: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'S') ADVANCE(997); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 992: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'S') ADVANCE(974); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 993: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'S') ADVANCE(1003); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 994: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'T') ADVANCE(978); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 995: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'T') ADVANCE(1057); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 996: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'T') ADVANCE(1130); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 997: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'T') ADVANCE(1055); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 998: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'T') ADVANCE(1109); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 999: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'T') ADVANCE(1123); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1000: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'T') ADVANCE(973); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1001: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'U') ADVANCE(966); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1002: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'U') ADVANCE(1000); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1003: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'U') ADVANCE(967); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1004: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'Z') ADVANCE(970); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Y') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1005: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == '_') ADVANCE(989); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1006: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'a') ADVANCE(1036); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1007: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'a') ADVANCE(1041); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1008: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'd') ADVANCE(946); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1009: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'e') ADVANCE(854); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1010: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'e') ADVANCE(1059); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1011: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'e') ADVANCE(847); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1012: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'e') ADVANCE(1027); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1013: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'f') ADVANCE(841); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1014: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'f') ADVANCE(953); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1015: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'g') ADVANCE(1142); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1016: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'h') ADVANCE(1012); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1017: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'i') ADVANCE(1032); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1018: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'i') ADVANCE(1037); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1019: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'i') ADVANCE(1029); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1020: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'i') ADVANCE(1028); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1021: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'l') ADVANCE(1038); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1022: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'm') ADVANCE(1019); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1023: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'm') ADVANCE(1140); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1024: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'm') ADVANCE(1010); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1025: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'n') ADVANCE(1008); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1026: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'n') ADVANCE(948); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1027: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'n') ADVANCE(844); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1028: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'n') ADVANCE(1015); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1029: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'n') ADVANCE(1007); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1030: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'o') ADVANCE(1024); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1031: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'o') ADVANCE(1014); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1032: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'o') ADVANCE(1026); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1033: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'o') ADVANCE(1031); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1034: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'r') ADVANCE(1022); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1035: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'r') ADVANCE(1020); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1036: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 's') ADVANCE(1009); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1037: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 's') ADVANCE(1039); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1038: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 's') ADVANCE(1011); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1039: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 't') ADVANCE(1138); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1040: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 't') ADVANCE(1035); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1041: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 't') ADVANCE(1017); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1042: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == 'u') ADVANCE(1023); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1043: + ACCEPT_TOKEN(sym__hol_alphanumeric); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1044: + ACCEPT_TOKEN(sym__hol_symbolic); + if (lookahead == '"') ADVANCE(38); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1045: + ACCEPT_TOKEN(sym__hol_symbolic); + if (lookahead == '$') ADVANCE(1045); + END_STATE(); + case 1046: + ACCEPT_TOKEN(sym__hol_symbolic); + if (lookahead == '=') ADVANCE(1102); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1047: + ACCEPT_TOKEN(sym__hol_symbolic); + if (lookahead == '=') ADVANCE(1049); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1048: + ACCEPT_TOKEN(sym__hol_symbolic); + ADVANCE_MAP( + '>', 1089, + '!', 1051, + '#', 1051, + '%', 1051, + '&', 1051, + '*', 1051, + '+', 1051, + '-', 1051, + '/', 1051, + ':', 1051, + '<', 1051, + '=', 1051, + '?', 1051, + '@', 1051, + '\\', 1051, + '|', 1051, + ); + END_STATE(); + case 1049: + ACCEPT_TOKEN(sym__hol_symbolic); + ADVANCE_MAP( + '>', 1084, + '!', 1051, + '#', 1051, + '%', 1051, + '&', 1051, + '*', 1051, + '+', 1051, + '-', 1051, + '/', 1051, + ':', 1051, + '<', 1051, + '=', 1051, + '?', 1051, + '@', 1051, + '\\', 1051, + '|', 1051, + ); + END_STATE(); + case 1050: + ACCEPT_TOKEN(sym__hol_symbolic); + if (lookahead == '\\') ADVANCE(960); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1051: + ACCEPT_TOKEN(sym__hol_symbolic); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1052: + ACCEPT_TOKEN(sym_hol_cname_alphanumeric); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1052); + END_STATE(); + case 1053: + ACCEPT_TOKEN(sym_hol_variable); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1053); + END_STATE(); + case 1054: + ACCEPT_TOKEN(anon_sym_OLEAST); + END_STATE(); + case 1055: + ACCEPT_TOKEN(anon_sym_OLEAST); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1056: + ACCEPT_TOKEN(anon_sym_LEAST); + END_STATE(); + case 1057: + ACCEPT_TOKEN(anon_sym_LEAST); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1058: + ACCEPT_TOKEN(anon_sym_some); + END_STATE(); + case 1059: + ACCEPT_TOKEN(anon_sym_some); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1060: + ACCEPT_TOKEN(anon_sym_QMARK_BANG_BANG); + END_STATE(); + case 1061: + ACCEPT_TOKEN(anon_sym_QMARK_BANG_BANG); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1062: + ACCEPT_TOKEN(anon_sym_u2203_BANG); + END_STATE(); + case 1063: + ACCEPT_TOKEN(anon_sym_QMARK_BANG); + if (lookahead == '!') ADVANCE(1060); + END_STATE(); + case 1064: + ACCEPT_TOKEN(anon_sym_QMARK_BANG); + if (lookahead == '!') ADVANCE(1061); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1065: + ACCEPT_TOKEN(anon_sym_u2203); + if (lookahead == '!') ADVANCE(1062); + END_STATE(); + case 1066: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '!') ADVANCE(1063); + END_STATE(); + case 1067: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '!') ADVANCE(1064); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1068: + ACCEPT_TOKEN(anon_sym_u2200); + END_STATE(); + case 1069: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 1070: + ACCEPT_TOKEN(anon_sym_BANG); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1071: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 1072: + ACCEPT_TOKEN(anon_sym_AT); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1073: + ACCEPT_TOKEN(anon_sym_u03bb); + END_STATE(); + case 1074: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '/') ADVANCE(1091); + if (lookahead == '\\') ADVANCE(956); + END_STATE(); + case 1075: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (lookahead == '/') ADVANCE(1092); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1076: + ACCEPT_TOKEN(anon_sym_BSLASH); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1077: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(906); + END_STATE(); + case 1078: + ACCEPT_TOKEN(anon_sym_DASH); + ADVANCE_MAP( + '>', 907, + '!', 1051, + '#', 1051, + '%', 1051, + '&', 1051, + '*', 1051, + '+', 1051, + '-', 1051, + '/', 1051, + ':', 1051, + '<', 1051, + '=', 1051, + '?', 1051, + '@', 1051, + '\\', 1051, + '|', 1051, + ); + END_STATE(); + case 1079: + ACCEPT_TOKEN(anon_sym_DASH); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1080: + ACCEPT_TOKEN(anon_sym_u00ac); + END_STATE(); + case 1081: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 1082: + ACCEPT_TOKEN(anon_sym_u21ce); + END_STATE(); + case 1083: + ACCEPT_TOKEN(anon_sym_LT_EQ_SLASH_EQ_GT); + END_STATE(); + case 1084: + ACCEPT_TOKEN(anon_sym_LT_EQ_SLASH_EQ_GT); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1085: + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + END_STATE(); + case 1086: + ACCEPT_TOKEN(anon_sym_LT_EQ_GT); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1087: + ACCEPT_TOKEN(anon_sym_u21d4); + END_STATE(); + case 1088: + ACCEPT_TOKEN(anon_sym_EQ_EQ_GT); + END_STATE(); + case 1089: + ACCEPT_TOKEN(anon_sym_EQ_EQ_GT); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1090: + ACCEPT_TOKEN(anon_sym_u21d2); + END_STATE(); + case 1091: + ACCEPT_TOKEN(anon_sym_BSLASH_SLASH); + END_STATE(); + case 1092: + ACCEPT_TOKEN(anon_sym_BSLASH_SLASH); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1093: + ACCEPT_TOKEN(anon_sym_u2228); + END_STATE(); + case 1094: + ACCEPT_TOKEN(anon_sym_u2209); + END_STATE(); + case 1095: + ACCEPT_TOKEN(anon_sym_NOTIN); + END_STATE(); + case 1096: + ACCEPT_TOKEN(anon_sym_NOTIN); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1097: + ACCEPT_TOKEN(anon_sym_u2208); + END_STATE(); + case 1098: + ACCEPT_TOKEN(anon_sym_IN); + if (lookahead == 'S') ADVANCE(971); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1099: + ACCEPT_TOKEN(anon_sym_IN); + if (lookahead == 'S') ADVANCE(264); + END_STATE(); + case 1100: + ACCEPT_TOKEN(anon_sym_u227c); + END_STATE(); + case 1101: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 1102: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1103: + ACCEPT_TOKEN(anon_sym_PERMUTES); + END_STATE(); + case 1104: + ACCEPT_TOKEN(anon_sym_PERMUTES); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1105: + ACCEPT_TOKEN(anon_sym_HAS_SIZE); + END_STATE(); + case 1106: + ACCEPT_TOKEN(anon_sym_HAS_SIZE); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1107: + ACCEPT_TOKEN(anon_sym_u2282); + END_STATE(); + case 1108: + ACCEPT_TOKEN(anon_sym_PSUBSET); + END_STATE(); + case 1109: + ACCEPT_TOKEN(anon_sym_PSUBSET); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1110: + ACCEPT_TOKEN(anon_sym_u2286); + if (lookahead == 0x1d63) ADVANCE(1121); + END_STATE(); + case 1111: + ACCEPT_TOKEN(anon_sym_u2265); + END_STATE(); + case 1112: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 1113: + ACCEPT_TOKEN(anon_sym_GT_EQ); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1114: + ACCEPT_TOKEN(anon_sym_u2264); + END_STATE(); + case 1115: + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '/') ADVANCE(249); + if (lookahead == '>') ADVANCE(1085); + END_STATE(); + case 1116: + ACCEPT_TOKEN(anon_sym_LT_EQ); + ADVANCE_MAP( + '/', 1047, + '>', 1086, + '!', 1051, + '#', 1051, + '%', 1051, + '&', 1051, + '*', 1051, + '+', 1051, + '-', 1051, + ':', 1051, + '<', 1051, + '=', 1051, + '?', 1051, + '@', 1051, + '\\', 1051, + '|', 1051, + ); + END_STATE(); + case 1117: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1112); + END_STATE(); + case 1118: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(1113); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1119: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(248); + if (lookahead == '=') ADVANCE(1115); + if (lookahead == '>') ADVANCE(1125); + END_STATE(); + case 1120: + ACCEPT_TOKEN(anon_sym_LT); + ADVANCE_MAP( + '<', 1046, + '=', 1116, + '>', 1126, + '!', 1051, + '#', 1051, + '%', 1051, + '&', 1051, + '*', 1051, + '+', 1051, + '-', 1051, + '/', 1051, + ':', 1051, + '?', 1051, + '@', 1051, + '\\', 1051, + '|', 1051, + ); + END_STATE(); + case 1121: + ACCEPT_TOKEN(anon_sym_u2286u1d63); + END_STATE(); + case 1122: + ACCEPT_TOKEN(anon_sym_RSUBSET); + END_STATE(); + case 1123: + ACCEPT_TOKEN(anon_sym_RSUBSET); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1124: + ACCEPT_TOKEN(anon_sym_u2260); + END_STATE(); + case 1125: + ACCEPT_TOKEN(anon_sym_LT_GT); + END_STATE(); + case 1126: + ACCEPT_TOKEN(anon_sym_LT_GT); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1127: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 1128: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '$') ADVANCE(1045); + END_STATE(); + case 1129: + ACCEPT_TOKEN(anon_sym_INSERT); + END_STATE(); + case 1130: + ACCEPT_TOKEN(anon_sym_INSERT); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1131: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 1132: + ACCEPT_TOKEN(anon_sym_PLUS); + if (set_contains(sym__hol_symbolic_character_set_2, 10, lookahead)) ADVANCE(1051); + END_STATE(); + case 1133: + ACCEPT_TOKEN(anon_sym_o); + END_STATE(); + case 1134: + ACCEPT_TOKEN(anon_sym_o); + if (lookahead == 'f') ADVANCE(855); + END_STATE(); + case 1135: + ACCEPT_TOKEN(anon_sym_o); + if (lookahead == 'f') ADVANCE(857); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1136: + ACCEPT_TOKEN(anon_sym_o); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1137: + ACCEPT_TOKEN(anon_sym_list); + END_STATE(); + case 1138: + ACCEPT_TOKEN(anon_sym_list); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1139: + ACCEPT_TOKEN(anon_sym_num); + END_STATE(); + case 1140: + ACCEPT_TOKEN(anon_sym_num); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1141: + ACCEPT_TOKEN(anon_sym_string); + END_STATE(); + case 1142: + ACCEPT_TOKEN(anon_sym_string); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1143: + ACCEPT_TOKEN(aux_sym_hol_atomic_type_token1); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1143); + END_STATE(); + case 1144: + ACCEPT_TOKEN(sym_hol_true); + if (lookahead == 'e') ADVANCE(470); + END_STATE(); + case 1145: + ACCEPT_TOKEN(sym_hol_true); + if (lookahead == 'e') ADVANCE(1034); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1146: + ACCEPT_TOKEN(sym_hol_true); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1147: + ACCEPT_TOKEN(sym_hol_true); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1052); + END_STATE(); + case 1148: + ACCEPT_TOKEN(sym_hol_false); + END_STATE(); + case 1149: + ACCEPT_TOKEN(sym_hol_false); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1043); + END_STATE(); + case 1150: + ACCEPT_TOKEN(sym_hol_false); + if (lookahead == '\'' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + (0x370 <= lookahead && lookahead <= 0x3ba) || + (0x3bc <= lookahead && lookahead <= 0x3ff)) ADVANCE(1052); + END_STATE(); + case 1151: + ACCEPT_TOKEN(sym_hol_number); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(1151); + END_STATE(); + case 1152: + ACCEPT_TOKEN(sym_hol_string); + END_STATE(); + case 1153: + ACCEPT_TOKEN(sym_hol_string); + if (lookahead == '"') ADVANCE(579); + if (lookahead == '\\') ADVANCE(524); + if (lookahead != 0) ADVANCE(32); + END_STATE(); + case 1154: + ACCEPT_TOKEN(sym_hol_character); + END_STATE(); + case 1155: + ACCEPT_TOKEN(sym_hol_character); + if (lookahead == '"') ADVANCE(581); + if (lookahead == '\\') ADVANCE(525); + if (lookahead != 0) ADVANCE(34); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 533, .external_lex_state = 1}, + [2] = {.lex_state = 533, .external_lex_state = 1}, + [3] = {.lex_state = 5, .external_lex_state = 1}, + [4] = {.lex_state = 5, .external_lex_state = 1}, + [5] = {.lex_state = 6, .external_lex_state = 1}, + [6] = {.lex_state = 6, .external_lex_state = 1}, + [7] = {.lex_state = 9, .external_lex_state = 1}, + [8] = {.lex_state = 9, .external_lex_state = 1}, + [9] = {.lex_state = 15, .external_lex_state = 1}, + [10] = {.lex_state = 11, .external_lex_state = 1}, + [11] = {.lex_state = 10, .external_lex_state = 1}, + [12] = {.lex_state = 13, .external_lex_state = 1}, + [13] = {.lex_state = 13, .external_lex_state = 1}, + [14] = {.lex_state = 15, .external_lex_state = 1}, + [15] = {.lex_state = 17, .external_lex_state = 1}, + [16] = {.lex_state = 17, .external_lex_state = 1}, + [17] = {.lex_state = 11, .external_lex_state = 1}, + [18] = {.lex_state = 10, .external_lex_state = 1}, + [19] = {.lex_state = 16, .external_lex_state = 1}, + [20] = {.lex_state = 18, .external_lex_state = 1}, + [21] = {.lex_state = 18, .external_lex_state = 1}, + [22] = {.lex_state = 14, .external_lex_state = 1}, + [23] = {.lex_state = 12, .external_lex_state = 1}, + [24] = {.lex_state = 12, .external_lex_state = 1}, + [25] = {.lex_state = 14, .external_lex_state = 1}, + [26] = {.lex_state = 16, .external_lex_state = 1}, + [27] = {.lex_state = 7, .external_lex_state = 1}, + [28] = {.lex_state = 7, .external_lex_state = 1}, + [29] = {.lex_state = 7, .external_lex_state = 1}, + [30] = {.lex_state = 7, .external_lex_state = 1}, + [31] = {.lex_state = 7, .external_lex_state = 1}, + [32] = {.lex_state = 8, .external_lex_state = 1}, + [33] = {.lex_state = 5, .external_lex_state = 1}, + [34] = {.lex_state = 8, .external_lex_state = 1}, + [35] = {.lex_state = 8, .external_lex_state = 1}, + [36] = {.lex_state = 8, .external_lex_state = 1}, + [37] = {.lex_state = 8, .external_lex_state = 1}, + [38] = {.lex_state = 5, .external_lex_state = 1}, + [39] = {.lex_state = 5, .external_lex_state = 1}, + [40] = {.lex_state = 5, .external_lex_state = 1}, + [41] = {.lex_state = 5, .external_lex_state = 1}, + [42] = {.lex_state = 5, .external_lex_state = 1}, + [43] = {.lex_state = 5, .external_lex_state = 1}, + [44] = {.lex_state = 5, .external_lex_state = 1}, + [45] = {.lex_state = 5, .external_lex_state = 1}, + [46] = {.lex_state = 5, .external_lex_state = 1}, + [47] = {.lex_state = 5, .external_lex_state = 1}, + [48] = {.lex_state = 5, .external_lex_state = 1}, + [49] = {.lex_state = 5, .external_lex_state = 1}, + [50] = {.lex_state = 5, .external_lex_state = 1}, + [51] = {.lex_state = 5, .external_lex_state = 1}, + [52] = {.lex_state = 5, .external_lex_state = 1}, + [53] = {.lex_state = 5, .external_lex_state = 1}, + [54] = {.lex_state = 5, .external_lex_state = 1}, + [55] = {.lex_state = 5, .external_lex_state = 1}, + [56] = {.lex_state = 5, .external_lex_state = 1}, + [57] = {.lex_state = 5, .external_lex_state = 1}, + [58] = {.lex_state = 5, .external_lex_state = 1}, + [59] = {.lex_state = 5, .external_lex_state = 1}, + [60] = {.lex_state = 5, .external_lex_state = 1}, + [61] = {.lex_state = 5, .external_lex_state = 1}, + [62] = {.lex_state = 5, .external_lex_state = 1}, + [63] = {.lex_state = 5, .external_lex_state = 1}, + [64] = {.lex_state = 5, .external_lex_state = 1}, + [65] = {.lex_state = 5, .external_lex_state = 1}, + [66] = {.lex_state = 5, .external_lex_state = 1}, + [67] = {.lex_state = 5, .external_lex_state = 1}, + [68] = {.lex_state = 5, .external_lex_state = 1}, + [69] = {.lex_state = 5, .external_lex_state = 1}, + [70] = {.lex_state = 5, .external_lex_state = 1}, + [71] = {.lex_state = 5, .external_lex_state = 1}, + [72] = {.lex_state = 5, .external_lex_state = 1}, + [73] = {.lex_state = 5, .external_lex_state = 1}, + [74] = {.lex_state = 6, .external_lex_state = 1}, + [75] = {.lex_state = 6, .external_lex_state = 1}, + [76] = {.lex_state = 6, .external_lex_state = 1}, + [77] = {.lex_state = 6, .external_lex_state = 1}, + [78] = {.lex_state = 6, .external_lex_state = 1}, + [79] = {.lex_state = 6, .external_lex_state = 1}, + [80] = {.lex_state = 6, .external_lex_state = 1}, + [81] = {.lex_state = 6, .external_lex_state = 1}, + [82] = {.lex_state = 6, .external_lex_state = 1}, + [83] = {.lex_state = 6, .external_lex_state = 1}, + [84] = {.lex_state = 6, .external_lex_state = 1}, + [85] = {.lex_state = 6, .external_lex_state = 1}, + [86] = {.lex_state = 6, .external_lex_state = 1}, + [87] = {.lex_state = 6, .external_lex_state = 1}, + [88] = {.lex_state = 6, .external_lex_state = 1}, + [89] = {.lex_state = 6, .external_lex_state = 1}, + [90] = {.lex_state = 6, .external_lex_state = 1}, + [91] = {.lex_state = 6, .external_lex_state = 1}, + [92] = {.lex_state = 6, .external_lex_state = 1}, + [93] = {.lex_state = 6, .external_lex_state = 1}, + [94] = {.lex_state = 6, .external_lex_state = 1}, + [95] = {.lex_state = 6, .external_lex_state = 1}, + [96] = {.lex_state = 6, .external_lex_state = 1}, + [97] = {.lex_state = 6, .external_lex_state = 1}, + [98] = {.lex_state = 6, .external_lex_state = 1}, + [99] = {.lex_state = 6, .external_lex_state = 1}, + [100] = {.lex_state = 19, .external_lex_state = 1}, + [101] = {.lex_state = 19, .external_lex_state = 1}, + [102] = {.lex_state = 19, .external_lex_state = 1}, + [103] = {.lex_state = 19, .external_lex_state = 1}, + [104] = {.lex_state = 19, .external_lex_state = 1}, + [105] = {.lex_state = 23, .external_lex_state = 1}, + [106] = {.lex_state = 9, .external_lex_state = 1}, + [107] = {.lex_state = 20, .external_lex_state = 1}, + [108] = {.lex_state = 20, .external_lex_state = 1}, + [109] = {.lex_state = 9, .external_lex_state = 1}, + [110] = {.lex_state = 9, .external_lex_state = 1}, + [111] = {.lex_state = 23, .external_lex_state = 1}, + [112] = {.lex_state = 23, .external_lex_state = 1}, + [113] = {.lex_state = 23, .external_lex_state = 1}, + [114] = {.lex_state = 25, .external_lex_state = 1}, + [115] = {.lex_state = 25, .external_lex_state = 1}, + [116] = {.lex_state = 25, .external_lex_state = 1}, + [117] = {.lex_state = 23, .external_lex_state = 1}, + [118] = {.lex_state = 20, .external_lex_state = 1}, + [119] = {.lex_state = 25, .external_lex_state = 1}, + [120] = {.lex_state = 20, .external_lex_state = 1}, + [121] = {.lex_state = 27, .external_lex_state = 1}, + [122] = {.lex_state = 27, .external_lex_state = 1}, + [123] = {.lex_state = 27, .external_lex_state = 1}, + [124] = {.lex_state = 25, .external_lex_state = 1}, + [125] = {.lex_state = 21, .external_lex_state = 1}, + [126] = {.lex_state = 21, .external_lex_state = 1}, + [127] = {.lex_state = 21, .external_lex_state = 1}, + [128] = {.lex_state = 27, .external_lex_state = 1}, + [129] = {.lex_state = 21, .external_lex_state = 1}, + [130] = {.lex_state = 20, .external_lex_state = 1}, + [131] = {.lex_state = 9, .external_lex_state = 1}, + [132] = {.lex_state = 21, .external_lex_state = 1}, + [133] = {.lex_state = 9, .external_lex_state = 1}, + [134] = {.lex_state = 9, .external_lex_state = 1}, + [135] = {.lex_state = 9, .external_lex_state = 1}, + [136] = {.lex_state = 9, .external_lex_state = 1}, + [137] = {.lex_state = 9, .external_lex_state = 1}, + [138] = {.lex_state = 27, .external_lex_state = 1}, + [139] = {.lex_state = 22, .external_lex_state = 1}, + [140] = {.lex_state = 15, .external_lex_state = 1}, + [141] = {.lex_state = 11, .external_lex_state = 1}, + [142] = {.lex_state = 11, .external_lex_state = 1}, + [143] = {.lex_state = 11, .external_lex_state = 1}, + [144] = {.lex_state = 11, .external_lex_state = 1}, + [145] = {.lex_state = 15, .external_lex_state = 1}, + [146] = {.lex_state = 13, .external_lex_state = 1}, + [147] = {.lex_state = 15, .external_lex_state = 1}, + [148] = {.lex_state = 24, .external_lex_state = 1}, + [149] = {.lex_state = 24, .external_lex_state = 1}, + [150] = {.lex_state = 26, .external_lex_state = 1}, + [151] = {.lex_state = 13, .external_lex_state = 1}, + [152] = {.lex_state = 22, .external_lex_state = 1}, + [153] = {.lex_state = 24, .external_lex_state = 1}, + [154] = {.lex_state = 28, .external_lex_state = 1}, + [155] = {.lex_state = 26, .external_lex_state = 1}, + [156] = {.lex_state = 9, .external_lex_state = 1}, + [157] = {.lex_state = 28, .external_lex_state = 1}, + [158] = {.lex_state = 28, .external_lex_state = 1}, + [159] = {.lex_state = 24, .external_lex_state = 1}, + [160] = {.lex_state = 26, .external_lex_state = 1}, + [161] = {.lex_state = 15, .external_lex_state = 1}, + [162] = {.lex_state = 13, .external_lex_state = 1}, + [163] = {.lex_state = 13, .external_lex_state = 1}, + [164] = {.lex_state = 9, .external_lex_state = 1}, + [165] = {.lex_state = 26, .external_lex_state = 1}, + [166] = {.lex_state = 17, .external_lex_state = 1}, + [167] = {.lex_state = 17, .external_lex_state = 1}, + [168] = {.lex_state = 17, .external_lex_state = 1}, + [169] = {.lex_state = 17, .external_lex_state = 1}, + [170] = {.lex_state = 15, .external_lex_state = 1}, + [171] = {.lex_state = 15, .external_lex_state = 1}, + [172] = {.lex_state = 9, .external_lex_state = 1}, + [173] = {.lex_state = 9, .external_lex_state = 1}, + [174] = {.lex_state = 9, .external_lex_state = 1}, + [175] = {.lex_state = 17, .external_lex_state = 1}, + [176] = {.lex_state = 9, .external_lex_state = 1}, + [177] = {.lex_state = 9, .external_lex_state = 1}, + [178] = {.lex_state = 9, .external_lex_state = 1}, + [179] = {.lex_state = 9, .external_lex_state = 1}, + [180] = {.lex_state = 15, .external_lex_state = 1}, + [181] = {.lex_state = 9, .external_lex_state = 1}, + [182] = {.lex_state = 26, .external_lex_state = 1}, + [183] = {.lex_state = 11, .external_lex_state = 1}, + [184] = {.lex_state = 13, .external_lex_state = 1}, + [185] = {.lex_state = 28, .external_lex_state = 1}, + [186] = {.lex_state = 9, .external_lex_state = 1}, + [187] = {.lex_state = 9, .external_lex_state = 1}, + [188] = {.lex_state = 17, .external_lex_state = 1}, + [189] = {.lex_state = 9, .external_lex_state = 1}, + [190] = {.lex_state = 17, .external_lex_state = 1}, + [191] = {.lex_state = 24, .external_lex_state = 1}, + [192] = {.lex_state = 9, .external_lex_state = 1}, + [193] = {.lex_state = 9, .external_lex_state = 1}, + [194] = {.lex_state = 9, .external_lex_state = 1}, + [195] = {.lex_state = 9, .external_lex_state = 1}, + [196] = {.lex_state = 9, .external_lex_state = 1}, + [197] = {.lex_state = 9, .external_lex_state = 1}, + [198] = {.lex_state = 9, .external_lex_state = 1}, + [199] = {.lex_state = 9, .external_lex_state = 1}, + [200] = {.lex_state = 9, .external_lex_state = 1}, + [201] = {.lex_state = 9, .external_lex_state = 1}, + [202] = {.lex_state = 9, .external_lex_state = 1}, + [203] = {.lex_state = 9, .external_lex_state = 1}, + [204] = {.lex_state = 11, .external_lex_state = 1}, + [205] = {.lex_state = 9, .external_lex_state = 1}, + [206] = {.lex_state = 11, .external_lex_state = 1}, + [207] = {.lex_state = 13, .external_lex_state = 1}, + [208] = {.lex_state = 22, .external_lex_state = 1}, + [209] = {.lex_state = 9, .external_lex_state = 1}, + [210] = {.lex_state = 22, .external_lex_state = 1}, + [211] = {.lex_state = 13, .external_lex_state = 1}, + [212] = {.lex_state = 13, .external_lex_state = 1}, + [213] = {.lex_state = 15, .external_lex_state = 1}, + [214] = {.lex_state = 15, .external_lex_state = 1}, + [215] = {.lex_state = 17, .external_lex_state = 1}, + [216] = {.lex_state = 17, .external_lex_state = 1}, + [217] = {.lex_state = 11, .external_lex_state = 1}, + [218] = {.lex_state = 11, .external_lex_state = 1}, + [219] = {.lex_state = 22, .external_lex_state = 1}, + [220] = {.lex_state = 28, .external_lex_state = 1}, + [221] = {.lex_state = 13, .external_lex_state = 1}, + [222] = {.lex_state = 9, .external_lex_state = 1}, + [223] = {.lex_state = 13, .external_lex_state = 1}, + [224] = {.lex_state = 10, .external_lex_state = 1}, + [225] = {.lex_state = 10, .external_lex_state = 1}, + [226] = {.lex_state = 10, .external_lex_state = 1}, + [227] = {.lex_state = 13, .external_lex_state = 1}, + [228] = {.lex_state = 15, .external_lex_state = 1}, + [229] = {.lex_state = 15, .external_lex_state = 1}, + [230] = {.lex_state = 15, .external_lex_state = 1}, + [231] = {.lex_state = 10, .external_lex_state = 1}, + [232] = {.lex_state = 10, .external_lex_state = 1}, + [233] = {.lex_state = 10, .external_lex_state = 1}, + [234] = {.lex_state = 10, .external_lex_state = 1}, + [235] = {.lex_state = 10, .external_lex_state = 1}, + [236] = {.lex_state = 10, .external_lex_state = 1}, + [237] = {.lex_state = 10, .external_lex_state = 1}, + [238] = {.lex_state = 10, .external_lex_state = 1}, + [239] = {.lex_state = 10, .external_lex_state = 1}, + [240] = {.lex_state = 10, .external_lex_state = 1}, + [241] = {.lex_state = 10, .external_lex_state = 1}, + [242] = {.lex_state = 10, .external_lex_state = 1}, + [243] = {.lex_state = 10, .external_lex_state = 1}, + [244] = {.lex_state = 15, .external_lex_state = 1}, + [245] = {.lex_state = 10, .external_lex_state = 1}, + [246] = {.lex_state = 13, .external_lex_state = 1}, + [247] = {.lex_state = 13, .external_lex_state = 1}, + [248] = {.lex_state = 13, .external_lex_state = 1}, + [249] = {.lex_state = 13, .external_lex_state = 1}, + [250] = {.lex_state = 13, .external_lex_state = 1}, + [251] = {.lex_state = 17, .external_lex_state = 1}, + [252] = {.lex_state = 13, .external_lex_state = 1}, + [253] = {.lex_state = 13, .external_lex_state = 1}, + [254] = {.lex_state = 13, .external_lex_state = 1}, + [255] = {.lex_state = 13, .external_lex_state = 1}, + [256] = {.lex_state = 13, .external_lex_state = 1}, + [257] = {.lex_state = 13, .external_lex_state = 1}, + [258] = {.lex_state = 13, .external_lex_state = 1}, + [259] = {.lex_state = 13, .external_lex_state = 1}, + [260] = {.lex_state = 17, .external_lex_state = 1}, + [261] = {.lex_state = 13, .external_lex_state = 1}, + [262] = {.lex_state = 15, .external_lex_state = 1}, + [263] = {.lex_state = 15, .external_lex_state = 1}, + [264] = {.lex_state = 15, .external_lex_state = 1}, + [265] = {.lex_state = 15, .external_lex_state = 1}, + [266] = {.lex_state = 15, .external_lex_state = 1}, + [267] = {.lex_state = 11, .external_lex_state = 1}, + [268] = {.lex_state = 15, .external_lex_state = 1}, + [269] = {.lex_state = 15, .external_lex_state = 1}, + [270] = {.lex_state = 15, .external_lex_state = 1}, + [271] = {.lex_state = 13, .external_lex_state = 1}, + [272] = {.lex_state = 13, .external_lex_state = 1}, + [273] = {.lex_state = 13, .external_lex_state = 1}, + [274] = {.lex_state = 13, .external_lex_state = 1}, + [275] = {.lex_state = 13, .external_lex_state = 1}, + [276] = {.lex_state = 13, .external_lex_state = 1}, + [277] = {.lex_state = 13, .external_lex_state = 1}, + [278] = {.lex_state = 13, .external_lex_state = 1}, + [279] = {.lex_state = 13, .external_lex_state = 1}, + [280] = {.lex_state = 15, .external_lex_state = 1}, + [281] = {.lex_state = 15, .external_lex_state = 1}, + [282] = {.lex_state = 13, .external_lex_state = 1}, + [283] = {.lex_state = 15, .external_lex_state = 1}, + [284] = {.lex_state = 15, .external_lex_state = 1}, + [285] = {.lex_state = 13, .external_lex_state = 1}, + [286] = {.lex_state = 11, .external_lex_state = 1}, + [287] = {.lex_state = 17, .external_lex_state = 1}, + [288] = {.lex_state = 17, .external_lex_state = 1}, + [289] = {.lex_state = 17, .external_lex_state = 1}, + [290] = {.lex_state = 17, .external_lex_state = 1}, + [291] = {.lex_state = 17, .external_lex_state = 1}, + [292] = {.lex_state = 17, .external_lex_state = 1}, + [293] = {.lex_state = 17, .external_lex_state = 1}, + [294] = {.lex_state = 10, .external_lex_state = 1}, + [295] = {.lex_state = 17, .external_lex_state = 1}, + [296] = {.lex_state = 17, .external_lex_state = 1}, + [297] = {.lex_state = 17, .external_lex_state = 1}, + [298] = {.lex_state = 15, .external_lex_state = 1}, + [299] = {.lex_state = 10, .external_lex_state = 1}, + [300] = {.lex_state = 15, .external_lex_state = 1}, + [301] = {.lex_state = 15, .external_lex_state = 1}, + [302] = {.lex_state = 15, .external_lex_state = 1}, + [303] = {.lex_state = 15, .external_lex_state = 1}, + [304] = {.lex_state = 15, .external_lex_state = 1}, + [305] = {.lex_state = 15, .external_lex_state = 1}, + [306] = {.lex_state = 15, .external_lex_state = 1}, + [307] = {.lex_state = 15, .external_lex_state = 1}, + [308] = {.lex_state = 17, .external_lex_state = 1}, + [309] = {.lex_state = 17, .external_lex_state = 1}, + [310] = {.lex_state = 15, .external_lex_state = 1}, + [311] = {.lex_state = 17, .external_lex_state = 1}, + [312] = {.lex_state = 17, .external_lex_state = 1}, + [313] = {.lex_state = 15, .external_lex_state = 1}, + [314] = {.lex_state = 11, .external_lex_state = 1}, + [315] = {.lex_state = 11, .external_lex_state = 1}, + [316] = {.lex_state = 11, .external_lex_state = 1}, + [317] = {.lex_state = 11, .external_lex_state = 1}, + [318] = {.lex_state = 11, .external_lex_state = 1}, + [319] = {.lex_state = 11, .external_lex_state = 1}, + [320] = {.lex_state = 11, .external_lex_state = 1}, + [321] = {.lex_state = 11, .external_lex_state = 1}, + [322] = {.lex_state = 17, .external_lex_state = 1}, + [323] = {.lex_state = 17, .external_lex_state = 1}, + [324] = {.lex_state = 17, .external_lex_state = 1}, + [325] = {.lex_state = 17, .external_lex_state = 1}, + [326] = {.lex_state = 17, .external_lex_state = 1}, + [327] = {.lex_state = 17, .external_lex_state = 1}, + [328] = {.lex_state = 17, .external_lex_state = 1}, + [329] = {.lex_state = 17, .external_lex_state = 1}, + [330] = {.lex_state = 17, .external_lex_state = 1}, + [331] = {.lex_state = 17, .external_lex_state = 1}, + [332] = {.lex_state = 11, .external_lex_state = 1}, + [333] = {.lex_state = 11, .external_lex_state = 1}, + [334] = {.lex_state = 17, .external_lex_state = 1}, + [335] = {.lex_state = 11, .external_lex_state = 1}, + [336] = {.lex_state = 11, .external_lex_state = 1}, + [337] = {.lex_state = 17, .external_lex_state = 1}, + [338] = {.lex_state = 11, .external_lex_state = 1}, + [339] = {.lex_state = 11, .external_lex_state = 1}, + [340] = {.lex_state = 11, .external_lex_state = 1}, + [341] = {.lex_state = 11, .external_lex_state = 1}, + [342] = {.lex_state = 11, .external_lex_state = 1}, + [343] = {.lex_state = 11, .external_lex_state = 1}, + [344] = {.lex_state = 11, .external_lex_state = 1}, + [345] = {.lex_state = 11, .external_lex_state = 1}, + [346] = {.lex_state = 11, .external_lex_state = 1}, + [347] = {.lex_state = 11, .external_lex_state = 1}, + [348] = {.lex_state = 11, .external_lex_state = 1}, + [349] = {.lex_state = 11, .external_lex_state = 1}, + [350] = {.lex_state = 11, .external_lex_state = 1}, + [351] = {.lex_state = 11, .external_lex_state = 1}, + [352] = {.lex_state = 10, .external_lex_state = 1}, + [353] = {.lex_state = 10, .external_lex_state = 1}, + [354] = {.lex_state = 10, .external_lex_state = 1}, + [355] = {.lex_state = 10, .external_lex_state = 1}, + [356] = {.lex_state = 10, .external_lex_state = 1}, + [357] = {.lex_state = 13, .external_lex_state = 1}, + [358] = {.lex_state = 10, .external_lex_state = 1}, + [359] = {.lex_state = 10, .external_lex_state = 1}, + [360] = {.lex_state = 15, .external_lex_state = 1}, + [361] = {.lex_state = 14, .external_lex_state = 1}, + [362] = {.lex_state = 12, .external_lex_state = 1}, + [363] = {.lex_state = 16, .external_lex_state = 1}, + [364] = {.lex_state = 18, .external_lex_state = 1}, + [365] = {.lex_state = 18, .external_lex_state = 1}, + [366] = {.lex_state = 14, .external_lex_state = 1}, + [367] = {.lex_state = 18, .external_lex_state = 1}, + [368] = {.lex_state = 12, .external_lex_state = 1}, + [369] = {.lex_state = 14, .external_lex_state = 1}, + [370] = {.lex_state = 18, .external_lex_state = 1}, + [371] = {.lex_state = 14, .external_lex_state = 1}, + [372] = {.lex_state = 18, .external_lex_state = 1}, + [373] = {.lex_state = 16, .external_lex_state = 1}, + [374] = {.lex_state = 14, .external_lex_state = 1}, + [375] = {.lex_state = 14, .external_lex_state = 1}, + [376] = {.lex_state = 12, .external_lex_state = 1}, + [377] = {.lex_state = 12, .external_lex_state = 1}, + [378] = {.lex_state = 18, .external_lex_state = 1}, + [379] = {.lex_state = 16, .external_lex_state = 1}, + [380] = {.lex_state = 16, .external_lex_state = 1}, + [381] = {.lex_state = 16, .external_lex_state = 1}, + [382] = {.lex_state = 14, .external_lex_state = 1}, + [383] = {.lex_state = 18, .external_lex_state = 1}, + [384] = {.lex_state = 14, .external_lex_state = 1}, + [385] = {.lex_state = 14, .external_lex_state = 1}, + [386] = {.lex_state = 14, .external_lex_state = 1}, + [387] = {.lex_state = 14, .external_lex_state = 1}, + [388] = {.lex_state = 14, .external_lex_state = 1}, + [389] = {.lex_state = 12, .external_lex_state = 1}, + [390] = {.lex_state = 12, .external_lex_state = 1}, + [391] = {.lex_state = 14, .external_lex_state = 1}, + [392] = {.lex_state = 16, .external_lex_state = 1}, + [393] = {.lex_state = 18, .external_lex_state = 1}, + [394] = {.lex_state = 14, .external_lex_state = 1}, + [395] = {.lex_state = 18, .external_lex_state = 1}, + [396] = {.lex_state = 18, .external_lex_state = 1}, + [397] = {.lex_state = 12, .external_lex_state = 1}, + [398] = {.lex_state = 18, .external_lex_state = 1}, + [399] = {.lex_state = 12, .external_lex_state = 1}, + [400] = {.lex_state = 16, .external_lex_state = 1}, + [401] = {.lex_state = 14, .external_lex_state = 1}, + [402] = {.lex_state = 16, .external_lex_state = 1}, + [403] = {.lex_state = 14, .external_lex_state = 1}, + [404] = {.lex_state = 12, .external_lex_state = 1}, + [405] = {.lex_state = 18, .external_lex_state = 1}, + [406] = {.lex_state = 14, .external_lex_state = 1}, + [407] = {.lex_state = 18, .external_lex_state = 1}, + [408] = {.lex_state = 16, .external_lex_state = 1}, + [409] = {.lex_state = 18, .external_lex_state = 1}, + [410] = {.lex_state = 18, .external_lex_state = 1}, + [411] = {.lex_state = 18, .external_lex_state = 1}, + [412] = {.lex_state = 18, .external_lex_state = 1}, + [413] = {.lex_state = 18, .external_lex_state = 1}, + [414] = {.lex_state = 18, .external_lex_state = 1}, + [415] = {.lex_state = 18, .external_lex_state = 1}, + [416] = {.lex_state = 18, .external_lex_state = 1}, + [417] = {.lex_state = 18, .external_lex_state = 1}, + [418] = {.lex_state = 12, .external_lex_state = 1}, + [419] = {.lex_state = 16, .external_lex_state = 1}, + [420] = {.lex_state = 14, .external_lex_state = 1}, + [421] = {.lex_state = 16, .external_lex_state = 1}, + [422] = {.lex_state = 16, .external_lex_state = 1}, + [423] = {.lex_state = 16, .external_lex_state = 1}, + [424] = {.lex_state = 16, .external_lex_state = 1}, + [425] = {.lex_state = 16, .external_lex_state = 1}, + [426] = {.lex_state = 16, .external_lex_state = 1}, + [427] = {.lex_state = 12, .external_lex_state = 1}, + [428] = {.lex_state = 18, .external_lex_state = 1}, + [429] = {.lex_state = 12, .external_lex_state = 1}, + [430] = {.lex_state = 16, .external_lex_state = 1}, + [431] = {.lex_state = 18, .external_lex_state = 1}, + [432] = {.lex_state = 12, .external_lex_state = 1}, + [433] = {.lex_state = 16, .external_lex_state = 1}, + [434] = {.lex_state = 16, .external_lex_state = 1}, + [435] = {.lex_state = 16, .external_lex_state = 1}, + [436] = {.lex_state = 12, .external_lex_state = 1}, + [437] = {.lex_state = 18, .external_lex_state = 1}, + [438] = {.lex_state = 16, .external_lex_state = 1}, + [439] = {.lex_state = 16, .external_lex_state = 1}, + [440] = {.lex_state = 16, .external_lex_state = 1}, + [441] = {.lex_state = 14, .external_lex_state = 1}, + [442] = {.lex_state = 14, .external_lex_state = 1}, + [443] = {.lex_state = 16, .external_lex_state = 1}, + [444] = {.lex_state = 16, .external_lex_state = 1}, + [445] = {.lex_state = 14, .external_lex_state = 1}, + [446] = {.lex_state = 12, .external_lex_state = 1}, + [447] = {.lex_state = 18, .external_lex_state = 1}, + [448] = {.lex_state = 14, .external_lex_state = 1}, + [449] = {.lex_state = 14, .external_lex_state = 1}, + [450] = {.lex_state = 16, .external_lex_state = 1}, + [451] = {.lex_state = 14, .external_lex_state = 1}, + [452] = {.lex_state = 14, .external_lex_state = 1}, + [453] = {.lex_state = 12, .external_lex_state = 1}, + [454] = {.lex_state = 14, .external_lex_state = 1}, + [455] = {.lex_state = 12, .external_lex_state = 1}, + [456] = {.lex_state = 12, .external_lex_state = 1}, + [457] = {.lex_state = 12, .external_lex_state = 1}, + [458] = {.lex_state = 12, .external_lex_state = 1}, + [459] = {.lex_state = 12, .external_lex_state = 1}, + [460] = {.lex_state = 12, .external_lex_state = 1}, + [461] = {.lex_state = 12, .external_lex_state = 1}, + [462] = {.lex_state = 12, .external_lex_state = 1}, + [463] = {.lex_state = 12, .external_lex_state = 1}, + [464] = {.lex_state = 12, .external_lex_state = 1}, + [465] = {.lex_state = 540, .external_lex_state = 1}, + [466] = {.lex_state = 540, .external_lex_state = 1}, + [467] = {.lex_state = 540, .external_lex_state = 1}, + [468] = {.lex_state = 538, .external_lex_state = 1}, + [469] = {.lex_state = 538, .external_lex_state = 1}, + [470] = {.lex_state = 541, .external_lex_state = 1}, + [471] = {.lex_state = 541, .external_lex_state = 1}, + [472] = {.lex_state = 544, .external_lex_state = 1}, + [473] = {.lex_state = 544, .external_lex_state = 1}, + [474] = {.lex_state = 544, .external_lex_state = 1}, + [475] = {.lex_state = 541, .external_lex_state = 1}, + [476] = {.lex_state = 538, .external_lex_state = 1}, + [477] = {.lex_state = 539, .external_lex_state = 1}, + [478] = {.lex_state = 539, .external_lex_state = 1}, + [479] = {.lex_state = 539, .external_lex_state = 1}, + [480] = {.lex_state = 545, .external_lex_state = 1}, + [481] = {.lex_state = 545, .external_lex_state = 1}, + [482] = {.lex_state = 545, .external_lex_state = 1}, + [483] = {.lex_state = 542, .external_lex_state = 1}, + [484] = {.lex_state = 542, .external_lex_state = 1}, + [485] = {.lex_state = 542, .external_lex_state = 1}, + [486] = {.lex_state = 543, .external_lex_state = 1}, + [487] = {.lex_state = 543, .external_lex_state = 1}, + [488] = {.lex_state = 543, .external_lex_state = 1}, + [489] = {.lex_state = 58, .external_lex_state = 1}, + [490] = {.lex_state = 58, .external_lex_state = 1}, + [491] = {.lex_state = 58, .external_lex_state = 1}, + [492] = {.lex_state = 62, .external_lex_state = 1}, + [493] = {.lex_state = 62, .external_lex_state = 1}, + [494] = {.lex_state = 62, .external_lex_state = 1}, + [495] = {.lex_state = 48, .external_lex_state = 1}, + [496] = {.lex_state = 48, .external_lex_state = 1}, + [497] = {.lex_state = 48, .external_lex_state = 1}, + [498] = {.lex_state = 45, .external_lex_state = 1}, + [499] = {.lex_state = 45, .external_lex_state = 1}, + [500] = {.lex_state = 45, .external_lex_state = 1}, + [501] = {.lex_state = 64, .external_lex_state = 1}, + [502] = {.lex_state = 60, .external_lex_state = 1}, + [503] = {.lex_state = 78, .external_lex_state = 1}, + [504] = {.lex_state = 46, .external_lex_state = 1}, + [505] = {.lex_state = 46, .external_lex_state = 1}, + [506] = {.lex_state = 46, .external_lex_state = 1}, + [507] = {.lex_state = 60, .external_lex_state = 1}, + [508] = {.lex_state = 64, .external_lex_state = 1}, + [509] = {.lex_state = 64, .external_lex_state = 1}, + [510] = {.lex_state = 49, .external_lex_state = 1}, + [511] = {.lex_state = 49, .external_lex_state = 1}, + [512] = {.lex_state = 49, .external_lex_state = 1}, + [513] = {.lex_state = 52, .external_lex_state = 1}, + [514] = {.lex_state = 52, .external_lex_state = 1}, + [515] = {.lex_state = 52, .external_lex_state = 1}, + [516] = {.lex_state = 63, .external_lex_state = 1}, + [517] = {.lex_state = 63, .external_lex_state = 1}, + [518] = {.lex_state = 63, .external_lex_state = 1}, + [519] = {.lex_state = 82, .external_lex_state = 1}, + [520] = {.lex_state = 54, .external_lex_state = 1}, + [521] = {.lex_state = 82, .external_lex_state = 1}, + [522] = {.lex_state = 82, .external_lex_state = 1}, + [523] = {.lex_state = 54, .external_lex_state = 1}, + [524] = {.lex_state = 54, .external_lex_state = 1}, + [525] = {.lex_state = 66, .external_lex_state = 1}, + [526] = {.lex_state = 78, .external_lex_state = 1}, + [527] = {.lex_state = 66, .external_lex_state = 1}, + [528] = {.lex_state = 66, .external_lex_state = 1}, + [529] = {.lex_state = 59, .external_lex_state = 1}, + [530] = {.lex_state = 59, .external_lex_state = 1}, + [531] = {.lex_state = 59, .external_lex_state = 1}, + [532] = {.lex_state = 78, .external_lex_state = 1}, + [533] = {.lex_state = 60, .external_lex_state = 1}, + [534] = {.lex_state = 45, .external_lex_state = 1}, + [535] = {.lex_state = 68, .external_lex_state = 1}, + [536] = {.lex_state = 45, .external_lex_state = 1}, + [537] = {.lex_state = 55, .external_lex_state = 1}, + [538] = {.lex_state = 55, .external_lex_state = 1}, + [539] = {.lex_state = 55, .external_lex_state = 1}, + [540] = {.lex_state = 80, .external_lex_state = 1}, + [541] = {.lex_state = 80, .external_lex_state = 1}, + [542] = {.lex_state = 80, .external_lex_state = 1}, + [543] = {.lex_state = 56, .external_lex_state = 1}, + [544] = {.lex_state = 56, .external_lex_state = 1}, + [545] = {.lex_state = 56, .external_lex_state = 1}, + [546] = {.lex_state = 67, .external_lex_state = 1}, + [547] = {.lex_state = 67, .external_lex_state = 1}, + [548] = {.lex_state = 67, .external_lex_state = 1}, + [549] = {.lex_state = 79, .external_lex_state = 1}, + [550] = {.lex_state = 79, .external_lex_state = 1}, + [551] = {.lex_state = 47, .external_lex_state = 1}, + [552] = {.lex_state = 47, .external_lex_state = 1}, + [553] = {.lex_state = 47, .external_lex_state = 1}, + [554] = {.lex_state = 65, .external_lex_state = 1}, + [555] = {.lex_state = 65, .external_lex_state = 1}, + [556] = {.lex_state = 65, .external_lex_state = 1}, + [557] = {.lex_state = 79, .external_lex_state = 1}, + [558] = {.lex_state = 74, .external_lex_state = 1}, + [559] = {.lex_state = 74, .external_lex_state = 1}, + [560] = {.lex_state = 74, .external_lex_state = 1}, + [561] = {.lex_state = 53, .external_lex_state = 1}, + [562] = {.lex_state = 53, .external_lex_state = 1}, + [563] = {.lex_state = 53, .external_lex_state = 1}, + [564] = {.lex_state = 50, .external_lex_state = 1}, + [565] = {.lex_state = 50, .external_lex_state = 1}, + [566] = {.lex_state = 50, .external_lex_state = 1}, + [567] = {.lex_state = 84, .external_lex_state = 1}, + [568] = {.lex_state = 84, .external_lex_state = 1}, + [569] = {.lex_state = 84, .external_lex_state = 1}, + [570] = {.lex_state = 45, .external_lex_state = 1}, + [571] = {.lex_state = 83, .external_lex_state = 1}, + [572] = {.lex_state = 83, .external_lex_state = 1}, + [573] = {.lex_state = 83, .external_lex_state = 1}, + [574] = {.lex_state = 86, .external_lex_state = 1}, + [575] = {.lex_state = 86, .external_lex_state = 1}, + [576] = {.lex_state = 86, .external_lex_state = 1}, + [577] = {.lex_state = 45, .external_lex_state = 1}, + [578] = {.lex_state = 45, .external_lex_state = 1}, + [579] = {.lex_state = 45, .external_lex_state = 1}, + [580] = {.lex_state = 45, .external_lex_state = 1}, + [581] = {.lex_state = 45, .external_lex_state = 1}, + [582] = {.lex_state = 45, .external_lex_state = 1}, + [583] = {.lex_state = 45, .external_lex_state = 1}, + [584] = {.lex_state = 45, .external_lex_state = 1}, + [585] = {.lex_state = 61, .external_lex_state = 1}, + [586] = {.lex_state = 61, .external_lex_state = 1}, + [587] = {.lex_state = 61, .external_lex_state = 1}, + [588] = {.lex_state = 45, .external_lex_state = 1}, + [589] = {.lex_state = 45, .external_lex_state = 1}, + [590] = {.lex_state = 45, .external_lex_state = 1}, + [591] = {.lex_state = 45, .external_lex_state = 1}, + [592] = {.lex_state = 45, .external_lex_state = 1}, + [593] = {.lex_state = 45, .external_lex_state = 1}, + [594] = {.lex_state = 68, .external_lex_state = 1}, + [595] = {.lex_state = 45, .external_lex_state = 1}, + [596] = {.lex_state = 45, .external_lex_state = 1}, + [597] = {.lex_state = 45, .external_lex_state = 1}, + [598] = {.lex_state = 45, .external_lex_state = 1}, + [599] = {.lex_state = 45, .external_lex_state = 1}, + [600] = {.lex_state = 45, .external_lex_state = 1}, + [601] = {.lex_state = 45, .external_lex_state = 1}, + [602] = {.lex_state = 45, .external_lex_state = 1}, + [603] = {.lex_state = 45, .external_lex_state = 1}, + [604] = {.lex_state = 45, .external_lex_state = 1}, + [605] = {.lex_state = 45, .external_lex_state = 1}, + [606] = {.lex_state = 45, .external_lex_state = 1}, + [607] = {.lex_state = 45, .external_lex_state = 1}, + [608] = {.lex_state = 45, .external_lex_state = 1}, + [609] = {.lex_state = 45, .external_lex_state = 1}, + [610] = {.lex_state = 45, .external_lex_state = 1}, + [611] = {.lex_state = 45, .external_lex_state = 1}, + [612] = {.lex_state = 45, .external_lex_state = 1}, + [613] = {.lex_state = 45, .external_lex_state = 1}, + [614] = {.lex_state = 45, .external_lex_state = 1}, + [615] = {.lex_state = 45, .external_lex_state = 1}, + [616] = {.lex_state = 45, .external_lex_state = 1}, + [617] = {.lex_state = 45, .external_lex_state = 1}, + [618] = {.lex_state = 45, .external_lex_state = 1}, + [619] = {.lex_state = 45, .external_lex_state = 1}, + [620] = {.lex_state = 45, .external_lex_state = 1}, + [621] = {.lex_state = 45, .external_lex_state = 1}, + [622] = {.lex_state = 45, .external_lex_state = 1}, + [623] = {.lex_state = 45, .external_lex_state = 1}, + [624] = {.lex_state = 45, .external_lex_state = 1}, + [625] = {.lex_state = 45, .external_lex_state = 1}, + [626] = {.lex_state = 45, .external_lex_state = 1}, + [627] = {.lex_state = 45, .external_lex_state = 1}, + [628] = {.lex_state = 45, .external_lex_state = 1}, + [629] = {.lex_state = 45, .external_lex_state = 1}, + [630] = {.lex_state = 45, .external_lex_state = 1}, + [631] = {.lex_state = 45, .external_lex_state = 1}, + [632] = {.lex_state = 45, .external_lex_state = 1}, + [633] = {.lex_state = 45, .external_lex_state = 1}, + [634] = {.lex_state = 45, .external_lex_state = 1}, + [635] = {.lex_state = 45, .external_lex_state = 1}, + [636] = {.lex_state = 45, .external_lex_state = 1}, + [637] = {.lex_state = 45, .external_lex_state = 1}, + [638] = {.lex_state = 45, .external_lex_state = 1}, + [639] = {.lex_state = 45, .external_lex_state = 1}, + [640] = {.lex_state = 45, .external_lex_state = 1}, + [641] = {.lex_state = 45, .external_lex_state = 1}, + [642] = {.lex_state = 45, .external_lex_state = 1}, + [643] = {.lex_state = 45, .external_lex_state = 1}, + [644] = {.lex_state = 45, .external_lex_state = 1}, + [645] = {.lex_state = 45, .external_lex_state = 1}, + [646] = {.lex_state = 45, .external_lex_state = 1}, + [647] = {.lex_state = 45, .external_lex_state = 1}, + [648] = {.lex_state = 45, .external_lex_state = 1}, + [649] = {.lex_state = 45, .external_lex_state = 1}, + [650] = {.lex_state = 45, .external_lex_state = 1}, + [651] = {.lex_state = 45, .external_lex_state = 1}, + [652] = {.lex_state = 45, .external_lex_state = 1}, + [653] = {.lex_state = 45, .external_lex_state = 1}, + [654] = {.lex_state = 45, .external_lex_state = 1}, + [655] = {.lex_state = 45, .external_lex_state = 1}, + [656] = {.lex_state = 45, .external_lex_state = 1}, + [657] = {.lex_state = 45, .external_lex_state = 1}, + [658] = {.lex_state = 45, .external_lex_state = 1}, + [659] = {.lex_state = 45, .external_lex_state = 1}, + [660] = {.lex_state = 45, .external_lex_state = 1}, + [661] = {.lex_state = 45, .external_lex_state = 1}, + [662] = {.lex_state = 45, .external_lex_state = 1}, + [663] = {.lex_state = 45, .external_lex_state = 1}, + [664] = {.lex_state = 45, .external_lex_state = 1}, + [665] = {.lex_state = 45, .external_lex_state = 1}, + [666] = {.lex_state = 45, .external_lex_state = 1}, + [667] = {.lex_state = 45, .external_lex_state = 1}, + [668] = {.lex_state = 45, .external_lex_state = 1}, + [669] = {.lex_state = 45, .external_lex_state = 1}, + [670] = {.lex_state = 45, .external_lex_state = 1}, + [671] = {.lex_state = 45, .external_lex_state = 1}, + [672] = {.lex_state = 45, .external_lex_state = 1}, + [673] = {.lex_state = 45, .external_lex_state = 1}, + [674] = {.lex_state = 45, .external_lex_state = 1}, + [675] = {.lex_state = 45, .external_lex_state = 1}, + [676] = {.lex_state = 45, .external_lex_state = 1}, + [677] = {.lex_state = 45, .external_lex_state = 1}, + [678] = {.lex_state = 45, .external_lex_state = 1}, + [679] = {.lex_state = 45, .external_lex_state = 1}, + [680] = {.lex_state = 45, .external_lex_state = 1}, + [681] = {.lex_state = 45, .external_lex_state = 1}, + [682] = {.lex_state = 45, .external_lex_state = 1}, + [683] = {.lex_state = 45, .external_lex_state = 1}, + [684] = {.lex_state = 45, .external_lex_state = 1}, + [685] = {.lex_state = 45, .external_lex_state = 1}, + [686] = {.lex_state = 45, .external_lex_state = 1}, + [687] = {.lex_state = 45, .external_lex_state = 1}, + [688] = {.lex_state = 45, .external_lex_state = 1}, + [689] = {.lex_state = 45, .external_lex_state = 1}, + [690] = {.lex_state = 45, .external_lex_state = 1}, + [691] = {.lex_state = 45, .external_lex_state = 1}, + [692] = {.lex_state = 45, .external_lex_state = 1}, + [693] = {.lex_state = 45, .external_lex_state = 1}, + [694] = {.lex_state = 45, .external_lex_state = 1}, + [695] = {.lex_state = 45, .external_lex_state = 1}, + [696] = {.lex_state = 45, .external_lex_state = 1}, + [697] = {.lex_state = 45, .external_lex_state = 1}, + [698] = {.lex_state = 45, .external_lex_state = 1}, + [699] = {.lex_state = 45, .external_lex_state = 1}, + [700] = {.lex_state = 45, .external_lex_state = 1}, + [701] = {.lex_state = 45, .external_lex_state = 1}, + [702] = {.lex_state = 45, .external_lex_state = 1}, + [703] = {.lex_state = 45, .external_lex_state = 1}, + [704] = {.lex_state = 45, .external_lex_state = 1}, + [705] = {.lex_state = 45, .external_lex_state = 1}, + [706] = {.lex_state = 45, .external_lex_state = 1}, + [707] = {.lex_state = 45, .external_lex_state = 1}, + [708] = {.lex_state = 45, .external_lex_state = 1}, + [709] = {.lex_state = 45, .external_lex_state = 1}, + [710] = {.lex_state = 45, .external_lex_state = 1}, + [711] = {.lex_state = 45, .external_lex_state = 1}, + [712] = {.lex_state = 45, .external_lex_state = 1}, + [713] = {.lex_state = 45, .external_lex_state = 1}, + [714] = {.lex_state = 45, .external_lex_state = 1}, + [715] = {.lex_state = 45, .external_lex_state = 1}, + [716] = {.lex_state = 45, .external_lex_state = 1}, + [717] = {.lex_state = 45, .external_lex_state = 1}, + [718] = {.lex_state = 45, .external_lex_state = 1}, + [719] = {.lex_state = 45, .external_lex_state = 1}, + [720] = {.lex_state = 45, .external_lex_state = 1}, + [721] = {.lex_state = 45, .external_lex_state = 1}, + [722] = {.lex_state = 45, .external_lex_state = 1}, + [723] = {.lex_state = 45, .external_lex_state = 1}, + [724] = {.lex_state = 45, .external_lex_state = 1}, + [725] = {.lex_state = 45, .external_lex_state = 1}, + [726] = {.lex_state = 45, .external_lex_state = 1}, + [727] = {.lex_state = 45, .external_lex_state = 1}, + [728] = {.lex_state = 45, .external_lex_state = 1}, + [729] = {.lex_state = 45, .external_lex_state = 1}, + [730] = {.lex_state = 45, .external_lex_state = 1}, + [731] = {.lex_state = 45, .external_lex_state = 1}, + [732] = {.lex_state = 45, .external_lex_state = 1}, + [733] = {.lex_state = 45, .external_lex_state = 1}, + [734] = {.lex_state = 45, .external_lex_state = 1}, + [735] = {.lex_state = 45, .external_lex_state = 1}, + [736] = {.lex_state = 45, .external_lex_state = 1}, + [737] = {.lex_state = 45, .external_lex_state = 1}, + [738] = {.lex_state = 45, .external_lex_state = 1}, + [739] = {.lex_state = 45, .external_lex_state = 1}, + [740] = {.lex_state = 45, .external_lex_state = 1}, + [741] = {.lex_state = 45, .external_lex_state = 1}, + [742] = {.lex_state = 45, .external_lex_state = 1}, + [743] = {.lex_state = 45, .external_lex_state = 1}, + [744] = {.lex_state = 45, .external_lex_state = 1}, + [745] = {.lex_state = 45, .external_lex_state = 1}, + [746] = {.lex_state = 45, .external_lex_state = 1}, + [747] = {.lex_state = 45, .external_lex_state = 1}, + [748] = {.lex_state = 45, .external_lex_state = 1}, + [749] = {.lex_state = 45, .external_lex_state = 1}, + [750] = {.lex_state = 45, .external_lex_state = 1}, + [751] = {.lex_state = 45, .external_lex_state = 1}, + [752] = {.lex_state = 45, .external_lex_state = 1}, + [753] = {.lex_state = 45, .external_lex_state = 1}, + [754] = {.lex_state = 45, .external_lex_state = 1}, + [755] = {.lex_state = 45, .external_lex_state = 1}, + [756] = {.lex_state = 45, .external_lex_state = 1}, + [757] = {.lex_state = 45, .external_lex_state = 1}, + [758] = {.lex_state = 45, .external_lex_state = 1}, + [759] = {.lex_state = 45, .external_lex_state = 1}, + [760] = {.lex_state = 45, .external_lex_state = 1}, + [761] = {.lex_state = 45, .external_lex_state = 1}, + [762] = {.lex_state = 45, .external_lex_state = 1}, + [763] = {.lex_state = 45, .external_lex_state = 1}, + [764] = {.lex_state = 45, .external_lex_state = 1}, + [765] = {.lex_state = 45, .external_lex_state = 1}, + [766] = {.lex_state = 45, .external_lex_state = 1}, + [767] = {.lex_state = 45, .external_lex_state = 1}, + [768] = {.lex_state = 45, .external_lex_state = 1}, + [769] = {.lex_state = 45, .external_lex_state = 1}, + [770] = {.lex_state = 45, .external_lex_state = 1}, + [771] = {.lex_state = 45, .external_lex_state = 1}, + [772] = {.lex_state = 45, .external_lex_state = 1}, + [773] = {.lex_state = 45, .external_lex_state = 1}, + [774] = {.lex_state = 45, .external_lex_state = 1}, + [775] = {.lex_state = 45, .external_lex_state = 1}, + [776] = {.lex_state = 45, .external_lex_state = 1}, + [777] = {.lex_state = 45, .external_lex_state = 1}, + [778] = {.lex_state = 45, .external_lex_state = 1}, + [779] = {.lex_state = 45, .external_lex_state = 1}, + [780] = {.lex_state = 45, .external_lex_state = 1}, + [781] = {.lex_state = 45, .external_lex_state = 1}, + [782] = {.lex_state = 45, .external_lex_state = 1}, + [783] = {.lex_state = 45, .external_lex_state = 1}, + [784] = {.lex_state = 45, .external_lex_state = 1}, + [785] = {.lex_state = 45, .external_lex_state = 1}, + [786] = {.lex_state = 45, .external_lex_state = 1}, + [787] = {.lex_state = 45, .external_lex_state = 1}, + [788] = {.lex_state = 45, .external_lex_state = 1}, + [789] = {.lex_state = 45, .external_lex_state = 1}, + [790] = {.lex_state = 45, .external_lex_state = 1}, + [791] = {.lex_state = 45, .external_lex_state = 1}, + [792] = {.lex_state = 45, .external_lex_state = 1}, + [793] = {.lex_state = 45, .external_lex_state = 1}, + [794] = {.lex_state = 45, .external_lex_state = 1}, + [795] = {.lex_state = 45, .external_lex_state = 1}, + [796] = {.lex_state = 45, .external_lex_state = 1}, + [797] = {.lex_state = 45, .external_lex_state = 1}, + [798] = {.lex_state = 45, .external_lex_state = 1}, + [799] = {.lex_state = 45, .external_lex_state = 1}, + [800] = {.lex_state = 45, .external_lex_state = 1}, + [801] = {.lex_state = 45, .external_lex_state = 1}, + [802] = {.lex_state = 45, .external_lex_state = 1}, + [803] = {.lex_state = 45, .external_lex_state = 1}, + [804] = {.lex_state = 45, .external_lex_state = 1}, + [805] = {.lex_state = 45, .external_lex_state = 1}, + [806] = {.lex_state = 45, .external_lex_state = 1}, + [807] = {.lex_state = 45, .external_lex_state = 1}, + [808] = {.lex_state = 45, .external_lex_state = 1}, + [809] = {.lex_state = 45, .external_lex_state = 1}, + [810] = {.lex_state = 45, .external_lex_state = 1}, + [811] = {.lex_state = 45, .external_lex_state = 1}, + [812] = {.lex_state = 45, .external_lex_state = 1}, + [813] = {.lex_state = 45, .external_lex_state = 1}, + [814] = {.lex_state = 45, .external_lex_state = 1}, + [815] = {.lex_state = 45, .external_lex_state = 1}, + [816] = {.lex_state = 45, .external_lex_state = 1}, + [817] = {.lex_state = 45, .external_lex_state = 1}, + [818] = {.lex_state = 45, .external_lex_state = 1}, + [819] = {.lex_state = 45, .external_lex_state = 1}, + [820] = {.lex_state = 45, .external_lex_state = 1}, + [821] = {.lex_state = 45, .external_lex_state = 1}, + [822] = {.lex_state = 45, .external_lex_state = 1}, + [823] = {.lex_state = 45, .external_lex_state = 1}, + [824] = {.lex_state = 45, .external_lex_state = 1}, + [825] = {.lex_state = 45, .external_lex_state = 1}, + [826] = {.lex_state = 45, .external_lex_state = 1}, + [827] = {.lex_state = 45, .external_lex_state = 1}, + [828] = {.lex_state = 45, .external_lex_state = 1}, + [829] = {.lex_state = 45, .external_lex_state = 1}, + [830] = {.lex_state = 45, .external_lex_state = 1}, + [831] = {.lex_state = 45, .external_lex_state = 1}, + [832] = {.lex_state = 45, .external_lex_state = 1}, + [833] = {.lex_state = 45, .external_lex_state = 1}, + [834] = {.lex_state = 45, .external_lex_state = 1}, + [835] = {.lex_state = 45, .external_lex_state = 1}, + [836] = {.lex_state = 45, .external_lex_state = 1}, + [837] = {.lex_state = 45, .external_lex_state = 1}, + [838] = {.lex_state = 45, .external_lex_state = 1}, + [839] = {.lex_state = 45, .external_lex_state = 1}, + [840] = {.lex_state = 45, .external_lex_state = 1}, + [841] = {.lex_state = 45, .external_lex_state = 1}, + [842] = {.lex_state = 45, .external_lex_state = 1}, + [843] = {.lex_state = 45, .external_lex_state = 1}, + [844] = {.lex_state = 45, .external_lex_state = 1}, + [845] = {.lex_state = 45, .external_lex_state = 1}, + [846] = {.lex_state = 45, .external_lex_state = 1}, + [847] = {.lex_state = 45, .external_lex_state = 1}, + [848] = {.lex_state = 45, .external_lex_state = 1}, + [849] = {.lex_state = 45, .external_lex_state = 1}, + [850] = {.lex_state = 45, .external_lex_state = 1}, + [851] = {.lex_state = 45, .external_lex_state = 1}, + [852] = {.lex_state = 45, .external_lex_state = 1}, + [853] = {.lex_state = 45, .external_lex_state = 1}, + [854] = {.lex_state = 45, .external_lex_state = 1}, + [855] = {.lex_state = 45, .external_lex_state = 1}, + [856] = {.lex_state = 45, .external_lex_state = 1}, + [857] = {.lex_state = 45, .external_lex_state = 1}, + [858] = {.lex_state = 45, .external_lex_state = 1}, + [859] = {.lex_state = 45, .external_lex_state = 1}, + [860] = {.lex_state = 45, .external_lex_state = 1}, + [861] = {.lex_state = 45, .external_lex_state = 1}, + [862] = {.lex_state = 45, .external_lex_state = 1}, + [863] = {.lex_state = 45, .external_lex_state = 1}, + [864] = {.lex_state = 45, .external_lex_state = 1}, + [865] = {.lex_state = 45, .external_lex_state = 1}, + [866] = {.lex_state = 45, .external_lex_state = 1}, + [867] = {.lex_state = 45, .external_lex_state = 1}, + [868] = {.lex_state = 45, .external_lex_state = 1}, + [869] = {.lex_state = 45, .external_lex_state = 1}, + [870] = {.lex_state = 45, .external_lex_state = 1}, + [871] = {.lex_state = 45, .external_lex_state = 1}, + [872] = {.lex_state = 45, .external_lex_state = 1}, + [873] = {.lex_state = 45, .external_lex_state = 1}, + [874] = {.lex_state = 45, .external_lex_state = 1}, + [875] = {.lex_state = 45, .external_lex_state = 1}, + [876] = {.lex_state = 45, .external_lex_state = 1}, + [877] = {.lex_state = 45, .external_lex_state = 1}, + [878] = {.lex_state = 45, .external_lex_state = 1}, + [879] = {.lex_state = 45, .external_lex_state = 1}, + [880] = {.lex_state = 45, .external_lex_state = 1}, + [881] = {.lex_state = 45, .external_lex_state = 1}, + [882] = {.lex_state = 45, .external_lex_state = 1}, + [883] = {.lex_state = 45, .external_lex_state = 1}, + [884] = {.lex_state = 45, .external_lex_state = 1}, + [885] = {.lex_state = 45, .external_lex_state = 1}, + [886] = {.lex_state = 45, .external_lex_state = 1}, + [887] = {.lex_state = 45, .external_lex_state = 1}, + [888] = {.lex_state = 45, .external_lex_state = 1}, + [889] = {.lex_state = 45, .external_lex_state = 1}, + [890] = {.lex_state = 45, .external_lex_state = 1}, + [891] = {.lex_state = 45, .external_lex_state = 1}, + [892] = {.lex_state = 45, .external_lex_state = 1}, + [893] = {.lex_state = 45, .external_lex_state = 1}, + [894] = {.lex_state = 45, .external_lex_state = 1}, + [895] = {.lex_state = 45, .external_lex_state = 1}, + [896] = {.lex_state = 45, .external_lex_state = 1}, + [897] = {.lex_state = 45, .external_lex_state = 1}, + [898] = {.lex_state = 45, .external_lex_state = 1}, + [899] = {.lex_state = 45, .external_lex_state = 1}, + [900] = {.lex_state = 45, .external_lex_state = 1}, + [901] = {.lex_state = 45, .external_lex_state = 1}, + [902] = {.lex_state = 45, .external_lex_state = 1}, + [903] = {.lex_state = 45, .external_lex_state = 1}, + [904] = {.lex_state = 45, .external_lex_state = 1}, + [905] = {.lex_state = 45, .external_lex_state = 1}, + [906] = {.lex_state = 45, .external_lex_state = 1}, + [907] = {.lex_state = 45, .external_lex_state = 1}, + [908] = {.lex_state = 45, .external_lex_state = 1}, + [909] = {.lex_state = 45, .external_lex_state = 1}, + [910] = {.lex_state = 45, .external_lex_state = 1}, + [911] = {.lex_state = 45, .external_lex_state = 1}, + [912] = {.lex_state = 45, .external_lex_state = 1}, + [913] = {.lex_state = 45, .external_lex_state = 1}, + [914] = {.lex_state = 45, .external_lex_state = 1}, + [915] = {.lex_state = 45, .external_lex_state = 1}, + [916] = {.lex_state = 45, .external_lex_state = 1}, + [917] = {.lex_state = 45, .external_lex_state = 1}, + [918] = {.lex_state = 45, .external_lex_state = 1}, + [919] = {.lex_state = 45, .external_lex_state = 1}, + [920] = {.lex_state = 45, .external_lex_state = 1}, + [921] = {.lex_state = 45, .external_lex_state = 1}, + [922] = {.lex_state = 45, .external_lex_state = 1}, + [923] = {.lex_state = 45, .external_lex_state = 1}, + [924] = {.lex_state = 45, .external_lex_state = 1}, + [925] = {.lex_state = 45, .external_lex_state = 1}, + [926] = {.lex_state = 45, .external_lex_state = 1}, + [927] = {.lex_state = 45, .external_lex_state = 1}, + [928] = {.lex_state = 45, .external_lex_state = 1}, + [929] = {.lex_state = 45, .external_lex_state = 1}, + [930] = {.lex_state = 45, .external_lex_state = 1}, + [931] = {.lex_state = 45, .external_lex_state = 1}, + [932] = {.lex_state = 45, .external_lex_state = 1}, + [933] = {.lex_state = 45, .external_lex_state = 1}, + [934] = {.lex_state = 45, .external_lex_state = 1}, + [935] = {.lex_state = 45, .external_lex_state = 1}, + [936] = {.lex_state = 45, .external_lex_state = 1}, + [937] = {.lex_state = 45, .external_lex_state = 1}, + [938] = {.lex_state = 45, .external_lex_state = 1}, + [939] = {.lex_state = 45, .external_lex_state = 1}, + [940] = {.lex_state = 45, .external_lex_state = 1}, + [941] = {.lex_state = 45, .external_lex_state = 1}, + [942] = {.lex_state = 45, .external_lex_state = 1}, + [943] = {.lex_state = 45, .external_lex_state = 1}, + [944] = {.lex_state = 45, .external_lex_state = 1}, + [945] = {.lex_state = 45, .external_lex_state = 1}, + [946] = {.lex_state = 45, .external_lex_state = 1}, + [947] = {.lex_state = 45, .external_lex_state = 1}, + [948] = {.lex_state = 45, .external_lex_state = 1}, + [949] = {.lex_state = 45, .external_lex_state = 1}, + [950] = {.lex_state = 45, .external_lex_state = 1}, + [951] = {.lex_state = 45, .external_lex_state = 1}, + [952] = {.lex_state = 45, .external_lex_state = 1}, + [953] = {.lex_state = 45, .external_lex_state = 1}, + [954] = {.lex_state = 45, .external_lex_state = 1}, + [955] = {.lex_state = 45, .external_lex_state = 1}, + [956] = {.lex_state = 45, .external_lex_state = 1}, + [957] = {.lex_state = 45, .external_lex_state = 1}, + [958] = {.lex_state = 45, .external_lex_state = 1}, + [959] = {.lex_state = 45, .external_lex_state = 1}, + [960] = {.lex_state = 45, .external_lex_state = 1}, + [961] = {.lex_state = 45, .external_lex_state = 1}, + [962] = {.lex_state = 45, .external_lex_state = 1}, + [963] = {.lex_state = 45, .external_lex_state = 1}, + [964] = {.lex_state = 45, .external_lex_state = 1}, + [965] = {.lex_state = 45, .external_lex_state = 1}, + [966] = {.lex_state = 45, .external_lex_state = 1}, + [967] = {.lex_state = 45, .external_lex_state = 1}, + [968] = {.lex_state = 45, .external_lex_state = 1}, + [969] = {.lex_state = 45, .external_lex_state = 1}, + [970] = {.lex_state = 45, .external_lex_state = 1}, + [971] = {.lex_state = 45, .external_lex_state = 1}, + [972] = {.lex_state = 45, .external_lex_state = 1}, + [973] = {.lex_state = 45, .external_lex_state = 1}, + [974] = {.lex_state = 45, .external_lex_state = 1}, + [975] = {.lex_state = 45, .external_lex_state = 1}, + [976] = {.lex_state = 45, .external_lex_state = 1}, + [977] = {.lex_state = 45, .external_lex_state = 1}, + [978] = {.lex_state = 45, .external_lex_state = 1}, + [979] = {.lex_state = 45, .external_lex_state = 1}, + [980] = {.lex_state = 45, .external_lex_state = 1}, + [981] = {.lex_state = 45, .external_lex_state = 1}, + [982] = {.lex_state = 45, .external_lex_state = 1}, + [983] = {.lex_state = 45, .external_lex_state = 1}, + [984] = {.lex_state = 45, .external_lex_state = 1}, + [985] = {.lex_state = 45, .external_lex_state = 1}, + [986] = {.lex_state = 45, .external_lex_state = 1}, + [987] = {.lex_state = 45, .external_lex_state = 1}, + [988] = {.lex_state = 45, .external_lex_state = 1}, + [989] = {.lex_state = 45, .external_lex_state = 1}, + [990] = {.lex_state = 45, .external_lex_state = 1}, + [991] = {.lex_state = 45, .external_lex_state = 1}, + [992] = {.lex_state = 45, .external_lex_state = 1}, + [993] = {.lex_state = 45, .external_lex_state = 1}, + [994] = {.lex_state = 45, .external_lex_state = 1}, + [995] = {.lex_state = 45, .external_lex_state = 1}, + [996] = {.lex_state = 45, .external_lex_state = 1}, + [997] = {.lex_state = 45, .external_lex_state = 1}, + [998] = {.lex_state = 45, .external_lex_state = 1}, + [999] = {.lex_state = 45, .external_lex_state = 1}, + [1000] = {.lex_state = 45, .external_lex_state = 1}, + [1001] = {.lex_state = 45, .external_lex_state = 1}, + [1002] = {.lex_state = 45, .external_lex_state = 1}, + [1003] = {.lex_state = 45, .external_lex_state = 1}, + [1004] = {.lex_state = 45, .external_lex_state = 1}, + [1005] = {.lex_state = 45, .external_lex_state = 1}, + [1006] = {.lex_state = 45, .external_lex_state = 1}, + [1007] = {.lex_state = 45, .external_lex_state = 1}, + [1008] = {.lex_state = 45, .external_lex_state = 1}, + [1009] = {.lex_state = 45, .external_lex_state = 1}, + [1010] = {.lex_state = 45, .external_lex_state = 1}, + [1011] = {.lex_state = 45, .external_lex_state = 1}, + [1012] = {.lex_state = 45, .external_lex_state = 1}, + [1013] = {.lex_state = 45, .external_lex_state = 1}, + [1014] = {.lex_state = 45, .external_lex_state = 1}, + [1015] = {.lex_state = 45, .external_lex_state = 1}, + [1016] = {.lex_state = 45, .external_lex_state = 1}, + [1017] = {.lex_state = 45, .external_lex_state = 1}, + [1018] = {.lex_state = 45, .external_lex_state = 1}, + [1019] = {.lex_state = 45, .external_lex_state = 1}, + [1020] = {.lex_state = 45, .external_lex_state = 1}, + [1021] = {.lex_state = 45, .external_lex_state = 1}, + [1022] = {.lex_state = 45, .external_lex_state = 1}, + [1023] = {.lex_state = 45, .external_lex_state = 1}, + [1024] = {.lex_state = 45, .external_lex_state = 1}, + [1025] = {.lex_state = 45, .external_lex_state = 1}, + [1026] = {.lex_state = 45, .external_lex_state = 1}, + [1027] = {.lex_state = 45, .external_lex_state = 1}, + [1028] = {.lex_state = 45, .external_lex_state = 1}, + [1029] = {.lex_state = 45, .external_lex_state = 1}, + [1030] = {.lex_state = 45, .external_lex_state = 1}, + [1031] = {.lex_state = 45, .external_lex_state = 1}, + [1032] = {.lex_state = 45, .external_lex_state = 1}, + [1033] = {.lex_state = 45, .external_lex_state = 1}, + [1034] = {.lex_state = 45, .external_lex_state = 1}, + [1035] = {.lex_state = 45, .external_lex_state = 1}, + [1036] = {.lex_state = 45, .external_lex_state = 1}, + [1037] = {.lex_state = 45, .external_lex_state = 1}, + [1038] = {.lex_state = 45, .external_lex_state = 1}, + [1039] = {.lex_state = 45, .external_lex_state = 1}, + [1040] = {.lex_state = 45, .external_lex_state = 1}, + [1041] = {.lex_state = 45, .external_lex_state = 1}, + [1042] = {.lex_state = 45, .external_lex_state = 1}, + [1043] = {.lex_state = 45, .external_lex_state = 1}, + [1044] = {.lex_state = 45, .external_lex_state = 1}, + [1045] = {.lex_state = 45, .external_lex_state = 1}, + [1046] = {.lex_state = 45, .external_lex_state = 1}, + [1047] = {.lex_state = 45, .external_lex_state = 1}, + [1048] = {.lex_state = 45, .external_lex_state = 1}, + [1049] = {.lex_state = 45, .external_lex_state = 1}, + [1050] = {.lex_state = 45, .external_lex_state = 1}, + [1051] = {.lex_state = 45, .external_lex_state = 1}, + [1052] = {.lex_state = 45, .external_lex_state = 1}, + [1053] = {.lex_state = 45, .external_lex_state = 1}, + [1054] = {.lex_state = 45, .external_lex_state = 1}, + [1055] = {.lex_state = 45, .external_lex_state = 1}, + [1056] = {.lex_state = 45, .external_lex_state = 1}, + [1057] = {.lex_state = 45, .external_lex_state = 1}, + [1058] = {.lex_state = 45, .external_lex_state = 1}, + [1059] = {.lex_state = 45, .external_lex_state = 1}, + [1060] = {.lex_state = 45, .external_lex_state = 1}, + [1061] = {.lex_state = 45, .external_lex_state = 1}, + [1062] = {.lex_state = 45, .external_lex_state = 1}, + [1063] = {.lex_state = 45, .external_lex_state = 1}, + [1064] = {.lex_state = 45, .external_lex_state = 1}, + [1065] = {.lex_state = 45, .external_lex_state = 1}, + [1066] = {.lex_state = 45, .external_lex_state = 1}, + [1067] = {.lex_state = 45, .external_lex_state = 1}, + [1068] = {.lex_state = 45, .external_lex_state = 1}, + [1069] = {.lex_state = 45, .external_lex_state = 1}, + [1070] = {.lex_state = 45, .external_lex_state = 1}, + [1071] = {.lex_state = 45, .external_lex_state = 1}, + [1072] = {.lex_state = 45, .external_lex_state = 1}, + [1073] = {.lex_state = 45, .external_lex_state = 1}, + [1074] = {.lex_state = 45, .external_lex_state = 1}, + [1075] = {.lex_state = 45, .external_lex_state = 1}, + [1076] = {.lex_state = 45, .external_lex_state = 1}, + [1077] = {.lex_state = 45, .external_lex_state = 1}, + [1078] = {.lex_state = 45, .external_lex_state = 1}, + [1079] = {.lex_state = 45, .external_lex_state = 1}, + [1080] = {.lex_state = 45, .external_lex_state = 1}, + [1081] = {.lex_state = 68, .external_lex_state = 1}, + [1082] = {.lex_state = 45, .external_lex_state = 1}, + [1083] = {.lex_state = 87, .external_lex_state = 1}, + [1084] = {.lex_state = 81, .external_lex_state = 1}, + [1085] = {.lex_state = 76, .external_lex_state = 1}, + [1086] = {.lex_state = 76, .external_lex_state = 1}, + [1087] = {.lex_state = 76, .external_lex_state = 1}, + [1088] = {.lex_state = 75, .external_lex_state = 1}, + [1089] = {.lex_state = 69, .external_lex_state = 1}, + [1090] = {.lex_state = 69, .external_lex_state = 1}, + [1091] = {.lex_state = 81, .external_lex_state = 1}, + [1092] = {.lex_state = 57, .external_lex_state = 1}, + [1093] = {.lex_state = 57, .external_lex_state = 1}, + [1094] = {.lex_state = 69, .external_lex_state = 1}, + [1095] = {.lex_state = 87, .external_lex_state = 1}, + [1096] = {.lex_state = 75, .external_lex_state = 1}, + [1097] = {.lex_state = 51, .external_lex_state = 1}, + [1098] = {.lex_state = 51, .external_lex_state = 1}, + [1099] = {.lex_state = 51, .external_lex_state = 1}, + [1100] = {.lex_state = 75, .external_lex_state = 1}, + [1101] = {.lex_state = 57, .external_lex_state = 1}, + [1102] = {.lex_state = 87, .external_lex_state = 1}, + [1103] = {.lex_state = 85, .external_lex_state = 1}, + [1104] = {.lex_state = 85, .external_lex_state = 1}, + [1105] = {.lex_state = 85, .external_lex_state = 1}, + [1106] = {.lex_state = 88, .external_lex_state = 1}, + [1107] = {.lex_state = 88, .external_lex_state = 1}, + [1108] = {.lex_state = 88, .external_lex_state = 1}, + [1109] = {.lex_state = 81, .external_lex_state = 1}, + [1110] = {.lex_state = 110, .external_lex_state = 1}, + [1111] = {.lex_state = 45, .external_lex_state = 1}, + [1112] = {.lex_state = 45, .external_lex_state = 1}, + [1113] = {.lex_state = 45, .external_lex_state = 1}, + [1114] = {.lex_state = 77, .external_lex_state = 1}, + [1115] = {.lex_state = 77, .external_lex_state = 1}, + [1116] = {.lex_state = 77, .external_lex_state = 1}, + [1117] = {.lex_state = 45, .external_lex_state = 1}, + [1118] = {.lex_state = 45, .external_lex_state = 1}, + [1119] = {.lex_state = 45, .external_lex_state = 1}, + [1120] = {.lex_state = 45, .external_lex_state = 1}, + [1121] = {.lex_state = 45, .external_lex_state = 1}, + [1122] = {.lex_state = 45, .external_lex_state = 1}, + [1123] = {.lex_state = 45, .external_lex_state = 1}, + [1124] = {.lex_state = 45, .external_lex_state = 1}, + [1125] = {.lex_state = 45, .external_lex_state = 1}, + [1126] = {.lex_state = 45, .external_lex_state = 1}, + [1127] = {.lex_state = 45, .external_lex_state = 1}, + [1128] = {.lex_state = 45, .external_lex_state = 1}, + [1129] = {.lex_state = 110, .external_lex_state = 1}, + [1130] = {.lex_state = 45, .external_lex_state = 1}, + [1131] = {.lex_state = 45, .external_lex_state = 1}, + [1132] = {.lex_state = 45, .external_lex_state = 1}, + [1133] = {.lex_state = 110, .external_lex_state = 1}, + [1134] = {.lex_state = 110, .external_lex_state = 1}, + [1135] = {.lex_state = 110, .external_lex_state = 1}, + [1136] = {.lex_state = 110, .external_lex_state = 1}, + [1137] = {.lex_state = 110, .external_lex_state = 1}, + [1138] = {.lex_state = 110, .external_lex_state = 1}, + [1139] = {.lex_state = 110, .external_lex_state = 1}, + [1140] = {.lex_state = 45, .external_lex_state = 1}, + [1141] = {.lex_state = 45, .external_lex_state = 1}, + [1142] = {.lex_state = 45, .external_lex_state = 1}, + [1143] = {.lex_state = 45, .external_lex_state = 1}, + [1144] = {.lex_state = 45, .external_lex_state = 1}, + [1145] = {.lex_state = 45, .external_lex_state = 1}, + [1146] = {.lex_state = 45, .external_lex_state = 1}, + [1147] = {.lex_state = 45, .external_lex_state = 1}, + [1148] = {.lex_state = 45, .external_lex_state = 1}, + [1149] = {.lex_state = 45, .external_lex_state = 1}, + [1150] = {.lex_state = 45, .external_lex_state = 1}, + [1151] = {.lex_state = 110, .external_lex_state = 1}, + [1152] = {.lex_state = 45, .external_lex_state = 1}, + [1153] = {.lex_state = 45, .external_lex_state = 1}, + [1154] = {.lex_state = 45, .external_lex_state = 1}, + [1155] = {.lex_state = 110, .external_lex_state = 1}, + [1156] = {.lex_state = 110, .external_lex_state = 1}, + [1157] = {.lex_state = 110, .external_lex_state = 1}, + [1158] = {.lex_state = 110, .external_lex_state = 1}, + [1159] = {.lex_state = 110, .external_lex_state = 1}, + [1160] = {.lex_state = 110, .external_lex_state = 1}, + [1161] = {.lex_state = 110, .external_lex_state = 1}, + [1162] = {.lex_state = 45, .external_lex_state = 1}, + [1163] = {.lex_state = 45, .external_lex_state = 1}, + [1164] = {.lex_state = 45, .external_lex_state = 1}, + [1165] = {.lex_state = 45, .external_lex_state = 1}, + [1166] = {.lex_state = 45, .external_lex_state = 1}, + [1167] = {.lex_state = 45, .external_lex_state = 1}, + [1168] = {.lex_state = 45, .external_lex_state = 1}, + [1169] = {.lex_state = 45, .external_lex_state = 1}, + [1170] = {.lex_state = 45, .external_lex_state = 1}, + [1171] = {.lex_state = 45, .external_lex_state = 1}, + [1172] = {.lex_state = 110, .external_lex_state = 1}, + [1173] = {.lex_state = 45, .external_lex_state = 1}, + [1174] = {.lex_state = 45, .external_lex_state = 1}, + [1175] = {.lex_state = 45, .external_lex_state = 1}, + [1176] = {.lex_state = 110, .external_lex_state = 1}, + [1177] = {.lex_state = 110, .external_lex_state = 1}, + [1178] = {.lex_state = 110, .external_lex_state = 1}, + [1179] = {.lex_state = 110, .external_lex_state = 1}, + [1180] = {.lex_state = 110, .external_lex_state = 1}, + [1181] = {.lex_state = 110, .external_lex_state = 1}, + [1182] = {.lex_state = 110, .external_lex_state = 1}, + [1183] = {.lex_state = 45, .external_lex_state = 1}, + [1184] = {.lex_state = 45, .external_lex_state = 1}, + [1185] = {.lex_state = 45, .external_lex_state = 1}, + [1186] = {.lex_state = 45, .external_lex_state = 1}, + [1187] = {.lex_state = 45, .external_lex_state = 1}, + [1188] = {.lex_state = 45, .external_lex_state = 1}, + [1189] = {.lex_state = 45, .external_lex_state = 1}, + [1190] = {.lex_state = 45, .external_lex_state = 1}, + [1191] = {.lex_state = 45, .external_lex_state = 1}, + [1192] = {.lex_state = 45, .external_lex_state = 1}, + [1193] = {.lex_state = 110, .external_lex_state = 1}, + [1194] = {.lex_state = 45, .external_lex_state = 1}, + [1195] = {.lex_state = 45, .external_lex_state = 1}, + [1196] = {.lex_state = 45, .external_lex_state = 1}, + [1197] = {.lex_state = 110, .external_lex_state = 1}, + [1198] = {.lex_state = 110, .external_lex_state = 1}, + [1199] = {.lex_state = 110, .external_lex_state = 1}, + [1200] = {.lex_state = 110, .external_lex_state = 1}, + [1201] = {.lex_state = 110, .external_lex_state = 1}, + [1202] = {.lex_state = 110, .external_lex_state = 1}, + [1203] = {.lex_state = 110, .external_lex_state = 1}, + [1204] = {.lex_state = 45, .external_lex_state = 1}, + [1205] = {.lex_state = 45, .external_lex_state = 1}, + [1206] = {.lex_state = 45, .external_lex_state = 1}, + [1207] = {.lex_state = 45, .external_lex_state = 1}, + [1208] = {.lex_state = 45, .external_lex_state = 1}, + [1209] = {.lex_state = 45, .external_lex_state = 1}, + [1210] = {.lex_state = 45, .external_lex_state = 1}, + [1211] = {.lex_state = 45, .external_lex_state = 1}, + [1212] = {.lex_state = 45, .external_lex_state = 1}, + [1213] = {.lex_state = 45, .external_lex_state = 1}, + [1214] = {.lex_state = 110, .external_lex_state = 1}, + [1215] = {.lex_state = 45, .external_lex_state = 1}, + [1216] = {.lex_state = 45, .external_lex_state = 1}, + [1217] = {.lex_state = 45, .external_lex_state = 1}, + [1218] = {.lex_state = 110, .external_lex_state = 1}, + [1219] = {.lex_state = 110, .external_lex_state = 1}, + [1220] = {.lex_state = 110, .external_lex_state = 1}, + [1221] = {.lex_state = 110, .external_lex_state = 1}, + [1222] = {.lex_state = 110, .external_lex_state = 1}, + [1223] = {.lex_state = 110, .external_lex_state = 1}, + [1224] = {.lex_state = 110, .external_lex_state = 1}, + [1225] = {.lex_state = 45, .external_lex_state = 1}, + [1226] = {.lex_state = 45, .external_lex_state = 1}, + [1227] = {.lex_state = 45, .external_lex_state = 1}, + [1228] = {.lex_state = 45, .external_lex_state = 1}, + [1229] = {.lex_state = 45, .external_lex_state = 1}, + [1230] = {.lex_state = 45, .external_lex_state = 1}, + [1231] = {.lex_state = 45, .external_lex_state = 1}, + [1232] = {.lex_state = 45, .external_lex_state = 1}, + [1233] = {.lex_state = 45, .external_lex_state = 1}, + [1234] = {.lex_state = 45, .external_lex_state = 1}, + [1235] = {.lex_state = 110, .external_lex_state = 1}, + [1236] = {.lex_state = 45, .external_lex_state = 1}, + [1237] = {.lex_state = 45, .external_lex_state = 1}, + [1238] = {.lex_state = 45, .external_lex_state = 1}, + [1239] = {.lex_state = 110, .external_lex_state = 1}, + [1240] = {.lex_state = 110, .external_lex_state = 1}, + [1241] = {.lex_state = 110, .external_lex_state = 1}, + [1242] = {.lex_state = 110, .external_lex_state = 1}, + [1243] = {.lex_state = 110, .external_lex_state = 1}, + [1244] = {.lex_state = 110, .external_lex_state = 1}, + [1245] = {.lex_state = 110, .external_lex_state = 1}, + [1246] = {.lex_state = 45, .external_lex_state = 1}, + [1247] = {.lex_state = 45, .external_lex_state = 1}, + [1248] = {.lex_state = 45, .external_lex_state = 1}, + [1249] = {.lex_state = 45, .external_lex_state = 1}, + [1250] = {.lex_state = 45, .external_lex_state = 1}, + [1251] = {.lex_state = 45, .external_lex_state = 1}, + [1252] = {.lex_state = 45, .external_lex_state = 1}, + [1253] = {.lex_state = 45, .external_lex_state = 1}, + [1254] = {.lex_state = 45, .external_lex_state = 1}, + [1255] = {.lex_state = 110, .external_lex_state = 1}, + [1256] = {.lex_state = 45, .external_lex_state = 1}, + [1257] = {.lex_state = 45, .external_lex_state = 1}, + [1258] = {.lex_state = 45, .external_lex_state = 1}, + [1259] = {.lex_state = 110, .external_lex_state = 1}, + [1260] = {.lex_state = 110, .external_lex_state = 1}, + [1261] = {.lex_state = 110, .external_lex_state = 1}, + [1262] = {.lex_state = 110, .external_lex_state = 1}, + [1263] = {.lex_state = 110, .external_lex_state = 1}, + [1264] = {.lex_state = 110, .external_lex_state = 1}, + [1265] = {.lex_state = 110, .external_lex_state = 1}, + [1266] = {.lex_state = 45, .external_lex_state = 1}, + [1267] = {.lex_state = 45, .external_lex_state = 1}, + [1268] = {.lex_state = 45, .external_lex_state = 1}, + [1269] = {.lex_state = 45, .external_lex_state = 1}, + [1270] = {.lex_state = 45, .external_lex_state = 1}, + [1271] = {.lex_state = 45, .external_lex_state = 1}, + [1272] = {.lex_state = 45, .external_lex_state = 1}, + [1273] = {.lex_state = 45, .external_lex_state = 1}, + [1274] = {.lex_state = 45, .external_lex_state = 1}, + [1275] = {.lex_state = 45, .external_lex_state = 1}, + [1276] = {.lex_state = 110, .external_lex_state = 1}, + [1277] = {.lex_state = 45, .external_lex_state = 1}, + [1278] = {.lex_state = 45, .external_lex_state = 1}, + [1279] = {.lex_state = 45, .external_lex_state = 1}, + [1280] = {.lex_state = 110, .external_lex_state = 1}, + [1281] = {.lex_state = 110, .external_lex_state = 1}, + [1282] = {.lex_state = 110, .external_lex_state = 1}, + [1283] = {.lex_state = 110, .external_lex_state = 1}, + [1284] = {.lex_state = 110, .external_lex_state = 1}, + [1285] = {.lex_state = 110, .external_lex_state = 1}, + [1286] = {.lex_state = 110, .external_lex_state = 1}, + [1287] = {.lex_state = 45, .external_lex_state = 1}, + [1288] = {.lex_state = 45, .external_lex_state = 1}, + [1289] = {.lex_state = 45, .external_lex_state = 1}, + [1290] = {.lex_state = 45, .external_lex_state = 1}, + [1291] = {.lex_state = 45, .external_lex_state = 1}, + [1292] = {.lex_state = 45, .external_lex_state = 1}, + [1293] = {.lex_state = 45, .external_lex_state = 1}, + [1294] = {.lex_state = 45, .external_lex_state = 1}, + [1295] = {.lex_state = 45, .external_lex_state = 1}, + [1296] = {.lex_state = 45, .external_lex_state = 1}, + [1297] = {.lex_state = 110, .external_lex_state = 1}, + [1298] = {.lex_state = 45, .external_lex_state = 1}, + [1299] = {.lex_state = 45, .external_lex_state = 1}, + [1300] = {.lex_state = 45, .external_lex_state = 1}, + [1301] = {.lex_state = 110, .external_lex_state = 1}, + [1302] = {.lex_state = 110, .external_lex_state = 1}, + [1303] = {.lex_state = 110, .external_lex_state = 1}, + [1304] = {.lex_state = 110, .external_lex_state = 1}, + [1305] = {.lex_state = 110, .external_lex_state = 1}, + [1306] = {.lex_state = 110, .external_lex_state = 1}, + [1307] = {.lex_state = 110, .external_lex_state = 1}, + [1308] = {.lex_state = 45, .external_lex_state = 1}, + [1309] = {.lex_state = 45, .external_lex_state = 1}, + [1310] = {.lex_state = 45, .external_lex_state = 1}, + [1311] = {.lex_state = 45, .external_lex_state = 1}, + [1312] = {.lex_state = 45, .external_lex_state = 1}, + [1313] = {.lex_state = 45, .external_lex_state = 1}, + [1314] = {.lex_state = 45, .external_lex_state = 1}, + [1315] = {.lex_state = 45, .external_lex_state = 1}, + [1316] = {.lex_state = 45, .external_lex_state = 1}, + [1317] = {.lex_state = 45, .external_lex_state = 1}, + [1318] = {.lex_state = 110, .external_lex_state = 1}, + [1319] = {.lex_state = 45, .external_lex_state = 1}, + [1320] = {.lex_state = 45, .external_lex_state = 1}, + [1321] = {.lex_state = 45, .external_lex_state = 1}, + [1322] = {.lex_state = 110, .external_lex_state = 1}, + [1323] = {.lex_state = 110, .external_lex_state = 1}, + [1324] = {.lex_state = 110, .external_lex_state = 1}, + [1325] = {.lex_state = 110, .external_lex_state = 1}, + [1326] = {.lex_state = 110, .external_lex_state = 1}, + [1327] = {.lex_state = 110, .external_lex_state = 1}, + [1328] = {.lex_state = 110, .external_lex_state = 1}, + [1329] = {.lex_state = 45, .external_lex_state = 1}, + [1330] = {.lex_state = 45, .external_lex_state = 1}, + [1331] = {.lex_state = 45, .external_lex_state = 1}, + [1332] = {.lex_state = 45, .external_lex_state = 1}, + [1333] = {.lex_state = 45, .external_lex_state = 1}, + [1334] = {.lex_state = 45, .external_lex_state = 1}, + [1335] = {.lex_state = 45, .external_lex_state = 1}, + [1336] = {.lex_state = 45, .external_lex_state = 1}, + [1337] = {.lex_state = 45, .external_lex_state = 1}, + [1338] = {.lex_state = 45, .external_lex_state = 1}, + [1339] = {.lex_state = 110, .external_lex_state = 1}, + [1340] = {.lex_state = 45, .external_lex_state = 1}, + [1341] = {.lex_state = 45, .external_lex_state = 1}, + [1342] = {.lex_state = 45, .external_lex_state = 1}, + [1343] = {.lex_state = 110, .external_lex_state = 1}, + [1344] = {.lex_state = 110, .external_lex_state = 1}, + [1345] = {.lex_state = 110, .external_lex_state = 1}, + [1346] = {.lex_state = 110, .external_lex_state = 1}, + [1347] = {.lex_state = 110, .external_lex_state = 1}, + [1348] = {.lex_state = 110, .external_lex_state = 1}, + [1349] = {.lex_state = 110, .external_lex_state = 1}, + [1350] = {.lex_state = 45, .external_lex_state = 1}, + [1351] = {.lex_state = 45, .external_lex_state = 1}, + [1352] = {.lex_state = 45, .external_lex_state = 1}, + [1353] = {.lex_state = 45, .external_lex_state = 1}, + [1354] = {.lex_state = 45, .external_lex_state = 1}, + [1355] = {.lex_state = 45, .external_lex_state = 1}, + [1356] = {.lex_state = 45, .external_lex_state = 1}, + [1357] = {.lex_state = 45, .external_lex_state = 1}, + [1358] = {.lex_state = 45, .external_lex_state = 1}, + [1359] = {.lex_state = 45, .external_lex_state = 1}, + [1360] = {.lex_state = 110, .external_lex_state = 1}, + [1361] = {.lex_state = 45, .external_lex_state = 1}, + [1362] = {.lex_state = 45, .external_lex_state = 1}, + [1363] = {.lex_state = 45, .external_lex_state = 1}, + [1364] = {.lex_state = 110, .external_lex_state = 1}, + [1365] = {.lex_state = 110, .external_lex_state = 1}, + [1366] = {.lex_state = 110, .external_lex_state = 1}, + [1367] = {.lex_state = 110, .external_lex_state = 1}, + [1368] = {.lex_state = 110, .external_lex_state = 1}, + [1369] = {.lex_state = 110, .external_lex_state = 1}, + [1370] = {.lex_state = 110, .external_lex_state = 1}, + [1371] = {.lex_state = 45, .external_lex_state = 1}, + [1372] = {.lex_state = 45, .external_lex_state = 1}, + [1373] = {.lex_state = 45, .external_lex_state = 1}, + [1374] = {.lex_state = 45, .external_lex_state = 1}, + [1375] = {.lex_state = 45, .external_lex_state = 1}, + [1376] = {.lex_state = 45, .external_lex_state = 1}, + [1377] = {.lex_state = 45, .external_lex_state = 1}, + [1378] = {.lex_state = 45, .external_lex_state = 1}, + [1379] = {.lex_state = 45, .external_lex_state = 1}, + [1380] = {.lex_state = 45, .external_lex_state = 1}, + [1381] = {.lex_state = 110, .external_lex_state = 1}, + [1382] = {.lex_state = 45, .external_lex_state = 1}, + [1383] = {.lex_state = 45, .external_lex_state = 1}, + [1384] = {.lex_state = 45, .external_lex_state = 1}, + [1385] = {.lex_state = 110, .external_lex_state = 1}, + [1386] = {.lex_state = 110, .external_lex_state = 1}, + [1387] = {.lex_state = 110, .external_lex_state = 1}, + [1388] = {.lex_state = 110, .external_lex_state = 1}, + [1389] = {.lex_state = 110, .external_lex_state = 1}, + [1390] = {.lex_state = 110, .external_lex_state = 1}, + [1391] = {.lex_state = 110, .external_lex_state = 1}, + [1392] = {.lex_state = 45, .external_lex_state = 1}, + [1393] = {.lex_state = 45, .external_lex_state = 1}, + [1394] = {.lex_state = 45, .external_lex_state = 1}, + [1395] = {.lex_state = 45, .external_lex_state = 1}, + [1396] = {.lex_state = 45, .external_lex_state = 1}, + [1397] = {.lex_state = 45, .external_lex_state = 1}, + [1398] = {.lex_state = 45, .external_lex_state = 1}, + [1399] = {.lex_state = 45, .external_lex_state = 1}, + [1400] = {.lex_state = 45, .external_lex_state = 1}, + [1401] = {.lex_state = 45, .external_lex_state = 1}, + [1402] = {.lex_state = 45, .external_lex_state = 1}, + [1403] = {.lex_state = 45, .external_lex_state = 1}, + [1404] = {.lex_state = 110, .external_lex_state = 1}, + [1405] = {.lex_state = 45, .external_lex_state = 1}, + [1406] = {.lex_state = 45, .external_lex_state = 1}, + [1407] = {.lex_state = 45, .external_lex_state = 1}, + [1408] = {.lex_state = 45, .external_lex_state = 1}, + [1409] = {.lex_state = 110, .external_lex_state = 1}, + [1410] = {.lex_state = 110, .external_lex_state = 1}, + [1411] = {.lex_state = 110, .external_lex_state = 1}, + [1412] = {.lex_state = 110, .external_lex_state = 1}, + [1413] = {.lex_state = 110, .external_lex_state = 1}, + [1414] = {.lex_state = 110, .external_lex_state = 1}, + [1415] = {.lex_state = 110, .external_lex_state = 1}, + [1416] = {.lex_state = 110, .external_lex_state = 1}, + [1417] = {.lex_state = 45, .external_lex_state = 1}, + [1418] = {.lex_state = 45, .external_lex_state = 1}, + [1419] = {.lex_state = 45, .external_lex_state = 1}, + [1420] = {.lex_state = 45, .external_lex_state = 1}, + [1421] = {.lex_state = 45, .external_lex_state = 1}, + [1422] = {.lex_state = 45, .external_lex_state = 1}, + [1423] = {.lex_state = 45, .external_lex_state = 1}, + [1424] = {.lex_state = 45, .external_lex_state = 1}, + [1425] = {.lex_state = 45, .external_lex_state = 1}, + [1426] = {.lex_state = 45, .external_lex_state = 1}, + [1427] = {.lex_state = 110, .external_lex_state = 1}, + [1428] = {.lex_state = 45, .external_lex_state = 1}, + [1429] = {.lex_state = 45, .external_lex_state = 1}, + [1430] = {.lex_state = 45, .external_lex_state = 1}, + [1431] = {.lex_state = 110, .external_lex_state = 1}, + [1432] = {.lex_state = 110, .external_lex_state = 1}, + [1433] = {.lex_state = 110, .external_lex_state = 1}, + [1434] = {.lex_state = 110, .external_lex_state = 1}, + [1435] = {.lex_state = 110, .external_lex_state = 1}, + [1436] = {.lex_state = 110, .external_lex_state = 1}, + [1437] = {.lex_state = 110, .external_lex_state = 1}, + [1438] = {.lex_state = 45, .external_lex_state = 1}, + [1439] = {.lex_state = 45, .external_lex_state = 1}, + [1440] = {.lex_state = 45, .external_lex_state = 1}, + [1441] = {.lex_state = 45, .external_lex_state = 1}, + [1442] = {.lex_state = 45, .external_lex_state = 1}, + [1443] = {.lex_state = 45, .external_lex_state = 1}, + [1444] = {.lex_state = 45, .external_lex_state = 1}, + [1445] = {.lex_state = 45, .external_lex_state = 1}, + [1446] = {.lex_state = 45, .external_lex_state = 1}, + [1447] = {.lex_state = 45, .external_lex_state = 1}, + [1448] = {.lex_state = 110, .external_lex_state = 1}, + [1449] = {.lex_state = 45, .external_lex_state = 1}, + [1450] = {.lex_state = 45, .external_lex_state = 1}, + [1451] = {.lex_state = 45, .external_lex_state = 1}, + [1452] = {.lex_state = 110, .external_lex_state = 1}, + [1453] = {.lex_state = 110, .external_lex_state = 1}, + [1454] = {.lex_state = 110, .external_lex_state = 1}, + [1455] = {.lex_state = 110, .external_lex_state = 1}, + [1456] = {.lex_state = 110, .external_lex_state = 1}, + [1457] = {.lex_state = 110, .external_lex_state = 1}, + [1458] = {.lex_state = 110, .external_lex_state = 1}, + [1459] = {.lex_state = 45, .external_lex_state = 1}, + [1460] = {.lex_state = 45, .external_lex_state = 1}, + [1461] = {.lex_state = 45, .external_lex_state = 1}, + [1462] = {.lex_state = 45, .external_lex_state = 1}, + [1463] = {.lex_state = 45, .external_lex_state = 1}, + [1464] = {.lex_state = 45, .external_lex_state = 1}, + [1465] = {.lex_state = 45, .external_lex_state = 1}, + [1466] = {.lex_state = 45, .external_lex_state = 1}, + [1467] = {.lex_state = 45, .external_lex_state = 1}, + [1468] = {.lex_state = 45, .external_lex_state = 1}, + [1469] = {.lex_state = 110, .external_lex_state = 1}, + [1470] = {.lex_state = 45, .external_lex_state = 1}, + [1471] = {.lex_state = 45, .external_lex_state = 1}, + [1472] = {.lex_state = 45, .external_lex_state = 1}, + [1473] = {.lex_state = 110, .external_lex_state = 1}, + [1474] = {.lex_state = 110, .external_lex_state = 1}, + [1475] = {.lex_state = 110, .external_lex_state = 1}, + [1476] = {.lex_state = 110, .external_lex_state = 1}, + [1477] = {.lex_state = 110, .external_lex_state = 1}, + [1478] = {.lex_state = 110, .external_lex_state = 1}, + [1479] = {.lex_state = 110, .external_lex_state = 1}, + [1480] = {.lex_state = 45, .external_lex_state = 1}, + [1481] = {.lex_state = 45, .external_lex_state = 1}, + [1482] = {.lex_state = 45, .external_lex_state = 1}, + [1483] = {.lex_state = 45, .external_lex_state = 1}, + [1484] = {.lex_state = 45, .external_lex_state = 1}, + [1485] = {.lex_state = 45, .external_lex_state = 1}, + [1486] = {.lex_state = 45, .external_lex_state = 1}, + [1487] = {.lex_state = 45, .external_lex_state = 1}, + [1488] = {.lex_state = 45, .external_lex_state = 1}, + [1489] = {.lex_state = 45, .external_lex_state = 1}, + [1490] = {.lex_state = 110, .external_lex_state = 1}, + [1491] = {.lex_state = 45, .external_lex_state = 1}, + [1492] = {.lex_state = 45, .external_lex_state = 1}, + [1493] = {.lex_state = 45, .external_lex_state = 1}, + [1494] = {.lex_state = 110, .external_lex_state = 1}, + [1495] = {.lex_state = 110, .external_lex_state = 1}, + [1496] = {.lex_state = 110, .external_lex_state = 1}, + [1497] = {.lex_state = 110, .external_lex_state = 1}, + [1498] = {.lex_state = 110, .external_lex_state = 1}, + [1499] = {.lex_state = 110, .external_lex_state = 1}, + [1500] = {.lex_state = 110, .external_lex_state = 1}, + [1501] = {.lex_state = 45, .external_lex_state = 1}, + [1502] = {.lex_state = 45, .external_lex_state = 1}, + [1503] = {.lex_state = 45, .external_lex_state = 1}, + [1504] = {.lex_state = 45, .external_lex_state = 1}, + [1505] = {.lex_state = 45, .external_lex_state = 1}, + [1506] = {.lex_state = 45, .external_lex_state = 1}, + [1507] = {.lex_state = 45, .external_lex_state = 1}, + [1508] = {.lex_state = 45, .external_lex_state = 1}, + [1509] = {.lex_state = 45, .external_lex_state = 1}, + [1510] = {.lex_state = 45, .external_lex_state = 1}, + [1511] = {.lex_state = 110, .external_lex_state = 1}, + [1512] = {.lex_state = 45, .external_lex_state = 1}, + [1513] = {.lex_state = 45, .external_lex_state = 1}, + [1514] = {.lex_state = 45, .external_lex_state = 1}, + [1515] = {.lex_state = 110, .external_lex_state = 1}, + [1516] = {.lex_state = 110, .external_lex_state = 1}, + [1517] = {.lex_state = 110, .external_lex_state = 1}, + [1518] = {.lex_state = 110, .external_lex_state = 1}, + [1519] = {.lex_state = 110, .external_lex_state = 1}, + [1520] = {.lex_state = 110, .external_lex_state = 1}, + [1521] = {.lex_state = 110, .external_lex_state = 1}, + [1522] = {.lex_state = 45, .external_lex_state = 1}, + [1523] = {.lex_state = 45, .external_lex_state = 1}, + [1524] = {.lex_state = 45, .external_lex_state = 1}, + [1525] = {.lex_state = 45, .external_lex_state = 1}, + [1526] = {.lex_state = 45, .external_lex_state = 1}, + [1527] = {.lex_state = 45, .external_lex_state = 1}, + [1528] = {.lex_state = 45, .external_lex_state = 1}, + [1529] = {.lex_state = 45, .external_lex_state = 1}, + [1530] = {.lex_state = 45, .external_lex_state = 1}, + [1531] = {.lex_state = 45, .external_lex_state = 1}, + [1532] = {.lex_state = 110, .external_lex_state = 1}, + [1533] = {.lex_state = 45, .external_lex_state = 1}, + [1534] = {.lex_state = 45, .external_lex_state = 1}, + [1535] = {.lex_state = 45, .external_lex_state = 1}, + [1536] = {.lex_state = 110, .external_lex_state = 1}, + [1537] = {.lex_state = 110, .external_lex_state = 1}, + [1538] = {.lex_state = 110, .external_lex_state = 1}, + [1539] = {.lex_state = 110, .external_lex_state = 1}, + [1540] = {.lex_state = 110, .external_lex_state = 1}, + [1541] = {.lex_state = 110, .external_lex_state = 1}, + [1542] = {.lex_state = 110, .external_lex_state = 1}, + [1543] = {.lex_state = 45, .external_lex_state = 1}, + [1544] = {.lex_state = 45, .external_lex_state = 1}, + [1545] = {.lex_state = 45, .external_lex_state = 1}, + [1546] = {.lex_state = 45, .external_lex_state = 1}, + [1547] = {.lex_state = 45, .external_lex_state = 1}, + [1548] = {.lex_state = 45, .external_lex_state = 1}, + [1549] = {.lex_state = 45, .external_lex_state = 1}, + [1550] = {.lex_state = 45, .external_lex_state = 1}, + [1551] = {.lex_state = 45, .external_lex_state = 1}, + [1552] = {.lex_state = 45, .external_lex_state = 1}, + [1553] = {.lex_state = 110, .external_lex_state = 1}, + [1554] = {.lex_state = 45, .external_lex_state = 1}, + [1555] = {.lex_state = 45, .external_lex_state = 1}, + [1556] = {.lex_state = 45, .external_lex_state = 1}, + [1557] = {.lex_state = 110, .external_lex_state = 1}, + [1558] = {.lex_state = 110, .external_lex_state = 1}, + [1559] = {.lex_state = 110, .external_lex_state = 1}, + [1560] = {.lex_state = 110, .external_lex_state = 1}, + [1561] = {.lex_state = 110, .external_lex_state = 1}, + [1562] = {.lex_state = 110, .external_lex_state = 1}, + [1563] = {.lex_state = 110, .external_lex_state = 1}, + [1564] = {.lex_state = 45, .external_lex_state = 1}, + [1565] = {.lex_state = 45, .external_lex_state = 1}, + [1566] = {.lex_state = 45, .external_lex_state = 1}, + [1567] = {.lex_state = 45, .external_lex_state = 1}, + [1568] = {.lex_state = 45, .external_lex_state = 1}, + [1569] = {.lex_state = 45, .external_lex_state = 1}, + [1570] = {.lex_state = 45, .external_lex_state = 1}, + [1571] = {.lex_state = 45, .external_lex_state = 1}, + [1572] = {.lex_state = 45, .external_lex_state = 1}, + [1573] = {.lex_state = 45, .external_lex_state = 1}, + [1574] = {.lex_state = 110, .external_lex_state = 1}, + [1575] = {.lex_state = 45, .external_lex_state = 1}, + [1576] = {.lex_state = 45, .external_lex_state = 1}, + [1577] = {.lex_state = 45, .external_lex_state = 1}, + [1578] = {.lex_state = 110, .external_lex_state = 1}, + [1579] = {.lex_state = 110, .external_lex_state = 1}, + [1580] = {.lex_state = 110, .external_lex_state = 1}, + [1581] = {.lex_state = 110, .external_lex_state = 1}, + [1582] = {.lex_state = 110, .external_lex_state = 1}, + [1583] = {.lex_state = 110, .external_lex_state = 1}, + [1584] = {.lex_state = 110, .external_lex_state = 1}, + [1585] = {.lex_state = 45, .external_lex_state = 1}, + [1586] = {.lex_state = 45, .external_lex_state = 1}, + [1587] = {.lex_state = 45, .external_lex_state = 1}, + [1588] = {.lex_state = 45, .external_lex_state = 1}, + [1589] = {.lex_state = 45, .external_lex_state = 1}, + [1590] = {.lex_state = 45, .external_lex_state = 1}, + [1591] = {.lex_state = 45, .external_lex_state = 1}, + [1592] = {.lex_state = 45, .external_lex_state = 1}, + [1593] = {.lex_state = 45, .external_lex_state = 1}, + [1594] = {.lex_state = 45, .external_lex_state = 1}, + [1595] = {.lex_state = 110, .external_lex_state = 1}, + [1596] = {.lex_state = 45, .external_lex_state = 1}, + [1597] = {.lex_state = 45, .external_lex_state = 1}, + [1598] = {.lex_state = 45, .external_lex_state = 1}, + [1599] = {.lex_state = 110, .external_lex_state = 1}, + [1600] = {.lex_state = 110, .external_lex_state = 1}, + [1601] = {.lex_state = 110, .external_lex_state = 1}, + [1602] = {.lex_state = 110, .external_lex_state = 1}, + [1603] = {.lex_state = 110, .external_lex_state = 1}, + [1604] = {.lex_state = 110, .external_lex_state = 1}, + [1605] = {.lex_state = 110, .external_lex_state = 1}, + [1606] = {.lex_state = 45, .external_lex_state = 1}, + [1607] = {.lex_state = 45, .external_lex_state = 1}, + [1608] = {.lex_state = 45, .external_lex_state = 1}, + [1609] = {.lex_state = 45, .external_lex_state = 1}, + [1610] = {.lex_state = 45, .external_lex_state = 1}, + [1611] = {.lex_state = 45, .external_lex_state = 1}, + [1612] = {.lex_state = 45, .external_lex_state = 1}, + [1613] = {.lex_state = 45, .external_lex_state = 1}, + [1614] = {.lex_state = 45, .external_lex_state = 1}, + [1615] = {.lex_state = 45, .external_lex_state = 1}, + [1616] = {.lex_state = 110, .external_lex_state = 1}, + [1617] = {.lex_state = 45, .external_lex_state = 1}, + [1618] = {.lex_state = 45, .external_lex_state = 1}, + [1619] = {.lex_state = 45, .external_lex_state = 1}, + [1620] = {.lex_state = 110, .external_lex_state = 1}, + [1621] = {.lex_state = 110, .external_lex_state = 1}, + [1622] = {.lex_state = 110, .external_lex_state = 1}, + [1623] = {.lex_state = 110, .external_lex_state = 1}, + [1624] = {.lex_state = 110, .external_lex_state = 1}, + [1625] = {.lex_state = 110, .external_lex_state = 1}, + [1626] = {.lex_state = 110, .external_lex_state = 1}, + [1627] = {.lex_state = 45, .external_lex_state = 1}, + [1628] = {.lex_state = 45, .external_lex_state = 1}, + [1629] = {.lex_state = 45, .external_lex_state = 1}, + [1630] = {.lex_state = 45, .external_lex_state = 1}, + [1631] = {.lex_state = 45, .external_lex_state = 1}, + [1632] = {.lex_state = 45, .external_lex_state = 1}, + [1633] = {.lex_state = 45, .external_lex_state = 1}, + [1634] = {.lex_state = 45, .external_lex_state = 1}, + [1635] = {.lex_state = 45, .external_lex_state = 1}, + [1636] = {.lex_state = 45, .external_lex_state = 1}, + [1637] = {.lex_state = 110, .external_lex_state = 1}, + [1638] = {.lex_state = 45, .external_lex_state = 1}, + [1639] = {.lex_state = 45, .external_lex_state = 1}, + [1640] = {.lex_state = 45, .external_lex_state = 1}, + [1641] = {.lex_state = 110, .external_lex_state = 1}, + [1642] = {.lex_state = 110, .external_lex_state = 1}, + [1643] = {.lex_state = 110, .external_lex_state = 1}, + [1644] = {.lex_state = 110, .external_lex_state = 1}, + [1645] = {.lex_state = 110, .external_lex_state = 1}, + [1646] = {.lex_state = 110, .external_lex_state = 1}, + [1647] = {.lex_state = 110, .external_lex_state = 1}, + [1648] = {.lex_state = 45, .external_lex_state = 1}, + [1649] = {.lex_state = 45, .external_lex_state = 1}, + [1650] = {.lex_state = 45, .external_lex_state = 1}, + [1651] = {.lex_state = 45, .external_lex_state = 1}, + [1652] = {.lex_state = 45, .external_lex_state = 1}, + [1653] = {.lex_state = 45, .external_lex_state = 1}, + [1654] = {.lex_state = 45, .external_lex_state = 1}, + [1655] = {.lex_state = 45, .external_lex_state = 1}, + [1656] = {.lex_state = 45, .external_lex_state = 1}, + [1657] = {.lex_state = 45, .external_lex_state = 1}, + [1658] = {.lex_state = 110, .external_lex_state = 1}, + [1659] = {.lex_state = 45, .external_lex_state = 1}, + [1660] = {.lex_state = 45, .external_lex_state = 1}, + [1661] = {.lex_state = 45, .external_lex_state = 1}, + [1662] = {.lex_state = 110, .external_lex_state = 1}, + [1663] = {.lex_state = 110, .external_lex_state = 1}, + [1664] = {.lex_state = 110, .external_lex_state = 1}, + [1665] = {.lex_state = 110, .external_lex_state = 1}, + [1666] = {.lex_state = 110, .external_lex_state = 1}, + [1667] = {.lex_state = 110, .external_lex_state = 1}, + [1668] = {.lex_state = 110, .external_lex_state = 1}, + [1669] = {.lex_state = 45, .external_lex_state = 1}, + [1670] = {.lex_state = 45, .external_lex_state = 1}, + [1671] = {.lex_state = 45, .external_lex_state = 1}, + [1672] = {.lex_state = 45, .external_lex_state = 1}, + [1673] = {.lex_state = 45, .external_lex_state = 1}, + [1674] = {.lex_state = 45, .external_lex_state = 1}, + [1675] = {.lex_state = 45, .external_lex_state = 1}, + [1676] = {.lex_state = 45, .external_lex_state = 1}, + [1677] = {.lex_state = 45, .external_lex_state = 1}, + [1678] = {.lex_state = 45, .external_lex_state = 1}, + [1679] = {.lex_state = 110, .external_lex_state = 1}, + [1680] = {.lex_state = 45, .external_lex_state = 1}, + [1681] = {.lex_state = 45, .external_lex_state = 1}, + [1682] = {.lex_state = 45, .external_lex_state = 1}, + [1683] = {.lex_state = 110, .external_lex_state = 1}, + [1684] = {.lex_state = 110, .external_lex_state = 1}, + [1685] = {.lex_state = 110, .external_lex_state = 1}, + [1686] = {.lex_state = 110, .external_lex_state = 1}, + [1687] = {.lex_state = 110, .external_lex_state = 1}, + [1688] = {.lex_state = 110, .external_lex_state = 1}, + [1689] = {.lex_state = 110, .external_lex_state = 1}, + [1690] = {.lex_state = 45, .external_lex_state = 1}, + [1691] = {.lex_state = 45, .external_lex_state = 1}, + [1692] = {.lex_state = 45, .external_lex_state = 1}, + [1693] = {.lex_state = 45, .external_lex_state = 1}, + [1694] = {.lex_state = 45, .external_lex_state = 1}, + [1695] = {.lex_state = 45, .external_lex_state = 1}, + [1696] = {.lex_state = 45, .external_lex_state = 1}, + [1697] = {.lex_state = 45, .external_lex_state = 1}, + [1698] = {.lex_state = 45, .external_lex_state = 1}, + [1699] = {.lex_state = 45, .external_lex_state = 1}, + [1700] = {.lex_state = 110, .external_lex_state = 1}, + [1701] = {.lex_state = 45, .external_lex_state = 1}, + [1702] = {.lex_state = 45, .external_lex_state = 1}, + [1703] = {.lex_state = 45, .external_lex_state = 1}, + [1704] = {.lex_state = 110, .external_lex_state = 1}, + [1705] = {.lex_state = 110, .external_lex_state = 1}, + [1706] = {.lex_state = 110, .external_lex_state = 1}, + [1707] = {.lex_state = 110, .external_lex_state = 1}, + [1708] = {.lex_state = 110, .external_lex_state = 1}, + [1709] = {.lex_state = 110, .external_lex_state = 1}, + [1710] = {.lex_state = 110, .external_lex_state = 1}, + [1711] = {.lex_state = 45, .external_lex_state = 1}, + [1712] = {.lex_state = 45, .external_lex_state = 1}, + [1713] = {.lex_state = 45, .external_lex_state = 1}, + [1714] = {.lex_state = 45, .external_lex_state = 1}, + [1715] = {.lex_state = 45, .external_lex_state = 1}, + [1716] = {.lex_state = 45, .external_lex_state = 1}, + [1717] = {.lex_state = 45, .external_lex_state = 1}, + [1718] = {.lex_state = 45, .external_lex_state = 1}, + [1719] = {.lex_state = 45, .external_lex_state = 1}, + [1720] = {.lex_state = 45, .external_lex_state = 1}, + [1721] = {.lex_state = 110, .external_lex_state = 1}, + [1722] = {.lex_state = 45, .external_lex_state = 1}, + [1723] = {.lex_state = 45, .external_lex_state = 1}, + [1724] = {.lex_state = 45, .external_lex_state = 1}, + [1725] = {.lex_state = 110, .external_lex_state = 1}, + [1726] = {.lex_state = 110, .external_lex_state = 1}, + [1727] = {.lex_state = 110, .external_lex_state = 1}, + [1728] = {.lex_state = 110, .external_lex_state = 1}, + [1729] = {.lex_state = 110, .external_lex_state = 1}, + [1730] = {.lex_state = 110, .external_lex_state = 1}, + [1731] = {.lex_state = 110, .external_lex_state = 1}, + [1732] = {.lex_state = 45, .external_lex_state = 1}, + [1733] = {.lex_state = 45, .external_lex_state = 1}, + [1734] = {.lex_state = 45, .external_lex_state = 1}, + [1735] = {.lex_state = 45, .external_lex_state = 1}, + [1736] = {.lex_state = 45, .external_lex_state = 1}, + [1737] = {.lex_state = 45, .external_lex_state = 1}, + [1738] = {.lex_state = 45, .external_lex_state = 1}, + [1739] = {.lex_state = 45, .external_lex_state = 1}, + [1740] = {.lex_state = 45, .external_lex_state = 1}, + [1741] = {.lex_state = 45, .external_lex_state = 1}, + [1742] = {.lex_state = 110, .external_lex_state = 1}, + [1743] = {.lex_state = 45, .external_lex_state = 1}, + [1744] = {.lex_state = 45, .external_lex_state = 1}, + [1745] = {.lex_state = 45, .external_lex_state = 1}, + [1746] = {.lex_state = 110, .external_lex_state = 1}, + [1747] = {.lex_state = 110, .external_lex_state = 1}, + [1748] = {.lex_state = 110, .external_lex_state = 1}, + [1749] = {.lex_state = 110, .external_lex_state = 1}, + [1750] = {.lex_state = 110, .external_lex_state = 1}, + [1751] = {.lex_state = 110, .external_lex_state = 1}, + [1752] = {.lex_state = 110, .external_lex_state = 1}, + [1753] = {.lex_state = 45, .external_lex_state = 1}, + [1754] = {.lex_state = 45, .external_lex_state = 1}, + [1755] = {.lex_state = 45, .external_lex_state = 1}, + [1756] = {.lex_state = 45, .external_lex_state = 1}, + [1757] = {.lex_state = 45, .external_lex_state = 1}, + [1758] = {.lex_state = 45, .external_lex_state = 1}, + [1759] = {.lex_state = 45, .external_lex_state = 1}, + [1760] = {.lex_state = 45, .external_lex_state = 1}, + [1761] = {.lex_state = 45, .external_lex_state = 1}, + [1762] = {.lex_state = 45, .external_lex_state = 1}, + [1763] = {.lex_state = 110, .external_lex_state = 1}, + [1764] = {.lex_state = 45, .external_lex_state = 1}, + [1765] = {.lex_state = 45, .external_lex_state = 1}, + [1766] = {.lex_state = 45, .external_lex_state = 1}, + [1767] = {.lex_state = 110, .external_lex_state = 1}, + [1768] = {.lex_state = 110, .external_lex_state = 1}, + [1769] = {.lex_state = 110, .external_lex_state = 1}, + [1770] = {.lex_state = 110, .external_lex_state = 1}, + [1771] = {.lex_state = 110, .external_lex_state = 1}, + [1772] = {.lex_state = 110, .external_lex_state = 1}, + [1773] = {.lex_state = 110, .external_lex_state = 1}, + [1774] = {.lex_state = 45, .external_lex_state = 1}, + [1775] = {.lex_state = 45, .external_lex_state = 1}, + [1776] = {.lex_state = 45, .external_lex_state = 1}, + [1777] = {.lex_state = 45, .external_lex_state = 1}, + [1778] = {.lex_state = 45, .external_lex_state = 1}, + [1779] = {.lex_state = 45, .external_lex_state = 1}, + [1780] = {.lex_state = 45, .external_lex_state = 1}, + [1781] = {.lex_state = 45, .external_lex_state = 1}, + [1782] = {.lex_state = 45, .external_lex_state = 1}, + [1783] = {.lex_state = 45, .external_lex_state = 1}, + [1784] = {.lex_state = 110, .external_lex_state = 1}, + [1785] = {.lex_state = 45, .external_lex_state = 1}, + [1786] = {.lex_state = 45, .external_lex_state = 1}, + [1787] = {.lex_state = 45, .external_lex_state = 1}, + [1788] = {.lex_state = 110, .external_lex_state = 1}, + [1789] = {.lex_state = 110, .external_lex_state = 1}, + [1790] = {.lex_state = 110, .external_lex_state = 1}, + [1791] = {.lex_state = 110, .external_lex_state = 1}, + [1792] = {.lex_state = 110, .external_lex_state = 1}, + [1793] = {.lex_state = 110, .external_lex_state = 1}, + [1794] = {.lex_state = 110, .external_lex_state = 1}, + [1795] = {.lex_state = 45, .external_lex_state = 1}, + [1796] = {.lex_state = 45, .external_lex_state = 1}, + [1797] = {.lex_state = 45, .external_lex_state = 1}, + [1798] = {.lex_state = 45, .external_lex_state = 1}, + [1799] = {.lex_state = 45, .external_lex_state = 1}, + [1800] = {.lex_state = 45, .external_lex_state = 1}, + [1801] = {.lex_state = 45, .external_lex_state = 1}, + [1802] = {.lex_state = 45, .external_lex_state = 1}, + [1803] = {.lex_state = 45, .external_lex_state = 1}, + [1804] = {.lex_state = 45, .external_lex_state = 1}, + [1805] = {.lex_state = 110, .external_lex_state = 1}, + [1806] = {.lex_state = 45, .external_lex_state = 1}, + [1807] = {.lex_state = 45, .external_lex_state = 1}, + [1808] = {.lex_state = 45, .external_lex_state = 1}, + [1809] = {.lex_state = 110, .external_lex_state = 1}, + [1810] = {.lex_state = 110, .external_lex_state = 1}, + [1811] = {.lex_state = 110, .external_lex_state = 1}, + [1812] = {.lex_state = 110, .external_lex_state = 1}, + [1813] = {.lex_state = 110, .external_lex_state = 1}, + [1814] = {.lex_state = 110, .external_lex_state = 1}, + [1815] = {.lex_state = 110, .external_lex_state = 1}, + [1816] = {.lex_state = 45, .external_lex_state = 1}, + [1817] = {.lex_state = 45, .external_lex_state = 1}, + [1818] = {.lex_state = 45, .external_lex_state = 1}, + [1819] = {.lex_state = 45, .external_lex_state = 1}, + [1820] = {.lex_state = 45, .external_lex_state = 1}, + [1821] = {.lex_state = 45, .external_lex_state = 1}, + [1822] = {.lex_state = 45, .external_lex_state = 1}, + [1823] = {.lex_state = 45, .external_lex_state = 1}, + [1824] = {.lex_state = 45, .external_lex_state = 1}, + [1825] = {.lex_state = 45, .external_lex_state = 1}, + [1826] = {.lex_state = 110, .external_lex_state = 1}, + [1827] = {.lex_state = 45, .external_lex_state = 1}, + [1828] = {.lex_state = 45, .external_lex_state = 1}, + [1829] = {.lex_state = 45, .external_lex_state = 1}, + [1830] = {.lex_state = 110, .external_lex_state = 1}, + [1831] = {.lex_state = 110, .external_lex_state = 1}, + [1832] = {.lex_state = 110, .external_lex_state = 1}, + [1833] = {.lex_state = 110, .external_lex_state = 1}, + [1834] = {.lex_state = 110, .external_lex_state = 1}, + [1835] = {.lex_state = 110, .external_lex_state = 1}, + [1836] = {.lex_state = 45, .external_lex_state = 1}, + [1837] = {.lex_state = 45, .external_lex_state = 1}, + [1838] = {.lex_state = 45, .external_lex_state = 1}, + [1839] = {.lex_state = 45, .external_lex_state = 1}, + [1840] = {.lex_state = 45, .external_lex_state = 1}, + [1841] = {.lex_state = 45, .external_lex_state = 1}, + [1842] = {.lex_state = 45, .external_lex_state = 1}, + [1843] = {.lex_state = 45, .external_lex_state = 1}, + [1844] = {.lex_state = 45, .external_lex_state = 1}, + [1845] = {.lex_state = 45, .external_lex_state = 1}, + [1846] = {.lex_state = 110, .external_lex_state = 1}, + [1847] = {.lex_state = 45, .external_lex_state = 1}, + [1848] = {.lex_state = 45, .external_lex_state = 1}, + [1849] = {.lex_state = 45, .external_lex_state = 1}, + [1850] = {.lex_state = 110, .external_lex_state = 1}, + [1851] = {.lex_state = 110, .external_lex_state = 1}, + [1852] = {.lex_state = 110, .external_lex_state = 1}, + [1853] = {.lex_state = 110, .external_lex_state = 1}, + [1854] = {.lex_state = 110, .external_lex_state = 1}, + [1855] = {.lex_state = 110, .external_lex_state = 1}, + [1856] = {.lex_state = 110, .external_lex_state = 1}, + [1857] = {.lex_state = 45, .external_lex_state = 1}, + [1858] = {.lex_state = 45, .external_lex_state = 1}, + [1859] = {.lex_state = 45, .external_lex_state = 1}, + [1860] = {.lex_state = 45, .external_lex_state = 1}, + [1861] = {.lex_state = 45, .external_lex_state = 1}, + [1862] = {.lex_state = 45, .external_lex_state = 1}, + [1863] = {.lex_state = 45, .external_lex_state = 1}, + [1864] = {.lex_state = 45, .external_lex_state = 1}, + [1865] = {.lex_state = 45, .external_lex_state = 1}, + [1866] = {.lex_state = 45, .external_lex_state = 1}, + [1867] = {.lex_state = 45, .external_lex_state = 1}, + [1868] = {.lex_state = 45, .external_lex_state = 1}, + [1869] = {.lex_state = 110, .external_lex_state = 1}, + [1870] = {.lex_state = 45, .external_lex_state = 1}, + [1871] = {.lex_state = 45, .external_lex_state = 1}, + [1872] = {.lex_state = 45, .external_lex_state = 1}, + [1873] = {.lex_state = 45, .external_lex_state = 1}, + [1874] = {.lex_state = 110, .external_lex_state = 1}, + [1875] = {.lex_state = 110, .external_lex_state = 1}, + [1876] = {.lex_state = 110, .external_lex_state = 1}, + [1877] = {.lex_state = 110, .external_lex_state = 1}, + [1878] = {.lex_state = 110, .external_lex_state = 1}, + [1879] = {.lex_state = 110, .external_lex_state = 1}, + [1880] = {.lex_state = 110, .external_lex_state = 1}, + [1881] = {.lex_state = 110, .external_lex_state = 1}, + [1882] = {.lex_state = 45, .external_lex_state = 1}, + [1883] = {.lex_state = 45, .external_lex_state = 1}, + [1884] = {.lex_state = 45, .external_lex_state = 1}, + [1885] = {.lex_state = 45, .external_lex_state = 1}, + [1886] = {.lex_state = 45, .external_lex_state = 1}, + [1887] = {.lex_state = 45, .external_lex_state = 1}, + [1888] = {.lex_state = 45, .external_lex_state = 1}, + [1889] = {.lex_state = 45, .external_lex_state = 1}, + [1890] = {.lex_state = 45, .external_lex_state = 1}, + [1891] = {.lex_state = 45, .external_lex_state = 1}, + [1892] = {.lex_state = 110, .external_lex_state = 1}, + [1893] = {.lex_state = 45, .external_lex_state = 1}, + [1894] = {.lex_state = 45, .external_lex_state = 1}, + [1895] = {.lex_state = 45, .external_lex_state = 1}, + [1896] = {.lex_state = 110, .external_lex_state = 1}, + [1897] = {.lex_state = 110, .external_lex_state = 1}, + [1898] = {.lex_state = 110, .external_lex_state = 1}, + [1899] = {.lex_state = 110, .external_lex_state = 1}, + [1900] = {.lex_state = 110, .external_lex_state = 1}, + [1901] = {.lex_state = 110, .external_lex_state = 1}, + [1902] = {.lex_state = 110, .external_lex_state = 1}, + [1903] = {.lex_state = 45, .external_lex_state = 1}, + [1904] = {.lex_state = 45, .external_lex_state = 1}, + [1905] = {.lex_state = 45, .external_lex_state = 1}, + [1906] = {.lex_state = 45, .external_lex_state = 1}, + [1907] = {.lex_state = 45, .external_lex_state = 1}, + [1908] = {.lex_state = 45, .external_lex_state = 1}, + [1909] = {.lex_state = 45, .external_lex_state = 1}, + [1910] = {.lex_state = 45, .external_lex_state = 1}, + [1911] = {.lex_state = 45, .external_lex_state = 1}, + [1912] = {.lex_state = 110, .external_lex_state = 1}, + [1913] = {.lex_state = 45, .external_lex_state = 1}, + [1914] = {.lex_state = 110, .external_lex_state = 1}, + [1915] = {.lex_state = 45, .external_lex_state = 1}, + [1916] = {.lex_state = 45, .external_lex_state = 1}, + [1917] = {.lex_state = 110, .external_lex_state = 1}, + [1918] = {.lex_state = 45, .external_lex_state = 1}, + [1919] = {.lex_state = 110, .external_lex_state = 1}, + [1920] = {.lex_state = 110, .external_lex_state = 1}, + [1921] = {.lex_state = 110, .external_lex_state = 1}, + [1922] = {.lex_state = 110, .external_lex_state = 1}, + [1923] = {.lex_state = 110, .external_lex_state = 1}, + [1924] = {.lex_state = 110, .external_lex_state = 1}, + [1925] = {.lex_state = 110, .external_lex_state = 1}, + [1926] = {.lex_state = 45, .external_lex_state = 1}, + [1927] = {.lex_state = 45, .external_lex_state = 1}, + [1928] = {.lex_state = 45, .external_lex_state = 1}, + [1929] = {.lex_state = 45, .external_lex_state = 1}, + [1930] = {.lex_state = 45, .external_lex_state = 1}, + [1931] = {.lex_state = 45, .external_lex_state = 1}, + [1932] = {.lex_state = 45, .external_lex_state = 1}, + [1933] = {.lex_state = 45, .external_lex_state = 1}, + [1934] = {.lex_state = 45, .external_lex_state = 1}, + [1935] = {.lex_state = 45, .external_lex_state = 1}, + [1936] = {.lex_state = 110, .external_lex_state = 1}, + [1937] = {.lex_state = 45, .external_lex_state = 1}, + [1938] = {.lex_state = 45, .external_lex_state = 1}, + [1939] = {.lex_state = 45, .external_lex_state = 1}, + [1940] = {.lex_state = 110, .external_lex_state = 1}, + [1941] = {.lex_state = 110, .external_lex_state = 1}, + [1942] = {.lex_state = 110, .external_lex_state = 1}, + [1943] = {.lex_state = 110, .external_lex_state = 1}, + [1944] = {.lex_state = 110, .external_lex_state = 1}, + [1945] = {.lex_state = 110, .external_lex_state = 1}, + [1946] = {.lex_state = 110, .external_lex_state = 1}, + [1947] = {.lex_state = 45, .external_lex_state = 1}, + [1948] = {.lex_state = 45, .external_lex_state = 1}, + [1949] = {.lex_state = 45, .external_lex_state = 1}, + [1950] = {.lex_state = 45, .external_lex_state = 1}, + [1951] = {.lex_state = 45, .external_lex_state = 1}, + [1952] = {.lex_state = 45, .external_lex_state = 1}, + [1953] = {.lex_state = 45, .external_lex_state = 1}, + [1954] = {.lex_state = 45, .external_lex_state = 1}, + [1955] = {.lex_state = 45, .external_lex_state = 1}, + [1956] = {.lex_state = 45, .external_lex_state = 1}, + [1957] = {.lex_state = 110, .external_lex_state = 1}, + [1958] = {.lex_state = 45, .external_lex_state = 1}, + [1959] = {.lex_state = 45, .external_lex_state = 1}, + [1960] = {.lex_state = 45, .external_lex_state = 1}, + [1961] = {.lex_state = 110, .external_lex_state = 1}, + [1962] = {.lex_state = 110, .external_lex_state = 1}, + [1963] = {.lex_state = 110, .external_lex_state = 1}, + [1964] = {.lex_state = 110, .external_lex_state = 1}, + [1965] = {.lex_state = 110, .external_lex_state = 1}, + [1966] = {.lex_state = 110, .external_lex_state = 1}, + [1967] = {.lex_state = 110, .external_lex_state = 1}, + [1968] = {.lex_state = 45, .external_lex_state = 1}, + [1969] = {.lex_state = 45, .external_lex_state = 1}, + [1970] = {.lex_state = 45, .external_lex_state = 1}, + [1971] = {.lex_state = 45, .external_lex_state = 1}, + [1972] = {.lex_state = 45, .external_lex_state = 1}, + [1973] = {.lex_state = 45, .external_lex_state = 1}, + [1974] = {.lex_state = 45, .external_lex_state = 1}, + [1975] = {.lex_state = 45, .external_lex_state = 1}, + [1976] = {.lex_state = 45, .external_lex_state = 1}, + [1977] = {.lex_state = 45, .external_lex_state = 1}, + [1978] = {.lex_state = 110, .external_lex_state = 1}, + [1979] = {.lex_state = 45, .external_lex_state = 1}, + [1980] = {.lex_state = 45, .external_lex_state = 1}, + [1981] = {.lex_state = 45, .external_lex_state = 1}, + [1982] = {.lex_state = 110, .external_lex_state = 1}, + [1983] = {.lex_state = 110, .external_lex_state = 1}, + [1984] = {.lex_state = 110, .external_lex_state = 1}, + [1985] = {.lex_state = 110, .external_lex_state = 1}, + [1986] = {.lex_state = 110, .external_lex_state = 1}, + [1987] = {.lex_state = 110, .external_lex_state = 1}, + [1988] = {.lex_state = 110, .external_lex_state = 1}, + [1989] = {.lex_state = 45, .external_lex_state = 1}, + [1990] = {.lex_state = 45, .external_lex_state = 1}, + [1991] = {.lex_state = 45, .external_lex_state = 1}, + [1992] = {.lex_state = 45, .external_lex_state = 1}, + [1993] = {.lex_state = 45, .external_lex_state = 1}, + [1994] = {.lex_state = 45, .external_lex_state = 1}, + [1995] = {.lex_state = 45, .external_lex_state = 1}, + [1996] = {.lex_state = 45, .external_lex_state = 1}, + [1997] = {.lex_state = 45, .external_lex_state = 1}, + [1998] = {.lex_state = 45, .external_lex_state = 1}, + [1999] = {.lex_state = 110, .external_lex_state = 1}, + [2000] = {.lex_state = 45, .external_lex_state = 1}, + [2001] = {.lex_state = 45, .external_lex_state = 1}, + [2002] = {.lex_state = 45, .external_lex_state = 1}, + [2003] = {.lex_state = 110, .external_lex_state = 1}, + [2004] = {.lex_state = 110, .external_lex_state = 1}, + [2005] = {.lex_state = 110, .external_lex_state = 1}, + [2006] = {.lex_state = 110, .external_lex_state = 1}, + [2007] = {.lex_state = 110, .external_lex_state = 1}, + [2008] = {.lex_state = 110, .external_lex_state = 1}, + [2009] = {.lex_state = 110, .external_lex_state = 1}, + [2010] = {.lex_state = 45, .external_lex_state = 1}, + [2011] = {.lex_state = 45, .external_lex_state = 1}, + [2012] = {.lex_state = 45, .external_lex_state = 1}, + [2013] = {.lex_state = 45, .external_lex_state = 1}, + [2014] = {.lex_state = 45, .external_lex_state = 1}, + [2015] = {.lex_state = 45, .external_lex_state = 1}, + [2016] = {.lex_state = 45, .external_lex_state = 1}, + [2017] = {.lex_state = 45, .external_lex_state = 1}, + [2018] = {.lex_state = 45, .external_lex_state = 1}, + [2019] = {.lex_state = 45, .external_lex_state = 1}, + [2020] = {.lex_state = 110, .external_lex_state = 1}, + [2021] = {.lex_state = 45, .external_lex_state = 1}, + [2022] = {.lex_state = 45, .external_lex_state = 1}, + [2023] = {.lex_state = 45, .external_lex_state = 1}, + [2024] = {.lex_state = 110, .external_lex_state = 1}, + [2025] = {.lex_state = 110, .external_lex_state = 1}, + [2026] = {.lex_state = 110, .external_lex_state = 1}, + [2027] = {.lex_state = 110, .external_lex_state = 1}, + [2028] = {.lex_state = 110, .external_lex_state = 1}, + [2029] = {.lex_state = 110, .external_lex_state = 1}, + [2030] = {.lex_state = 110, .external_lex_state = 1}, + [2031] = {.lex_state = 45, .external_lex_state = 1}, + [2032] = {.lex_state = 45, .external_lex_state = 1}, + [2033] = {.lex_state = 45, .external_lex_state = 1}, + [2034] = {.lex_state = 45, .external_lex_state = 1}, + [2035] = {.lex_state = 45, .external_lex_state = 1}, + [2036] = {.lex_state = 45, .external_lex_state = 1}, + [2037] = {.lex_state = 45, .external_lex_state = 1}, + [2038] = {.lex_state = 45, .external_lex_state = 1}, + [2039] = {.lex_state = 45, .external_lex_state = 1}, + [2040] = {.lex_state = 45, .external_lex_state = 1}, + [2041] = {.lex_state = 110, .external_lex_state = 1}, + [2042] = {.lex_state = 45, .external_lex_state = 1}, + [2043] = {.lex_state = 45, .external_lex_state = 1}, + [2044] = {.lex_state = 45, .external_lex_state = 1}, + [2045] = {.lex_state = 110, .external_lex_state = 1}, + [2046] = {.lex_state = 110, .external_lex_state = 1}, + [2047] = {.lex_state = 110, .external_lex_state = 1}, + [2048] = {.lex_state = 110, .external_lex_state = 1}, + [2049] = {.lex_state = 110, .external_lex_state = 1}, + [2050] = {.lex_state = 110, .external_lex_state = 1}, + [2051] = {.lex_state = 110, .external_lex_state = 1}, + [2052] = {.lex_state = 45, .external_lex_state = 1}, + [2053] = {.lex_state = 45, .external_lex_state = 1}, + [2054] = {.lex_state = 45, .external_lex_state = 1}, + [2055] = {.lex_state = 45, .external_lex_state = 1}, + [2056] = {.lex_state = 45, .external_lex_state = 1}, + [2057] = {.lex_state = 45, .external_lex_state = 1}, + [2058] = {.lex_state = 45, .external_lex_state = 1}, + [2059] = {.lex_state = 45, .external_lex_state = 1}, + [2060] = {.lex_state = 45, .external_lex_state = 1}, + [2061] = {.lex_state = 45, .external_lex_state = 1}, + [2062] = {.lex_state = 110, .external_lex_state = 1}, + [2063] = {.lex_state = 45, .external_lex_state = 1}, + [2064] = {.lex_state = 45, .external_lex_state = 1}, + [2065] = {.lex_state = 45, .external_lex_state = 1}, + [2066] = {.lex_state = 110, .external_lex_state = 1}, + [2067] = {.lex_state = 110, .external_lex_state = 1}, + [2068] = {.lex_state = 110, .external_lex_state = 1}, + [2069] = {.lex_state = 110, .external_lex_state = 1}, + [2070] = {.lex_state = 110, .external_lex_state = 1}, + [2071] = {.lex_state = 110, .external_lex_state = 1}, + [2072] = {.lex_state = 110, .external_lex_state = 1}, + [2073] = {.lex_state = 45, .external_lex_state = 1}, + [2074] = {.lex_state = 45, .external_lex_state = 1}, + [2075] = {.lex_state = 45, .external_lex_state = 1}, + [2076] = {.lex_state = 45, .external_lex_state = 1}, + [2077] = {.lex_state = 45, .external_lex_state = 1}, + [2078] = {.lex_state = 45, .external_lex_state = 1}, + [2079] = {.lex_state = 45, .external_lex_state = 1}, + [2080] = {.lex_state = 45, .external_lex_state = 1}, + [2081] = {.lex_state = 45, .external_lex_state = 1}, + [2082] = {.lex_state = 45, .external_lex_state = 1}, + [2083] = {.lex_state = 110, .external_lex_state = 1}, + [2084] = {.lex_state = 45, .external_lex_state = 1}, + [2085] = {.lex_state = 45, .external_lex_state = 1}, + [2086] = {.lex_state = 45, .external_lex_state = 1}, + [2087] = {.lex_state = 110, .external_lex_state = 1}, + [2088] = {.lex_state = 110, .external_lex_state = 1}, + [2089] = {.lex_state = 110, .external_lex_state = 1}, + [2090] = {.lex_state = 110, .external_lex_state = 1}, + [2091] = {.lex_state = 110, .external_lex_state = 1}, + [2092] = {.lex_state = 110, .external_lex_state = 1}, + [2093] = {.lex_state = 110, .external_lex_state = 1}, + [2094] = {.lex_state = 45, .external_lex_state = 1}, + [2095] = {.lex_state = 45, .external_lex_state = 1}, + [2096] = {.lex_state = 45, .external_lex_state = 1}, + [2097] = {.lex_state = 45, .external_lex_state = 1}, + [2098] = {.lex_state = 45, .external_lex_state = 1}, + [2099] = {.lex_state = 45, .external_lex_state = 1}, + [2100] = {.lex_state = 45, .external_lex_state = 1}, + [2101] = {.lex_state = 45, .external_lex_state = 1}, + [2102] = {.lex_state = 45, .external_lex_state = 1}, + [2103] = {.lex_state = 45, .external_lex_state = 1}, + [2104] = {.lex_state = 110, .external_lex_state = 1}, + [2105] = {.lex_state = 45, .external_lex_state = 1}, + [2106] = {.lex_state = 45, .external_lex_state = 1}, + [2107] = {.lex_state = 45, .external_lex_state = 1}, + [2108] = {.lex_state = 110, .external_lex_state = 1}, + [2109] = {.lex_state = 110, .external_lex_state = 1}, + [2110] = {.lex_state = 110, .external_lex_state = 1}, + [2111] = {.lex_state = 110, .external_lex_state = 1}, + [2112] = {.lex_state = 110, .external_lex_state = 1}, + [2113] = {.lex_state = 110, .external_lex_state = 1}, + [2114] = {.lex_state = 110, .external_lex_state = 1}, + [2115] = {.lex_state = 45, .external_lex_state = 1}, + [2116] = {.lex_state = 45, .external_lex_state = 1}, + [2117] = {.lex_state = 45, .external_lex_state = 1}, + [2118] = {.lex_state = 45, .external_lex_state = 1}, + [2119] = {.lex_state = 45, .external_lex_state = 1}, + [2120] = {.lex_state = 45, .external_lex_state = 1}, + [2121] = {.lex_state = 45, .external_lex_state = 1}, + [2122] = {.lex_state = 45, .external_lex_state = 1}, + [2123] = {.lex_state = 45, .external_lex_state = 1}, + [2124] = {.lex_state = 45, .external_lex_state = 1}, + [2125] = {.lex_state = 45, .external_lex_state = 1}, + [2126] = {.lex_state = 110, .external_lex_state = 1}, + [2127] = {.lex_state = 45, .external_lex_state = 1}, + [2128] = {.lex_state = 45, .external_lex_state = 1}, + [2129] = {.lex_state = 45, .external_lex_state = 1}, + [2130] = {.lex_state = 110, .external_lex_state = 1}, + [2131] = {.lex_state = 110, .external_lex_state = 1}, + [2132] = {.lex_state = 110, .external_lex_state = 1}, + [2133] = {.lex_state = 110, .external_lex_state = 1}, + [2134] = {.lex_state = 110, .external_lex_state = 1}, + [2135] = {.lex_state = 110, .external_lex_state = 1}, + [2136] = {.lex_state = 110, .external_lex_state = 1}, + [2137] = {.lex_state = 45, .external_lex_state = 1}, + [2138] = {.lex_state = 45, .external_lex_state = 1}, + [2139] = {.lex_state = 45, .external_lex_state = 1}, + [2140] = {.lex_state = 45, .external_lex_state = 1}, + [2141] = {.lex_state = 45, .external_lex_state = 1}, + [2142] = {.lex_state = 45, .external_lex_state = 1}, + [2143] = {.lex_state = 45, .external_lex_state = 1}, + [2144] = {.lex_state = 45, .external_lex_state = 1}, + [2145] = {.lex_state = 45, .external_lex_state = 1}, + [2146] = {.lex_state = 45, .external_lex_state = 1}, + [2147] = {.lex_state = 110, .external_lex_state = 1}, + [2148] = {.lex_state = 45, .external_lex_state = 1}, + [2149] = {.lex_state = 45, .external_lex_state = 1}, + [2150] = {.lex_state = 45, .external_lex_state = 1}, + [2151] = {.lex_state = 110, .external_lex_state = 1}, + [2152] = {.lex_state = 110, .external_lex_state = 1}, + [2153] = {.lex_state = 110, .external_lex_state = 1}, + [2154] = {.lex_state = 110, .external_lex_state = 1}, + [2155] = {.lex_state = 110, .external_lex_state = 1}, + [2156] = {.lex_state = 110, .external_lex_state = 1}, + [2157] = {.lex_state = 110, .external_lex_state = 1}, + [2158] = {.lex_state = 45, .external_lex_state = 1}, + [2159] = {.lex_state = 45, .external_lex_state = 1}, + [2160] = {.lex_state = 45, .external_lex_state = 1}, + [2161] = {.lex_state = 45, .external_lex_state = 1}, + [2162] = {.lex_state = 45, .external_lex_state = 1}, + [2163] = {.lex_state = 45, .external_lex_state = 1}, + [2164] = {.lex_state = 45, .external_lex_state = 1}, + [2165] = {.lex_state = 45, .external_lex_state = 1}, + [2166] = {.lex_state = 45, .external_lex_state = 1}, + [2167] = {.lex_state = 45, .external_lex_state = 1}, + [2168] = {.lex_state = 45, .external_lex_state = 1}, + [2169] = {.lex_state = 110, .external_lex_state = 1}, + [2170] = {.lex_state = 45, .external_lex_state = 1}, + [2171] = {.lex_state = 45, .external_lex_state = 1}, + [2172] = {.lex_state = 45, .external_lex_state = 1}, + [2173] = {.lex_state = 110, .external_lex_state = 1}, + [2174] = {.lex_state = 110, .external_lex_state = 1}, + [2175] = {.lex_state = 110, .external_lex_state = 1}, + [2176] = {.lex_state = 110, .external_lex_state = 1}, + [2177] = {.lex_state = 110, .external_lex_state = 1}, + [2178] = {.lex_state = 110, .external_lex_state = 1}, + [2179] = {.lex_state = 110, .external_lex_state = 1}, + [2180] = {.lex_state = 45, .external_lex_state = 1}, + [2181] = {.lex_state = 45, .external_lex_state = 1}, + [2182] = {.lex_state = 45, .external_lex_state = 1}, + [2183] = {.lex_state = 45, .external_lex_state = 1}, + [2184] = {.lex_state = 45, .external_lex_state = 1}, + [2185] = {.lex_state = 45, .external_lex_state = 1}, + [2186] = {.lex_state = 45, .external_lex_state = 1}, + [2187] = {.lex_state = 45, .external_lex_state = 1}, + [2188] = {.lex_state = 45, .external_lex_state = 1}, + [2189] = {.lex_state = 45, .external_lex_state = 1}, + [2190] = {.lex_state = 110, .external_lex_state = 1}, + [2191] = {.lex_state = 45, .external_lex_state = 1}, + [2192] = {.lex_state = 45, .external_lex_state = 1}, + [2193] = {.lex_state = 45, .external_lex_state = 1}, + [2194] = {.lex_state = 110, .external_lex_state = 1}, + [2195] = {.lex_state = 110, .external_lex_state = 1}, + [2196] = {.lex_state = 110, .external_lex_state = 1}, + [2197] = {.lex_state = 110, .external_lex_state = 1}, + [2198] = {.lex_state = 110, .external_lex_state = 1}, + [2199] = {.lex_state = 110, .external_lex_state = 1}, + [2200] = {.lex_state = 110, .external_lex_state = 1}, + [2201] = {.lex_state = 45, .external_lex_state = 1}, + [2202] = {.lex_state = 45, .external_lex_state = 1}, + [2203] = {.lex_state = 45, .external_lex_state = 1}, + [2204] = {.lex_state = 45, .external_lex_state = 1}, + [2205] = {.lex_state = 45, .external_lex_state = 1}, + [2206] = {.lex_state = 45, .external_lex_state = 1}, + [2207] = {.lex_state = 45, .external_lex_state = 1}, + [2208] = {.lex_state = 45, .external_lex_state = 1}, + [2209] = {.lex_state = 45, .external_lex_state = 1}, + [2210] = {.lex_state = 110, .external_lex_state = 1}, + [2211] = {.lex_state = 45, .external_lex_state = 1}, + [2212] = {.lex_state = 110, .external_lex_state = 1}, + [2213] = {.lex_state = 45, .external_lex_state = 1}, + [2214] = {.lex_state = 45, .external_lex_state = 1}, + [2215] = {.lex_state = 110, .external_lex_state = 1}, + [2216] = {.lex_state = 45, .external_lex_state = 1}, + [2217] = {.lex_state = 110, .external_lex_state = 1}, + [2218] = {.lex_state = 110, .external_lex_state = 1}, + [2219] = {.lex_state = 110, .external_lex_state = 1}, + [2220] = {.lex_state = 110, .external_lex_state = 1}, + [2221] = {.lex_state = 110, .external_lex_state = 1}, + [2222] = {.lex_state = 110, .external_lex_state = 1}, + [2223] = {.lex_state = 110, .external_lex_state = 1}, + [2224] = {.lex_state = 110, .external_lex_state = 1}, + [2225] = {.lex_state = 45, .external_lex_state = 1}, + [2226] = {.lex_state = 45, .external_lex_state = 1}, + [2227] = {.lex_state = 45, .external_lex_state = 1}, + [2228] = {.lex_state = 45, .external_lex_state = 1}, + [2229] = {.lex_state = 45, .external_lex_state = 1}, + [2230] = {.lex_state = 45, .external_lex_state = 1}, + [2231] = {.lex_state = 45, .external_lex_state = 1}, + [2232] = {.lex_state = 45, .external_lex_state = 1}, + [2233] = {.lex_state = 45, .external_lex_state = 1}, + [2234] = {.lex_state = 45, .external_lex_state = 1}, + [2235] = {.lex_state = 110, .external_lex_state = 1}, + [2236] = {.lex_state = 45, .external_lex_state = 1}, + [2237] = {.lex_state = 45, .external_lex_state = 1}, + [2238] = {.lex_state = 45, .external_lex_state = 1}, + [2239] = {.lex_state = 110, .external_lex_state = 1}, + [2240] = {.lex_state = 110, .external_lex_state = 1}, + [2241] = {.lex_state = 110, .external_lex_state = 1}, + [2242] = {.lex_state = 110, .external_lex_state = 1}, + [2243] = {.lex_state = 110, .external_lex_state = 1}, + [2244] = {.lex_state = 110, .external_lex_state = 1}, + [2245] = {.lex_state = 110, .external_lex_state = 1}, + [2246] = {.lex_state = 45, .external_lex_state = 1}, + [2247] = {.lex_state = 45, .external_lex_state = 1}, + [2248] = {.lex_state = 45, .external_lex_state = 1}, + [2249] = {.lex_state = 45, .external_lex_state = 1}, + [2250] = {.lex_state = 45, .external_lex_state = 1}, + [2251] = {.lex_state = 45, .external_lex_state = 1}, + [2252] = {.lex_state = 45, .external_lex_state = 1}, + [2253] = {.lex_state = 45, .external_lex_state = 1}, + [2254] = {.lex_state = 45, .external_lex_state = 1}, + [2255] = {.lex_state = 45, .external_lex_state = 1}, + [2256] = {.lex_state = 110, .external_lex_state = 1}, + [2257] = {.lex_state = 45, .external_lex_state = 1}, + [2258] = {.lex_state = 45, .external_lex_state = 1}, + [2259] = {.lex_state = 45, .external_lex_state = 1}, + [2260] = {.lex_state = 110, .external_lex_state = 1}, + [2261] = {.lex_state = 110, .external_lex_state = 1}, + [2262] = {.lex_state = 110, .external_lex_state = 1}, + [2263] = {.lex_state = 110, .external_lex_state = 1}, + [2264] = {.lex_state = 110, .external_lex_state = 1}, + [2265] = {.lex_state = 110, .external_lex_state = 1}, + [2266] = {.lex_state = 110, .external_lex_state = 1}, + [2267] = {.lex_state = 45, .external_lex_state = 1}, + [2268] = {.lex_state = 45, .external_lex_state = 1}, + [2269] = {.lex_state = 45, .external_lex_state = 1}, + [2270] = {.lex_state = 45, .external_lex_state = 1}, + [2271] = {.lex_state = 45, .external_lex_state = 1}, + [2272] = {.lex_state = 45, .external_lex_state = 1}, + [2273] = {.lex_state = 45, .external_lex_state = 1}, + [2274] = {.lex_state = 45, .external_lex_state = 1}, + [2275] = {.lex_state = 45, .external_lex_state = 1}, + [2276] = {.lex_state = 45, .external_lex_state = 1}, + [2277] = {.lex_state = 110, .external_lex_state = 1}, + [2278] = {.lex_state = 45, .external_lex_state = 1}, + [2279] = {.lex_state = 45, .external_lex_state = 1}, + [2280] = {.lex_state = 45, .external_lex_state = 1}, + [2281] = {.lex_state = 110, .external_lex_state = 1}, + [2282] = {.lex_state = 110, .external_lex_state = 1}, + [2283] = {.lex_state = 110, .external_lex_state = 1}, + [2284] = {.lex_state = 110, .external_lex_state = 1}, + [2285] = {.lex_state = 110, .external_lex_state = 1}, + [2286] = {.lex_state = 110, .external_lex_state = 1}, + [2287] = {.lex_state = 110, .external_lex_state = 1}, + [2288] = {.lex_state = 45, .external_lex_state = 1}, + [2289] = {.lex_state = 45, .external_lex_state = 1}, + [2290] = {.lex_state = 45, .external_lex_state = 1}, + [2291] = {.lex_state = 45, .external_lex_state = 1}, + [2292] = {.lex_state = 45, .external_lex_state = 1}, + [2293] = {.lex_state = 45, .external_lex_state = 1}, + [2294] = {.lex_state = 45, .external_lex_state = 1}, + [2295] = {.lex_state = 45, .external_lex_state = 1}, + [2296] = {.lex_state = 45, .external_lex_state = 1}, + [2297] = {.lex_state = 45, .external_lex_state = 1}, + [2298] = {.lex_state = 110, .external_lex_state = 1}, + [2299] = {.lex_state = 45, .external_lex_state = 1}, + [2300] = {.lex_state = 45, .external_lex_state = 1}, + [2301] = {.lex_state = 45, .external_lex_state = 1}, + [2302] = {.lex_state = 110, .external_lex_state = 1}, + [2303] = {.lex_state = 110, .external_lex_state = 1}, + [2304] = {.lex_state = 110, .external_lex_state = 1}, + [2305] = {.lex_state = 110, .external_lex_state = 1}, + [2306] = {.lex_state = 110, .external_lex_state = 1}, + [2307] = {.lex_state = 110, .external_lex_state = 1}, + [2308] = {.lex_state = 110, .external_lex_state = 1}, + [2309] = {.lex_state = 45, .external_lex_state = 1}, + [2310] = {.lex_state = 45, .external_lex_state = 1}, + [2311] = {.lex_state = 45, .external_lex_state = 1}, + [2312] = {.lex_state = 45, .external_lex_state = 1}, + [2313] = {.lex_state = 45, .external_lex_state = 1}, + [2314] = {.lex_state = 45, .external_lex_state = 1}, + [2315] = {.lex_state = 45, .external_lex_state = 1}, + [2316] = {.lex_state = 45, .external_lex_state = 1}, + [2317] = {.lex_state = 45, .external_lex_state = 1}, + [2318] = {.lex_state = 45, .external_lex_state = 1}, + [2319] = {.lex_state = 110, .external_lex_state = 1}, + [2320] = {.lex_state = 45, .external_lex_state = 1}, + [2321] = {.lex_state = 45, .external_lex_state = 1}, + [2322] = {.lex_state = 45, .external_lex_state = 1}, + [2323] = {.lex_state = 110, .external_lex_state = 1}, + [2324] = {.lex_state = 110, .external_lex_state = 1}, + [2325] = {.lex_state = 110, .external_lex_state = 1}, + [2326] = {.lex_state = 110, .external_lex_state = 1}, + [2327] = {.lex_state = 110, .external_lex_state = 1}, + [2328] = {.lex_state = 110, .external_lex_state = 1}, + [2329] = {.lex_state = 110, .external_lex_state = 1}, + [2330] = {.lex_state = 45, .external_lex_state = 1}, + [2331] = {.lex_state = 45, .external_lex_state = 1}, + [2332] = {.lex_state = 45, .external_lex_state = 1}, + [2333] = {.lex_state = 45, .external_lex_state = 1}, + [2334] = {.lex_state = 45, .external_lex_state = 1}, + [2335] = {.lex_state = 45, .external_lex_state = 1}, + [2336] = {.lex_state = 45, .external_lex_state = 1}, + [2337] = {.lex_state = 45, .external_lex_state = 1}, + [2338] = {.lex_state = 45, .external_lex_state = 1}, + [2339] = {.lex_state = 45, .external_lex_state = 1}, + [2340] = {.lex_state = 45, .external_lex_state = 1}, + [2341] = {.lex_state = 45, .external_lex_state = 1}, + [2342] = {.lex_state = 110, .external_lex_state = 1}, + [2343] = {.lex_state = 45, .external_lex_state = 1}, + [2344] = {.lex_state = 45, .external_lex_state = 1}, + [2345] = {.lex_state = 45, .external_lex_state = 1}, + [2346] = {.lex_state = 110, .external_lex_state = 1}, + [2347] = {.lex_state = 110, .external_lex_state = 1}, + [2348] = {.lex_state = 110, .external_lex_state = 1}, + [2349] = {.lex_state = 110, .external_lex_state = 1}, + [2350] = {.lex_state = 110, .external_lex_state = 1}, + [2351] = {.lex_state = 110, .external_lex_state = 1}, + [2352] = {.lex_state = 110, .external_lex_state = 1}, + [2353] = {.lex_state = 45, .external_lex_state = 1}, + [2354] = {.lex_state = 45, .external_lex_state = 1}, + [2355] = {.lex_state = 45, .external_lex_state = 1}, + [2356] = {.lex_state = 45, .external_lex_state = 1}, + [2357] = {.lex_state = 45, .external_lex_state = 1}, + [2358] = {.lex_state = 45, .external_lex_state = 1}, + [2359] = {.lex_state = 45, .external_lex_state = 1}, + [2360] = {.lex_state = 45, .external_lex_state = 1}, + [2361] = {.lex_state = 45, .external_lex_state = 1}, + [2362] = {.lex_state = 45, .external_lex_state = 1}, + [2363] = {.lex_state = 110, .external_lex_state = 1}, + [2364] = {.lex_state = 45, .external_lex_state = 1}, + [2365] = {.lex_state = 45, .external_lex_state = 1}, + [2366] = {.lex_state = 45, .external_lex_state = 1}, + [2367] = {.lex_state = 110, .external_lex_state = 1}, + [2368] = {.lex_state = 110, .external_lex_state = 1}, + [2369] = {.lex_state = 110, .external_lex_state = 1}, + [2370] = {.lex_state = 110, .external_lex_state = 1}, + [2371] = {.lex_state = 110, .external_lex_state = 1}, + [2372] = {.lex_state = 110, .external_lex_state = 1}, + [2373] = {.lex_state = 110, .external_lex_state = 1}, + [2374] = {.lex_state = 45, .external_lex_state = 1}, + [2375] = {.lex_state = 45, .external_lex_state = 1}, + [2376] = {.lex_state = 45, .external_lex_state = 1}, + [2377] = {.lex_state = 45, .external_lex_state = 1}, + [2378] = {.lex_state = 45, .external_lex_state = 1}, + [2379] = {.lex_state = 45, .external_lex_state = 1}, + [2380] = {.lex_state = 45, .external_lex_state = 1}, + [2381] = {.lex_state = 45, .external_lex_state = 1}, + [2382] = {.lex_state = 45, .external_lex_state = 1}, + [2383] = {.lex_state = 45, .external_lex_state = 1}, + [2384] = {.lex_state = 110, .external_lex_state = 1}, + [2385] = {.lex_state = 45, .external_lex_state = 1}, + [2386] = {.lex_state = 45, .external_lex_state = 1}, + [2387] = {.lex_state = 45, .external_lex_state = 1}, + [2388] = {.lex_state = 110, .external_lex_state = 1}, + [2389] = {.lex_state = 110, .external_lex_state = 1}, + [2390] = {.lex_state = 110, .external_lex_state = 1}, + [2391] = {.lex_state = 110, .external_lex_state = 1}, + [2392] = {.lex_state = 110, .external_lex_state = 1}, + [2393] = {.lex_state = 110, .external_lex_state = 1}, + [2394] = {.lex_state = 110, .external_lex_state = 1}, + [2395] = {.lex_state = 45, .external_lex_state = 1}, + [2396] = {.lex_state = 45, .external_lex_state = 1}, + [2397] = {.lex_state = 45, .external_lex_state = 1}, + [2398] = {.lex_state = 45, .external_lex_state = 1}, + [2399] = {.lex_state = 45, .external_lex_state = 1}, + [2400] = {.lex_state = 45, .external_lex_state = 1}, + [2401] = {.lex_state = 45, .external_lex_state = 1}, + [2402] = {.lex_state = 45, .external_lex_state = 1}, + [2403] = {.lex_state = 45, .external_lex_state = 1}, + [2404] = {.lex_state = 45, .external_lex_state = 1}, + [2405] = {.lex_state = 110, .external_lex_state = 1}, + [2406] = {.lex_state = 45, .external_lex_state = 1}, + [2407] = {.lex_state = 45, .external_lex_state = 1}, + [2408] = {.lex_state = 45, .external_lex_state = 1}, + [2409] = {.lex_state = 110, .external_lex_state = 1}, + [2410] = {.lex_state = 110, .external_lex_state = 1}, + [2411] = {.lex_state = 110, .external_lex_state = 1}, + [2412] = {.lex_state = 110, .external_lex_state = 1}, + [2413] = {.lex_state = 110, .external_lex_state = 1}, + [2414] = {.lex_state = 110, .external_lex_state = 1}, + [2415] = {.lex_state = 110, .external_lex_state = 1}, + [2416] = {.lex_state = 45, .external_lex_state = 1}, + [2417] = {.lex_state = 45, .external_lex_state = 1}, + [2418] = {.lex_state = 45, .external_lex_state = 1}, + [2419] = {.lex_state = 45, .external_lex_state = 1}, + [2420] = {.lex_state = 45, .external_lex_state = 1}, + [2421] = {.lex_state = 45, .external_lex_state = 1}, + [2422] = {.lex_state = 45, .external_lex_state = 1}, + [2423] = {.lex_state = 45, .external_lex_state = 1}, + [2424] = {.lex_state = 45, .external_lex_state = 1}, + [2425] = {.lex_state = 45, .external_lex_state = 1}, + [2426] = {.lex_state = 110, .external_lex_state = 1}, + [2427] = {.lex_state = 45, .external_lex_state = 1}, + [2428] = {.lex_state = 45, .external_lex_state = 1}, + [2429] = {.lex_state = 45, .external_lex_state = 1}, + [2430] = {.lex_state = 110, .external_lex_state = 1}, + [2431] = {.lex_state = 110, .external_lex_state = 1}, + [2432] = {.lex_state = 110, .external_lex_state = 1}, + [2433] = {.lex_state = 110, .external_lex_state = 1}, + [2434] = {.lex_state = 110, .external_lex_state = 1}, + [2435] = {.lex_state = 110, .external_lex_state = 1}, + [2436] = {.lex_state = 110, .external_lex_state = 1}, + [2437] = {.lex_state = 45, .external_lex_state = 1}, + [2438] = {.lex_state = 45, .external_lex_state = 1}, + [2439] = {.lex_state = 45, .external_lex_state = 1}, + [2440] = {.lex_state = 45, .external_lex_state = 1}, + [2441] = {.lex_state = 110, .external_lex_state = 1}, + [2442] = {.lex_state = 45, .external_lex_state = 1}, + [2443] = {.lex_state = 45, .external_lex_state = 1}, + [2444] = {.lex_state = 45, .external_lex_state = 1}, + [2445] = {.lex_state = 45, .external_lex_state = 1}, + [2446] = {.lex_state = 45, .external_lex_state = 1}, + [2447] = {.lex_state = 45, .external_lex_state = 1}, + [2448] = {.lex_state = 45, .external_lex_state = 1}, + [2449] = {.lex_state = 110, .external_lex_state = 1}, + [2450] = {.lex_state = 45, .external_lex_state = 1}, + [2451] = {.lex_state = 45, .external_lex_state = 1}, + [2452] = {.lex_state = 45, .external_lex_state = 1}, + [2453] = {.lex_state = 110, .external_lex_state = 1}, + [2454] = {.lex_state = 110, .external_lex_state = 1}, + [2455] = {.lex_state = 110, .external_lex_state = 1}, + [2456] = {.lex_state = 110, .external_lex_state = 1}, + [2457] = {.lex_state = 110, .external_lex_state = 1}, + [2458] = {.lex_state = 110, .external_lex_state = 1}, + [2459] = {.lex_state = 110, .external_lex_state = 1}, + [2460] = {.lex_state = 45, .external_lex_state = 1}, + [2461] = {.lex_state = 45, .external_lex_state = 1}, + [2462] = {.lex_state = 45, .external_lex_state = 1}, + [2463] = {.lex_state = 45, .external_lex_state = 1}, + [2464] = {.lex_state = 45, .external_lex_state = 1}, + [2465] = {.lex_state = 45, .external_lex_state = 1}, + [2466] = {.lex_state = 45, .external_lex_state = 1}, + [2467] = {.lex_state = 45, .external_lex_state = 1}, + [2468] = {.lex_state = 45, .external_lex_state = 1}, + [2469] = {.lex_state = 45, .external_lex_state = 1}, + [2470] = {.lex_state = 110, .external_lex_state = 1}, + [2471] = {.lex_state = 45, .external_lex_state = 1}, + [2472] = {.lex_state = 45, .external_lex_state = 1}, + [2473] = {.lex_state = 45, .external_lex_state = 1}, + [2474] = {.lex_state = 110, .external_lex_state = 1}, + [2475] = {.lex_state = 110, .external_lex_state = 1}, + [2476] = {.lex_state = 110, .external_lex_state = 1}, + [2477] = {.lex_state = 110, .external_lex_state = 1}, + [2478] = {.lex_state = 110, .external_lex_state = 1}, + [2479] = {.lex_state = 110, .external_lex_state = 1}, + [2480] = {.lex_state = 110, .external_lex_state = 1}, + [2481] = {.lex_state = 45, .external_lex_state = 1}, + [2482] = {.lex_state = 45, .external_lex_state = 1}, + [2483] = {.lex_state = 45, .external_lex_state = 1}, + [2484] = {.lex_state = 45, .external_lex_state = 1}, + [2485] = {.lex_state = 45, .external_lex_state = 1}, + [2486] = {.lex_state = 45, .external_lex_state = 1}, + [2487] = {.lex_state = 45, .external_lex_state = 1}, + [2488] = {.lex_state = 45, .external_lex_state = 1}, + [2489] = {.lex_state = 45, .external_lex_state = 1}, + [2490] = {.lex_state = 45, .external_lex_state = 1}, + [2491] = {.lex_state = 110, .external_lex_state = 1}, + [2492] = {.lex_state = 45, .external_lex_state = 1}, + [2493] = {.lex_state = 45, .external_lex_state = 1}, + [2494] = {.lex_state = 45, .external_lex_state = 1}, + [2495] = {.lex_state = 110, .external_lex_state = 1}, + [2496] = {.lex_state = 110, .external_lex_state = 1}, + [2497] = {.lex_state = 110, .external_lex_state = 1}, + [2498] = {.lex_state = 110, .external_lex_state = 1}, + [2499] = {.lex_state = 110, .external_lex_state = 1}, + [2500] = {.lex_state = 110, .external_lex_state = 1}, + [2501] = {.lex_state = 110, .external_lex_state = 1}, + [2502] = {.lex_state = 45, .external_lex_state = 1}, + [2503] = {.lex_state = 45, .external_lex_state = 1}, + [2504] = {.lex_state = 45, .external_lex_state = 1}, + [2505] = {.lex_state = 45, .external_lex_state = 1}, + [2506] = {.lex_state = 45, .external_lex_state = 1}, + [2507] = {.lex_state = 45, .external_lex_state = 1}, + [2508] = {.lex_state = 45, .external_lex_state = 1}, + [2509] = {.lex_state = 45, .external_lex_state = 1}, + [2510] = {.lex_state = 45, .external_lex_state = 1}, + [2511] = {.lex_state = 89, .external_lex_state = 1}, + [2512] = {.lex_state = 45, .external_lex_state = 1}, + [2513] = {.lex_state = 110, .external_lex_state = 1}, + [2514] = {.lex_state = 45, .external_lex_state = 1}, + [2515] = {.lex_state = 45, .external_lex_state = 1}, + [2516] = {.lex_state = 89, .external_lex_state = 1}, + [2517] = {.lex_state = 45, .external_lex_state = 1}, + [2518] = {.lex_state = 110, .external_lex_state = 1}, + [2519] = {.lex_state = 110, .external_lex_state = 1}, + [2520] = {.lex_state = 110, .external_lex_state = 1}, + [2521] = {.lex_state = 110, .external_lex_state = 1}, + [2522] = {.lex_state = 110, .external_lex_state = 1}, + [2523] = {.lex_state = 110, .external_lex_state = 1}, + [2524] = {.lex_state = 110, .external_lex_state = 1}, + [2525] = {.lex_state = 89, .external_lex_state = 1}, + [2526] = {.lex_state = 45, .external_lex_state = 1}, + [2527] = {.lex_state = 45, .external_lex_state = 1}, + [2528] = {.lex_state = 45, .external_lex_state = 1}, + [2529] = {.lex_state = 45, .external_lex_state = 1}, + [2530] = {.lex_state = 45, .external_lex_state = 1}, + [2531] = {.lex_state = 45, .external_lex_state = 1}, + [2532] = {.lex_state = 45, .external_lex_state = 1}, + [2533] = {.lex_state = 45, .external_lex_state = 1}, + [2534] = {.lex_state = 45, .external_lex_state = 1}, + [2535] = {.lex_state = 45, .external_lex_state = 1}, + [2536] = {.lex_state = 110, .external_lex_state = 1}, + [2537] = {.lex_state = 45, .external_lex_state = 1}, + [2538] = {.lex_state = 45, .external_lex_state = 1}, + [2539] = {.lex_state = 45, .external_lex_state = 1}, + [2540] = {.lex_state = 110, .external_lex_state = 1}, + [2541] = {.lex_state = 110, .external_lex_state = 1}, + [2542] = {.lex_state = 110, .external_lex_state = 1}, + [2543] = {.lex_state = 110, .external_lex_state = 1}, + [2544] = {.lex_state = 110, .external_lex_state = 1}, + [2545] = {.lex_state = 110, .external_lex_state = 1}, + [2546] = {.lex_state = 110, .external_lex_state = 1}, + [2547] = {.lex_state = 45, .external_lex_state = 1}, + [2548] = {.lex_state = 45, .external_lex_state = 1}, + [2549] = {.lex_state = 45, .external_lex_state = 1}, + [2550] = {.lex_state = 45, .external_lex_state = 1}, + [2551] = {.lex_state = 45, .external_lex_state = 1}, + [2552] = {.lex_state = 45, .external_lex_state = 1}, + [2553] = {.lex_state = 45, .external_lex_state = 1}, + [2554] = {.lex_state = 45, .external_lex_state = 1}, + [2555] = {.lex_state = 45, .external_lex_state = 1}, + [2556] = {.lex_state = 45, .external_lex_state = 1}, + [2557] = {.lex_state = 110, .external_lex_state = 1}, + [2558] = {.lex_state = 45, .external_lex_state = 1}, + [2559] = {.lex_state = 45, .external_lex_state = 1}, + [2560] = {.lex_state = 45, .external_lex_state = 1}, + [2561] = {.lex_state = 110, .external_lex_state = 1}, + [2562] = {.lex_state = 110, .external_lex_state = 1}, + [2563] = {.lex_state = 110, .external_lex_state = 1}, + [2564] = {.lex_state = 110, .external_lex_state = 1}, + [2565] = {.lex_state = 110, .external_lex_state = 1}, + [2566] = {.lex_state = 110, .external_lex_state = 1}, + [2567] = {.lex_state = 110, .external_lex_state = 1}, + [2568] = {.lex_state = 45, .external_lex_state = 1}, + [2569] = {.lex_state = 45, .external_lex_state = 1}, + [2570] = {.lex_state = 45, .external_lex_state = 1}, + [2571] = {.lex_state = 45, .external_lex_state = 1}, + [2572] = {.lex_state = 45, .external_lex_state = 1}, + [2573] = {.lex_state = 45, .external_lex_state = 1}, + [2574] = {.lex_state = 45, .external_lex_state = 1}, + [2575] = {.lex_state = 45, .external_lex_state = 1}, + [2576] = {.lex_state = 45, .external_lex_state = 1}, + [2577] = {.lex_state = 45, .external_lex_state = 1}, + [2578] = {.lex_state = 110, .external_lex_state = 1}, + [2579] = {.lex_state = 45, .external_lex_state = 1}, + [2580] = {.lex_state = 45, .external_lex_state = 1}, + [2581] = {.lex_state = 45, .external_lex_state = 1}, + [2582] = {.lex_state = 110, .external_lex_state = 1}, + [2583] = {.lex_state = 110, .external_lex_state = 1}, + [2584] = {.lex_state = 110, .external_lex_state = 1}, + [2585] = {.lex_state = 110, .external_lex_state = 1}, + [2586] = {.lex_state = 110, .external_lex_state = 1}, + [2587] = {.lex_state = 110, .external_lex_state = 1}, + [2588] = {.lex_state = 110, .external_lex_state = 1}, + [2589] = {.lex_state = 45, .external_lex_state = 1}, + [2590] = {.lex_state = 45, .external_lex_state = 1}, + [2591] = {.lex_state = 45, .external_lex_state = 1}, + [2592] = {.lex_state = 45, .external_lex_state = 1}, + [2593] = {.lex_state = 45, .external_lex_state = 1}, + [2594] = {.lex_state = 45, .external_lex_state = 1}, + [2595] = {.lex_state = 45, .external_lex_state = 1}, + [2596] = {.lex_state = 45, .external_lex_state = 1}, + [2597] = {.lex_state = 45, .external_lex_state = 1}, + [2598] = {.lex_state = 45, .external_lex_state = 1}, + [2599] = {.lex_state = 110, .external_lex_state = 1}, + [2600] = {.lex_state = 45, .external_lex_state = 1}, + [2601] = {.lex_state = 45, .external_lex_state = 1}, + [2602] = {.lex_state = 45, .external_lex_state = 1}, + [2603] = {.lex_state = 110, .external_lex_state = 1}, + [2604] = {.lex_state = 110, .external_lex_state = 1}, + [2605] = {.lex_state = 110, .external_lex_state = 1}, + [2606] = {.lex_state = 110, .external_lex_state = 1}, + [2607] = {.lex_state = 110, .external_lex_state = 1}, + [2608] = {.lex_state = 110, .external_lex_state = 1}, + [2609] = {.lex_state = 110, .external_lex_state = 1}, + [2610] = {.lex_state = 45, .external_lex_state = 1}, + [2611] = {.lex_state = 45, .external_lex_state = 1}, + [2612] = {.lex_state = 45, .external_lex_state = 1}, + [2613] = {.lex_state = 45, .external_lex_state = 1}, + [2614] = {.lex_state = 45, .external_lex_state = 1}, + [2615] = {.lex_state = 45, .external_lex_state = 1}, + [2616] = {.lex_state = 45, .external_lex_state = 1}, + [2617] = {.lex_state = 45, .external_lex_state = 1}, + [2618] = {.lex_state = 45, .external_lex_state = 1}, + [2619] = {.lex_state = 45, .external_lex_state = 1}, + [2620] = {.lex_state = 110, .external_lex_state = 1}, + [2621] = {.lex_state = 45, .external_lex_state = 1}, + [2622] = {.lex_state = 45, .external_lex_state = 1}, + [2623] = {.lex_state = 45, .external_lex_state = 1}, + [2624] = {.lex_state = 110, .external_lex_state = 1}, + [2625] = {.lex_state = 110, .external_lex_state = 1}, + [2626] = {.lex_state = 110, .external_lex_state = 1}, + [2627] = {.lex_state = 110, .external_lex_state = 1}, + [2628] = {.lex_state = 110, .external_lex_state = 1}, + [2629] = {.lex_state = 110, .external_lex_state = 1}, + [2630] = {.lex_state = 110, .external_lex_state = 1}, + [2631] = {.lex_state = 45, .external_lex_state = 1}, + [2632] = {.lex_state = 45, .external_lex_state = 1}, + [2633] = {.lex_state = 45, .external_lex_state = 1}, + [2634] = {.lex_state = 45, .external_lex_state = 1}, + [2635] = {.lex_state = 45, .external_lex_state = 1}, + [2636] = {.lex_state = 45, .external_lex_state = 1}, + [2637] = {.lex_state = 45, .external_lex_state = 1}, + [2638] = {.lex_state = 45, .external_lex_state = 1}, + [2639] = {.lex_state = 45, .external_lex_state = 1}, + [2640] = {.lex_state = 45, .external_lex_state = 1}, + [2641] = {.lex_state = 110, .external_lex_state = 1}, + [2642] = {.lex_state = 45, .external_lex_state = 1}, + [2643] = {.lex_state = 45, .external_lex_state = 1}, + [2644] = {.lex_state = 45, .external_lex_state = 1}, + [2645] = {.lex_state = 110, .external_lex_state = 1}, + [2646] = {.lex_state = 110, .external_lex_state = 1}, + [2647] = {.lex_state = 110, .external_lex_state = 1}, + [2648] = {.lex_state = 110, .external_lex_state = 1}, + [2649] = {.lex_state = 110, .external_lex_state = 1}, + [2650] = {.lex_state = 110, .external_lex_state = 1}, + [2651] = {.lex_state = 110, .external_lex_state = 1}, + [2652] = {.lex_state = 45, .external_lex_state = 1}, + [2653] = {.lex_state = 45, .external_lex_state = 1}, + [2654] = {.lex_state = 45, .external_lex_state = 1}, + [2655] = {.lex_state = 45, .external_lex_state = 1}, + [2656] = {.lex_state = 45, .external_lex_state = 1}, + [2657] = {.lex_state = 45, .external_lex_state = 1}, + [2658] = {.lex_state = 45, .external_lex_state = 1}, + [2659] = {.lex_state = 45, .external_lex_state = 1}, + [2660] = {.lex_state = 45, .external_lex_state = 1}, + [2661] = {.lex_state = 45, .external_lex_state = 1}, + [2662] = {.lex_state = 110, .external_lex_state = 1}, + [2663] = {.lex_state = 45, .external_lex_state = 1}, + [2664] = {.lex_state = 45, .external_lex_state = 1}, + [2665] = {.lex_state = 45, .external_lex_state = 1}, + [2666] = {.lex_state = 110, .external_lex_state = 1}, + [2667] = {.lex_state = 110, .external_lex_state = 1}, + [2668] = {.lex_state = 110, .external_lex_state = 1}, + [2669] = {.lex_state = 110, .external_lex_state = 1}, + [2670] = {.lex_state = 110, .external_lex_state = 1}, + [2671] = {.lex_state = 110, .external_lex_state = 1}, + [2672] = {.lex_state = 110, .external_lex_state = 1}, + [2673] = {.lex_state = 45, .external_lex_state = 1}, + [2674] = {.lex_state = 45, .external_lex_state = 1}, + [2675] = {.lex_state = 45, .external_lex_state = 1}, + [2676] = {.lex_state = 45, .external_lex_state = 1}, + [2677] = {.lex_state = 45, .external_lex_state = 1}, + [2678] = {.lex_state = 45, .external_lex_state = 1}, + [2679] = {.lex_state = 45, .external_lex_state = 1}, + [2680] = {.lex_state = 45, .external_lex_state = 1}, + [2681] = {.lex_state = 45, .external_lex_state = 1}, + [2682] = {.lex_state = 45, .external_lex_state = 1}, + [2683] = {.lex_state = 110, .external_lex_state = 1}, + [2684] = {.lex_state = 45, .external_lex_state = 1}, + [2685] = {.lex_state = 45, .external_lex_state = 1}, + [2686] = {.lex_state = 45, .external_lex_state = 1}, + [2687] = {.lex_state = 110, .external_lex_state = 1}, + [2688] = {.lex_state = 110, .external_lex_state = 1}, + [2689] = {.lex_state = 110, .external_lex_state = 1}, + [2690] = {.lex_state = 110, .external_lex_state = 1}, + [2691] = {.lex_state = 110, .external_lex_state = 1}, + [2692] = {.lex_state = 110, .external_lex_state = 1}, + [2693] = {.lex_state = 110, .external_lex_state = 1}, + [2694] = {.lex_state = 45, .external_lex_state = 1}, + [2695] = {.lex_state = 45, .external_lex_state = 1}, + [2696] = {.lex_state = 45, .external_lex_state = 1}, + [2697] = {.lex_state = 45, .external_lex_state = 1}, + [2698] = {.lex_state = 45, .external_lex_state = 1}, + [2699] = {.lex_state = 45, .external_lex_state = 1}, + [2700] = {.lex_state = 45, .external_lex_state = 1}, + [2701] = {.lex_state = 45, .external_lex_state = 1}, + [2702] = {.lex_state = 45, .external_lex_state = 1}, + [2703] = {.lex_state = 45, .external_lex_state = 1}, + [2704] = {.lex_state = 110, .external_lex_state = 1}, + [2705] = {.lex_state = 45, .external_lex_state = 1}, + [2706] = {.lex_state = 45, .external_lex_state = 1}, + [2707] = {.lex_state = 45, .external_lex_state = 1}, + [2708] = {.lex_state = 110, .external_lex_state = 1}, + [2709] = {.lex_state = 110, .external_lex_state = 1}, + [2710] = {.lex_state = 110, .external_lex_state = 1}, + [2711] = {.lex_state = 110, .external_lex_state = 1}, + [2712] = {.lex_state = 110, .external_lex_state = 1}, + [2713] = {.lex_state = 110, .external_lex_state = 1}, + [2714] = {.lex_state = 110, .external_lex_state = 1}, + [2715] = {.lex_state = 45, .external_lex_state = 1}, + [2716] = {.lex_state = 45, .external_lex_state = 1}, + [2717] = {.lex_state = 45, .external_lex_state = 1}, + [2718] = {.lex_state = 45, .external_lex_state = 1}, + [2719] = {.lex_state = 45, .external_lex_state = 1}, + [2720] = {.lex_state = 45, .external_lex_state = 1}, + [2721] = {.lex_state = 45, .external_lex_state = 1}, + [2722] = {.lex_state = 45, .external_lex_state = 1}, + [2723] = {.lex_state = 45, .external_lex_state = 1}, + [2724] = {.lex_state = 45, .external_lex_state = 1}, + [2725] = {.lex_state = 110, .external_lex_state = 1}, + [2726] = {.lex_state = 45, .external_lex_state = 1}, + [2727] = {.lex_state = 45, .external_lex_state = 1}, + [2728] = {.lex_state = 45, .external_lex_state = 1}, + [2729] = {.lex_state = 110, .external_lex_state = 1}, + [2730] = {.lex_state = 110, .external_lex_state = 1}, + [2731] = {.lex_state = 110, .external_lex_state = 1}, + [2732] = {.lex_state = 110, .external_lex_state = 1}, + [2733] = {.lex_state = 110, .external_lex_state = 1}, + [2734] = {.lex_state = 110, .external_lex_state = 1}, + [2735] = {.lex_state = 110, .external_lex_state = 1}, + [2736] = {.lex_state = 45, .external_lex_state = 1}, + [2737] = {.lex_state = 45, .external_lex_state = 1}, + [2738] = {.lex_state = 45, .external_lex_state = 1}, + [2739] = {.lex_state = 45, .external_lex_state = 1}, + [2740] = {.lex_state = 45, .external_lex_state = 1}, + [2741] = {.lex_state = 45, .external_lex_state = 1}, + [2742] = {.lex_state = 45, .external_lex_state = 1}, + [2743] = {.lex_state = 45, .external_lex_state = 1}, + [2744] = {.lex_state = 45, .external_lex_state = 1}, + [2745] = {.lex_state = 45, .external_lex_state = 1}, + [2746] = {.lex_state = 110, .external_lex_state = 1}, + [2747] = {.lex_state = 45, .external_lex_state = 1}, + [2748] = {.lex_state = 45, .external_lex_state = 1}, + [2749] = {.lex_state = 45, .external_lex_state = 1}, + [2750] = {.lex_state = 110, .external_lex_state = 1}, + [2751] = {.lex_state = 110, .external_lex_state = 1}, + [2752] = {.lex_state = 110, .external_lex_state = 1}, + [2753] = {.lex_state = 110, .external_lex_state = 1}, + [2754] = {.lex_state = 110, .external_lex_state = 1}, + [2755] = {.lex_state = 110, .external_lex_state = 1}, + [2756] = {.lex_state = 110, .external_lex_state = 1}, + [2757] = {.lex_state = 45, .external_lex_state = 1}, + [2758] = {.lex_state = 45, .external_lex_state = 1}, + [2759] = {.lex_state = 45, .external_lex_state = 1}, + [2760] = {.lex_state = 45, .external_lex_state = 1}, + [2761] = {.lex_state = 45, .external_lex_state = 1}, + [2762] = {.lex_state = 45, .external_lex_state = 1}, + [2763] = {.lex_state = 45, .external_lex_state = 1}, + [2764] = {.lex_state = 45, .external_lex_state = 1}, + [2765] = {.lex_state = 45, .external_lex_state = 1}, + [2766] = {.lex_state = 45, .external_lex_state = 1}, + [2767] = {.lex_state = 110, .external_lex_state = 1}, + [2768] = {.lex_state = 45, .external_lex_state = 1}, + [2769] = {.lex_state = 45, .external_lex_state = 1}, + [2770] = {.lex_state = 45, .external_lex_state = 1}, + [2771] = {.lex_state = 110, .external_lex_state = 1}, + [2772] = {.lex_state = 110, .external_lex_state = 1}, + [2773] = {.lex_state = 110, .external_lex_state = 1}, + [2774] = {.lex_state = 110, .external_lex_state = 1}, + [2775] = {.lex_state = 110, .external_lex_state = 1}, + [2776] = {.lex_state = 110, .external_lex_state = 1}, + [2777] = {.lex_state = 110, .external_lex_state = 1}, + [2778] = {.lex_state = 45, .external_lex_state = 1}, + [2779] = {.lex_state = 45, .external_lex_state = 1}, + [2780] = {.lex_state = 45, .external_lex_state = 1}, + [2781] = {.lex_state = 45, .external_lex_state = 1}, + [2782] = {.lex_state = 45, .external_lex_state = 1}, + [2783] = {.lex_state = 45, .external_lex_state = 1}, + [2784] = {.lex_state = 45, .external_lex_state = 1}, + [2785] = {.lex_state = 45, .external_lex_state = 1}, + [2786] = {.lex_state = 45, .external_lex_state = 1}, + [2787] = {.lex_state = 45, .external_lex_state = 1}, + [2788] = {.lex_state = 110, .external_lex_state = 1}, + [2789] = {.lex_state = 45, .external_lex_state = 1}, + [2790] = {.lex_state = 45, .external_lex_state = 1}, + [2791] = {.lex_state = 45, .external_lex_state = 1}, + [2792] = {.lex_state = 110, .external_lex_state = 1}, + [2793] = {.lex_state = 110, .external_lex_state = 1}, + [2794] = {.lex_state = 110, .external_lex_state = 1}, + [2795] = {.lex_state = 110, .external_lex_state = 1}, + [2796] = {.lex_state = 110, .external_lex_state = 1}, + [2797] = {.lex_state = 110, .external_lex_state = 1}, + [2798] = {.lex_state = 110, .external_lex_state = 1}, + [2799] = {.lex_state = 45, .external_lex_state = 1}, + [2800] = {.lex_state = 45, .external_lex_state = 1}, + [2801] = {.lex_state = 45, .external_lex_state = 1}, + [2802] = {.lex_state = 45, .external_lex_state = 1}, + [2803] = {.lex_state = 45, .external_lex_state = 1}, + [2804] = {.lex_state = 45, .external_lex_state = 1}, + [2805] = {.lex_state = 45, .external_lex_state = 1}, + [2806] = {.lex_state = 45, .external_lex_state = 1}, + [2807] = {.lex_state = 45, .external_lex_state = 1}, + [2808] = {.lex_state = 45, .external_lex_state = 1}, + [2809] = {.lex_state = 110, .external_lex_state = 1}, + [2810] = {.lex_state = 45, .external_lex_state = 1}, + [2811] = {.lex_state = 45, .external_lex_state = 1}, + [2812] = {.lex_state = 45, .external_lex_state = 1}, + [2813] = {.lex_state = 110, .external_lex_state = 1}, + [2814] = {.lex_state = 110, .external_lex_state = 1}, + [2815] = {.lex_state = 110, .external_lex_state = 1}, + [2816] = {.lex_state = 110, .external_lex_state = 1}, + [2817] = {.lex_state = 110, .external_lex_state = 1}, + [2818] = {.lex_state = 110, .external_lex_state = 1}, + [2819] = {.lex_state = 110, .external_lex_state = 1}, + [2820] = {.lex_state = 45, .external_lex_state = 1}, + [2821] = {.lex_state = 45, .external_lex_state = 1}, + [2822] = {.lex_state = 45, .external_lex_state = 1}, + [2823] = {.lex_state = 45, .external_lex_state = 1}, + [2824] = {.lex_state = 45, .external_lex_state = 1}, + [2825] = {.lex_state = 45, .external_lex_state = 1}, + [2826] = {.lex_state = 45, .external_lex_state = 1}, + [2827] = {.lex_state = 45, .external_lex_state = 1}, + [2828] = {.lex_state = 45, .external_lex_state = 1}, + [2829] = {.lex_state = 45, .external_lex_state = 1}, + [2830] = {.lex_state = 110, .external_lex_state = 1}, + [2831] = {.lex_state = 45, .external_lex_state = 1}, + [2832] = {.lex_state = 45, .external_lex_state = 1}, + [2833] = {.lex_state = 45, .external_lex_state = 1}, + [2834] = {.lex_state = 110, .external_lex_state = 1}, + [2835] = {.lex_state = 110, .external_lex_state = 1}, + [2836] = {.lex_state = 110, .external_lex_state = 1}, + [2837] = {.lex_state = 110, .external_lex_state = 1}, + [2838] = {.lex_state = 110, .external_lex_state = 1}, + [2839] = {.lex_state = 110, .external_lex_state = 1}, + [2840] = {.lex_state = 110, .external_lex_state = 1}, + [2841] = {.lex_state = 45, .external_lex_state = 1}, + [2842] = {.lex_state = 45, .external_lex_state = 1}, + [2843] = {.lex_state = 45, .external_lex_state = 1}, + [2844] = {.lex_state = 45, .external_lex_state = 1}, + [2845] = {.lex_state = 45, .external_lex_state = 1}, + [2846] = {.lex_state = 45, .external_lex_state = 1}, + [2847] = {.lex_state = 45, .external_lex_state = 1}, + [2848] = {.lex_state = 45, .external_lex_state = 1}, + [2849] = {.lex_state = 45, .external_lex_state = 1}, + [2850] = {.lex_state = 45, .external_lex_state = 1}, + [2851] = {.lex_state = 110, .external_lex_state = 1}, + [2852] = {.lex_state = 45, .external_lex_state = 1}, + [2853] = {.lex_state = 45, .external_lex_state = 1}, + [2854] = {.lex_state = 45, .external_lex_state = 1}, + [2855] = {.lex_state = 110, .external_lex_state = 1}, + [2856] = {.lex_state = 110, .external_lex_state = 1}, + [2857] = {.lex_state = 110, .external_lex_state = 1}, + [2858] = {.lex_state = 110, .external_lex_state = 1}, + [2859] = {.lex_state = 110, .external_lex_state = 1}, + [2860] = {.lex_state = 110, .external_lex_state = 1}, + [2861] = {.lex_state = 110, .external_lex_state = 1}, + [2862] = {.lex_state = 45, .external_lex_state = 1}, + [2863] = {.lex_state = 45, .external_lex_state = 1}, + [2864] = {.lex_state = 45, .external_lex_state = 1}, + [2865] = {.lex_state = 45, .external_lex_state = 1}, + [2866] = {.lex_state = 45, .external_lex_state = 1}, + [2867] = {.lex_state = 45, .external_lex_state = 1}, + [2868] = {.lex_state = 45, .external_lex_state = 1}, + [2869] = {.lex_state = 45, .external_lex_state = 1}, + [2870] = {.lex_state = 45, .external_lex_state = 1}, + [2871] = {.lex_state = 45, .external_lex_state = 1}, + [2872] = {.lex_state = 110, .external_lex_state = 1}, + [2873] = {.lex_state = 45, .external_lex_state = 1}, + [2874] = {.lex_state = 45, .external_lex_state = 1}, + [2875] = {.lex_state = 45, .external_lex_state = 1}, + [2876] = {.lex_state = 110, .external_lex_state = 1}, + [2877] = {.lex_state = 110, .external_lex_state = 1}, + [2878] = {.lex_state = 110, .external_lex_state = 1}, + [2879] = {.lex_state = 110, .external_lex_state = 1}, + [2880] = {.lex_state = 110, .external_lex_state = 1}, + [2881] = {.lex_state = 110, .external_lex_state = 1}, + [2882] = {.lex_state = 110, .external_lex_state = 1}, + [2883] = {.lex_state = 45, .external_lex_state = 1}, + [2884] = {.lex_state = 45, .external_lex_state = 1}, + [2885] = {.lex_state = 45, .external_lex_state = 1}, + [2886] = {.lex_state = 45, .external_lex_state = 1}, + [2887] = {.lex_state = 45, .external_lex_state = 1}, + [2888] = {.lex_state = 45, .external_lex_state = 1}, + [2889] = {.lex_state = 45, .external_lex_state = 1}, + [2890] = {.lex_state = 45, .external_lex_state = 1}, + [2891] = {.lex_state = 45, .external_lex_state = 1}, + [2892] = {.lex_state = 45, .external_lex_state = 1}, + [2893] = {.lex_state = 45, .external_lex_state = 1}, + [2894] = {.lex_state = 45, .external_lex_state = 1}, + [2895] = {.lex_state = 45, .external_lex_state = 1}, + [2896] = {.lex_state = 45, .external_lex_state = 1}, + [2897] = {.lex_state = 45, .external_lex_state = 1}, + [2898] = {.lex_state = 45, .external_lex_state = 1}, + [2899] = {.lex_state = 45, .external_lex_state = 1}, + [2900] = {.lex_state = 45, .external_lex_state = 1}, + [2901] = {.lex_state = 45, .external_lex_state = 1}, + [2902] = {.lex_state = 45, .external_lex_state = 1}, + [2903] = {.lex_state = 45, .external_lex_state = 1}, + [2904] = {.lex_state = 45, .external_lex_state = 1}, + [2905] = {.lex_state = 45, .external_lex_state = 1}, + [2906] = {.lex_state = 45, .external_lex_state = 1}, + [2907] = {.lex_state = 45, .external_lex_state = 1}, + [2908] = {.lex_state = 45, .external_lex_state = 1}, + [2909] = {.lex_state = 45, .external_lex_state = 1}, + [2910] = {.lex_state = 45, .external_lex_state = 1}, + [2911] = {.lex_state = 45, .external_lex_state = 1}, + [2912] = {.lex_state = 45, .external_lex_state = 1}, + [2913] = {.lex_state = 45, .external_lex_state = 1}, + [2914] = {.lex_state = 45, .external_lex_state = 1}, + [2915] = {.lex_state = 45, .external_lex_state = 1}, + [2916] = {.lex_state = 45, .external_lex_state = 1}, + [2917] = {.lex_state = 45, .external_lex_state = 1}, + [2918] = {.lex_state = 45, .external_lex_state = 1}, + [2919] = {.lex_state = 45, .external_lex_state = 1}, + [2920] = {.lex_state = 45, .external_lex_state = 1}, + [2921] = {.lex_state = 45, .external_lex_state = 1}, + [2922] = {.lex_state = 45, .external_lex_state = 1}, + [2923] = {.lex_state = 45, .external_lex_state = 1}, + [2924] = {.lex_state = 45, .external_lex_state = 1}, + [2925] = {.lex_state = 45, .external_lex_state = 1}, + [2926] = {.lex_state = 45, .external_lex_state = 1}, + [2927] = {.lex_state = 45, .external_lex_state = 1}, + [2928] = {.lex_state = 45, .external_lex_state = 1}, + [2929] = {.lex_state = 45, .external_lex_state = 1}, + [2930] = {.lex_state = 45, .external_lex_state = 1}, + [2931] = {.lex_state = 45, .external_lex_state = 1}, + [2932] = {.lex_state = 45, .external_lex_state = 1}, + [2933] = {.lex_state = 45, .external_lex_state = 1}, + [2934] = {.lex_state = 45, .external_lex_state = 1}, + [2935] = {.lex_state = 45, .external_lex_state = 1}, + [2936] = {.lex_state = 45, .external_lex_state = 1}, + [2937] = {.lex_state = 45, .external_lex_state = 1}, + [2938] = {.lex_state = 45, .external_lex_state = 1}, + [2939] = {.lex_state = 45, .external_lex_state = 1}, + [2940] = {.lex_state = 45, .external_lex_state = 1}, + [2941] = {.lex_state = 45, .external_lex_state = 1}, + [2942] = {.lex_state = 45, .external_lex_state = 1}, + [2943] = {.lex_state = 45, .external_lex_state = 1}, + [2944] = {.lex_state = 45, .external_lex_state = 1}, + [2945] = {.lex_state = 45, .external_lex_state = 1}, + [2946] = {.lex_state = 45, .external_lex_state = 1}, + [2947] = {.lex_state = 45, .external_lex_state = 1}, + [2948] = {.lex_state = 45, .external_lex_state = 1}, + [2949] = {.lex_state = 45, .external_lex_state = 1}, + [2950] = {.lex_state = 45, .external_lex_state = 1}, + [2951] = {.lex_state = 45, .external_lex_state = 1}, + [2952] = {.lex_state = 45, .external_lex_state = 1}, + [2953] = {.lex_state = 45, .external_lex_state = 1}, + [2954] = {.lex_state = 45, .external_lex_state = 1}, + [2955] = {.lex_state = 45, .external_lex_state = 1}, + [2956] = {.lex_state = 45, .external_lex_state = 1}, + [2957] = {.lex_state = 45, .external_lex_state = 1}, + [2958] = {.lex_state = 45, .external_lex_state = 1}, + [2959] = {.lex_state = 45, .external_lex_state = 1}, + [2960] = {.lex_state = 45, .external_lex_state = 1}, + [2961] = {.lex_state = 45, .external_lex_state = 1}, + [2962] = {.lex_state = 45, .external_lex_state = 1}, + [2963] = {.lex_state = 45, .external_lex_state = 1}, + [2964] = {.lex_state = 45, .external_lex_state = 1}, + [2965] = {.lex_state = 45, .external_lex_state = 1}, + [2966] = {.lex_state = 45, .external_lex_state = 1}, + [2967] = {.lex_state = 45, .external_lex_state = 1}, + [2968] = {.lex_state = 45, .external_lex_state = 1}, + [2969] = {.lex_state = 45, .external_lex_state = 1}, + [2970] = {.lex_state = 45, .external_lex_state = 1}, + [2971] = {.lex_state = 45, .external_lex_state = 1}, + [2972] = {.lex_state = 45, .external_lex_state = 1}, + [2973] = {.lex_state = 45, .external_lex_state = 1}, + [2974] = {.lex_state = 45, .external_lex_state = 1}, + [2975] = {.lex_state = 45, .external_lex_state = 1}, + [2976] = {.lex_state = 45, .external_lex_state = 1}, + [2977] = {.lex_state = 45, .external_lex_state = 1}, + [2978] = {.lex_state = 45, .external_lex_state = 1}, + [2979] = {.lex_state = 45, .external_lex_state = 1}, + [2980] = {.lex_state = 45, .external_lex_state = 1}, + [2981] = {.lex_state = 45, .external_lex_state = 1}, + [2982] = {.lex_state = 45, .external_lex_state = 1}, + [2983] = {.lex_state = 45, .external_lex_state = 1}, + [2984] = {.lex_state = 45, .external_lex_state = 1}, + [2985] = {.lex_state = 45, .external_lex_state = 1}, + [2986] = {.lex_state = 45, .external_lex_state = 1}, + [2987] = {.lex_state = 45, .external_lex_state = 1}, + [2988] = {.lex_state = 45, .external_lex_state = 1}, + [2989] = {.lex_state = 45, .external_lex_state = 1}, + [2990] = {.lex_state = 45, .external_lex_state = 1}, + [2991] = {.lex_state = 45, .external_lex_state = 1}, + [2992] = {.lex_state = 45, .external_lex_state = 1}, + [2993] = {.lex_state = 45, .external_lex_state = 1}, + [2994] = {.lex_state = 45, .external_lex_state = 1}, + [2995] = {.lex_state = 45, .external_lex_state = 1}, + [2996] = {.lex_state = 45, .external_lex_state = 1}, + [2997] = {.lex_state = 45, .external_lex_state = 1}, + [2998] = {.lex_state = 45, .external_lex_state = 1}, + [2999] = {.lex_state = 45, .external_lex_state = 1}, + [3000] = {.lex_state = 45, .external_lex_state = 1}, + [3001] = {.lex_state = 45, .external_lex_state = 1}, + [3002] = {.lex_state = 45, .external_lex_state = 1}, + [3003] = {.lex_state = 45, .external_lex_state = 1}, + [3004] = {.lex_state = 45, .external_lex_state = 1}, + [3005] = {.lex_state = 45, .external_lex_state = 1}, + [3006] = {.lex_state = 45, .external_lex_state = 1}, + [3007] = {.lex_state = 45, .external_lex_state = 1}, + [3008] = {.lex_state = 45, .external_lex_state = 1}, + [3009] = {.lex_state = 45, .external_lex_state = 1}, + [3010] = {.lex_state = 45, .external_lex_state = 1}, + [3011] = {.lex_state = 45, .external_lex_state = 1}, + [3012] = {.lex_state = 45, .external_lex_state = 1}, + [3013] = {.lex_state = 45, .external_lex_state = 1}, + [3014] = {.lex_state = 45, .external_lex_state = 1}, + [3015] = {.lex_state = 45, .external_lex_state = 1}, + [3016] = {.lex_state = 45, .external_lex_state = 1}, + [3017] = {.lex_state = 45, .external_lex_state = 1}, + [3018] = {.lex_state = 45, .external_lex_state = 1}, + [3019] = {.lex_state = 45, .external_lex_state = 1}, + [3020] = {.lex_state = 45, .external_lex_state = 1}, + [3021] = {.lex_state = 45, .external_lex_state = 1}, + [3022] = {.lex_state = 45, .external_lex_state = 1}, + [3023] = {.lex_state = 45, .external_lex_state = 1}, + [3024] = {.lex_state = 45, .external_lex_state = 1}, + [3025] = {.lex_state = 45, .external_lex_state = 1}, + [3026] = {.lex_state = 45, .external_lex_state = 1}, + [3027] = {.lex_state = 45, .external_lex_state = 1}, + [3028] = {.lex_state = 45, .external_lex_state = 1}, + [3029] = {.lex_state = 45, .external_lex_state = 1}, + [3030] = {.lex_state = 45, .external_lex_state = 1}, + [3031] = {.lex_state = 45, .external_lex_state = 1}, + [3032] = {.lex_state = 45, .external_lex_state = 1}, + [3033] = {.lex_state = 45, .external_lex_state = 1}, + [3034] = {.lex_state = 45, .external_lex_state = 1}, + [3035] = {.lex_state = 45, .external_lex_state = 1}, + [3036] = {.lex_state = 45, .external_lex_state = 1}, + [3037] = {.lex_state = 45, .external_lex_state = 1}, + [3038] = {.lex_state = 45, .external_lex_state = 1}, + [3039] = {.lex_state = 45, .external_lex_state = 1}, + [3040] = {.lex_state = 45, .external_lex_state = 1}, + [3041] = {.lex_state = 45, .external_lex_state = 1}, + [3042] = {.lex_state = 45, .external_lex_state = 1}, + [3043] = {.lex_state = 45, .external_lex_state = 1}, + [3044] = {.lex_state = 45, .external_lex_state = 1}, + [3045] = {.lex_state = 45, .external_lex_state = 1}, + [3046] = {.lex_state = 45, .external_lex_state = 1}, + [3047] = {.lex_state = 45, .external_lex_state = 1}, + [3048] = {.lex_state = 45, .external_lex_state = 1}, + [3049] = {.lex_state = 45, .external_lex_state = 1}, + [3050] = {.lex_state = 45, .external_lex_state = 1}, + [3051] = {.lex_state = 45, .external_lex_state = 1}, + [3052] = {.lex_state = 45, .external_lex_state = 1}, + [3053] = {.lex_state = 45, .external_lex_state = 1}, + [3054] = {.lex_state = 45, .external_lex_state = 1}, + [3055] = {.lex_state = 45, .external_lex_state = 1}, + [3056] = {.lex_state = 45, .external_lex_state = 1}, + [3057] = {.lex_state = 45, .external_lex_state = 1}, + [3058] = {.lex_state = 45, .external_lex_state = 1}, + [3059] = {.lex_state = 45, .external_lex_state = 1}, + [3060] = {.lex_state = 45, .external_lex_state = 1}, + [3061] = {.lex_state = 45, .external_lex_state = 1}, + [3062] = {.lex_state = 45, .external_lex_state = 1}, + [3063] = {.lex_state = 45, .external_lex_state = 1}, + [3064] = {.lex_state = 45, .external_lex_state = 1}, + [3065] = {.lex_state = 45, .external_lex_state = 1}, + [3066] = {.lex_state = 45, .external_lex_state = 1}, + [3067] = {.lex_state = 45, .external_lex_state = 1}, + [3068] = {.lex_state = 45, .external_lex_state = 1}, + [3069] = {.lex_state = 45, .external_lex_state = 1}, + [3070] = {.lex_state = 45, .external_lex_state = 1}, + [3071] = {.lex_state = 45, .external_lex_state = 1}, + [3072] = {.lex_state = 45, .external_lex_state = 1}, + [3073] = {.lex_state = 45, .external_lex_state = 1}, + [3074] = {.lex_state = 45, .external_lex_state = 1}, + [3075] = {.lex_state = 45, .external_lex_state = 1}, + [3076] = {.lex_state = 45, .external_lex_state = 1}, + [3077] = {.lex_state = 45, .external_lex_state = 1}, + [3078] = {.lex_state = 45, .external_lex_state = 1}, + [3079] = {.lex_state = 45, .external_lex_state = 1}, + [3080] = {.lex_state = 45, .external_lex_state = 1}, + [3081] = {.lex_state = 45, .external_lex_state = 1}, + [3082] = {.lex_state = 45, .external_lex_state = 1}, + [3083] = {.lex_state = 45, .external_lex_state = 1}, + [3084] = {.lex_state = 45, .external_lex_state = 1}, + [3085] = {.lex_state = 45, .external_lex_state = 1}, + [3086] = {.lex_state = 45, .external_lex_state = 1}, + [3087] = {.lex_state = 45, .external_lex_state = 1}, + [3088] = {.lex_state = 45, .external_lex_state = 1}, + [3089] = {.lex_state = 45, .external_lex_state = 1}, + [3090] = {.lex_state = 45, .external_lex_state = 1}, + [3091] = {.lex_state = 45, .external_lex_state = 1}, + [3092] = {.lex_state = 45, .external_lex_state = 1}, + [3093] = {.lex_state = 45, .external_lex_state = 1}, + [3094] = {.lex_state = 45, .external_lex_state = 1}, + [3095] = {.lex_state = 45, .external_lex_state = 1}, + [3096] = {.lex_state = 45, .external_lex_state = 1}, + [3097] = {.lex_state = 45, .external_lex_state = 1}, + [3098] = {.lex_state = 45, .external_lex_state = 1}, + [3099] = {.lex_state = 45, .external_lex_state = 1}, + [3100] = {.lex_state = 45, .external_lex_state = 1}, + [3101] = {.lex_state = 45, .external_lex_state = 1}, + [3102] = {.lex_state = 45, .external_lex_state = 1}, + [3103] = {.lex_state = 45, .external_lex_state = 1}, + [3104] = {.lex_state = 45, .external_lex_state = 1}, + [3105] = {.lex_state = 45, .external_lex_state = 1}, + [3106] = {.lex_state = 45, .external_lex_state = 1}, + [3107] = {.lex_state = 45, .external_lex_state = 1}, + [3108] = {.lex_state = 45, .external_lex_state = 1}, + [3109] = {.lex_state = 45, .external_lex_state = 1}, + [3110] = {.lex_state = 45, .external_lex_state = 1}, + [3111] = {.lex_state = 45, .external_lex_state = 1}, + [3112] = {.lex_state = 45, .external_lex_state = 1}, + [3113] = {.lex_state = 45, .external_lex_state = 1}, + [3114] = {.lex_state = 45, .external_lex_state = 1}, + [3115] = {.lex_state = 45, .external_lex_state = 1}, + [3116] = {.lex_state = 45, .external_lex_state = 1}, + [3117] = {.lex_state = 45, .external_lex_state = 1}, + [3118] = {.lex_state = 45, .external_lex_state = 1}, + [3119] = {.lex_state = 45, .external_lex_state = 1}, + [3120] = {.lex_state = 45, .external_lex_state = 1}, + [3121] = {.lex_state = 45, .external_lex_state = 1}, + [3122] = {.lex_state = 45, .external_lex_state = 1}, + [3123] = {.lex_state = 45, .external_lex_state = 1}, + [3124] = {.lex_state = 45, .external_lex_state = 1}, + [3125] = {.lex_state = 45, .external_lex_state = 1}, + [3126] = {.lex_state = 45, .external_lex_state = 1}, + [3127] = {.lex_state = 45, .external_lex_state = 1}, + [3128] = {.lex_state = 45, .external_lex_state = 1}, + [3129] = {.lex_state = 45, .external_lex_state = 1}, + [3130] = {.lex_state = 45, .external_lex_state = 1}, + [3131] = {.lex_state = 45, .external_lex_state = 1}, + [3132] = {.lex_state = 45, .external_lex_state = 1}, + [3133] = {.lex_state = 45, .external_lex_state = 1}, + [3134] = {.lex_state = 45, .external_lex_state = 1}, + [3135] = {.lex_state = 45, .external_lex_state = 1}, + [3136] = {.lex_state = 45, .external_lex_state = 1}, + [3137] = {.lex_state = 45, .external_lex_state = 1}, + [3138] = {.lex_state = 45, .external_lex_state = 1}, + [3139] = {.lex_state = 45, .external_lex_state = 1}, + [3140] = {.lex_state = 45, .external_lex_state = 1}, + [3141] = {.lex_state = 45, .external_lex_state = 1}, + [3142] = {.lex_state = 45, .external_lex_state = 1}, + [3143] = {.lex_state = 45, .external_lex_state = 1}, + [3144] = {.lex_state = 45, .external_lex_state = 1}, + [3145] = {.lex_state = 45, .external_lex_state = 1}, + [3146] = {.lex_state = 45, .external_lex_state = 1}, + [3147] = {.lex_state = 45, .external_lex_state = 1}, + [3148] = {.lex_state = 45, .external_lex_state = 1}, + [3149] = {.lex_state = 45, .external_lex_state = 1}, + [3150] = {.lex_state = 45, .external_lex_state = 1}, + [3151] = {.lex_state = 45, .external_lex_state = 1}, + [3152] = {.lex_state = 45, .external_lex_state = 1}, + [3153] = {.lex_state = 45, .external_lex_state = 1}, + [3154] = {.lex_state = 45, .external_lex_state = 1}, + [3155] = {.lex_state = 45, .external_lex_state = 1}, + [3156] = {.lex_state = 45, .external_lex_state = 1}, + [3157] = {.lex_state = 45, .external_lex_state = 1}, + [3158] = {.lex_state = 45, .external_lex_state = 1}, + [3159] = {.lex_state = 45, .external_lex_state = 1}, + [3160] = {.lex_state = 45, .external_lex_state = 1}, + [3161] = {.lex_state = 45, .external_lex_state = 1}, + [3162] = {.lex_state = 45, .external_lex_state = 1}, + [3163] = {.lex_state = 45, .external_lex_state = 1}, + [3164] = {.lex_state = 45, .external_lex_state = 1}, + [3165] = {.lex_state = 45, .external_lex_state = 1}, + [3166] = {.lex_state = 45, .external_lex_state = 1}, + [3167] = {.lex_state = 45, .external_lex_state = 1}, + [3168] = {.lex_state = 45, .external_lex_state = 1}, + [3169] = {.lex_state = 45, .external_lex_state = 1}, + [3170] = {.lex_state = 45, .external_lex_state = 1}, + [3171] = {.lex_state = 45, .external_lex_state = 1}, + [3172] = {.lex_state = 45, .external_lex_state = 1}, + [3173] = {.lex_state = 45, .external_lex_state = 1}, + [3174] = {.lex_state = 45, .external_lex_state = 1}, + [3175] = {.lex_state = 45, .external_lex_state = 1}, + [3176] = {.lex_state = 45, .external_lex_state = 1}, + [3177] = {.lex_state = 45, .external_lex_state = 1}, + [3178] = {.lex_state = 45, .external_lex_state = 1}, + [3179] = {.lex_state = 45, .external_lex_state = 1}, + [3180] = {.lex_state = 45, .external_lex_state = 1}, + [3181] = {.lex_state = 45, .external_lex_state = 1}, + [3182] = {.lex_state = 45, .external_lex_state = 1}, + [3183] = {.lex_state = 45, .external_lex_state = 1}, + [3184] = {.lex_state = 45, .external_lex_state = 1}, + [3185] = {.lex_state = 45, .external_lex_state = 1}, + [3186] = {.lex_state = 45, .external_lex_state = 1}, + [3187] = {.lex_state = 45, .external_lex_state = 1}, + [3188] = {.lex_state = 45, .external_lex_state = 1}, + [3189] = {.lex_state = 45, .external_lex_state = 1}, + [3190] = {.lex_state = 45, .external_lex_state = 1}, + [3191] = {.lex_state = 45, .external_lex_state = 1}, + [3192] = {.lex_state = 45, .external_lex_state = 1}, + [3193] = {.lex_state = 45, .external_lex_state = 1}, + [3194] = {.lex_state = 45, .external_lex_state = 1}, + [3195] = {.lex_state = 45, .external_lex_state = 1}, + [3196] = {.lex_state = 45, .external_lex_state = 1}, + [3197] = {.lex_state = 45, .external_lex_state = 1}, + [3198] = {.lex_state = 45, .external_lex_state = 1}, + [3199] = {.lex_state = 45, .external_lex_state = 1}, + [3200] = {.lex_state = 45, .external_lex_state = 1}, + [3201] = {.lex_state = 45, .external_lex_state = 1}, + [3202] = {.lex_state = 45, .external_lex_state = 1}, + [3203] = {.lex_state = 45, .external_lex_state = 1}, + [3204] = {.lex_state = 45, .external_lex_state = 1}, + [3205] = {.lex_state = 45, .external_lex_state = 1}, + [3206] = {.lex_state = 45, .external_lex_state = 1}, + [3207] = {.lex_state = 45, .external_lex_state = 1}, + [3208] = {.lex_state = 45, .external_lex_state = 1}, + [3209] = {.lex_state = 45, .external_lex_state = 1}, + [3210] = {.lex_state = 45, .external_lex_state = 1}, + [3211] = {.lex_state = 45, .external_lex_state = 1}, + [3212] = {.lex_state = 45, .external_lex_state = 1}, + [3213] = {.lex_state = 45, .external_lex_state = 1}, + [3214] = {.lex_state = 45, .external_lex_state = 1}, + [3215] = {.lex_state = 45, .external_lex_state = 1}, + [3216] = {.lex_state = 45, .external_lex_state = 1}, + [3217] = {.lex_state = 45, .external_lex_state = 1}, + [3218] = {.lex_state = 45, .external_lex_state = 1}, + [3219] = {.lex_state = 45, .external_lex_state = 1}, + [3220] = {.lex_state = 45, .external_lex_state = 1}, + [3221] = {.lex_state = 45, .external_lex_state = 1}, + [3222] = {.lex_state = 45, .external_lex_state = 1}, + [3223] = {.lex_state = 45, .external_lex_state = 1}, + [3224] = {.lex_state = 45, .external_lex_state = 1}, + [3225] = {.lex_state = 45, .external_lex_state = 1}, + [3226] = {.lex_state = 45, .external_lex_state = 1}, + [3227] = {.lex_state = 45, .external_lex_state = 1}, + [3228] = {.lex_state = 45, .external_lex_state = 1}, + [3229] = {.lex_state = 45, .external_lex_state = 1}, + [3230] = {.lex_state = 45, .external_lex_state = 1}, + [3231] = {.lex_state = 45, .external_lex_state = 1}, + [3232] = {.lex_state = 45, .external_lex_state = 1}, + [3233] = {.lex_state = 45, .external_lex_state = 1}, + [3234] = {.lex_state = 45, .external_lex_state = 1}, + [3235] = {.lex_state = 45, .external_lex_state = 1}, + [3236] = {.lex_state = 45, .external_lex_state = 1}, + [3237] = {.lex_state = 45, .external_lex_state = 1}, + [3238] = {.lex_state = 45, .external_lex_state = 1}, + [3239] = {.lex_state = 45, .external_lex_state = 1}, + [3240] = {.lex_state = 45, .external_lex_state = 1}, + [3241] = {.lex_state = 45, .external_lex_state = 1}, + [3242] = {.lex_state = 45, .external_lex_state = 1}, + [3243] = {.lex_state = 45, .external_lex_state = 1}, + [3244] = {.lex_state = 45, .external_lex_state = 1}, + [3245] = {.lex_state = 45, .external_lex_state = 1}, + [3246] = {.lex_state = 45, .external_lex_state = 1}, + [3247] = {.lex_state = 45, .external_lex_state = 1}, + [3248] = {.lex_state = 45, .external_lex_state = 1}, + [3249] = {.lex_state = 45, .external_lex_state = 1}, + [3250] = {.lex_state = 45, .external_lex_state = 1}, + [3251] = {.lex_state = 45, .external_lex_state = 1}, + [3252] = {.lex_state = 45, .external_lex_state = 1}, + [3253] = {.lex_state = 45, .external_lex_state = 1}, + [3254] = {.lex_state = 45, .external_lex_state = 1}, + [3255] = {.lex_state = 45, .external_lex_state = 1}, + [3256] = {.lex_state = 45, .external_lex_state = 1}, + [3257] = {.lex_state = 45, .external_lex_state = 1}, + [3258] = {.lex_state = 45, .external_lex_state = 1}, + [3259] = {.lex_state = 45, .external_lex_state = 1}, + [3260] = {.lex_state = 45, .external_lex_state = 1}, + [3261] = {.lex_state = 45, .external_lex_state = 1}, + [3262] = {.lex_state = 45, .external_lex_state = 1}, + [3263] = {.lex_state = 45, .external_lex_state = 1}, + [3264] = {.lex_state = 45, .external_lex_state = 1}, + [3265] = {.lex_state = 45, .external_lex_state = 1}, + [3266] = {.lex_state = 45, .external_lex_state = 1}, + [3267] = {.lex_state = 45, .external_lex_state = 1}, + [3268] = {.lex_state = 45, .external_lex_state = 1}, + [3269] = {.lex_state = 45, .external_lex_state = 1}, + [3270] = {.lex_state = 45, .external_lex_state = 1}, + [3271] = {.lex_state = 45, .external_lex_state = 1}, + [3272] = {.lex_state = 45, .external_lex_state = 1}, + [3273] = {.lex_state = 45, .external_lex_state = 1}, + [3274] = {.lex_state = 45, .external_lex_state = 1}, + [3275] = {.lex_state = 45, .external_lex_state = 1}, + [3276] = {.lex_state = 45, .external_lex_state = 1}, + [3277] = {.lex_state = 45, .external_lex_state = 1}, + [3278] = {.lex_state = 45, .external_lex_state = 1}, + [3279] = {.lex_state = 45, .external_lex_state = 1}, + [3280] = {.lex_state = 45, .external_lex_state = 1}, + [3281] = {.lex_state = 45, .external_lex_state = 1}, + [3282] = {.lex_state = 45, .external_lex_state = 1}, + [3283] = {.lex_state = 45, .external_lex_state = 1}, + [3284] = {.lex_state = 45, .external_lex_state = 1}, + [3285] = {.lex_state = 45, .external_lex_state = 1}, + [3286] = {.lex_state = 45, .external_lex_state = 1}, + [3287] = {.lex_state = 45, .external_lex_state = 1}, + [3288] = {.lex_state = 45, .external_lex_state = 1}, + [3289] = {.lex_state = 45, .external_lex_state = 1}, + [3290] = {.lex_state = 45, .external_lex_state = 1}, + [3291] = {.lex_state = 45, .external_lex_state = 1}, + [3292] = {.lex_state = 45, .external_lex_state = 1}, + [3293] = {.lex_state = 45, .external_lex_state = 1}, + [3294] = {.lex_state = 45, .external_lex_state = 1}, + [3295] = {.lex_state = 45, .external_lex_state = 1}, + [3296] = {.lex_state = 45, .external_lex_state = 1}, + [3297] = {.lex_state = 45, .external_lex_state = 1}, + [3298] = {.lex_state = 45, .external_lex_state = 1}, + [3299] = {.lex_state = 45, .external_lex_state = 1}, + [3300] = {.lex_state = 45, .external_lex_state = 1}, + [3301] = {.lex_state = 45, .external_lex_state = 1}, + [3302] = {.lex_state = 45, .external_lex_state = 1}, + [3303] = {.lex_state = 45, .external_lex_state = 1}, + [3304] = {.lex_state = 45, .external_lex_state = 1}, + [3305] = {.lex_state = 45, .external_lex_state = 1}, + [3306] = {.lex_state = 45, .external_lex_state = 1}, + [3307] = {.lex_state = 45, .external_lex_state = 1}, + [3308] = {.lex_state = 45, .external_lex_state = 1}, + [3309] = {.lex_state = 45, .external_lex_state = 1}, + [3310] = {.lex_state = 45, .external_lex_state = 1}, + [3311] = {.lex_state = 45, .external_lex_state = 1}, + [3312] = {.lex_state = 45, .external_lex_state = 1}, + [3313] = {.lex_state = 45, .external_lex_state = 1}, + [3314] = {.lex_state = 45, .external_lex_state = 1}, + [3315] = {.lex_state = 45, .external_lex_state = 1}, + [3316] = {.lex_state = 45, .external_lex_state = 1}, + [3317] = {.lex_state = 45, .external_lex_state = 1}, + [3318] = {.lex_state = 45, .external_lex_state = 1}, + [3319] = {.lex_state = 45, .external_lex_state = 1}, + [3320] = {.lex_state = 45, .external_lex_state = 1}, + [3321] = {.lex_state = 45, .external_lex_state = 1}, + [3322] = {.lex_state = 45, .external_lex_state = 1}, + [3323] = {.lex_state = 45, .external_lex_state = 1}, + [3324] = {.lex_state = 45, .external_lex_state = 1}, + [3325] = {.lex_state = 45, .external_lex_state = 1}, + [3326] = {.lex_state = 45, .external_lex_state = 1}, + [3327] = {.lex_state = 45, .external_lex_state = 1}, + [3328] = {.lex_state = 45, .external_lex_state = 1}, + [3329] = {.lex_state = 45, .external_lex_state = 1}, + [3330] = {.lex_state = 45, .external_lex_state = 1}, + [3331] = {.lex_state = 45, .external_lex_state = 1}, + [3332] = {.lex_state = 45, .external_lex_state = 1}, + [3333] = {.lex_state = 45, .external_lex_state = 1}, + [3334] = {.lex_state = 45, .external_lex_state = 1}, + [3335] = {.lex_state = 45, .external_lex_state = 1}, + [3336] = {.lex_state = 45, .external_lex_state = 1}, + [3337] = {.lex_state = 45, .external_lex_state = 1}, + [3338] = {.lex_state = 45, .external_lex_state = 1}, + [3339] = {.lex_state = 45, .external_lex_state = 1}, + [3340] = {.lex_state = 45, .external_lex_state = 1}, + [3341] = {.lex_state = 45, .external_lex_state = 1}, + [3342] = {.lex_state = 45, .external_lex_state = 1}, + [3343] = {.lex_state = 45, .external_lex_state = 1}, + [3344] = {.lex_state = 45, .external_lex_state = 1}, + [3345] = {.lex_state = 45, .external_lex_state = 1}, + [3346] = {.lex_state = 45, .external_lex_state = 1}, + [3347] = {.lex_state = 45, .external_lex_state = 1}, + [3348] = {.lex_state = 45, .external_lex_state = 1}, + [3349] = {.lex_state = 45, .external_lex_state = 1}, + [3350] = {.lex_state = 45, .external_lex_state = 1}, + [3351] = {.lex_state = 45, .external_lex_state = 1}, + [3352] = {.lex_state = 45, .external_lex_state = 1}, + [3353] = {.lex_state = 45, .external_lex_state = 1}, + [3354] = {.lex_state = 45, .external_lex_state = 1}, + [3355] = {.lex_state = 45, .external_lex_state = 1}, + [3356] = {.lex_state = 45, .external_lex_state = 1}, + [3357] = {.lex_state = 45, .external_lex_state = 1}, + [3358] = {.lex_state = 45, .external_lex_state = 1}, + [3359] = {.lex_state = 45, .external_lex_state = 1}, + [3360] = {.lex_state = 45, .external_lex_state = 1}, + [3361] = {.lex_state = 45, .external_lex_state = 1}, + [3362] = {.lex_state = 45, .external_lex_state = 1}, + [3363] = {.lex_state = 45, .external_lex_state = 1}, + [3364] = {.lex_state = 45, .external_lex_state = 1}, + [3365] = {.lex_state = 45, .external_lex_state = 1}, + [3366] = {.lex_state = 45, .external_lex_state = 1}, + [3367] = {.lex_state = 45, .external_lex_state = 1}, + [3368] = {.lex_state = 45, .external_lex_state = 1}, + [3369] = {.lex_state = 45, .external_lex_state = 1}, + [3370] = {.lex_state = 45, .external_lex_state = 1}, + [3371] = {.lex_state = 45, .external_lex_state = 1}, + [3372] = {.lex_state = 45, .external_lex_state = 1}, + [3373] = {.lex_state = 45, .external_lex_state = 1}, + [3374] = {.lex_state = 45, .external_lex_state = 1}, + [3375] = {.lex_state = 45, .external_lex_state = 1}, + [3376] = {.lex_state = 45, .external_lex_state = 1}, + [3377] = {.lex_state = 45, .external_lex_state = 1}, + [3378] = {.lex_state = 45, .external_lex_state = 1}, + [3379] = {.lex_state = 45, .external_lex_state = 1}, + [3380] = {.lex_state = 45, .external_lex_state = 1}, + [3381] = {.lex_state = 45, .external_lex_state = 1}, + [3382] = {.lex_state = 45, .external_lex_state = 1}, + [3383] = {.lex_state = 45, .external_lex_state = 1}, + [3384] = {.lex_state = 45, .external_lex_state = 1}, + [3385] = {.lex_state = 45, .external_lex_state = 1}, + [3386] = {.lex_state = 45, .external_lex_state = 1}, + [3387] = {.lex_state = 45, .external_lex_state = 1}, + [3388] = {.lex_state = 45, .external_lex_state = 1}, + [3389] = {.lex_state = 45, .external_lex_state = 1}, + [3390] = {.lex_state = 45, .external_lex_state = 1}, + [3391] = {.lex_state = 45, .external_lex_state = 1}, + [3392] = {.lex_state = 45, .external_lex_state = 1}, + [3393] = {.lex_state = 45, .external_lex_state = 1}, + [3394] = {.lex_state = 45, .external_lex_state = 1}, + [3395] = {.lex_state = 45, .external_lex_state = 1}, + [3396] = {.lex_state = 45, .external_lex_state = 1}, + [3397] = {.lex_state = 45, .external_lex_state = 1}, + [3398] = {.lex_state = 45, .external_lex_state = 1}, + [3399] = {.lex_state = 45, .external_lex_state = 1}, + [3400] = {.lex_state = 45, .external_lex_state = 1}, + [3401] = {.lex_state = 45, .external_lex_state = 1}, + [3402] = {.lex_state = 45, .external_lex_state = 1}, + [3403] = {.lex_state = 45, .external_lex_state = 1}, + [3404] = {.lex_state = 45, .external_lex_state = 1}, + [3405] = {.lex_state = 45, .external_lex_state = 1}, + [3406] = {.lex_state = 45, .external_lex_state = 1}, + [3407] = {.lex_state = 45, .external_lex_state = 1}, + [3408] = {.lex_state = 45, .external_lex_state = 1}, + [3409] = {.lex_state = 45, .external_lex_state = 1}, + [3410] = {.lex_state = 45, .external_lex_state = 1}, + [3411] = {.lex_state = 45, .external_lex_state = 1}, + [3412] = {.lex_state = 45, .external_lex_state = 1}, + [3413] = {.lex_state = 45, .external_lex_state = 1}, + [3414] = {.lex_state = 45, .external_lex_state = 1}, + [3415] = {.lex_state = 45, .external_lex_state = 1}, + [3416] = {.lex_state = 45, .external_lex_state = 1}, + [3417] = {.lex_state = 45, .external_lex_state = 1}, + [3418] = {.lex_state = 45, .external_lex_state = 1}, + [3419] = {.lex_state = 45, .external_lex_state = 1}, + [3420] = {.lex_state = 45, .external_lex_state = 1}, + [3421] = {.lex_state = 45, .external_lex_state = 1}, + [3422] = {.lex_state = 45, .external_lex_state = 1}, + [3423] = {.lex_state = 45, .external_lex_state = 1}, + [3424] = {.lex_state = 45, .external_lex_state = 1}, + [3425] = {.lex_state = 45, .external_lex_state = 1}, + [3426] = {.lex_state = 45, .external_lex_state = 1}, + [3427] = {.lex_state = 45, .external_lex_state = 1}, + [3428] = {.lex_state = 45, .external_lex_state = 1}, + [3429] = {.lex_state = 45, .external_lex_state = 1}, + [3430] = {.lex_state = 45, .external_lex_state = 1}, + [3431] = {.lex_state = 45, .external_lex_state = 1}, + [3432] = {.lex_state = 45, .external_lex_state = 1}, + [3433] = {.lex_state = 45, .external_lex_state = 1}, + [3434] = {.lex_state = 45, .external_lex_state = 1}, + [3435] = {.lex_state = 45, .external_lex_state = 1}, + [3436] = {.lex_state = 45, .external_lex_state = 1}, + [3437] = {.lex_state = 45, .external_lex_state = 1}, + [3438] = {.lex_state = 45, .external_lex_state = 1}, + [3439] = {.lex_state = 45, .external_lex_state = 1}, + [3440] = {.lex_state = 45, .external_lex_state = 1}, + [3441] = {.lex_state = 45, .external_lex_state = 1}, + [3442] = {.lex_state = 45, .external_lex_state = 1}, + [3443] = {.lex_state = 45, .external_lex_state = 1}, + [3444] = {.lex_state = 45, .external_lex_state = 1}, + [3445] = {.lex_state = 45, .external_lex_state = 1}, + [3446] = {.lex_state = 45, .external_lex_state = 1}, + [3447] = {.lex_state = 45, .external_lex_state = 1}, + [3448] = {.lex_state = 45, .external_lex_state = 1}, + [3449] = {.lex_state = 45, .external_lex_state = 1}, + [3450] = {.lex_state = 45, .external_lex_state = 1}, + [3451] = {.lex_state = 45, .external_lex_state = 1}, + [3452] = {.lex_state = 45, .external_lex_state = 1}, + [3453] = {.lex_state = 45, .external_lex_state = 1}, + [3454] = {.lex_state = 45, .external_lex_state = 1}, + [3455] = {.lex_state = 45, .external_lex_state = 1}, + [3456] = {.lex_state = 45, .external_lex_state = 1}, + [3457] = {.lex_state = 45, .external_lex_state = 1}, + [3458] = {.lex_state = 45, .external_lex_state = 1}, + [3459] = {.lex_state = 45, .external_lex_state = 1}, + [3460] = {.lex_state = 45, .external_lex_state = 1}, + [3461] = {.lex_state = 45, .external_lex_state = 1}, + [3462] = {.lex_state = 45, .external_lex_state = 1}, + [3463] = {.lex_state = 45, .external_lex_state = 1}, + [3464] = {.lex_state = 45, .external_lex_state = 1}, + [3465] = {.lex_state = 45, .external_lex_state = 1}, + [3466] = {.lex_state = 45, .external_lex_state = 1}, + [3467] = {.lex_state = 45, .external_lex_state = 1}, + [3468] = {.lex_state = 45, .external_lex_state = 1}, + [3469] = {.lex_state = 45, .external_lex_state = 1}, + [3470] = {.lex_state = 45, .external_lex_state = 1}, + [3471] = {.lex_state = 45, .external_lex_state = 1}, + [3472] = {.lex_state = 45, .external_lex_state = 1}, + [3473] = {.lex_state = 45, .external_lex_state = 1}, + [3474] = {.lex_state = 45, .external_lex_state = 1}, + [3475] = {.lex_state = 45, .external_lex_state = 1}, + [3476] = {.lex_state = 45, .external_lex_state = 1}, + [3477] = {.lex_state = 45, .external_lex_state = 1}, + [3478] = {.lex_state = 45, .external_lex_state = 1}, + [3479] = {.lex_state = 45, .external_lex_state = 1}, + [3480] = {.lex_state = 45, .external_lex_state = 1}, + [3481] = {.lex_state = 45, .external_lex_state = 1}, + [3482] = {.lex_state = 45, .external_lex_state = 1}, + [3483] = {.lex_state = 45, .external_lex_state = 1}, + [3484] = {.lex_state = 45, .external_lex_state = 1}, + [3485] = {.lex_state = 45, .external_lex_state = 1}, + [3486] = {.lex_state = 45, .external_lex_state = 1}, + [3487] = {.lex_state = 45, .external_lex_state = 1}, + [3488] = {.lex_state = 45, .external_lex_state = 1}, + [3489] = {.lex_state = 45, .external_lex_state = 1}, + [3490] = {.lex_state = 45, .external_lex_state = 1}, + [3491] = {.lex_state = 45, .external_lex_state = 1}, + [3492] = {.lex_state = 45, .external_lex_state = 1}, + [3493] = {.lex_state = 45, .external_lex_state = 1}, + [3494] = {.lex_state = 45, .external_lex_state = 1}, + [3495] = {.lex_state = 45, .external_lex_state = 1}, + [3496] = {.lex_state = 45, .external_lex_state = 1}, + [3497] = {.lex_state = 45, .external_lex_state = 1}, + [3498] = {.lex_state = 45, .external_lex_state = 1}, + [3499] = {.lex_state = 45, .external_lex_state = 1}, + [3500] = {.lex_state = 45, .external_lex_state = 1}, + [3501] = {.lex_state = 45, .external_lex_state = 1}, + [3502] = {.lex_state = 45, .external_lex_state = 1}, + [3503] = {.lex_state = 45, .external_lex_state = 1}, + [3504] = {.lex_state = 45, .external_lex_state = 1}, + [3505] = {.lex_state = 45, .external_lex_state = 1}, + [3506] = {.lex_state = 45, .external_lex_state = 1}, + [3507] = {.lex_state = 45, .external_lex_state = 1}, + [3508] = {.lex_state = 45, .external_lex_state = 1}, + [3509] = {.lex_state = 45, .external_lex_state = 1}, + [3510] = {.lex_state = 45, .external_lex_state = 1}, + [3511] = {.lex_state = 45, .external_lex_state = 1}, + [3512] = {.lex_state = 45, .external_lex_state = 1}, + [3513] = {.lex_state = 45, .external_lex_state = 1}, + [3514] = {.lex_state = 45, .external_lex_state = 1}, + [3515] = {.lex_state = 45, .external_lex_state = 1}, + [3516] = {.lex_state = 45, .external_lex_state = 1}, + [3517] = {.lex_state = 45, .external_lex_state = 1}, + [3518] = {.lex_state = 45, .external_lex_state = 1}, + [3519] = {.lex_state = 45, .external_lex_state = 1}, + [3520] = {.lex_state = 45, .external_lex_state = 1}, + [3521] = {.lex_state = 45, .external_lex_state = 1}, + [3522] = {.lex_state = 45, .external_lex_state = 1}, + [3523] = {.lex_state = 45, .external_lex_state = 1}, + [3524] = {.lex_state = 45, .external_lex_state = 1}, + [3525] = {.lex_state = 45, .external_lex_state = 1}, + [3526] = {.lex_state = 45, .external_lex_state = 1}, + [3527] = {.lex_state = 45, .external_lex_state = 1}, + [3528] = {.lex_state = 45, .external_lex_state = 1}, + [3529] = {.lex_state = 45, .external_lex_state = 1}, + [3530] = {.lex_state = 45, .external_lex_state = 1}, + [3531] = {.lex_state = 45, .external_lex_state = 1}, + [3532] = {.lex_state = 45, .external_lex_state = 1}, + [3533] = {.lex_state = 45, .external_lex_state = 1}, + [3534] = {.lex_state = 45, .external_lex_state = 1}, + [3535] = {.lex_state = 45, .external_lex_state = 1}, + [3536] = {.lex_state = 45, .external_lex_state = 1}, + [3537] = {.lex_state = 45, .external_lex_state = 1}, + [3538] = {.lex_state = 45, .external_lex_state = 1}, + [3539] = {.lex_state = 45, .external_lex_state = 1}, + [3540] = {.lex_state = 45, .external_lex_state = 1}, + [3541] = {.lex_state = 45, .external_lex_state = 1}, + [3542] = {.lex_state = 45, .external_lex_state = 1}, + [3543] = {.lex_state = 45, .external_lex_state = 1}, + [3544] = {.lex_state = 45, .external_lex_state = 1}, + [3545] = {.lex_state = 45, .external_lex_state = 1}, + [3546] = {.lex_state = 45, .external_lex_state = 1}, + [3547] = {.lex_state = 45, .external_lex_state = 1}, + [3548] = {.lex_state = 45, .external_lex_state = 1}, + [3549] = {.lex_state = 45, .external_lex_state = 1}, + [3550] = {.lex_state = 45, .external_lex_state = 1}, + [3551] = {.lex_state = 45, .external_lex_state = 1}, + [3552] = {.lex_state = 45, .external_lex_state = 1}, + [3553] = {.lex_state = 45, .external_lex_state = 1}, + [3554] = {.lex_state = 45, .external_lex_state = 1}, + [3555] = {.lex_state = 45, .external_lex_state = 1}, + [3556] = {.lex_state = 45, .external_lex_state = 1}, + [3557] = {.lex_state = 45, .external_lex_state = 1}, + [3558] = {.lex_state = 45, .external_lex_state = 1}, + [3559] = {.lex_state = 45, .external_lex_state = 1}, + [3560] = {.lex_state = 45, .external_lex_state = 1}, + [3561] = {.lex_state = 45, .external_lex_state = 1}, + [3562] = {.lex_state = 45, .external_lex_state = 1}, + [3563] = {.lex_state = 45, .external_lex_state = 1}, + [3564] = {.lex_state = 45, .external_lex_state = 1}, + [3565] = {.lex_state = 45, .external_lex_state = 1}, + [3566] = {.lex_state = 45, .external_lex_state = 1}, + [3567] = {.lex_state = 45, .external_lex_state = 1}, + [3568] = {.lex_state = 45, .external_lex_state = 1}, + [3569] = {.lex_state = 45, .external_lex_state = 1}, + [3570] = {.lex_state = 45, .external_lex_state = 1}, + [3571] = {.lex_state = 45, .external_lex_state = 1}, + [3572] = {.lex_state = 45, .external_lex_state = 1}, + [3573] = {.lex_state = 45, .external_lex_state = 1}, + [3574] = {.lex_state = 45, .external_lex_state = 1}, + [3575] = {.lex_state = 45, .external_lex_state = 1}, + [3576] = {.lex_state = 45, .external_lex_state = 1}, + [3577] = {.lex_state = 45, .external_lex_state = 1}, + [3578] = {.lex_state = 45, .external_lex_state = 1}, + [3579] = {.lex_state = 45, .external_lex_state = 1}, + [3580] = {.lex_state = 45, .external_lex_state = 1}, + [3581] = {.lex_state = 45, .external_lex_state = 1}, + [3582] = {.lex_state = 45, .external_lex_state = 1}, + [3583] = {.lex_state = 45, .external_lex_state = 1}, + [3584] = {.lex_state = 45, .external_lex_state = 1}, + [3585] = {.lex_state = 45, .external_lex_state = 1}, + [3586] = {.lex_state = 45, .external_lex_state = 1}, + [3587] = {.lex_state = 45, .external_lex_state = 1}, + [3588] = {.lex_state = 45, .external_lex_state = 1}, + [3589] = {.lex_state = 45, .external_lex_state = 1}, + [3590] = {.lex_state = 45, .external_lex_state = 1}, + [3591] = {.lex_state = 45, .external_lex_state = 1}, + [3592] = {.lex_state = 45, .external_lex_state = 1}, + [3593] = {.lex_state = 45, .external_lex_state = 1}, + [3594] = {.lex_state = 45, .external_lex_state = 1}, + [3595] = {.lex_state = 45, .external_lex_state = 1}, + [3596] = {.lex_state = 45, .external_lex_state = 1}, + [3597] = {.lex_state = 45, .external_lex_state = 1}, + [3598] = {.lex_state = 45, .external_lex_state = 1}, + [3599] = {.lex_state = 45, .external_lex_state = 1}, + [3600] = {.lex_state = 45, .external_lex_state = 1}, + [3601] = {.lex_state = 45, .external_lex_state = 1}, + [3602] = {.lex_state = 45, .external_lex_state = 1}, + [3603] = {.lex_state = 45, .external_lex_state = 1}, + [3604] = {.lex_state = 45, .external_lex_state = 1}, + [3605] = {.lex_state = 45, .external_lex_state = 1}, + [3606] = {.lex_state = 45, .external_lex_state = 1}, + [3607] = {.lex_state = 45, .external_lex_state = 1}, + [3608] = {.lex_state = 45, .external_lex_state = 1}, + [3609] = {.lex_state = 45, .external_lex_state = 1}, + [3610] = {.lex_state = 45, .external_lex_state = 1}, + [3611] = {.lex_state = 45, .external_lex_state = 1}, + [3612] = {.lex_state = 45, .external_lex_state = 1}, + [3613] = {.lex_state = 45, .external_lex_state = 1}, + [3614] = {.lex_state = 45, .external_lex_state = 1}, + [3615] = {.lex_state = 45, .external_lex_state = 1}, + [3616] = {.lex_state = 45, .external_lex_state = 1}, + [3617] = {.lex_state = 45, .external_lex_state = 1}, + [3618] = {.lex_state = 45, .external_lex_state = 1}, + [3619] = {.lex_state = 45, .external_lex_state = 1}, + [3620] = {.lex_state = 45, .external_lex_state = 1}, + [3621] = {.lex_state = 45, .external_lex_state = 1}, + [3622] = {.lex_state = 45, .external_lex_state = 1}, + [3623] = {.lex_state = 45, .external_lex_state = 1}, + [3624] = {.lex_state = 45, .external_lex_state = 1}, + [3625] = {.lex_state = 45, .external_lex_state = 1}, + [3626] = {.lex_state = 45, .external_lex_state = 1}, + [3627] = {.lex_state = 45, .external_lex_state = 1}, + [3628] = {.lex_state = 45, .external_lex_state = 1}, + [3629] = {.lex_state = 45, .external_lex_state = 1}, + [3630] = {.lex_state = 45, .external_lex_state = 1}, + [3631] = {.lex_state = 45, .external_lex_state = 1}, + [3632] = {.lex_state = 45, .external_lex_state = 1}, + [3633] = {.lex_state = 45, .external_lex_state = 1}, + [3634] = {.lex_state = 45, .external_lex_state = 1}, + [3635] = {.lex_state = 45, .external_lex_state = 1}, + [3636] = {.lex_state = 45, .external_lex_state = 1}, + [3637] = {.lex_state = 45, .external_lex_state = 1}, + [3638] = {.lex_state = 45, .external_lex_state = 1}, + [3639] = {.lex_state = 45, .external_lex_state = 1}, + [3640] = {.lex_state = 45, .external_lex_state = 1}, + [3641] = {.lex_state = 45, .external_lex_state = 1}, + [3642] = {.lex_state = 45, .external_lex_state = 1}, + [3643] = {.lex_state = 45, .external_lex_state = 1}, + [3644] = {.lex_state = 45, .external_lex_state = 1}, + [3645] = {.lex_state = 45, .external_lex_state = 1}, + [3646] = {.lex_state = 45, .external_lex_state = 1}, + [3647] = {.lex_state = 45, .external_lex_state = 1}, + [3648] = {.lex_state = 45, .external_lex_state = 1}, + [3649] = {.lex_state = 45, .external_lex_state = 1}, + [3650] = {.lex_state = 45, .external_lex_state = 1}, + [3651] = {.lex_state = 45, .external_lex_state = 1}, + [3652] = {.lex_state = 45, .external_lex_state = 1}, + [3653] = {.lex_state = 45, .external_lex_state = 1}, + [3654] = {.lex_state = 45, .external_lex_state = 1}, + [3655] = {.lex_state = 45, .external_lex_state = 1}, + [3656] = {.lex_state = 45, .external_lex_state = 1}, + [3657] = {.lex_state = 45, .external_lex_state = 1}, + [3658] = {.lex_state = 45, .external_lex_state = 1}, + [3659] = {.lex_state = 45, .external_lex_state = 1}, + [3660] = {.lex_state = 45, .external_lex_state = 1}, + [3661] = {.lex_state = 45, .external_lex_state = 1}, + [3662] = {.lex_state = 45, .external_lex_state = 1}, + [3663] = {.lex_state = 45, .external_lex_state = 1}, + [3664] = {.lex_state = 45, .external_lex_state = 1}, + [3665] = {.lex_state = 45, .external_lex_state = 1}, + [3666] = {.lex_state = 45, .external_lex_state = 1}, + [3667] = {.lex_state = 45, .external_lex_state = 1}, + [3668] = {.lex_state = 45, .external_lex_state = 1}, + [3669] = {.lex_state = 45, .external_lex_state = 1}, + [3670] = {.lex_state = 45, .external_lex_state = 1}, + [3671] = {.lex_state = 45, .external_lex_state = 1}, + [3672] = {.lex_state = 45, .external_lex_state = 1}, + [3673] = {.lex_state = 45, .external_lex_state = 1}, + [3674] = {.lex_state = 45, .external_lex_state = 1}, + [3675] = {.lex_state = 45, .external_lex_state = 1}, + [3676] = {.lex_state = 45, .external_lex_state = 1}, + [3677] = {.lex_state = 45, .external_lex_state = 1}, + [3678] = {.lex_state = 45, .external_lex_state = 1}, + [3679] = {.lex_state = 45, .external_lex_state = 1}, + [3680] = {.lex_state = 45, .external_lex_state = 1}, + [3681] = {.lex_state = 45, .external_lex_state = 1}, + [3682] = {.lex_state = 45, .external_lex_state = 1}, + [3683] = {.lex_state = 45, .external_lex_state = 1}, + [3684] = {.lex_state = 45, .external_lex_state = 1}, + [3685] = {.lex_state = 45, .external_lex_state = 1}, + [3686] = {.lex_state = 45, .external_lex_state = 1}, + [3687] = {.lex_state = 45, .external_lex_state = 1}, + [3688] = {.lex_state = 45, .external_lex_state = 1}, + [3689] = {.lex_state = 45, .external_lex_state = 1}, + [3690] = {.lex_state = 45, .external_lex_state = 1}, + [3691] = {.lex_state = 45, .external_lex_state = 1}, + [3692] = {.lex_state = 45, .external_lex_state = 1}, + [3693] = {.lex_state = 45, .external_lex_state = 1}, + [3694] = {.lex_state = 45, .external_lex_state = 1}, + [3695] = {.lex_state = 45, .external_lex_state = 1}, + [3696] = {.lex_state = 45, .external_lex_state = 1}, + [3697] = {.lex_state = 45, .external_lex_state = 1}, + [3698] = {.lex_state = 45, .external_lex_state = 1}, + [3699] = {.lex_state = 45, .external_lex_state = 1}, + [3700] = {.lex_state = 45, .external_lex_state = 1}, + [3701] = {.lex_state = 45, .external_lex_state = 1}, + [3702] = {.lex_state = 45, .external_lex_state = 1}, + [3703] = {.lex_state = 45, .external_lex_state = 1}, + [3704] = {.lex_state = 45, .external_lex_state = 1}, + [3705] = {.lex_state = 45, .external_lex_state = 1}, + [3706] = {.lex_state = 45, .external_lex_state = 1}, + [3707] = {.lex_state = 45, .external_lex_state = 1}, + [3708] = {.lex_state = 45, .external_lex_state = 1}, + [3709] = {.lex_state = 45, .external_lex_state = 1}, + [3710] = {.lex_state = 45, .external_lex_state = 1}, + [3711] = {.lex_state = 45, .external_lex_state = 1}, + [3712] = {.lex_state = 45, .external_lex_state = 1}, + [3713] = {.lex_state = 45, .external_lex_state = 1}, + [3714] = {.lex_state = 45, .external_lex_state = 1}, + [3715] = {.lex_state = 45, .external_lex_state = 1}, + [3716] = {.lex_state = 45, .external_lex_state = 1}, + [3717] = {.lex_state = 45, .external_lex_state = 1}, + [3718] = {.lex_state = 45, .external_lex_state = 1}, + [3719] = {.lex_state = 45, .external_lex_state = 1}, + [3720] = {.lex_state = 45, .external_lex_state = 1}, + [3721] = {.lex_state = 45, .external_lex_state = 1}, + [3722] = {.lex_state = 45, .external_lex_state = 1}, + [3723] = {.lex_state = 45, .external_lex_state = 1}, + [3724] = {.lex_state = 45, .external_lex_state = 1}, + [3725] = {.lex_state = 45, .external_lex_state = 1}, + [3726] = {.lex_state = 45, .external_lex_state = 1}, + [3727] = {.lex_state = 45, .external_lex_state = 1}, + [3728] = {.lex_state = 45, .external_lex_state = 1}, + [3729] = {.lex_state = 45, .external_lex_state = 1}, + [3730] = {.lex_state = 45, .external_lex_state = 1}, + [3731] = {.lex_state = 45, .external_lex_state = 1}, + [3732] = {.lex_state = 45, .external_lex_state = 1}, + [3733] = {.lex_state = 45, .external_lex_state = 1}, + [3734] = {.lex_state = 45, .external_lex_state = 1}, + [3735] = {.lex_state = 45, .external_lex_state = 1}, + [3736] = {.lex_state = 45, .external_lex_state = 1}, + [3737] = {.lex_state = 45, .external_lex_state = 1}, + [3738] = {.lex_state = 45, .external_lex_state = 1}, + [3739] = {.lex_state = 45, .external_lex_state = 1}, + [3740] = {.lex_state = 45, .external_lex_state = 1}, + [3741] = {.lex_state = 45, .external_lex_state = 1}, + [3742] = {.lex_state = 45, .external_lex_state = 1}, + [3743] = {.lex_state = 45, .external_lex_state = 1}, + [3744] = {.lex_state = 45, .external_lex_state = 1}, + [3745] = {.lex_state = 45, .external_lex_state = 1}, + [3746] = {.lex_state = 45, .external_lex_state = 1}, + [3747] = {.lex_state = 45, .external_lex_state = 1}, + [3748] = {.lex_state = 45, .external_lex_state = 1}, + [3749] = {.lex_state = 45, .external_lex_state = 1}, + [3750] = {.lex_state = 45, .external_lex_state = 1}, + [3751] = {.lex_state = 45, .external_lex_state = 1}, + [3752] = {.lex_state = 45, .external_lex_state = 1}, + [3753] = {.lex_state = 45, .external_lex_state = 1}, + [3754] = {.lex_state = 45, .external_lex_state = 1}, + [3755] = {.lex_state = 45, .external_lex_state = 1}, + [3756] = {.lex_state = 45, .external_lex_state = 1}, + [3757] = {.lex_state = 45, .external_lex_state = 1}, + [3758] = {.lex_state = 45, .external_lex_state = 1}, + [3759] = {.lex_state = 45, .external_lex_state = 1}, + [3760] = {.lex_state = 45, .external_lex_state = 1}, + [3761] = {.lex_state = 45, .external_lex_state = 1}, + [3762] = {.lex_state = 45, .external_lex_state = 1}, + [3763] = {.lex_state = 45, .external_lex_state = 1}, + [3764] = {.lex_state = 45, .external_lex_state = 1}, + [3765] = {.lex_state = 45, .external_lex_state = 1}, + [3766] = {.lex_state = 45, .external_lex_state = 1}, + [3767] = {.lex_state = 45, .external_lex_state = 1}, + [3768] = {.lex_state = 45, .external_lex_state = 1}, + [3769] = {.lex_state = 45, .external_lex_state = 1}, + [3770] = {.lex_state = 45, .external_lex_state = 1}, + [3771] = {.lex_state = 45, .external_lex_state = 1}, + [3772] = {.lex_state = 45, .external_lex_state = 1}, + [3773] = {.lex_state = 45, .external_lex_state = 1}, + [3774] = {.lex_state = 45, .external_lex_state = 1}, + [3775] = {.lex_state = 45, .external_lex_state = 1}, + [3776] = {.lex_state = 45, .external_lex_state = 1}, + [3777] = {.lex_state = 45, .external_lex_state = 1}, + [3778] = {.lex_state = 45, .external_lex_state = 1}, + [3779] = {.lex_state = 45, .external_lex_state = 1}, + [3780] = {.lex_state = 45, .external_lex_state = 1}, + [3781] = {.lex_state = 45, .external_lex_state = 1}, + [3782] = {.lex_state = 45, .external_lex_state = 1}, + [3783] = {.lex_state = 45, .external_lex_state = 1}, + [3784] = {.lex_state = 45, .external_lex_state = 1}, + [3785] = {.lex_state = 45, .external_lex_state = 1}, + [3786] = {.lex_state = 45, .external_lex_state = 1}, + [3787] = {.lex_state = 45, .external_lex_state = 1}, + [3788] = {.lex_state = 45, .external_lex_state = 1}, + [3789] = {.lex_state = 45, .external_lex_state = 1}, + [3790] = {.lex_state = 45, .external_lex_state = 1}, + [3791] = {.lex_state = 45, .external_lex_state = 1}, + [3792] = {.lex_state = 45, .external_lex_state = 1}, + [3793] = {.lex_state = 45, .external_lex_state = 1}, + [3794] = {.lex_state = 45, .external_lex_state = 1}, + [3795] = {.lex_state = 45, .external_lex_state = 1}, + [3796] = {.lex_state = 45, .external_lex_state = 1}, + [3797] = {.lex_state = 45, .external_lex_state = 1}, + [3798] = {.lex_state = 45, .external_lex_state = 1}, + [3799] = {.lex_state = 45, .external_lex_state = 1}, + [3800] = {.lex_state = 45, .external_lex_state = 1}, + [3801] = {.lex_state = 45, .external_lex_state = 1}, + [3802] = {.lex_state = 45, .external_lex_state = 1}, + [3803] = {.lex_state = 45, .external_lex_state = 1}, + [3804] = {.lex_state = 45, .external_lex_state = 1}, + [3805] = {.lex_state = 45, .external_lex_state = 1}, + [3806] = {.lex_state = 45, .external_lex_state = 1}, + [3807] = {.lex_state = 45, .external_lex_state = 1}, + [3808] = {.lex_state = 45, .external_lex_state = 1}, + [3809] = {.lex_state = 45, .external_lex_state = 1}, + [3810] = {.lex_state = 45, .external_lex_state = 1}, + [3811] = {.lex_state = 45, .external_lex_state = 1}, + [3812] = {.lex_state = 45, .external_lex_state = 1}, + [3813] = {.lex_state = 45, .external_lex_state = 1}, + [3814] = {.lex_state = 45, .external_lex_state = 1}, + [3815] = {.lex_state = 45, .external_lex_state = 1}, + [3816] = {.lex_state = 45, .external_lex_state = 1}, + [3817] = {.lex_state = 45, .external_lex_state = 1}, + [3818] = {.lex_state = 45, .external_lex_state = 1}, + [3819] = {.lex_state = 45, .external_lex_state = 1}, + [3820] = {.lex_state = 45, .external_lex_state = 1}, + [3821] = {.lex_state = 45, .external_lex_state = 1}, + [3822] = {.lex_state = 45, .external_lex_state = 1}, + [3823] = {.lex_state = 45, .external_lex_state = 1}, + [3824] = {.lex_state = 45, .external_lex_state = 1}, + [3825] = {.lex_state = 45, .external_lex_state = 1}, + [3826] = {.lex_state = 45, .external_lex_state = 1}, + [3827] = {.lex_state = 45, .external_lex_state = 1}, + [3828] = {.lex_state = 45, .external_lex_state = 1}, + [3829] = {.lex_state = 45, .external_lex_state = 1}, + [3830] = {.lex_state = 45, .external_lex_state = 1}, + [3831] = {.lex_state = 45, .external_lex_state = 1}, + [3832] = {.lex_state = 45, .external_lex_state = 1}, + [3833] = {.lex_state = 45, .external_lex_state = 1}, + [3834] = {.lex_state = 45, .external_lex_state = 1}, + [3835] = {.lex_state = 45, .external_lex_state = 1}, + [3836] = {.lex_state = 45, .external_lex_state = 1}, + [3837] = {.lex_state = 45, .external_lex_state = 1}, + [3838] = {.lex_state = 45, .external_lex_state = 1}, + [3839] = {.lex_state = 45, .external_lex_state = 1}, + [3840] = {.lex_state = 45, .external_lex_state = 1}, + [3841] = {.lex_state = 45, .external_lex_state = 1}, + [3842] = {.lex_state = 45, .external_lex_state = 1}, + [3843] = {.lex_state = 45, .external_lex_state = 1}, + [3844] = {.lex_state = 45, .external_lex_state = 1}, + [3845] = {.lex_state = 45, .external_lex_state = 1}, + [3846] = {.lex_state = 45, .external_lex_state = 1}, + [3847] = {.lex_state = 45, .external_lex_state = 1}, + [3848] = {.lex_state = 45, .external_lex_state = 1}, + [3849] = {.lex_state = 45, .external_lex_state = 1}, + [3850] = {.lex_state = 45, .external_lex_state = 1}, + [3851] = {.lex_state = 45, .external_lex_state = 1}, + [3852] = {.lex_state = 45, .external_lex_state = 1}, + [3853] = {.lex_state = 45, .external_lex_state = 1}, + [3854] = {.lex_state = 45, .external_lex_state = 1}, + [3855] = {.lex_state = 45, .external_lex_state = 1}, + [3856] = {.lex_state = 45, .external_lex_state = 1}, + [3857] = {.lex_state = 45, .external_lex_state = 1}, + [3858] = {.lex_state = 45, .external_lex_state = 1}, + [3859] = {.lex_state = 45, .external_lex_state = 1}, + [3860] = {.lex_state = 45, .external_lex_state = 1}, + [3861] = {.lex_state = 45, .external_lex_state = 1}, + [3862] = {.lex_state = 45, .external_lex_state = 1}, + [3863] = {.lex_state = 45, .external_lex_state = 1}, + [3864] = {.lex_state = 45, .external_lex_state = 1}, + [3865] = {.lex_state = 45, .external_lex_state = 1}, + [3866] = {.lex_state = 45, .external_lex_state = 1}, + [3867] = {.lex_state = 45, .external_lex_state = 1}, + [3868] = {.lex_state = 45, .external_lex_state = 1}, + [3869] = {.lex_state = 45, .external_lex_state = 1}, + [3870] = {.lex_state = 45, .external_lex_state = 1}, + [3871] = {.lex_state = 45, .external_lex_state = 1}, + [3872] = {.lex_state = 45, .external_lex_state = 1}, + [3873] = {.lex_state = 45, .external_lex_state = 1}, + [3874] = {.lex_state = 45, .external_lex_state = 1}, + [3875] = {.lex_state = 45, .external_lex_state = 1}, + [3876] = {.lex_state = 45, .external_lex_state = 1}, + [3877] = {.lex_state = 45, .external_lex_state = 1}, + [3878] = {.lex_state = 45, .external_lex_state = 1}, + [3879] = {.lex_state = 45, .external_lex_state = 1}, + [3880] = {.lex_state = 45, .external_lex_state = 1}, + [3881] = {.lex_state = 45, .external_lex_state = 1}, + [3882] = {.lex_state = 45, .external_lex_state = 1}, + [3883] = {.lex_state = 45, .external_lex_state = 1}, + [3884] = {.lex_state = 45, .external_lex_state = 1}, + [3885] = {.lex_state = 45, .external_lex_state = 1}, + [3886] = {.lex_state = 45, .external_lex_state = 1}, + [3887] = {.lex_state = 45, .external_lex_state = 1}, + [3888] = {.lex_state = 45, .external_lex_state = 1}, + [3889] = {.lex_state = 45, .external_lex_state = 1}, + [3890] = {.lex_state = 45, .external_lex_state = 1}, + [3891] = {.lex_state = 45, .external_lex_state = 1}, + [3892] = {.lex_state = 45, .external_lex_state = 1}, + [3893] = {.lex_state = 45, .external_lex_state = 1}, + [3894] = {.lex_state = 45, .external_lex_state = 1}, + [3895] = {.lex_state = 45, .external_lex_state = 1}, + [3896] = {.lex_state = 45, .external_lex_state = 1}, + [3897] = {.lex_state = 45, .external_lex_state = 1}, + [3898] = {.lex_state = 45, .external_lex_state = 1}, + [3899] = {.lex_state = 45, .external_lex_state = 1}, + [3900] = {.lex_state = 45, .external_lex_state = 1}, + [3901] = {.lex_state = 45, .external_lex_state = 1}, + [3902] = {.lex_state = 45, .external_lex_state = 1}, + [3903] = {.lex_state = 45, .external_lex_state = 1}, + [3904] = {.lex_state = 45, .external_lex_state = 1}, + [3905] = {.lex_state = 45, .external_lex_state = 1}, + [3906] = {.lex_state = 45, .external_lex_state = 1}, + [3907] = {.lex_state = 45, .external_lex_state = 1}, + [3908] = {.lex_state = 45, .external_lex_state = 1}, + [3909] = {.lex_state = 45, .external_lex_state = 1}, + [3910] = {.lex_state = 45, .external_lex_state = 1}, + [3911] = {.lex_state = 45, .external_lex_state = 1}, + [3912] = {.lex_state = 45, .external_lex_state = 1}, + [3913] = {.lex_state = 45, .external_lex_state = 1}, + [3914] = {.lex_state = 45, .external_lex_state = 1}, + [3915] = {.lex_state = 45, .external_lex_state = 1}, + [3916] = {.lex_state = 45, .external_lex_state = 1}, + [3917] = {.lex_state = 45, .external_lex_state = 1}, + [3918] = {.lex_state = 45, .external_lex_state = 1}, + [3919] = {.lex_state = 45, .external_lex_state = 1}, + [3920] = {.lex_state = 45, .external_lex_state = 1}, + [3921] = {.lex_state = 45, .external_lex_state = 1}, + [3922] = {.lex_state = 45, .external_lex_state = 1}, + [3923] = {.lex_state = 45, .external_lex_state = 1}, + [3924] = {.lex_state = 45, .external_lex_state = 1}, + [3925] = {.lex_state = 45, .external_lex_state = 1}, + [3926] = {.lex_state = 45, .external_lex_state = 1}, + [3927] = {.lex_state = 45, .external_lex_state = 1}, + [3928] = {.lex_state = 45, .external_lex_state = 1}, + [3929] = {.lex_state = 45, .external_lex_state = 1}, + [3930] = {.lex_state = 45, .external_lex_state = 1}, + [3931] = {.lex_state = 45, .external_lex_state = 1}, + [3932] = {.lex_state = 45, .external_lex_state = 1}, + [3933] = {.lex_state = 45, .external_lex_state = 1}, + [3934] = {.lex_state = 45, .external_lex_state = 1}, + [3935] = {.lex_state = 45, .external_lex_state = 1}, + [3936] = {.lex_state = 45, .external_lex_state = 1}, + [3937] = {.lex_state = 45, .external_lex_state = 1}, + [3938] = {.lex_state = 45, .external_lex_state = 1}, + [3939] = {.lex_state = 45, .external_lex_state = 1}, + [3940] = {.lex_state = 45, .external_lex_state = 1}, + [3941] = {.lex_state = 45, .external_lex_state = 1}, + [3942] = {.lex_state = 45, .external_lex_state = 1}, + [3943] = {.lex_state = 45, .external_lex_state = 1}, + [3944] = {.lex_state = 45, .external_lex_state = 1}, + [3945] = {.lex_state = 45, .external_lex_state = 1}, + [3946] = {.lex_state = 45, .external_lex_state = 1}, + [3947] = {.lex_state = 45, .external_lex_state = 1}, + [3948] = {.lex_state = 45, .external_lex_state = 1}, + [3949] = {.lex_state = 45, .external_lex_state = 1}, + [3950] = {.lex_state = 45, .external_lex_state = 1}, + [3951] = {.lex_state = 45, .external_lex_state = 1}, + [3952] = {.lex_state = 45, .external_lex_state = 1}, + [3953] = {.lex_state = 45, .external_lex_state = 1}, + [3954] = {.lex_state = 45, .external_lex_state = 1}, + [3955] = {.lex_state = 45, .external_lex_state = 1}, + [3956] = {.lex_state = 45, .external_lex_state = 1}, + [3957] = {.lex_state = 45, .external_lex_state = 1}, + [3958] = {.lex_state = 45, .external_lex_state = 1}, + [3959] = {.lex_state = 45, .external_lex_state = 1}, + [3960] = {.lex_state = 45, .external_lex_state = 1}, + [3961] = {.lex_state = 45, .external_lex_state = 1}, + [3962] = {.lex_state = 45, .external_lex_state = 1}, + [3963] = {.lex_state = 45, .external_lex_state = 1}, + [3964] = {.lex_state = 45, .external_lex_state = 1}, + [3965] = {.lex_state = 45, .external_lex_state = 1}, + [3966] = {.lex_state = 45, .external_lex_state = 1}, + [3967] = {.lex_state = 45, .external_lex_state = 1}, + [3968] = {.lex_state = 45, .external_lex_state = 1}, + [3969] = {.lex_state = 45, .external_lex_state = 1}, + [3970] = {.lex_state = 45, .external_lex_state = 1}, + [3971] = {.lex_state = 45, .external_lex_state = 1}, + [3972] = {.lex_state = 45, .external_lex_state = 1}, + [3973] = {.lex_state = 45, .external_lex_state = 1}, + [3974] = {.lex_state = 45, .external_lex_state = 1}, + [3975] = {.lex_state = 45, .external_lex_state = 1}, + [3976] = {.lex_state = 45, .external_lex_state = 1}, + [3977] = {.lex_state = 45, .external_lex_state = 1}, + [3978] = {.lex_state = 45, .external_lex_state = 1}, + [3979] = {.lex_state = 45, .external_lex_state = 1}, + [3980] = {.lex_state = 45, .external_lex_state = 1}, + [3981] = {.lex_state = 45, .external_lex_state = 1}, + [3982] = {.lex_state = 45, .external_lex_state = 1}, + [3983] = {.lex_state = 45, .external_lex_state = 1}, + [3984] = {.lex_state = 45, .external_lex_state = 1}, + [3985] = {.lex_state = 45, .external_lex_state = 1}, + [3986] = {.lex_state = 45, .external_lex_state = 1}, + [3987] = {.lex_state = 45, .external_lex_state = 1}, + [3988] = {.lex_state = 45, .external_lex_state = 1}, + [3989] = {.lex_state = 45, .external_lex_state = 1}, + [3990] = {.lex_state = 45, .external_lex_state = 1}, + [3991] = {.lex_state = 45, .external_lex_state = 1}, + [3992] = {.lex_state = 45, .external_lex_state = 1}, + [3993] = {.lex_state = 45, .external_lex_state = 1}, + [3994] = {.lex_state = 45, .external_lex_state = 1}, + [3995] = {.lex_state = 45, .external_lex_state = 1}, + [3996] = {.lex_state = 45, .external_lex_state = 1}, + [3997] = {.lex_state = 45, .external_lex_state = 1}, + [3998] = {.lex_state = 45, .external_lex_state = 1}, + [3999] = {.lex_state = 45, .external_lex_state = 1}, + [4000] = {.lex_state = 45, .external_lex_state = 1}, + [4001] = {.lex_state = 45, .external_lex_state = 1}, + [4002] = {.lex_state = 45, .external_lex_state = 1}, + [4003] = {.lex_state = 45, .external_lex_state = 1}, + [4004] = {.lex_state = 45, .external_lex_state = 1}, + [4005] = {.lex_state = 45, .external_lex_state = 1}, + [4006] = {.lex_state = 45, .external_lex_state = 1}, + [4007] = {.lex_state = 45, .external_lex_state = 1}, + [4008] = {.lex_state = 45, .external_lex_state = 1}, + [4009] = {.lex_state = 45, .external_lex_state = 1}, + [4010] = {.lex_state = 45, .external_lex_state = 1}, + [4011] = {.lex_state = 45, .external_lex_state = 1}, + [4012] = {.lex_state = 45, .external_lex_state = 1}, + [4013] = {.lex_state = 45, .external_lex_state = 1}, + [4014] = {.lex_state = 45, .external_lex_state = 1}, + [4015] = {.lex_state = 45, .external_lex_state = 1}, + [4016] = {.lex_state = 45, .external_lex_state = 1}, + [4017] = {.lex_state = 45, .external_lex_state = 1}, + [4018] = {.lex_state = 45, .external_lex_state = 1}, + [4019] = {.lex_state = 45, .external_lex_state = 1}, + [4020] = {.lex_state = 45, .external_lex_state = 1}, + [4021] = {.lex_state = 45, .external_lex_state = 1}, + [4022] = {.lex_state = 45, .external_lex_state = 1}, + [4023] = {.lex_state = 45, .external_lex_state = 1}, + [4024] = {.lex_state = 45, .external_lex_state = 1}, + [4025] = {.lex_state = 45, .external_lex_state = 1}, + [4026] = {.lex_state = 45, .external_lex_state = 1}, + [4027] = {.lex_state = 45, .external_lex_state = 1}, + [4028] = {.lex_state = 45, .external_lex_state = 1}, + [4029] = {.lex_state = 45, .external_lex_state = 1}, + [4030] = {.lex_state = 45, .external_lex_state = 1}, + [4031] = {.lex_state = 45, .external_lex_state = 1}, + [4032] = {.lex_state = 45, .external_lex_state = 1}, + [4033] = {.lex_state = 45, .external_lex_state = 1}, + [4034] = {.lex_state = 45, .external_lex_state = 1}, + [4035] = {.lex_state = 45, .external_lex_state = 1}, + [4036] = {.lex_state = 45, .external_lex_state = 1}, + [4037] = {.lex_state = 45, .external_lex_state = 1}, + [4038] = {.lex_state = 45, .external_lex_state = 1}, + [4039] = {.lex_state = 45, .external_lex_state = 1}, + [4040] = {.lex_state = 45, .external_lex_state = 1}, + [4041] = {.lex_state = 45, .external_lex_state = 1}, + [4042] = {.lex_state = 45, .external_lex_state = 1}, + [4043] = {.lex_state = 45, .external_lex_state = 1}, + [4044] = {.lex_state = 45, .external_lex_state = 1}, + [4045] = {.lex_state = 45, .external_lex_state = 1}, + [4046] = {.lex_state = 45, .external_lex_state = 1}, + [4047] = {.lex_state = 45, .external_lex_state = 1}, + [4048] = {.lex_state = 45, .external_lex_state = 1}, + [4049] = {.lex_state = 45, .external_lex_state = 1}, + [4050] = {.lex_state = 45, .external_lex_state = 1}, + [4051] = {.lex_state = 45, .external_lex_state = 1}, + [4052] = {.lex_state = 45, .external_lex_state = 1}, + [4053] = {.lex_state = 45, .external_lex_state = 1}, + [4054] = {.lex_state = 45, .external_lex_state = 1}, + [4055] = {.lex_state = 45, .external_lex_state = 1}, + [4056] = {.lex_state = 45, .external_lex_state = 1}, + [4057] = {.lex_state = 45, .external_lex_state = 1}, + [4058] = {.lex_state = 45, .external_lex_state = 1}, + [4059] = {.lex_state = 45, .external_lex_state = 1}, + [4060] = {.lex_state = 45, .external_lex_state = 1}, + [4061] = {.lex_state = 122, .external_lex_state = 1}, + [4062] = {.lex_state = 122, .external_lex_state = 1}, + [4063] = {.lex_state = 122, .external_lex_state = 1}, + [4064] = {.lex_state = 122, .external_lex_state = 1}, + [4065] = {.lex_state = 122, .external_lex_state = 1}, + [4066] = {.lex_state = 122, .external_lex_state = 1}, + [4067] = {.lex_state = 122, .external_lex_state = 1}, + [4068] = {.lex_state = 122, .external_lex_state = 1}, + [4069] = {.lex_state = 122, .external_lex_state = 1}, + [4070] = {.lex_state = 122, .external_lex_state = 1}, + [4071] = {.lex_state = 122, .external_lex_state = 1}, + [4072] = {.lex_state = 122, .external_lex_state = 1}, + [4073] = {.lex_state = 122, .external_lex_state = 1}, + [4074] = {.lex_state = 122, .external_lex_state = 1}, + [4075] = {.lex_state = 122, .external_lex_state = 1}, + [4076] = {.lex_state = 122, .external_lex_state = 1}, + [4077] = {.lex_state = 122, .external_lex_state = 1}, + [4078] = {.lex_state = 122, .external_lex_state = 1}, + [4079] = {.lex_state = 534, .external_lex_state = 1}, + [4080] = {.lex_state = 534, .external_lex_state = 1}, + [4081] = {.lex_state = 534, .external_lex_state = 1}, + [4082] = {.lex_state = 535, .external_lex_state = 1}, + [4083] = {.lex_state = 536, .external_lex_state = 1}, + [4084] = {.lex_state = 41, .external_lex_state = 1}, + [4085] = {.lex_state = 41, .external_lex_state = 1}, + [4086] = {.lex_state = 536, .external_lex_state = 1}, + [4087] = {.lex_state = 536, .external_lex_state = 1}, + [4088] = {.lex_state = 41, .external_lex_state = 1}, + [4089] = {.lex_state = 535, .external_lex_state = 1}, + [4090] = {.lex_state = 535, .external_lex_state = 1}, + [4091] = {.lex_state = 537, .external_lex_state = 1}, + [4092] = {.lex_state = 42, .external_lex_state = 1}, + [4093] = {.lex_state = 42, .external_lex_state = 1}, + [4094] = {.lex_state = 43, .external_lex_state = 1}, + [4095] = {.lex_state = 43, .external_lex_state = 1}, + [4096] = {.lex_state = 42, .external_lex_state = 1}, + [4097] = {.lex_state = 43, .external_lex_state = 1}, + [4098] = {.lex_state = 537, .external_lex_state = 1}, + [4099] = {.lex_state = 537, .external_lex_state = 1}, + [4100] = {.lex_state = 90, .external_lex_state = 1}, + [4101] = {.lex_state = 94, .external_lex_state = 1}, + [4102] = {.lex_state = 122, .external_lex_state = 1}, + [4103] = {.lex_state = 534, .external_lex_state = 1}, + [4104] = {.lex_state = 122, .external_lex_state = 1}, + [4105] = {.lex_state = 122, .external_lex_state = 1}, + [4106] = {.lex_state = 534, .external_lex_state = 1}, + [4107] = {.lex_state = 70, .external_lex_state = 1}, + [4108] = {.lex_state = 70, .external_lex_state = 1}, + [4109] = {.lex_state = 122, .external_lex_state = 1}, + [4110] = {.lex_state = 70, .external_lex_state = 1}, + [4111] = {.lex_state = 534, .external_lex_state = 1}, + [4112] = {.lex_state = 44, .external_lex_state = 1}, + [4113] = {.lex_state = 44, .external_lex_state = 1}, + [4114] = {.lex_state = 547, .external_lex_state = 1}, + [4115] = {.lex_state = 122, .external_lex_state = 1}, + [4116] = {.lex_state = 122, .external_lex_state = 1}, + [4117] = {.lex_state = 122, .external_lex_state = 1}, + [4118] = {.lex_state = 547, .external_lex_state = 1}, + [4119] = {.lex_state = 122, .external_lex_state = 1}, + [4120] = {.lex_state = 90, .external_lex_state = 1}, + [4121] = {.lex_state = 44, .external_lex_state = 1}, + [4122] = {.lex_state = 94, .external_lex_state = 1}, + [4123] = {.lex_state = 90, .external_lex_state = 1}, + [4124] = {.lex_state = 122, .external_lex_state = 1}, + [4125] = {.lex_state = 94, .external_lex_state = 1}, + [4126] = {.lex_state = 71, .external_lex_state = 1}, + [4127] = {.lex_state = 122, .external_lex_state = 1}, + [4128] = {.lex_state = 122, .external_lex_state = 1}, + [4129] = {.lex_state = 72, .external_lex_state = 1}, + [4130] = {.lex_state = 98, .external_lex_state = 1}, + [4131] = {.lex_state = 98, .external_lex_state = 1}, + [4132] = {.lex_state = 98, .external_lex_state = 1}, + [4133] = {.lex_state = 535, .external_lex_state = 1}, + [4134] = {.lex_state = 122, .external_lex_state = 1}, + [4135] = {.lex_state = 132, .external_lex_state = 1}, + [4136] = {.lex_state = 95, .external_lex_state = 1}, + [4137] = {.lex_state = 96, .external_lex_state = 1}, + [4138] = {.lex_state = 96, .external_lex_state = 1}, + [4139] = {.lex_state = 95, .external_lex_state = 1}, + [4140] = {.lex_state = 132, .external_lex_state = 1}, + [4141] = {.lex_state = 96, .external_lex_state = 1}, + [4142] = {.lex_state = 122, .external_lex_state = 1}, + [4143] = {.lex_state = 122, .external_lex_state = 1}, + [4144] = {.lex_state = 104, .external_lex_state = 1}, + [4145] = {.lex_state = 104, .external_lex_state = 1}, + [4146] = {.lex_state = 104, .external_lex_state = 1}, + [4147] = {.lex_state = 122, .external_lex_state = 1}, + [4148] = {.lex_state = 102, .external_lex_state = 1}, + [4149] = {.lex_state = 102, .external_lex_state = 1}, + [4150] = {.lex_state = 71, .external_lex_state = 1}, + [4151] = {.lex_state = 536, .external_lex_state = 1}, + [4152] = {.lex_state = 540, .external_lex_state = 1}, + [4153] = {.lex_state = 72, .external_lex_state = 1}, + [4154] = {.lex_state = 536, .external_lex_state = 1}, + [4155] = {.lex_state = 535, .external_lex_state = 1}, + [4156] = {.lex_state = 122, .external_lex_state = 1}, + [4157] = {.lex_state = 536, .external_lex_state = 1}, + [4158] = {.lex_state = 91, .external_lex_state = 1}, + [4159] = {.lex_state = 91, .external_lex_state = 1}, + [4160] = {.lex_state = 91, .external_lex_state = 1}, + [4161] = {.lex_state = 92, .external_lex_state = 1}, + [4162] = {.lex_state = 122, .external_lex_state = 1}, + [4163] = {.lex_state = 92, .external_lex_state = 1}, + [4164] = {.lex_state = 72, .external_lex_state = 1}, + [4165] = {.lex_state = 95, .external_lex_state = 1}, + [4166] = {.lex_state = 122, .external_lex_state = 1}, + [4167] = {.lex_state = 122, .external_lex_state = 1}, + [4168] = {.lex_state = 122, .external_lex_state = 1}, + [4169] = {.lex_state = 535, .external_lex_state = 1}, + [4170] = {.lex_state = 122, .external_lex_state = 1}, + [4171] = {.lex_state = 122, .external_lex_state = 1}, + [4172] = {.lex_state = 71, .external_lex_state = 1}, + [4173] = {.lex_state = 92, .external_lex_state = 1}, + [4174] = {.lex_state = 102, .external_lex_state = 1}, + [4175] = {.lex_state = 122, .external_lex_state = 1}, + [4176] = {.lex_state = 540, .external_lex_state = 1}, + [4177] = {.lex_state = 540, .external_lex_state = 1}, + [4178] = {.lex_state = 540, .external_lex_state = 1}, + [4179] = {.lex_state = 540, .external_lex_state = 1}, + [4180] = {.lex_state = 540, .external_lex_state = 1}, + [4181] = {.lex_state = 540, .external_lex_state = 1}, + [4182] = {.lex_state = 540, .external_lex_state = 1}, + [4183] = {.lex_state = 540, .external_lex_state = 1}, + [4184] = {.lex_state = 540, .external_lex_state = 1}, + [4185] = {.lex_state = 93, .external_lex_state = 1}, + [4186] = {.lex_state = 93, .external_lex_state = 1}, + [4187] = {.lex_state = 93, .external_lex_state = 1}, + [4188] = {.lex_state = 540, .external_lex_state = 1}, + [4189] = {.lex_state = 540, .external_lex_state = 1}, + [4190] = {.lex_state = 122, .external_lex_state = 1}, + [4191] = {.lex_state = 538, .external_lex_state = 1}, + [4192] = {.lex_state = 122, .external_lex_state = 1}, + [4193] = {.lex_state = 540, .external_lex_state = 1}, + [4194] = {.lex_state = 540, .external_lex_state = 1}, + [4195] = {.lex_state = 540, .external_lex_state = 1}, + [4196] = {.lex_state = 540, .external_lex_state = 1}, + [4197] = {.lex_state = 103, .external_lex_state = 1}, + [4198] = {.lex_state = 122, .external_lex_state = 1}, + [4199] = {.lex_state = 122, .external_lex_state = 1}, + [4200] = {.lex_state = 541, .external_lex_state = 1}, + [4201] = {.lex_state = 97, .external_lex_state = 1}, + [4202] = {.lex_state = 103, .external_lex_state = 1}, + [4203] = {.lex_state = 540, .external_lex_state = 1}, + [4204] = {.lex_state = 99, .external_lex_state = 1}, + [4205] = {.lex_state = 73, .external_lex_state = 1}, + [4206] = {.lex_state = 540, .external_lex_state = 1}, + [4207] = {.lex_state = 122, .external_lex_state = 1}, + [4208] = {.lex_state = 540, .external_lex_state = 1}, + [4209] = {.lex_state = 103, .external_lex_state = 1}, + [4210] = {.lex_state = 106, .external_lex_state = 1}, + [4211] = {.lex_state = 540, .external_lex_state = 1}, + [4212] = {.lex_state = 540, .external_lex_state = 1}, + [4213] = {.lex_state = 540, .external_lex_state = 1}, + [4214] = {.lex_state = 540, .external_lex_state = 1}, + [4215] = {.lex_state = 97, .external_lex_state = 1}, + [4216] = {.lex_state = 106, .external_lex_state = 1}, + [4217] = {.lex_state = 73, .external_lex_state = 1}, + [4218] = {.lex_state = 540, .external_lex_state = 1}, + [4219] = {.lex_state = 540, .external_lex_state = 1}, + [4220] = {.lex_state = 540, .external_lex_state = 1}, + [4221] = {.lex_state = 73, .external_lex_state = 1}, + [4222] = {.lex_state = 540, .external_lex_state = 1}, + [4223] = {.lex_state = 540, .external_lex_state = 1}, + [4224] = {.lex_state = 122, .external_lex_state = 1}, + [4225] = {.lex_state = 106, .external_lex_state = 1}, + [4226] = {.lex_state = 540, .external_lex_state = 1}, + [4227] = {.lex_state = 540, .external_lex_state = 1}, + [4228] = {.lex_state = 544, .external_lex_state = 1}, + [4229] = {.lex_state = 540, .external_lex_state = 1}, + [4230] = {.lex_state = 537, .external_lex_state = 1}, + [4231] = {.lex_state = 540, .external_lex_state = 1}, + [4232] = {.lex_state = 537, .external_lex_state = 1}, + [4233] = {.lex_state = 540, .external_lex_state = 1}, + [4234] = {.lex_state = 540, .external_lex_state = 1}, + [4235] = {.lex_state = 97, .external_lex_state = 1}, + [4236] = {.lex_state = 540, .external_lex_state = 1}, + [4237] = {.lex_state = 540, .external_lex_state = 1}, + [4238] = {.lex_state = 540, .external_lex_state = 1}, + [4239] = {.lex_state = 540, .external_lex_state = 1}, + [4240] = {.lex_state = 540, .external_lex_state = 1}, + [4241] = {.lex_state = 540, .external_lex_state = 1}, + [4242] = {.lex_state = 540, .external_lex_state = 1}, + [4243] = {.lex_state = 540, .external_lex_state = 1}, + [4244] = {.lex_state = 105, .external_lex_state = 1}, + [4245] = {.lex_state = 540, .external_lex_state = 1}, + [4246] = {.lex_state = 540, .external_lex_state = 1}, + [4247] = {.lex_state = 105, .external_lex_state = 1}, + [4248] = {.lex_state = 540, .external_lex_state = 1}, + [4249] = {.lex_state = 540, .external_lex_state = 1}, + [4250] = {.lex_state = 122, .external_lex_state = 1}, + [4251] = {.lex_state = 122, .external_lex_state = 1}, + [4252] = {.lex_state = 99, .external_lex_state = 1}, + [4253] = {.lex_state = 105, .external_lex_state = 1}, + [4254] = {.lex_state = 122, .external_lex_state = 1}, + [4255] = {.lex_state = 100, .external_lex_state = 1}, + [4256] = {.lex_state = 540, .external_lex_state = 1}, + [4257] = {.lex_state = 108, .external_lex_state = 1}, + [4258] = {.lex_state = 100, .external_lex_state = 1}, + [4259] = {.lex_state = 100, .external_lex_state = 1}, + [4260] = {.lex_state = 537, .external_lex_state = 1}, + [4261] = {.lex_state = 122, .external_lex_state = 1}, + [4262] = {.lex_state = 122, .external_lex_state = 1}, + [4263] = {.lex_state = 540, .external_lex_state = 1}, + [4264] = {.lex_state = 540, .external_lex_state = 1}, + [4265] = {.lex_state = 540, .external_lex_state = 1}, + [4266] = {.lex_state = 540, .external_lex_state = 1}, + [4267] = {.lex_state = 540, .external_lex_state = 1}, + [4268] = {.lex_state = 540, .external_lex_state = 1}, + [4269] = {.lex_state = 540, .external_lex_state = 1}, + [4270] = {.lex_state = 540, .external_lex_state = 1}, + [4271] = {.lex_state = 540, .external_lex_state = 1}, + [4272] = {.lex_state = 540, .external_lex_state = 1}, + [4273] = {.lex_state = 108, .external_lex_state = 1}, + [4274] = {.lex_state = 99, .external_lex_state = 1}, + [4275] = {.lex_state = 108, .external_lex_state = 1}, + [4276] = {.lex_state = 540, .external_lex_state = 1}, + [4277] = {.lex_state = 540, .external_lex_state = 1}, + [4278] = {.lex_state = 541, .external_lex_state = 1}, + [4279] = {.lex_state = 29, .external_lex_state = 1}, + [4280] = {.lex_state = 29, .external_lex_state = 1}, + [4281] = {.lex_state = 541, .external_lex_state = 1}, + [4282] = {.lex_state = 29, .external_lex_state = 1}, + [4283] = {.lex_state = 109, .external_lex_state = 1}, + [4284] = {.lex_state = 541, .external_lex_state = 1}, + [4285] = {.lex_state = 541, .external_lex_state = 1}, + [4286] = {.lex_state = 29, .external_lex_state = 1}, + [4287] = {.lex_state = 29, .external_lex_state = 1}, + [4288] = {.lex_state = 29, .external_lex_state = 1}, + [4289] = {.lex_state = 29, .external_lex_state = 1}, + [4290] = {.lex_state = 29, .external_lex_state = 1}, + [4291] = {.lex_state = 29, .external_lex_state = 1}, + [4292] = {.lex_state = 107, .external_lex_state = 1}, + [4293] = {.lex_state = 541, .external_lex_state = 1}, + [4294] = {.lex_state = 544, .external_lex_state = 1}, + [4295] = {.lex_state = 544, .external_lex_state = 1}, + [4296] = {.lex_state = 538, .external_lex_state = 1}, + [4297] = {.lex_state = 544, .external_lex_state = 1}, + [4298] = {.lex_state = 544, .external_lex_state = 1}, + [4299] = {.lex_state = 538, .external_lex_state = 1}, + [4300] = {.lex_state = 544, .external_lex_state = 1}, + [4301] = {.lex_state = 544, .external_lex_state = 1}, + [4302] = {.lex_state = 544, .external_lex_state = 1}, + [4303] = {.lex_state = 541, .external_lex_state = 1}, + [4304] = {.lex_state = 541, .external_lex_state = 1}, + [4305] = {.lex_state = 29, .external_lex_state = 1}, + [4306] = {.lex_state = 544, .external_lex_state = 1}, + [4307] = {.lex_state = 29, .external_lex_state = 1}, + [4308] = {.lex_state = 107, .external_lex_state = 1}, + [4309] = {.lex_state = 29, .external_lex_state = 1}, + [4310] = {.lex_state = 29, .external_lex_state = 1}, + [4311] = {.lex_state = 544, .external_lex_state = 1}, + [4312] = {.lex_state = 29, .external_lex_state = 1}, + [4313] = {.lex_state = 544, .external_lex_state = 1}, + [4314] = {.lex_state = 29, .external_lex_state = 1}, + [4315] = {.lex_state = 544, .external_lex_state = 1}, + [4316] = {.lex_state = 544, .external_lex_state = 1}, + [4317] = {.lex_state = 544, .external_lex_state = 1}, + [4318] = {.lex_state = 544, .external_lex_state = 1}, + [4319] = {.lex_state = 544, .external_lex_state = 1}, + [4320] = {.lex_state = 544, .external_lex_state = 1}, + [4321] = {.lex_state = 541, .external_lex_state = 1}, + [4322] = {.lex_state = 538, .external_lex_state = 1}, + [4323] = {.lex_state = 538, .external_lex_state = 1}, + [4324] = {.lex_state = 544, .external_lex_state = 1}, + [4325] = {.lex_state = 544, .external_lex_state = 1}, + [4326] = {.lex_state = 538, .external_lex_state = 1}, + [4327] = {.lex_state = 544, .external_lex_state = 1}, + [4328] = {.lex_state = 538, .external_lex_state = 1}, + [4329] = {.lex_state = 538, .external_lex_state = 1}, + [4330] = {.lex_state = 544, .external_lex_state = 1}, + [4331] = {.lex_state = 538, .external_lex_state = 1}, + [4332] = {.lex_state = 29, .external_lex_state = 1}, + [4333] = {.lex_state = 29, .external_lex_state = 1}, + [4334] = {.lex_state = 29, .external_lex_state = 1}, + [4335] = {.lex_state = 538, .external_lex_state = 1}, + [4336] = {.lex_state = 538, .external_lex_state = 1}, + [4337] = {.lex_state = 544, .external_lex_state = 1}, + [4338] = {.lex_state = 544, .external_lex_state = 1}, + [4339] = {.lex_state = 544, .external_lex_state = 1}, + [4340] = {.lex_state = 541, .external_lex_state = 1}, + [4341] = {.lex_state = 541, .external_lex_state = 1}, + [4342] = {.lex_state = 538, .external_lex_state = 1}, + [4343] = {.lex_state = 538, .external_lex_state = 1}, + [4344] = {.lex_state = 30, .external_lex_state = 1}, + [4345] = {.lex_state = 538, .external_lex_state = 1}, + [4346] = {.lex_state = 538, .external_lex_state = 1}, + [4347] = {.lex_state = 544, .external_lex_state = 1}, + [4348] = {.lex_state = 538, .external_lex_state = 1}, + [4349] = {.lex_state = 538, .external_lex_state = 1}, + [4350] = {.lex_state = 101, .external_lex_state = 1}, + [4351] = {.lex_state = 538, .external_lex_state = 1}, + [4352] = {.lex_state = 544, .external_lex_state = 1}, + [4353] = {.lex_state = 30, .external_lex_state = 1}, + [4354] = {.lex_state = 538, .external_lex_state = 1}, + [4355] = {.lex_state = 538, .external_lex_state = 1}, + [4356] = {.lex_state = 544, .external_lex_state = 1}, + [4357] = {.lex_state = 541, .external_lex_state = 1}, + [4358] = {.lex_state = 544, .external_lex_state = 1}, + [4359] = {.lex_state = 29, .external_lex_state = 1}, + [4360] = {.lex_state = 538, .external_lex_state = 1}, + [4361] = {.lex_state = 29, .external_lex_state = 1}, + [4362] = {.lex_state = 29, .external_lex_state = 1}, + [4363] = {.lex_state = 30, .external_lex_state = 1}, + [4364] = {.lex_state = 544, .external_lex_state = 1}, + [4365] = {.lex_state = 544, .external_lex_state = 1}, + [4366] = {.lex_state = 30, .external_lex_state = 1}, + [4367] = {.lex_state = 544, .external_lex_state = 1}, + [4368] = {.lex_state = 541, .external_lex_state = 1}, + [4369] = {.lex_state = 30, .external_lex_state = 1}, + [4370] = {.lex_state = 538, .external_lex_state = 1}, + [4371] = {.lex_state = 538, .external_lex_state = 1}, + [4372] = {.lex_state = 30, .external_lex_state = 1}, + [4373] = {.lex_state = 538, .external_lex_state = 1}, + [4374] = {.lex_state = 30, .external_lex_state = 1}, + [4375] = {.lex_state = 544, .external_lex_state = 1}, + [4376] = {.lex_state = 544, .external_lex_state = 1}, + [4377] = {.lex_state = 30, .external_lex_state = 1}, + [4378] = {.lex_state = 538, .external_lex_state = 1}, + [4379] = {.lex_state = 541, .external_lex_state = 1}, + [4380] = {.lex_state = 30, .external_lex_state = 1}, + [4381] = {.lex_state = 544, .external_lex_state = 1}, + [4382] = {.lex_state = 544, .external_lex_state = 1}, + [4383] = {.lex_state = 538, .external_lex_state = 1}, + [4384] = {.lex_state = 544, .external_lex_state = 1}, + [4385] = {.lex_state = 30, .external_lex_state = 1}, + [4386] = {.lex_state = 544, .external_lex_state = 1}, + [4387] = {.lex_state = 538, .external_lex_state = 1}, + [4388] = {.lex_state = 544, .external_lex_state = 1}, + [4389] = {.lex_state = 544, .external_lex_state = 1}, + [4390] = {.lex_state = 30, .external_lex_state = 1}, + [4391] = {.lex_state = 30, .external_lex_state = 1}, + [4392] = {.lex_state = 541, .external_lex_state = 1}, + [4393] = {.lex_state = 541, .external_lex_state = 1}, + [4394] = {.lex_state = 541, .external_lex_state = 1}, + [4395] = {.lex_state = 30, .external_lex_state = 1}, + [4396] = {.lex_state = 544, .external_lex_state = 1}, + [4397] = {.lex_state = 30, .external_lex_state = 1}, + [4398] = {.lex_state = 544, .external_lex_state = 1}, + [4399] = {.lex_state = 30, .external_lex_state = 1}, + [4400] = {.lex_state = 30, .external_lex_state = 1}, + [4401] = {.lex_state = 544, .external_lex_state = 1}, + [4402] = {.lex_state = 544, .external_lex_state = 1}, + [4403] = {.lex_state = 30, .external_lex_state = 1}, + [4404] = {.lex_state = 544, .external_lex_state = 1}, + [4405] = {.lex_state = 544, .external_lex_state = 1}, + [4406] = {.lex_state = 30, .external_lex_state = 1}, + [4407] = {.lex_state = 541, .external_lex_state = 1}, + [4408] = {.lex_state = 30, .external_lex_state = 1}, + [4409] = {.lex_state = 538, .external_lex_state = 1}, + [4410] = {.lex_state = 541, .external_lex_state = 1}, + [4411] = {.lex_state = 30, .external_lex_state = 1}, + [4412] = {.lex_state = 538, .external_lex_state = 1}, + [4413] = {.lex_state = 538, .external_lex_state = 1}, + [4414] = {.lex_state = 541, .external_lex_state = 1}, + [4415] = {.lex_state = 30, .external_lex_state = 1}, + [4416] = {.lex_state = 544, .external_lex_state = 1}, + [4417] = {.lex_state = 544, .external_lex_state = 1}, + [4418] = {.lex_state = 544, .external_lex_state = 1}, + [4419] = {.lex_state = 544, .external_lex_state = 1}, + [4420] = {.lex_state = 30, .external_lex_state = 1}, + [4421] = {.lex_state = 538, .external_lex_state = 1}, + [4422] = {.lex_state = 29, .external_lex_state = 1}, + [4423] = {.lex_state = 544, .external_lex_state = 1}, + [4424] = {.lex_state = 30, .external_lex_state = 1}, + [4425] = {.lex_state = 542, .external_lex_state = 1}, + [4426] = {.lex_state = 29, .external_lex_state = 1}, + [4427] = {.lex_state = 29, .external_lex_state = 1}, + [4428] = {.lex_state = 538, .external_lex_state = 1}, + [4429] = {.lex_state = 544, .external_lex_state = 1}, + [4430] = {.lex_state = 30, .external_lex_state = 1}, + [4431] = {.lex_state = 538, .external_lex_state = 1}, + [4432] = {.lex_state = 544, .external_lex_state = 1}, + [4433] = {.lex_state = 541, .external_lex_state = 1}, + [4434] = {.lex_state = 541, .external_lex_state = 1}, + [4435] = {.lex_state = 30, .external_lex_state = 1}, + [4436] = {.lex_state = 538, .external_lex_state = 1}, + [4437] = {.lex_state = 30, .external_lex_state = 1}, + [4438] = {.lex_state = 30, .external_lex_state = 1}, + [4439] = {.lex_state = 538, .external_lex_state = 1}, + [4440] = {.lex_state = 538, .external_lex_state = 1}, + [4441] = {.lex_state = 544, .external_lex_state = 1}, + [4442] = {.lex_state = 30, .external_lex_state = 1}, + [4443] = {.lex_state = 538, .external_lex_state = 1}, + [4444] = {.lex_state = 538, .external_lex_state = 1}, + [4445] = {.lex_state = 544, .external_lex_state = 1}, + [4446] = {.lex_state = 29, .external_lex_state = 1}, + [4447] = {.lex_state = 544, .external_lex_state = 1}, + [4448] = {.lex_state = 30, .external_lex_state = 1}, + [4449] = {.lex_state = 538, .external_lex_state = 1}, + [4450] = {.lex_state = 30, .external_lex_state = 1}, + [4451] = {.lex_state = 538, .external_lex_state = 1}, + [4452] = {.lex_state = 538, .external_lex_state = 1}, + [4453] = {.lex_state = 30, .external_lex_state = 1}, + [4454] = {.lex_state = 538, .external_lex_state = 1}, + [4455] = {.lex_state = 538, .external_lex_state = 1}, + [4456] = {.lex_state = 538, .external_lex_state = 1}, + [4457] = {.lex_state = 30, .external_lex_state = 1}, + [4458] = {.lex_state = 30, .external_lex_state = 1}, + [4459] = {.lex_state = 538, .external_lex_state = 1}, + [4460] = {.lex_state = 538, .external_lex_state = 1}, + [4461] = {.lex_state = 30, .external_lex_state = 1}, + [4462] = {.lex_state = 538, .external_lex_state = 1}, + [4463] = {.lex_state = 30, .external_lex_state = 1}, + [4464] = {.lex_state = 538, .external_lex_state = 1}, + [4465] = {.lex_state = 30, .external_lex_state = 1}, + [4466] = {.lex_state = 30, .external_lex_state = 1}, + [4467] = {.lex_state = 30, .external_lex_state = 1}, + [4468] = {.lex_state = 29, .external_lex_state = 1}, + [4469] = {.lex_state = 30, .external_lex_state = 1}, + [4470] = {.lex_state = 30, .external_lex_state = 1}, + [4471] = {.lex_state = 30, .external_lex_state = 1}, + [4472] = {.lex_state = 30, .external_lex_state = 1}, + [4473] = {.lex_state = 30, .external_lex_state = 1}, + [4474] = {.lex_state = 30, .external_lex_state = 1}, + [4475] = {.lex_state = 30, .external_lex_state = 1}, + [4476] = {.lex_state = 30, .external_lex_state = 1}, + [4477] = {.lex_state = 30, .external_lex_state = 1}, + [4478] = {.lex_state = 30, .external_lex_state = 1}, + [4479] = {.lex_state = 30, .external_lex_state = 1}, + [4480] = {.lex_state = 538, .external_lex_state = 1}, + [4481] = {.lex_state = 538, .external_lex_state = 1}, + [4482] = {.lex_state = 29, .external_lex_state = 1}, + [4483] = {.lex_state = 30, .external_lex_state = 1}, + [4484] = {.lex_state = 29, .external_lex_state = 1}, + [4485] = {.lex_state = 29, .external_lex_state = 1}, + [4486] = {.lex_state = 30, .external_lex_state = 1}, + [4487] = {.lex_state = 538, .external_lex_state = 1}, + [4488] = {.lex_state = 538, .external_lex_state = 1}, + [4489] = {.lex_state = 30, .external_lex_state = 1}, + [4490] = {.lex_state = 538, .external_lex_state = 1}, + [4491] = {.lex_state = 538, .external_lex_state = 1}, + [4492] = {.lex_state = 30, .external_lex_state = 1}, + [4493] = {.lex_state = 29, .external_lex_state = 1}, + [4494] = {.lex_state = 29, .external_lex_state = 1}, + [4495] = {.lex_state = 30, .external_lex_state = 1}, + [4496] = {.lex_state = 541, .external_lex_state = 1}, + [4497] = {.lex_state = 541, .external_lex_state = 1}, + [4498] = {.lex_state = 30, .external_lex_state = 1}, + [4499] = {.lex_state = 29, .external_lex_state = 1}, + [4500] = {.lex_state = 538, .external_lex_state = 1}, + [4501] = {.lex_state = 538, .external_lex_state = 1}, + [4502] = {.lex_state = 107, .external_lex_state = 1}, + [4503] = {.lex_state = 30, .external_lex_state = 1}, + [4504] = {.lex_state = 541, .external_lex_state = 1}, + [4505] = {.lex_state = 538, .external_lex_state = 1}, + [4506] = {.lex_state = 29, .external_lex_state = 1}, + [4507] = {.lex_state = 29, .external_lex_state = 1}, + [4508] = {.lex_state = 30, .external_lex_state = 1}, + [4509] = {.lex_state = 29, .external_lex_state = 1}, + [4510] = {.lex_state = 541, .external_lex_state = 1}, + [4511] = {.lex_state = 541, .external_lex_state = 1}, + [4512] = {.lex_state = 30, .external_lex_state = 1}, + [4513] = {.lex_state = 30, .external_lex_state = 1}, + [4514] = {.lex_state = 541, .external_lex_state = 1}, + [4515] = {.lex_state = 30, .external_lex_state = 1}, + [4516] = {.lex_state = 538, .external_lex_state = 1}, + [4517] = {.lex_state = 30, .external_lex_state = 1}, + [4518] = {.lex_state = 29, .external_lex_state = 1}, + [4519] = {.lex_state = 30, .external_lex_state = 1}, + [4520] = {.lex_state = 541, .external_lex_state = 1}, + [4521] = {.lex_state = 541, .external_lex_state = 1}, + [4522] = {.lex_state = 30, .external_lex_state = 1}, + [4523] = {.lex_state = 30, .external_lex_state = 1}, + [4524] = {.lex_state = 30, .external_lex_state = 1}, + [4525] = {.lex_state = 545, .external_lex_state = 1}, + [4526] = {.lex_state = 541, .external_lex_state = 1}, + [4527] = {.lex_state = 30, .external_lex_state = 1}, + [4528] = {.lex_state = 541, .external_lex_state = 1}, + [4529] = {.lex_state = 541, .external_lex_state = 1}, + [4530] = {.lex_state = 30, .external_lex_state = 1}, + [4531] = {.lex_state = 541, .external_lex_state = 1}, + [4532] = {.lex_state = 101, .external_lex_state = 1}, + [4533] = {.lex_state = 30, .external_lex_state = 1}, + [4534] = {.lex_state = 541, .external_lex_state = 1}, + [4535] = {.lex_state = 541, .external_lex_state = 1}, + [4536] = {.lex_state = 541, .external_lex_state = 1}, + [4537] = {.lex_state = 30, .external_lex_state = 1}, + [4538] = {.lex_state = 30, .external_lex_state = 1}, + [4539] = {.lex_state = 541, .external_lex_state = 1}, + [4540] = {.lex_state = 541, .external_lex_state = 1}, + [4541] = {.lex_state = 30, .external_lex_state = 1}, + [4542] = {.lex_state = 541, .external_lex_state = 1}, + [4543] = {.lex_state = 541, .external_lex_state = 1}, + [4544] = {.lex_state = 541, .external_lex_state = 1}, + [4545] = {.lex_state = 30, .external_lex_state = 1}, + [4546] = {.lex_state = 30, .external_lex_state = 1}, + [4547] = {.lex_state = 30, .external_lex_state = 1}, + [4548] = {.lex_state = 30, .external_lex_state = 1}, + [4549] = {.lex_state = 30, .external_lex_state = 1}, + [4550] = {.lex_state = 30, .external_lex_state = 1}, + [4551] = {.lex_state = 30, .external_lex_state = 1}, + [4552] = {.lex_state = 30, .external_lex_state = 1}, + [4553] = {.lex_state = 30, .external_lex_state = 1}, + [4554] = {.lex_state = 30, .external_lex_state = 1}, + [4555] = {.lex_state = 101, .external_lex_state = 1}, + [4556] = {.lex_state = 30, .external_lex_state = 1}, + [4557] = {.lex_state = 30, .external_lex_state = 1}, + [4558] = {.lex_state = 544, .external_lex_state = 1}, + [4559] = {.lex_state = 544, .external_lex_state = 1}, + [4560] = {.lex_state = 544, .external_lex_state = 1}, + [4561] = {.lex_state = 109, .external_lex_state = 1}, + [4562] = {.lex_state = 29, .external_lex_state = 1}, + [4563] = {.lex_state = 29, .external_lex_state = 1}, + [4564] = {.lex_state = 539, .external_lex_state = 1}, + [4565] = {.lex_state = 109, .external_lex_state = 1}, + [4566] = {.lex_state = 541, .external_lex_state = 1}, + [4567] = {.lex_state = 541, .external_lex_state = 1}, + [4568] = {.lex_state = 541, .external_lex_state = 1}, + [4569] = {.lex_state = 29, .external_lex_state = 1}, + [4570] = {.lex_state = 541, .external_lex_state = 1}, + [4571] = {.lex_state = 29, .external_lex_state = 1}, + [4572] = {.lex_state = 29, .external_lex_state = 1}, + [4573] = {.lex_state = 29, .external_lex_state = 1}, + [4574] = {.lex_state = 541, .external_lex_state = 1}, + [4575] = {.lex_state = 541, .external_lex_state = 1}, + [4576] = {.lex_state = 541, .external_lex_state = 1}, + [4577] = {.lex_state = 541, .external_lex_state = 1}, + [4578] = {.lex_state = 538, .external_lex_state = 1}, + [4579] = {.lex_state = 541, .external_lex_state = 1}, + [4580] = {.lex_state = 544, .external_lex_state = 1}, + [4581] = {.lex_state = 541, .external_lex_state = 1}, + [4582] = {.lex_state = 541, .external_lex_state = 1}, + [4583] = {.lex_state = 541, .external_lex_state = 1}, + [4584] = {.lex_state = 541, .external_lex_state = 1}, + [4585] = {.lex_state = 541, .external_lex_state = 1}, + [4586] = {.lex_state = 541, .external_lex_state = 1}, + [4587] = {.lex_state = 541, .external_lex_state = 1}, + [4588] = {.lex_state = 541, .external_lex_state = 1}, + [4589] = {.lex_state = 30, .external_lex_state = 1}, + [4590] = {.lex_state = 29, .external_lex_state = 1}, + [4591] = {.lex_state = 29, .external_lex_state = 1}, + [4592] = {.lex_state = 29, .external_lex_state = 1}, + [4593] = {.lex_state = 542, .external_lex_state = 1}, + [4594] = {.lex_state = 542, .external_lex_state = 1}, + [4595] = {.lex_state = 29, .external_lex_state = 1}, + [4596] = {.lex_state = 542, .external_lex_state = 1}, + [4597] = {.lex_state = 539, .external_lex_state = 1}, + [4598] = {.lex_state = 539, .external_lex_state = 1}, + [4599] = {.lex_state = 29, .external_lex_state = 1}, + [4600] = {.lex_state = 542, .external_lex_state = 1}, + [4601] = {.lex_state = 29, .external_lex_state = 1}, + [4602] = {.lex_state = 539, .external_lex_state = 1}, + [4603] = {.lex_state = 29, .external_lex_state = 1}, + [4604] = {.lex_state = 542, .external_lex_state = 1}, + [4605] = {.lex_state = 29, .external_lex_state = 1}, + [4606] = {.lex_state = 545, .external_lex_state = 1}, + [4607] = {.lex_state = 539, .external_lex_state = 1}, + [4608] = {.lex_state = 29, .external_lex_state = 1}, + [4609] = {.lex_state = 29, .external_lex_state = 1}, + [4610] = {.lex_state = 542, .external_lex_state = 1}, + [4611] = {.lex_state = 542, .external_lex_state = 1}, + [4612] = {.lex_state = 542, .external_lex_state = 1}, + [4613] = {.lex_state = 539, .external_lex_state = 1}, + [4614] = {.lex_state = 29, .external_lex_state = 1}, + [4615] = {.lex_state = 29, .external_lex_state = 1}, + [4616] = {.lex_state = 539, .external_lex_state = 1}, + [4617] = {.lex_state = 539, .external_lex_state = 1}, + [4618] = {.lex_state = 542, .external_lex_state = 1}, + [4619] = {.lex_state = 545, .external_lex_state = 1}, + [4620] = {.lex_state = 29, .external_lex_state = 1}, + [4621] = {.lex_state = 542, .external_lex_state = 1}, + [4622] = {.lex_state = 29, .external_lex_state = 1}, + [4623] = {.lex_state = 29, .external_lex_state = 1}, + [4624] = {.lex_state = 542, .external_lex_state = 1}, + [4625] = {.lex_state = 29, .external_lex_state = 1}, + [4626] = {.lex_state = 542, .external_lex_state = 1}, + [4627] = {.lex_state = 29, .external_lex_state = 1}, + [4628] = {.lex_state = 29, .external_lex_state = 1}, + [4629] = {.lex_state = 542, .external_lex_state = 1}, + [4630] = {.lex_state = 542, .external_lex_state = 1}, + [4631] = {.lex_state = 542, .external_lex_state = 1}, + [4632] = {.lex_state = 542, .external_lex_state = 1}, + [4633] = {.lex_state = 542, .external_lex_state = 1}, + [4634] = {.lex_state = 29, .external_lex_state = 1}, + [4635] = {.lex_state = 542, .external_lex_state = 1}, + [4636] = {.lex_state = 29, .external_lex_state = 1}, + [4637] = {.lex_state = 29, .external_lex_state = 1}, + [4638] = {.lex_state = 542, .external_lex_state = 1}, + [4639] = {.lex_state = 29, .external_lex_state = 1}, + [4640] = {.lex_state = 29, .external_lex_state = 1}, + [4641] = {.lex_state = 29, .external_lex_state = 1}, + [4642] = {.lex_state = 542, .external_lex_state = 1}, + [4643] = {.lex_state = 539, .external_lex_state = 1}, + [4644] = {.lex_state = 545, .external_lex_state = 1}, + [4645] = {.lex_state = 545, .external_lex_state = 1}, + [4646] = {.lex_state = 29, .external_lex_state = 1}, + [4647] = {.lex_state = 29, .external_lex_state = 1}, + [4648] = {.lex_state = 29, .external_lex_state = 1}, + [4649] = {.lex_state = 545, .external_lex_state = 1}, + [4650] = {.lex_state = 29, .external_lex_state = 1}, + [4651] = {.lex_state = 545, .external_lex_state = 1}, + [4652] = {.lex_state = 29, .external_lex_state = 1}, + [4653] = {.lex_state = 29, .external_lex_state = 1}, + [4654] = {.lex_state = 542, .external_lex_state = 1}, + [4655] = {.lex_state = 29, .external_lex_state = 1}, + [4656] = {.lex_state = 539, .external_lex_state = 1}, + [4657] = {.lex_state = 539, .external_lex_state = 1}, + [4658] = {.lex_state = 545, .external_lex_state = 1}, + [4659] = {.lex_state = 29, .external_lex_state = 1}, + [4660] = {.lex_state = 29, .external_lex_state = 1}, + [4661] = {.lex_state = 29, .external_lex_state = 1}, + [4662] = {.lex_state = 29, .external_lex_state = 1}, + [4663] = {.lex_state = 545, .external_lex_state = 1}, + [4664] = {.lex_state = 29, .external_lex_state = 1}, + [4665] = {.lex_state = 545, .external_lex_state = 1}, + [4666] = {.lex_state = 29, .external_lex_state = 1}, + [4667] = {.lex_state = 29, .external_lex_state = 1}, + [4668] = {.lex_state = 29, .external_lex_state = 1}, + [4669] = {.lex_state = 29, .external_lex_state = 1}, + [4670] = {.lex_state = 29, .external_lex_state = 1}, + [4671] = {.lex_state = 29, .external_lex_state = 1}, + [4672] = {.lex_state = 29, .external_lex_state = 1}, + [4673] = {.lex_state = 539, .external_lex_state = 1}, + [4674] = {.lex_state = 29, .external_lex_state = 1}, + [4675] = {.lex_state = 29, .external_lex_state = 1}, + [4676] = {.lex_state = 542, .external_lex_state = 1}, + [4677] = {.lex_state = 29, .external_lex_state = 1}, + [4678] = {.lex_state = 539, .external_lex_state = 1}, + [4679] = {.lex_state = 29, .external_lex_state = 1}, + [4680] = {.lex_state = 542, .external_lex_state = 1}, + [4681] = {.lex_state = 29, .external_lex_state = 1}, + [4682] = {.lex_state = 29, .external_lex_state = 1}, + [4683] = {.lex_state = 122, .external_lex_state = 1}, + [4684] = {.lex_state = 122, .external_lex_state = 1}, + [4685] = {.lex_state = 122, .external_lex_state = 1}, + [4686] = {.lex_state = 122, .external_lex_state = 1}, + [4687] = {.lex_state = 122, .external_lex_state = 1}, + [4688] = {.lex_state = 122, .external_lex_state = 1}, + [4689] = {.lex_state = 122, .external_lex_state = 1}, + [4690] = {.lex_state = 542, .external_lex_state = 1}, + [4691] = {.lex_state = 539, .external_lex_state = 1}, + [4692] = {.lex_state = 29, .external_lex_state = 1}, + [4693] = {.lex_state = 29, .external_lex_state = 1}, + [4694] = {.lex_state = 29, .external_lex_state = 1}, + [4695] = {.lex_state = 29, .external_lex_state = 1}, + [4696] = {.lex_state = 29, .external_lex_state = 1}, + [4697] = {.lex_state = 29, .external_lex_state = 1}, + [4698] = {.lex_state = 539, .external_lex_state = 1}, + [4699] = {.lex_state = 29, .external_lex_state = 1}, + [4700] = {.lex_state = 29, .external_lex_state = 1}, + [4701] = {.lex_state = 29, .external_lex_state = 1}, + [4702] = {.lex_state = 539, .external_lex_state = 1}, + [4703] = {.lex_state = 29, .external_lex_state = 1}, + [4704] = {.lex_state = 539, .external_lex_state = 1}, + [4705] = {.lex_state = 542, .external_lex_state = 1}, + [4706] = {.lex_state = 545, .external_lex_state = 1}, + [4707] = {.lex_state = 29, .external_lex_state = 1}, + [4708] = {.lex_state = 29, .external_lex_state = 1}, + [4709] = {.lex_state = 29, .external_lex_state = 1}, + [4710] = {.lex_state = 545, .external_lex_state = 1}, + [4711] = {.lex_state = 542, .external_lex_state = 1}, + [4712] = {.lex_state = 29, .external_lex_state = 1}, + [4713] = {.lex_state = 539, .external_lex_state = 1}, + [4714] = {.lex_state = 29, .external_lex_state = 1}, + [4715] = {.lex_state = 29, .external_lex_state = 1}, + [4716] = {.lex_state = 545, .external_lex_state = 1}, + [4717] = {.lex_state = 29, .external_lex_state = 1}, + [4718] = {.lex_state = 29, .external_lex_state = 1}, + [4719] = {.lex_state = 545, .external_lex_state = 1}, + [4720] = {.lex_state = 29, .external_lex_state = 1}, + [4721] = {.lex_state = 29, .external_lex_state = 1}, + [4722] = {.lex_state = 29, .external_lex_state = 1}, + [4723] = {.lex_state = 29, .external_lex_state = 1}, + [4724] = {.lex_state = 29, .external_lex_state = 1}, + [4725] = {.lex_state = 29, .external_lex_state = 1}, + [4726] = {.lex_state = 29, .external_lex_state = 1}, + [4727] = {.lex_state = 29, .external_lex_state = 1}, + [4728] = {.lex_state = 29, .external_lex_state = 1}, + [4729] = {.lex_state = 542, .external_lex_state = 1}, + [4730] = {.lex_state = 29, .external_lex_state = 1}, + [4731] = {.lex_state = 545, .external_lex_state = 1}, + [4732] = {.lex_state = 542, .external_lex_state = 1}, + [4733] = {.lex_state = 29, .external_lex_state = 1}, + [4734] = {.lex_state = 29, .external_lex_state = 1}, + [4735] = {.lex_state = 29, .external_lex_state = 1}, + [4736] = {.lex_state = 542, .external_lex_state = 1}, + [4737] = {.lex_state = 542, .external_lex_state = 1}, + [4738] = {.lex_state = 29, .external_lex_state = 1}, + [4739] = {.lex_state = 29, .external_lex_state = 1}, + [4740] = {.lex_state = 29, .external_lex_state = 1}, + [4741] = {.lex_state = 29, .external_lex_state = 1}, + [4742] = {.lex_state = 29, .external_lex_state = 1}, + [4743] = {.lex_state = 29, .external_lex_state = 1}, + [4744] = {.lex_state = 542, .external_lex_state = 1}, + [4745] = {.lex_state = 545, .external_lex_state = 1}, + [4746] = {.lex_state = 29, .external_lex_state = 1}, + [4747] = {.lex_state = 29, .external_lex_state = 1}, + [4748] = {.lex_state = 29, .external_lex_state = 1}, + [4749] = {.lex_state = 29, .external_lex_state = 1}, + [4750] = {.lex_state = 29, .external_lex_state = 1}, + [4751] = {.lex_state = 29, .external_lex_state = 1}, + [4752] = {.lex_state = 123, .external_lex_state = 1}, + [4753] = {.lex_state = 29, .external_lex_state = 1}, + [4754] = {.lex_state = 29, .external_lex_state = 1}, + [4755] = {.lex_state = 29, .external_lex_state = 1}, + [4756] = {.lex_state = 29, .external_lex_state = 1}, + [4757] = {.lex_state = 29, .external_lex_state = 1}, + [4758] = {.lex_state = 29, .external_lex_state = 1}, + [4759] = {.lex_state = 29, .external_lex_state = 1}, + [4760] = {.lex_state = 29, .external_lex_state = 1}, + [4761] = {.lex_state = 29, .external_lex_state = 1}, + [4762] = {.lex_state = 29, .external_lex_state = 1}, + [4763] = {.lex_state = 29, .external_lex_state = 1}, + [4764] = {.lex_state = 29, .external_lex_state = 1}, + [4765] = {.lex_state = 29, .external_lex_state = 1}, + [4766] = {.lex_state = 29, .external_lex_state = 1}, + [4767] = {.lex_state = 29, .external_lex_state = 1}, + [4768] = {.lex_state = 29, .external_lex_state = 1}, + [4769] = {.lex_state = 29, .external_lex_state = 1}, + [4770] = {.lex_state = 29, .external_lex_state = 1}, + [4771] = {.lex_state = 123, .external_lex_state = 1}, + [4772] = {.lex_state = 29, .external_lex_state = 1}, + [4773] = {.lex_state = 29, .external_lex_state = 1}, + [4774] = {.lex_state = 29, .external_lex_state = 1}, + [4775] = {.lex_state = 29, .external_lex_state = 1}, + [4776] = {.lex_state = 29, .external_lex_state = 1}, + [4777] = {.lex_state = 29, .external_lex_state = 1}, + [4778] = {.lex_state = 29, .external_lex_state = 1}, + [4779] = {.lex_state = 545, .external_lex_state = 1}, + [4780] = {.lex_state = 545, .external_lex_state = 1}, + [4781] = {.lex_state = 542, .external_lex_state = 1}, + [4782] = {.lex_state = 542, .external_lex_state = 1}, + [4783] = {.lex_state = 29, .external_lex_state = 1}, + [4784] = {.lex_state = 29, .external_lex_state = 1}, + [4785] = {.lex_state = 29, .external_lex_state = 1}, + [4786] = {.lex_state = 545, .external_lex_state = 1}, + [4787] = {.lex_state = 29, .external_lex_state = 1}, + [4788] = {.lex_state = 542, .external_lex_state = 1}, + [4789] = {.lex_state = 539, .external_lex_state = 1}, + [4790] = {.lex_state = 29, .external_lex_state = 1}, + [4791] = {.lex_state = 545, .external_lex_state = 1}, + [4792] = {.lex_state = 29, .external_lex_state = 1}, + [4793] = {.lex_state = 29, .external_lex_state = 1}, + [4794] = {.lex_state = 29, .external_lex_state = 1}, + [4795] = {.lex_state = 542, .external_lex_state = 1}, + [4796] = {.lex_state = 29, .external_lex_state = 1}, + [4797] = {.lex_state = 545, .external_lex_state = 1}, + [4798] = {.lex_state = 29, .external_lex_state = 1}, + [4799] = {.lex_state = 545, .external_lex_state = 1}, + [4800] = {.lex_state = 29, .external_lex_state = 1}, + [4801] = {.lex_state = 29, .external_lex_state = 1}, + [4802] = {.lex_state = 29, .external_lex_state = 1}, + [4803] = {.lex_state = 29, .external_lex_state = 1}, + [4804] = {.lex_state = 29, .external_lex_state = 1}, + [4805] = {.lex_state = 29, .external_lex_state = 1}, + [4806] = {.lex_state = 539, .external_lex_state = 1}, + [4807] = {.lex_state = 29, .external_lex_state = 1}, + [4808] = {.lex_state = 29, .external_lex_state = 1}, + [4809] = {.lex_state = 29, .external_lex_state = 1}, + [4810] = {.lex_state = 29, .external_lex_state = 1}, + [4811] = {.lex_state = 29, .external_lex_state = 1}, + [4812] = {.lex_state = 29, .external_lex_state = 1}, + [4813] = {.lex_state = 29, .external_lex_state = 1}, + [4814] = {.lex_state = 29, .external_lex_state = 1}, + [4815] = {.lex_state = 29, .external_lex_state = 1}, + [4816] = {.lex_state = 29, .external_lex_state = 1}, + [4817] = {.lex_state = 29, .external_lex_state = 1}, + [4818] = {.lex_state = 545, .external_lex_state = 1}, + [4819] = {.lex_state = 545, .external_lex_state = 1}, + [4820] = {.lex_state = 29, .external_lex_state = 1}, + [4821] = {.lex_state = 29, .external_lex_state = 1}, + [4822] = {.lex_state = 29, .external_lex_state = 1}, + [4823] = {.lex_state = 29, .external_lex_state = 1}, + [4824] = {.lex_state = 29, .external_lex_state = 1}, + [4825] = {.lex_state = 29, .external_lex_state = 1}, + [4826] = {.lex_state = 29, .external_lex_state = 1}, + [4827] = {.lex_state = 545, .external_lex_state = 1}, + [4828] = {.lex_state = 29, .external_lex_state = 1}, + [4829] = {.lex_state = 29, .external_lex_state = 1}, + [4830] = {.lex_state = 29, .external_lex_state = 1}, + [4831] = {.lex_state = 29, .external_lex_state = 1}, + [4832] = {.lex_state = 29, .external_lex_state = 1}, + [4833] = {.lex_state = 545, .external_lex_state = 1}, + [4834] = {.lex_state = 29, .external_lex_state = 1}, + [4835] = {.lex_state = 29, .external_lex_state = 1}, + [4836] = {.lex_state = 545, .external_lex_state = 1}, + [4837] = {.lex_state = 29, .external_lex_state = 1}, + [4838] = {.lex_state = 29, .external_lex_state = 1}, + [4839] = {.lex_state = 29, .external_lex_state = 1}, + [4840] = {.lex_state = 29, .external_lex_state = 1}, + [4841] = {.lex_state = 545, .external_lex_state = 1}, + [4842] = {.lex_state = 29, .external_lex_state = 1}, + [4843] = {.lex_state = 539, .external_lex_state = 1}, + [4844] = {.lex_state = 29, .external_lex_state = 1}, + [4845] = {.lex_state = 29, .external_lex_state = 1}, + [4846] = {.lex_state = 29, .external_lex_state = 1}, + [4847] = {.lex_state = 539, .external_lex_state = 1}, + [4848] = {.lex_state = 545, .external_lex_state = 1}, + [4849] = {.lex_state = 29, .external_lex_state = 1}, + [4850] = {.lex_state = 29, .external_lex_state = 1}, + [4851] = {.lex_state = 29, .external_lex_state = 1}, + [4852] = {.lex_state = 29, .external_lex_state = 1}, + [4853] = {.lex_state = 542, .external_lex_state = 1}, + [4854] = {.lex_state = 29, .external_lex_state = 1}, + [4855] = {.lex_state = 29, .external_lex_state = 1}, + [4856] = {.lex_state = 29, .external_lex_state = 1}, + [4857] = {.lex_state = 542, .external_lex_state = 1}, + [4858] = {.lex_state = 29, .external_lex_state = 1}, + [4859] = {.lex_state = 545, .external_lex_state = 1}, + [4860] = {.lex_state = 29, .external_lex_state = 1}, + [4861] = {.lex_state = 29, .external_lex_state = 1}, + [4862] = {.lex_state = 123, .external_lex_state = 1}, + [4863] = {.lex_state = 539, .external_lex_state = 1}, + [4864] = {.lex_state = 545, .external_lex_state = 1}, + [4865] = {.lex_state = 29, .external_lex_state = 1}, + [4866] = {.lex_state = 29, .external_lex_state = 1}, + [4867] = {.lex_state = 29, .external_lex_state = 1}, + [4868] = {.lex_state = 539, .external_lex_state = 1}, + [4869] = {.lex_state = 29, .external_lex_state = 1}, + [4870] = {.lex_state = 29, .external_lex_state = 1}, + [4871] = {.lex_state = 29, .external_lex_state = 1}, + [4872] = {.lex_state = 29, .external_lex_state = 1}, + [4873] = {.lex_state = 29, .external_lex_state = 1}, + [4874] = {.lex_state = 539, .external_lex_state = 1}, + [4875] = {.lex_state = 29, .external_lex_state = 1}, + [4876] = {.lex_state = 29, .external_lex_state = 1}, + [4877] = {.lex_state = 29, .external_lex_state = 1}, + [4878] = {.lex_state = 29, .external_lex_state = 1}, + [4879] = {.lex_state = 539, .external_lex_state = 1}, + [4880] = {.lex_state = 29, .external_lex_state = 1}, + [4881] = {.lex_state = 29, .external_lex_state = 1}, + [4882] = {.lex_state = 29, .external_lex_state = 1}, + [4883] = {.lex_state = 29, .external_lex_state = 1}, + [4884] = {.lex_state = 29, .external_lex_state = 1}, + [4885] = {.lex_state = 539, .external_lex_state = 1}, + [4886] = {.lex_state = 29, .external_lex_state = 1}, + [4887] = {.lex_state = 539, .external_lex_state = 1}, + [4888] = {.lex_state = 545, .external_lex_state = 1}, + [4889] = {.lex_state = 29, .external_lex_state = 1}, + [4890] = {.lex_state = 542, .external_lex_state = 1}, + [4891] = {.lex_state = 539, .external_lex_state = 1}, + [4892] = {.lex_state = 545, .external_lex_state = 1}, + [4893] = {.lex_state = 29, .external_lex_state = 1}, + [4894] = {.lex_state = 539, .external_lex_state = 1}, + [4895] = {.lex_state = 539, .external_lex_state = 1}, + [4896] = {.lex_state = 29, .external_lex_state = 1}, + [4897] = {.lex_state = 29, .external_lex_state = 1}, + [4898] = {.lex_state = 29, .external_lex_state = 1}, + [4899] = {.lex_state = 539, .external_lex_state = 1}, + [4900] = {.lex_state = 539, .external_lex_state = 1}, + [4901] = {.lex_state = 29, .external_lex_state = 1}, + [4902] = {.lex_state = 545, .external_lex_state = 1}, + [4903] = {.lex_state = 29, .external_lex_state = 1}, + [4904] = {.lex_state = 29, .external_lex_state = 1}, + [4905] = {.lex_state = 539, .external_lex_state = 1}, + [4906] = {.lex_state = 29, .external_lex_state = 1}, + [4907] = {.lex_state = 539, .external_lex_state = 1}, + [4908] = {.lex_state = 545, .external_lex_state = 1}, + [4909] = {.lex_state = 29, .external_lex_state = 1}, + [4910] = {.lex_state = 29, .external_lex_state = 1}, + [4911] = {.lex_state = 29, .external_lex_state = 1}, + [4912] = {.lex_state = 29, .external_lex_state = 1}, + [4913] = {.lex_state = 29, .external_lex_state = 1}, + [4914] = {.lex_state = 29, .external_lex_state = 1}, + [4915] = {.lex_state = 545, .external_lex_state = 1}, + [4916] = {.lex_state = 29, .external_lex_state = 1}, + [4917] = {.lex_state = 29, .external_lex_state = 1}, + [4918] = {.lex_state = 29, .external_lex_state = 1}, + [4919] = {.lex_state = 29, .external_lex_state = 1}, + [4920] = {.lex_state = 29, .external_lex_state = 1}, + [4921] = {.lex_state = 539, .external_lex_state = 1}, + [4922] = {.lex_state = 29, .external_lex_state = 1}, + [4923] = {.lex_state = 545, .external_lex_state = 1}, + [4924] = {.lex_state = 29, .external_lex_state = 1}, + [4925] = {.lex_state = 29, .external_lex_state = 1}, + [4926] = {.lex_state = 29, .external_lex_state = 1}, + [4927] = {.lex_state = 29, .external_lex_state = 1}, + [4928] = {.lex_state = 29, .external_lex_state = 1}, + [4929] = {.lex_state = 29, .external_lex_state = 1}, + [4930] = {.lex_state = 29, .external_lex_state = 1}, + [4931] = {.lex_state = 29, .external_lex_state = 1}, + [4932] = {.lex_state = 29, .external_lex_state = 1}, + [4933] = {.lex_state = 545, .external_lex_state = 1}, + [4934] = {.lex_state = 29, .external_lex_state = 1}, + [4935] = {.lex_state = 29, .external_lex_state = 1}, + [4936] = {.lex_state = 29, .external_lex_state = 1}, + [4937] = {.lex_state = 29, .external_lex_state = 1}, + [4938] = {.lex_state = 545, .external_lex_state = 1}, + [4939] = {.lex_state = 545, .external_lex_state = 1}, + [4940] = {.lex_state = 29, .external_lex_state = 1}, + [4941] = {.lex_state = 545, .external_lex_state = 1}, + [4942] = {.lex_state = 539, .external_lex_state = 1}, + [4943] = {.lex_state = 29, .external_lex_state = 1}, + [4944] = {.lex_state = 545, .external_lex_state = 1}, + [4945] = {.lex_state = 542, .external_lex_state = 1}, + [4946] = {.lex_state = 29, .external_lex_state = 1}, + [4947] = {.lex_state = 29, .external_lex_state = 1}, + [4948] = {.lex_state = 545, .external_lex_state = 1}, + [4949] = {.lex_state = 29, .external_lex_state = 1}, + [4950] = {.lex_state = 29, .external_lex_state = 1}, + [4951] = {.lex_state = 29, .external_lex_state = 1}, + [4952] = {.lex_state = 545, .external_lex_state = 1}, + [4953] = {.lex_state = 29, .external_lex_state = 1}, + [4954] = {.lex_state = 542, .external_lex_state = 1}, + [4955] = {.lex_state = 29, .external_lex_state = 1}, + [4956] = {.lex_state = 545, .external_lex_state = 1}, + [4957] = {.lex_state = 29, .external_lex_state = 1}, + [4958] = {.lex_state = 539, .external_lex_state = 1}, + [4959] = {.lex_state = 29, .external_lex_state = 1}, + [4960] = {.lex_state = 542, .external_lex_state = 1}, + [4961] = {.lex_state = 539, .external_lex_state = 1}, + [4962] = {.lex_state = 545, .external_lex_state = 1}, + [4963] = {.lex_state = 29, .external_lex_state = 1}, + [4964] = {.lex_state = 29, .external_lex_state = 1}, + [4965] = {.lex_state = 123, .external_lex_state = 1}, + [4966] = {.lex_state = 29, .external_lex_state = 1}, + [4967] = {.lex_state = 29, .external_lex_state = 1}, + [4968] = {.lex_state = 542, .external_lex_state = 1}, + [4969] = {.lex_state = 539, .external_lex_state = 1}, + [4970] = {.lex_state = 29, .external_lex_state = 1}, + [4971] = {.lex_state = 29, .external_lex_state = 1}, + [4972] = {.lex_state = 29, .external_lex_state = 1}, + [4973] = {.lex_state = 29, .external_lex_state = 1}, + [4974] = {.lex_state = 29, .external_lex_state = 1}, + [4975] = {.lex_state = 29, .external_lex_state = 1}, + [4976] = {.lex_state = 29, .external_lex_state = 1}, + [4977] = {.lex_state = 29, .external_lex_state = 1}, + [4978] = {.lex_state = 29, .external_lex_state = 1}, + [4979] = {.lex_state = 29, .external_lex_state = 1}, + [4980] = {.lex_state = 29, .external_lex_state = 1}, + [4981] = {.lex_state = 29, .external_lex_state = 1}, + [4982] = {.lex_state = 29, .external_lex_state = 1}, + [4983] = {.lex_state = 542, .external_lex_state = 1}, + [4984] = {.lex_state = 542, .external_lex_state = 1}, + [4985] = {.lex_state = 29, .external_lex_state = 1}, + [4986] = {.lex_state = 29, .external_lex_state = 1}, + [4987] = {.lex_state = 29, .external_lex_state = 1}, + [4988] = {.lex_state = 29, .external_lex_state = 1}, + [4989] = {.lex_state = 29, .external_lex_state = 1}, + [4990] = {.lex_state = 29, .external_lex_state = 1}, + [4991] = {.lex_state = 29, .external_lex_state = 1}, + [4992] = {.lex_state = 29, .external_lex_state = 1}, + [4993] = {.lex_state = 29, .external_lex_state = 1}, + [4994] = {.lex_state = 29, .external_lex_state = 1}, + [4995] = {.lex_state = 29, .external_lex_state = 1}, + [4996] = {.lex_state = 29, .external_lex_state = 1}, + [4997] = {.lex_state = 29, .external_lex_state = 1}, + [4998] = {.lex_state = 29, .external_lex_state = 1}, + [4999] = {.lex_state = 542, .external_lex_state = 1}, + [5000] = {.lex_state = 29, .external_lex_state = 1}, + [5001] = {.lex_state = 539, .external_lex_state = 1}, + [5002] = {.lex_state = 29, .external_lex_state = 1}, + [5003] = {.lex_state = 29, .external_lex_state = 1}, + [5004] = {.lex_state = 29, .external_lex_state = 1}, + [5005] = {.lex_state = 29, .external_lex_state = 1}, + [5006] = {.lex_state = 539, .external_lex_state = 1}, + [5007] = {.lex_state = 29, .external_lex_state = 1}, + [5008] = {.lex_state = 29, .external_lex_state = 1}, + [5009] = {.lex_state = 29, .external_lex_state = 1}, + [5010] = {.lex_state = 29, .external_lex_state = 1}, + [5011] = {.lex_state = 542, .external_lex_state = 1}, + [5012] = {.lex_state = 539, .external_lex_state = 1}, + [5013] = {.lex_state = 29, .external_lex_state = 1}, + [5014] = {.lex_state = 29, .external_lex_state = 1}, + [5015] = {.lex_state = 539, .external_lex_state = 1}, + [5016] = {.lex_state = 539, .external_lex_state = 1}, + [5017] = {.lex_state = 29, .external_lex_state = 1}, + [5018] = {.lex_state = 29, .external_lex_state = 1}, + [5019] = {.lex_state = 539, .external_lex_state = 1}, + [5020] = {.lex_state = 29, .external_lex_state = 1}, + [5021] = {.lex_state = 29, .external_lex_state = 1}, + [5022] = {.lex_state = 29, .external_lex_state = 1}, + [5023] = {.lex_state = 29, .external_lex_state = 1}, + [5024] = {.lex_state = 29, .external_lex_state = 1}, + [5025] = {.lex_state = 29, .external_lex_state = 1}, + [5026] = {.lex_state = 29, .external_lex_state = 1}, + [5027] = {.lex_state = 29, .external_lex_state = 1}, + [5028] = {.lex_state = 29, .external_lex_state = 1}, + [5029] = {.lex_state = 29, .external_lex_state = 1}, + [5030] = {.lex_state = 123, .external_lex_state = 1}, + [5031] = {.lex_state = 545, .external_lex_state = 1}, + [5032] = {.lex_state = 29, .external_lex_state = 1}, + [5033] = {.lex_state = 29, .external_lex_state = 1}, + [5034] = {.lex_state = 29, .external_lex_state = 1}, + [5035] = {.lex_state = 29, .external_lex_state = 1}, + [5036] = {.lex_state = 29, .external_lex_state = 1}, + [5037] = {.lex_state = 539, .external_lex_state = 1}, + [5038] = {.lex_state = 539, .external_lex_state = 1}, + [5039] = {.lex_state = 29, .external_lex_state = 1}, + [5040] = {.lex_state = 539, .external_lex_state = 1}, + [5041] = {.lex_state = 29, .external_lex_state = 1}, + [5042] = {.lex_state = 29, .external_lex_state = 1}, + [5043] = {.lex_state = 539, .external_lex_state = 1}, + [5044] = {.lex_state = 542, .external_lex_state = 1}, + [5045] = {.lex_state = 29, .external_lex_state = 1}, + [5046] = {.lex_state = 29, .external_lex_state = 1}, + [5047] = {.lex_state = 539, .external_lex_state = 1}, + [5048] = {.lex_state = 29, .external_lex_state = 1}, + [5049] = {.lex_state = 542, .external_lex_state = 1}, + [5050] = {.lex_state = 542, .external_lex_state = 1}, + [5051] = {.lex_state = 29, .external_lex_state = 1}, + [5052] = {.lex_state = 29, .external_lex_state = 1}, + [5053] = {.lex_state = 29, .external_lex_state = 1}, + [5054] = {.lex_state = 29, .external_lex_state = 1}, + [5055] = {.lex_state = 29, .external_lex_state = 1}, + [5056] = {.lex_state = 543, .external_lex_state = 1}, + [5057] = {.lex_state = 542, .external_lex_state = 1}, + [5058] = {.lex_state = 539, .external_lex_state = 1}, + [5059] = {.lex_state = 29, .external_lex_state = 1}, + [5060] = {.lex_state = 29, .external_lex_state = 1}, + [5061] = {.lex_state = 29, .external_lex_state = 1}, + [5062] = {.lex_state = 29, .external_lex_state = 1}, + [5063] = {.lex_state = 539, .external_lex_state = 1}, + [5064] = {.lex_state = 539, .external_lex_state = 1}, + [5065] = {.lex_state = 542, .external_lex_state = 1}, + [5066] = {.lex_state = 29, .external_lex_state = 1}, + [5067] = {.lex_state = 29, .external_lex_state = 1}, + [5068] = {.lex_state = 29, .external_lex_state = 1}, + [5069] = {.lex_state = 29, .external_lex_state = 1}, + [5070] = {.lex_state = 29, .external_lex_state = 1}, + [5071] = {.lex_state = 122, .external_lex_state = 1}, + [5072] = {.lex_state = 122, .external_lex_state = 1}, + [5073] = {.lex_state = 29, .external_lex_state = 1}, + [5074] = {.lex_state = 29, .external_lex_state = 1}, + [5075] = {.lex_state = 29, .external_lex_state = 1}, + [5076] = {.lex_state = 29, .external_lex_state = 1}, + [5077] = {.lex_state = 29, .external_lex_state = 1}, + [5078] = {.lex_state = 29, .external_lex_state = 1}, + [5079] = {.lex_state = 29, .external_lex_state = 1}, + [5080] = {.lex_state = 542, .external_lex_state = 1}, + [5081] = {.lex_state = 29, .external_lex_state = 1}, + [5082] = {.lex_state = 539, .external_lex_state = 1}, + [5083] = {.lex_state = 542, .external_lex_state = 1}, + [5084] = {.lex_state = 29, .external_lex_state = 1}, + [5085] = {.lex_state = 29, .external_lex_state = 1}, + [5086] = {.lex_state = 29, .external_lex_state = 1}, + [5087] = {.lex_state = 29, .external_lex_state = 1}, + [5088] = {.lex_state = 542, .external_lex_state = 1}, + [5089] = {.lex_state = 29, .external_lex_state = 1}, + [5090] = {.lex_state = 29, .external_lex_state = 1}, + [5091] = {.lex_state = 29, .external_lex_state = 1}, + [5092] = {.lex_state = 29, .external_lex_state = 1}, + [5093] = {.lex_state = 542, .external_lex_state = 1}, + [5094] = {.lex_state = 29, .external_lex_state = 1}, + [5095] = {.lex_state = 539, .external_lex_state = 1}, + [5096] = {.lex_state = 29, .external_lex_state = 1}, + [5097] = {.lex_state = 29, .external_lex_state = 1}, + [5098] = {.lex_state = 29, .external_lex_state = 1}, + [5099] = {.lex_state = 29, .external_lex_state = 1}, + [5100] = {.lex_state = 29, .external_lex_state = 1}, + [5101] = {.lex_state = 29, .external_lex_state = 1}, + [5102] = {.lex_state = 539, .external_lex_state = 1}, + [5103] = {.lex_state = 545, .external_lex_state = 1}, + [5104] = {.lex_state = 29, .external_lex_state = 1}, + [5105] = {.lex_state = 545, .external_lex_state = 1}, + [5106] = {.lex_state = 29, .external_lex_state = 1}, + [5107] = {.lex_state = 29, .external_lex_state = 1}, + [5108] = {.lex_state = 29, .external_lex_state = 1}, + [5109] = {.lex_state = 29, .external_lex_state = 1}, + [5110] = {.lex_state = 29, .external_lex_state = 1}, + [5111] = {.lex_state = 29, .external_lex_state = 1}, + [5112] = {.lex_state = 29, .external_lex_state = 1}, + [5113] = {.lex_state = 545, .external_lex_state = 1}, + [5114] = {.lex_state = 545, .external_lex_state = 1}, + [5115] = {.lex_state = 29, .external_lex_state = 1}, + [5116] = {.lex_state = 542, .external_lex_state = 1}, + [5117] = {.lex_state = 29, .external_lex_state = 1}, + [5118] = {.lex_state = 29, .external_lex_state = 1}, + [5119] = {.lex_state = 29, .external_lex_state = 1}, + [5120] = {.lex_state = 29, .external_lex_state = 1}, + [5121] = {.lex_state = 29, .external_lex_state = 1}, + [5122] = {.lex_state = 29, .external_lex_state = 1}, + [5123] = {.lex_state = 545, .external_lex_state = 1}, + [5124] = {.lex_state = 29, .external_lex_state = 1}, + [5125] = {.lex_state = 29, .external_lex_state = 1}, + [5126] = {.lex_state = 29, .external_lex_state = 1}, + [5127] = {.lex_state = 545, .external_lex_state = 1}, + [5128] = {.lex_state = 29, .external_lex_state = 1}, + [5129] = {.lex_state = 29, .external_lex_state = 1}, + [5130] = {.lex_state = 29, .external_lex_state = 1}, + [5131] = {.lex_state = 29, .external_lex_state = 1}, + [5132] = {.lex_state = 29, .external_lex_state = 1}, + [5133] = {.lex_state = 539, .external_lex_state = 1}, + [5134] = {.lex_state = 29, .external_lex_state = 1}, + [5135] = {.lex_state = 29, .external_lex_state = 1}, + [5136] = {.lex_state = 29, .external_lex_state = 1}, + [5137] = {.lex_state = 29, .external_lex_state = 1}, + [5138] = {.lex_state = 29, .external_lex_state = 1}, + [5139] = {.lex_state = 29, .external_lex_state = 1}, + [5140] = {.lex_state = 539, .external_lex_state = 1}, + [5141] = {.lex_state = 29, .external_lex_state = 1}, + [5142] = {.lex_state = 29, .external_lex_state = 1}, + [5143] = {.lex_state = 545, .external_lex_state = 1}, + [5144] = {.lex_state = 545, .external_lex_state = 1}, + [5145] = {.lex_state = 29, .external_lex_state = 1}, + [5146] = {.lex_state = 29, .external_lex_state = 1}, + [5147] = {.lex_state = 542, .external_lex_state = 1}, + [5148] = {.lex_state = 545, .external_lex_state = 1}, + [5149] = {.lex_state = 29, .external_lex_state = 1}, + [5150] = {.lex_state = 29, .external_lex_state = 1}, + [5151] = {.lex_state = 29, .external_lex_state = 1}, + [5152] = {.lex_state = 29, .external_lex_state = 1}, + [5153] = {.lex_state = 29, .external_lex_state = 1}, + [5154] = {.lex_state = 29, .external_lex_state = 1}, + [5155] = {.lex_state = 29, .external_lex_state = 1}, + [5156] = {.lex_state = 29, .external_lex_state = 1}, + [5157] = {.lex_state = 29, .external_lex_state = 1}, + [5158] = {.lex_state = 545, .external_lex_state = 1}, + [5159] = {.lex_state = 29, .external_lex_state = 1}, + [5160] = {.lex_state = 29, .external_lex_state = 1}, + [5161] = {.lex_state = 29, .external_lex_state = 1}, + [5162] = {.lex_state = 29, .external_lex_state = 1}, + [5163] = {.lex_state = 29, .external_lex_state = 1}, + [5164] = {.lex_state = 29, .external_lex_state = 1}, + [5165] = {.lex_state = 29, .external_lex_state = 1}, + [5166] = {.lex_state = 29, .external_lex_state = 1}, + [5167] = {.lex_state = 29, .external_lex_state = 1}, + [5168] = {.lex_state = 545, .external_lex_state = 1}, + [5169] = {.lex_state = 29, .external_lex_state = 1}, + [5170] = {.lex_state = 29, .external_lex_state = 1}, + [5171] = {.lex_state = 29, .external_lex_state = 1}, + [5172] = {.lex_state = 29, .external_lex_state = 1}, + [5173] = {.lex_state = 29, .external_lex_state = 1}, + [5174] = {.lex_state = 29, .external_lex_state = 1}, + [5175] = {.lex_state = 29, .external_lex_state = 1}, + [5176] = {.lex_state = 29, .external_lex_state = 1}, + [5177] = {.lex_state = 545, .external_lex_state = 1}, + [5178] = {.lex_state = 29, .external_lex_state = 1}, + [5179] = {.lex_state = 29, .external_lex_state = 1}, + [5180] = {.lex_state = 29, .external_lex_state = 1}, + [5181] = {.lex_state = 29, .external_lex_state = 1}, + [5182] = {.lex_state = 29, .external_lex_state = 1}, + [5183] = {.lex_state = 29, .external_lex_state = 1}, + [5184] = {.lex_state = 29, .external_lex_state = 1}, + [5185] = {.lex_state = 542, .external_lex_state = 1}, + [5186] = {.lex_state = 29, .external_lex_state = 1}, + [5187] = {.lex_state = 29, .external_lex_state = 1}, + [5188] = {.lex_state = 29, .external_lex_state = 1}, + [5189] = {.lex_state = 29, .external_lex_state = 1}, + [5190] = {.lex_state = 29, .external_lex_state = 1}, + [5191] = {.lex_state = 29, .external_lex_state = 1}, + [5192] = {.lex_state = 29, .external_lex_state = 1}, + [5193] = {.lex_state = 29, .external_lex_state = 1}, + [5194] = {.lex_state = 29, .external_lex_state = 1}, + [5195] = {.lex_state = 29, .external_lex_state = 1}, + [5196] = {.lex_state = 29, .external_lex_state = 1}, + [5197] = {.lex_state = 29, .external_lex_state = 1}, + [5198] = {.lex_state = 29, .external_lex_state = 1}, + [5199] = {.lex_state = 29, .external_lex_state = 1}, + [5200] = {.lex_state = 29, .external_lex_state = 1}, + [5201] = {.lex_state = 122, .external_lex_state = 1}, + [5202] = {.lex_state = 543, .external_lex_state = 1}, + [5203] = {.lex_state = 122, .external_lex_state = 1}, + [5204] = {.lex_state = 122, .external_lex_state = 1}, + [5205] = {.lex_state = 122, .external_lex_state = 1}, + [5206] = {.lex_state = 543, .external_lex_state = 1}, + [5207] = {.lex_state = 123, .external_lex_state = 1}, + [5208] = {.lex_state = 123, .external_lex_state = 1}, + [5209] = {.lex_state = 123, .external_lex_state = 1}, + [5210] = {.lex_state = 543, .external_lex_state = 1}, + [5211] = {.lex_state = 122, .external_lex_state = 1}, + [5212] = {.lex_state = 122, .external_lex_state = 1}, + [5213] = {.lex_state = 122, .external_lex_state = 1}, + [5214] = {.lex_state = 122, .external_lex_state = 1}, + [5215] = {.lex_state = 122, .external_lex_state = 1}, + [5216] = {.lex_state = 122, .external_lex_state = 1}, + [5217] = {.lex_state = 122, .external_lex_state = 1}, + [5218] = {.lex_state = 122, .external_lex_state = 1}, + [5219] = {.lex_state = 543, .external_lex_state = 1}, + [5220] = {.lex_state = 122, .external_lex_state = 1}, + [5221] = {.lex_state = 122, .external_lex_state = 1}, + [5222] = {.lex_state = 543, .external_lex_state = 1}, + [5223] = {.lex_state = 122, .external_lex_state = 1}, + [5224] = {.lex_state = 122, .external_lex_state = 1}, + [5225] = {.lex_state = 122, .external_lex_state = 1}, + [5226] = {.lex_state = 123, .external_lex_state = 1}, + [5227] = {.lex_state = 543, .external_lex_state = 1}, + [5228] = {.lex_state = 123, .external_lex_state = 1}, + [5229] = {.lex_state = 122, .external_lex_state = 1}, + [5230] = {.lex_state = 122, .external_lex_state = 1}, + [5231] = {.lex_state = 122, .external_lex_state = 1}, + [5232] = {.lex_state = 122, .external_lex_state = 1}, + [5233] = {.lex_state = 543, .external_lex_state = 1}, + [5234] = {.lex_state = 122, .external_lex_state = 1}, + [5235] = {.lex_state = 122, .external_lex_state = 1}, + [5236] = {.lex_state = 122, .external_lex_state = 1}, + [5237] = {.lex_state = 543, .external_lex_state = 1}, + [5238] = {.lex_state = 122, .external_lex_state = 1}, + [5239] = {.lex_state = 543, .external_lex_state = 1}, + [5240] = {.lex_state = 543, .external_lex_state = 1}, + [5241] = {.lex_state = 122, .external_lex_state = 1}, + [5242] = {.lex_state = 122, .external_lex_state = 1}, + [5243] = {.lex_state = 122, .external_lex_state = 1}, + [5244] = {.lex_state = 122, .external_lex_state = 1}, + [5245] = {.lex_state = 122, .external_lex_state = 1}, + [5246] = {.lex_state = 543, .external_lex_state = 1}, + [5247] = {.lex_state = 122, .external_lex_state = 1}, + [5248] = {.lex_state = 122, .external_lex_state = 1}, + [5249] = {.lex_state = 122, .external_lex_state = 1}, + [5250] = {.lex_state = 122, .external_lex_state = 1}, + [5251] = {.lex_state = 122, .external_lex_state = 1}, + [5252] = {.lex_state = 543, .external_lex_state = 1}, + [5253] = {.lex_state = 543, .external_lex_state = 1}, + [5254] = {.lex_state = 543, .external_lex_state = 1}, + [5255] = {.lex_state = 122, .external_lex_state = 1}, + [5256] = {.lex_state = 543, .external_lex_state = 1}, + [5257] = {.lex_state = 543, .external_lex_state = 1}, + [5258] = {.lex_state = 122, .external_lex_state = 1}, + [5259] = {.lex_state = 122, .external_lex_state = 1}, + [5260] = {.lex_state = 543, .external_lex_state = 1}, + [5261] = {.lex_state = 543, .external_lex_state = 1}, + [5262] = {.lex_state = 543, .external_lex_state = 1}, + [5263] = {.lex_state = 543, .external_lex_state = 1}, + [5264] = {.lex_state = 122, .external_lex_state = 1}, + [5265] = {.lex_state = 122, .external_lex_state = 1}, + [5266] = {.lex_state = 122, .external_lex_state = 1}, + [5267] = {.lex_state = 122, .external_lex_state = 1}, + [5268] = {.lex_state = 543, .external_lex_state = 1}, + [5269] = {.lex_state = 543, .external_lex_state = 1}, + [5270] = {.lex_state = 122, .external_lex_state = 1}, + [5271] = {.lex_state = 543, .external_lex_state = 1}, + [5272] = {.lex_state = 123, .external_lex_state = 1}, + [5273] = {.lex_state = 543, .external_lex_state = 1}, + [5274] = {.lex_state = 122, .external_lex_state = 1}, + [5275] = {.lex_state = 122, .external_lex_state = 1}, + [5276] = {.lex_state = 122, .external_lex_state = 1}, + [5277] = {.lex_state = 543, .external_lex_state = 1}, + [5278] = {.lex_state = 543, .external_lex_state = 1}, + [5279] = {.lex_state = 122, .external_lex_state = 1}, + [5280] = {.lex_state = 543, .external_lex_state = 1}, + [5281] = {.lex_state = 543, .external_lex_state = 1}, + [5282] = {.lex_state = 122, .external_lex_state = 1}, + [5283] = {.lex_state = 122, .external_lex_state = 1}, + [5284] = {.lex_state = 543, .external_lex_state = 1}, + [5285] = {.lex_state = 122, .external_lex_state = 1}, + [5286] = {.lex_state = 122, .external_lex_state = 1}, + [5287] = {.lex_state = 543, .external_lex_state = 1}, + [5288] = {.lex_state = 122, .external_lex_state = 1}, + [5289] = {.lex_state = 543, .external_lex_state = 1}, + [5290] = {.lex_state = 123, .external_lex_state = 1}, + [5291] = {.lex_state = 543, .external_lex_state = 1}, + [5292] = {.lex_state = 122, .external_lex_state = 1}, + [5293] = {.lex_state = 543, .external_lex_state = 1}, + [5294] = {.lex_state = 543, .external_lex_state = 1}, + [5295] = {.lex_state = 543, .external_lex_state = 1}, + [5296] = {.lex_state = 122, .external_lex_state = 1}, + [5297] = {.lex_state = 122, .external_lex_state = 1}, + [5298] = {.lex_state = 543, .external_lex_state = 1}, + [5299] = {.lex_state = 122, .external_lex_state = 1}, + [5300] = {.lex_state = 543, .external_lex_state = 1}, + [5301] = {.lex_state = 543, .external_lex_state = 1}, + [5302] = {.lex_state = 122, .external_lex_state = 1}, + [5303] = {.lex_state = 122, .external_lex_state = 1}, + [5304] = {.lex_state = 123, .external_lex_state = 1}, + [5305] = {.lex_state = 122, .external_lex_state = 1}, + [5306] = {.lex_state = 543, .external_lex_state = 1}, + [5307] = {.lex_state = 543, .external_lex_state = 1}, + [5308] = {.lex_state = 543, .external_lex_state = 1}, + [5309] = {.lex_state = 122, .external_lex_state = 1}, + [5310] = {.lex_state = 543, .external_lex_state = 1}, + [5311] = {.lex_state = 543, .external_lex_state = 1}, + [5312] = {.lex_state = 122, .external_lex_state = 1}, + [5313] = {.lex_state = 122, .external_lex_state = 1}, + [5314] = {.lex_state = 547, .external_lex_state = 1}, + [5315] = {.lex_state = 122, .external_lex_state = 1}, + [5316] = {.lex_state = 543, .external_lex_state = 1}, + [5317] = {.lex_state = 543, .external_lex_state = 1}, + [5318] = {.lex_state = 543, .external_lex_state = 1}, + [5319] = {.lex_state = 122, .external_lex_state = 1}, + [5320] = {.lex_state = 122, .external_lex_state = 1}, + [5321] = {.lex_state = 122, .external_lex_state = 1}, + [5322] = {.lex_state = 543, .external_lex_state = 1}, + [5323] = {.lex_state = 543, .external_lex_state = 1}, + [5324] = {.lex_state = 122, .external_lex_state = 1}, + [5325] = {.lex_state = 543, .external_lex_state = 1}, + [5326] = {.lex_state = 122, .external_lex_state = 1}, + [5327] = {.lex_state = 122, .external_lex_state = 1}, + [5328] = {.lex_state = 543, .external_lex_state = 1}, + [5329] = {.lex_state = 122, .external_lex_state = 1}, + [5330] = {.lex_state = 122, .external_lex_state = 1}, + [5331] = {.lex_state = 543, .external_lex_state = 1}, + [5332] = {.lex_state = 543, .external_lex_state = 1}, + [5333] = {.lex_state = 543, .external_lex_state = 1}, + [5334] = {.lex_state = 122, .external_lex_state = 1}, + [5335] = {.lex_state = 122, .external_lex_state = 1}, + [5336] = {.lex_state = 123, .external_lex_state = 1}, + [5337] = {.lex_state = 122, .external_lex_state = 1}, + [5338] = {.lex_state = 122, .external_lex_state = 1}, + [5339] = {.lex_state = 122, .external_lex_state = 1}, + [5340] = {.lex_state = 543, .external_lex_state = 1}, + [5341] = {.lex_state = 543, .external_lex_state = 1}, + [5342] = {.lex_state = 122, .external_lex_state = 1}, + [5343] = {.lex_state = 122, .external_lex_state = 1}, + [5344] = {.lex_state = 543, .external_lex_state = 1}, + [5345] = {.lex_state = 122, .external_lex_state = 1}, + [5346] = {.lex_state = 543, .external_lex_state = 1}, + [5347] = {.lex_state = 122, .external_lex_state = 1}, + [5348] = {.lex_state = 122, .external_lex_state = 1}, + [5349] = {.lex_state = 122, .external_lex_state = 1}, + [5350] = {.lex_state = 122, .external_lex_state = 1}, + [5351] = {.lex_state = 543, .external_lex_state = 1}, + [5352] = {.lex_state = 122, .external_lex_state = 1}, + [5353] = {.lex_state = 122, .external_lex_state = 1}, + [5354] = {.lex_state = 122, .external_lex_state = 1}, + [5355] = {.lex_state = 122, .external_lex_state = 1}, + [5356] = {.lex_state = 123, .external_lex_state = 1}, + [5357] = {.lex_state = 122, .external_lex_state = 1}, + [5358] = {.lex_state = 122, .external_lex_state = 1}, + [5359] = {.lex_state = 122, .external_lex_state = 1}, + [5360] = {.lex_state = 122, .external_lex_state = 1}, + [5361] = {.lex_state = 122, .external_lex_state = 1}, + [5362] = {.lex_state = 122, .external_lex_state = 1}, + [5363] = {.lex_state = 122, .external_lex_state = 1}, + [5364] = {.lex_state = 58, .external_lex_state = 1}, + [5365] = {.lex_state = 122, .external_lex_state = 1}, + [5366] = {.lex_state = 123, .external_lex_state = 1}, + [5367] = {.lex_state = 122, .external_lex_state = 1}, + [5368] = {.lex_state = 123, .external_lex_state = 1}, + [5369] = {.lex_state = 122, .external_lex_state = 1}, + [5370] = {.lex_state = 122, .external_lex_state = 1}, + [5371] = {.lex_state = 122, .external_lex_state = 1}, + [5372] = {.lex_state = 123, .external_lex_state = 1}, + [5373] = {.lex_state = 122, .external_lex_state = 1}, + [5374] = {.lex_state = 122, .external_lex_state = 1}, + [5375] = {.lex_state = 123, .external_lex_state = 1}, + [5376] = {.lex_state = 123, .external_lex_state = 1}, + [5377] = {.lex_state = 122, .external_lex_state = 1}, + [5378] = {.lex_state = 122, .external_lex_state = 1}, + [5379] = {.lex_state = 122, .external_lex_state = 1}, + [5380] = {.lex_state = 62, .external_lex_state = 1}, + [5381] = {.lex_state = 122, .external_lex_state = 1}, + [5382] = {.lex_state = 122, .external_lex_state = 1}, + [5383] = {.lex_state = 122, .external_lex_state = 1}, + [5384] = {.lex_state = 122, .external_lex_state = 1}, + [5385] = {.lex_state = 123, .external_lex_state = 1}, + [5386] = {.lex_state = 122, .external_lex_state = 1}, + [5387] = {.lex_state = 122, .external_lex_state = 1}, + [5388] = {.lex_state = 123, .external_lex_state = 1}, + [5389] = {.lex_state = 122, .external_lex_state = 1}, + [5390] = {.lex_state = 122, .external_lex_state = 1}, + [5391] = {.lex_state = 122, .external_lex_state = 1}, + [5392] = {.lex_state = 48, .external_lex_state = 1}, + [5393] = {.lex_state = 122, .external_lex_state = 1}, + [5394] = {.lex_state = 122, .external_lex_state = 1}, + [5395] = {.lex_state = 122, .external_lex_state = 1}, + [5396] = {.lex_state = 122, .external_lex_state = 1}, + [5397] = {.lex_state = 123, .external_lex_state = 1}, + [5398] = {.lex_state = 122, .external_lex_state = 1}, + [5399] = {.lex_state = 122, .external_lex_state = 1}, + [5400] = {.lex_state = 122, .external_lex_state = 1}, + [5401] = {.lex_state = 122, .external_lex_state = 1}, + [5402] = {.lex_state = 123, .external_lex_state = 1}, + [5403] = {.lex_state = 122, .external_lex_state = 1}, + [5404] = {.lex_state = 123, .external_lex_state = 1}, + [5405] = {.lex_state = 123, .external_lex_state = 1}, + [5406] = {.lex_state = 122, .external_lex_state = 1}, + [5407] = {.lex_state = 122, .external_lex_state = 1}, + [5408] = {.lex_state = 123, .external_lex_state = 1}, + [5409] = {.lex_state = 122, .external_lex_state = 1}, + [5410] = {.lex_state = 122, .external_lex_state = 1}, + [5411] = {.lex_state = 122, .external_lex_state = 1}, + [5412] = {.lex_state = 122, .external_lex_state = 1}, + [5413] = {.lex_state = 123, .external_lex_state = 1}, + [5414] = {.lex_state = 122, .external_lex_state = 1}, + [5415] = {.lex_state = 122, .external_lex_state = 1}, + [5416] = {.lex_state = 122, .external_lex_state = 1}, + [5417] = {.lex_state = 122, .external_lex_state = 1}, + [5418] = {.lex_state = 123, .external_lex_state = 1}, + [5419] = {.lex_state = 123, .external_lex_state = 1}, + [5420] = {.lex_state = 122, .external_lex_state = 1}, + [5421] = {.lex_state = 123, .external_lex_state = 1}, + [5422] = {.lex_state = 123, .external_lex_state = 1}, + [5423] = {.lex_state = 123, .external_lex_state = 1}, + [5424] = {.lex_state = 123, .external_lex_state = 1}, + [5425] = {.lex_state = 122, .external_lex_state = 1}, + [5426] = {.lex_state = 122, .external_lex_state = 1}, + [5427] = {.lex_state = 123, .external_lex_state = 1}, + [5428] = {.lex_state = 123, .external_lex_state = 1}, + [5429] = {.lex_state = 122, .external_lex_state = 1}, + [5430] = {.lex_state = 122, .external_lex_state = 1}, + [5431] = {.lex_state = 123, .external_lex_state = 1}, + [5432] = {.lex_state = 122, .external_lex_state = 1}, + [5433] = {.lex_state = 122, .external_lex_state = 1}, + [5434] = {.lex_state = 123, .external_lex_state = 1}, + [5435] = {.lex_state = 122, .external_lex_state = 1}, + [5436] = {.lex_state = 122, .external_lex_state = 1}, + [5437] = {.lex_state = 123, .external_lex_state = 1}, + [5438] = {.lex_state = 122, .external_lex_state = 1}, + [5439] = {.lex_state = 122, .external_lex_state = 1}, + [5440] = {.lex_state = 122, .external_lex_state = 1}, + [5441] = {.lex_state = 122, .external_lex_state = 1}, + [5442] = {.lex_state = 122, .external_lex_state = 1}, + [5443] = {.lex_state = 122, .external_lex_state = 1}, + [5444] = {.lex_state = 122, .external_lex_state = 1}, + [5445] = {.lex_state = 122, .external_lex_state = 1}, + [5446] = {.lex_state = 123, .external_lex_state = 1}, + [5447] = {.lex_state = 122, .external_lex_state = 1}, + [5448] = {.lex_state = 122, .external_lex_state = 1}, + [5449] = {.lex_state = 122, .external_lex_state = 1}, + [5450] = {.lex_state = 122, .external_lex_state = 1}, + [5451] = {.lex_state = 122, .external_lex_state = 1}, + [5452] = {.lex_state = 122, .external_lex_state = 1}, + [5453] = {.lex_state = 123, .external_lex_state = 1}, + [5454] = {.lex_state = 58, .external_lex_state = 1}, + [5455] = {.lex_state = 78, .external_lex_state = 1}, + [5456] = {.lex_state = 58, .external_lex_state = 1}, + [5457] = {.lex_state = 62, .external_lex_state = 1}, + [5458] = {.lex_state = 62, .external_lex_state = 1}, + [5459] = {.lex_state = 62, .external_lex_state = 1}, + [5460] = {.lex_state = 62, .external_lex_state = 1}, + [5461] = {.lex_state = 62, .external_lex_state = 1}, + [5462] = {.lex_state = 62, .external_lex_state = 1}, + [5463] = {.lex_state = 62, .external_lex_state = 1}, + [5464] = {.lex_state = 62, .external_lex_state = 1}, + [5465] = {.lex_state = 62, .external_lex_state = 1}, + [5466] = {.lex_state = 62, .external_lex_state = 1}, + [5467] = {.lex_state = 62, .external_lex_state = 1}, + [5468] = {.lex_state = 62, .external_lex_state = 1}, + [5469] = {.lex_state = 62, .external_lex_state = 1}, + [5470] = {.lex_state = 62, .external_lex_state = 1}, + [5471] = {.lex_state = 62, .external_lex_state = 1}, + [5472] = {.lex_state = 62, .external_lex_state = 1}, + [5473] = {.lex_state = 62, .external_lex_state = 1}, + [5474] = {.lex_state = 62, .external_lex_state = 1}, + [5475] = {.lex_state = 62, .external_lex_state = 1}, + [5476] = {.lex_state = 62, .external_lex_state = 1}, + [5477] = {.lex_state = 62, .external_lex_state = 1}, + [5478] = {.lex_state = 62, .external_lex_state = 1}, + [5479] = {.lex_state = 62, .external_lex_state = 1}, + [5480] = {.lex_state = 62, .external_lex_state = 1}, + [5481] = {.lex_state = 62, .external_lex_state = 1}, + [5482] = {.lex_state = 62, .external_lex_state = 1}, + [5483] = {.lex_state = 62, .external_lex_state = 1}, + [5484] = {.lex_state = 62, .external_lex_state = 1}, + [5485] = {.lex_state = 62, .external_lex_state = 1}, + [5486] = {.lex_state = 62, .external_lex_state = 1}, + [5487] = {.lex_state = 62, .external_lex_state = 1}, + [5488] = {.lex_state = 62, .external_lex_state = 1}, + [5489] = {.lex_state = 62, .external_lex_state = 1}, + [5490] = {.lex_state = 62, .external_lex_state = 1}, + [5491] = {.lex_state = 62, .external_lex_state = 1}, + [5492] = {.lex_state = 62, .external_lex_state = 1}, + [5493] = {.lex_state = 62, .external_lex_state = 1}, + [5494] = {.lex_state = 62, .external_lex_state = 1}, + [5495] = {.lex_state = 62, .external_lex_state = 1}, + [5496] = {.lex_state = 62, .external_lex_state = 1}, + [5497] = {.lex_state = 62, .external_lex_state = 1}, + [5498] = {.lex_state = 62, .external_lex_state = 1}, + [5499] = {.lex_state = 62, .external_lex_state = 1}, + [5500] = {.lex_state = 62, .external_lex_state = 1}, + [5501] = {.lex_state = 62, .external_lex_state = 1}, + [5502] = {.lex_state = 62, .external_lex_state = 1}, + [5503] = {.lex_state = 62, .external_lex_state = 1}, + [5504] = {.lex_state = 62, .external_lex_state = 1}, + [5505] = {.lex_state = 62, .external_lex_state = 1}, + [5506] = {.lex_state = 62, .external_lex_state = 1}, + [5507] = {.lex_state = 62, .external_lex_state = 1}, + [5508] = {.lex_state = 62, .external_lex_state = 1}, + [5509] = {.lex_state = 62, .external_lex_state = 1}, + [5510] = {.lex_state = 62, .external_lex_state = 1}, + [5511] = {.lex_state = 122, .external_lex_state = 1}, + [5512] = {.lex_state = 62, .external_lex_state = 1}, + [5513] = {.lex_state = 62, .external_lex_state = 1}, + [5514] = {.lex_state = 82, .external_lex_state = 1}, + [5515] = {.lex_state = 58, .external_lex_state = 1}, + [5516] = {.lex_state = 62, .external_lex_state = 1}, + [5517] = {.lex_state = 46, .external_lex_state = 1}, + [5518] = {.lex_state = 48, .external_lex_state = 1}, + [5519] = {.lex_state = 48, .external_lex_state = 1}, + [5520] = {.lex_state = 48, .external_lex_state = 1}, + [5521] = {.lex_state = 48, .external_lex_state = 1}, + [5522] = {.lex_state = 48, .external_lex_state = 1}, + [5523] = {.lex_state = 48, .external_lex_state = 1}, + [5524] = {.lex_state = 48, .external_lex_state = 1}, + [5525] = {.lex_state = 48, .external_lex_state = 1}, + [5526] = {.lex_state = 48, .external_lex_state = 1}, + [5527] = {.lex_state = 48, .external_lex_state = 1}, + [5528] = {.lex_state = 48, .external_lex_state = 1}, + [5529] = {.lex_state = 48, .external_lex_state = 1}, + [5530] = {.lex_state = 48, .external_lex_state = 1}, + [5531] = {.lex_state = 48, .external_lex_state = 1}, + [5532] = {.lex_state = 48, .external_lex_state = 1}, + [5533] = {.lex_state = 48, .external_lex_state = 1}, + [5534] = {.lex_state = 48, .external_lex_state = 1}, + [5535] = {.lex_state = 48, .external_lex_state = 1}, + [5536] = {.lex_state = 48, .external_lex_state = 1}, + [5537] = {.lex_state = 48, .external_lex_state = 1}, + [5538] = {.lex_state = 48, .external_lex_state = 1}, + [5539] = {.lex_state = 48, .external_lex_state = 1}, + [5540] = {.lex_state = 48, .external_lex_state = 1}, + [5541] = {.lex_state = 48, .external_lex_state = 1}, + [5542] = {.lex_state = 48, .external_lex_state = 1}, + [5543] = {.lex_state = 48, .external_lex_state = 1}, + [5544] = {.lex_state = 48, .external_lex_state = 1}, + [5545] = {.lex_state = 48, .external_lex_state = 1}, + [5546] = {.lex_state = 48, .external_lex_state = 1}, + [5547] = {.lex_state = 48, .external_lex_state = 1}, + [5548] = {.lex_state = 48, .external_lex_state = 1}, + [5549] = {.lex_state = 48, .external_lex_state = 1}, + [5550] = {.lex_state = 48, .external_lex_state = 1}, + [5551] = {.lex_state = 48, .external_lex_state = 1}, + [5552] = {.lex_state = 48, .external_lex_state = 1}, + [5553] = {.lex_state = 48, .external_lex_state = 1}, + [5554] = {.lex_state = 48, .external_lex_state = 1}, + [5555] = {.lex_state = 48, .external_lex_state = 1}, + [5556] = {.lex_state = 48, .external_lex_state = 1}, + [5557] = {.lex_state = 48, .external_lex_state = 1}, + [5558] = {.lex_state = 48, .external_lex_state = 1}, + [5559] = {.lex_state = 48, .external_lex_state = 1}, + [5560] = {.lex_state = 48, .external_lex_state = 1}, + [5561] = {.lex_state = 48, .external_lex_state = 1}, + [5562] = {.lex_state = 48, .external_lex_state = 1}, + [5563] = {.lex_state = 48, .external_lex_state = 1}, + [5564] = {.lex_state = 48, .external_lex_state = 1}, + [5565] = {.lex_state = 48, .external_lex_state = 1}, + [5566] = {.lex_state = 48, .external_lex_state = 1}, + [5567] = {.lex_state = 48, .external_lex_state = 1}, + [5568] = {.lex_state = 48, .external_lex_state = 1}, + [5569] = {.lex_state = 48, .external_lex_state = 1}, + [5570] = {.lex_state = 48, .external_lex_state = 1}, + [5571] = {.lex_state = 48, .external_lex_state = 1}, + [5572] = {.lex_state = 64, .external_lex_state = 1}, + [5573] = {.lex_state = 62, .external_lex_state = 1}, + [5574] = {.lex_state = 49, .external_lex_state = 1}, + [5575] = {.lex_state = 48, .external_lex_state = 1}, + [5576] = {.lex_state = 48, .external_lex_state = 1}, + [5577] = {.lex_state = 52, .external_lex_state = 1}, + [5578] = {.lex_state = 48, .external_lex_state = 1}, + [5579] = {.lex_state = 48, .external_lex_state = 1}, + [5580] = {.lex_state = 112, .external_lex_state = 1}, + [5581] = {.lex_state = 122, .external_lex_state = 1}, + [5582] = {.lex_state = 122, .external_lex_state = 1}, + [5583] = {.lex_state = 122, .external_lex_state = 1}, + [5584] = {.lex_state = 122, .external_lex_state = 1}, + [5585] = {.lex_state = 122, .external_lex_state = 1}, + [5586] = {.lex_state = 122, .external_lex_state = 1}, + [5587] = {.lex_state = 122, .external_lex_state = 1}, + [5588] = {.lex_state = 122, .external_lex_state = 1}, + [5589] = {.lex_state = 122, .external_lex_state = 1}, + [5590] = {.lex_state = 122, .external_lex_state = 1}, + [5591] = {.lex_state = 122, .external_lex_state = 1}, + [5592] = {.lex_state = 122, .external_lex_state = 1}, + [5593] = {.lex_state = 122, .external_lex_state = 1}, + [5594] = {.lex_state = 122, .external_lex_state = 1}, + [5595] = {.lex_state = 122, .external_lex_state = 1}, + [5596] = {.lex_state = 122, .external_lex_state = 1}, + [5597] = {.lex_state = 122, .external_lex_state = 1}, + [5598] = {.lex_state = 122, .external_lex_state = 1}, + [5599] = {.lex_state = 122, .external_lex_state = 1}, + [5600] = {.lex_state = 122, .external_lex_state = 1}, + [5601] = {.lex_state = 122, .external_lex_state = 1}, + [5602] = {.lex_state = 122, .external_lex_state = 1}, + [5603] = {.lex_state = 122, .external_lex_state = 1}, + [5604] = {.lex_state = 122, .external_lex_state = 1}, + [5605] = {.lex_state = 122, .external_lex_state = 1}, + [5606] = {.lex_state = 122, .external_lex_state = 1}, + [5607] = {.lex_state = 122, .external_lex_state = 1}, + [5608] = {.lex_state = 122, .external_lex_state = 1}, + [5609] = {.lex_state = 122, .external_lex_state = 1}, + [5610] = {.lex_state = 122, .external_lex_state = 1}, + [5611] = {.lex_state = 122, .external_lex_state = 1}, + [5612] = {.lex_state = 122, .external_lex_state = 1}, + [5613] = {.lex_state = 122, .external_lex_state = 1}, + [5614] = {.lex_state = 122, .external_lex_state = 1}, + [5615] = {.lex_state = 122, .external_lex_state = 1}, + [5616] = {.lex_state = 122, .external_lex_state = 1}, + [5617] = {.lex_state = 122, .external_lex_state = 1}, + [5618] = {.lex_state = 122, .external_lex_state = 1}, + [5619] = {.lex_state = 122, .external_lex_state = 1}, + [5620] = {.lex_state = 123, .external_lex_state = 1}, + [5621] = {.lex_state = 122, .external_lex_state = 1}, + [5622] = {.lex_state = 122, .external_lex_state = 1}, + [5623] = {.lex_state = 123, .external_lex_state = 1}, + [5624] = {.lex_state = 123, .external_lex_state = 1}, + [5625] = {.lex_state = 122, .external_lex_state = 1}, + [5626] = {.lex_state = 123, .external_lex_state = 1}, + [5627] = {.lex_state = 122, .external_lex_state = 1}, + [5628] = {.lex_state = 123, .external_lex_state = 1}, + [5629] = {.lex_state = 123, .external_lex_state = 1}, + [5630] = {.lex_state = 122, .external_lex_state = 1}, + [5631] = {.lex_state = 123, .external_lex_state = 1}, + [5632] = {.lex_state = 122, .external_lex_state = 1}, + [5633] = {.lex_state = 122, .external_lex_state = 1}, + [5634] = {.lex_state = 123, .external_lex_state = 1}, + [5635] = {.lex_state = 123, .external_lex_state = 1}, + [5636] = {.lex_state = 123, .external_lex_state = 1}, + [5637] = {.lex_state = 122, .external_lex_state = 1}, + [5638] = {.lex_state = 122, .external_lex_state = 1}, + [5639] = {.lex_state = 123, .external_lex_state = 1}, + [5640] = {.lex_state = 122, .external_lex_state = 1}, + [5641] = {.lex_state = 123, .external_lex_state = 1}, + [5642] = {.lex_state = 122, .external_lex_state = 1}, + [5643] = {.lex_state = 122, .external_lex_state = 1}, + [5644] = {.lex_state = 122, .external_lex_state = 1}, + [5645] = {.lex_state = 122, .external_lex_state = 1}, + [5646] = {.lex_state = 122, .external_lex_state = 1}, + [5647] = {.lex_state = 122, .external_lex_state = 1}, + [5648] = {.lex_state = 122, .external_lex_state = 1}, + [5649] = {.lex_state = 122, .external_lex_state = 1}, + [5650] = {.lex_state = 122, .external_lex_state = 1}, + [5651] = {.lex_state = 122, .external_lex_state = 1}, + [5652] = {.lex_state = 122, .external_lex_state = 1}, + [5653] = {.lex_state = 122, .external_lex_state = 1}, + [5654] = {.lex_state = 122, .external_lex_state = 1}, + [5655] = {.lex_state = 122, .external_lex_state = 1}, + [5656] = {.lex_state = 122, .external_lex_state = 1}, + [5657] = {.lex_state = 122, .external_lex_state = 1}, + [5658] = {.lex_state = 547, .external_lex_state = 1}, + [5659] = {.lex_state = 122, .external_lex_state = 1}, + [5660] = {.lex_state = 122, .external_lex_state = 1}, + [5661] = {.lex_state = 122, .external_lex_state = 1}, + [5662] = {.lex_state = 122, .external_lex_state = 1}, + [5663] = {.lex_state = 122, .external_lex_state = 1}, + [5664] = {.lex_state = 122, .external_lex_state = 1}, + [5665] = {.lex_state = 122, .external_lex_state = 1}, + [5666] = {.lex_state = 122, .external_lex_state = 1}, + [5667] = {.lex_state = 122, .external_lex_state = 1}, + [5668] = {.lex_state = 122, .external_lex_state = 1}, + [5669] = {.lex_state = 122, .external_lex_state = 1}, + [5670] = {.lex_state = 122, .external_lex_state = 1}, + [5671] = {.lex_state = 122, .external_lex_state = 1}, + [5672] = {.lex_state = 122, .external_lex_state = 1}, + [5673] = {.lex_state = 122, .external_lex_state = 1}, + [5674] = {.lex_state = 122, .external_lex_state = 1}, + [5675] = {.lex_state = 122, .external_lex_state = 1}, + [5676] = {.lex_state = 122, .external_lex_state = 1}, + [5677] = {.lex_state = 58, .external_lex_state = 1}, + [5678] = {.lex_state = 122, .external_lex_state = 1}, + [5679] = {.lex_state = 122, .external_lex_state = 1}, + [5680] = {.lex_state = 122, .external_lex_state = 1}, + [5681] = {.lex_state = 122, .external_lex_state = 1}, + [5682] = {.lex_state = 122, .external_lex_state = 1}, + [5683] = {.lex_state = 122, .external_lex_state = 1}, + [5684] = {.lex_state = 122, .external_lex_state = 1}, + [5685] = {.lex_state = 122, .external_lex_state = 1}, + [5686] = {.lex_state = 122, .external_lex_state = 1}, + [5687] = {.lex_state = 122, .external_lex_state = 1}, + [5688] = {.lex_state = 122, .external_lex_state = 1}, + [5689] = {.lex_state = 122, .external_lex_state = 1}, + [5690] = {.lex_state = 122, .external_lex_state = 1}, + [5691] = {.lex_state = 122, .external_lex_state = 1}, + [5692] = {.lex_state = 122, .external_lex_state = 1}, + [5693] = {.lex_state = 122, .external_lex_state = 1}, + [5694] = {.lex_state = 122, .external_lex_state = 1}, + [5695] = {.lex_state = 122, .external_lex_state = 1}, + [5696] = {.lex_state = 122, .external_lex_state = 1}, + [5697] = {.lex_state = 122, .external_lex_state = 1}, + [5698] = {.lex_state = 54, .external_lex_state = 1}, + [5699] = {.lex_state = 122, .external_lex_state = 1}, + [5700] = {.lex_state = 122, .external_lex_state = 1}, + [5701] = {.lex_state = 122, .external_lex_state = 1}, + [5702] = {.lex_state = 122, .external_lex_state = 1}, + [5703] = {.lex_state = 122, .external_lex_state = 1}, + [5704] = {.lex_state = 122, .external_lex_state = 1}, + [5705] = {.lex_state = 122, .external_lex_state = 1}, + [5706] = {.lex_state = 122, .external_lex_state = 1}, + [5707] = {.lex_state = 122, .external_lex_state = 1}, + [5708] = {.lex_state = 122, .external_lex_state = 1}, + [5709] = {.lex_state = 122, .external_lex_state = 1}, + [5710] = {.lex_state = 122, .external_lex_state = 1}, + [5711] = {.lex_state = 122, .external_lex_state = 1}, + [5712] = {.lex_state = 122, .external_lex_state = 1}, + [5713] = {.lex_state = 122, .external_lex_state = 1}, + [5714] = {.lex_state = 122, .external_lex_state = 1}, + [5715] = {.lex_state = 122, .external_lex_state = 1}, + [5716] = {.lex_state = 122, .external_lex_state = 1}, + [5717] = {.lex_state = 122, .external_lex_state = 1}, + [5718] = {.lex_state = 66, .external_lex_state = 1}, + [5719] = {.lex_state = 123, .external_lex_state = 1}, + [5720] = {.lex_state = 122, .external_lex_state = 1}, + [5721] = {.lex_state = 122, .external_lex_state = 1}, + [5722] = {.lex_state = 122, .external_lex_state = 1}, + [5723] = {.lex_state = 122, .external_lex_state = 1}, + [5724] = {.lex_state = 122, .external_lex_state = 1}, + [5725] = {.lex_state = 122, .external_lex_state = 1}, + [5726] = {.lex_state = 122, .external_lex_state = 1}, + [5727] = {.lex_state = 122, .external_lex_state = 1}, + [5728] = {.lex_state = 122, .external_lex_state = 1}, + [5729] = {.lex_state = 122, .external_lex_state = 1}, + [5730] = {.lex_state = 122, .external_lex_state = 1}, + [5731] = {.lex_state = 122, .external_lex_state = 1}, + [5732] = {.lex_state = 122, .external_lex_state = 1}, + [5733] = {.lex_state = 122, .external_lex_state = 1}, + [5734] = {.lex_state = 547, .external_lex_state = 1}, + [5735] = {.lex_state = 123, .external_lex_state = 1}, + [5736] = {.lex_state = 122, .external_lex_state = 1}, + [5737] = {.lex_state = 123, .external_lex_state = 1}, + [5738] = {.lex_state = 123, .external_lex_state = 1}, + [5739] = {.lex_state = 123, .external_lex_state = 1}, + [5740] = {.lex_state = 123, .external_lex_state = 1}, + [5741] = {.lex_state = 123, .external_lex_state = 1}, + [5742] = {.lex_state = 123, .external_lex_state = 1}, + [5743] = {.lex_state = 123, .external_lex_state = 1}, + [5744] = {.lex_state = 123, .external_lex_state = 1}, + [5745] = {.lex_state = 123, .external_lex_state = 1}, + [5746] = {.lex_state = 123, .external_lex_state = 1}, + [5747] = {.lex_state = 123, .external_lex_state = 1}, + [5748] = {.lex_state = 123, .external_lex_state = 1}, + [5749] = {.lex_state = 112, .external_lex_state = 1}, + [5750] = {.lex_state = 122, .external_lex_state = 1}, + [5751] = {.lex_state = 58, .external_lex_state = 1}, + [5752] = {.lex_state = 58, .external_lex_state = 1}, + [5753] = {.lex_state = 58, .external_lex_state = 1}, + [5754] = {.lex_state = 58, .external_lex_state = 1}, + [5755] = {.lex_state = 58, .external_lex_state = 1}, + [5756] = {.lex_state = 58, .external_lex_state = 1}, + [5757] = {.lex_state = 58, .external_lex_state = 1}, + [5758] = {.lex_state = 58, .external_lex_state = 1}, + [5759] = {.lex_state = 58, .external_lex_state = 1}, + [5760] = {.lex_state = 122, .external_lex_state = 1}, + [5761] = {.lex_state = 58, .external_lex_state = 1}, + [5762] = {.lex_state = 58, .external_lex_state = 1}, + [5763] = {.lex_state = 58, .external_lex_state = 1}, + [5764] = {.lex_state = 58, .external_lex_state = 1}, + [5765] = {.lex_state = 58, .external_lex_state = 1}, + [5766] = {.lex_state = 58, .external_lex_state = 1}, + [5767] = {.lex_state = 58, .external_lex_state = 1}, + [5768] = {.lex_state = 58, .external_lex_state = 1}, + [5769] = {.lex_state = 58, .external_lex_state = 1}, + [5770] = {.lex_state = 58, .external_lex_state = 1}, + [5771] = {.lex_state = 58, .external_lex_state = 1}, + [5772] = {.lex_state = 58, .external_lex_state = 1}, + [5773] = {.lex_state = 58, .external_lex_state = 1}, + [5774] = {.lex_state = 58, .external_lex_state = 1}, + [5775] = {.lex_state = 58, .external_lex_state = 1}, + [5776] = {.lex_state = 58, .external_lex_state = 1}, + [5777] = {.lex_state = 58, .external_lex_state = 1}, + [5778] = {.lex_state = 58, .external_lex_state = 1}, + [5779] = {.lex_state = 58, .external_lex_state = 1}, + [5780] = {.lex_state = 58, .external_lex_state = 1}, + [5781] = {.lex_state = 58, .external_lex_state = 1}, + [5782] = {.lex_state = 58, .external_lex_state = 1}, + [5783] = {.lex_state = 58, .external_lex_state = 1}, + [5784] = {.lex_state = 58, .external_lex_state = 1}, + [5785] = {.lex_state = 58, .external_lex_state = 1}, + [5786] = {.lex_state = 58, .external_lex_state = 1}, + [5787] = {.lex_state = 58, .external_lex_state = 1}, + [5788] = {.lex_state = 58, .external_lex_state = 1}, + [5789] = {.lex_state = 58, .external_lex_state = 1}, + [5790] = {.lex_state = 58, .external_lex_state = 1}, + [5791] = {.lex_state = 58, .external_lex_state = 1}, + [5792] = {.lex_state = 58, .external_lex_state = 1}, + [5793] = {.lex_state = 58, .external_lex_state = 1}, + [5794] = {.lex_state = 58, .external_lex_state = 1}, + [5795] = {.lex_state = 58, .external_lex_state = 1}, + [5796] = {.lex_state = 58, .external_lex_state = 1}, + [5797] = {.lex_state = 58, .external_lex_state = 1}, + [5798] = {.lex_state = 58, .external_lex_state = 1}, + [5799] = {.lex_state = 58, .external_lex_state = 1}, + [5800] = {.lex_state = 58, .external_lex_state = 1}, + [5801] = {.lex_state = 58, .external_lex_state = 1}, + [5802] = {.lex_state = 58, .external_lex_state = 1}, + [5803] = {.lex_state = 58, .external_lex_state = 1}, + [5804] = {.lex_state = 58, .external_lex_state = 1}, + [5805] = {.lex_state = 59, .external_lex_state = 1}, + [5806] = {.lex_state = 58, .external_lex_state = 1}, + [5807] = {.lex_state = 122, .external_lex_state = 1}, + [5808] = {.lex_state = 123, .external_lex_state = 1}, + [5809] = {.lex_state = 112, .external_lex_state = 1}, + [5810] = {.lex_state = 122, .external_lex_state = 1}, + [5811] = {.lex_state = 122, .external_lex_state = 1}, + [5812] = {.lex_state = 122, .external_lex_state = 1}, + [5813] = {.lex_state = 123, .external_lex_state = 1}, + [5814] = {.lex_state = 112, .external_lex_state = 1}, + [5815] = {.lex_state = 122, .external_lex_state = 1}, + [5816] = {.lex_state = 123, .external_lex_state = 1}, + [5817] = {.lex_state = 112, .external_lex_state = 1}, + [5818] = {.lex_state = 122, .external_lex_state = 1}, + [5819] = {.lex_state = 123, .external_lex_state = 1}, + [5820] = {.lex_state = 112, .external_lex_state = 1}, + [5821] = {.lex_state = 122, .external_lex_state = 1}, + [5822] = {.lex_state = 123, .external_lex_state = 1}, + [5823] = {.lex_state = 122, .external_lex_state = 1}, + [5824] = {.lex_state = 122, .external_lex_state = 1}, + [5825] = {.lex_state = 122, .external_lex_state = 1}, + [5826] = {.lex_state = 122, .external_lex_state = 1}, + [5827] = {.lex_state = 122, .external_lex_state = 1}, + [5828] = {.lex_state = 122, .external_lex_state = 1}, + [5829] = {.lex_state = 122, .external_lex_state = 1}, + [5830] = {.lex_state = 122, .external_lex_state = 1}, + [5831] = {.lex_state = 122, .external_lex_state = 1}, + [5832] = {.lex_state = 122, .external_lex_state = 1}, + [5833] = {.lex_state = 122, .external_lex_state = 1}, + [5834] = {.lex_state = 122, .external_lex_state = 1}, + [5835] = {.lex_state = 122, .external_lex_state = 1}, + [5836] = {.lex_state = 122, .external_lex_state = 1}, + [5837] = {.lex_state = 122, .external_lex_state = 1}, + [5838] = {.lex_state = 122, .external_lex_state = 1}, + [5839] = {.lex_state = 122, .external_lex_state = 1}, + [5840] = {.lex_state = 122, .external_lex_state = 1}, + [5841] = {.lex_state = 122, .external_lex_state = 1}, + [5842] = {.lex_state = 122, .external_lex_state = 1}, + [5843] = {.lex_state = 122, .external_lex_state = 1}, + [5844] = {.lex_state = 60, .external_lex_state = 1}, + [5845] = {.lex_state = 122, .external_lex_state = 1}, + [5846] = {.lex_state = 122, .external_lex_state = 1}, + [5847] = {.lex_state = 123, .external_lex_state = 1}, + [5848] = {.lex_state = 123, .external_lex_state = 1}, + [5849] = {.lex_state = 123, .external_lex_state = 1}, + [5850] = {.lex_state = 122, .external_lex_state = 1}, + [5851] = {.lex_state = 123, .external_lex_state = 1}, + [5852] = {.lex_state = 63, .external_lex_state = 1}, + [5853] = {.lex_state = 122, .external_lex_state = 1}, + [5854] = {.lex_state = 111, .external_lex_state = 1}, + [5855] = {.lex_state = 59, .external_lex_state = 1}, + [5856] = {.lex_state = 60, .external_lex_state = 1}, + [5857] = {.lex_state = 46, .external_lex_state = 1}, + [5858] = {.lex_state = 64, .external_lex_state = 1}, + [5859] = {.lex_state = 84, .external_lex_state = 1}, + [5860] = {.lex_state = 82, .external_lex_state = 1}, + [5861] = {.lex_state = 49, .external_lex_state = 1}, + [5862] = {.lex_state = 46, .external_lex_state = 1}, + [5863] = {.lex_state = 64, .external_lex_state = 1}, + [5864] = {.lex_state = 49, .external_lex_state = 1}, + [5865] = {.lex_state = 46, .external_lex_state = 1}, + [5866] = {.lex_state = 46, .external_lex_state = 1}, + [5867] = {.lex_state = 49, .external_lex_state = 1}, + [5868] = {.lex_state = 46, .external_lex_state = 1}, + [5869] = {.lex_state = 52, .external_lex_state = 1}, + [5870] = {.lex_state = 52, .external_lex_state = 1}, + [5871] = {.lex_state = 46, .external_lex_state = 1}, + [5872] = {.lex_state = 46, .external_lex_state = 1}, + [5873] = {.lex_state = 52, .external_lex_state = 1}, + [5874] = {.lex_state = 46, .external_lex_state = 1}, + [5875] = {.lex_state = 46, .external_lex_state = 1}, + [5876] = {.lex_state = 46, .external_lex_state = 1}, + [5877] = {.lex_state = 64, .external_lex_state = 1}, + [5878] = {.lex_state = 49, .external_lex_state = 1}, + [5879] = {.lex_state = 52, .external_lex_state = 1}, + [5880] = {.lex_state = 46, .external_lex_state = 1}, + [5881] = {.lex_state = 46, .external_lex_state = 1}, + [5882] = {.lex_state = 111, .external_lex_state = 1}, + [5883] = {.lex_state = 111, .external_lex_state = 1}, + [5884] = {.lex_state = 46, .external_lex_state = 1}, + [5885] = {.lex_state = 111, .external_lex_state = 1}, + [5886] = {.lex_state = 111, .external_lex_state = 1}, + [5887] = {.lex_state = 46, .external_lex_state = 1}, + [5888] = {.lex_state = 111, .external_lex_state = 1}, + [5889] = {.lex_state = 46, .external_lex_state = 1}, + [5890] = {.lex_state = 46, .external_lex_state = 1}, + [5891] = {.lex_state = 111, .external_lex_state = 1}, + [5892] = {.lex_state = 46, .external_lex_state = 1}, + [5893] = {.lex_state = 46, .external_lex_state = 1}, + [5894] = {.lex_state = 46, .external_lex_state = 1}, + [5895] = {.lex_state = 46, .external_lex_state = 1}, + [5896] = {.lex_state = 46, .external_lex_state = 1}, + [5897] = {.lex_state = 46, .external_lex_state = 1}, + [5898] = {.lex_state = 46, .external_lex_state = 1}, + [5899] = {.lex_state = 46, .external_lex_state = 1}, + [5900] = {.lex_state = 46, .external_lex_state = 1}, + [5901] = {.lex_state = 46, .external_lex_state = 1}, + [5902] = {.lex_state = 46, .external_lex_state = 1}, + [5903] = {.lex_state = 46, .external_lex_state = 1}, + [5904] = {.lex_state = 46, .external_lex_state = 1}, + [5905] = {.lex_state = 111, .external_lex_state = 1}, + [5906] = {.lex_state = 46, .external_lex_state = 1}, + [5907] = {.lex_state = 111, .external_lex_state = 1}, + [5908] = {.lex_state = 111, .external_lex_state = 1}, + [5909] = {.lex_state = 111, .external_lex_state = 1}, + [5910] = {.lex_state = 46, .external_lex_state = 1}, + [5911] = {.lex_state = 111, .external_lex_state = 1}, + [5912] = {.lex_state = 46, .external_lex_state = 1}, + [5913] = {.lex_state = 46, .external_lex_state = 1}, + [5914] = {.lex_state = 46, .external_lex_state = 1}, + [5915] = {.lex_state = 46, .external_lex_state = 1}, + [5916] = {.lex_state = 46, .external_lex_state = 1}, + [5917] = {.lex_state = 46, .external_lex_state = 1}, + [5918] = {.lex_state = 46, .external_lex_state = 1}, + [5919] = {.lex_state = 46, .external_lex_state = 1}, + [5920] = {.lex_state = 46, .external_lex_state = 1}, + [5921] = {.lex_state = 46, .external_lex_state = 1}, + [5922] = {.lex_state = 46, .external_lex_state = 1}, + [5923] = {.lex_state = 46, .external_lex_state = 1}, + [5924] = {.lex_state = 111, .external_lex_state = 1}, + [5925] = {.lex_state = 46, .external_lex_state = 1}, + [5926] = {.lex_state = 111, .external_lex_state = 1}, + [5927] = {.lex_state = 111, .external_lex_state = 1}, + [5928] = {.lex_state = 111, .external_lex_state = 1}, + [5929] = {.lex_state = 46, .external_lex_state = 1}, + [5930] = {.lex_state = 111, .external_lex_state = 1}, + [5931] = {.lex_state = 111, .external_lex_state = 1}, + [5932] = {.lex_state = 46, .external_lex_state = 1}, + [5933] = {.lex_state = 111, .external_lex_state = 1}, + [5934] = {.lex_state = 111, .external_lex_state = 1}, + [5935] = {.lex_state = 111, .external_lex_state = 1}, + [5936] = {.lex_state = 46, .external_lex_state = 1}, + [5937] = {.lex_state = 111, .external_lex_state = 1}, + [5938] = {.lex_state = 111, .external_lex_state = 1}, + [5939] = {.lex_state = 46, .external_lex_state = 1}, + [5940] = {.lex_state = 111, .external_lex_state = 1}, + [5941] = {.lex_state = 111, .external_lex_state = 1}, + [5942] = {.lex_state = 111, .external_lex_state = 1}, + [5943] = {.lex_state = 46, .external_lex_state = 1}, + [5944] = {.lex_state = 111, .external_lex_state = 1}, + [5945] = {.lex_state = 46, .external_lex_state = 1}, + [5946] = {.lex_state = 46, .external_lex_state = 1}, + [5947] = {.lex_state = 46, .external_lex_state = 1}, + [5948] = {.lex_state = 46, .external_lex_state = 1}, + [5949] = {.lex_state = 46, .external_lex_state = 1}, + [5950] = {.lex_state = 63, .external_lex_state = 1}, + [5951] = {.lex_state = 82, .external_lex_state = 1}, + [5952] = {.lex_state = 46, .external_lex_state = 1}, + [5953] = {.lex_state = 82, .external_lex_state = 1}, + [5954] = {.lex_state = 65, .external_lex_state = 1}, + [5955] = {.lex_state = 78, .external_lex_state = 1}, + [5956] = {.lex_state = 82, .external_lex_state = 1}, + [5957] = {.lex_state = 82, .external_lex_state = 1}, + [5958] = {.lex_state = 82, .external_lex_state = 1}, + [5959] = {.lex_state = 82, .external_lex_state = 1}, + [5960] = {.lex_state = 82, .external_lex_state = 1}, + [5961] = {.lex_state = 82, .external_lex_state = 1}, + [5962] = {.lex_state = 64, .external_lex_state = 1}, + [5963] = {.lex_state = 64, .external_lex_state = 1}, + [5964] = {.lex_state = 64, .external_lex_state = 1}, + [5965] = {.lex_state = 64, .external_lex_state = 1}, + [5966] = {.lex_state = 64, .external_lex_state = 1}, + [5967] = {.lex_state = 111, .external_lex_state = 1}, + [5968] = {.lex_state = 64, .external_lex_state = 1}, + [5969] = {.lex_state = 64, .external_lex_state = 1}, + [5970] = {.lex_state = 64, .external_lex_state = 1}, + [5971] = {.lex_state = 64, .external_lex_state = 1}, + [5972] = {.lex_state = 111, .external_lex_state = 1}, + [5973] = {.lex_state = 64, .external_lex_state = 1}, + [5974] = {.lex_state = 64, .external_lex_state = 1}, + [5975] = {.lex_state = 111, .external_lex_state = 1}, + [5976] = {.lex_state = 64, .external_lex_state = 1}, + [5977] = {.lex_state = 64, .external_lex_state = 1}, + [5978] = {.lex_state = 64, .external_lex_state = 1}, + [5979] = {.lex_state = 111, .external_lex_state = 1}, + [5980] = {.lex_state = 64, .external_lex_state = 1}, + [5981] = {.lex_state = 64, .external_lex_state = 1}, + [5982] = {.lex_state = 64, .external_lex_state = 1}, + [5983] = {.lex_state = 64, .external_lex_state = 1}, + [5984] = {.lex_state = 64, .external_lex_state = 1}, + [5985] = {.lex_state = 64, .external_lex_state = 1}, + [5986] = {.lex_state = 64, .external_lex_state = 1}, + [5987] = {.lex_state = 64, .external_lex_state = 1}, + [5988] = {.lex_state = 64, .external_lex_state = 1}, + [5989] = {.lex_state = 64, .external_lex_state = 1}, + [5990] = {.lex_state = 64, .external_lex_state = 1}, + [5991] = {.lex_state = 64, .external_lex_state = 1}, + [5992] = {.lex_state = 111, .external_lex_state = 1}, + [5993] = {.lex_state = 64, .external_lex_state = 1}, + [5994] = {.lex_state = 64, .external_lex_state = 1}, + [5995] = {.lex_state = 64, .external_lex_state = 1}, + [5996] = {.lex_state = 64, .external_lex_state = 1}, + [5997] = {.lex_state = 64, .external_lex_state = 1}, + [5998] = {.lex_state = 64, .external_lex_state = 1}, + [5999] = {.lex_state = 64, .external_lex_state = 1}, + [6000] = {.lex_state = 64, .external_lex_state = 1}, + [6001] = {.lex_state = 64, .external_lex_state = 1}, + [6002] = {.lex_state = 64, .external_lex_state = 1}, + [6003] = {.lex_state = 64, .external_lex_state = 1}, + [6004] = {.lex_state = 64, .external_lex_state = 1}, + [6005] = {.lex_state = 64, .external_lex_state = 1}, + [6006] = {.lex_state = 64, .external_lex_state = 1}, + [6007] = {.lex_state = 64, .external_lex_state = 1}, + [6008] = {.lex_state = 64, .external_lex_state = 1}, + [6009] = {.lex_state = 64, .external_lex_state = 1}, + [6010] = {.lex_state = 64, .external_lex_state = 1}, + [6011] = {.lex_state = 64, .external_lex_state = 1}, + [6012] = {.lex_state = 55, .external_lex_state = 1}, + [6013] = {.lex_state = 64, .external_lex_state = 1}, + [6014] = {.lex_state = 64, .external_lex_state = 1}, + [6015] = {.lex_state = 64, .external_lex_state = 1}, + [6016] = {.lex_state = 54, .external_lex_state = 1}, + [6017] = {.lex_state = 54, .external_lex_state = 1}, + [6018] = {.lex_state = 54, .external_lex_state = 1}, + [6019] = {.lex_state = 54, .external_lex_state = 1}, + [6020] = {.lex_state = 54, .external_lex_state = 1}, + [6021] = {.lex_state = 54, .external_lex_state = 1}, + [6022] = {.lex_state = 64, .external_lex_state = 1}, + [6023] = {.lex_state = 54, .external_lex_state = 1}, + [6024] = {.lex_state = 54, .external_lex_state = 1}, + [6025] = {.lex_state = 54, .external_lex_state = 1}, + [6026] = {.lex_state = 54, .external_lex_state = 1}, + [6027] = {.lex_state = 54, .external_lex_state = 1}, + [6028] = {.lex_state = 54, .external_lex_state = 1}, + [6029] = {.lex_state = 54, .external_lex_state = 1}, + [6030] = {.lex_state = 54, .external_lex_state = 1}, + [6031] = {.lex_state = 54, .external_lex_state = 1}, + [6032] = {.lex_state = 54, .external_lex_state = 1}, + [6033] = {.lex_state = 54, .external_lex_state = 1}, + [6034] = {.lex_state = 54, .external_lex_state = 1}, + [6035] = {.lex_state = 54, .external_lex_state = 1}, + [6036] = {.lex_state = 54, .external_lex_state = 1}, + [6037] = {.lex_state = 54, .external_lex_state = 1}, + [6038] = {.lex_state = 54, .external_lex_state = 1}, + [6039] = {.lex_state = 54, .external_lex_state = 1}, + [6040] = {.lex_state = 54, .external_lex_state = 1}, + [6041] = {.lex_state = 54, .external_lex_state = 1}, + [6042] = {.lex_state = 54, .external_lex_state = 1}, + [6043] = {.lex_state = 54, .external_lex_state = 1}, + [6044] = {.lex_state = 54, .external_lex_state = 1}, + [6045] = {.lex_state = 54, .external_lex_state = 1}, + [6046] = {.lex_state = 54, .external_lex_state = 1}, + [6047] = {.lex_state = 54, .external_lex_state = 1}, + [6048] = {.lex_state = 54, .external_lex_state = 1}, + [6049] = {.lex_state = 54, .external_lex_state = 1}, + [6050] = {.lex_state = 54, .external_lex_state = 1}, + [6051] = {.lex_state = 54, .external_lex_state = 1}, + [6052] = {.lex_state = 54, .external_lex_state = 1}, + [6053] = {.lex_state = 54, .external_lex_state = 1}, + [6054] = {.lex_state = 64, .external_lex_state = 1}, + [6055] = {.lex_state = 54, .external_lex_state = 1}, + [6056] = {.lex_state = 54, .external_lex_state = 1}, + [6057] = {.lex_state = 54, .external_lex_state = 1}, + [6058] = {.lex_state = 54, .external_lex_state = 1}, + [6059] = {.lex_state = 54, .external_lex_state = 1}, + [6060] = {.lex_state = 54, .external_lex_state = 1}, + [6061] = {.lex_state = 54, .external_lex_state = 1}, + [6062] = {.lex_state = 54, .external_lex_state = 1}, + [6063] = {.lex_state = 54, .external_lex_state = 1}, + [6064] = {.lex_state = 54, .external_lex_state = 1}, + [6065] = {.lex_state = 54, .external_lex_state = 1}, + [6066] = {.lex_state = 54, .external_lex_state = 1}, + [6067] = {.lex_state = 54, .external_lex_state = 1}, + [6068] = {.lex_state = 54, .external_lex_state = 1}, + [6069] = {.lex_state = 54, .external_lex_state = 1}, + [6070] = {.lex_state = 54, .external_lex_state = 1}, + [6071] = {.lex_state = 54, .external_lex_state = 1}, + [6072] = {.lex_state = 64, .external_lex_state = 1}, + [6073] = {.lex_state = 64, .external_lex_state = 1}, + [6074] = {.lex_state = 64, .external_lex_state = 1}, + [6075] = {.lex_state = 53, .external_lex_state = 1}, + [6076] = {.lex_state = 56, .external_lex_state = 1}, + [6077] = {.lex_state = 49, .external_lex_state = 1}, + [6078] = {.lex_state = 46, .external_lex_state = 1}, + [6079] = {.lex_state = 67, .external_lex_state = 1}, + [6080] = {.lex_state = 49, .external_lex_state = 1}, + [6081] = {.lex_state = 49, .external_lex_state = 1}, + [6082] = {.lex_state = 79, .external_lex_state = 1}, + [6083] = {.lex_state = 49, .external_lex_state = 1}, + [6084] = {.lex_state = 54, .external_lex_state = 1}, + [6085] = {.lex_state = 111, .external_lex_state = 1}, + [6086] = {.lex_state = 64, .external_lex_state = 1}, + [6087] = {.lex_state = 49, .external_lex_state = 1}, + [6088] = {.lex_state = 111, .external_lex_state = 1}, + [6089] = {.lex_state = 54, .external_lex_state = 1}, + [6090] = {.lex_state = 74, .external_lex_state = 1}, + [6091] = {.lex_state = 54, .external_lex_state = 1}, + [6092] = {.lex_state = 49, .external_lex_state = 1}, + [6093] = {.lex_state = 49, .external_lex_state = 1}, + [6094] = {.lex_state = 49, .external_lex_state = 1}, + [6095] = {.lex_state = 49, .external_lex_state = 1}, + [6096] = {.lex_state = 49, .external_lex_state = 1}, + [6097] = {.lex_state = 66, .external_lex_state = 1}, + [6098] = {.lex_state = 66, .external_lex_state = 1}, + [6099] = {.lex_state = 66, .external_lex_state = 1}, + [6100] = {.lex_state = 66, .external_lex_state = 1}, + [6101] = {.lex_state = 66, .external_lex_state = 1}, + [6102] = {.lex_state = 66, .external_lex_state = 1}, + [6103] = {.lex_state = 49, .external_lex_state = 1}, + [6104] = {.lex_state = 66, .external_lex_state = 1}, + [6105] = {.lex_state = 66, .external_lex_state = 1}, + [6106] = {.lex_state = 66, .external_lex_state = 1}, + [6107] = {.lex_state = 66, .external_lex_state = 1}, + [6108] = {.lex_state = 66, .external_lex_state = 1}, + [6109] = {.lex_state = 66, .external_lex_state = 1}, + [6110] = {.lex_state = 66, .external_lex_state = 1}, + [6111] = {.lex_state = 66, .external_lex_state = 1}, + [6112] = {.lex_state = 66, .external_lex_state = 1}, + [6113] = {.lex_state = 66, .external_lex_state = 1}, + [6114] = {.lex_state = 66, .external_lex_state = 1}, + [6115] = {.lex_state = 66, .external_lex_state = 1}, + [6116] = {.lex_state = 66, .external_lex_state = 1}, + [6117] = {.lex_state = 66, .external_lex_state = 1}, + [6118] = {.lex_state = 66, .external_lex_state = 1}, + [6119] = {.lex_state = 66, .external_lex_state = 1}, + [6120] = {.lex_state = 66, .external_lex_state = 1}, + [6121] = {.lex_state = 66, .external_lex_state = 1}, + [6122] = {.lex_state = 66, .external_lex_state = 1}, + [6123] = {.lex_state = 66, .external_lex_state = 1}, + [6124] = {.lex_state = 66, .external_lex_state = 1}, + [6125] = {.lex_state = 66, .external_lex_state = 1}, + [6126] = {.lex_state = 66, .external_lex_state = 1}, + [6127] = {.lex_state = 66, .external_lex_state = 1}, + [6128] = {.lex_state = 66, .external_lex_state = 1}, + [6129] = {.lex_state = 49, .external_lex_state = 1}, + [6130] = {.lex_state = 66, .external_lex_state = 1}, + [6131] = {.lex_state = 66, .external_lex_state = 1}, + [6132] = {.lex_state = 66, .external_lex_state = 1}, + [6133] = {.lex_state = 66, .external_lex_state = 1}, + [6134] = {.lex_state = 66, .external_lex_state = 1}, + [6135] = {.lex_state = 66, .external_lex_state = 1}, + [6136] = {.lex_state = 66, .external_lex_state = 1}, + [6137] = {.lex_state = 66, .external_lex_state = 1}, + [6138] = {.lex_state = 66, .external_lex_state = 1}, + [6139] = {.lex_state = 66, .external_lex_state = 1}, + [6140] = {.lex_state = 66, .external_lex_state = 1}, + [6141] = {.lex_state = 66, .external_lex_state = 1}, + [6142] = {.lex_state = 66, .external_lex_state = 1}, + [6143] = {.lex_state = 66, .external_lex_state = 1}, + [6144] = {.lex_state = 66, .external_lex_state = 1}, + [6145] = {.lex_state = 66, .external_lex_state = 1}, + [6146] = {.lex_state = 66, .external_lex_state = 1}, + [6147] = {.lex_state = 66, .external_lex_state = 1}, + [6148] = {.lex_state = 66, .external_lex_state = 1}, + [6149] = {.lex_state = 66, .external_lex_state = 1}, + [6150] = {.lex_state = 66, .external_lex_state = 1}, + [6151] = {.lex_state = 66, .external_lex_state = 1}, + [6152] = {.lex_state = 66, .external_lex_state = 1}, + [6153] = {.lex_state = 49, .external_lex_state = 1}, + [6154] = {.lex_state = 49, .external_lex_state = 1}, + [6155] = {.lex_state = 49, .external_lex_state = 1}, + [6156] = {.lex_state = 49, .external_lex_state = 1}, + [6157] = {.lex_state = 49, .external_lex_state = 1}, + [6158] = {.lex_state = 49, .external_lex_state = 1}, + [6159] = {.lex_state = 49, .external_lex_state = 1}, + [6160] = {.lex_state = 49, .external_lex_state = 1}, + [6161] = {.lex_state = 49, .external_lex_state = 1}, + [6162] = {.lex_state = 49, .external_lex_state = 1}, + [6163] = {.lex_state = 83, .external_lex_state = 1}, + [6164] = {.lex_state = 54, .external_lex_state = 1}, + [6165] = {.lex_state = 66, .external_lex_state = 1}, + [6166] = {.lex_state = 49, .external_lex_state = 1}, + [6167] = {.lex_state = 49, .external_lex_state = 1}, + [6168] = {.lex_state = 66, .external_lex_state = 1}, + [6169] = {.lex_state = 86, .external_lex_state = 1}, + [6170] = {.lex_state = 49, .external_lex_state = 1}, + [6171] = {.lex_state = 66, .external_lex_state = 1}, + [6172] = {.lex_state = 49, .external_lex_state = 1}, + [6173] = {.lex_state = 49, .external_lex_state = 1}, + [6174] = {.lex_state = 49, .external_lex_state = 1}, + [6175] = {.lex_state = 49, .external_lex_state = 1}, + [6176] = {.lex_state = 49, .external_lex_state = 1}, + [6177] = {.lex_state = 49, .external_lex_state = 1}, + [6178] = {.lex_state = 49, .external_lex_state = 1}, + [6179] = {.lex_state = 49, .external_lex_state = 1}, + [6180] = {.lex_state = 49, .external_lex_state = 1}, + [6181] = {.lex_state = 49, .external_lex_state = 1}, + [6182] = {.lex_state = 49, .external_lex_state = 1}, + [6183] = {.lex_state = 49, .external_lex_state = 1}, + [6184] = {.lex_state = 49, .external_lex_state = 1}, + [6185] = {.lex_state = 61, .external_lex_state = 1}, + [6186] = {.lex_state = 49, .external_lex_state = 1}, + [6187] = {.lex_state = 49, .external_lex_state = 1}, + [6188] = {.lex_state = 49, .external_lex_state = 1}, + [6189] = {.lex_state = 49, .external_lex_state = 1}, + [6190] = {.lex_state = 49, .external_lex_state = 1}, + [6191] = {.lex_state = 49, .external_lex_state = 1}, + [6192] = {.lex_state = 66, .external_lex_state = 1}, + [6193] = {.lex_state = 59, .external_lex_state = 1}, + [6194] = {.lex_state = 59, .external_lex_state = 1}, + [6195] = {.lex_state = 59, .external_lex_state = 1}, + [6196] = {.lex_state = 59, .external_lex_state = 1}, + [6197] = {.lex_state = 49, .external_lex_state = 1}, + [6198] = {.lex_state = 59, .external_lex_state = 1}, + [6199] = {.lex_state = 59, .external_lex_state = 1}, + [6200] = {.lex_state = 59, .external_lex_state = 1}, + [6201] = {.lex_state = 59, .external_lex_state = 1}, + [6202] = {.lex_state = 59, .external_lex_state = 1}, + [6203] = {.lex_state = 49, .external_lex_state = 1}, + [6204] = {.lex_state = 59, .external_lex_state = 1}, + [6205] = {.lex_state = 59, .external_lex_state = 1}, + [6206] = {.lex_state = 59, .external_lex_state = 1}, + [6207] = {.lex_state = 59, .external_lex_state = 1}, + [6208] = {.lex_state = 59, .external_lex_state = 1}, + [6209] = {.lex_state = 59, .external_lex_state = 1}, + [6210] = {.lex_state = 59, .external_lex_state = 1}, + [6211] = {.lex_state = 59, .external_lex_state = 1}, + [6212] = {.lex_state = 59, .external_lex_state = 1}, + [6213] = {.lex_state = 59, .external_lex_state = 1}, + [6214] = {.lex_state = 59, .external_lex_state = 1}, + [6215] = {.lex_state = 59, .external_lex_state = 1}, + [6216] = {.lex_state = 59, .external_lex_state = 1}, + [6217] = {.lex_state = 59, .external_lex_state = 1}, + [6218] = {.lex_state = 59, .external_lex_state = 1}, + [6219] = {.lex_state = 59, .external_lex_state = 1}, + [6220] = {.lex_state = 59, .external_lex_state = 1}, + [6221] = {.lex_state = 49, .external_lex_state = 1}, + [6222] = {.lex_state = 59, .external_lex_state = 1}, + [6223] = {.lex_state = 59, .external_lex_state = 1}, + [6224] = {.lex_state = 59, .external_lex_state = 1}, + [6225] = {.lex_state = 59, .external_lex_state = 1}, + [6226] = {.lex_state = 59, .external_lex_state = 1}, + [6227] = {.lex_state = 59, .external_lex_state = 1}, + [6228] = {.lex_state = 59, .external_lex_state = 1}, + [6229] = {.lex_state = 59, .external_lex_state = 1}, + [6230] = {.lex_state = 59, .external_lex_state = 1}, + [6231] = {.lex_state = 59, .external_lex_state = 1}, + [6232] = {.lex_state = 59, .external_lex_state = 1}, + [6233] = {.lex_state = 59, .external_lex_state = 1}, + [6234] = {.lex_state = 59, .external_lex_state = 1}, + [6235] = {.lex_state = 59, .external_lex_state = 1}, + [6236] = {.lex_state = 59, .external_lex_state = 1}, + [6237] = {.lex_state = 59, .external_lex_state = 1}, + [6238] = {.lex_state = 49, .external_lex_state = 1}, + [6239] = {.lex_state = 59, .external_lex_state = 1}, + [6240] = {.lex_state = 59, .external_lex_state = 1}, + [6241] = {.lex_state = 59, .external_lex_state = 1}, + [6242] = {.lex_state = 78, .external_lex_state = 1}, + [6243] = {.lex_state = 59, .external_lex_state = 1}, + [6244] = {.lex_state = 59, .external_lex_state = 1}, + [6245] = {.lex_state = 59, .external_lex_state = 1}, + [6246] = {.lex_state = 59, .external_lex_state = 1}, + [6247] = {.lex_state = 59, .external_lex_state = 1}, + [6248] = {.lex_state = 59, .external_lex_state = 1}, + [6249] = {.lex_state = 59, .external_lex_state = 1}, + [6250] = {.lex_state = 68, .external_lex_state = 1}, + [6251] = {.lex_state = 49, .external_lex_state = 1}, + [6252] = {.lex_state = 59, .external_lex_state = 1}, + [6253] = {.lex_state = 49, .external_lex_state = 1}, + [6254] = {.lex_state = 49, .external_lex_state = 1}, + [6255] = {.lex_state = 49, .external_lex_state = 1}, + [6256] = {.lex_state = 49, .external_lex_state = 1}, + [6257] = {.lex_state = 46, .external_lex_state = 1}, + [6258] = {.lex_state = 50, .external_lex_state = 1}, + [6259] = {.lex_state = 49, .external_lex_state = 1}, + [6260] = {.lex_state = 46, .external_lex_state = 1}, + [6261] = {.lex_state = 82, .external_lex_state = 1}, + [6262] = {.lex_state = 60, .external_lex_state = 1}, + [6263] = {.lex_state = 60, .external_lex_state = 1}, + [6264] = {.lex_state = 60, .external_lex_state = 1}, + [6265] = {.lex_state = 60, .external_lex_state = 1}, + [6266] = {.lex_state = 60, .external_lex_state = 1}, + [6267] = {.lex_state = 60, .external_lex_state = 1}, + [6268] = {.lex_state = 60, .external_lex_state = 1}, + [6269] = {.lex_state = 60, .external_lex_state = 1}, + [6270] = {.lex_state = 60, .external_lex_state = 1}, + [6271] = {.lex_state = 60, .external_lex_state = 1}, + [6272] = {.lex_state = 60, .external_lex_state = 1}, + [6273] = {.lex_state = 60, .external_lex_state = 1}, + [6274] = {.lex_state = 60, .external_lex_state = 1}, + [6275] = {.lex_state = 60, .external_lex_state = 1}, + [6276] = {.lex_state = 60, .external_lex_state = 1}, + [6277] = {.lex_state = 60, .external_lex_state = 1}, + [6278] = {.lex_state = 60, .external_lex_state = 1}, + [6279] = {.lex_state = 60, .external_lex_state = 1}, + [6280] = {.lex_state = 60, .external_lex_state = 1}, + [6281] = {.lex_state = 60, .external_lex_state = 1}, + [6282] = {.lex_state = 60, .external_lex_state = 1}, + [6283] = {.lex_state = 60, .external_lex_state = 1}, + [6284] = {.lex_state = 60, .external_lex_state = 1}, + [6285] = {.lex_state = 60, .external_lex_state = 1}, + [6286] = {.lex_state = 60, .external_lex_state = 1}, + [6287] = {.lex_state = 60, .external_lex_state = 1}, + [6288] = {.lex_state = 60, .external_lex_state = 1}, + [6289] = {.lex_state = 60, .external_lex_state = 1}, + [6290] = {.lex_state = 60, .external_lex_state = 1}, + [6291] = {.lex_state = 60, .external_lex_state = 1}, + [6292] = {.lex_state = 60, .external_lex_state = 1}, + [6293] = {.lex_state = 60, .external_lex_state = 1}, + [6294] = {.lex_state = 60, .external_lex_state = 1}, + [6295] = {.lex_state = 60, .external_lex_state = 1}, + [6296] = {.lex_state = 60, .external_lex_state = 1}, + [6297] = {.lex_state = 60, .external_lex_state = 1}, + [6298] = {.lex_state = 60, .external_lex_state = 1}, + [6299] = {.lex_state = 60, .external_lex_state = 1}, + [6300] = {.lex_state = 60, .external_lex_state = 1}, + [6301] = {.lex_state = 60, .external_lex_state = 1}, + [6302] = {.lex_state = 60, .external_lex_state = 1}, + [6303] = {.lex_state = 60, .external_lex_state = 1}, + [6304] = {.lex_state = 60, .external_lex_state = 1}, + [6305] = {.lex_state = 60, .external_lex_state = 1}, + [6306] = {.lex_state = 60, .external_lex_state = 1}, + [6307] = {.lex_state = 60, .external_lex_state = 1}, + [6308] = {.lex_state = 60, .external_lex_state = 1}, + [6309] = {.lex_state = 60, .external_lex_state = 1}, + [6310] = {.lex_state = 60, .external_lex_state = 1}, + [6311] = {.lex_state = 60, .external_lex_state = 1}, + [6312] = {.lex_state = 60, .external_lex_state = 1}, + [6313] = {.lex_state = 60, .external_lex_state = 1}, + [6314] = {.lex_state = 60, .external_lex_state = 1}, + [6315] = {.lex_state = 63, .external_lex_state = 1}, + [6316] = {.lex_state = 63, .external_lex_state = 1}, + [6317] = {.lex_state = 63, .external_lex_state = 1}, + [6318] = {.lex_state = 63, .external_lex_state = 1}, + [6319] = {.lex_state = 60, .external_lex_state = 1}, + [6320] = {.lex_state = 63, .external_lex_state = 1}, + [6321] = {.lex_state = 63, .external_lex_state = 1}, + [6322] = {.lex_state = 63, .external_lex_state = 1}, + [6323] = {.lex_state = 63, .external_lex_state = 1}, + [6324] = {.lex_state = 63, .external_lex_state = 1}, + [6325] = {.lex_state = 63, .external_lex_state = 1}, + [6326] = {.lex_state = 63, .external_lex_state = 1}, + [6327] = {.lex_state = 63, .external_lex_state = 1}, + [6328] = {.lex_state = 63, .external_lex_state = 1}, + [6329] = {.lex_state = 63, .external_lex_state = 1}, + [6330] = {.lex_state = 63, .external_lex_state = 1}, + [6331] = {.lex_state = 63, .external_lex_state = 1}, + [6332] = {.lex_state = 63, .external_lex_state = 1}, + [6333] = {.lex_state = 63, .external_lex_state = 1}, + [6334] = {.lex_state = 63, .external_lex_state = 1}, + [6335] = {.lex_state = 63, .external_lex_state = 1}, + [6336] = {.lex_state = 63, .external_lex_state = 1}, + [6337] = {.lex_state = 63, .external_lex_state = 1}, + [6338] = {.lex_state = 63, .external_lex_state = 1}, + [6339] = {.lex_state = 63, .external_lex_state = 1}, + [6340] = {.lex_state = 63, .external_lex_state = 1}, + [6341] = {.lex_state = 63, .external_lex_state = 1}, + [6342] = {.lex_state = 63, .external_lex_state = 1}, + [6343] = {.lex_state = 63, .external_lex_state = 1}, + [6344] = {.lex_state = 63, .external_lex_state = 1}, + [6345] = {.lex_state = 63, .external_lex_state = 1}, + [6346] = {.lex_state = 63, .external_lex_state = 1}, + [6347] = {.lex_state = 63, .external_lex_state = 1}, + [6348] = {.lex_state = 63, .external_lex_state = 1}, + [6349] = {.lex_state = 63, .external_lex_state = 1}, + [6350] = {.lex_state = 63, .external_lex_state = 1}, + [6351] = {.lex_state = 63, .external_lex_state = 1}, + [6352] = {.lex_state = 63, .external_lex_state = 1}, + [6353] = {.lex_state = 63, .external_lex_state = 1}, + [6354] = {.lex_state = 63, .external_lex_state = 1}, + [6355] = {.lex_state = 63, .external_lex_state = 1}, + [6356] = {.lex_state = 63, .external_lex_state = 1}, + [6357] = {.lex_state = 63, .external_lex_state = 1}, + [6358] = {.lex_state = 63, .external_lex_state = 1}, + [6359] = {.lex_state = 63, .external_lex_state = 1}, + [6360] = {.lex_state = 63, .external_lex_state = 1}, + [6361] = {.lex_state = 63, .external_lex_state = 1}, + [6362] = {.lex_state = 63, .external_lex_state = 1}, + [6363] = {.lex_state = 63, .external_lex_state = 1}, + [6364] = {.lex_state = 63, .external_lex_state = 1}, + [6365] = {.lex_state = 63, .external_lex_state = 1}, + [6366] = {.lex_state = 63, .external_lex_state = 1}, + [6367] = {.lex_state = 63, .external_lex_state = 1}, + [6368] = {.lex_state = 63, .external_lex_state = 1}, + [6369] = {.lex_state = 78, .external_lex_state = 1}, + [6370] = {.lex_state = 59, .external_lex_state = 1}, + [6371] = {.lex_state = 78, .external_lex_state = 1}, + [6372] = {.lex_state = 52, .external_lex_state = 1}, + [6373] = {.lex_state = 78, .external_lex_state = 1}, + [6374] = {.lex_state = 78, .external_lex_state = 1}, + [6375] = {.lex_state = 63, .external_lex_state = 1}, + [6376] = {.lex_state = 78, .external_lex_state = 1}, + [6377] = {.lex_state = 78, .external_lex_state = 1}, + [6378] = {.lex_state = 78, .external_lex_state = 1}, + [6379] = {.lex_state = 78, .external_lex_state = 1}, + [6380] = {.lex_state = 78, .external_lex_state = 1}, + [6381] = {.lex_state = 78, .external_lex_state = 1}, + [6382] = {.lex_state = 78, .external_lex_state = 1}, + [6383] = {.lex_state = 78, .external_lex_state = 1}, + [6384] = {.lex_state = 78, .external_lex_state = 1}, + [6385] = {.lex_state = 78, .external_lex_state = 1}, + [6386] = {.lex_state = 78, .external_lex_state = 1}, + [6387] = {.lex_state = 78, .external_lex_state = 1}, + [6388] = {.lex_state = 78, .external_lex_state = 1}, + [6389] = {.lex_state = 78, .external_lex_state = 1}, + [6390] = {.lex_state = 78, .external_lex_state = 1}, + [6391] = {.lex_state = 78, .external_lex_state = 1}, + [6392] = {.lex_state = 78, .external_lex_state = 1}, + [6393] = {.lex_state = 78, .external_lex_state = 1}, + [6394] = {.lex_state = 78, .external_lex_state = 1}, + [6395] = {.lex_state = 78, .external_lex_state = 1}, + [6396] = {.lex_state = 78, .external_lex_state = 1}, + [6397] = {.lex_state = 78, .external_lex_state = 1}, + [6398] = {.lex_state = 78, .external_lex_state = 1}, + [6399] = {.lex_state = 78, .external_lex_state = 1}, + [6400] = {.lex_state = 78, .external_lex_state = 1}, + [6401] = {.lex_state = 78, .external_lex_state = 1}, + [6402] = {.lex_state = 78, .external_lex_state = 1}, + [6403] = {.lex_state = 78, .external_lex_state = 1}, + [6404] = {.lex_state = 78, .external_lex_state = 1}, + [6405] = {.lex_state = 78, .external_lex_state = 1}, + [6406] = {.lex_state = 78, .external_lex_state = 1}, + [6407] = {.lex_state = 78, .external_lex_state = 1}, + [6408] = {.lex_state = 78, .external_lex_state = 1}, + [6409] = {.lex_state = 78, .external_lex_state = 1}, + [6410] = {.lex_state = 78, .external_lex_state = 1}, + [6411] = {.lex_state = 78, .external_lex_state = 1}, + [6412] = {.lex_state = 78, .external_lex_state = 1}, + [6413] = {.lex_state = 78, .external_lex_state = 1}, + [6414] = {.lex_state = 78, .external_lex_state = 1}, + [6415] = {.lex_state = 78, .external_lex_state = 1}, + [6416] = {.lex_state = 78, .external_lex_state = 1}, + [6417] = {.lex_state = 78, .external_lex_state = 1}, + [6418] = {.lex_state = 78, .external_lex_state = 1}, + [6419] = {.lex_state = 78, .external_lex_state = 1}, + [6420] = {.lex_state = 78, .external_lex_state = 1}, + [6421] = {.lex_state = 78, .external_lex_state = 1}, + [6422] = {.lex_state = 78, .external_lex_state = 1}, + [6423] = {.lex_state = 78, .external_lex_state = 1}, + [6424] = {.lex_state = 78, .external_lex_state = 1}, + [6425] = {.lex_state = 59, .external_lex_state = 1}, + [6426] = {.lex_state = 52, .external_lex_state = 1}, + [6427] = {.lex_state = 52, .external_lex_state = 1}, + [6428] = {.lex_state = 52, .external_lex_state = 1}, + [6429] = {.lex_state = 52, .external_lex_state = 1}, + [6430] = {.lex_state = 52, .external_lex_state = 1}, + [6431] = {.lex_state = 78, .external_lex_state = 1}, + [6432] = {.lex_state = 52, .external_lex_state = 1}, + [6433] = {.lex_state = 52, .external_lex_state = 1}, + [6434] = {.lex_state = 52, .external_lex_state = 1}, + [6435] = {.lex_state = 52, .external_lex_state = 1}, + [6436] = {.lex_state = 52, .external_lex_state = 1}, + [6437] = {.lex_state = 52, .external_lex_state = 1}, + [6438] = {.lex_state = 59, .external_lex_state = 1}, + [6439] = {.lex_state = 52, .external_lex_state = 1}, + [6440] = {.lex_state = 52, .external_lex_state = 1}, + [6441] = {.lex_state = 52, .external_lex_state = 1}, + [6442] = {.lex_state = 52, .external_lex_state = 1}, + [6443] = {.lex_state = 52, .external_lex_state = 1}, + [6444] = {.lex_state = 52, .external_lex_state = 1}, + [6445] = {.lex_state = 52, .external_lex_state = 1}, + [6446] = {.lex_state = 52, .external_lex_state = 1}, + [6447] = {.lex_state = 52, .external_lex_state = 1}, + [6448] = {.lex_state = 52, .external_lex_state = 1}, + [6449] = {.lex_state = 52, .external_lex_state = 1}, + [6450] = {.lex_state = 52, .external_lex_state = 1}, + [6451] = {.lex_state = 52, .external_lex_state = 1}, + [6452] = {.lex_state = 52, .external_lex_state = 1}, + [6453] = {.lex_state = 52, .external_lex_state = 1}, + [6454] = {.lex_state = 52, .external_lex_state = 1}, + [6455] = {.lex_state = 52, .external_lex_state = 1}, + [6456] = {.lex_state = 52, .external_lex_state = 1}, + [6457] = {.lex_state = 52, .external_lex_state = 1}, + [6458] = {.lex_state = 52, .external_lex_state = 1}, + [6459] = {.lex_state = 52, .external_lex_state = 1}, + [6460] = {.lex_state = 52, .external_lex_state = 1}, + [6461] = {.lex_state = 52, .external_lex_state = 1}, + [6462] = {.lex_state = 52, .external_lex_state = 1}, + [6463] = {.lex_state = 52, .external_lex_state = 1}, + [6464] = {.lex_state = 52, .external_lex_state = 1}, + [6465] = {.lex_state = 52, .external_lex_state = 1}, + [6466] = {.lex_state = 52, .external_lex_state = 1}, + [6467] = {.lex_state = 52, .external_lex_state = 1}, + [6468] = {.lex_state = 52, .external_lex_state = 1}, + [6469] = {.lex_state = 52, .external_lex_state = 1}, + [6470] = {.lex_state = 52, .external_lex_state = 1}, + [6471] = {.lex_state = 52, .external_lex_state = 1}, + [6472] = {.lex_state = 52, .external_lex_state = 1}, + [6473] = {.lex_state = 52, .external_lex_state = 1}, + [6474] = {.lex_state = 52, .external_lex_state = 1}, + [6475] = {.lex_state = 52, .external_lex_state = 1}, + [6476] = {.lex_state = 52, .external_lex_state = 1}, + [6477] = {.lex_state = 52, .external_lex_state = 1}, + [6478] = {.lex_state = 52, .external_lex_state = 1}, + [6479] = {.lex_state = 52, .external_lex_state = 1}, + [6480] = {.lex_state = 82, .external_lex_state = 1}, + [6481] = {.lex_state = 64, .external_lex_state = 1}, + [6482] = {.lex_state = 82, .external_lex_state = 1}, + [6483] = {.lex_state = 82, .external_lex_state = 1}, + [6484] = {.lex_state = 82, .external_lex_state = 1}, + [6485] = {.lex_state = 60, .external_lex_state = 1}, + [6486] = {.lex_state = 52, .external_lex_state = 1}, + [6487] = {.lex_state = 82, .external_lex_state = 1}, + [6488] = {.lex_state = 82, .external_lex_state = 1}, + [6489] = {.lex_state = 111, .external_lex_state = 1}, + [6490] = {.lex_state = 82, .external_lex_state = 1}, + [6491] = {.lex_state = 82, .external_lex_state = 1}, + [6492] = {.lex_state = 82, .external_lex_state = 1}, + [6493] = {.lex_state = 82, .external_lex_state = 1}, + [6494] = {.lex_state = 82, .external_lex_state = 1}, + [6495] = {.lex_state = 111, .external_lex_state = 1}, + [6496] = {.lex_state = 82, .external_lex_state = 1}, + [6497] = {.lex_state = 82, .external_lex_state = 1}, + [6498] = {.lex_state = 82, .external_lex_state = 1}, + [6499] = {.lex_state = 111, .external_lex_state = 1}, + [6500] = {.lex_state = 82, .external_lex_state = 1}, + [6501] = {.lex_state = 82, .external_lex_state = 1}, + [6502] = {.lex_state = 82, .external_lex_state = 1}, + [6503] = {.lex_state = 111, .external_lex_state = 1}, + [6504] = {.lex_state = 82, .external_lex_state = 1}, + [6505] = {.lex_state = 82, .external_lex_state = 1}, + [6506] = {.lex_state = 82, .external_lex_state = 1}, + [6507] = {.lex_state = 82, .external_lex_state = 1}, + [6508] = {.lex_state = 82, .external_lex_state = 1}, + [6509] = {.lex_state = 82, .external_lex_state = 1}, + [6510] = {.lex_state = 82, .external_lex_state = 1}, + [6511] = {.lex_state = 82, .external_lex_state = 1}, + [6512] = {.lex_state = 60, .external_lex_state = 1}, + [6513] = {.lex_state = 80, .external_lex_state = 1}, + [6514] = {.lex_state = 82, .external_lex_state = 1}, + [6515] = {.lex_state = 63, .external_lex_state = 1}, + [6516] = {.lex_state = 82, .external_lex_state = 1}, + [6517] = {.lex_state = 82, .external_lex_state = 1}, + [6518] = {.lex_state = 82, .external_lex_state = 1}, + [6519] = {.lex_state = 82, .external_lex_state = 1}, + [6520] = {.lex_state = 82, .external_lex_state = 1}, + [6521] = {.lex_state = 82, .external_lex_state = 1}, + [6522] = {.lex_state = 82, .external_lex_state = 1}, + [6523] = {.lex_state = 82, .external_lex_state = 1}, + [6524] = {.lex_state = 82, .external_lex_state = 1}, + [6525] = {.lex_state = 60, .external_lex_state = 1}, + [6526] = {.lex_state = 82, .external_lex_state = 1}, + [6527] = {.lex_state = 82, .external_lex_state = 1}, + [6528] = {.lex_state = 82, .external_lex_state = 1}, + [6529] = {.lex_state = 82, .external_lex_state = 1}, + [6530] = {.lex_state = 82, .external_lex_state = 1}, + [6531] = {.lex_state = 63, .external_lex_state = 1}, + [6532] = {.lex_state = 82, .external_lex_state = 1}, + [6533] = {.lex_state = 78, .external_lex_state = 1}, + [6534] = {.lex_state = 82, .external_lex_state = 1}, + [6535] = {.lex_state = 82, .external_lex_state = 1}, + [6536] = {.lex_state = 63, .external_lex_state = 1}, + [6537] = {.lex_state = 82, .external_lex_state = 1}, + [6538] = {.lex_state = 82, .external_lex_state = 1}, + [6539] = {.lex_state = 82, .external_lex_state = 1}, + [6540] = {.lex_state = 82, .external_lex_state = 1}, + [6541] = {.lex_state = 82, .external_lex_state = 1}, + [6542] = {.lex_state = 78, .external_lex_state = 1}, + [6543] = {.lex_state = 111, .external_lex_state = 1}, + [6544] = {.lex_state = 111, .external_lex_state = 1}, + [6545] = {.lex_state = 47, .external_lex_state = 1}, + [6546] = {.lex_state = 111, .external_lex_state = 1}, + [6547] = {.lex_state = 111, .external_lex_state = 1}, + [6548] = {.lex_state = 111, .external_lex_state = 1}, + [6549] = {.lex_state = 59, .external_lex_state = 1}, + [6550] = {.lex_state = 50, .external_lex_state = 1}, + [6551] = {.lex_state = 50, .external_lex_state = 1}, + [6552] = {.lex_state = 50, .external_lex_state = 1}, + [6553] = {.lex_state = 50, .external_lex_state = 1}, + [6554] = {.lex_state = 50, .external_lex_state = 1}, + [6555] = {.lex_state = 50, .external_lex_state = 1}, + [6556] = {.lex_state = 50, .external_lex_state = 1}, + [6557] = {.lex_state = 50, .external_lex_state = 1}, + [6558] = {.lex_state = 50, .external_lex_state = 1}, + [6559] = {.lex_state = 50, .external_lex_state = 1}, + [6560] = {.lex_state = 50, .external_lex_state = 1}, + [6561] = {.lex_state = 50, .external_lex_state = 1}, + [6562] = {.lex_state = 50, .external_lex_state = 1}, + [6563] = {.lex_state = 50, .external_lex_state = 1}, + [6564] = {.lex_state = 50, .external_lex_state = 1}, + [6565] = {.lex_state = 50, .external_lex_state = 1}, + [6566] = {.lex_state = 50, .external_lex_state = 1}, + [6567] = {.lex_state = 50, .external_lex_state = 1}, + [6568] = {.lex_state = 50, .external_lex_state = 1}, + [6569] = {.lex_state = 50, .external_lex_state = 1}, + [6570] = {.lex_state = 50, .external_lex_state = 1}, + [6571] = {.lex_state = 50, .external_lex_state = 1}, + [6572] = {.lex_state = 50, .external_lex_state = 1}, + [6573] = {.lex_state = 50, .external_lex_state = 1}, + [6574] = {.lex_state = 50, .external_lex_state = 1}, + [6575] = {.lex_state = 65, .external_lex_state = 1}, + [6576] = {.lex_state = 65, .external_lex_state = 1}, + [6577] = {.lex_state = 65, .external_lex_state = 1}, + [6578] = {.lex_state = 53, .external_lex_state = 1}, + [6579] = {.lex_state = 50, .external_lex_state = 1}, + [6580] = {.lex_state = 65, .external_lex_state = 1}, + [6581] = {.lex_state = 65, .external_lex_state = 1}, + [6582] = {.lex_state = 65, .external_lex_state = 1}, + [6583] = {.lex_state = 50, .external_lex_state = 1}, + [6584] = {.lex_state = 65, .external_lex_state = 1}, + [6585] = {.lex_state = 65, .external_lex_state = 1}, + [6586] = {.lex_state = 65, .external_lex_state = 1}, + [6587] = {.lex_state = 84, .external_lex_state = 1}, + [6588] = {.lex_state = 65, .external_lex_state = 1}, + [6589] = {.lex_state = 65, .external_lex_state = 1}, + [6590] = {.lex_state = 65, .external_lex_state = 1}, + [6591] = {.lex_state = 65, .external_lex_state = 1}, + [6592] = {.lex_state = 65, .external_lex_state = 1}, + [6593] = {.lex_state = 65, .external_lex_state = 1}, + [6594] = {.lex_state = 65, .external_lex_state = 1}, + [6595] = {.lex_state = 65, .external_lex_state = 1}, + [6596] = {.lex_state = 65, .external_lex_state = 1}, + [6597] = {.lex_state = 47, .external_lex_state = 1}, + [6598] = {.lex_state = 65, .external_lex_state = 1}, + [6599] = {.lex_state = 50, .external_lex_state = 1}, + [6600] = {.lex_state = 47, .external_lex_state = 1}, + [6601] = {.lex_state = 75, .external_lex_state = 1}, + [6602] = {.lex_state = 65, .external_lex_state = 1}, + [6603] = {.lex_state = 87, .external_lex_state = 1}, + [6604] = {.lex_state = 65, .external_lex_state = 1}, + [6605] = {.lex_state = 57, .external_lex_state = 1}, + [6606] = {.lex_state = 547, .external_lex_state = 1}, + [6607] = {.lex_state = 55, .external_lex_state = 1}, + [6608] = {.lex_state = 55, .external_lex_state = 1}, + [6609] = {.lex_state = 55, .external_lex_state = 1}, + [6610] = {.lex_state = 55, .external_lex_state = 1}, + [6611] = {.lex_state = 55, .external_lex_state = 1}, + [6612] = {.lex_state = 55, .external_lex_state = 1}, + [6613] = {.lex_state = 55, .external_lex_state = 1}, + [6614] = {.lex_state = 55, .external_lex_state = 1}, + [6615] = {.lex_state = 55, .external_lex_state = 1}, + [6616] = {.lex_state = 55, .external_lex_state = 1}, + [6617] = {.lex_state = 55, .external_lex_state = 1}, + [6618] = {.lex_state = 55, .external_lex_state = 1}, + [6619] = {.lex_state = 55, .external_lex_state = 1}, + [6620] = {.lex_state = 55, .external_lex_state = 1}, + [6621] = {.lex_state = 55, .external_lex_state = 1}, + [6622] = {.lex_state = 55, .external_lex_state = 1}, + [6623] = {.lex_state = 55, .external_lex_state = 1}, + [6624] = {.lex_state = 55, .external_lex_state = 1}, + [6625] = {.lex_state = 55, .external_lex_state = 1}, + [6626] = {.lex_state = 55, .external_lex_state = 1}, + [6627] = {.lex_state = 55, .external_lex_state = 1}, + [6628] = {.lex_state = 55, .external_lex_state = 1}, + [6629] = {.lex_state = 55, .external_lex_state = 1}, + [6630] = {.lex_state = 55, .external_lex_state = 1}, + [6631] = {.lex_state = 55, .external_lex_state = 1}, + [6632] = {.lex_state = 55, .external_lex_state = 1}, + [6633] = {.lex_state = 55, .external_lex_state = 1}, + [6634] = {.lex_state = 55, .external_lex_state = 1}, + [6635] = {.lex_state = 55, .external_lex_state = 1}, + [6636] = {.lex_state = 55, .external_lex_state = 1}, + [6637] = {.lex_state = 55, .external_lex_state = 1}, + [6638] = {.lex_state = 55, .external_lex_state = 1}, + [6639] = {.lex_state = 55, .external_lex_state = 1}, + [6640] = {.lex_state = 55, .external_lex_state = 1}, + [6641] = {.lex_state = 55, .external_lex_state = 1}, + [6642] = {.lex_state = 55, .external_lex_state = 1}, + [6643] = {.lex_state = 55, .external_lex_state = 1}, + [6644] = {.lex_state = 55, .external_lex_state = 1}, + [6645] = {.lex_state = 55, .external_lex_state = 1}, + [6646] = {.lex_state = 55, .external_lex_state = 1}, + [6647] = {.lex_state = 55, .external_lex_state = 1}, + [6648] = {.lex_state = 55, .external_lex_state = 1}, + [6649] = {.lex_state = 55, .external_lex_state = 1}, + [6650] = {.lex_state = 55, .external_lex_state = 1}, + [6651] = {.lex_state = 55, .external_lex_state = 1}, + [6652] = {.lex_state = 55, .external_lex_state = 1}, + [6653] = {.lex_state = 55, .external_lex_state = 1}, + [6654] = {.lex_state = 55, .external_lex_state = 1}, + [6655] = {.lex_state = 55, .external_lex_state = 1}, + [6656] = {.lex_state = 55, .external_lex_state = 1}, + [6657] = {.lex_state = 55, .external_lex_state = 1}, + [6658] = {.lex_state = 55, .external_lex_state = 1}, + [6659] = {.lex_state = 55, .external_lex_state = 1}, + [6660] = {.lex_state = 55, .external_lex_state = 1}, + [6661] = {.lex_state = 56, .external_lex_state = 1}, + [6662] = {.lex_state = 55, .external_lex_state = 1}, + [6663] = {.lex_state = 56, .external_lex_state = 1}, + [6664] = {.lex_state = 56, .external_lex_state = 1}, + [6665] = {.lex_state = 56, .external_lex_state = 1}, + [6666] = {.lex_state = 56, .external_lex_state = 1}, + [6667] = {.lex_state = 56, .external_lex_state = 1}, + [6668] = {.lex_state = 56, .external_lex_state = 1}, + [6669] = {.lex_state = 56, .external_lex_state = 1}, + [6670] = {.lex_state = 56, .external_lex_state = 1}, + [6671] = {.lex_state = 56, .external_lex_state = 1}, + [6672] = {.lex_state = 56, .external_lex_state = 1}, + [6673] = {.lex_state = 56, .external_lex_state = 1}, + [6674] = {.lex_state = 56, .external_lex_state = 1}, + [6675] = {.lex_state = 56, .external_lex_state = 1}, + [6676] = {.lex_state = 56, .external_lex_state = 1}, + [6677] = {.lex_state = 56, .external_lex_state = 1}, + [6678] = {.lex_state = 56, .external_lex_state = 1}, + [6679] = {.lex_state = 56, .external_lex_state = 1}, + [6680] = {.lex_state = 56, .external_lex_state = 1}, + [6681] = {.lex_state = 56, .external_lex_state = 1}, + [6682] = {.lex_state = 56, .external_lex_state = 1}, + [6683] = {.lex_state = 56, .external_lex_state = 1}, + [6684] = {.lex_state = 56, .external_lex_state = 1}, + [6685] = {.lex_state = 56, .external_lex_state = 1}, + [6686] = {.lex_state = 56, .external_lex_state = 1}, + [6687] = {.lex_state = 56, .external_lex_state = 1}, + [6688] = {.lex_state = 56, .external_lex_state = 1}, + [6689] = {.lex_state = 56, .external_lex_state = 1}, + [6690] = {.lex_state = 56, .external_lex_state = 1}, + [6691] = {.lex_state = 56, .external_lex_state = 1}, + [6692] = {.lex_state = 56, .external_lex_state = 1}, + [6693] = {.lex_state = 56, .external_lex_state = 1}, + [6694] = {.lex_state = 56, .external_lex_state = 1}, + [6695] = {.lex_state = 56, .external_lex_state = 1}, + [6696] = {.lex_state = 56, .external_lex_state = 1}, + [6697] = {.lex_state = 56, .external_lex_state = 1}, + [6698] = {.lex_state = 56, .external_lex_state = 1}, + [6699] = {.lex_state = 56, .external_lex_state = 1}, + [6700] = {.lex_state = 56, .external_lex_state = 1}, + [6701] = {.lex_state = 56, .external_lex_state = 1}, + [6702] = {.lex_state = 56, .external_lex_state = 1}, + [6703] = {.lex_state = 56, .external_lex_state = 1}, + [6704] = {.lex_state = 56, .external_lex_state = 1}, + [6705] = {.lex_state = 56, .external_lex_state = 1}, + [6706] = {.lex_state = 56, .external_lex_state = 1}, + [6707] = {.lex_state = 56, .external_lex_state = 1}, + [6708] = {.lex_state = 56, .external_lex_state = 1}, + [6709] = {.lex_state = 56, .external_lex_state = 1}, + [6710] = {.lex_state = 56, .external_lex_state = 1}, + [6711] = {.lex_state = 56, .external_lex_state = 1}, + [6712] = {.lex_state = 56, .external_lex_state = 1}, + [6713] = {.lex_state = 56, .external_lex_state = 1}, + [6714] = {.lex_state = 56, .external_lex_state = 1}, + [6715] = {.lex_state = 55, .external_lex_state = 1}, + [6716] = {.lex_state = 67, .external_lex_state = 1}, + [6717] = {.lex_state = 67, .external_lex_state = 1}, + [6718] = {.lex_state = 67, .external_lex_state = 1}, + [6719] = {.lex_state = 67, .external_lex_state = 1}, + [6720] = {.lex_state = 56, .external_lex_state = 1}, + [6721] = {.lex_state = 67, .external_lex_state = 1}, + [6722] = {.lex_state = 67, .external_lex_state = 1}, + [6723] = {.lex_state = 67, .external_lex_state = 1}, + [6724] = {.lex_state = 67, .external_lex_state = 1}, + [6725] = {.lex_state = 67, .external_lex_state = 1}, + [6726] = {.lex_state = 55, .external_lex_state = 1}, + [6727] = {.lex_state = 67, .external_lex_state = 1}, + [6728] = {.lex_state = 67, .external_lex_state = 1}, + [6729] = {.lex_state = 67, .external_lex_state = 1}, + [6730] = {.lex_state = 67, .external_lex_state = 1}, + [6731] = {.lex_state = 67, .external_lex_state = 1}, + [6732] = {.lex_state = 67, .external_lex_state = 1}, + [6733] = {.lex_state = 67, .external_lex_state = 1}, + [6734] = {.lex_state = 67, .external_lex_state = 1}, + [6735] = {.lex_state = 67, .external_lex_state = 1}, + [6736] = {.lex_state = 67, .external_lex_state = 1}, + [6737] = {.lex_state = 67, .external_lex_state = 1}, + [6738] = {.lex_state = 67, .external_lex_state = 1}, + [6739] = {.lex_state = 67, .external_lex_state = 1}, + [6740] = {.lex_state = 67, .external_lex_state = 1}, + [6741] = {.lex_state = 67, .external_lex_state = 1}, + [6742] = {.lex_state = 67, .external_lex_state = 1}, + [6743] = {.lex_state = 67, .external_lex_state = 1}, + [6744] = {.lex_state = 67, .external_lex_state = 1}, + [6745] = {.lex_state = 67, .external_lex_state = 1}, + [6746] = {.lex_state = 67, .external_lex_state = 1}, + [6747] = {.lex_state = 67, .external_lex_state = 1}, + [6748] = {.lex_state = 67, .external_lex_state = 1}, + [6749] = {.lex_state = 67, .external_lex_state = 1}, + [6750] = {.lex_state = 67, .external_lex_state = 1}, + [6751] = {.lex_state = 67, .external_lex_state = 1}, + [6752] = {.lex_state = 67, .external_lex_state = 1}, + [6753] = {.lex_state = 67, .external_lex_state = 1}, + [6754] = {.lex_state = 67, .external_lex_state = 1}, + [6755] = {.lex_state = 67, .external_lex_state = 1}, + [6756] = {.lex_state = 67, .external_lex_state = 1}, + [6757] = {.lex_state = 67, .external_lex_state = 1}, + [6758] = {.lex_state = 67, .external_lex_state = 1}, + [6759] = {.lex_state = 67, .external_lex_state = 1}, + [6760] = {.lex_state = 67, .external_lex_state = 1}, + [6761] = {.lex_state = 67, .external_lex_state = 1}, + [6762] = {.lex_state = 67, .external_lex_state = 1}, + [6763] = {.lex_state = 67, .external_lex_state = 1}, + [6764] = {.lex_state = 67, .external_lex_state = 1}, + [6765] = {.lex_state = 67, .external_lex_state = 1}, + [6766] = {.lex_state = 67, .external_lex_state = 1}, + [6767] = {.lex_state = 67, .external_lex_state = 1}, + [6768] = {.lex_state = 67, .external_lex_state = 1}, + [6769] = {.lex_state = 67, .external_lex_state = 1}, + [6770] = {.lex_state = 67, .external_lex_state = 1}, + [6771] = {.lex_state = 79, .external_lex_state = 1}, + [6772] = {.lex_state = 79, .external_lex_state = 1}, + [6773] = {.lex_state = 79, .external_lex_state = 1}, + [6774] = {.lex_state = 79, .external_lex_state = 1}, + [6775] = {.lex_state = 67, .external_lex_state = 1}, + [6776] = {.lex_state = 79, .external_lex_state = 1}, + [6777] = {.lex_state = 79, .external_lex_state = 1}, + [6778] = {.lex_state = 79, .external_lex_state = 1}, + [6779] = {.lex_state = 79, .external_lex_state = 1}, + [6780] = {.lex_state = 79, .external_lex_state = 1}, + [6781] = {.lex_state = 79, .external_lex_state = 1}, + [6782] = {.lex_state = 79, .external_lex_state = 1}, + [6783] = {.lex_state = 79, .external_lex_state = 1}, + [6784] = {.lex_state = 79, .external_lex_state = 1}, + [6785] = {.lex_state = 79, .external_lex_state = 1}, + [6786] = {.lex_state = 79, .external_lex_state = 1}, + [6787] = {.lex_state = 79, .external_lex_state = 1}, + [6788] = {.lex_state = 79, .external_lex_state = 1}, + [6789] = {.lex_state = 79, .external_lex_state = 1}, + [6790] = {.lex_state = 79, .external_lex_state = 1}, + [6791] = {.lex_state = 79, .external_lex_state = 1}, + [6792] = {.lex_state = 79, .external_lex_state = 1}, + [6793] = {.lex_state = 79, .external_lex_state = 1}, + [6794] = {.lex_state = 79, .external_lex_state = 1}, + [6795] = {.lex_state = 79, .external_lex_state = 1}, + [6796] = {.lex_state = 79, .external_lex_state = 1}, + [6797] = {.lex_state = 79, .external_lex_state = 1}, + [6798] = {.lex_state = 79, .external_lex_state = 1}, + [6799] = {.lex_state = 79, .external_lex_state = 1}, + [6800] = {.lex_state = 79, .external_lex_state = 1}, + [6801] = {.lex_state = 79, .external_lex_state = 1}, + [6802] = {.lex_state = 79, .external_lex_state = 1}, + [6803] = {.lex_state = 79, .external_lex_state = 1}, + [6804] = {.lex_state = 79, .external_lex_state = 1}, + [6805] = {.lex_state = 79, .external_lex_state = 1}, + [6806] = {.lex_state = 79, .external_lex_state = 1}, + [6807] = {.lex_state = 79, .external_lex_state = 1}, + [6808] = {.lex_state = 79, .external_lex_state = 1}, + [6809] = {.lex_state = 79, .external_lex_state = 1}, + [6810] = {.lex_state = 79, .external_lex_state = 1}, + [6811] = {.lex_state = 79, .external_lex_state = 1}, + [6812] = {.lex_state = 79, .external_lex_state = 1}, + [6813] = {.lex_state = 79, .external_lex_state = 1}, + [6814] = {.lex_state = 79, .external_lex_state = 1}, + [6815] = {.lex_state = 79, .external_lex_state = 1}, + [6816] = {.lex_state = 79, .external_lex_state = 1}, + [6817] = {.lex_state = 79, .external_lex_state = 1}, + [6818] = {.lex_state = 79, .external_lex_state = 1}, + [6819] = {.lex_state = 79, .external_lex_state = 1}, + [6820] = {.lex_state = 79, .external_lex_state = 1}, + [6821] = {.lex_state = 79, .external_lex_state = 1}, + [6822] = {.lex_state = 79, .external_lex_state = 1}, + [6823] = {.lex_state = 79, .external_lex_state = 1}, + [6824] = {.lex_state = 79, .external_lex_state = 1}, + [6825] = {.lex_state = 74, .external_lex_state = 1}, + [6826] = {.lex_state = 74, .external_lex_state = 1}, + [6827] = {.lex_state = 74, .external_lex_state = 1}, + [6828] = {.lex_state = 74, .external_lex_state = 1}, + [6829] = {.lex_state = 79, .external_lex_state = 1}, + [6830] = {.lex_state = 74, .external_lex_state = 1}, + [6831] = {.lex_state = 74, .external_lex_state = 1}, + [6832] = {.lex_state = 74, .external_lex_state = 1}, + [6833] = {.lex_state = 74, .external_lex_state = 1}, + [6834] = {.lex_state = 74, .external_lex_state = 1}, + [6835] = {.lex_state = 74, .external_lex_state = 1}, + [6836] = {.lex_state = 74, .external_lex_state = 1}, + [6837] = {.lex_state = 74, .external_lex_state = 1}, + [6838] = {.lex_state = 74, .external_lex_state = 1}, + [6839] = {.lex_state = 74, .external_lex_state = 1}, + [6840] = {.lex_state = 74, .external_lex_state = 1}, + [6841] = {.lex_state = 74, .external_lex_state = 1}, + [6842] = {.lex_state = 74, .external_lex_state = 1}, + [6843] = {.lex_state = 74, .external_lex_state = 1}, + [6844] = {.lex_state = 74, .external_lex_state = 1}, + [6845] = {.lex_state = 74, .external_lex_state = 1}, + [6846] = {.lex_state = 74, .external_lex_state = 1}, + [6847] = {.lex_state = 74, .external_lex_state = 1}, + [6848] = {.lex_state = 74, .external_lex_state = 1}, + [6849] = {.lex_state = 74, .external_lex_state = 1}, + [6850] = {.lex_state = 74, .external_lex_state = 1}, + [6851] = {.lex_state = 74, .external_lex_state = 1}, + [6852] = {.lex_state = 74, .external_lex_state = 1}, + [6853] = {.lex_state = 74, .external_lex_state = 1}, + [6854] = {.lex_state = 74, .external_lex_state = 1}, + [6855] = {.lex_state = 74, .external_lex_state = 1}, + [6856] = {.lex_state = 74, .external_lex_state = 1}, + [6857] = {.lex_state = 74, .external_lex_state = 1}, + [6858] = {.lex_state = 74, .external_lex_state = 1}, + [6859] = {.lex_state = 74, .external_lex_state = 1}, + [6860] = {.lex_state = 74, .external_lex_state = 1}, + [6861] = {.lex_state = 74, .external_lex_state = 1}, + [6862] = {.lex_state = 74, .external_lex_state = 1}, + [6863] = {.lex_state = 74, .external_lex_state = 1}, + [6864] = {.lex_state = 74, .external_lex_state = 1}, + [6865] = {.lex_state = 74, .external_lex_state = 1}, + [6866] = {.lex_state = 74, .external_lex_state = 1}, + [6867] = {.lex_state = 74, .external_lex_state = 1}, + [6868] = {.lex_state = 74, .external_lex_state = 1}, + [6869] = {.lex_state = 74, .external_lex_state = 1}, + [6870] = {.lex_state = 74, .external_lex_state = 1}, + [6871] = {.lex_state = 74, .external_lex_state = 1}, + [6872] = {.lex_state = 74, .external_lex_state = 1}, + [6873] = {.lex_state = 74, .external_lex_state = 1}, + [6874] = {.lex_state = 74, .external_lex_state = 1}, + [6875] = {.lex_state = 74, .external_lex_state = 1}, + [6876] = {.lex_state = 74, .external_lex_state = 1}, + [6877] = {.lex_state = 74, .external_lex_state = 1}, + [6878] = {.lex_state = 74, .external_lex_state = 1}, + [6879] = {.lex_state = 74, .external_lex_state = 1}, + [6880] = {.lex_state = 81, .external_lex_state = 1}, + [6881] = {.lex_state = 56, .external_lex_state = 1}, + [6882] = {.lex_state = 56, .external_lex_state = 1}, + [6883] = {.lex_state = 76, .external_lex_state = 1}, + [6884] = {.lex_state = 67, .external_lex_state = 1}, + [6885] = {.lex_state = 56, .external_lex_state = 1}, + [6886] = {.lex_state = 67, .external_lex_state = 1}, + [6887] = {.lex_state = 79, .external_lex_state = 1}, + [6888] = {.lex_state = 67, .external_lex_state = 1}, + [6889] = {.lex_state = 79, .external_lex_state = 1}, + [6890] = {.lex_state = 55, .external_lex_state = 1}, + [6891] = {.lex_state = 74, .external_lex_state = 1}, + [6892] = {.lex_state = 79, .external_lex_state = 1}, + [6893] = {.lex_state = 74, .external_lex_state = 1}, + [6894] = {.lex_state = 74, .external_lex_state = 1}, + [6895] = {.lex_state = 83, .external_lex_state = 1}, + [6896] = {.lex_state = 83, .external_lex_state = 1}, + [6897] = {.lex_state = 83, .external_lex_state = 1}, + [6898] = {.lex_state = 83, .external_lex_state = 1}, + [6899] = {.lex_state = 83, .external_lex_state = 1}, + [6900] = {.lex_state = 83, .external_lex_state = 1}, + [6901] = {.lex_state = 83, .external_lex_state = 1}, + [6902] = {.lex_state = 83, .external_lex_state = 1}, + [6903] = {.lex_state = 83, .external_lex_state = 1}, + [6904] = {.lex_state = 84, .external_lex_state = 1}, + [6905] = {.lex_state = 83, .external_lex_state = 1}, + [6906] = {.lex_state = 83, .external_lex_state = 1}, + [6907] = {.lex_state = 83, .external_lex_state = 1}, + [6908] = {.lex_state = 83, .external_lex_state = 1}, + [6909] = {.lex_state = 83, .external_lex_state = 1}, + [6910] = {.lex_state = 83, .external_lex_state = 1}, + [6911] = {.lex_state = 83, .external_lex_state = 1}, + [6912] = {.lex_state = 53, .external_lex_state = 1}, + [6913] = {.lex_state = 83, .external_lex_state = 1}, + [6914] = {.lex_state = 83, .external_lex_state = 1}, + [6915] = {.lex_state = 83, .external_lex_state = 1}, + [6916] = {.lex_state = 83, .external_lex_state = 1}, + [6917] = {.lex_state = 83, .external_lex_state = 1}, + [6918] = {.lex_state = 83, .external_lex_state = 1}, + [6919] = {.lex_state = 83, .external_lex_state = 1}, + [6920] = {.lex_state = 83, .external_lex_state = 1}, + [6921] = {.lex_state = 83, .external_lex_state = 1}, + [6922] = {.lex_state = 83, .external_lex_state = 1}, + [6923] = {.lex_state = 83, .external_lex_state = 1}, + [6924] = {.lex_state = 83, .external_lex_state = 1}, + [6925] = {.lex_state = 83, .external_lex_state = 1}, + [6926] = {.lex_state = 83, .external_lex_state = 1}, + [6927] = {.lex_state = 83, .external_lex_state = 1}, + [6928] = {.lex_state = 83, .external_lex_state = 1}, + [6929] = {.lex_state = 83, .external_lex_state = 1}, + [6930] = {.lex_state = 83, .external_lex_state = 1}, + [6931] = {.lex_state = 83, .external_lex_state = 1}, + [6932] = {.lex_state = 83, .external_lex_state = 1}, + [6933] = {.lex_state = 83, .external_lex_state = 1}, + [6934] = {.lex_state = 83, .external_lex_state = 1}, + [6935] = {.lex_state = 83, .external_lex_state = 1}, + [6936] = {.lex_state = 83, .external_lex_state = 1}, + [6937] = {.lex_state = 84, .external_lex_state = 1}, + [6938] = {.lex_state = 83, .external_lex_state = 1}, + [6939] = {.lex_state = 83, .external_lex_state = 1}, + [6940] = {.lex_state = 83, .external_lex_state = 1}, + [6941] = {.lex_state = 83, .external_lex_state = 1}, + [6942] = {.lex_state = 83, .external_lex_state = 1}, + [6943] = {.lex_state = 83, .external_lex_state = 1}, + [6944] = {.lex_state = 83, .external_lex_state = 1}, + [6945] = {.lex_state = 83, .external_lex_state = 1}, + [6946] = {.lex_state = 83, .external_lex_state = 1}, + [6947] = {.lex_state = 83, .external_lex_state = 1}, + [6948] = {.lex_state = 83, .external_lex_state = 1}, + [6949] = {.lex_state = 83, .external_lex_state = 1}, + [6950] = {.lex_state = 83, .external_lex_state = 1}, + [6951] = {.lex_state = 86, .external_lex_state = 1}, + [6952] = {.lex_state = 86, .external_lex_state = 1}, + [6953] = {.lex_state = 86, .external_lex_state = 1}, + [6954] = {.lex_state = 86, .external_lex_state = 1}, + [6955] = {.lex_state = 83, .external_lex_state = 1}, + [6956] = {.lex_state = 86, .external_lex_state = 1}, + [6957] = {.lex_state = 86, .external_lex_state = 1}, + [6958] = {.lex_state = 86, .external_lex_state = 1}, + [6959] = {.lex_state = 86, .external_lex_state = 1}, + [6960] = {.lex_state = 84, .external_lex_state = 1}, + [6961] = {.lex_state = 86, .external_lex_state = 1}, + [6962] = {.lex_state = 86, .external_lex_state = 1}, + [6963] = {.lex_state = 86, .external_lex_state = 1}, + [6964] = {.lex_state = 86, .external_lex_state = 1}, + [6965] = {.lex_state = 86, .external_lex_state = 1}, + [6966] = {.lex_state = 86, .external_lex_state = 1}, + [6967] = {.lex_state = 86, .external_lex_state = 1}, + [6968] = {.lex_state = 86, .external_lex_state = 1}, + [6969] = {.lex_state = 86, .external_lex_state = 1}, + [6970] = {.lex_state = 86, .external_lex_state = 1}, + [6971] = {.lex_state = 86, .external_lex_state = 1}, + [6972] = {.lex_state = 86, .external_lex_state = 1}, + [6973] = {.lex_state = 86, .external_lex_state = 1}, + [6974] = {.lex_state = 86, .external_lex_state = 1}, + [6975] = {.lex_state = 86, .external_lex_state = 1}, + [6976] = {.lex_state = 86, .external_lex_state = 1}, + [6977] = {.lex_state = 86, .external_lex_state = 1}, + [6978] = {.lex_state = 86, .external_lex_state = 1}, + [6979] = {.lex_state = 86, .external_lex_state = 1}, + [6980] = {.lex_state = 86, .external_lex_state = 1}, + [6981] = {.lex_state = 86, .external_lex_state = 1}, + [6982] = {.lex_state = 86, .external_lex_state = 1}, + [6983] = {.lex_state = 86, .external_lex_state = 1}, + [6984] = {.lex_state = 86, .external_lex_state = 1}, + [6985] = {.lex_state = 86, .external_lex_state = 1}, + [6986] = {.lex_state = 84, .external_lex_state = 1}, + [6987] = {.lex_state = 86, .external_lex_state = 1}, + [6988] = {.lex_state = 86, .external_lex_state = 1}, + [6989] = {.lex_state = 86, .external_lex_state = 1}, + [6990] = {.lex_state = 86, .external_lex_state = 1}, + [6991] = {.lex_state = 86, .external_lex_state = 1}, + [6992] = {.lex_state = 86, .external_lex_state = 1}, + [6993] = {.lex_state = 86, .external_lex_state = 1}, + [6994] = {.lex_state = 86, .external_lex_state = 1}, + [6995] = {.lex_state = 86, .external_lex_state = 1}, + [6996] = {.lex_state = 86, .external_lex_state = 1}, + [6997] = {.lex_state = 86, .external_lex_state = 1}, + [6998] = {.lex_state = 86, .external_lex_state = 1}, + [6999] = {.lex_state = 86, .external_lex_state = 1}, + [7000] = {.lex_state = 86, .external_lex_state = 1}, + [7001] = {.lex_state = 86, .external_lex_state = 1}, + [7002] = {.lex_state = 86, .external_lex_state = 1}, + [7003] = {.lex_state = 86, .external_lex_state = 1}, + [7004] = {.lex_state = 86, .external_lex_state = 1}, + [7005] = {.lex_state = 86, .external_lex_state = 1}, + [7006] = {.lex_state = 86, .external_lex_state = 1}, + [7007] = {.lex_state = 84, .external_lex_state = 1}, + [7008] = {.lex_state = 84, .external_lex_state = 1}, + [7009] = {.lex_state = 84, .external_lex_state = 1}, + [7010] = {.lex_state = 86, .external_lex_state = 1}, + [7011] = {.lex_state = 84, .external_lex_state = 1}, + [7012] = {.lex_state = 84, .external_lex_state = 1}, + [7013] = {.lex_state = 84, .external_lex_state = 1}, + [7014] = {.lex_state = 84, .external_lex_state = 1}, + [7015] = {.lex_state = 84, .external_lex_state = 1}, + [7016] = {.lex_state = 84, .external_lex_state = 1}, + [7017] = {.lex_state = 84, .external_lex_state = 1}, + [7018] = {.lex_state = 84, .external_lex_state = 1}, + [7019] = {.lex_state = 84, .external_lex_state = 1}, + [7020] = {.lex_state = 84, .external_lex_state = 1}, + [7021] = {.lex_state = 84, .external_lex_state = 1}, + [7022] = {.lex_state = 84, .external_lex_state = 1}, + [7023] = {.lex_state = 84, .external_lex_state = 1}, + [7024] = {.lex_state = 84, .external_lex_state = 1}, + [7025] = {.lex_state = 84, .external_lex_state = 1}, + [7026] = {.lex_state = 84, .external_lex_state = 1}, + [7027] = {.lex_state = 84, .external_lex_state = 1}, + [7028] = {.lex_state = 84, .external_lex_state = 1}, + [7029] = {.lex_state = 84, .external_lex_state = 1}, + [7030] = {.lex_state = 84, .external_lex_state = 1}, + [7031] = {.lex_state = 84, .external_lex_state = 1}, + [7032] = {.lex_state = 84, .external_lex_state = 1}, + [7033] = {.lex_state = 84, .external_lex_state = 1}, + [7034] = {.lex_state = 84, .external_lex_state = 1}, + [7035] = {.lex_state = 84, .external_lex_state = 1}, + [7036] = {.lex_state = 84, .external_lex_state = 1}, + [7037] = {.lex_state = 84, .external_lex_state = 1}, + [7038] = {.lex_state = 84, .external_lex_state = 1}, + [7039] = {.lex_state = 84, .external_lex_state = 1}, + [7040] = {.lex_state = 84, .external_lex_state = 1}, + [7041] = {.lex_state = 84, .external_lex_state = 1}, + [7042] = {.lex_state = 84, .external_lex_state = 1}, + [7043] = {.lex_state = 84, .external_lex_state = 1}, + [7044] = {.lex_state = 84, .external_lex_state = 1}, + [7045] = {.lex_state = 84, .external_lex_state = 1}, + [7046] = {.lex_state = 50, .external_lex_state = 1}, + [7047] = {.lex_state = 84, .external_lex_state = 1}, + [7048] = {.lex_state = 84, .external_lex_state = 1}, + [7049] = {.lex_state = 84, .external_lex_state = 1}, + [7050] = {.lex_state = 84, .external_lex_state = 1}, + [7051] = {.lex_state = 84, .external_lex_state = 1}, + [7052] = {.lex_state = 84, .external_lex_state = 1}, + [7053] = {.lex_state = 84, .external_lex_state = 1}, + [7054] = {.lex_state = 84, .external_lex_state = 1}, + [7055] = {.lex_state = 56, .external_lex_state = 1}, + [7056] = {.lex_state = 84, .external_lex_state = 1}, + [7057] = {.lex_state = 84, .external_lex_state = 1}, + [7058] = {.lex_state = 53, .external_lex_state = 1}, + [7059] = {.lex_state = 69, .external_lex_state = 1}, + [7060] = {.lex_state = 67, .external_lex_state = 1}, + [7061] = {.lex_state = 47, .external_lex_state = 1}, + [7062] = {.lex_state = 79, .external_lex_state = 1}, + [7063] = {.lex_state = 83, .external_lex_state = 1}, + [7064] = {.lex_state = 50, .external_lex_state = 1}, + [7065] = {.lex_state = 83, .external_lex_state = 1}, + [7066] = {.lex_state = 74, .external_lex_state = 1}, + [7067] = {.lex_state = 61, .external_lex_state = 1}, + [7068] = {.lex_state = 86, .external_lex_state = 1}, + [7069] = {.lex_state = 61, .external_lex_state = 1}, + [7070] = {.lex_state = 61, .external_lex_state = 1}, + [7071] = {.lex_state = 61, .external_lex_state = 1}, + [7072] = {.lex_state = 61, .external_lex_state = 1}, + [7073] = {.lex_state = 61, .external_lex_state = 1}, + [7074] = {.lex_state = 61, .external_lex_state = 1}, + [7075] = {.lex_state = 61, .external_lex_state = 1}, + [7076] = {.lex_state = 61, .external_lex_state = 1}, + [7077] = {.lex_state = 83, .external_lex_state = 1}, + [7078] = {.lex_state = 61, .external_lex_state = 1}, + [7079] = {.lex_state = 61, .external_lex_state = 1}, + [7080] = {.lex_state = 61, .external_lex_state = 1}, + [7081] = {.lex_state = 61, .external_lex_state = 1}, + [7082] = {.lex_state = 61, .external_lex_state = 1}, + [7083] = {.lex_state = 61, .external_lex_state = 1}, + [7084] = {.lex_state = 61, .external_lex_state = 1}, + [7085] = {.lex_state = 61, .external_lex_state = 1}, + [7086] = {.lex_state = 61, .external_lex_state = 1}, + [7087] = {.lex_state = 61, .external_lex_state = 1}, + [7088] = {.lex_state = 61, .external_lex_state = 1}, + [7089] = {.lex_state = 61, .external_lex_state = 1}, + [7090] = {.lex_state = 61, .external_lex_state = 1}, + [7091] = {.lex_state = 61, .external_lex_state = 1}, + [7092] = {.lex_state = 61, .external_lex_state = 1}, + [7093] = {.lex_state = 61, .external_lex_state = 1}, + [7094] = {.lex_state = 61, .external_lex_state = 1}, + [7095] = {.lex_state = 61, .external_lex_state = 1}, + [7096] = {.lex_state = 61, .external_lex_state = 1}, + [7097] = {.lex_state = 61, .external_lex_state = 1}, + [7098] = {.lex_state = 61, .external_lex_state = 1}, + [7099] = {.lex_state = 61, .external_lex_state = 1}, + [7100] = {.lex_state = 61, .external_lex_state = 1}, + [7101] = {.lex_state = 61, .external_lex_state = 1}, + [7102] = {.lex_state = 61, .external_lex_state = 1}, + [7103] = {.lex_state = 61, .external_lex_state = 1}, + [7104] = {.lex_state = 61, .external_lex_state = 1}, + [7105] = {.lex_state = 61, .external_lex_state = 1}, + [7106] = {.lex_state = 61, .external_lex_state = 1}, + [7107] = {.lex_state = 61, .external_lex_state = 1}, + [7108] = {.lex_state = 61, .external_lex_state = 1}, + [7109] = {.lex_state = 61, .external_lex_state = 1}, + [7110] = {.lex_state = 61, .external_lex_state = 1}, + [7111] = {.lex_state = 61, .external_lex_state = 1}, + [7112] = {.lex_state = 61, .external_lex_state = 1}, + [7113] = {.lex_state = 61, .external_lex_state = 1}, + [7114] = {.lex_state = 61, .external_lex_state = 1}, + [7115] = {.lex_state = 61, .external_lex_state = 1}, + [7116] = {.lex_state = 61, .external_lex_state = 1}, + [7117] = {.lex_state = 61, .external_lex_state = 1}, + [7118] = {.lex_state = 61, .external_lex_state = 1}, + [7119] = {.lex_state = 61, .external_lex_state = 1}, + [7120] = {.lex_state = 61, .external_lex_state = 1}, + [7121] = {.lex_state = 61, .external_lex_state = 1}, + [7122] = {.lex_state = 86, .external_lex_state = 1}, + [7123] = {.lex_state = 84, .external_lex_state = 1}, + [7124] = {.lex_state = 61, .external_lex_state = 1}, + [7125] = {.lex_state = 86, .external_lex_state = 1}, + [7126] = {.lex_state = 53, .external_lex_state = 1}, + [7127] = {.lex_state = 68, .external_lex_state = 1}, + [7128] = {.lex_state = 68, .external_lex_state = 1}, + [7129] = {.lex_state = 68, .external_lex_state = 1}, + [7130] = {.lex_state = 68, .external_lex_state = 1}, + [7131] = {.lex_state = 68, .external_lex_state = 1}, + [7132] = {.lex_state = 68, .external_lex_state = 1}, + [7133] = {.lex_state = 68, .external_lex_state = 1}, + [7134] = {.lex_state = 68, .external_lex_state = 1}, + [7135] = {.lex_state = 68, .external_lex_state = 1}, + [7136] = {.lex_state = 68, .external_lex_state = 1}, + [7137] = {.lex_state = 68, .external_lex_state = 1}, + [7138] = {.lex_state = 68, .external_lex_state = 1}, + [7139] = {.lex_state = 68, .external_lex_state = 1}, + [7140] = {.lex_state = 68, .external_lex_state = 1}, + [7141] = {.lex_state = 68, .external_lex_state = 1}, + [7142] = {.lex_state = 68, .external_lex_state = 1}, + [7143] = {.lex_state = 68, .external_lex_state = 1}, + [7144] = {.lex_state = 68, .external_lex_state = 1}, + [7145] = {.lex_state = 68, .external_lex_state = 1}, + [7146] = {.lex_state = 68, .external_lex_state = 1}, + [7147] = {.lex_state = 68, .external_lex_state = 1}, + [7148] = {.lex_state = 68, .external_lex_state = 1}, + [7149] = {.lex_state = 68, .external_lex_state = 1}, + [7150] = {.lex_state = 68, .external_lex_state = 1}, + [7151] = {.lex_state = 68, .external_lex_state = 1}, + [7152] = {.lex_state = 68, .external_lex_state = 1}, + [7153] = {.lex_state = 68, .external_lex_state = 1}, + [7154] = {.lex_state = 68, .external_lex_state = 1}, + [7155] = {.lex_state = 68, .external_lex_state = 1}, + [7156] = {.lex_state = 68, .external_lex_state = 1}, + [7157] = {.lex_state = 68, .external_lex_state = 1}, + [7158] = {.lex_state = 68, .external_lex_state = 1}, + [7159] = {.lex_state = 68, .external_lex_state = 1}, + [7160] = {.lex_state = 68, .external_lex_state = 1}, + [7161] = {.lex_state = 68, .external_lex_state = 1}, + [7162] = {.lex_state = 68, .external_lex_state = 1}, + [7163] = {.lex_state = 68, .external_lex_state = 1}, + [7164] = {.lex_state = 68, .external_lex_state = 1}, + [7165] = {.lex_state = 68, .external_lex_state = 1}, + [7166] = {.lex_state = 68, .external_lex_state = 1}, + [7167] = {.lex_state = 68, .external_lex_state = 1}, + [7168] = {.lex_state = 68, .external_lex_state = 1}, + [7169] = {.lex_state = 68, .external_lex_state = 1}, + [7170] = {.lex_state = 68, .external_lex_state = 1}, + [7171] = {.lex_state = 68, .external_lex_state = 1}, + [7172] = {.lex_state = 68, .external_lex_state = 1}, + [7173] = {.lex_state = 68, .external_lex_state = 1}, + [7174] = {.lex_state = 68, .external_lex_state = 1}, + [7175] = {.lex_state = 68, .external_lex_state = 1}, + [7176] = {.lex_state = 68, .external_lex_state = 1}, + [7177] = {.lex_state = 68, .external_lex_state = 1}, + [7178] = {.lex_state = 68, .external_lex_state = 1}, + [7179] = {.lex_state = 68, .external_lex_state = 1}, + [7180] = {.lex_state = 51, .external_lex_state = 1}, + [7181] = {.lex_state = 68, .external_lex_state = 1}, + [7182] = {.lex_state = 61, .external_lex_state = 1}, + [7183] = {.lex_state = 61, .external_lex_state = 1}, + [7184] = {.lex_state = 61, .external_lex_state = 1}, + [7185] = {.lex_state = 83, .external_lex_state = 1}, + [7186] = {.lex_state = 85, .external_lex_state = 1}, + [7187] = {.lex_state = 86, .external_lex_state = 1}, + [7188] = {.lex_state = 68, .external_lex_state = 1}, + [7189] = {.lex_state = 547, .external_lex_state = 1}, + [7190] = {.lex_state = 547, .external_lex_state = 1}, + [7191] = {.lex_state = 547, .external_lex_state = 1}, + [7192] = {.lex_state = 68, .external_lex_state = 1}, + [7193] = {.lex_state = 88, .external_lex_state = 1}, + [7194] = {.lex_state = 68, .external_lex_state = 1}, + [7195] = {.lex_state = 65, .external_lex_state = 1}, + [7196] = {.lex_state = 47, .external_lex_state = 1}, + [7197] = {.lex_state = 65, .external_lex_state = 1}, + [7198] = {.lex_state = 65, .external_lex_state = 1}, + [7199] = {.lex_state = 65, .external_lex_state = 1}, + [7200] = {.lex_state = 65, .external_lex_state = 1}, + [7201] = {.lex_state = 65, .external_lex_state = 1}, + [7202] = {.lex_state = 65, .external_lex_state = 1}, + [7203] = {.lex_state = 65, .external_lex_state = 1}, + [7204] = {.lex_state = 65, .external_lex_state = 1}, + [7205] = {.lex_state = 50, .external_lex_state = 1}, + [7206] = {.lex_state = 65, .external_lex_state = 1}, + [7207] = {.lex_state = 65, .external_lex_state = 1}, + [7208] = {.lex_state = 65, .external_lex_state = 1}, + [7209] = {.lex_state = 65, .external_lex_state = 1}, + [7210] = {.lex_state = 65, .external_lex_state = 1}, + [7211] = {.lex_state = 65, .external_lex_state = 1}, + [7212] = {.lex_state = 65, .external_lex_state = 1}, + [7213] = {.lex_state = 65, .external_lex_state = 1}, + [7214] = {.lex_state = 65, .external_lex_state = 1}, + [7215] = {.lex_state = 65, .external_lex_state = 1}, + [7216] = {.lex_state = 50, .external_lex_state = 1}, + [7217] = {.lex_state = 65, .external_lex_state = 1}, + [7218] = {.lex_state = 65, .external_lex_state = 1}, + [7219] = {.lex_state = 65, .external_lex_state = 1}, + [7220] = {.lex_state = 65, .external_lex_state = 1}, + [7221] = {.lex_state = 65, .external_lex_state = 1}, + [7222] = {.lex_state = 65, .external_lex_state = 1}, + [7223] = {.lex_state = 65, .external_lex_state = 1}, + [7224] = {.lex_state = 65, .external_lex_state = 1}, + [7225] = {.lex_state = 65, .external_lex_state = 1}, + [7226] = {.lex_state = 65, .external_lex_state = 1}, + [7227] = {.lex_state = 65, .external_lex_state = 1}, + [7228] = {.lex_state = 80, .external_lex_state = 1}, + [7229] = {.lex_state = 65, .external_lex_state = 1}, + [7230] = {.lex_state = 80, .external_lex_state = 1}, + [7231] = {.lex_state = 80, .external_lex_state = 1}, + [7232] = {.lex_state = 80, .external_lex_state = 1}, + [7233] = {.lex_state = 80, .external_lex_state = 1}, + [7234] = {.lex_state = 80, .external_lex_state = 1}, + [7235] = {.lex_state = 80, .external_lex_state = 1}, + [7236] = {.lex_state = 65, .external_lex_state = 1}, + [7237] = {.lex_state = 80, .external_lex_state = 1}, + [7238] = {.lex_state = 80, .external_lex_state = 1}, + [7239] = {.lex_state = 80, .external_lex_state = 1}, + [7240] = {.lex_state = 80, .external_lex_state = 1}, + [7241] = {.lex_state = 80, .external_lex_state = 1}, + [7242] = {.lex_state = 65, .external_lex_state = 1}, + [7243] = {.lex_state = 80, .external_lex_state = 1}, + [7244] = {.lex_state = 80, .external_lex_state = 1}, + [7245] = {.lex_state = 80, .external_lex_state = 1}, + [7246] = {.lex_state = 80, .external_lex_state = 1}, + [7247] = {.lex_state = 80, .external_lex_state = 1}, + [7248] = {.lex_state = 80, .external_lex_state = 1}, + [7249] = {.lex_state = 80, .external_lex_state = 1}, + [7250] = {.lex_state = 80, .external_lex_state = 1}, + [7251] = {.lex_state = 80, .external_lex_state = 1}, + [7252] = {.lex_state = 80, .external_lex_state = 1}, + [7253] = {.lex_state = 80, .external_lex_state = 1}, + [7254] = {.lex_state = 80, .external_lex_state = 1}, + [7255] = {.lex_state = 80, .external_lex_state = 1}, + [7256] = {.lex_state = 80, .external_lex_state = 1}, + [7257] = {.lex_state = 80, .external_lex_state = 1}, + [7258] = {.lex_state = 80, .external_lex_state = 1}, + [7259] = {.lex_state = 80, .external_lex_state = 1}, + [7260] = {.lex_state = 80, .external_lex_state = 1}, + [7261] = {.lex_state = 80, .external_lex_state = 1}, + [7262] = {.lex_state = 80, .external_lex_state = 1}, + [7263] = {.lex_state = 80, .external_lex_state = 1}, + [7264] = {.lex_state = 80, .external_lex_state = 1}, + [7265] = {.lex_state = 80, .external_lex_state = 1}, + [7266] = {.lex_state = 80, .external_lex_state = 1}, + [7267] = {.lex_state = 80, .external_lex_state = 1}, + [7268] = {.lex_state = 80, .external_lex_state = 1}, + [7269] = {.lex_state = 80, .external_lex_state = 1}, + [7270] = {.lex_state = 80, .external_lex_state = 1}, + [7271] = {.lex_state = 80, .external_lex_state = 1}, + [7272] = {.lex_state = 80, .external_lex_state = 1}, + [7273] = {.lex_state = 80, .external_lex_state = 1}, + [7274] = {.lex_state = 80, .external_lex_state = 1}, + [7275] = {.lex_state = 80, .external_lex_state = 1}, + [7276] = {.lex_state = 80, .external_lex_state = 1}, + [7277] = {.lex_state = 80, .external_lex_state = 1}, + [7278] = {.lex_state = 80, .external_lex_state = 1}, + [7279] = {.lex_state = 80, .external_lex_state = 1}, + [7280] = {.lex_state = 80, .external_lex_state = 1}, + [7281] = {.lex_state = 80, .external_lex_state = 1}, + [7282] = {.lex_state = 80, .external_lex_state = 1}, + [7283] = {.lex_state = 80, .external_lex_state = 1}, + [7284] = {.lex_state = 53, .external_lex_state = 1}, + [7285] = {.lex_state = 80, .external_lex_state = 1}, + [7286] = {.lex_state = 53, .external_lex_state = 1}, + [7287] = {.lex_state = 65, .external_lex_state = 1}, + [7288] = {.lex_state = 53, .external_lex_state = 1}, + [7289] = {.lex_state = 53, .external_lex_state = 1}, + [7290] = {.lex_state = 65, .external_lex_state = 1}, + [7291] = {.lex_state = 53, .external_lex_state = 1}, + [7292] = {.lex_state = 53, .external_lex_state = 1}, + [7293] = {.lex_state = 53, .external_lex_state = 1}, + [7294] = {.lex_state = 53, .external_lex_state = 1}, + [7295] = {.lex_state = 53, .external_lex_state = 1}, + [7296] = {.lex_state = 53, .external_lex_state = 1}, + [7297] = {.lex_state = 53, .external_lex_state = 1}, + [7298] = {.lex_state = 53, .external_lex_state = 1}, + [7299] = {.lex_state = 53, .external_lex_state = 1}, + [7300] = {.lex_state = 53, .external_lex_state = 1}, + [7301] = {.lex_state = 53, .external_lex_state = 1}, + [7302] = {.lex_state = 53, .external_lex_state = 1}, + [7303] = {.lex_state = 53, .external_lex_state = 1}, + [7304] = {.lex_state = 65, .external_lex_state = 1}, + [7305] = {.lex_state = 53, .external_lex_state = 1}, + [7306] = {.lex_state = 53, .external_lex_state = 1}, + [7307] = {.lex_state = 53, .external_lex_state = 1}, + [7308] = {.lex_state = 53, .external_lex_state = 1}, + [7309] = {.lex_state = 53, .external_lex_state = 1}, + [7310] = {.lex_state = 61, .external_lex_state = 1}, + [7311] = {.lex_state = 53, .external_lex_state = 1}, + [7312] = {.lex_state = 547, .external_lex_state = 1}, + [7313] = {.lex_state = 53, .external_lex_state = 1}, + [7314] = {.lex_state = 84, .external_lex_state = 1}, + [7315] = {.lex_state = 53, .external_lex_state = 1}, + [7316] = {.lex_state = 53, .external_lex_state = 1}, + [7317] = {.lex_state = 53, .external_lex_state = 1}, + [7318] = {.lex_state = 53, .external_lex_state = 1}, + [7319] = {.lex_state = 53, .external_lex_state = 1}, + [7320] = {.lex_state = 53, .external_lex_state = 1}, + [7321] = {.lex_state = 53, .external_lex_state = 1}, + [7322] = {.lex_state = 53, .external_lex_state = 1}, + [7323] = {.lex_state = 53, .external_lex_state = 1}, + [7324] = {.lex_state = 53, .external_lex_state = 1}, + [7325] = {.lex_state = 53, .external_lex_state = 1}, + [7326] = {.lex_state = 53, .external_lex_state = 1}, + [7327] = {.lex_state = 53, .external_lex_state = 1}, + [7328] = {.lex_state = 53, .external_lex_state = 1}, + [7329] = {.lex_state = 53, .external_lex_state = 1}, + [7330] = {.lex_state = 53, .external_lex_state = 1}, + [7331] = {.lex_state = 53, .external_lex_state = 1}, + [7332] = {.lex_state = 53, .external_lex_state = 1}, + [7333] = {.lex_state = 53, .external_lex_state = 1}, + [7334] = {.lex_state = 53, .external_lex_state = 1}, + [7335] = {.lex_state = 47, .external_lex_state = 1}, + [7336] = {.lex_state = 80, .external_lex_state = 1}, + [7337] = {.lex_state = 47, .external_lex_state = 1}, + [7338] = {.lex_state = 47, .external_lex_state = 1}, + [7339] = {.lex_state = 47, .external_lex_state = 1}, + [7340] = {.lex_state = 53, .external_lex_state = 1}, + [7341] = {.lex_state = 47, .external_lex_state = 1}, + [7342] = {.lex_state = 47, .external_lex_state = 1}, + [7343] = {.lex_state = 47, .external_lex_state = 1}, + [7344] = {.lex_state = 47, .external_lex_state = 1}, + [7345] = {.lex_state = 47, .external_lex_state = 1}, + [7346] = {.lex_state = 47, .external_lex_state = 1}, + [7347] = {.lex_state = 47, .external_lex_state = 1}, + [7348] = {.lex_state = 47, .external_lex_state = 1}, + [7349] = {.lex_state = 47, .external_lex_state = 1}, + [7350] = {.lex_state = 47, .external_lex_state = 1}, + [7351] = {.lex_state = 47, .external_lex_state = 1}, + [7352] = {.lex_state = 47, .external_lex_state = 1}, + [7353] = {.lex_state = 47, .external_lex_state = 1}, + [7354] = {.lex_state = 47, .external_lex_state = 1}, + [7355] = {.lex_state = 47, .external_lex_state = 1}, + [7356] = {.lex_state = 47, .external_lex_state = 1}, + [7357] = {.lex_state = 47, .external_lex_state = 1}, + [7358] = {.lex_state = 47, .external_lex_state = 1}, + [7359] = {.lex_state = 47, .external_lex_state = 1}, + [7360] = {.lex_state = 47, .external_lex_state = 1}, + [7361] = {.lex_state = 47, .external_lex_state = 1}, + [7362] = {.lex_state = 47, .external_lex_state = 1}, + [7363] = {.lex_state = 47, .external_lex_state = 1}, + [7364] = {.lex_state = 47, .external_lex_state = 1}, + [7365] = {.lex_state = 47, .external_lex_state = 1}, + [7366] = {.lex_state = 47, .external_lex_state = 1}, + [7367] = {.lex_state = 47, .external_lex_state = 1}, + [7368] = {.lex_state = 47, .external_lex_state = 1}, + [7369] = {.lex_state = 47, .external_lex_state = 1}, + [7370] = {.lex_state = 47, .external_lex_state = 1}, + [7371] = {.lex_state = 47, .external_lex_state = 1}, + [7372] = {.lex_state = 47, .external_lex_state = 1}, + [7373] = {.lex_state = 47, .external_lex_state = 1}, + [7374] = {.lex_state = 47, .external_lex_state = 1}, + [7375] = {.lex_state = 47, .external_lex_state = 1}, + [7376] = {.lex_state = 47, .external_lex_state = 1}, + [7377] = {.lex_state = 47, .external_lex_state = 1}, + [7378] = {.lex_state = 47, .external_lex_state = 1}, + [7379] = {.lex_state = 47, .external_lex_state = 1}, + [7380] = {.lex_state = 47, .external_lex_state = 1}, + [7381] = {.lex_state = 47, .external_lex_state = 1}, + [7382] = {.lex_state = 47, .external_lex_state = 1}, + [7383] = {.lex_state = 47, .external_lex_state = 1}, + [7384] = {.lex_state = 47, .external_lex_state = 1}, + [7385] = {.lex_state = 47, .external_lex_state = 1}, + [7386] = {.lex_state = 47, .external_lex_state = 1}, + [7387] = {.lex_state = 47, .external_lex_state = 1}, + [7388] = {.lex_state = 47, .external_lex_state = 1}, + [7389] = {.lex_state = 47, .external_lex_state = 1}, + [7390] = {.lex_state = 80, .external_lex_state = 1}, + [7391] = {.lex_state = 68, .external_lex_state = 1}, + [7392] = {.lex_state = 53, .external_lex_state = 1}, + [7393] = {.lex_state = 47, .external_lex_state = 1}, + [7394] = {.lex_state = 53, .external_lex_state = 1}, + [7395] = {.lex_state = 53, .external_lex_state = 1}, + [7396] = {.lex_state = 53, .external_lex_state = 1}, + [7397] = {.lex_state = 53, .external_lex_state = 1}, + [7398] = {.lex_state = 80, .external_lex_state = 1}, + [7399] = {.lex_state = 53, .external_lex_state = 1}, + [7400] = {.lex_state = 53, .external_lex_state = 1}, + [7401] = {.lex_state = 53, .external_lex_state = 1}, + [7402] = {.lex_state = 80, .external_lex_state = 1}, + [7403] = {.lex_state = 50, .external_lex_state = 1}, + [7404] = {.lex_state = 50, .external_lex_state = 1}, + [7405] = {.lex_state = 50, .external_lex_state = 1}, + [7406] = {.lex_state = 50, .external_lex_state = 1}, + [7407] = {.lex_state = 53, .external_lex_state = 1}, + [7408] = {.lex_state = 50, .external_lex_state = 1}, + [7409] = {.lex_state = 50, .external_lex_state = 1}, + [7410] = {.lex_state = 50, .external_lex_state = 1}, + [7411] = {.lex_state = 50, .external_lex_state = 1}, + [7412] = {.lex_state = 84, .external_lex_state = 1}, + [7413] = {.lex_state = 65, .external_lex_state = 1}, + [7414] = {.lex_state = 50, .external_lex_state = 1}, + [7415] = {.lex_state = 50, .external_lex_state = 1}, + [7416] = {.lex_state = 50, .external_lex_state = 1}, + [7417] = {.lex_state = 50, .external_lex_state = 1}, + [7418] = {.lex_state = 50, .external_lex_state = 1}, + [7419] = {.lex_state = 50, .external_lex_state = 1}, + [7420] = {.lex_state = 50, .external_lex_state = 1}, + [7421] = {.lex_state = 50, .external_lex_state = 1}, + [7422] = {.lex_state = 84, .external_lex_state = 1}, + [7423] = {.lex_state = 50, .external_lex_state = 1}, + [7424] = {.lex_state = 547, .external_lex_state = 1}, + [7425] = {.lex_state = 50, .external_lex_state = 1}, + [7426] = {.lex_state = 50, .external_lex_state = 1}, + [7427] = {.lex_state = 50, .external_lex_state = 1}, + [7428] = {.lex_state = 50, .external_lex_state = 1}, + [7429] = {.lex_state = 50, .external_lex_state = 1}, + [7430] = {.lex_state = 50, .external_lex_state = 1}, + [7431] = {.lex_state = 50, .external_lex_state = 1}, + [7432] = {.lex_state = 50, .external_lex_state = 1}, + [7433] = {.lex_state = 50, .external_lex_state = 1}, + [7434] = {.lex_state = 84, .external_lex_state = 1}, + [7435] = {.lex_state = 111, .external_lex_state = 1}, + [7436] = {.lex_state = 111, .external_lex_state = 1}, + [7437] = {.lex_state = 81, .external_lex_state = 1}, + [7438] = {.lex_state = 76, .external_lex_state = 1}, + [7439] = {.lex_state = 81, .external_lex_state = 1}, + [7440] = {.lex_state = 76, .external_lex_state = 1}, + [7441] = {.lex_state = 76, .external_lex_state = 1}, + [7442] = {.lex_state = 69, .external_lex_state = 1}, + [7443] = {.lex_state = 69, .external_lex_state = 1}, + [7444] = {.lex_state = 69, .external_lex_state = 1}, + [7445] = {.lex_state = 69, .external_lex_state = 1}, + [7446] = {.lex_state = 69, .external_lex_state = 1}, + [7447] = {.lex_state = 69, .external_lex_state = 1}, + [7448] = {.lex_state = 69, .external_lex_state = 1}, + [7449] = {.lex_state = 69, .external_lex_state = 1}, + [7450] = {.lex_state = 69, .external_lex_state = 1}, + [7451] = {.lex_state = 87, .external_lex_state = 1}, + [7452] = {.lex_state = 69, .external_lex_state = 1}, + [7453] = {.lex_state = 69, .external_lex_state = 1}, + [7454] = {.lex_state = 69, .external_lex_state = 1}, + [7455] = {.lex_state = 69, .external_lex_state = 1}, + [7456] = {.lex_state = 69, .external_lex_state = 1}, + [7457] = {.lex_state = 69, .external_lex_state = 1}, + [7458] = {.lex_state = 69, .external_lex_state = 1}, + [7459] = {.lex_state = 69, .external_lex_state = 1}, + [7460] = {.lex_state = 69, .external_lex_state = 1}, + [7461] = {.lex_state = 69, .external_lex_state = 1}, + [7462] = {.lex_state = 69, .external_lex_state = 1}, + [7463] = {.lex_state = 69, .external_lex_state = 1}, + [7464] = {.lex_state = 69, .external_lex_state = 1}, + [7465] = {.lex_state = 69, .external_lex_state = 1}, + [7466] = {.lex_state = 69, .external_lex_state = 1}, + [7467] = {.lex_state = 69, .external_lex_state = 1}, + [7468] = {.lex_state = 69, .external_lex_state = 1}, + [7469] = {.lex_state = 69, .external_lex_state = 1}, + [7470] = {.lex_state = 69, .external_lex_state = 1}, + [7471] = {.lex_state = 69, .external_lex_state = 1}, + [7472] = {.lex_state = 69, .external_lex_state = 1}, + [7473] = {.lex_state = 69, .external_lex_state = 1}, + [7474] = {.lex_state = 69, .external_lex_state = 1}, + [7475] = {.lex_state = 69, .external_lex_state = 1}, + [7476] = {.lex_state = 69, .external_lex_state = 1}, + [7477] = {.lex_state = 69, .external_lex_state = 1}, + [7478] = {.lex_state = 69, .external_lex_state = 1}, + [7479] = {.lex_state = 69, .external_lex_state = 1}, + [7480] = {.lex_state = 69, .external_lex_state = 1}, + [7481] = {.lex_state = 69, .external_lex_state = 1}, + [7482] = {.lex_state = 69, .external_lex_state = 1}, + [7483] = {.lex_state = 69, .external_lex_state = 1}, + [7484] = {.lex_state = 69, .external_lex_state = 1}, + [7485] = {.lex_state = 69, .external_lex_state = 1}, + [7486] = {.lex_state = 69, .external_lex_state = 1}, + [7487] = {.lex_state = 69, .external_lex_state = 1}, + [7488] = {.lex_state = 69, .external_lex_state = 1}, + [7489] = {.lex_state = 69, .external_lex_state = 1}, + [7490] = {.lex_state = 69, .external_lex_state = 1}, + [7491] = {.lex_state = 69, .external_lex_state = 1}, + [7492] = {.lex_state = 69, .external_lex_state = 1}, + [7493] = {.lex_state = 69, .external_lex_state = 1}, + [7494] = {.lex_state = 69, .external_lex_state = 1}, + [7495] = {.lex_state = 69, .external_lex_state = 1}, + [7496] = {.lex_state = 69, .external_lex_state = 1}, + [7497] = {.lex_state = 87, .external_lex_state = 1}, + [7498] = {.lex_state = 75, .external_lex_state = 1}, + [7499] = {.lex_state = 87, .external_lex_state = 1}, + [7500] = {.lex_state = 57, .external_lex_state = 1}, + [7501] = {.lex_state = 57, .external_lex_state = 1}, + [7502] = {.lex_state = 57, .external_lex_state = 1}, + [7503] = {.lex_state = 111, .external_lex_state = 1}, + [7504] = {.lex_state = 111, .external_lex_state = 1}, + [7505] = {.lex_state = 81, .external_lex_state = 1}, + [7506] = {.lex_state = 113, .external_lex_state = 1}, + [7507] = {.lex_state = 111, .external_lex_state = 1}, + [7508] = {.lex_state = 111, .external_lex_state = 1}, + [7509] = {.lex_state = 111, .external_lex_state = 1}, + [7510] = {.lex_state = 75, .external_lex_state = 1}, + [7511] = {.lex_state = 75, .external_lex_state = 1}, + [7512] = {.lex_state = 75, .external_lex_state = 1}, + [7513] = {.lex_state = 75, .external_lex_state = 1}, + [7514] = {.lex_state = 75, .external_lex_state = 1}, + [7515] = {.lex_state = 75, .external_lex_state = 1}, + [7516] = {.lex_state = 75, .external_lex_state = 1}, + [7517] = {.lex_state = 75, .external_lex_state = 1}, + [7518] = {.lex_state = 75, .external_lex_state = 1}, + [7519] = {.lex_state = 75, .external_lex_state = 1}, + [7520] = {.lex_state = 75, .external_lex_state = 1}, + [7521] = {.lex_state = 75, .external_lex_state = 1}, + [7522] = {.lex_state = 75, .external_lex_state = 1}, + [7523] = {.lex_state = 75, .external_lex_state = 1}, + [7524] = {.lex_state = 75, .external_lex_state = 1}, + [7525] = {.lex_state = 111, .external_lex_state = 1}, + [7526] = {.lex_state = 75, .external_lex_state = 1}, + [7527] = {.lex_state = 89, .external_lex_state = 1}, + [7528] = {.lex_state = 76, .external_lex_state = 1}, + [7529] = {.lex_state = 69, .external_lex_state = 1}, + [7530] = {.lex_state = 87, .external_lex_state = 1}, + [7531] = {.lex_state = 75, .external_lex_state = 1}, + [7532] = {.lex_state = 75, .external_lex_state = 1}, + [7533] = {.lex_state = 75, .external_lex_state = 1}, + [7534] = {.lex_state = 75, .external_lex_state = 1}, + [7535] = {.lex_state = 75, .external_lex_state = 1}, + [7536] = {.lex_state = 75, .external_lex_state = 1}, + [7537] = {.lex_state = 75, .external_lex_state = 1}, + [7538] = {.lex_state = 111, .external_lex_state = 1}, + [7539] = {.lex_state = 75, .external_lex_state = 1}, + [7540] = {.lex_state = 75, .external_lex_state = 1}, + [7541] = {.lex_state = 75, .external_lex_state = 1}, + [7542] = {.lex_state = 75, .external_lex_state = 1}, + [7543] = {.lex_state = 75, .external_lex_state = 1}, + [7544] = {.lex_state = 75, .external_lex_state = 1}, + [7545] = {.lex_state = 75, .external_lex_state = 1}, + [7546] = {.lex_state = 75, .external_lex_state = 1}, + [7547] = {.lex_state = 75, .external_lex_state = 1}, + [7548] = {.lex_state = 75, .external_lex_state = 1}, + [7549] = {.lex_state = 75, .external_lex_state = 1}, + [7550] = {.lex_state = 75, .external_lex_state = 1}, + [7551] = {.lex_state = 75, .external_lex_state = 1}, + [7552] = {.lex_state = 75, .external_lex_state = 1}, + [7553] = {.lex_state = 75, .external_lex_state = 1}, + [7554] = {.lex_state = 75, .external_lex_state = 1}, + [7555] = {.lex_state = 75, .external_lex_state = 1}, + [7556] = {.lex_state = 75, .external_lex_state = 1}, + [7557] = {.lex_state = 75, .external_lex_state = 1}, + [7558] = {.lex_state = 75, .external_lex_state = 1}, + [7559] = {.lex_state = 75, .external_lex_state = 1}, + [7560] = {.lex_state = 111, .external_lex_state = 1}, + [7561] = {.lex_state = 75, .external_lex_state = 1}, + [7562] = {.lex_state = 75, .external_lex_state = 1}, + [7563] = {.lex_state = 75, .external_lex_state = 1}, + [7564] = {.lex_state = 75, .external_lex_state = 1}, + [7565] = {.lex_state = 75, .external_lex_state = 1}, + [7566] = {.lex_state = 69, .external_lex_state = 1}, + [7567] = {.lex_state = 75, .external_lex_state = 1}, + [7568] = {.lex_state = 51, .external_lex_state = 1}, + [7569] = {.lex_state = 51, .external_lex_state = 1}, + [7570] = {.lex_state = 51, .external_lex_state = 1}, + [7571] = {.lex_state = 51, .external_lex_state = 1}, + [7572] = {.lex_state = 111, .external_lex_state = 1}, + [7573] = {.lex_state = 51, .external_lex_state = 1}, + [7574] = {.lex_state = 51, .external_lex_state = 1}, + [7575] = {.lex_state = 51, .external_lex_state = 1}, + [7576] = {.lex_state = 51, .external_lex_state = 1}, + [7577] = {.lex_state = 51, .external_lex_state = 1}, + [7578] = {.lex_state = 69, .external_lex_state = 1}, + [7579] = {.lex_state = 51, .external_lex_state = 1}, + [7580] = {.lex_state = 51, .external_lex_state = 1}, + [7581] = {.lex_state = 51, .external_lex_state = 1}, + [7582] = {.lex_state = 51, .external_lex_state = 1}, + [7583] = {.lex_state = 51, .external_lex_state = 1}, + [7584] = {.lex_state = 51, .external_lex_state = 1}, + [7585] = {.lex_state = 51, .external_lex_state = 1}, + [7586] = {.lex_state = 51, .external_lex_state = 1}, + [7587] = {.lex_state = 51, .external_lex_state = 1}, + [7588] = {.lex_state = 51, .external_lex_state = 1}, + [7589] = {.lex_state = 51, .external_lex_state = 1}, + [7590] = {.lex_state = 51, .external_lex_state = 1}, + [7591] = {.lex_state = 51, .external_lex_state = 1}, + [7592] = {.lex_state = 51, .external_lex_state = 1}, + [7593] = {.lex_state = 51, .external_lex_state = 1}, + [7594] = {.lex_state = 51, .external_lex_state = 1}, + [7595] = {.lex_state = 51, .external_lex_state = 1}, + [7596] = {.lex_state = 51, .external_lex_state = 1}, + [7597] = {.lex_state = 51, .external_lex_state = 1}, + [7598] = {.lex_state = 51, .external_lex_state = 1}, + [7599] = {.lex_state = 51, .external_lex_state = 1}, + [7600] = {.lex_state = 51, .external_lex_state = 1}, + [7601] = {.lex_state = 51, .external_lex_state = 1}, + [7602] = {.lex_state = 51, .external_lex_state = 1}, + [7603] = {.lex_state = 51, .external_lex_state = 1}, + [7604] = {.lex_state = 51, .external_lex_state = 1}, + [7605] = {.lex_state = 51, .external_lex_state = 1}, + [7606] = {.lex_state = 51, .external_lex_state = 1}, + [7607] = {.lex_state = 51, .external_lex_state = 1}, + [7608] = {.lex_state = 51, .external_lex_state = 1}, + [7609] = {.lex_state = 51, .external_lex_state = 1}, + [7610] = {.lex_state = 51, .external_lex_state = 1}, + [7611] = {.lex_state = 51, .external_lex_state = 1}, + [7612] = {.lex_state = 51, .external_lex_state = 1}, + [7613] = {.lex_state = 51, .external_lex_state = 1}, + [7614] = {.lex_state = 51, .external_lex_state = 1}, + [7615] = {.lex_state = 51, .external_lex_state = 1}, + [7616] = {.lex_state = 51, .external_lex_state = 1}, + [7617] = {.lex_state = 51, .external_lex_state = 1}, + [7618] = {.lex_state = 51, .external_lex_state = 1}, + [7619] = {.lex_state = 51, .external_lex_state = 1}, + [7620] = {.lex_state = 51, .external_lex_state = 1}, + [7621] = {.lex_state = 51, .external_lex_state = 1}, + [7622] = {.lex_state = 51, .external_lex_state = 1}, + [7623] = {.lex_state = 51, .external_lex_state = 1}, + [7624] = {.lex_state = 87, .external_lex_state = 1}, + [7625] = {.lex_state = 77, .external_lex_state = 1}, + [7626] = {.lex_state = 87, .external_lex_state = 1}, + [7627] = {.lex_state = 87, .external_lex_state = 1}, + [7628] = {.lex_state = 113, .external_lex_state = 1}, + [7629] = {.lex_state = 75, .external_lex_state = 1}, + [7630] = {.lex_state = 113, .external_lex_state = 1}, + [7631] = {.lex_state = 111, .external_lex_state = 1}, + [7632] = {.lex_state = 87, .external_lex_state = 1}, + [7633] = {.lex_state = 111, .external_lex_state = 1}, + [7634] = {.lex_state = 75, .external_lex_state = 1}, + [7635] = {.lex_state = 87, .external_lex_state = 1}, + [7636] = {.lex_state = 87, .external_lex_state = 1}, + [7637] = {.lex_state = 113, .external_lex_state = 1}, + [7638] = {.lex_state = 113, .external_lex_state = 1}, + [7639] = {.lex_state = 111, .external_lex_state = 1}, + [7640] = {.lex_state = 87, .external_lex_state = 1}, + [7641] = {.lex_state = 111, .external_lex_state = 1}, + [7642] = {.lex_state = 87, .external_lex_state = 1}, + [7643] = {.lex_state = 87, .external_lex_state = 1}, + [7644] = {.lex_state = 87, .external_lex_state = 1}, + [7645] = {.lex_state = 87, .external_lex_state = 1}, + [7646] = {.lex_state = 87, .external_lex_state = 1}, + [7647] = {.lex_state = 87, .external_lex_state = 1}, + [7648] = {.lex_state = 87, .external_lex_state = 1}, + [7649] = {.lex_state = 111, .external_lex_state = 1}, + [7650] = {.lex_state = 111, .external_lex_state = 1}, + [7651] = {.lex_state = 87, .external_lex_state = 1}, + [7652] = {.lex_state = 75, .external_lex_state = 1}, + [7653] = {.lex_state = 57, .external_lex_state = 1}, + [7654] = {.lex_state = 111, .external_lex_state = 1}, + [7655] = {.lex_state = 75, .external_lex_state = 1}, + [7656] = {.lex_state = 81, .external_lex_state = 1}, + [7657] = {.lex_state = 81, .external_lex_state = 1}, + [7658] = {.lex_state = 81, .external_lex_state = 1}, + [7659] = {.lex_state = 81, .external_lex_state = 1}, + [7660] = {.lex_state = 85, .external_lex_state = 1}, + [7661] = {.lex_state = 85, .external_lex_state = 1}, + [7662] = {.lex_state = 85, .external_lex_state = 1}, + [7663] = {.lex_state = 85, .external_lex_state = 1}, + [7664] = {.lex_state = 81, .external_lex_state = 1}, + [7665] = {.lex_state = 85, .external_lex_state = 1}, + [7666] = {.lex_state = 85, .external_lex_state = 1}, + [7667] = {.lex_state = 85, .external_lex_state = 1}, + [7668] = {.lex_state = 85, .external_lex_state = 1}, + [7669] = {.lex_state = 85, .external_lex_state = 1}, + [7670] = {.lex_state = 81, .external_lex_state = 1}, + [7671] = {.lex_state = 85, .external_lex_state = 1}, + [7672] = {.lex_state = 85, .external_lex_state = 1}, + [7673] = {.lex_state = 85, .external_lex_state = 1}, + [7674] = {.lex_state = 85, .external_lex_state = 1}, + [7675] = {.lex_state = 85, .external_lex_state = 1}, + [7676] = {.lex_state = 85, .external_lex_state = 1}, + [7677] = {.lex_state = 85, .external_lex_state = 1}, + [7678] = {.lex_state = 85, .external_lex_state = 1}, + [7679] = {.lex_state = 85, .external_lex_state = 1}, + [7680] = {.lex_state = 85, .external_lex_state = 1}, + [7681] = {.lex_state = 85, .external_lex_state = 1}, + [7682] = {.lex_state = 85, .external_lex_state = 1}, + [7683] = {.lex_state = 85, .external_lex_state = 1}, + [7684] = {.lex_state = 85, .external_lex_state = 1}, + [7685] = {.lex_state = 85, .external_lex_state = 1}, + [7686] = {.lex_state = 85, .external_lex_state = 1}, + [7687] = {.lex_state = 85, .external_lex_state = 1}, + [7688] = {.lex_state = 85, .external_lex_state = 1}, + [7689] = {.lex_state = 85, .external_lex_state = 1}, + [7690] = {.lex_state = 85, .external_lex_state = 1}, + [7691] = {.lex_state = 85, .external_lex_state = 1}, + [7692] = {.lex_state = 85, .external_lex_state = 1}, + [7693] = {.lex_state = 85, .external_lex_state = 1}, + [7694] = {.lex_state = 85, .external_lex_state = 1}, + [7695] = {.lex_state = 85, .external_lex_state = 1}, + [7696] = {.lex_state = 85, .external_lex_state = 1}, + [7697] = {.lex_state = 85, .external_lex_state = 1}, + [7698] = {.lex_state = 85, .external_lex_state = 1}, + [7699] = {.lex_state = 85, .external_lex_state = 1}, + [7700] = {.lex_state = 85, .external_lex_state = 1}, + [7701] = {.lex_state = 85, .external_lex_state = 1}, + [7702] = {.lex_state = 85, .external_lex_state = 1}, + [7703] = {.lex_state = 85, .external_lex_state = 1}, + [7704] = {.lex_state = 85, .external_lex_state = 1}, + [7705] = {.lex_state = 85, .external_lex_state = 1}, + [7706] = {.lex_state = 85, .external_lex_state = 1}, + [7707] = {.lex_state = 85, .external_lex_state = 1}, + [7708] = {.lex_state = 85, .external_lex_state = 1}, + [7709] = {.lex_state = 85, .external_lex_state = 1}, + [7710] = {.lex_state = 85, .external_lex_state = 1}, + [7711] = {.lex_state = 85, .external_lex_state = 1}, + [7712] = {.lex_state = 85, .external_lex_state = 1}, + [7713] = {.lex_state = 85, .external_lex_state = 1}, + [7714] = {.lex_state = 85, .external_lex_state = 1}, + [7715] = {.lex_state = 88, .external_lex_state = 1}, + [7716] = {.lex_state = 51, .external_lex_state = 1}, + [7717] = {.lex_state = 88, .external_lex_state = 1}, + [7718] = {.lex_state = 88, .external_lex_state = 1}, + [7719] = {.lex_state = 88, .external_lex_state = 1}, + [7720] = {.lex_state = 85, .external_lex_state = 1}, + [7721] = {.lex_state = 88, .external_lex_state = 1}, + [7722] = {.lex_state = 88, .external_lex_state = 1}, + [7723] = {.lex_state = 88, .external_lex_state = 1}, + [7724] = {.lex_state = 88, .external_lex_state = 1}, + [7725] = {.lex_state = 88, .external_lex_state = 1}, + [7726] = {.lex_state = 81, .external_lex_state = 1}, + [7727] = {.lex_state = 88, .external_lex_state = 1}, + [7728] = {.lex_state = 88, .external_lex_state = 1}, + [7729] = {.lex_state = 88, .external_lex_state = 1}, + [7730] = {.lex_state = 88, .external_lex_state = 1}, + [7731] = {.lex_state = 88, .external_lex_state = 1}, + [7732] = {.lex_state = 88, .external_lex_state = 1}, + [7733] = {.lex_state = 88, .external_lex_state = 1}, + [7734] = {.lex_state = 88, .external_lex_state = 1}, + [7735] = {.lex_state = 88, .external_lex_state = 1}, + [7736] = {.lex_state = 88, .external_lex_state = 1}, + [7737] = {.lex_state = 88, .external_lex_state = 1}, + [7738] = {.lex_state = 88, .external_lex_state = 1}, + [7739] = {.lex_state = 88, .external_lex_state = 1}, + [7740] = {.lex_state = 88, .external_lex_state = 1}, + [7741] = {.lex_state = 88, .external_lex_state = 1}, + [7742] = {.lex_state = 88, .external_lex_state = 1}, + [7743] = {.lex_state = 88, .external_lex_state = 1}, + [7744] = {.lex_state = 88, .external_lex_state = 1}, + [7745] = {.lex_state = 88, .external_lex_state = 1}, + [7746] = {.lex_state = 88, .external_lex_state = 1}, + [7747] = {.lex_state = 88, .external_lex_state = 1}, + [7748] = {.lex_state = 88, .external_lex_state = 1}, + [7749] = {.lex_state = 88, .external_lex_state = 1}, + [7750] = {.lex_state = 88, .external_lex_state = 1}, + [7751] = {.lex_state = 88, .external_lex_state = 1}, + [7752] = {.lex_state = 88, .external_lex_state = 1}, + [7753] = {.lex_state = 88, .external_lex_state = 1}, + [7754] = {.lex_state = 88, .external_lex_state = 1}, + [7755] = {.lex_state = 88, .external_lex_state = 1}, + [7756] = {.lex_state = 88, .external_lex_state = 1}, + [7757] = {.lex_state = 88, .external_lex_state = 1}, + [7758] = {.lex_state = 88, .external_lex_state = 1}, + [7759] = {.lex_state = 88, .external_lex_state = 1}, + [7760] = {.lex_state = 88, .external_lex_state = 1}, + [7761] = {.lex_state = 88, .external_lex_state = 1}, + [7762] = {.lex_state = 88, .external_lex_state = 1}, + [7763] = {.lex_state = 88, .external_lex_state = 1}, + [7764] = {.lex_state = 88, .external_lex_state = 1}, + [7765] = {.lex_state = 88, .external_lex_state = 1}, + [7766] = {.lex_state = 88, .external_lex_state = 1}, + [7767] = {.lex_state = 88, .external_lex_state = 1}, + [7768] = {.lex_state = 88, .external_lex_state = 1}, + [7769] = {.lex_state = 88, .external_lex_state = 1}, + [7770] = {.lex_state = 88, .external_lex_state = 1}, + [7771] = {.lex_state = 51, .external_lex_state = 1}, + [7772] = {.lex_state = 81, .external_lex_state = 1}, + [7773] = {.lex_state = 81, .external_lex_state = 1}, + [7774] = {.lex_state = 81, .external_lex_state = 1}, + [7775] = {.lex_state = 81, .external_lex_state = 1}, + [7776] = {.lex_state = 88, .external_lex_state = 1}, + [7777] = {.lex_state = 81, .external_lex_state = 1}, + [7778] = {.lex_state = 81, .external_lex_state = 1}, + [7779] = {.lex_state = 81, .external_lex_state = 1}, + [7780] = {.lex_state = 81, .external_lex_state = 1}, + [7781] = {.lex_state = 81, .external_lex_state = 1}, + [7782] = {.lex_state = 51, .external_lex_state = 1}, + [7783] = {.lex_state = 81, .external_lex_state = 1}, + [7784] = {.lex_state = 81, .external_lex_state = 1}, + [7785] = {.lex_state = 81, .external_lex_state = 1}, + [7786] = {.lex_state = 81, .external_lex_state = 1}, + [7787] = {.lex_state = 81, .external_lex_state = 1}, + [7788] = {.lex_state = 81, .external_lex_state = 1}, + [7789] = {.lex_state = 81, .external_lex_state = 1}, + [7790] = {.lex_state = 81, .external_lex_state = 1}, + [7791] = {.lex_state = 81, .external_lex_state = 1}, + [7792] = {.lex_state = 81, .external_lex_state = 1}, + [7793] = {.lex_state = 81, .external_lex_state = 1}, + [7794] = {.lex_state = 81, .external_lex_state = 1}, + [7795] = {.lex_state = 81, .external_lex_state = 1}, + [7796] = {.lex_state = 81, .external_lex_state = 1}, + [7797] = {.lex_state = 81, .external_lex_state = 1}, + [7798] = {.lex_state = 81, .external_lex_state = 1}, + [7799] = {.lex_state = 81, .external_lex_state = 1}, + [7800] = {.lex_state = 81, .external_lex_state = 1}, + [7801] = {.lex_state = 81, .external_lex_state = 1}, + [7802] = {.lex_state = 81, .external_lex_state = 1}, + [7803] = {.lex_state = 81, .external_lex_state = 1}, + [7804] = {.lex_state = 81, .external_lex_state = 1}, + [7805] = {.lex_state = 81, .external_lex_state = 1}, + [7806] = {.lex_state = 81, .external_lex_state = 1}, + [7807] = {.lex_state = 81, .external_lex_state = 1}, + [7808] = {.lex_state = 81, .external_lex_state = 1}, + [7809] = {.lex_state = 81, .external_lex_state = 1}, + [7810] = {.lex_state = 81, .external_lex_state = 1}, + [7811] = {.lex_state = 81, .external_lex_state = 1}, + [7812] = {.lex_state = 81, .external_lex_state = 1}, + [7813] = {.lex_state = 81, .external_lex_state = 1}, + [7814] = {.lex_state = 81, .external_lex_state = 1}, + [7815] = {.lex_state = 81, .external_lex_state = 1}, + [7816] = {.lex_state = 81, .external_lex_state = 1}, + [7817] = {.lex_state = 81, .external_lex_state = 1}, + [7818] = {.lex_state = 81, .external_lex_state = 1}, + [7819] = {.lex_state = 81, .external_lex_state = 1}, + [7820] = {.lex_state = 76, .external_lex_state = 1}, + [7821] = {.lex_state = 76, .external_lex_state = 1}, + [7822] = {.lex_state = 76, .external_lex_state = 1}, + [7823] = {.lex_state = 76, .external_lex_state = 1}, + [7824] = {.lex_state = 81, .external_lex_state = 1}, + [7825] = {.lex_state = 76, .external_lex_state = 1}, + [7826] = {.lex_state = 76, .external_lex_state = 1}, + [7827] = {.lex_state = 69, .external_lex_state = 1}, + [7828] = {.lex_state = 76, .external_lex_state = 1}, + [7829] = {.lex_state = 76, .external_lex_state = 1}, + [7830] = {.lex_state = 87, .external_lex_state = 1}, + [7831] = {.lex_state = 76, .external_lex_state = 1}, + [7832] = {.lex_state = 85, .external_lex_state = 1}, + [7833] = {.lex_state = 76, .external_lex_state = 1}, + [7834] = {.lex_state = 85, .external_lex_state = 1}, + [7835] = {.lex_state = 76, .external_lex_state = 1}, + [7836] = {.lex_state = 88, .external_lex_state = 1}, + [7837] = {.lex_state = 85, .external_lex_state = 1}, + [7838] = {.lex_state = 88, .external_lex_state = 1}, + [7839] = {.lex_state = 111, .external_lex_state = 1}, + [7840] = {.lex_state = 76, .external_lex_state = 1}, + [7841] = {.lex_state = 76, .external_lex_state = 1}, + [7842] = {.lex_state = 88, .external_lex_state = 1}, + [7843] = {.lex_state = 76, .external_lex_state = 1}, + [7844] = {.lex_state = 76, .external_lex_state = 1}, + [7845] = {.lex_state = 76, .external_lex_state = 1}, + [7846] = {.lex_state = 76, .external_lex_state = 1}, + [7847] = {.lex_state = 76, .external_lex_state = 1}, + [7848] = {.lex_state = 113, .external_lex_state = 1}, + [7849] = {.lex_state = 113, .external_lex_state = 1}, + [7850] = {.lex_state = 76, .external_lex_state = 1}, + [7851] = {.lex_state = 76, .external_lex_state = 1}, + [7852] = {.lex_state = 76, .external_lex_state = 1}, + [7853] = {.lex_state = 76, .external_lex_state = 1}, + [7854] = {.lex_state = 76, .external_lex_state = 1}, + [7855] = {.lex_state = 76, .external_lex_state = 1}, + [7856] = {.lex_state = 76, .external_lex_state = 1}, + [7857] = {.lex_state = 113, .external_lex_state = 1}, + [7858] = {.lex_state = 76, .external_lex_state = 1}, + [7859] = {.lex_state = 76, .external_lex_state = 1}, + [7860] = {.lex_state = 113, .external_lex_state = 1}, + [7861] = {.lex_state = 76, .external_lex_state = 1}, + [7862] = {.lex_state = 76, .external_lex_state = 1}, + [7863] = {.lex_state = 76, .external_lex_state = 1}, + [7864] = {.lex_state = 76, .external_lex_state = 1}, + [7865] = {.lex_state = 76, .external_lex_state = 1}, + [7866] = {.lex_state = 76, .external_lex_state = 1}, + [7867] = {.lex_state = 75, .external_lex_state = 1}, + [7868] = {.lex_state = 113, .external_lex_state = 1}, + [7869] = {.lex_state = 76, .external_lex_state = 1}, + [7870] = {.lex_state = 76, .external_lex_state = 1}, + [7871] = {.lex_state = 113, .external_lex_state = 1}, + [7872] = {.lex_state = 76, .external_lex_state = 1}, + [7873] = {.lex_state = 76, .external_lex_state = 1}, + [7874] = {.lex_state = 76, .external_lex_state = 1}, + [7875] = {.lex_state = 76, .external_lex_state = 1}, + [7876] = {.lex_state = 76, .external_lex_state = 1}, + [7877] = {.lex_state = 87, .external_lex_state = 1}, + [7878] = {.lex_state = 76, .external_lex_state = 1}, + [7879] = {.lex_state = 76, .external_lex_state = 1}, + [7880] = {.lex_state = 76, .external_lex_state = 1}, + [7881] = {.lex_state = 76, .external_lex_state = 1}, + [7882] = {.lex_state = 76, .external_lex_state = 1}, + [7883] = {.lex_state = 51, .external_lex_state = 1}, + [7884] = {.lex_state = 113, .external_lex_state = 1}, + [7885] = {.lex_state = 113, .external_lex_state = 1}, + [7886] = {.lex_state = 76, .external_lex_state = 1}, + [7887] = {.lex_state = 113, .external_lex_state = 1}, + [7888] = {.lex_state = 76, .external_lex_state = 1}, + [7889] = {.lex_state = 113, .external_lex_state = 1}, + [7890] = {.lex_state = 113, .external_lex_state = 1}, + [7891] = {.lex_state = 76, .external_lex_state = 1}, + [7892] = {.lex_state = 113, .external_lex_state = 1}, + [7893] = {.lex_state = 113, .external_lex_state = 1}, + [7894] = {.lex_state = 76, .external_lex_state = 1}, + [7895] = {.lex_state = 113, .external_lex_state = 1}, + [7896] = {.lex_state = 113, .external_lex_state = 1}, + [7897] = {.lex_state = 76, .external_lex_state = 1}, + [7898] = {.lex_state = 76, .external_lex_state = 1}, + [7899] = {.lex_state = 76, .external_lex_state = 1}, + [7900] = {.lex_state = 111, .external_lex_state = 1}, + [7901] = {.lex_state = 76, .external_lex_state = 1}, + [7902] = {.lex_state = 111, .external_lex_state = 1}, + [7903] = {.lex_state = 111, .external_lex_state = 1}, + [7904] = {.lex_state = 87, .external_lex_state = 1}, + [7905] = {.lex_state = 87, .external_lex_state = 1}, + [7906] = {.lex_state = 87, .external_lex_state = 1}, + [7907] = {.lex_state = 87, .external_lex_state = 1}, + [7908] = {.lex_state = 87, .external_lex_state = 1}, + [7909] = {.lex_state = 87, .external_lex_state = 1}, + [7910] = {.lex_state = 87, .external_lex_state = 1}, + [7911] = {.lex_state = 87, .external_lex_state = 1}, + [7912] = {.lex_state = 87, .external_lex_state = 1}, + [7913] = {.lex_state = 87, .external_lex_state = 1}, + [7914] = {.lex_state = 87, .external_lex_state = 1}, + [7915] = {.lex_state = 87, .external_lex_state = 1}, + [7916] = {.lex_state = 87, .external_lex_state = 1}, + [7917] = {.lex_state = 87, .external_lex_state = 1}, + [7918] = {.lex_state = 87, .external_lex_state = 1}, + [7919] = {.lex_state = 87, .external_lex_state = 1}, + [7920] = {.lex_state = 87, .external_lex_state = 1}, + [7921] = {.lex_state = 87, .external_lex_state = 1}, + [7922] = {.lex_state = 87, .external_lex_state = 1}, + [7923] = {.lex_state = 87, .external_lex_state = 1}, + [7924] = {.lex_state = 87, .external_lex_state = 1}, + [7925] = {.lex_state = 87, .external_lex_state = 1}, + [7926] = {.lex_state = 87, .external_lex_state = 1}, + [7927] = {.lex_state = 87, .external_lex_state = 1}, + [7928] = {.lex_state = 87, .external_lex_state = 1}, + [7929] = {.lex_state = 87, .external_lex_state = 1}, + [7930] = {.lex_state = 87, .external_lex_state = 1}, + [7931] = {.lex_state = 87, .external_lex_state = 1}, + [7932] = {.lex_state = 87, .external_lex_state = 1}, + [7933] = {.lex_state = 75, .external_lex_state = 1}, + [7934] = {.lex_state = 87, .external_lex_state = 1}, + [7935] = {.lex_state = 75, .external_lex_state = 1}, + [7936] = {.lex_state = 114, .external_lex_state = 1}, + [7937] = {.lex_state = 111, .external_lex_state = 1}, + [7938] = {.lex_state = 111, .external_lex_state = 1}, + [7939] = {.lex_state = 111, .external_lex_state = 1}, + [7940] = {.lex_state = 111, .external_lex_state = 1}, + [7941] = {.lex_state = 111, .external_lex_state = 1}, + [7942] = {.lex_state = 111, .external_lex_state = 1}, + [7943] = {.lex_state = 114, .external_lex_state = 1}, + [7944] = {.lex_state = 111, .external_lex_state = 1}, + [7945] = {.lex_state = 111, .external_lex_state = 1}, + [7946] = {.lex_state = 111, .external_lex_state = 1}, + [7947] = {.lex_state = 111, .external_lex_state = 1}, + [7948] = {.lex_state = 111, .external_lex_state = 1}, + [7949] = {.lex_state = 111, .external_lex_state = 1}, + [7950] = {.lex_state = 111, .external_lex_state = 1}, + [7951] = {.lex_state = 111, .external_lex_state = 1}, + [7952] = {.lex_state = 111, .external_lex_state = 1}, + [7953] = {.lex_state = 111, .external_lex_state = 1}, + [7954] = {.lex_state = 111, .external_lex_state = 1}, + [7955] = {.lex_state = 111, .external_lex_state = 1}, + [7956] = {.lex_state = 111, .external_lex_state = 1}, + [7957] = {.lex_state = 87, .external_lex_state = 1}, + [7958] = {.lex_state = 111, .external_lex_state = 1}, + [7959] = {.lex_state = 87, .external_lex_state = 1}, + [7960] = {.lex_state = 113, .external_lex_state = 1}, + [7961] = {.lex_state = 113, .external_lex_state = 1}, + [7962] = {.lex_state = 87, .external_lex_state = 1}, + [7963] = {.lex_state = 87, .external_lex_state = 1}, + [7964] = {.lex_state = 111, .external_lex_state = 1}, + [7965] = {.lex_state = 87, .external_lex_state = 1}, + [7966] = {.lex_state = 85, .external_lex_state = 1}, + [7967] = {.lex_state = 87, .external_lex_state = 1}, + [7968] = {.lex_state = 111, .external_lex_state = 1}, + [7969] = {.lex_state = 111, .external_lex_state = 1}, + [7970] = {.lex_state = 57, .external_lex_state = 1}, + [7971] = {.lex_state = 57, .external_lex_state = 1}, + [7972] = {.lex_state = 111, .external_lex_state = 1}, + [7973] = {.lex_state = 111, .external_lex_state = 1}, + [7974] = {.lex_state = 57, .external_lex_state = 1}, + [7975] = {.lex_state = 57, .external_lex_state = 1}, + [7976] = {.lex_state = 57, .external_lex_state = 1}, + [7977] = {.lex_state = 57, .external_lex_state = 1}, + [7978] = {.lex_state = 57, .external_lex_state = 1}, + [7979] = {.lex_state = 57, .external_lex_state = 1}, + [7980] = {.lex_state = 57, .external_lex_state = 1}, + [7981] = {.lex_state = 88, .external_lex_state = 1}, + [7982] = {.lex_state = 111, .external_lex_state = 1}, + [7983] = {.lex_state = 111, .external_lex_state = 1}, + [7984] = {.lex_state = 57, .external_lex_state = 1}, + [7985] = {.lex_state = 57, .external_lex_state = 1}, + [7986] = {.lex_state = 57, .external_lex_state = 1}, + [7987] = {.lex_state = 57, .external_lex_state = 1}, + [7988] = {.lex_state = 57, .external_lex_state = 1}, + [7989] = {.lex_state = 57, .external_lex_state = 1}, + [7990] = {.lex_state = 57, .external_lex_state = 1}, + [7991] = {.lex_state = 111, .external_lex_state = 1}, + [7992] = {.lex_state = 111, .external_lex_state = 1}, + [7993] = {.lex_state = 57, .external_lex_state = 1}, + [7994] = {.lex_state = 57, .external_lex_state = 1}, + [7995] = {.lex_state = 57, .external_lex_state = 1}, + [7996] = {.lex_state = 57, .external_lex_state = 1}, + [7997] = {.lex_state = 57, .external_lex_state = 1}, + [7998] = {.lex_state = 111, .external_lex_state = 1}, + [7999] = {.lex_state = 111, .external_lex_state = 1}, + [8000] = {.lex_state = 57, .external_lex_state = 1}, + [8001] = {.lex_state = 57, .external_lex_state = 1}, + [8002] = {.lex_state = 57, .external_lex_state = 1}, + [8003] = {.lex_state = 57, .external_lex_state = 1}, + [8004] = {.lex_state = 57, .external_lex_state = 1}, + [8005] = {.lex_state = 57, .external_lex_state = 1}, + [8006] = {.lex_state = 57, .external_lex_state = 1}, + [8007] = {.lex_state = 57, .external_lex_state = 1}, + [8008] = {.lex_state = 57, .external_lex_state = 1}, + [8009] = {.lex_state = 57, .external_lex_state = 1}, + [8010] = {.lex_state = 57, .external_lex_state = 1}, + [8011] = {.lex_state = 57, .external_lex_state = 1}, + [8012] = {.lex_state = 57, .external_lex_state = 1}, + [8013] = {.lex_state = 57, .external_lex_state = 1}, + [8014] = {.lex_state = 57, .external_lex_state = 1}, + [8015] = {.lex_state = 57, .external_lex_state = 1}, + [8016] = {.lex_state = 57, .external_lex_state = 1}, + [8017] = {.lex_state = 57, .external_lex_state = 1}, + [8018] = {.lex_state = 57, .external_lex_state = 1}, + [8019] = {.lex_state = 57, .external_lex_state = 1}, + [8020] = {.lex_state = 57, .external_lex_state = 1}, + [8021] = {.lex_state = 57, .external_lex_state = 1}, + [8022] = {.lex_state = 57, .external_lex_state = 1}, + [8023] = {.lex_state = 57, .external_lex_state = 1}, + [8024] = {.lex_state = 57, .external_lex_state = 1}, + [8025] = {.lex_state = 57, .external_lex_state = 1}, + [8026] = {.lex_state = 57, .external_lex_state = 1}, + [8027] = {.lex_state = 57, .external_lex_state = 1}, + [8028] = {.lex_state = 57, .external_lex_state = 1}, + [8029] = {.lex_state = 57, .external_lex_state = 1}, + [8030] = {.lex_state = 57, .external_lex_state = 1}, + [8031] = {.lex_state = 57, .external_lex_state = 1}, + [8032] = {.lex_state = 113, .external_lex_state = 1}, + [8033] = {.lex_state = 113, .external_lex_state = 1}, + [8034] = {.lex_state = 81, .external_lex_state = 1}, + [8035] = {.lex_state = 57, .external_lex_state = 1}, + [8036] = {.lex_state = 113, .external_lex_state = 1}, + [8037] = {.lex_state = 113, .external_lex_state = 1}, + [8038] = {.lex_state = 113, .external_lex_state = 1}, + [8039] = {.lex_state = 113, .external_lex_state = 1}, + [8040] = {.lex_state = 113, .external_lex_state = 1}, + [8041] = {.lex_state = 113, .external_lex_state = 1}, + [8042] = {.lex_state = 113, .external_lex_state = 1}, + [8043] = {.lex_state = 113, .external_lex_state = 1}, + [8044] = {.lex_state = 113, .external_lex_state = 1}, + [8045] = {.lex_state = 113, .external_lex_state = 1}, + [8046] = {.lex_state = 113, .external_lex_state = 1}, + [8047] = {.lex_state = 113, .external_lex_state = 1}, + [8048] = {.lex_state = 113, .external_lex_state = 1}, + [8049] = {.lex_state = 113, .external_lex_state = 1}, + [8050] = {.lex_state = 113, .external_lex_state = 1}, + [8051] = {.lex_state = 113, .external_lex_state = 1}, + [8052] = {.lex_state = 113, .external_lex_state = 1}, + [8053] = {.lex_state = 113, .external_lex_state = 1}, + [8054] = {.lex_state = 111, .external_lex_state = 1}, + [8055] = {.lex_state = 113, .external_lex_state = 1}, + [8056] = {.lex_state = 113, .external_lex_state = 1}, + [8057] = {.lex_state = 113, .external_lex_state = 1}, + [8058] = {.lex_state = 113, .external_lex_state = 1}, + [8059] = {.lex_state = 113, .external_lex_state = 1}, + [8060] = {.lex_state = 114, .external_lex_state = 1}, + [8061] = {.lex_state = 113, .external_lex_state = 1}, + [8062] = {.lex_state = 113, .external_lex_state = 1}, + [8063] = {.lex_state = 113, .external_lex_state = 1}, + [8064] = {.lex_state = 113, .external_lex_state = 1}, + [8065] = {.lex_state = 113, .external_lex_state = 1}, + [8066] = {.lex_state = 113, .external_lex_state = 1}, + [8067] = {.lex_state = 113, .external_lex_state = 1}, + [8068] = {.lex_state = 113, .external_lex_state = 1}, + [8069] = {.lex_state = 113, .external_lex_state = 1}, + [8070] = {.lex_state = 113, .external_lex_state = 1}, + [8071] = {.lex_state = 113, .external_lex_state = 1}, + [8072] = {.lex_state = 113, .external_lex_state = 1}, + [8073] = {.lex_state = 113, .external_lex_state = 1}, + [8074] = {.lex_state = 113, .external_lex_state = 1}, + [8075] = {.lex_state = 113, .external_lex_state = 1}, + [8076] = {.lex_state = 113, .external_lex_state = 1}, + [8077] = {.lex_state = 113, .external_lex_state = 1}, + [8078] = {.lex_state = 113, .external_lex_state = 1}, + [8079] = {.lex_state = 113, .external_lex_state = 1}, + [8080] = {.lex_state = 113, .external_lex_state = 1}, + [8081] = {.lex_state = 113, .external_lex_state = 1}, + [8082] = {.lex_state = 113, .external_lex_state = 1}, + [8083] = {.lex_state = 113, .external_lex_state = 1}, + [8084] = {.lex_state = 113, .external_lex_state = 1}, + [8085] = {.lex_state = 113, .external_lex_state = 1}, + [8086] = {.lex_state = 113, .external_lex_state = 1}, + [8087] = {.lex_state = 113, .external_lex_state = 1}, + [8088] = {.lex_state = 113, .external_lex_state = 1}, + [8089] = {.lex_state = 113, .external_lex_state = 1}, + [8090] = {.lex_state = 113, .external_lex_state = 1}, + [8091] = {.lex_state = 113, .external_lex_state = 1}, + [8092] = {.lex_state = 113, .external_lex_state = 1}, + [8093] = {.lex_state = 113, .external_lex_state = 1}, + [8094] = {.lex_state = 113, .external_lex_state = 1}, + [8095] = {.lex_state = 113, .external_lex_state = 1}, + [8096] = {.lex_state = 113, .external_lex_state = 1}, + [8097] = {.lex_state = 113, .external_lex_state = 1}, + [8098] = {.lex_state = 113, .external_lex_state = 1}, + [8099] = {.lex_state = 113, .external_lex_state = 1}, + [8100] = {.lex_state = 113, .external_lex_state = 1}, + [8101] = {.lex_state = 113, .external_lex_state = 1}, + [8102] = {.lex_state = 113, .external_lex_state = 1}, + [8103] = {.lex_state = 111, .external_lex_state = 1}, + [8104] = {.lex_state = 113, .external_lex_state = 1}, + [8105] = {.lex_state = 113, .external_lex_state = 1}, + [8106] = {.lex_state = 113, .external_lex_state = 1}, + [8107] = {.lex_state = 113, .external_lex_state = 1}, + [8108] = {.lex_state = 113, .external_lex_state = 1}, + [8109] = {.lex_state = 113, .external_lex_state = 1}, + [8110] = {.lex_state = 111, .external_lex_state = 1}, + [8111] = {.lex_state = 113, .external_lex_state = 1}, + [8112] = {.lex_state = 113, .external_lex_state = 1}, + [8113] = {.lex_state = 113, .external_lex_state = 1}, + [8114] = {.lex_state = 113, .external_lex_state = 1}, + [8115] = {.lex_state = 113, .external_lex_state = 1}, + [8116] = {.lex_state = 113, .external_lex_state = 1}, + [8117] = {.lex_state = 113, .external_lex_state = 1}, + [8118] = {.lex_state = 113, .external_lex_state = 1}, + [8119] = {.lex_state = 113, .external_lex_state = 1}, + [8120] = {.lex_state = 113, .external_lex_state = 1}, + [8121] = {.lex_state = 113, .external_lex_state = 1}, + [8122] = {.lex_state = 113, .external_lex_state = 1}, + [8123] = {.lex_state = 113, .external_lex_state = 1}, + [8124] = {.lex_state = 113, .external_lex_state = 1}, + [8125] = {.lex_state = 113, .external_lex_state = 1}, + [8126] = {.lex_state = 113, .external_lex_state = 1}, + [8127] = {.lex_state = 113, .external_lex_state = 1}, + [8128] = {.lex_state = 113, .external_lex_state = 1}, + [8129] = {.lex_state = 113, .external_lex_state = 1}, + [8130] = {.lex_state = 113, .external_lex_state = 1}, + [8131] = {.lex_state = 113, .external_lex_state = 1}, + [8132] = {.lex_state = 113, .external_lex_state = 1}, + [8133] = {.lex_state = 113, .external_lex_state = 1}, + [8134] = {.lex_state = 113, .external_lex_state = 1}, + [8135] = {.lex_state = 113, .external_lex_state = 1}, + [8136] = {.lex_state = 113, .external_lex_state = 1}, + [8137] = {.lex_state = 113, .external_lex_state = 1}, + [8138] = {.lex_state = 111, .external_lex_state = 1}, + [8139] = {.lex_state = 113, .external_lex_state = 1}, + [8140] = {.lex_state = 111, .external_lex_state = 1}, + [8141] = {.lex_state = 113, .external_lex_state = 1}, + [8142] = {.lex_state = 113, .external_lex_state = 1}, + [8143] = {.lex_state = 113, .external_lex_state = 1}, + [8144] = {.lex_state = 113, .external_lex_state = 1}, + [8145] = {.lex_state = 113, .external_lex_state = 1}, + [8146] = {.lex_state = 111, .external_lex_state = 1}, + [8147] = {.lex_state = 87, .external_lex_state = 1}, + [8148] = {.lex_state = 113, .external_lex_state = 1}, + [8149] = {.lex_state = 113, .external_lex_state = 1}, + [8150] = {.lex_state = 113, .external_lex_state = 1}, + [8151] = {.lex_state = 111, .external_lex_state = 1}, + [8152] = {.lex_state = 113, .external_lex_state = 1}, + [8153] = {.lex_state = 111, .external_lex_state = 1}, + [8154] = {.lex_state = 111, .external_lex_state = 1}, + [8155] = {.lex_state = 111, .external_lex_state = 1}, + [8156] = {.lex_state = 111, .external_lex_state = 1}, + [8157] = {.lex_state = 111, .external_lex_state = 1}, + [8158] = {.lex_state = 76, .external_lex_state = 1}, + [8159] = {.lex_state = 89, .external_lex_state = 1}, + [8160] = {.lex_state = 77, .external_lex_state = 1}, + [8161] = {.lex_state = 111, .external_lex_state = 1}, + [8162] = {.lex_state = 77, .external_lex_state = 1}, + [8163] = {.lex_state = 77, .external_lex_state = 1}, + [8164] = {.lex_state = 111, .external_lex_state = 1}, + [8165] = {.lex_state = 89, .external_lex_state = 1}, + [8166] = {.lex_state = 77, .external_lex_state = 1}, + [8167] = {.lex_state = 77, .external_lex_state = 1}, + [8168] = {.lex_state = 77, .external_lex_state = 1}, + [8169] = {.lex_state = 89, .external_lex_state = 1}, + [8170] = {.lex_state = 89, .external_lex_state = 1}, + [8171] = {.lex_state = 77, .external_lex_state = 1}, + [8172] = {.lex_state = 77, .external_lex_state = 1}, + [8173] = {.lex_state = 77, .external_lex_state = 1}, + [8174] = {.lex_state = 77, .external_lex_state = 1}, + [8175] = {.lex_state = 77, .external_lex_state = 1}, + [8176] = {.lex_state = 89, .external_lex_state = 1}, + [8177] = {.lex_state = 77, .external_lex_state = 1}, + [8178] = {.lex_state = 77, .external_lex_state = 1}, + [8179] = {.lex_state = 77, .external_lex_state = 1}, + [8180] = {.lex_state = 77, .external_lex_state = 1}, + [8181] = {.lex_state = 77, .external_lex_state = 1}, + [8182] = {.lex_state = 77, .external_lex_state = 1}, + [8183] = {.lex_state = 89, .external_lex_state = 1}, + [8184] = {.lex_state = 111, .external_lex_state = 1}, + [8185] = {.lex_state = 77, .external_lex_state = 1}, + [8186] = {.lex_state = 77, .external_lex_state = 1}, + [8187] = {.lex_state = 77, .external_lex_state = 1}, + [8188] = {.lex_state = 77, .external_lex_state = 1}, + [8189] = {.lex_state = 77, .external_lex_state = 1}, + [8190] = {.lex_state = 89, .external_lex_state = 1}, + [8191] = {.lex_state = 77, .external_lex_state = 1}, + [8192] = {.lex_state = 77, .external_lex_state = 1}, + [8193] = {.lex_state = 77, .external_lex_state = 1}, + [8194] = {.lex_state = 77, .external_lex_state = 1}, + [8195] = {.lex_state = 77, .external_lex_state = 1}, + [8196] = {.lex_state = 89, .external_lex_state = 1}, + [8197] = {.lex_state = 89, .external_lex_state = 1}, + [8198] = {.lex_state = 77, .external_lex_state = 1}, + [8199] = {.lex_state = 77, .external_lex_state = 1}, + [8200] = {.lex_state = 546, .external_lex_state = 1}, + [8201] = {.lex_state = 77, .external_lex_state = 1}, + [8202] = {.lex_state = 89, .external_lex_state = 1}, + [8203] = {.lex_state = 77, .external_lex_state = 1}, + [8204] = {.lex_state = 89, .external_lex_state = 1}, + [8205] = {.lex_state = 77, .external_lex_state = 1}, + [8206] = {.lex_state = 77, .external_lex_state = 1}, + [8207] = {.lex_state = 111, .external_lex_state = 1}, + [8208] = {.lex_state = 77, .external_lex_state = 1}, + [8209] = {.lex_state = 77, .external_lex_state = 1}, + [8210] = {.lex_state = 77, .external_lex_state = 1}, + [8211] = {.lex_state = 89, .external_lex_state = 1}, + [8212] = {.lex_state = 89, .external_lex_state = 1}, + [8213] = {.lex_state = 89, .external_lex_state = 1}, + [8214] = {.lex_state = 89, .external_lex_state = 1}, + [8215] = {.lex_state = 89, .external_lex_state = 1}, + [8216] = {.lex_state = 89, .external_lex_state = 1}, + [8217] = {.lex_state = 111, .external_lex_state = 1}, + [8218] = {.lex_state = 77, .external_lex_state = 1}, + [8219] = {.lex_state = 77, .external_lex_state = 1}, + [8220] = {.lex_state = 77, .external_lex_state = 1}, + [8221] = {.lex_state = 89, .external_lex_state = 1}, + [8222] = {.lex_state = 89, .external_lex_state = 1}, + [8223] = {.lex_state = 89, .external_lex_state = 1}, + [8224] = {.lex_state = 77, .external_lex_state = 1}, + [8225] = {.lex_state = 77, .external_lex_state = 1}, + [8226] = {.lex_state = 89, .external_lex_state = 1}, + [8227] = {.lex_state = 77, .external_lex_state = 1}, + [8228] = {.lex_state = 89, .external_lex_state = 1}, + [8229] = {.lex_state = 89, .external_lex_state = 1}, + [8230] = {.lex_state = 89, .external_lex_state = 1}, + [8231] = {.lex_state = 77, .external_lex_state = 1}, + [8232] = {.lex_state = 77, .external_lex_state = 1}, + [8233] = {.lex_state = 89, .external_lex_state = 1}, + [8234] = {.lex_state = 77, .external_lex_state = 1}, + [8235] = {.lex_state = 89, .external_lex_state = 1}, + [8236] = {.lex_state = 77, .external_lex_state = 1}, + [8237] = {.lex_state = 89, .external_lex_state = 1}, + [8238] = {.lex_state = 89, .external_lex_state = 1}, + [8239] = {.lex_state = 89, .external_lex_state = 1}, + [8240] = {.lex_state = 77, .external_lex_state = 1}, + [8241] = {.lex_state = 89, .external_lex_state = 1}, + [8242] = {.lex_state = 89, .external_lex_state = 1}, + [8243] = {.lex_state = 89, .external_lex_state = 1}, + [8244] = {.lex_state = 89, .external_lex_state = 1}, + [8245] = {.lex_state = 89, .external_lex_state = 1}, + [8246] = {.lex_state = 89, .external_lex_state = 1}, + [8247] = {.lex_state = 89, .external_lex_state = 1}, + [8248] = {.lex_state = 89, .external_lex_state = 1}, + [8249] = {.lex_state = 111, .external_lex_state = 1}, + [8250] = {.lex_state = 77, .external_lex_state = 1}, + [8251] = {.lex_state = 111, .external_lex_state = 1}, + [8252] = {.lex_state = 111, .external_lex_state = 1}, + [8253] = {.lex_state = 89, .external_lex_state = 1}, + [8254] = {.lex_state = 89, .external_lex_state = 1}, + [8255] = {.lex_state = 89, .external_lex_state = 1}, + [8256] = {.lex_state = 77, .external_lex_state = 1}, + [8257] = {.lex_state = 89, .external_lex_state = 1}, + [8258] = {.lex_state = 89, .external_lex_state = 1}, + [8259] = {.lex_state = 89, .external_lex_state = 1}, + [8260] = {.lex_state = 89, .external_lex_state = 1}, + [8261] = {.lex_state = 77, .external_lex_state = 1}, + [8262] = {.lex_state = 111, .external_lex_state = 1}, + [8263] = {.lex_state = 89, .external_lex_state = 1}, + [8264] = {.lex_state = 89, .external_lex_state = 1}, + [8265] = {.lex_state = 89, .external_lex_state = 1}, + [8266] = {.lex_state = 111, .external_lex_state = 1}, + [8267] = {.lex_state = 89, .external_lex_state = 1}, + [8268] = {.lex_state = 89, .external_lex_state = 1}, + [8269] = {.lex_state = 89, .external_lex_state = 1}, + [8270] = {.lex_state = 89, .external_lex_state = 1}, + [8271] = {.lex_state = 77, .external_lex_state = 1}, + [8272] = {.lex_state = 77, .external_lex_state = 1}, + [8273] = {.lex_state = 77, .external_lex_state = 1}, + [8274] = {.lex_state = 77, .external_lex_state = 1}, + [8275] = {.lex_state = 89, .external_lex_state = 1}, + [8276] = {.lex_state = 111, .external_lex_state = 1}, + [8277] = {.lex_state = 89, .external_lex_state = 1}, + [8278] = {.lex_state = 111, .external_lex_state = 1}, + [8279] = {.lex_state = 89, .external_lex_state = 1}, + [8280] = {.lex_state = 77, .external_lex_state = 1}, + [8281] = {.lex_state = 89, .external_lex_state = 1}, + [8282] = {.lex_state = 111, .external_lex_state = 1}, + [8283] = {.lex_state = 77, .external_lex_state = 1}, + [8284] = {.lex_state = 77, .external_lex_state = 1}, + [8285] = {.lex_state = 77, .external_lex_state = 1}, + [8286] = {.lex_state = 89, .external_lex_state = 1}, + [8287] = {.lex_state = 89, .external_lex_state = 1}, + [8288] = {.lex_state = 89, .external_lex_state = 1}, + [8289] = {.lex_state = 111, .external_lex_state = 1}, + [8290] = {.lex_state = 111, .external_lex_state = 1}, + [8291] = {.lex_state = 111, .external_lex_state = 1}, + [8292] = {.lex_state = 111, .external_lex_state = 1}, + [8293] = {.lex_state = 114, .external_lex_state = 1}, + [8294] = {.lex_state = 111, .external_lex_state = 1}, + [8295] = {.lex_state = 111, .external_lex_state = 1}, + [8296] = {.lex_state = 111, .external_lex_state = 1}, + [8297] = {.lex_state = 111, .external_lex_state = 1}, + [8298] = {.lex_state = 111, .external_lex_state = 1}, + [8299] = {.lex_state = 111, .external_lex_state = 1}, + [8300] = {.lex_state = 111, .external_lex_state = 1}, + [8301] = {.lex_state = 111, .external_lex_state = 1}, + [8302] = {.lex_state = 111, .external_lex_state = 1}, + [8303] = {.lex_state = 111, .external_lex_state = 1}, + [8304] = {.lex_state = 111, .external_lex_state = 1}, + [8305] = {.lex_state = 111, .external_lex_state = 1}, + [8306] = {.lex_state = 111, .external_lex_state = 1}, + [8307] = {.lex_state = 111, .external_lex_state = 1}, + [8308] = {.lex_state = 111, .external_lex_state = 1}, + [8309] = {.lex_state = 111, .external_lex_state = 1}, + [8310] = {.lex_state = 111, .external_lex_state = 1}, + [8311] = {.lex_state = 111, .external_lex_state = 1}, + [8312] = {.lex_state = 111, .external_lex_state = 1}, + [8313] = {.lex_state = 111, .external_lex_state = 1}, + [8314] = {.lex_state = 111, .external_lex_state = 1}, + [8315] = {.lex_state = 111, .external_lex_state = 1}, + [8316] = {.lex_state = 111, .external_lex_state = 1}, + [8317] = {.lex_state = 111, .external_lex_state = 1}, + [8318] = {.lex_state = 111, .external_lex_state = 1}, + [8319] = {.lex_state = 111, .external_lex_state = 1}, + [8320] = {.lex_state = 111, .external_lex_state = 1}, + [8321] = {.lex_state = 111, .external_lex_state = 1}, + [8322] = {.lex_state = 111, .external_lex_state = 1}, + [8323] = {.lex_state = 111, .external_lex_state = 1}, + [8324] = {.lex_state = 111, .external_lex_state = 1}, + [8325] = {.lex_state = 111, .external_lex_state = 1}, + [8326] = {.lex_state = 111, .external_lex_state = 1}, + [8327] = {.lex_state = 111, .external_lex_state = 1}, + [8328] = {.lex_state = 111, .external_lex_state = 1}, + [8329] = {.lex_state = 111, .external_lex_state = 1}, + [8330] = {.lex_state = 111, .external_lex_state = 1}, + [8331] = {.lex_state = 111, .external_lex_state = 1}, + [8332] = {.lex_state = 111, .external_lex_state = 1}, + [8333] = {.lex_state = 111, .external_lex_state = 1}, + [8334] = {.lex_state = 111, .external_lex_state = 1}, + [8335] = {.lex_state = 111, .external_lex_state = 1}, + [8336] = {.lex_state = 111, .external_lex_state = 1}, + [8337] = {.lex_state = 114, .external_lex_state = 1}, + [8338] = {.lex_state = 111, .external_lex_state = 1}, + [8339] = {.lex_state = 111, .external_lex_state = 1}, + [8340] = {.lex_state = 111, .external_lex_state = 1}, + [8341] = {.lex_state = 111, .external_lex_state = 1}, + [8342] = {.lex_state = 111, .external_lex_state = 1}, + [8343] = {.lex_state = 111, .external_lex_state = 1}, + [8344] = {.lex_state = 111, .external_lex_state = 1}, + [8345] = {.lex_state = 111, .external_lex_state = 1}, + [8346] = {.lex_state = 111, .external_lex_state = 1}, + [8347] = {.lex_state = 111, .external_lex_state = 1}, + [8348] = {.lex_state = 111, .external_lex_state = 1}, + [8349] = {.lex_state = 111, .external_lex_state = 1}, + [8350] = {.lex_state = 111, .external_lex_state = 1}, + [8351] = {.lex_state = 111, .external_lex_state = 1}, + [8352] = {.lex_state = 111, .external_lex_state = 1}, + [8353] = {.lex_state = 111, .external_lex_state = 1}, + [8354] = {.lex_state = 111, .external_lex_state = 1}, + [8355] = {.lex_state = 111, .external_lex_state = 1}, + [8356] = {.lex_state = 111, .external_lex_state = 1}, + [8357] = {.lex_state = 111, .external_lex_state = 1}, + [8358] = {.lex_state = 111, .external_lex_state = 1}, + [8359] = {.lex_state = 111, .external_lex_state = 1}, + [8360] = {.lex_state = 111, .external_lex_state = 1}, + [8361] = {.lex_state = 111, .external_lex_state = 1}, + [8362] = {.lex_state = 111, .external_lex_state = 1}, + [8363] = {.lex_state = 111, .external_lex_state = 1}, + [8364] = {.lex_state = 111, .external_lex_state = 1}, + [8365] = {.lex_state = 111, .external_lex_state = 1}, + [8366] = {.lex_state = 111, .external_lex_state = 1}, + [8367] = {.lex_state = 111, .external_lex_state = 1}, + [8368] = {.lex_state = 111, .external_lex_state = 1}, + [8369] = {.lex_state = 111, .external_lex_state = 1}, + [8370] = {.lex_state = 111, .external_lex_state = 1}, + [8371] = {.lex_state = 111, .external_lex_state = 1}, + [8372] = {.lex_state = 111, .external_lex_state = 1}, + [8373] = {.lex_state = 111, .external_lex_state = 1}, + [8374] = {.lex_state = 111, .external_lex_state = 1}, + [8375] = {.lex_state = 111, .external_lex_state = 1}, + [8376] = {.lex_state = 111, .external_lex_state = 1}, + [8377] = {.lex_state = 111, .external_lex_state = 1}, + [8378] = {.lex_state = 111, .external_lex_state = 1}, + [8379] = {.lex_state = 111, .external_lex_state = 1}, + [8380] = {.lex_state = 114, .external_lex_state = 1}, + [8381] = {.lex_state = 114, .external_lex_state = 1}, + [8382] = {.lex_state = 114, .external_lex_state = 1}, + [8383] = {.lex_state = 114, .external_lex_state = 1}, + [8384] = {.lex_state = 111, .external_lex_state = 1}, + [8385] = {.lex_state = 114, .external_lex_state = 1}, + [8386] = {.lex_state = 111, .external_lex_state = 1}, + [8387] = {.lex_state = 111, .external_lex_state = 1}, + [8388] = {.lex_state = 115, .external_lex_state = 1}, + [8389] = {.lex_state = 111, .external_lex_state = 1}, + [8390] = {.lex_state = 113, .external_lex_state = 1}, + [8391] = {.lex_state = 115, .external_lex_state = 1}, + [8392] = {.lex_state = 114, .external_lex_state = 1}, + [8393] = {.lex_state = 113, .external_lex_state = 1}, + [8394] = {.lex_state = 111, .external_lex_state = 1}, + [8395] = {.lex_state = 111, .external_lex_state = 1}, + [8396] = {.lex_state = 116, .external_lex_state = 1}, + [8397] = {.lex_state = 111, .external_lex_state = 1}, + [8398] = {.lex_state = 546, .external_lex_state = 1}, + [8399] = {.lex_state = 111, .external_lex_state = 1}, + [8400] = {.lex_state = 116, .external_lex_state = 1}, + [8401] = {.lex_state = 115, .external_lex_state = 1}, + [8402] = {.lex_state = 111, .external_lex_state = 1}, + [8403] = {.lex_state = 111, .external_lex_state = 1}, + [8404] = {.lex_state = 116, .external_lex_state = 1}, + [8405] = {.lex_state = 111, .external_lex_state = 1}, + [8406] = {.lex_state = 546, .external_lex_state = 1}, + [8407] = {.lex_state = 114, .external_lex_state = 1}, + [8408] = {.lex_state = 113, .external_lex_state = 1}, + [8409] = {.lex_state = 114, .external_lex_state = 1}, + [8410] = {.lex_state = 113, .external_lex_state = 1}, + [8411] = {.lex_state = 114, .external_lex_state = 1}, + [8412] = {.lex_state = 113, .external_lex_state = 1}, + [8413] = {.lex_state = 113, .external_lex_state = 1}, + [8414] = {.lex_state = 114, .external_lex_state = 1}, + [8415] = {.lex_state = 111, .external_lex_state = 1}, + [8416] = {.lex_state = 131, .external_lex_state = 1}, + [8417] = {.lex_state = 131, .external_lex_state = 1}, + [8418] = {.lex_state = 131, .external_lex_state = 1}, + [8419] = {.lex_state = 113, .external_lex_state = 1}, + [8420] = {.lex_state = 131, .external_lex_state = 1}, + [8421] = {.lex_state = 131, .external_lex_state = 1}, + [8422] = {.lex_state = 131, .external_lex_state = 1}, + [8423] = {.lex_state = 131, .external_lex_state = 1}, + [8424] = {.lex_state = 131, .external_lex_state = 1}, + [8425] = {.lex_state = 131, .external_lex_state = 1}, + [8426] = {.lex_state = 131, .external_lex_state = 1}, + [8427] = {.lex_state = 131, .external_lex_state = 1}, + [8428] = {.lex_state = 131, .external_lex_state = 1}, + [8429] = {.lex_state = 131, .external_lex_state = 1}, + [8430] = {.lex_state = 131, .external_lex_state = 1}, + [8431] = {.lex_state = 131, .external_lex_state = 1}, + [8432] = {.lex_state = 131, .external_lex_state = 1}, + [8433] = {.lex_state = 131, .external_lex_state = 1}, + [8434] = {.lex_state = 131, .external_lex_state = 1}, + [8435] = {.lex_state = 113, .external_lex_state = 1}, + [8436] = {.lex_state = 131, .external_lex_state = 1}, + [8437] = {.lex_state = 131, .external_lex_state = 1}, + [8438] = {.lex_state = 113, .external_lex_state = 1}, + [8439] = {.lex_state = 131, .external_lex_state = 1}, + [8440] = {.lex_state = 131, .external_lex_state = 1}, + [8441] = {.lex_state = 113, .external_lex_state = 1}, + [8442] = {.lex_state = 553, .external_lex_state = 1}, + [8443] = {.lex_state = 131, .external_lex_state = 1}, + [8444] = {.lex_state = 113, .external_lex_state = 1}, + [8445] = {.lex_state = 113, .external_lex_state = 1}, + [8446] = {.lex_state = 131, .external_lex_state = 1}, + [8447] = {.lex_state = 131, .external_lex_state = 1}, + [8448] = {.lex_state = 557, .external_lex_state = 1}, + [8449] = {.lex_state = 131, .external_lex_state = 1}, + [8450] = {.lex_state = 557, .external_lex_state = 1}, + [8451] = {.lex_state = 117, .external_lex_state = 1}, + [8452] = {.lex_state = 557, .external_lex_state = 1}, + [8453] = {.lex_state = 117, .external_lex_state = 1}, + [8454] = {.lex_state = 557, .external_lex_state = 1}, + [8455] = {.lex_state = 557, .external_lex_state = 1}, + [8456] = {.lex_state = 117, .external_lex_state = 1}, + [8457] = {.lex_state = 557, .external_lex_state = 1}, + [8458] = {.lex_state = 117, .external_lex_state = 1}, + [8459] = {.lex_state = 117, .external_lex_state = 1}, + [8460] = {.lex_state = 557, .external_lex_state = 1}, + [8461] = {.lex_state = 117, .external_lex_state = 1}, + [8462] = {.lex_state = 557, .external_lex_state = 1}, + [8463] = {.lex_state = 117, .external_lex_state = 1}, + [8464] = {.lex_state = 557, .external_lex_state = 1}, + [8465] = {.lex_state = 117, .external_lex_state = 1}, + [8466] = {.lex_state = 117, .external_lex_state = 1}, + [8467] = {.lex_state = 557, .external_lex_state = 1}, + [8468] = {.lex_state = 557, .external_lex_state = 1}, + [8469] = {.lex_state = 557, .external_lex_state = 1}, + [8470] = {.lex_state = 117, .external_lex_state = 1}, + [8471] = {.lex_state = 117, .external_lex_state = 1}, + [8472] = {.lex_state = 117, .external_lex_state = 1}, + [8473] = {.lex_state = 117, .external_lex_state = 1}, + [8474] = {.lex_state = 117, .external_lex_state = 1}, + [8475] = {.lex_state = 117, .external_lex_state = 1}, + [8476] = {.lex_state = 117, .external_lex_state = 1}, + [8477] = {.lex_state = 561, .external_lex_state = 1}, + [8478] = {.lex_state = 117, .external_lex_state = 1}, + [8479] = {.lex_state = 117, .external_lex_state = 1}, + [8480] = {.lex_state = 557, .external_lex_state = 1}, + [8481] = {.lex_state = 117, .external_lex_state = 1}, + [8482] = {.lex_state = 557, .external_lex_state = 1}, + [8483] = {.lex_state = 117, .external_lex_state = 1}, + [8484] = {.lex_state = 555, .external_lex_state = 1}, + [8485] = {.lex_state = 557, .external_lex_state = 1}, + [8486] = {.lex_state = 117, .external_lex_state = 1}, + [8487] = {.lex_state = 117, .external_lex_state = 1}, + [8488] = {.lex_state = 117, .external_lex_state = 1}, + [8489] = {.lex_state = 117, .external_lex_state = 1}, + [8490] = {.lex_state = 557, .external_lex_state = 1}, + [8491] = {.lex_state = 558, .external_lex_state = 1}, + [8492] = {.lex_state = 117, .external_lex_state = 1}, + [8493] = {.lex_state = 557, .external_lex_state = 1}, + [8494] = {.lex_state = 131, .external_lex_state = 1}, + [8495] = {.lex_state = 558, .external_lex_state = 1}, + [8496] = {.lex_state = 561, .external_lex_state = 1}, + [8497] = {.lex_state = 131, .external_lex_state = 1}, + [8498] = {.lex_state = 131, .external_lex_state = 1}, + [8499] = {.lex_state = 131, .external_lex_state = 1}, + [8500] = {.lex_state = 131, .external_lex_state = 1}, + [8501] = {.lex_state = 561, .external_lex_state = 1}, + [8502] = {.lex_state = 558, .external_lex_state = 1}, + [8503] = {.lex_state = 561, .external_lex_state = 1}, + [8504] = {.lex_state = 131, .external_lex_state = 1}, + [8505] = {.lex_state = 561, .external_lex_state = 1}, + [8506] = {.lex_state = 131, .external_lex_state = 1}, + [8507] = {.lex_state = 131, .external_lex_state = 1}, + [8508] = {.lex_state = 131, .external_lex_state = 1}, + [8509] = {.lex_state = 131, .external_lex_state = 1}, + [8510] = {.lex_state = 131, .external_lex_state = 1}, + [8511] = {.lex_state = 131, .external_lex_state = 1}, + [8512] = {.lex_state = 558, .external_lex_state = 1}, + [8513] = {.lex_state = 562, .external_lex_state = 1}, + [8514] = {.lex_state = 558, .external_lex_state = 1}, + [8515] = {.lex_state = 561, .external_lex_state = 1}, + [8516] = {.lex_state = 561, .external_lex_state = 1}, + [8517] = {.lex_state = 131, .external_lex_state = 1}, + [8518] = {.lex_state = 131, .external_lex_state = 1}, + [8519] = {.lex_state = 131, .external_lex_state = 1}, + [8520] = {.lex_state = 561, .external_lex_state = 1}, + [8521] = {.lex_state = 131, .external_lex_state = 1}, + [8522] = {.lex_state = 546, .external_lex_state = 1}, + [8523] = {.lex_state = 546, .external_lex_state = 1}, + [8524] = {.lex_state = 555, .external_lex_state = 1}, + [8525] = {.lex_state = 131, .external_lex_state = 1}, + [8526] = {.lex_state = 558, .external_lex_state = 1}, + [8527] = {.lex_state = 131, .external_lex_state = 1}, + [8528] = {.lex_state = 131, .external_lex_state = 1}, + [8529] = {.lex_state = 131, .external_lex_state = 1}, + [8530] = {.lex_state = 131, .external_lex_state = 1}, + [8531] = {.lex_state = 131, .external_lex_state = 1}, + [8532] = {.lex_state = 561, .external_lex_state = 1}, + [8533] = {.lex_state = 131, .external_lex_state = 1}, + [8534] = {.lex_state = 561, .external_lex_state = 1}, + [8535] = {.lex_state = 131, .external_lex_state = 1}, + [8536] = {.lex_state = 555, .external_lex_state = 1}, + [8537] = {.lex_state = 131, .external_lex_state = 1}, + [8538] = {.lex_state = 555, .external_lex_state = 1}, + [8539] = {.lex_state = 131, .external_lex_state = 1}, + [8540] = {.lex_state = 131, .external_lex_state = 1}, + [8541] = {.lex_state = 558, .external_lex_state = 1}, + [8542] = {.lex_state = 131, .external_lex_state = 1}, + [8543] = {.lex_state = 558, .external_lex_state = 1}, + [8544] = {.lex_state = 555, .external_lex_state = 1}, + [8545] = {.lex_state = 561, .external_lex_state = 1}, + [8546] = {.lex_state = 131, .external_lex_state = 1}, + [8547] = {.lex_state = 131, .external_lex_state = 1}, + [8548] = {.lex_state = 546, .external_lex_state = 1}, + [8549] = {.lex_state = 547, .external_lex_state = 1}, + [8550] = {.lex_state = 546, .external_lex_state = 1}, + [8551] = {.lex_state = 131, .external_lex_state = 1}, + [8552] = {.lex_state = 558, .external_lex_state = 1}, + [8553] = {.lex_state = 131, .external_lex_state = 1}, + [8554] = {.lex_state = 559, .external_lex_state = 1}, + [8555] = {.lex_state = 131, .external_lex_state = 1}, + [8556] = {.lex_state = 561, .external_lex_state = 1}, + [8557] = {.lex_state = 131, .external_lex_state = 1}, + [8558] = {.lex_state = 131, .external_lex_state = 1}, + [8559] = {.lex_state = 547, .external_lex_state = 1}, + [8560] = {.lex_state = 547, .external_lex_state = 1}, + [8561] = {.lex_state = 131, .external_lex_state = 1}, + [8562] = {.lex_state = 131, .external_lex_state = 1}, + [8563] = {.lex_state = 131, .external_lex_state = 1}, + [8564] = {.lex_state = 131, .external_lex_state = 1}, + [8565] = {.lex_state = 558, .external_lex_state = 1}, + [8566] = {.lex_state = 131, .external_lex_state = 1}, + [8567] = {.lex_state = 131, .external_lex_state = 1}, + [8568] = {.lex_state = 558, .external_lex_state = 1}, + [8569] = {.lex_state = 558, .external_lex_state = 1}, + [8570] = {.lex_state = 131, .external_lex_state = 1}, + [8571] = {.lex_state = 131, .external_lex_state = 1}, + [8572] = {.lex_state = 131, .external_lex_state = 1}, + [8573] = {.lex_state = 561, .external_lex_state = 1}, + [8574] = {.lex_state = 131, .external_lex_state = 1}, + [8575] = {.lex_state = 561, .external_lex_state = 1}, + [8576] = {.lex_state = 561, .external_lex_state = 1}, + [8577] = {.lex_state = 131, .external_lex_state = 1}, + [8578] = {.lex_state = 561, .external_lex_state = 1}, + [8579] = {.lex_state = 558, .external_lex_state = 1}, + [8580] = {.lex_state = 131, .external_lex_state = 1}, + [8581] = {.lex_state = 131, .external_lex_state = 1}, + [8582] = {.lex_state = 131, .external_lex_state = 1}, + [8583] = {.lex_state = 131, .external_lex_state = 1}, + [8584] = {.lex_state = 131, .external_lex_state = 1}, + [8585] = {.lex_state = 131, .external_lex_state = 1}, + [8586] = {.lex_state = 131, .external_lex_state = 1}, + [8587] = {.lex_state = 131, .external_lex_state = 1}, + [8588] = {.lex_state = 131, .external_lex_state = 1}, + [8589] = {.lex_state = 131, .external_lex_state = 1}, + [8590] = {.lex_state = 131, .external_lex_state = 1}, + [8591] = {.lex_state = 131, .external_lex_state = 1}, + [8592] = {.lex_state = 131, .external_lex_state = 1}, + [8593] = {.lex_state = 131, .external_lex_state = 1}, + [8594] = {.lex_state = 131, .external_lex_state = 1}, + [8595] = {.lex_state = 131, .external_lex_state = 1}, + [8596] = {.lex_state = 131, .external_lex_state = 1}, + [8597] = {.lex_state = 131, .external_lex_state = 1}, + [8598] = {.lex_state = 131, .external_lex_state = 1}, + [8599] = {.lex_state = 546, .external_lex_state = 1}, + [8600] = {.lex_state = 131, .external_lex_state = 1}, + [8601] = {.lex_state = 131, .external_lex_state = 1}, + [8602] = {.lex_state = 131, .external_lex_state = 1}, + [8603] = {.lex_state = 131, .external_lex_state = 1}, + [8604] = {.lex_state = 131, .external_lex_state = 1}, + [8605] = {.lex_state = 131, .external_lex_state = 1}, + [8606] = {.lex_state = 131, .external_lex_state = 1}, + [8607] = {.lex_state = 131, .external_lex_state = 1}, + [8608] = {.lex_state = 131, .external_lex_state = 1}, + [8609] = {.lex_state = 131, .external_lex_state = 1}, + [8610] = {.lex_state = 131, .external_lex_state = 1}, + [8611] = {.lex_state = 131, .external_lex_state = 1}, + [8612] = {.lex_state = 131, .external_lex_state = 1}, + [8613] = {.lex_state = 131, .external_lex_state = 1}, + [8614] = {.lex_state = 131, .external_lex_state = 1}, + [8615] = {.lex_state = 131, .external_lex_state = 1}, + [8616] = {.lex_state = 131, .external_lex_state = 1}, + [8617] = {.lex_state = 131, .external_lex_state = 1}, + [8618] = {.lex_state = 131, .external_lex_state = 1}, + [8619] = {.lex_state = 131, .external_lex_state = 1}, + [8620] = {.lex_state = 131, .external_lex_state = 1}, + [8621] = {.lex_state = 131, .external_lex_state = 1}, + [8622] = {.lex_state = 131, .external_lex_state = 1}, + [8623] = {.lex_state = 131, .external_lex_state = 1}, + [8624] = {.lex_state = 131, .external_lex_state = 1}, + [8625] = {.lex_state = 131, .external_lex_state = 1}, + [8626] = {.lex_state = 131, .external_lex_state = 1}, + [8627] = {.lex_state = 131, .external_lex_state = 1}, + [8628] = {.lex_state = 131, .external_lex_state = 1}, + [8629] = {.lex_state = 131, .external_lex_state = 1}, + [8630] = {.lex_state = 555, .external_lex_state = 1}, + [8631] = {.lex_state = 131, .external_lex_state = 1}, + [8632] = {.lex_state = 131, .external_lex_state = 1}, + [8633] = {.lex_state = 131, .external_lex_state = 1}, + [8634] = {.lex_state = 131, .external_lex_state = 1}, + [8635] = {.lex_state = 131, .external_lex_state = 1}, + [8636] = {.lex_state = 131, .external_lex_state = 1}, + [8637] = {.lex_state = 131, .external_lex_state = 1}, + [8638] = {.lex_state = 131, .external_lex_state = 1}, + [8639] = {.lex_state = 131, .external_lex_state = 1}, + [8640] = {.lex_state = 131, .external_lex_state = 1}, + [8641] = {.lex_state = 131, .external_lex_state = 1}, + [8642] = {.lex_state = 131, .external_lex_state = 1}, + [8643] = {.lex_state = 131, .external_lex_state = 1}, + [8644] = {.lex_state = 131, .external_lex_state = 1}, + [8645] = {.lex_state = 131, .external_lex_state = 1}, + [8646] = {.lex_state = 131, .external_lex_state = 1}, + [8647] = {.lex_state = 131, .external_lex_state = 1}, + [8648] = {.lex_state = 131, .external_lex_state = 1}, + [8649] = {.lex_state = 131, .external_lex_state = 1}, + [8650] = {.lex_state = 131, .external_lex_state = 1}, + [8651] = {.lex_state = 131, .external_lex_state = 1}, + [8652] = {.lex_state = 131, .external_lex_state = 1}, + [8653] = {.lex_state = 131, .external_lex_state = 1}, + [8654] = {.lex_state = 131, .external_lex_state = 1}, + [8655] = {.lex_state = 131, .external_lex_state = 1}, + [8656] = {.lex_state = 131, .external_lex_state = 1}, + [8657] = {.lex_state = 131, .external_lex_state = 1}, + [8658] = {.lex_state = 131, .external_lex_state = 1}, + [8659] = {.lex_state = 131, .external_lex_state = 1}, + [8660] = {.lex_state = 131, .external_lex_state = 1}, + [8661] = {.lex_state = 131, .external_lex_state = 1}, + [8662] = {.lex_state = 131, .external_lex_state = 1}, + [8663] = {.lex_state = 131, .external_lex_state = 1}, + [8664] = {.lex_state = 131, .external_lex_state = 1}, + [8665] = {.lex_state = 131, .external_lex_state = 1}, + [8666] = {.lex_state = 131, .external_lex_state = 1}, + [8667] = {.lex_state = 131, .external_lex_state = 1}, + [8668] = {.lex_state = 131, .external_lex_state = 1}, + [8669] = {.lex_state = 131, .external_lex_state = 1}, + [8670] = {.lex_state = 131, .external_lex_state = 1}, + [8671] = {.lex_state = 131, .external_lex_state = 1}, + [8672] = {.lex_state = 131, .external_lex_state = 1}, + [8673] = {.lex_state = 131, .external_lex_state = 1}, + [8674] = {.lex_state = 131, .external_lex_state = 1}, + [8675] = {.lex_state = 131, .external_lex_state = 1}, + [8676] = {.lex_state = 131, .external_lex_state = 1}, + [8677] = {.lex_state = 131, .external_lex_state = 1}, + [8678] = {.lex_state = 131, .external_lex_state = 1}, + [8679] = {.lex_state = 131, .external_lex_state = 1}, + [8680] = {.lex_state = 131, .external_lex_state = 1}, + [8681] = {.lex_state = 131, .external_lex_state = 1}, + [8682] = {.lex_state = 131, .external_lex_state = 1}, + [8683] = {.lex_state = 131, .external_lex_state = 1}, + [8684] = {.lex_state = 131, .external_lex_state = 1}, + [8685] = {.lex_state = 131, .external_lex_state = 1}, + [8686] = {.lex_state = 131, .external_lex_state = 1}, + [8687] = {.lex_state = 131, .external_lex_state = 1}, + [8688] = {.lex_state = 131, .external_lex_state = 1}, + [8689] = {.lex_state = 131, .external_lex_state = 1}, + [8690] = {.lex_state = 131, .external_lex_state = 1}, + [8691] = {.lex_state = 131, .external_lex_state = 1}, + [8692] = {.lex_state = 131, .external_lex_state = 1}, + [8693] = {.lex_state = 131, .external_lex_state = 1}, + [8694] = {.lex_state = 131, .external_lex_state = 1}, + [8695] = {.lex_state = 131, .external_lex_state = 1}, + [8696] = {.lex_state = 131, .external_lex_state = 1}, + [8697] = {.lex_state = 131, .external_lex_state = 1}, + [8698] = {.lex_state = 131, .external_lex_state = 1}, + [8699] = {.lex_state = 131, .external_lex_state = 1}, + [8700] = {.lex_state = 131, .external_lex_state = 1}, + [8701] = {.lex_state = 131, .external_lex_state = 1}, + [8702] = {.lex_state = 131, .external_lex_state = 1}, + [8703] = {.lex_state = 131, .external_lex_state = 1}, + [8704] = {.lex_state = 131, .external_lex_state = 1}, + [8705] = {.lex_state = 131, .external_lex_state = 1}, + [8706] = {.lex_state = 131, .external_lex_state = 1}, + [8707] = {.lex_state = 131, .external_lex_state = 1}, + [8708] = {.lex_state = 131, .external_lex_state = 1}, + [8709] = {.lex_state = 558, .external_lex_state = 1}, + [8710] = {.lex_state = 131, .external_lex_state = 1}, + [8711] = {.lex_state = 131, .external_lex_state = 1}, + [8712] = {.lex_state = 546, .external_lex_state = 1}, + [8713] = {.lex_state = 131, .external_lex_state = 1}, + [8714] = {.lex_state = 555, .external_lex_state = 1}, + [8715] = {.lex_state = 131, .external_lex_state = 1}, + [8716] = {.lex_state = 546, .external_lex_state = 1}, + [8717] = {.lex_state = 131, .external_lex_state = 1}, + [8718] = {.lex_state = 555, .external_lex_state = 1}, + [8719] = {.lex_state = 131, .external_lex_state = 1}, + [8720] = {.lex_state = 558, .external_lex_state = 1}, + [8721] = {.lex_state = 561, .external_lex_state = 1}, + [8722] = {.lex_state = 555, .external_lex_state = 1}, + [8723] = {.lex_state = 558, .external_lex_state = 1}, + [8724] = {.lex_state = 555, .external_lex_state = 1}, + [8725] = {.lex_state = 131, .external_lex_state = 1}, + [8726] = {.lex_state = 558, .external_lex_state = 1}, + [8727] = {.lex_state = 131, .external_lex_state = 1}, + [8728] = {.lex_state = 546, .external_lex_state = 1}, + [8729] = {.lex_state = 131, .external_lex_state = 1}, + [8730] = {.lex_state = 131, .external_lex_state = 1}, + [8731] = {.lex_state = 555, .external_lex_state = 1}, + [8732] = {.lex_state = 555, .external_lex_state = 1}, + [8733] = {.lex_state = 555, .external_lex_state = 1}, + [8734] = {.lex_state = 555, .external_lex_state = 1}, + [8735] = {.lex_state = 546, .external_lex_state = 1}, + [8736] = {.lex_state = 555, .external_lex_state = 1}, + [8737] = {.lex_state = 555, .external_lex_state = 1}, + [8738] = {.lex_state = 131, .external_lex_state = 1}, + [8739] = {.lex_state = 555, .external_lex_state = 1}, + [8740] = {.lex_state = 546, .external_lex_state = 1}, + [8741] = {.lex_state = 556, .external_lex_state = 1}, + [8742] = {.lex_state = 131, .external_lex_state = 1}, + [8743] = {.lex_state = 559, .external_lex_state = 1}, + [8744] = {.lex_state = 559, .external_lex_state = 1}, + [8745] = {.lex_state = 559, .external_lex_state = 1}, + [8746] = {.lex_state = 559, .external_lex_state = 1}, + [8747] = {.lex_state = 559, .external_lex_state = 1}, + [8748] = {.lex_state = 559, .external_lex_state = 1}, + [8749] = {.lex_state = 556, .external_lex_state = 1}, + [8750] = {.lex_state = 111, .external_lex_state = 1}, + [8751] = {.lex_state = 111, .external_lex_state = 1}, + [8752] = {.lex_state = 562, .external_lex_state = 1}, + [8753] = {.lex_state = 559, .external_lex_state = 1}, + [8754] = {.lex_state = 556, .external_lex_state = 1}, + [8755] = {.lex_state = 562, .external_lex_state = 1}, + [8756] = {.lex_state = 562, .external_lex_state = 1}, + [8757] = {.lex_state = 556, .external_lex_state = 1}, + [8758] = {.lex_state = 556, .external_lex_state = 1}, + [8759] = {.lex_state = 562, .external_lex_state = 1}, + [8760] = {.lex_state = 559, .external_lex_state = 1}, + [8761] = {.lex_state = 556, .external_lex_state = 1}, + [8762] = {.lex_state = 547, .external_lex_state = 1}, + [8763] = {.lex_state = 562, .external_lex_state = 1}, + [8764] = {.lex_state = 556, .external_lex_state = 1}, + [8765] = {.lex_state = 556, .external_lex_state = 1}, + [8766] = {.lex_state = 111, .external_lex_state = 1}, + [8767] = {.lex_state = 556, .external_lex_state = 1}, + [8768] = {.lex_state = 111, .external_lex_state = 1}, + [8769] = {.lex_state = 556, .external_lex_state = 1}, + [8770] = {.lex_state = 559, .external_lex_state = 1}, + [8771] = {.lex_state = 111, .external_lex_state = 1}, + [8772] = {.lex_state = 556, .external_lex_state = 1}, + [8773] = {.lex_state = 556, .external_lex_state = 1}, + [8774] = {.lex_state = 562, .external_lex_state = 1}, + [8775] = {.lex_state = 562, .external_lex_state = 1}, + [8776] = {.lex_state = 547, .external_lex_state = 1}, + [8777] = {.lex_state = 562, .external_lex_state = 1}, + [8778] = {.lex_state = 111, .external_lex_state = 1}, + [8779] = {.lex_state = 562, .external_lex_state = 1}, + [8780] = {.lex_state = 534, .external_lex_state = 1}, + [8781] = {.lex_state = 562, .external_lex_state = 1}, + [8782] = {.lex_state = 559, .external_lex_state = 1}, + [8783] = {.lex_state = 562, .external_lex_state = 1}, + [8784] = {.lex_state = 562, .external_lex_state = 1}, + [8785] = {.lex_state = 562, .external_lex_state = 1}, + [8786] = {.lex_state = 111, .external_lex_state = 1}, + [8787] = {.lex_state = 556, .external_lex_state = 1}, + [8788] = {.lex_state = 556, .external_lex_state = 1}, + [8789] = {.lex_state = 556, .external_lex_state = 1}, + [8790] = {.lex_state = 562, .external_lex_state = 1}, + [8791] = {.lex_state = 556, .external_lex_state = 1}, + [8792] = {.lex_state = 556, .external_lex_state = 1}, + [8793] = {.lex_state = 547, .external_lex_state = 1}, + [8794] = {.lex_state = 111, .external_lex_state = 1}, + [8795] = {.lex_state = 547, .external_lex_state = 1}, + [8796] = {.lex_state = 111, .external_lex_state = 1}, + [8797] = {.lex_state = 560, .external_lex_state = 1}, + [8798] = {.lex_state = 547, .external_lex_state = 1}, + [8799] = {.lex_state = 559, .external_lex_state = 1}, + [8800] = {.lex_state = 562, .external_lex_state = 1}, + [8801] = {.lex_state = 559, .external_lex_state = 1}, + [8802] = {.lex_state = 111, .external_lex_state = 1}, + [8803] = {.lex_state = 111, .external_lex_state = 1}, + [8804] = {.lex_state = 559, .external_lex_state = 1}, + [8805] = {.lex_state = 563, .external_lex_state = 1}, + [8806] = {.lex_state = 547, .external_lex_state = 1}, + [8807] = {.lex_state = 547, .external_lex_state = 1}, + [8808] = {.lex_state = 547, .external_lex_state = 1}, + [8809] = {.lex_state = 559, .external_lex_state = 1}, + [8810] = {.lex_state = 111, .external_lex_state = 1}, + [8811] = {.lex_state = 111, .external_lex_state = 1}, + [8812] = {.lex_state = 111, .external_lex_state = 1}, + [8813] = {.lex_state = 562, .external_lex_state = 1}, + [8814] = {.lex_state = 111, .external_lex_state = 1}, + [8815] = {.lex_state = 111, .external_lex_state = 1}, + [8816] = {.lex_state = 111, .external_lex_state = 1}, + [8817] = {.lex_state = 547, .external_lex_state = 1}, + [8818] = {.lex_state = 111, .external_lex_state = 1}, + [8819] = {.lex_state = 111, .external_lex_state = 1}, + [8820] = {.lex_state = 547, .external_lex_state = 1}, + [8821] = {.lex_state = 111, .external_lex_state = 1}, + [8822] = {.lex_state = 559, .external_lex_state = 1}, + [8823] = {.lex_state = 111, .external_lex_state = 1}, + [8824] = {.lex_state = 559, .external_lex_state = 1}, + [8825] = {.lex_state = 111, .external_lex_state = 1}, + [8826] = {.lex_state = 111, .external_lex_state = 1}, + [8827] = {.lex_state = 111, .external_lex_state = 1}, + [8828] = {.lex_state = 534, .external_lex_state = 1}, + [8829] = {.lex_state = 560, .external_lex_state = 1}, + [8830] = {.lex_state = 41, .external_lex_state = 1}, + [8831] = {.lex_state = 534, .external_lex_state = 1}, + [8832] = {.lex_state = 547, .external_lex_state = 1}, + [8833] = {.lex_state = 534, .external_lex_state = 1}, + [8834] = {.lex_state = 560, .external_lex_state = 1}, + [8835] = {.lex_state = 534, .external_lex_state = 1}, + [8836] = {.lex_state = 534, .external_lex_state = 1}, + [8837] = {.lex_state = 534, .external_lex_state = 1}, + [8838] = {.lex_state = 534, .external_lex_state = 1}, + [8839] = {.lex_state = 534, .external_lex_state = 1}, + [8840] = {.lex_state = 547, .external_lex_state = 1}, + [8841] = {.lex_state = 560, .external_lex_state = 1}, + [8842] = {.lex_state = 111, .external_lex_state = 1}, + [8843] = {.lex_state = 111, .external_lex_state = 1}, + [8844] = {.lex_state = 563, .external_lex_state = 1}, + [8845] = {.lex_state = 547, .external_lex_state = 1}, + [8846] = {.lex_state = 560, .external_lex_state = 1}, + [8847] = {.lex_state = 547, .external_lex_state = 1}, + [8848] = {.lex_state = 547, .external_lex_state = 1}, + [8849] = {.lex_state = 547, .external_lex_state = 1}, + [8850] = {.lex_state = 547, .external_lex_state = 1}, + [8851] = {.lex_state = 111, .external_lex_state = 1}, + [8852] = {.lex_state = 534, .external_lex_state = 1}, + [8853] = {.lex_state = 534, .external_lex_state = 1}, + [8854] = {.lex_state = 563, .external_lex_state = 1}, + [8855] = {.lex_state = 563, .external_lex_state = 1}, + [8856] = {.lex_state = 535, .external_lex_state = 1}, + [8857] = {.lex_state = 560, .external_lex_state = 1}, + [8858] = {.lex_state = 560, .external_lex_state = 1}, + [8859] = {.lex_state = 564, .external_lex_state = 1}, + [8860] = {.lex_state = 547, .external_lex_state = 1}, + [8861] = {.lex_state = 534, .external_lex_state = 1}, + [8862] = {.lex_state = 563, .external_lex_state = 1}, + [8863] = {.lex_state = 534, .external_lex_state = 1}, + [8864] = {.lex_state = 563, .external_lex_state = 1}, + [8865] = {.lex_state = 131, .external_lex_state = 1}, + [8866] = {.lex_state = 534, .external_lex_state = 1}, + [8867] = {.lex_state = 534, .external_lex_state = 1}, + [8868] = {.lex_state = 534, .external_lex_state = 1}, + [8869] = {.lex_state = 534, .external_lex_state = 1}, + [8870] = {.lex_state = 534, .external_lex_state = 1}, + [8871] = {.lex_state = 534, .external_lex_state = 1}, + [8872] = {.lex_state = 534, .external_lex_state = 1}, + [8873] = {.lex_state = 560, .external_lex_state = 1}, + [8874] = {.lex_state = 534, .external_lex_state = 1}, + [8875] = {.lex_state = 534, .external_lex_state = 1}, + [8876] = {.lex_state = 534, .external_lex_state = 1}, + [8877] = {.lex_state = 563, .external_lex_state = 1}, + [8878] = {.lex_state = 560, .external_lex_state = 1}, + [8879] = {.lex_state = 111, .external_lex_state = 1}, + [8880] = {.lex_state = 534, .external_lex_state = 1}, + [8881] = {.lex_state = 560, .external_lex_state = 1}, + [8882] = {.lex_state = 563, .external_lex_state = 1}, + [8883] = {.lex_state = 563, .external_lex_state = 1}, + [8884] = {.lex_state = 534, .external_lex_state = 1}, + [8885] = {.lex_state = 534, .external_lex_state = 1}, + [8886] = {.lex_state = 560, .external_lex_state = 1}, + [8887] = {.lex_state = 534, .external_lex_state = 1}, + [8888] = {.lex_state = 534, .external_lex_state = 1}, + [8889] = {.lex_state = 534, .external_lex_state = 1}, + [8890] = {.lex_state = 534, .external_lex_state = 1}, + [8891] = {.lex_state = 547, .external_lex_state = 1}, + [8892] = {.lex_state = 534, .external_lex_state = 1}, + [8893] = {.lex_state = 534, .external_lex_state = 1}, + [8894] = {.lex_state = 45, .external_lex_state = 1}, + [8895] = {.lex_state = 563, .external_lex_state = 1}, + [8896] = {.lex_state = 534, .external_lex_state = 1}, + [8897] = {.lex_state = 547, .external_lex_state = 1}, + [8898] = {.lex_state = 534, .external_lex_state = 1}, + [8899] = {.lex_state = 560, .external_lex_state = 1}, + [8900] = {.lex_state = 534, .external_lex_state = 1}, + [8901] = {.lex_state = 560, .external_lex_state = 1}, + [8902] = {.lex_state = 534, .external_lex_state = 1}, + [8903] = {.lex_state = 534, .external_lex_state = 1}, + [8904] = {.lex_state = 563, .external_lex_state = 1}, + [8905] = {.lex_state = 547, .external_lex_state = 1}, + [8906] = {.lex_state = 547, .external_lex_state = 1}, + [8907] = {.lex_state = 111, .external_lex_state = 1}, + [8908] = {.lex_state = 560, .external_lex_state = 1}, + [8909] = {.lex_state = 534, .external_lex_state = 1}, + [8910] = {.lex_state = 536, .external_lex_state = 1}, + [8911] = {.lex_state = 547, .external_lex_state = 1}, + [8912] = {.lex_state = 534, .external_lex_state = 1}, + [8913] = {.lex_state = 534, .external_lex_state = 1}, + [8914] = {.lex_state = 563, .external_lex_state = 1}, + [8915] = {.lex_state = 534, .external_lex_state = 1}, + [8916] = {.lex_state = 563, .external_lex_state = 1}, + [8917] = {.lex_state = 563, .external_lex_state = 1}, + [8918] = {.lex_state = 534, .external_lex_state = 1}, + [8919] = {.lex_state = 534, .external_lex_state = 1}, + [8920] = {.lex_state = 534, .external_lex_state = 1}, + [8921] = {.lex_state = 534, .external_lex_state = 1}, + [8922] = {.lex_state = 560, .external_lex_state = 1}, + [8923] = {.lex_state = 534, .external_lex_state = 1}, + [8924] = {.lex_state = 547, .external_lex_state = 1}, + [8925] = {.lex_state = 534, .external_lex_state = 1}, + [8926] = {.lex_state = 534, .external_lex_state = 1}, + [8927] = {.lex_state = 547, .external_lex_state = 1}, + [8928] = {.lex_state = 534, .external_lex_state = 1}, + [8929] = {.lex_state = 534, .external_lex_state = 1}, + [8930] = {.lex_state = 560, .external_lex_state = 1}, + [8931] = {.lex_state = 534, .external_lex_state = 1}, + [8932] = {.lex_state = 534, .external_lex_state = 1}, + [8933] = {.lex_state = 534, .external_lex_state = 1}, + [8934] = {.lex_state = 560, .external_lex_state = 1}, + [8935] = {.lex_state = 534, .external_lex_state = 1}, + [8936] = {.lex_state = 534, .external_lex_state = 1}, + [8937] = {.lex_state = 547, .external_lex_state = 1}, + [8938] = {.lex_state = 547, .external_lex_state = 1}, + [8939] = {.lex_state = 547, .external_lex_state = 1}, + [8940] = {.lex_state = 534, .external_lex_state = 1}, + [8941] = {.lex_state = 563, .external_lex_state = 1}, + [8942] = {.lex_state = 534, .external_lex_state = 1}, + [8943] = {.lex_state = 111, .external_lex_state = 1}, + [8944] = {.lex_state = 534, .external_lex_state = 1}, + [8945] = {.lex_state = 563, .external_lex_state = 1}, + [8946] = {.lex_state = 563, .external_lex_state = 1}, + [8947] = {.lex_state = 534, .external_lex_state = 1}, + [8948] = {.lex_state = 41, .external_lex_state = 1}, + [8949] = {.lex_state = 41, .external_lex_state = 1}, + [8950] = {.lex_state = 41, .external_lex_state = 1}, + [8951] = {.lex_state = 41, .external_lex_state = 1}, + [8952] = {.lex_state = 41, .external_lex_state = 1}, + [8953] = {.lex_state = 41, .external_lex_state = 1}, + [8954] = {.lex_state = 41, .external_lex_state = 1}, + [8955] = {.lex_state = 41, .external_lex_state = 1}, + [8956] = {.lex_state = 546, .external_lex_state = 1}, + [8957] = {.lex_state = 167, .external_lex_state = 1}, + [8958] = {.lex_state = 547, .external_lex_state = 1}, + [8959] = {.lex_state = 535, .external_lex_state = 1}, + [8960] = {.lex_state = 535, .external_lex_state = 1}, + [8961] = {.lex_state = 536, .external_lex_state = 1}, + [8962] = {.lex_state = 535, .external_lex_state = 1}, + [8963] = {.lex_state = 536, .external_lex_state = 1}, + [8964] = {.lex_state = 536, .external_lex_state = 1}, + [8965] = {.lex_state = 547, .external_lex_state = 1}, + [8966] = {.lex_state = 547, .external_lex_state = 1}, + [8967] = {.lex_state = 564, .external_lex_state = 1}, + [8968] = {.lex_state = 564, .external_lex_state = 1}, + [8969] = {.lex_state = 564, .external_lex_state = 1}, + [8970] = {.lex_state = 564, .external_lex_state = 1}, + [8971] = {.lex_state = 564, .external_lex_state = 1}, + [8972] = {.lex_state = 564, .external_lex_state = 1}, + [8973] = {.lex_state = 564, .external_lex_state = 1}, + [8974] = {.lex_state = 564, .external_lex_state = 1}, + [8975] = {.lex_state = 564, .external_lex_state = 1}, + [8976] = {.lex_state = 564, .external_lex_state = 1}, + [8977] = {.lex_state = 564, .external_lex_state = 1}, + [8978] = {.lex_state = 564, .external_lex_state = 1}, + [8979] = {.lex_state = 564, .external_lex_state = 1}, + [8980] = {.lex_state = 548, .external_lex_state = 1}, + [8981] = {.lex_state = 547, .external_lex_state = 1}, + [8982] = {.lex_state = 564, .external_lex_state = 1}, + [8983] = {.lex_state = 546, .external_lex_state = 1}, + [8984] = {.lex_state = 564, .external_lex_state = 1}, + [8985] = {.lex_state = 564, .external_lex_state = 1}, + [8986] = {.lex_state = 537, .external_lex_state = 1}, + [8987] = {.lex_state = 141, .external_lex_state = 1}, + [8988] = {.lex_state = 535, .external_lex_state = 1}, + [8989] = {.lex_state = 41, .external_lex_state = 1}, + [8990] = {.lex_state = 41, .external_lex_state = 1}, + [8991] = {.lex_state = 41, .external_lex_state = 1}, + [8992] = {.lex_state = 41, .external_lex_state = 1}, + [8993] = {.lex_state = 41, .external_lex_state = 1}, + [8994] = {.lex_state = 547, .external_lex_state = 1}, + [8995] = {.lex_state = 41, .external_lex_state = 1}, + [8996] = {.lex_state = 41, .external_lex_state = 1}, + [8997] = {.lex_state = 41, .external_lex_state = 1}, + [8998] = {.lex_state = 41, .external_lex_state = 1}, + [8999] = {.lex_state = 41, .external_lex_state = 1}, + [9000] = {.lex_state = 41, .external_lex_state = 1}, + [9001] = {.lex_state = 547, .external_lex_state = 1}, + [9002] = {.lex_state = 41, .external_lex_state = 1}, + [9003] = {.lex_state = 41, .external_lex_state = 1}, + [9004] = {.lex_state = 536, .external_lex_state = 1}, + [9005] = {.lex_state = 547, .external_lex_state = 1}, + [9006] = {.lex_state = 547, .external_lex_state = 1}, + [9007] = {.lex_state = 547, .external_lex_state = 1}, + [9008] = {.lex_state = 41, .external_lex_state = 1}, + [9009] = {.lex_state = 41, .external_lex_state = 1}, + [9010] = {.lex_state = 41, .external_lex_state = 1}, + [9011] = {.lex_state = 41, .external_lex_state = 1}, + [9012] = {.lex_state = 546, .external_lex_state = 1}, + [9013] = {.lex_state = 546, .external_lex_state = 1}, + [9014] = {.lex_state = 546, .external_lex_state = 1}, + [9015] = {.lex_state = 547, .external_lex_state = 1}, + [9016] = {.lex_state = 41, .external_lex_state = 1}, + [9017] = {.lex_state = 41, .external_lex_state = 1}, + [9018] = {.lex_state = 41, .external_lex_state = 1}, + [9019] = {.lex_state = 547, .external_lex_state = 1}, + [9020] = {.lex_state = 547, .external_lex_state = 1}, + [9021] = {.lex_state = 41, .external_lex_state = 1}, + [9022] = {.lex_state = 41, .external_lex_state = 1}, + [9023] = {.lex_state = 41, .external_lex_state = 1}, + [9024] = {.lex_state = 41, .external_lex_state = 1}, + [9025] = {.lex_state = 41, .external_lex_state = 1}, + [9026] = {.lex_state = 41, .external_lex_state = 1}, + [9027] = {.lex_state = 547, .external_lex_state = 1}, + [9028] = {.lex_state = 547, .external_lex_state = 1}, + [9029] = {.lex_state = 41, .external_lex_state = 1}, + [9030] = {.lex_state = 547, .external_lex_state = 1}, + [9031] = {.lex_state = 41, .external_lex_state = 1}, + [9032] = {.lex_state = 547, .external_lex_state = 1}, + [9033] = {.lex_state = 547, .external_lex_state = 1}, + [9034] = {.lex_state = 42, .external_lex_state = 1}, + [9035] = {.lex_state = 41, .external_lex_state = 1}, + [9036] = {.lex_state = 548, .external_lex_state = 1}, + [9037] = {.lex_state = 548, .external_lex_state = 1}, + [9038] = {.lex_state = 547, .external_lex_state = 1}, + [9039] = {.lex_state = 547, .external_lex_state = 1}, + [9040] = {.lex_state = 547, .external_lex_state = 1}, + [9041] = {.lex_state = 41, .external_lex_state = 1}, + [9042] = {.lex_state = 41, .external_lex_state = 1}, + [9043] = {.lex_state = 41, .external_lex_state = 1}, + [9044] = {.lex_state = 41, .external_lex_state = 1}, + [9045] = {.lex_state = 535, .external_lex_state = 1}, + [9046] = {.lex_state = 535, .external_lex_state = 1}, + [9047] = {.lex_state = 535, .external_lex_state = 1}, + [9048] = {.lex_state = 535, .external_lex_state = 1}, + [9049] = {.lex_state = 535, .external_lex_state = 1}, + [9050] = {.lex_state = 535, .external_lex_state = 1}, + [9051] = {.lex_state = 535, .external_lex_state = 1}, + [9052] = {.lex_state = 535, .external_lex_state = 1}, + [9053] = {.lex_state = 535, .external_lex_state = 1}, + [9054] = {.lex_state = 535, .external_lex_state = 1}, + [9055] = {.lex_state = 535, .external_lex_state = 1}, + [9056] = {.lex_state = 535, .external_lex_state = 1}, + [9057] = {.lex_state = 535, .external_lex_state = 1}, + [9058] = {.lex_state = 535, .external_lex_state = 1}, + [9059] = {.lex_state = 535, .external_lex_state = 1}, + [9060] = {.lex_state = 535, .external_lex_state = 1}, + [9061] = {.lex_state = 535, .external_lex_state = 1}, + [9062] = {.lex_state = 535, .external_lex_state = 1}, + [9063] = {.lex_state = 535, .external_lex_state = 1}, + [9064] = {.lex_state = 535, .external_lex_state = 1}, + [9065] = {.lex_state = 535, .external_lex_state = 1}, + [9066] = {.lex_state = 535, .external_lex_state = 1}, + [9067] = {.lex_state = 547, .external_lex_state = 1}, + [9068] = {.lex_state = 547, .external_lex_state = 1}, + [9069] = {.lex_state = 547, .external_lex_state = 1}, + [9070] = {.lex_state = 535, .external_lex_state = 1}, + [9071] = {.lex_state = 546, .external_lex_state = 1}, + [9072] = {.lex_state = 535, .external_lex_state = 1}, + [9073] = {.lex_state = 41, .external_lex_state = 1}, + [9074] = {.lex_state = 41, .external_lex_state = 1}, + [9075] = {.lex_state = 547, .external_lex_state = 1}, + [9076] = {.lex_state = 41, .external_lex_state = 1}, + [9077] = {.lex_state = 41, .external_lex_state = 1}, + [9078] = {.lex_state = 535, .external_lex_state = 1}, + [9079] = {.lex_state = 535, .external_lex_state = 1}, + [9080] = {.lex_state = 535, .external_lex_state = 1}, + [9081] = {.lex_state = 535, .external_lex_state = 1}, + [9082] = {.lex_state = 535, .external_lex_state = 1}, + [9083] = {.lex_state = 535, .external_lex_state = 1}, + [9084] = {.lex_state = 535, .external_lex_state = 1}, + [9085] = {.lex_state = 535, .external_lex_state = 1}, + [9086] = {.lex_state = 535, .external_lex_state = 1}, + [9087] = {.lex_state = 41, .external_lex_state = 1}, + [9088] = {.lex_state = 535, .external_lex_state = 1}, + [9089] = {.lex_state = 535, .external_lex_state = 1}, + [9090] = {.lex_state = 535, .external_lex_state = 1}, + [9091] = {.lex_state = 535, .external_lex_state = 1}, + [9092] = {.lex_state = 535, .external_lex_state = 1}, + [9093] = {.lex_state = 535, .external_lex_state = 1}, + [9094] = {.lex_state = 535, .external_lex_state = 1}, + [9095] = {.lex_state = 535, .external_lex_state = 1}, + [9096] = {.lex_state = 535, .external_lex_state = 1}, + [9097] = {.lex_state = 535, .external_lex_state = 1}, + [9098] = {.lex_state = 535, .external_lex_state = 1}, + [9099] = {.lex_state = 535, .external_lex_state = 1}, + [9100] = {.lex_state = 535, .external_lex_state = 1}, + [9101] = {.lex_state = 535, .external_lex_state = 1}, + [9102] = {.lex_state = 535, .external_lex_state = 1}, + [9103] = {.lex_state = 535, .external_lex_state = 1}, + [9104] = {.lex_state = 535, .external_lex_state = 1}, + [9105] = {.lex_state = 43, .external_lex_state = 1}, + [9106] = {.lex_state = 547, .external_lex_state = 1}, + [9107] = {.lex_state = 547, .external_lex_state = 1}, + [9108] = {.lex_state = 535, .external_lex_state = 1}, + [9109] = {.lex_state = 535, .external_lex_state = 1}, + [9110] = {.lex_state = 535, .external_lex_state = 1}, + [9111] = {.lex_state = 536, .external_lex_state = 1}, + [9112] = {.lex_state = 536, .external_lex_state = 1}, + [9113] = {.lex_state = 536, .external_lex_state = 1}, + [9114] = {.lex_state = 536, .external_lex_state = 1}, + [9115] = {.lex_state = 535, .external_lex_state = 1}, + [9116] = {.lex_state = 536, .external_lex_state = 1}, + [9117] = {.lex_state = 536, .external_lex_state = 1}, + [9118] = {.lex_state = 536, .external_lex_state = 1}, + [9119] = {.lex_state = 536, .external_lex_state = 1}, + [9120] = {.lex_state = 536, .external_lex_state = 1}, + [9121] = {.lex_state = 536, .external_lex_state = 1}, + [9122] = {.lex_state = 565, .external_lex_state = 1}, + [9123] = {.lex_state = 536, .external_lex_state = 1}, + [9124] = {.lex_state = 536, .external_lex_state = 1}, + [9125] = {.lex_state = 536, .external_lex_state = 1}, + [9126] = {.lex_state = 536, .external_lex_state = 1}, + [9127] = {.lex_state = 536, .external_lex_state = 1}, + [9128] = {.lex_state = 536, .external_lex_state = 1}, + [9129] = {.lex_state = 536, .external_lex_state = 1}, + [9130] = {.lex_state = 536, .external_lex_state = 1}, + [9131] = {.lex_state = 536, .external_lex_state = 1}, + [9132] = {.lex_state = 536, .external_lex_state = 1}, + [9133] = {.lex_state = 536, .external_lex_state = 1}, + [9134] = {.lex_state = 536, .external_lex_state = 1}, + [9135] = {.lex_state = 41, .external_lex_state = 1}, + [9136] = {.lex_state = 536, .external_lex_state = 1}, + [9137] = {.lex_state = 536, .external_lex_state = 1}, + [9138] = {.lex_state = 41, .external_lex_state = 1}, + [9139] = {.lex_state = 536, .external_lex_state = 1}, + [9140] = {.lex_state = 536, .external_lex_state = 1}, + [9141] = {.lex_state = 536, .external_lex_state = 1}, + [9142] = {.lex_state = 536, .external_lex_state = 1}, + [9143] = {.lex_state = 536, .external_lex_state = 1}, + [9144] = {.lex_state = 536, .external_lex_state = 1}, + [9145] = {.lex_state = 536, .external_lex_state = 1}, + [9146] = {.lex_state = 536, .external_lex_state = 1}, + [9147] = {.lex_state = 536, .external_lex_state = 1}, + [9148] = {.lex_state = 536, .external_lex_state = 1}, + [9149] = {.lex_state = 536, .external_lex_state = 1}, + [9150] = {.lex_state = 536, .external_lex_state = 1}, + [9151] = {.lex_state = 536, .external_lex_state = 1}, + [9152] = {.lex_state = 536, .external_lex_state = 1}, + [9153] = {.lex_state = 536, .external_lex_state = 1}, + [9154] = {.lex_state = 536, .external_lex_state = 1}, + [9155] = {.lex_state = 536, .external_lex_state = 1}, + [9156] = {.lex_state = 536, .external_lex_state = 1}, + [9157] = {.lex_state = 536, .external_lex_state = 1}, + [9158] = {.lex_state = 536, .external_lex_state = 1}, + [9159] = {.lex_state = 536, .external_lex_state = 1}, + [9160] = {.lex_state = 536, .external_lex_state = 1}, + [9161] = {.lex_state = 536, .external_lex_state = 1}, + [9162] = {.lex_state = 536, .external_lex_state = 1}, + [9163] = {.lex_state = 536, .external_lex_state = 1}, + [9164] = {.lex_state = 536, .external_lex_state = 1}, + [9165] = {.lex_state = 536, .external_lex_state = 1}, + [9166] = {.lex_state = 536, .external_lex_state = 1}, + [9167] = {.lex_state = 536, .external_lex_state = 1}, + [9168] = {.lex_state = 536, .external_lex_state = 1}, + [9169] = {.lex_state = 41, .external_lex_state = 1}, + [9170] = {.lex_state = 163, .external_lex_state = 1}, + [9171] = {.lex_state = 41, .external_lex_state = 1}, + [9172] = {.lex_state = 41, .external_lex_state = 1}, + [9173] = {.lex_state = 41, .external_lex_state = 1}, + [9174] = {.lex_state = 41, .external_lex_state = 1}, + [9175] = {.lex_state = 41, .external_lex_state = 1}, + [9176] = {.lex_state = 41, .external_lex_state = 1}, + [9177] = {.lex_state = 41, .external_lex_state = 1}, + [9178] = {.lex_state = 41, .external_lex_state = 1}, + [9179] = {.lex_state = 41, .external_lex_state = 1}, + [9180] = {.lex_state = 547, .external_lex_state = 1}, + [9181] = {.lex_state = 546, .external_lex_state = 1}, + [9182] = {.lex_state = 547, .external_lex_state = 1}, + [9183] = {.lex_state = 167, .external_lex_state = 1}, + [9184] = {.lex_state = 537, .external_lex_state = 1}, + [9185] = {.lex_state = 167, .external_lex_state = 1}, + [9186] = {.lex_state = 546, .external_lex_state = 1}, + [9187] = {.lex_state = 547, .external_lex_state = 1}, + [9188] = {.lex_state = 547, .external_lex_state = 1}, + [9189] = {.lex_state = 547, .external_lex_state = 1}, + [9190] = {.lex_state = 534, .external_lex_state = 1}, + [9191] = {.lex_state = 547, .external_lex_state = 1}, + [9192] = {.lex_state = 42, .external_lex_state = 1}, + [9193] = {.lex_state = 547, .external_lex_state = 1}, + [9194] = {.lex_state = 167, .external_lex_state = 1}, + [9195] = {.lex_state = 139, .external_lex_state = 1}, + [9196] = {.lex_state = 42, .external_lex_state = 1}, + [9197] = {.lex_state = 42, .external_lex_state = 1}, + [9198] = {.lex_state = 42, .external_lex_state = 1}, + [9199] = {.lex_state = 42, .external_lex_state = 1}, + [9200] = {.lex_state = 42, .external_lex_state = 1}, + [9201] = {.lex_state = 547, .external_lex_state = 1}, + [9202] = {.lex_state = 42, .external_lex_state = 1}, + [9203] = {.lex_state = 565, .external_lex_state = 1}, + [9204] = {.lex_state = 167, .external_lex_state = 1}, + [9205] = {.lex_state = 42, .external_lex_state = 1}, + [9206] = {.lex_state = 167, .external_lex_state = 1}, + [9207] = {.lex_state = 167, .external_lex_state = 1}, + [9208] = {.lex_state = 537, .external_lex_state = 1}, + [9209] = {.lex_state = 537, .external_lex_state = 1}, + [9210] = {.lex_state = 547, .external_lex_state = 1}, + [9211] = {.lex_state = 42, .external_lex_state = 1}, + [9212] = {.lex_state = 537, .external_lex_state = 1}, + [9213] = {.lex_state = 537, .external_lex_state = 1}, + [9214] = {.lex_state = 42, .external_lex_state = 1}, + [9215] = {.lex_state = 537, .external_lex_state = 1}, + [9216] = {.lex_state = 537, .external_lex_state = 1}, + [9217] = {.lex_state = 537, .external_lex_state = 1}, + [9218] = {.lex_state = 537, .external_lex_state = 1}, + [9219] = {.lex_state = 537, .external_lex_state = 1}, + [9220] = {.lex_state = 42, .external_lex_state = 1}, + [9221] = {.lex_state = 537, .external_lex_state = 1}, + [9222] = {.lex_state = 547, .external_lex_state = 1}, + [9223] = {.lex_state = 42, .external_lex_state = 1}, + [9224] = {.lex_state = 537, .external_lex_state = 1}, + [9225] = {.lex_state = 42, .external_lex_state = 1}, + [9226] = {.lex_state = 537, .external_lex_state = 1}, + [9227] = {.lex_state = 537, .external_lex_state = 1}, + [9228] = {.lex_state = 42, .external_lex_state = 1}, + [9229] = {.lex_state = 42, .external_lex_state = 1}, + [9230] = {.lex_state = 42, .external_lex_state = 1}, + [9231] = {.lex_state = 43, .external_lex_state = 1}, + [9232] = {.lex_state = 537, .external_lex_state = 1}, + [9233] = {.lex_state = 42, .external_lex_state = 1}, + [9234] = {.lex_state = 42, .external_lex_state = 1}, + [9235] = {.lex_state = 43, .external_lex_state = 1}, + [9236] = {.lex_state = 167, .external_lex_state = 1}, + [9237] = {.lex_state = 42, .external_lex_state = 1}, + [9238] = {.lex_state = 43, .external_lex_state = 1}, + [9239] = {.lex_state = 537, .external_lex_state = 1}, + [9240] = {.lex_state = 42, .external_lex_state = 1}, + [9241] = {.lex_state = 90, .external_lex_state = 1}, + [9242] = {.lex_state = 42, .external_lex_state = 1}, + [9243] = {.lex_state = 167, .external_lex_state = 1}, + [9244] = {.lex_state = 537, .external_lex_state = 1}, + [9245] = {.lex_state = 537, .external_lex_state = 1}, + [9246] = {.lex_state = 167, .external_lex_state = 1}, + [9247] = {.lex_state = 70, .external_lex_state = 1}, + [9248] = {.lex_state = 547, .external_lex_state = 1}, + [9249] = {.lex_state = 537, .external_lex_state = 1}, + [9250] = {.lex_state = 42, .external_lex_state = 1}, + [9251] = {.lex_state = 537, .external_lex_state = 1}, + [9252] = {.lex_state = 167, .external_lex_state = 1}, + [9253] = {.lex_state = 565, .external_lex_state = 1}, + [9254] = {.lex_state = 43, .external_lex_state = 1}, + [9255] = {.lex_state = 167, .external_lex_state = 1}, + [9256] = {.lex_state = 537, .external_lex_state = 1}, + [9257] = {.lex_state = 187, .external_lex_state = 1}, + [9258] = {.lex_state = 94, .external_lex_state = 1}, + [9259] = {.lex_state = 43, .external_lex_state = 1}, + [9260] = {.lex_state = 537, .external_lex_state = 1}, + [9261] = {.lex_state = 547, .external_lex_state = 1}, + [9262] = {.lex_state = 165, .external_lex_state = 1}, + [9263] = {.lex_state = 169, .external_lex_state = 1}, + [9264] = {.lex_state = 546, .external_lex_state = 1}, + [9265] = {.lex_state = 547, .external_lex_state = 1}, + [9266] = {.lex_state = 142, .external_lex_state = 1}, + [9267] = {.lex_state = 42, .external_lex_state = 1}, + [9268] = {.lex_state = 546, .external_lex_state = 1}, + [9269] = {.lex_state = 42, .external_lex_state = 1}, + [9270] = {.lex_state = 547, .external_lex_state = 1}, + [9271] = {.lex_state = 43, .external_lex_state = 1}, + [9272] = {.lex_state = 141, .external_lex_state = 1}, + [9273] = {.lex_state = 141, .external_lex_state = 1}, + [9274] = {.lex_state = 547, .external_lex_state = 1}, + [9275] = {.lex_state = 141, .external_lex_state = 1}, + [9276] = {.lex_state = 547, .external_lex_state = 1}, + [9277] = {.lex_state = 141, .external_lex_state = 1}, + [9278] = {.lex_state = 42, .external_lex_state = 1}, + [9279] = {.lex_state = 141, .external_lex_state = 1}, + [9280] = {.lex_state = 141, .external_lex_state = 1}, + [9281] = {.lex_state = 131, .external_lex_state = 1}, + [9282] = {.lex_state = 537, .external_lex_state = 1}, + [9283] = {.lex_state = 141, .external_lex_state = 1}, + [9284] = {.lex_state = 141, .external_lex_state = 1}, + [9285] = {.lex_state = 141, .external_lex_state = 1}, + [9286] = {.lex_state = 141, .external_lex_state = 1}, + [9287] = {.lex_state = 141, .external_lex_state = 1}, + [9288] = {.lex_state = 42, .external_lex_state = 1}, + [9289] = {.lex_state = 42, .external_lex_state = 1}, + [9290] = {.lex_state = 141, .external_lex_state = 1}, + [9291] = {.lex_state = 141, .external_lex_state = 1}, + [9292] = {.lex_state = 42, .external_lex_state = 1}, + [9293] = {.lex_state = 145, .external_lex_state = 1}, + [9294] = {.lex_state = 43, .external_lex_state = 1}, + [9295] = {.lex_state = 42, .external_lex_state = 1}, + [9296] = {.lex_state = 42, .external_lex_state = 1}, + [9297] = {.lex_state = 43, .external_lex_state = 1}, + [9298] = {.lex_state = 43, .external_lex_state = 1}, + [9299] = {.lex_state = 42, .external_lex_state = 1}, + [9300] = {.lex_state = 42, .external_lex_state = 1}, + [9301] = {.lex_state = 565, .external_lex_state = 1}, + [9302] = {.lex_state = 167, .external_lex_state = 1}, + [9303] = {.lex_state = 44, .external_lex_state = 1}, + [9304] = {.lex_state = 547, .external_lex_state = 1}, + [9305] = {.lex_state = 547, .external_lex_state = 1}, + [9306] = {.lex_state = 547, .external_lex_state = 1}, + [9307] = {.lex_state = 547, .external_lex_state = 1}, + [9308] = {.lex_state = 547, .external_lex_state = 1}, + [9309] = {.lex_state = 554, .external_lex_state = 1}, + [9310] = {.lex_state = 547, .external_lex_state = 1}, + [9311] = {.lex_state = 537, .external_lex_state = 1}, + [9312] = {.lex_state = 537, .external_lex_state = 1}, + [9313] = {.lex_state = 168, .external_lex_state = 1}, + [9314] = {.lex_state = 43, .external_lex_state = 1}, + [9315] = {.lex_state = 537, .external_lex_state = 1}, + [9316] = {.lex_state = 554, .external_lex_state = 1}, + [9317] = {.lex_state = 537, .external_lex_state = 1}, + [9318] = {.lex_state = 537, .external_lex_state = 1}, + [9319] = {.lex_state = 42, .external_lex_state = 1}, + [9320] = {.lex_state = 537, .external_lex_state = 1}, + [9321] = {.lex_state = 537, .external_lex_state = 1}, + [9322] = {.lex_state = 537, .external_lex_state = 1}, + [9323] = {.lex_state = 537, .external_lex_state = 1}, + [9324] = {.lex_state = 537, .external_lex_state = 1}, + [9325] = {.lex_state = 537, .external_lex_state = 1}, + [9326] = {.lex_state = 537, .external_lex_state = 1}, + [9327] = {.lex_state = 159, .external_lex_state = 1}, + [9328] = {.lex_state = 537, .external_lex_state = 1}, + [9329] = {.lex_state = 537, .external_lex_state = 1}, + [9330] = {.lex_state = 537, .external_lex_state = 1}, + [9331] = {.lex_state = 537, .external_lex_state = 1}, + [9332] = {.lex_state = 163, .external_lex_state = 1}, + [9333] = {.lex_state = 537, .external_lex_state = 1}, + [9334] = {.lex_state = 537, .external_lex_state = 1}, + [9335] = {.lex_state = 537, .external_lex_state = 1}, + [9336] = {.lex_state = 42, .external_lex_state = 1}, + [9337] = {.lex_state = 537, .external_lex_state = 1}, + [9338] = {.lex_state = 537, .external_lex_state = 1}, + [9339] = {.lex_state = 565, .external_lex_state = 1}, + [9340] = {.lex_state = 163, .external_lex_state = 1}, + [9341] = {.lex_state = 42, .external_lex_state = 1}, + [9342] = {.lex_state = 565, .external_lex_state = 1}, + [9343] = {.lex_state = 565, .external_lex_state = 1}, + [9344] = {.lex_state = 565, .external_lex_state = 1}, + [9345] = {.lex_state = 547, .external_lex_state = 1}, + [9346] = {.lex_state = 163, .external_lex_state = 1}, + [9347] = {.lex_state = 163, .external_lex_state = 1}, + [9348] = {.lex_state = 565, .external_lex_state = 1}, + [9349] = {.lex_state = 565, .external_lex_state = 1}, + [9350] = {.lex_state = 537, .external_lex_state = 1}, + [9351] = {.lex_state = 537, .external_lex_state = 1}, + [9352] = {.lex_state = 42, .external_lex_state = 1}, + [9353] = {.lex_state = 43, .external_lex_state = 1}, + [9354] = {.lex_state = 43, .external_lex_state = 1}, + [9355] = {.lex_state = 163, .external_lex_state = 1}, + [9356] = {.lex_state = 565, .external_lex_state = 1}, + [9357] = {.lex_state = 537, .external_lex_state = 1}, + [9358] = {.lex_state = 141, .external_lex_state = 1}, + [9359] = {.lex_state = 42, .external_lex_state = 1}, + [9360] = {.lex_state = 141, .external_lex_state = 1}, + [9361] = {.lex_state = 42, .external_lex_state = 1}, + [9362] = {.lex_state = 42, .external_lex_state = 1}, + [9363] = {.lex_state = 42, .external_lex_state = 1}, + [9364] = {.lex_state = 163, .external_lex_state = 1}, + [9365] = {.lex_state = 163, .external_lex_state = 1}, + [9366] = {.lex_state = 42, .external_lex_state = 1}, + [9367] = {.lex_state = 163, .external_lex_state = 1}, + [9368] = {.lex_state = 565, .external_lex_state = 1}, + [9369] = {.lex_state = 163, .external_lex_state = 1}, + [9370] = {.lex_state = 537, .external_lex_state = 1}, + [9371] = {.lex_state = 163, .external_lex_state = 1}, + [9372] = {.lex_state = 163, .external_lex_state = 1}, + [9373] = {.lex_state = 42, .external_lex_state = 1}, + [9374] = {.lex_state = 547, .external_lex_state = 1}, + [9375] = {.lex_state = 537, .external_lex_state = 1}, + [9376] = {.lex_state = 547, .external_lex_state = 1}, + [9377] = {.lex_state = 547, .external_lex_state = 1}, + [9378] = {.lex_state = 141, .external_lex_state = 1}, + [9379] = {.lex_state = 163, .external_lex_state = 1}, + [9380] = {.lex_state = 42, .external_lex_state = 1}, + [9381] = {.lex_state = 565, .external_lex_state = 1}, + [9382] = {.lex_state = 131, .external_lex_state = 1}, + [9383] = {.lex_state = 42, .external_lex_state = 1}, + [9384] = {.lex_state = 547, .external_lex_state = 1}, + [9385] = {.lex_state = 43, .external_lex_state = 1}, + [9386] = {.lex_state = 163, .external_lex_state = 1}, + [9387] = {.lex_state = 43, .external_lex_state = 1}, + [9388] = {.lex_state = 183, .external_lex_state = 1}, + [9389] = {.lex_state = 554, .external_lex_state = 1}, + [9390] = {.lex_state = 547, .external_lex_state = 1}, + [9391] = {.lex_state = 547, .external_lex_state = 1}, + [9392] = {.lex_state = 167, .external_lex_state = 1}, + [9393] = {.lex_state = 43, .external_lex_state = 1}, + [9394] = {.lex_state = 547, .external_lex_state = 1}, + [9395] = {.lex_state = 547, .external_lex_state = 1}, + [9396] = {.lex_state = 547, .external_lex_state = 1}, + [9397] = {.lex_state = 547, .external_lex_state = 1}, + [9398] = {.lex_state = 537, .external_lex_state = 1}, + [9399] = {.lex_state = 547, .external_lex_state = 1}, + [9400] = {.lex_state = 43, .external_lex_state = 1}, + [9401] = {.lex_state = 167, .external_lex_state = 1}, + [9402] = {.lex_state = 171, .external_lex_state = 1}, + [9403] = {.lex_state = 43, .external_lex_state = 1}, + [9404] = {.lex_state = 42, .external_lex_state = 1}, + [9405] = {.lex_state = 42, .external_lex_state = 1}, + [9406] = {.lex_state = 537, .external_lex_state = 1}, + [9407] = {.lex_state = 43, .external_lex_state = 1}, + [9408] = {.lex_state = 547, .external_lex_state = 1}, + [9409] = {.lex_state = 547, .external_lex_state = 1}, + [9410] = {.lex_state = 547, .external_lex_state = 1}, + [9411] = {.lex_state = 42, .external_lex_state = 1}, + [9412] = {.lex_state = 42, .external_lex_state = 1}, + [9413] = {.lex_state = 547, .external_lex_state = 1}, + [9414] = {.lex_state = 43, .external_lex_state = 1}, + [9415] = {.lex_state = 42, .external_lex_state = 1}, + [9416] = {.lex_state = 547, .external_lex_state = 1}, + [9417] = {.lex_state = 565, .external_lex_state = 1}, + [9418] = {.lex_state = 547, .external_lex_state = 1}, + [9419] = {.lex_state = 537, .external_lex_state = 1}, + [9420] = {.lex_state = 565, .external_lex_state = 1}, + [9421] = {.lex_state = 42, .external_lex_state = 1}, + [9422] = {.lex_state = 43, .external_lex_state = 1}, + [9423] = {.lex_state = 566, .external_lex_state = 1}, + [9424] = {.lex_state = 42, .external_lex_state = 1}, + [9425] = {.lex_state = 163, .external_lex_state = 1}, + [9426] = {.lex_state = 163, .external_lex_state = 1}, + [9427] = {.lex_state = 163, .external_lex_state = 1}, + [9428] = {.lex_state = 167, .external_lex_state = 1}, + [9429] = {.lex_state = 42, .external_lex_state = 1}, + [9430] = {.lex_state = 42, .external_lex_state = 1}, + [9431] = {.lex_state = 42, .external_lex_state = 1}, + [9432] = {.lex_state = 42, .external_lex_state = 1}, + [9433] = {.lex_state = 565, .external_lex_state = 1}, + [9434] = {.lex_state = 565, .external_lex_state = 1}, + [9435] = {.lex_state = 43, .external_lex_state = 1}, + [9436] = {.lex_state = 537, .external_lex_state = 1}, + [9437] = {.lex_state = 43, .external_lex_state = 1}, + [9438] = {.lex_state = 537, .external_lex_state = 1}, + [9439] = {.lex_state = 43, .external_lex_state = 1}, + [9440] = {.lex_state = 43, .external_lex_state = 1}, + [9441] = {.lex_state = 42, .external_lex_state = 1}, + [9442] = {.lex_state = 43, .external_lex_state = 1}, + [9443] = {.lex_state = 43, .external_lex_state = 1}, + [9444] = {.lex_state = 43, .external_lex_state = 1}, + [9445] = {.lex_state = 42, .external_lex_state = 1}, + [9446] = {.lex_state = 43, .external_lex_state = 1}, + [9447] = {.lex_state = 43, .external_lex_state = 1}, + [9448] = {.lex_state = 537, .external_lex_state = 1}, + [9449] = {.lex_state = 43, .external_lex_state = 1}, + [9450] = {.lex_state = 43, .external_lex_state = 1}, + [9451] = {.lex_state = 43, .external_lex_state = 1}, + [9452] = {.lex_state = 43, .external_lex_state = 1}, + [9453] = {.lex_state = 43, .external_lex_state = 1}, + [9454] = {.lex_state = 43, .external_lex_state = 1}, + [9455] = {.lex_state = 43, .external_lex_state = 1}, + [9456] = {.lex_state = 43, .external_lex_state = 1}, + [9457] = {.lex_state = 537, .external_lex_state = 1}, + [9458] = {.lex_state = 43, .external_lex_state = 1}, + [9459] = {.lex_state = 43, .external_lex_state = 1}, + [9460] = {.lex_state = 43, .external_lex_state = 1}, + [9461] = {.lex_state = 43, .external_lex_state = 1}, + [9462] = {.lex_state = 43, .external_lex_state = 1}, + [9463] = {.lex_state = 43, .external_lex_state = 1}, + [9464] = {.lex_state = 43, .external_lex_state = 1}, + [9465] = {.lex_state = 43, .external_lex_state = 1}, + [9466] = {.lex_state = 43, .external_lex_state = 1}, + [9467] = {.lex_state = 43, .external_lex_state = 1}, + [9468] = {.lex_state = 43, .external_lex_state = 1}, + [9469] = {.lex_state = 43, .external_lex_state = 1}, + [9470] = {.lex_state = 43, .external_lex_state = 1}, + [9471] = {.lex_state = 43, .external_lex_state = 1}, + [9472] = {.lex_state = 43, .external_lex_state = 1}, + [9473] = {.lex_state = 43, .external_lex_state = 1}, + [9474] = {.lex_state = 43, .external_lex_state = 1}, + [9475] = {.lex_state = 43, .external_lex_state = 1}, + [9476] = {.lex_state = 164, .external_lex_state = 1}, + [9477] = {.lex_state = 43, .external_lex_state = 1}, + [9478] = {.lex_state = 546, .external_lex_state = 1}, + [9479] = {.lex_state = 546, .external_lex_state = 1}, + [9480] = {.lex_state = 43, .external_lex_state = 1}, + [9481] = {.lex_state = 167, .external_lex_state = 1}, + [9482] = {.lex_state = 43, .external_lex_state = 1}, + [9483] = {.lex_state = 537, .external_lex_state = 1}, + [9484] = {.lex_state = 42, .external_lex_state = 1}, + [9485] = {.lex_state = 547, .external_lex_state = 1}, + [9486] = {.lex_state = 537, .external_lex_state = 1}, + [9487] = {.lex_state = 131, .external_lex_state = 1}, + [9488] = {.lex_state = 70, .external_lex_state = 1}, + [9489] = {.lex_state = 70, .external_lex_state = 1}, + [9490] = {.lex_state = 70, .external_lex_state = 1}, + [9491] = {.lex_state = 70, .external_lex_state = 1}, + [9492] = {.lex_state = 70, .external_lex_state = 1}, + [9493] = {.lex_state = 139, .external_lex_state = 1}, + [9494] = {.lex_state = 70, .external_lex_state = 1}, + [9495] = {.lex_state = 70, .external_lex_state = 1}, + [9496] = {.lex_state = 70, .external_lex_state = 1}, + [9497] = {.lex_state = 546, .external_lex_state = 1}, + [9498] = {.lex_state = 139, .external_lex_state = 1}, + [9499] = {.lex_state = 547, .external_lex_state = 1}, + [9500] = {.lex_state = 70, .external_lex_state = 1}, + [9501] = {.lex_state = 70, .external_lex_state = 1}, + [9502] = {.lex_state = 70, .external_lex_state = 1}, + [9503] = {.lex_state = 70, .external_lex_state = 1}, + [9504] = {.lex_state = 547, .external_lex_state = 1}, + [9505] = {.lex_state = 70, .external_lex_state = 1}, + [9506] = {.lex_state = 70, .external_lex_state = 1}, + [9507] = {.lex_state = 70, .external_lex_state = 1}, + [9508] = {.lex_state = 547, .external_lex_state = 1}, + [9509] = {.lex_state = 534, .external_lex_state = 1}, + [9510] = {.lex_state = 534, .external_lex_state = 1}, + [9511] = {.lex_state = 70, .external_lex_state = 1}, + [9512] = {.lex_state = 70, .external_lex_state = 1}, + [9513] = {.lex_state = 70, .external_lex_state = 1}, + [9514] = {.lex_state = 70, .external_lex_state = 1}, + [9515] = {.lex_state = 139, .external_lex_state = 1}, + [9516] = {.lex_state = 70, .external_lex_state = 1}, + [9517] = {.lex_state = 104, .external_lex_state = 1}, + [9518] = {.lex_state = 143, .external_lex_state = 1}, + [9519] = {.lex_state = 534, .external_lex_state = 1}, + [9520] = {.lex_state = 139, .external_lex_state = 1}, + [9521] = {.lex_state = 139, .external_lex_state = 1}, + [9522] = {.lex_state = 139, .external_lex_state = 1}, + [9523] = {.lex_state = 534, .external_lex_state = 1}, + [9524] = {.lex_state = 70, .external_lex_state = 1}, + [9525] = {.lex_state = 534, .external_lex_state = 1}, + [9526] = {.lex_state = 534, .external_lex_state = 1}, + [9527] = {.lex_state = 547, .external_lex_state = 1}, + [9528] = {.lex_state = 534, .external_lex_state = 1}, + [9529] = {.lex_state = 547, .external_lex_state = 1}, + [9530] = {.lex_state = 566, .external_lex_state = 1}, + [9531] = {.lex_state = 566, .external_lex_state = 1}, + [9532] = {.lex_state = 95, .external_lex_state = 1}, + [9533] = {.lex_state = 187, .external_lex_state = 1}, + [9534] = {.lex_state = 90, .external_lex_state = 1}, + [9535] = {.lex_state = 534, .external_lex_state = 1}, + [9536] = {.lex_state = 534, .external_lex_state = 1}, + [9537] = {.lex_state = 534, .external_lex_state = 1}, + [9538] = {.lex_state = 90, .external_lex_state = 1}, + [9539] = {.lex_state = 534, .external_lex_state = 1}, + [9540] = {.lex_state = 94, .external_lex_state = 1}, + [9541] = {.lex_state = 90, .external_lex_state = 1}, + [9542] = {.lex_state = 534, .external_lex_state = 1}, + [9543] = {.lex_state = 169, .external_lex_state = 1}, + [9544] = {.lex_state = 165, .external_lex_state = 1}, + [9545] = {.lex_state = 165, .external_lex_state = 1}, + [9546] = {.lex_state = 169, .external_lex_state = 1}, + [9547] = {.lex_state = 534, .external_lex_state = 1}, + [9548] = {.lex_state = 534, .external_lex_state = 1}, + [9549] = {.lex_state = 187, .external_lex_state = 1}, + [9550] = {.lex_state = 165, .external_lex_state = 1}, + [9551] = {.lex_state = 169, .external_lex_state = 1}, + [9552] = {.lex_state = 169, .external_lex_state = 1}, + [9553] = {.lex_state = 169, .external_lex_state = 1}, + [9554] = {.lex_state = 98, .external_lex_state = 1}, + [9555] = {.lex_state = 44, .external_lex_state = 1}, + [9556] = {.lex_state = 91, .external_lex_state = 1}, + [9557] = {.lex_state = 169, .external_lex_state = 1}, + [9558] = {.lex_state = 70, .external_lex_state = 1}, + [9559] = {.lex_state = 169, .external_lex_state = 1}, + [9560] = {.lex_state = 169, .external_lex_state = 1}, + [9561] = {.lex_state = 169, .external_lex_state = 1}, + [9562] = {.lex_state = 534, .external_lex_state = 1}, + [9563] = {.lex_state = 165, .external_lex_state = 1}, + [9564] = {.lex_state = 534, .external_lex_state = 1}, + [9565] = {.lex_state = 131, .external_lex_state = 1}, + [9566] = {.lex_state = 169, .external_lex_state = 1}, + [9567] = {.lex_state = 169, .external_lex_state = 1}, + [9568] = {.lex_state = 90, .external_lex_state = 1}, + [9569] = {.lex_state = 169, .external_lex_state = 1}, + [9570] = {.lex_state = 90, .external_lex_state = 1}, + [9571] = {.lex_state = 90, .external_lex_state = 1}, + [9572] = {.lex_state = 90, .external_lex_state = 1}, + [9573] = {.lex_state = 90, .external_lex_state = 1}, + [9574] = {.lex_state = 90, .external_lex_state = 1}, + [9575] = {.lex_state = 90, .external_lex_state = 1}, + [9576] = {.lex_state = 90, .external_lex_state = 1}, + [9577] = {.lex_state = 90, .external_lex_state = 1}, + [9578] = {.lex_state = 164, .external_lex_state = 1}, + [9579] = {.lex_state = 90, .external_lex_state = 1}, + [9580] = {.lex_state = 90, .external_lex_state = 1}, + [9581] = {.lex_state = 90, .external_lex_state = 1}, + [9582] = {.lex_state = 90, .external_lex_state = 1}, + [9583] = {.lex_state = 90, .external_lex_state = 1}, + [9584] = {.lex_state = 90, .external_lex_state = 1}, + [9585] = {.lex_state = 534, .external_lex_state = 1}, + [9586] = {.lex_state = 90, .external_lex_state = 1}, + [9587] = {.lex_state = 169, .external_lex_state = 1}, + [9588] = {.lex_state = 90, .external_lex_state = 1}, + [9589] = {.lex_state = 128, .external_lex_state = 1}, + [9590] = {.lex_state = 90, .external_lex_state = 1}, + [9591] = {.lex_state = 90, .external_lex_state = 1}, + [9592] = {.lex_state = 90, .external_lex_state = 1}, + [9593] = {.lex_state = 90, .external_lex_state = 1}, + [9594] = {.lex_state = 90, .external_lex_state = 1}, + [9595] = {.lex_state = 90, .external_lex_state = 1}, + [9596] = {.lex_state = 90, .external_lex_state = 1}, + [9597] = {.lex_state = 90, .external_lex_state = 1}, + [9598] = {.lex_state = 90, .external_lex_state = 1}, + [9599] = {.lex_state = 90, .external_lex_state = 1}, + [9600] = {.lex_state = 90, .external_lex_state = 1}, + [9601] = {.lex_state = 90, .external_lex_state = 1}, + [9602] = {.lex_state = 90, .external_lex_state = 1}, + [9603] = {.lex_state = 90, .external_lex_state = 1}, + [9604] = {.lex_state = 90, .external_lex_state = 1}, + [9605] = {.lex_state = 90, .external_lex_state = 1}, + [9606] = {.lex_state = 131, .external_lex_state = 1}, + [9607] = {.lex_state = 90, .external_lex_state = 1}, + [9608] = {.lex_state = 90, .external_lex_state = 1}, + [9609] = {.lex_state = 90, .external_lex_state = 1}, + [9610] = {.lex_state = 90, .external_lex_state = 1}, + [9611] = {.lex_state = 90, .external_lex_state = 1}, + [9612] = {.lex_state = 189, .external_lex_state = 1}, + [9613] = {.lex_state = 90, .external_lex_state = 1}, + [9614] = {.lex_state = 90, .external_lex_state = 1}, + [9615] = {.lex_state = 90, .external_lex_state = 1}, + [9616] = {.lex_state = 90, .external_lex_state = 1}, + [9617] = {.lex_state = 90, .external_lex_state = 1}, + [9618] = {.lex_state = 90, .external_lex_state = 1}, + [9619] = {.lex_state = 90, .external_lex_state = 1}, + [9620] = {.lex_state = 90, .external_lex_state = 1}, + [9621] = {.lex_state = 90, .external_lex_state = 1}, + [9622] = {.lex_state = 90, .external_lex_state = 1}, + [9623] = {.lex_state = 90, .external_lex_state = 1}, + [9624] = {.lex_state = 90, .external_lex_state = 1}, + [9625] = {.lex_state = 90, .external_lex_state = 1}, + [9626] = {.lex_state = 90, .external_lex_state = 1}, + [9627] = {.lex_state = 90, .external_lex_state = 1}, + [9628] = {.lex_state = 102, .external_lex_state = 1}, + [9629] = {.lex_state = 534, .external_lex_state = 1}, + [9630] = {.lex_state = 94, .external_lex_state = 1}, + [9631] = {.lex_state = 534, .external_lex_state = 1}, + [9632] = {.lex_state = 94, .external_lex_state = 1}, + [9633] = {.lex_state = 94, .external_lex_state = 1}, + [9634] = {.lex_state = 94, .external_lex_state = 1}, + [9635] = {.lex_state = 90, .external_lex_state = 1}, + [9636] = {.lex_state = 94, .external_lex_state = 1}, + [9637] = {.lex_state = 94, .external_lex_state = 1}, + [9638] = {.lex_state = 534, .external_lex_state = 1}, + [9639] = {.lex_state = 165, .external_lex_state = 1}, + [9640] = {.lex_state = 94, .external_lex_state = 1}, + [9641] = {.lex_state = 94, .external_lex_state = 1}, + [9642] = {.lex_state = 131, .external_lex_state = 1}, + [9643] = {.lex_state = 131, .external_lex_state = 1}, + [9644] = {.lex_state = 94, .external_lex_state = 1}, + [9645] = {.lex_state = 534, .external_lex_state = 1}, + [9646] = {.lex_state = 534, .external_lex_state = 1}, + [9647] = {.lex_state = 94, .external_lex_state = 1}, + [9648] = {.lex_state = 94, .external_lex_state = 1}, + [9649] = {.lex_state = 94, .external_lex_state = 1}, + [9650] = {.lex_state = 94, .external_lex_state = 1}, + [9651] = {.lex_state = 94, .external_lex_state = 1}, + [9652] = {.lex_state = 94, .external_lex_state = 1}, + [9653] = {.lex_state = 94, .external_lex_state = 1}, + [9654] = {.lex_state = 94, .external_lex_state = 1}, + [9655] = {.lex_state = 164, .external_lex_state = 1}, + [9656] = {.lex_state = 164, .external_lex_state = 1}, + [9657] = {.lex_state = 164, .external_lex_state = 1}, + [9658] = {.lex_state = 94, .external_lex_state = 1}, + [9659] = {.lex_state = 94, .external_lex_state = 1}, + [9660] = {.lex_state = 94, .external_lex_state = 1}, + [9661] = {.lex_state = 94, .external_lex_state = 1}, + [9662] = {.lex_state = 94, .external_lex_state = 1}, + [9663] = {.lex_state = 94, .external_lex_state = 1}, + [9664] = {.lex_state = 94, .external_lex_state = 1}, + [9665] = {.lex_state = 164, .external_lex_state = 1}, + [9666] = {.lex_state = 164, .external_lex_state = 1}, + [9667] = {.lex_state = 94, .external_lex_state = 1}, + [9668] = {.lex_state = 94, .external_lex_state = 1}, + [9669] = {.lex_state = 94, .external_lex_state = 1}, + [9670] = {.lex_state = 94, .external_lex_state = 1}, + [9671] = {.lex_state = 94, .external_lex_state = 1}, + [9672] = {.lex_state = 94, .external_lex_state = 1}, + [9673] = {.lex_state = 94, .external_lex_state = 1}, + [9674] = {.lex_state = 94, .external_lex_state = 1}, + [9675] = {.lex_state = 94, .external_lex_state = 1}, + [9676] = {.lex_state = 164, .external_lex_state = 1}, + [9677] = {.lex_state = 164, .external_lex_state = 1}, + [9678] = {.lex_state = 94, .external_lex_state = 1}, + [9679] = {.lex_state = 94, .external_lex_state = 1}, + [9680] = {.lex_state = 131, .external_lex_state = 1}, + [9681] = {.lex_state = 131, .external_lex_state = 1}, + [9682] = {.lex_state = 94, .external_lex_state = 1}, + [9683] = {.lex_state = 94, .external_lex_state = 1}, + [9684] = {.lex_state = 94, .external_lex_state = 1}, + [9685] = {.lex_state = 94, .external_lex_state = 1}, + [9686] = {.lex_state = 94, .external_lex_state = 1}, + [9687] = {.lex_state = 94, .external_lex_state = 1}, + [9688] = {.lex_state = 70, .external_lex_state = 1}, + [9689] = {.lex_state = 94, .external_lex_state = 1}, + [9690] = {.lex_state = 94, .external_lex_state = 1}, + [9691] = {.lex_state = 94, .external_lex_state = 1}, + [9692] = {.lex_state = 164, .external_lex_state = 1}, + [9693] = {.lex_state = 94, .external_lex_state = 1}, + [9694] = {.lex_state = 94, .external_lex_state = 1}, + [9695] = {.lex_state = 94, .external_lex_state = 1}, + [9696] = {.lex_state = 94, .external_lex_state = 1}, + [9697] = {.lex_state = 94, .external_lex_state = 1}, + [9698] = {.lex_state = 94, .external_lex_state = 1}, + [9699] = {.lex_state = 164, .external_lex_state = 1}, + [9700] = {.lex_state = 94, .external_lex_state = 1}, + [9701] = {.lex_state = 94, .external_lex_state = 1}, + [9702] = {.lex_state = 94, .external_lex_state = 1}, + [9703] = {.lex_state = 164, .external_lex_state = 1}, + [9704] = {.lex_state = 164, .external_lex_state = 1}, + [9705] = {.lex_state = 164, .external_lex_state = 1}, + [9706] = {.lex_state = 547, .external_lex_state = 1}, + [9707] = {.lex_state = 534, .external_lex_state = 1}, + [9708] = {.lex_state = 166, .external_lex_state = 1}, + [9709] = {.lex_state = 94, .external_lex_state = 1}, + [9710] = {.lex_state = 164, .external_lex_state = 1}, + [9711] = {.lex_state = 169, .external_lex_state = 1}, + [9712] = {.lex_state = 566, .external_lex_state = 1}, + [9713] = {.lex_state = 169, .external_lex_state = 1}, + [9714] = {.lex_state = 169, .external_lex_state = 1}, + [9715] = {.lex_state = 131, .external_lex_state = 1}, + [9716] = {.lex_state = 131, .external_lex_state = 1}, + [9717] = {.lex_state = 70, .external_lex_state = 1}, + [9718] = {.lex_state = 70, .external_lex_state = 1}, + [9719] = {.lex_state = 534, .external_lex_state = 1}, + [9720] = {.lex_state = 188, .external_lex_state = 1}, + [9721] = {.lex_state = 171, .external_lex_state = 1}, + [9722] = {.lex_state = 171, .external_lex_state = 1}, + [9723] = {.lex_state = 171, .external_lex_state = 1}, + [9724] = {.lex_state = 171, .external_lex_state = 1}, + [9725] = {.lex_state = 171, .external_lex_state = 1}, + [9726] = {.lex_state = 165, .external_lex_state = 1}, + [9727] = {.lex_state = 171, .external_lex_state = 1}, + [9728] = {.lex_state = 171, .external_lex_state = 1}, + [9729] = {.lex_state = 165, .external_lex_state = 1}, + [9730] = {.lex_state = 165, .external_lex_state = 1}, + [9731] = {.lex_state = 165, .external_lex_state = 1}, + [9732] = {.lex_state = 165, .external_lex_state = 1}, + [9733] = {.lex_state = 165, .external_lex_state = 1}, + [9734] = {.lex_state = 165, .external_lex_state = 1}, + [9735] = {.lex_state = 94, .external_lex_state = 1}, + [9736] = {.lex_state = 171, .external_lex_state = 1}, + [9737] = {.lex_state = 142, .external_lex_state = 1}, + [9738] = {.lex_state = 142, .external_lex_state = 1}, + [9739] = {.lex_state = 142, .external_lex_state = 1}, + [9740] = {.lex_state = 142, .external_lex_state = 1}, + [9741] = {.lex_state = 171, .external_lex_state = 1}, + [9742] = {.lex_state = 165, .external_lex_state = 1}, + [9743] = {.lex_state = 142, .external_lex_state = 1}, + [9744] = {.lex_state = 171, .external_lex_state = 1}, + [9745] = {.lex_state = 171, .external_lex_state = 1}, + [9746] = {.lex_state = 171, .external_lex_state = 1}, + [9747] = {.lex_state = 142, .external_lex_state = 1}, + [9748] = {.lex_state = 142, .external_lex_state = 1}, + [9749] = {.lex_state = 142, .external_lex_state = 1}, + [9750] = {.lex_state = 94, .external_lex_state = 1}, + [9751] = {.lex_state = 185, .external_lex_state = 1}, + [9752] = {.lex_state = 168, .external_lex_state = 1}, + [9753] = {.lex_state = 168, .external_lex_state = 1}, + [9754] = {.lex_state = 168, .external_lex_state = 1}, + [9755] = {.lex_state = 168, .external_lex_state = 1}, + [9756] = {.lex_state = 168, .external_lex_state = 1}, + [9757] = {.lex_state = 168, .external_lex_state = 1}, + [9758] = {.lex_state = 168, .external_lex_state = 1}, + [9759] = {.lex_state = 171, .external_lex_state = 1}, + [9760] = {.lex_state = 546, .external_lex_state = 1}, + [9761] = {.lex_state = 168, .external_lex_state = 1}, + [9762] = {.lex_state = 142, .external_lex_state = 1}, + [9763] = {.lex_state = 168, .external_lex_state = 1}, + [9764] = {.lex_state = 168, .external_lex_state = 1}, + [9765] = {.lex_state = 142, .external_lex_state = 1}, + [9766] = {.lex_state = 191, .external_lex_state = 1}, + [9767] = {.lex_state = 534, .external_lex_state = 1}, + [9768] = {.lex_state = 142, .external_lex_state = 1}, + [9769] = {.lex_state = 142, .external_lex_state = 1}, + [9770] = {.lex_state = 142, .external_lex_state = 1}, + [9771] = {.lex_state = 534, .external_lex_state = 1}, + [9772] = {.lex_state = 142, .external_lex_state = 1}, + [9773] = {.lex_state = 168, .external_lex_state = 1}, + [9774] = {.lex_state = 168, .external_lex_state = 1}, + [9775] = {.lex_state = 142, .external_lex_state = 1}, + [9776] = {.lex_state = 142, .external_lex_state = 1}, + [9777] = {.lex_state = 145, .external_lex_state = 1}, + [9778] = {.lex_state = 145, .external_lex_state = 1}, + [9779] = {.lex_state = 168, .external_lex_state = 1}, + [9780] = {.lex_state = 534, .external_lex_state = 1}, + [9781] = {.lex_state = 534, .external_lex_state = 1}, + [9782] = {.lex_state = 145, .external_lex_state = 1}, + [9783] = {.lex_state = 145, .external_lex_state = 1}, + [9784] = {.lex_state = 145, .external_lex_state = 1}, + [9785] = {.lex_state = 145, .external_lex_state = 1}, + [9786] = {.lex_state = 92, .external_lex_state = 1}, + [9787] = {.lex_state = 183, .external_lex_state = 1}, + [9788] = {.lex_state = 534, .external_lex_state = 1}, + [9789] = {.lex_state = 534, .external_lex_state = 1}, + [9790] = {.lex_state = 145, .external_lex_state = 1}, + [9791] = {.lex_state = 145, .external_lex_state = 1}, + [9792] = {.lex_state = 145, .external_lex_state = 1}, + [9793] = {.lex_state = 145, .external_lex_state = 1}, + [9794] = {.lex_state = 165, .external_lex_state = 1}, + [9795] = {.lex_state = 145, .external_lex_state = 1}, + [9796] = {.lex_state = 566, .external_lex_state = 1}, + [9797] = {.lex_state = 546, .external_lex_state = 1}, + [9798] = {.lex_state = 145, .external_lex_state = 1}, + [9799] = {.lex_state = 145, .external_lex_state = 1}, + [9800] = {.lex_state = 534, .external_lex_state = 1}, + [9801] = {.lex_state = 534, .external_lex_state = 1}, + [9802] = {.lex_state = 534, .external_lex_state = 1}, + [9803] = {.lex_state = 139, .external_lex_state = 1}, + [9804] = {.lex_state = 534, .external_lex_state = 1}, + [9805] = {.lex_state = 183, .external_lex_state = 1}, + [9806] = {.lex_state = 183, .external_lex_state = 1}, + [9807] = {.lex_state = 183, .external_lex_state = 1}, + [9808] = {.lex_state = 534, .external_lex_state = 1}, + [9809] = {.lex_state = 183, .external_lex_state = 1}, + [9810] = {.lex_state = 165, .external_lex_state = 1}, + [9811] = {.lex_state = 183, .external_lex_state = 1}, + [9812] = {.lex_state = 534, .external_lex_state = 1}, + [9813] = {.lex_state = 534, .external_lex_state = 1}, + [9814] = {.lex_state = 534, .external_lex_state = 1}, + [9815] = {.lex_state = 534, .external_lex_state = 1}, + [9816] = {.lex_state = 534, .external_lex_state = 1}, + [9817] = {.lex_state = 534, .external_lex_state = 1}, + [9818] = {.lex_state = 534, .external_lex_state = 1}, + [9819] = {.lex_state = 187, .external_lex_state = 1}, + [9820] = {.lex_state = 187, .external_lex_state = 1}, + [9821] = {.lex_state = 187, .external_lex_state = 1}, + [9822] = {.lex_state = 183, .external_lex_state = 1}, + [9823] = {.lex_state = 183, .external_lex_state = 1}, + [9824] = {.lex_state = 183, .external_lex_state = 1}, + [9825] = {.lex_state = 183, .external_lex_state = 1}, + [9826] = {.lex_state = 534, .external_lex_state = 1}, + [9827] = {.lex_state = 183, .external_lex_state = 1}, + [9828] = {.lex_state = 44, .external_lex_state = 1}, + [9829] = {.lex_state = 183, .external_lex_state = 1}, + [9830] = {.lex_state = 187, .external_lex_state = 1}, + [9831] = {.lex_state = 554, .external_lex_state = 1}, + [9832] = {.lex_state = 536, .external_lex_state = 1}, + [9833] = {.lex_state = 187, .external_lex_state = 1}, + [9834] = {.lex_state = 187, .external_lex_state = 1}, + [9835] = {.lex_state = 566, .external_lex_state = 1}, + [9836] = {.lex_state = 546, .external_lex_state = 1}, + [9837] = {.lex_state = 161, .external_lex_state = 1}, + [9838] = {.lex_state = 566, .external_lex_state = 1}, + [9839] = {.lex_state = 165, .external_lex_state = 1}, + [9840] = {.lex_state = 183, .external_lex_state = 1}, + [9841] = {.lex_state = 145, .external_lex_state = 1}, + [9842] = {.lex_state = 44, .external_lex_state = 1}, + [9843] = {.lex_state = 44, .external_lex_state = 1}, + [9844] = {.lex_state = 566, .external_lex_state = 1}, + [9845] = {.lex_state = 172, .external_lex_state = 1}, + [9846] = {.lex_state = 187, .external_lex_state = 1}, + [9847] = {.lex_state = 546, .external_lex_state = 1}, + [9848] = {.lex_state = 534, .external_lex_state = 1}, + [9849] = {.lex_state = 547, .external_lex_state = 1}, + [9850] = {.lex_state = 145, .external_lex_state = 1}, + [9851] = {.lex_state = 546, .external_lex_state = 1}, + [9852] = {.lex_state = 546, .external_lex_state = 1}, + [9853] = {.lex_state = 566, .external_lex_state = 1}, + [9854] = {.lex_state = 566, .external_lex_state = 1}, + [9855] = {.lex_state = 546, .external_lex_state = 1}, + [9856] = {.lex_state = 187, .external_lex_state = 1}, + [9857] = {.lex_state = 187, .external_lex_state = 1}, + [9858] = {.lex_state = 184, .external_lex_state = 1}, + [9859] = {.lex_state = 159, .external_lex_state = 1}, + [9860] = {.lex_state = 159, .external_lex_state = 1}, + [9861] = {.lex_state = 159, .external_lex_state = 1}, + [9862] = {.lex_state = 566, .external_lex_state = 1}, + [9863] = {.lex_state = 45, .external_lex_state = 1}, + [9864] = {.lex_state = 159, .external_lex_state = 1}, + [9865] = {.lex_state = 159, .external_lex_state = 1}, + [9866] = {.lex_state = 547, .external_lex_state = 1}, + [9867] = {.lex_state = 145, .external_lex_state = 1}, + [9868] = {.lex_state = 547, .external_lex_state = 1}, + [9869] = {.lex_state = 170, .external_lex_state = 1}, + [9870] = {.lex_state = 146, .external_lex_state = 1}, + [9871] = {.lex_state = 159, .external_lex_state = 1}, + [9872] = {.lex_state = 168, .external_lex_state = 1}, + [9873] = {.lex_state = 159, .external_lex_state = 1}, + [9874] = {.lex_state = 139, .external_lex_state = 1}, + [9875] = {.lex_state = 94, .external_lex_state = 1}, + [9876] = {.lex_state = 187, .external_lex_state = 1}, + [9877] = {.lex_state = 139, .external_lex_state = 1}, + [9878] = {.lex_state = 554, .external_lex_state = 1}, + [9879] = {.lex_state = 139, .external_lex_state = 1}, + [9880] = {.lex_state = 139, .external_lex_state = 1}, + [9881] = {.lex_state = 187, .external_lex_state = 1}, + [9882] = {.lex_state = 159, .external_lex_state = 1}, + [9883] = {.lex_state = 159, .external_lex_state = 1}, + [9884] = {.lex_state = 90, .external_lex_state = 1}, + [9885] = {.lex_state = 159, .external_lex_state = 1}, + [9886] = {.lex_state = 159, .external_lex_state = 1}, + [9887] = {.lex_state = 159, .external_lex_state = 1}, + [9888] = {.lex_state = 187, .external_lex_state = 1}, + [9889] = {.lex_state = 139, .external_lex_state = 1}, + [9890] = {.lex_state = 159, .external_lex_state = 1}, + [9891] = {.lex_state = 179, .external_lex_state = 1}, + [9892] = {.lex_state = 160, .external_lex_state = 1}, + [9893] = {.lex_state = 159, .external_lex_state = 1}, + [9894] = {.lex_state = 173, .external_lex_state = 1}, + [9895] = {.lex_state = 159, .external_lex_state = 1}, + [9896] = {.lex_state = 168, .external_lex_state = 1}, + [9897] = {.lex_state = 534, .external_lex_state = 1}, + [9898] = {.lex_state = 139, .external_lex_state = 1}, + [9899] = {.lex_state = 187, .external_lex_state = 1}, + [9900] = {.lex_state = 534, .external_lex_state = 1}, + [9901] = {.lex_state = 110, .external_lex_state = 1}, + [9902] = {.lex_state = 566, .external_lex_state = 1}, + [9903] = {.lex_state = 534, .external_lex_state = 1}, + [9904] = {.lex_state = 534, .external_lex_state = 1}, + [9905] = {.lex_state = 534, .external_lex_state = 1}, + [9906] = {.lex_state = 537, .external_lex_state = 1}, + [9907] = {.lex_state = 566, .external_lex_state = 1}, + [9908] = {.lex_state = 547, .external_lex_state = 1}, + [9909] = {.lex_state = 187, .external_lex_state = 1}, + [9910] = {.lex_state = 546, .external_lex_state = 1}, + [9911] = {.lex_state = 534, .external_lex_state = 1}, + [9912] = {.lex_state = 534, .external_lex_state = 1}, + [9913] = {.lex_state = 534, .external_lex_state = 1}, + [9914] = {.lex_state = 159, .external_lex_state = 1}, + [9915] = {.lex_state = 547, .external_lex_state = 1}, + [9916] = {.lex_state = 547, .external_lex_state = 1}, + [9917] = {.lex_state = 547, .external_lex_state = 1}, + [9918] = {.lex_state = 139, .external_lex_state = 1}, + [9919] = {.lex_state = 139, .external_lex_state = 1}, + [9920] = {.lex_state = 534, .external_lex_state = 1}, + [9921] = {.lex_state = 534, .external_lex_state = 1}, + [9922] = {.lex_state = 534, .external_lex_state = 1}, + [9923] = {.lex_state = 44, .external_lex_state = 1}, + [9924] = {.lex_state = 44, .external_lex_state = 1}, + [9925] = {.lex_state = 44, .external_lex_state = 1}, + [9926] = {.lex_state = 164, .external_lex_state = 1}, + [9927] = {.lex_state = 44, .external_lex_state = 1}, + [9928] = {.lex_state = 168, .external_lex_state = 1}, + [9929] = {.lex_state = 566, .external_lex_state = 1}, + [9930] = {.lex_state = 44, .external_lex_state = 1}, + [9931] = {.lex_state = 547, .external_lex_state = 1}, + [9932] = {.lex_state = 547, .external_lex_state = 1}, + [9933] = {.lex_state = 547, .external_lex_state = 1}, + [9934] = {.lex_state = 44, .external_lex_state = 1}, + [9935] = {.lex_state = 547, .external_lex_state = 1}, + [9936] = {.lex_state = 44, .external_lex_state = 1}, + [9937] = {.lex_state = 44, .external_lex_state = 1}, + [9938] = {.lex_state = 44, .external_lex_state = 1}, + [9939] = {.lex_state = 534, .external_lex_state = 1}, + [9940] = {.lex_state = 44, .external_lex_state = 1}, + [9941] = {.lex_state = 183, .external_lex_state = 1}, + [9942] = {.lex_state = 71, .external_lex_state = 1}, + [9943] = {.lex_state = 546, .external_lex_state = 1}, + [9944] = {.lex_state = 44, .external_lex_state = 1}, + [9945] = {.lex_state = 44, .external_lex_state = 1}, + [9946] = {.lex_state = 44, .external_lex_state = 1}, + [9947] = {.lex_state = 546, .external_lex_state = 1}, + [9948] = {.lex_state = 546, .external_lex_state = 1}, + [9949] = {.lex_state = 546, .external_lex_state = 1}, + [9950] = {.lex_state = 44, .external_lex_state = 1}, + [9951] = {.lex_state = 171, .external_lex_state = 1}, + [9952] = {.lex_state = 70, .external_lex_state = 1}, + [9953] = {.lex_state = 44, .external_lex_state = 1}, + [9954] = {.lex_state = 44, .external_lex_state = 1}, + [9955] = {.lex_state = 44, .external_lex_state = 1}, + [9956] = {.lex_state = 566, .external_lex_state = 1}, + [9957] = {.lex_state = 70, .external_lex_state = 1}, + [9958] = {.lex_state = 44, .external_lex_state = 1}, + [9959] = {.lex_state = 44, .external_lex_state = 1}, + [9960] = {.lex_state = 547, .external_lex_state = 1}, + [9961] = {.lex_state = 44, .external_lex_state = 1}, + [9962] = {.lex_state = 70, .external_lex_state = 1}, + [9963] = {.lex_state = 171, .external_lex_state = 1}, + [9964] = {.lex_state = 44, .external_lex_state = 1}, + [9965] = {.lex_state = 70, .external_lex_state = 1}, + [9966] = {.lex_state = 183, .external_lex_state = 1}, + [9967] = {.lex_state = 44, .external_lex_state = 1}, + [9968] = {.lex_state = 70, .external_lex_state = 1}, + [9969] = {.lex_state = 70, .external_lex_state = 1}, + [9970] = {.lex_state = 535, .external_lex_state = 1}, + [9971] = {.lex_state = 44, .external_lex_state = 1}, + [9972] = {.lex_state = 44, .external_lex_state = 1}, + [9973] = {.lex_state = 44, .external_lex_state = 1}, + [9974] = {.lex_state = 183, .external_lex_state = 1}, + [9975] = {.lex_state = 70, .external_lex_state = 1}, + [9976] = {.lex_state = 70, .external_lex_state = 1}, + [9977] = {.lex_state = 547, .external_lex_state = 1}, + [9978] = {.lex_state = 70, .external_lex_state = 1}, + [9979] = {.lex_state = 44, .external_lex_state = 1}, + [9980] = {.lex_state = 140, .external_lex_state = 1}, + [9981] = {.lex_state = 44, .external_lex_state = 1}, + [9982] = {.lex_state = 72, .external_lex_state = 1}, + [9983] = {.lex_state = 44, .external_lex_state = 1}, + [9984] = {.lex_state = 70, .external_lex_state = 1}, + [9985] = {.lex_state = 70, .external_lex_state = 1}, + [9986] = {.lex_state = 70, .external_lex_state = 1}, + [9987] = {.lex_state = 70, .external_lex_state = 1}, + [9988] = {.lex_state = 44, .external_lex_state = 1}, + [9989] = {.lex_state = 44, .external_lex_state = 1}, + [9990] = {.lex_state = 44, .external_lex_state = 1}, + [9991] = {.lex_state = 44, .external_lex_state = 1}, + [9992] = {.lex_state = 70, .external_lex_state = 1}, + [9993] = {.lex_state = 44, .external_lex_state = 1}, + [9994] = {.lex_state = 70, .external_lex_state = 1}, + [9995] = {.lex_state = 70, .external_lex_state = 1}, + [9996] = {.lex_state = 44, .external_lex_state = 1}, + [9997] = {.lex_state = 44, .external_lex_state = 1}, + [9998] = {.lex_state = 44, .external_lex_state = 1}, + [9999] = {.lex_state = 44, .external_lex_state = 1}, + [10000] = {.lex_state = 44, .external_lex_state = 1}, + [10001] = {.lex_state = 44, .external_lex_state = 1}, + [10002] = {.lex_state = 44, .external_lex_state = 1}, + [10003] = {.lex_state = 44, .external_lex_state = 1}, + [10004] = {.lex_state = 44, .external_lex_state = 1}, + [10005] = {.lex_state = 44, .external_lex_state = 1}, + [10006] = {.lex_state = 44, .external_lex_state = 1}, + [10007] = {.lex_state = 70, .external_lex_state = 1}, + [10008] = {.lex_state = 44, .external_lex_state = 1}, + [10009] = {.lex_state = 44, .external_lex_state = 1}, + [10010] = {.lex_state = 70, .external_lex_state = 1}, + [10011] = {.lex_state = 70, .external_lex_state = 1}, + [10012] = {.lex_state = 70, .external_lex_state = 1}, + [10013] = {.lex_state = 44, .external_lex_state = 1}, + [10014] = {.lex_state = 44, .external_lex_state = 1}, + [10015] = {.lex_state = 44, .external_lex_state = 1}, + [10016] = {.lex_state = 44, .external_lex_state = 1}, + [10017] = {.lex_state = 44, .external_lex_state = 1}, + [10018] = {.lex_state = 70, .external_lex_state = 1}, + [10019] = {.lex_state = 171, .external_lex_state = 1}, + [10020] = {.lex_state = 70, .external_lex_state = 1}, + [10021] = {.lex_state = 70, .external_lex_state = 1}, + [10022] = {.lex_state = 44, .external_lex_state = 1}, + [10023] = {.lex_state = 70, .external_lex_state = 1}, + [10024] = {.lex_state = 44, .external_lex_state = 1}, + [10025] = {.lex_state = 566, .external_lex_state = 1}, + [10026] = {.lex_state = 70, .external_lex_state = 1}, + [10027] = {.lex_state = 70, .external_lex_state = 1}, + [10028] = {.lex_state = 70, .external_lex_state = 1}, + [10029] = {.lex_state = 96, .external_lex_state = 1}, + [10030] = {.lex_state = 547, .external_lex_state = 1}, + [10031] = {.lex_state = 566, .external_lex_state = 1}, + [10032] = {.lex_state = 70, .external_lex_state = 1}, + [10033] = {.lex_state = 70, .external_lex_state = 1}, + [10034] = {.lex_state = 164, .external_lex_state = 1}, + [10035] = {.lex_state = 546, .external_lex_state = 1}, + [10036] = {.lex_state = 70, .external_lex_state = 1}, + [10037] = {.lex_state = 70, .external_lex_state = 1}, + [10038] = {.lex_state = 70, .external_lex_state = 1}, + [10039] = {.lex_state = 534, .external_lex_state = 1}, + [10040] = {.lex_state = 546, .external_lex_state = 1}, + [10041] = {.lex_state = 546, .external_lex_state = 1}, + [10042] = {.lex_state = 546, .external_lex_state = 1}, + [10043] = {.lex_state = 546, .external_lex_state = 1}, + [10044] = {.lex_state = 70, .external_lex_state = 1}, + [10045] = {.lex_state = 44, .external_lex_state = 1}, + [10046] = {.lex_state = 139, .external_lex_state = 1}, + [10047] = {.lex_state = 534, .external_lex_state = 1}, + [10048] = {.lex_state = 535, .external_lex_state = 1}, + [10049] = {.lex_state = 184, .external_lex_state = 1}, + [10050] = {.lex_state = 184, .external_lex_state = 1}, + [10051] = {.lex_state = 172, .external_lex_state = 1}, + [10052] = {.lex_state = 104, .external_lex_state = 1}, + [10053] = {.lex_state = 104, .external_lex_state = 1}, + [10054] = {.lex_state = 104, .external_lex_state = 1}, + [10055] = {.lex_state = 104, .external_lex_state = 1}, + [10056] = {.lex_state = 104, .external_lex_state = 1}, + [10057] = {.lex_state = 104, .external_lex_state = 1}, + [10058] = {.lex_state = 104, .external_lex_state = 1}, + [10059] = {.lex_state = 104, .external_lex_state = 1}, + [10060] = {.lex_state = 184, .external_lex_state = 1}, + [10061] = {.lex_state = 184, .external_lex_state = 1}, + [10062] = {.lex_state = 104, .external_lex_state = 1}, + [10063] = {.lex_state = 104, .external_lex_state = 1}, + [10064] = {.lex_state = 91, .external_lex_state = 1}, + [10065] = {.lex_state = 104, .external_lex_state = 1}, + [10066] = {.lex_state = 104, .external_lex_state = 1}, + [10067] = {.lex_state = 104, .external_lex_state = 1}, + [10068] = {.lex_state = 104, .external_lex_state = 1}, + [10069] = {.lex_state = 104, .external_lex_state = 1}, + [10070] = {.lex_state = 104, .external_lex_state = 1}, + [10071] = {.lex_state = 104, .external_lex_state = 1}, + [10072] = {.lex_state = 104, .external_lex_state = 1}, + [10073] = {.lex_state = 104, .external_lex_state = 1}, + [10074] = {.lex_state = 184, .external_lex_state = 1}, + [10075] = {.lex_state = 104, .external_lex_state = 1}, + [10076] = {.lex_state = 104, .external_lex_state = 1}, + [10077] = {.lex_state = 104, .external_lex_state = 1}, + [10078] = {.lex_state = 104, .external_lex_state = 1}, + [10079] = {.lex_state = 104, .external_lex_state = 1}, + [10080] = {.lex_state = 104, .external_lex_state = 1}, + [10081] = {.lex_state = 184, .external_lex_state = 1}, + [10082] = {.lex_state = 104, .external_lex_state = 1}, + [10083] = {.lex_state = 104, .external_lex_state = 1}, + [10084] = {.lex_state = 104, .external_lex_state = 1}, + [10085] = {.lex_state = 184, .external_lex_state = 1}, + [10086] = {.lex_state = 184, .external_lex_state = 1}, + [10087] = {.lex_state = 184, .external_lex_state = 1}, + [10088] = {.lex_state = 160, .external_lex_state = 1}, + [10089] = {.lex_state = 98, .external_lex_state = 1}, + [10090] = {.lex_state = 98, .external_lex_state = 1}, + [10091] = {.lex_state = 173, .external_lex_state = 1}, + [10092] = {.lex_state = 98, .external_lex_state = 1}, + [10093] = {.lex_state = 98, .external_lex_state = 1}, + [10094] = {.lex_state = 104, .external_lex_state = 1}, + [10095] = {.lex_state = 98, .external_lex_state = 1}, + [10096] = {.lex_state = 98, .external_lex_state = 1}, + [10097] = {.lex_state = 98, .external_lex_state = 1}, + [10098] = {.lex_state = 98, .external_lex_state = 1}, + [10099] = {.lex_state = 172, .external_lex_state = 1}, + [10100] = {.lex_state = 184, .external_lex_state = 1}, + [10101] = {.lex_state = 98, .external_lex_state = 1}, + [10102] = {.lex_state = 536, .external_lex_state = 1}, + [10103] = {.lex_state = 98, .external_lex_state = 1}, + [10104] = {.lex_state = 98, .external_lex_state = 1}, + [10105] = {.lex_state = 98, .external_lex_state = 1}, + [10106] = {.lex_state = 98, .external_lex_state = 1}, + [10107] = {.lex_state = 98, .external_lex_state = 1}, + [10108] = {.lex_state = 98, .external_lex_state = 1}, + [10109] = {.lex_state = 98, .external_lex_state = 1}, + [10110] = {.lex_state = 98, .external_lex_state = 1}, + [10111] = {.lex_state = 536, .external_lex_state = 1}, + [10112] = {.lex_state = 179, .external_lex_state = 1}, + [10113] = {.lex_state = 179, .external_lex_state = 1}, + [10114] = {.lex_state = 179, .external_lex_state = 1}, + [10115] = {.lex_state = 98, .external_lex_state = 1}, + [10116] = {.lex_state = 98, .external_lex_state = 1}, + [10117] = {.lex_state = 98, .external_lex_state = 1}, + [10118] = {.lex_state = 98, .external_lex_state = 1}, + [10119] = {.lex_state = 98, .external_lex_state = 1}, + [10120] = {.lex_state = 98, .external_lex_state = 1}, + [10121] = {.lex_state = 98, .external_lex_state = 1}, + [10122] = {.lex_state = 179, .external_lex_state = 1}, + [10123] = {.lex_state = 179, .external_lex_state = 1}, + [10124] = {.lex_state = 98, .external_lex_state = 1}, + [10125] = {.lex_state = 98, .external_lex_state = 1}, + [10126] = {.lex_state = 98, .external_lex_state = 1}, + [10127] = {.lex_state = 98, .external_lex_state = 1}, + [10128] = {.lex_state = 98, .external_lex_state = 1}, + [10129] = {.lex_state = 98, .external_lex_state = 1}, + [10130] = {.lex_state = 98, .external_lex_state = 1}, + [10131] = {.lex_state = 98, .external_lex_state = 1}, + [10132] = {.lex_state = 98, .external_lex_state = 1}, + [10133] = {.lex_state = 179, .external_lex_state = 1}, + [10134] = {.lex_state = 179, .external_lex_state = 1}, + [10135] = {.lex_state = 98, .external_lex_state = 1}, + [10136] = {.lex_state = 98, .external_lex_state = 1}, + [10137] = {.lex_state = 98, .external_lex_state = 1}, + [10138] = {.lex_state = 98, .external_lex_state = 1}, + [10139] = {.lex_state = 98, .external_lex_state = 1}, + [10140] = {.lex_state = 98, .external_lex_state = 1}, + [10141] = {.lex_state = 98, .external_lex_state = 1}, + [10142] = {.lex_state = 98, .external_lex_state = 1}, + [10143] = {.lex_state = 98, .external_lex_state = 1}, + [10144] = {.lex_state = 98, .external_lex_state = 1}, + [10145] = {.lex_state = 98, .external_lex_state = 1}, + [10146] = {.lex_state = 179, .external_lex_state = 1}, + [10147] = {.lex_state = 98, .external_lex_state = 1}, + [10148] = {.lex_state = 98, .external_lex_state = 1}, + [10149] = {.lex_state = 98, .external_lex_state = 1}, + [10150] = {.lex_state = 98, .external_lex_state = 1}, + [10151] = {.lex_state = 98, .external_lex_state = 1}, + [10152] = {.lex_state = 98, .external_lex_state = 1}, + [10153] = {.lex_state = 179, .external_lex_state = 1}, + [10154] = {.lex_state = 98, .external_lex_state = 1}, + [10155] = {.lex_state = 98, .external_lex_state = 1}, + [10156] = {.lex_state = 98, .external_lex_state = 1}, + [10157] = {.lex_state = 179, .external_lex_state = 1}, + [10158] = {.lex_state = 179, .external_lex_state = 1}, + [10159] = {.lex_state = 179, .external_lex_state = 1}, + [10160] = {.lex_state = 536, .external_lex_state = 1}, + [10161] = {.lex_state = 536, .external_lex_state = 1}, + [10162] = {.lex_state = 536, .external_lex_state = 1}, + [10163] = {.lex_state = 536, .external_lex_state = 1}, + [10164] = {.lex_state = 98, .external_lex_state = 1}, + [10165] = {.lex_state = 547, .external_lex_state = 1}, + [10166] = {.lex_state = 179, .external_lex_state = 1}, + [10167] = {.lex_state = 536, .external_lex_state = 1}, + [10168] = {.lex_state = 160, .external_lex_state = 1}, + [10169] = {.lex_state = 160, .external_lex_state = 1}, + [10170] = {.lex_state = 143, .external_lex_state = 1}, + [10171] = {.lex_state = 184, .external_lex_state = 1}, + [10172] = {.lex_state = 536, .external_lex_state = 1}, + [10173] = {.lex_state = 536, .external_lex_state = 1}, + [10174] = {.lex_state = 536, .external_lex_state = 1}, + [10175] = {.lex_state = 536, .external_lex_state = 1}, + [10176] = {.lex_state = 536, .external_lex_state = 1}, + [10177] = {.lex_state = 184, .external_lex_state = 1}, + [10178] = {.lex_state = 536, .external_lex_state = 1}, + [10179] = {.lex_state = 536, .external_lex_state = 1}, + [10180] = {.lex_state = 160, .external_lex_state = 1}, + [10181] = {.lex_state = 536, .external_lex_state = 1}, + [10182] = {.lex_state = 160, .external_lex_state = 1}, + [10183] = {.lex_state = 180, .external_lex_state = 1}, + [10184] = {.lex_state = 131, .external_lex_state = 1}, + [10185] = {.lex_state = 96, .external_lex_state = 1}, + [10186] = {.lex_state = 160, .external_lex_state = 1}, + [10187] = {.lex_state = 536, .external_lex_state = 1}, + [10188] = {.lex_state = 536, .external_lex_state = 1}, + [10189] = {.lex_state = 536, .external_lex_state = 1}, + [10190] = {.lex_state = 536, .external_lex_state = 1}, + [10191] = {.lex_state = 536, .external_lex_state = 1}, + [10192] = {.lex_state = 536, .external_lex_state = 1}, + [10193] = {.lex_state = 536, .external_lex_state = 1}, + [10194] = {.lex_state = 536, .external_lex_state = 1}, + [10195] = {.lex_state = 536, .external_lex_state = 1}, + [10196] = {.lex_state = 96, .external_lex_state = 1}, + [10197] = {.lex_state = 102, .external_lex_state = 1}, + [10198] = {.lex_state = 102, .external_lex_state = 1}, + [10199] = {.lex_state = 160, .external_lex_state = 1}, + [10200] = {.lex_state = 102, .external_lex_state = 1}, + [10201] = {.lex_state = 102, .external_lex_state = 1}, + [10202] = {.lex_state = 96, .external_lex_state = 1}, + [10203] = {.lex_state = 102, .external_lex_state = 1}, + [10204] = {.lex_state = 102, .external_lex_state = 1}, + [10205] = {.lex_state = 102, .external_lex_state = 1}, + [10206] = {.lex_state = 102, .external_lex_state = 1}, + [10207] = {.lex_state = 184, .external_lex_state = 1}, + [10208] = {.lex_state = 102, .external_lex_state = 1}, + [10209] = {.lex_state = 131, .external_lex_state = 1}, + [10210] = {.lex_state = 102, .external_lex_state = 1}, + [10211] = {.lex_state = 102, .external_lex_state = 1}, + [10212] = {.lex_state = 102, .external_lex_state = 1}, + [10213] = {.lex_state = 102, .external_lex_state = 1}, + [10214] = {.lex_state = 102, .external_lex_state = 1}, + [10215] = {.lex_state = 102, .external_lex_state = 1}, + [10216] = {.lex_state = 102, .external_lex_state = 1}, + [10217] = {.lex_state = 102, .external_lex_state = 1}, + [10218] = {.lex_state = 96, .external_lex_state = 1}, + [10219] = {.lex_state = 179, .external_lex_state = 1}, + [10220] = {.lex_state = 102, .external_lex_state = 1}, + [10221] = {.lex_state = 102, .external_lex_state = 1}, + [10222] = {.lex_state = 102, .external_lex_state = 1}, + [10223] = {.lex_state = 102, .external_lex_state = 1}, + [10224] = {.lex_state = 102, .external_lex_state = 1}, + [10225] = {.lex_state = 102, .external_lex_state = 1}, + [10226] = {.lex_state = 92, .external_lex_state = 1}, + [10227] = {.lex_state = 102, .external_lex_state = 1}, + [10228] = {.lex_state = 179, .external_lex_state = 1}, + [10229] = {.lex_state = 102, .external_lex_state = 1}, + [10230] = {.lex_state = 102, .external_lex_state = 1}, + [10231] = {.lex_state = 102, .external_lex_state = 1}, + [10232] = {.lex_state = 102, .external_lex_state = 1}, + [10233] = {.lex_state = 102, .external_lex_state = 1}, + [10234] = {.lex_state = 102, .external_lex_state = 1}, + [10235] = {.lex_state = 102, .external_lex_state = 1}, + [10236] = {.lex_state = 102, .external_lex_state = 1}, + [10237] = {.lex_state = 102, .external_lex_state = 1}, + [10238] = {.lex_state = 102, .external_lex_state = 1}, + [10239] = {.lex_state = 102, .external_lex_state = 1}, + [10240] = {.lex_state = 102, .external_lex_state = 1}, + [10241] = {.lex_state = 102, .external_lex_state = 1}, + [10242] = {.lex_state = 102, .external_lex_state = 1}, + [10243] = {.lex_state = 102, .external_lex_state = 1}, + [10244] = {.lex_state = 102, .external_lex_state = 1}, + [10245] = {.lex_state = 102, .external_lex_state = 1}, + [10246] = {.lex_state = 102, .external_lex_state = 1}, + [10247] = {.lex_state = 102, .external_lex_state = 1}, + [10248] = {.lex_state = 102, .external_lex_state = 1}, + [10249] = {.lex_state = 102, .external_lex_state = 1}, + [10250] = {.lex_state = 102, .external_lex_state = 1}, + [10251] = {.lex_state = 102, .external_lex_state = 1}, + [10252] = {.lex_state = 102, .external_lex_state = 1}, + [10253] = {.lex_state = 102, .external_lex_state = 1}, + [10254] = {.lex_state = 96, .external_lex_state = 1}, + [10255] = {.lex_state = 102, .external_lex_state = 1}, + [10256] = {.lex_state = 102, .external_lex_state = 1}, + [10257] = {.lex_state = 102, .external_lex_state = 1}, + [10258] = {.lex_state = 102, .external_lex_state = 1}, + [10259] = {.lex_state = 536, .external_lex_state = 1}, + [10260] = {.lex_state = 536, .external_lex_state = 1}, + [10261] = {.lex_state = 536, .external_lex_state = 1}, + [10262] = {.lex_state = 536, .external_lex_state = 1}, + [10263] = {.lex_state = 536, .external_lex_state = 1}, + [10264] = {.lex_state = 102, .external_lex_state = 1}, + [10265] = {.lex_state = 536, .external_lex_state = 1}, + [10266] = {.lex_state = 536, .external_lex_state = 1}, + [10267] = {.lex_state = 536, .external_lex_state = 1}, + [10268] = {.lex_state = 536, .external_lex_state = 1}, + [10269] = {.lex_state = 179, .external_lex_state = 1}, + [10270] = {.lex_state = 536, .external_lex_state = 1}, + [10271] = {.lex_state = 536, .external_lex_state = 1}, + [10272] = {.lex_state = 567, .external_lex_state = 1}, + [10273] = {.lex_state = 567, .external_lex_state = 1}, + [10274] = {.lex_state = 567, .external_lex_state = 1}, + [10275] = {.lex_state = 536, .external_lex_state = 1}, + [10276] = {.lex_state = 536, .external_lex_state = 1}, + [10277] = {.lex_state = 536, .external_lex_state = 1}, + [10278] = {.lex_state = 536, .external_lex_state = 1}, + [10279] = {.lex_state = 536, .external_lex_state = 1}, + [10280] = {.lex_state = 536, .external_lex_state = 1}, + [10281] = {.lex_state = 160, .external_lex_state = 1}, + [10282] = {.lex_state = 160, .external_lex_state = 1}, + [10283] = {.lex_state = 160, .external_lex_state = 1}, + [10284] = {.lex_state = 536, .external_lex_state = 1}, + [10285] = {.lex_state = 536, .external_lex_state = 1}, + [10286] = {.lex_state = 536, .external_lex_state = 1}, + [10287] = {.lex_state = 537, .external_lex_state = 1}, + [10288] = {.lex_state = 536, .external_lex_state = 1}, + [10289] = {.lex_state = 547, .external_lex_state = 1}, + [10290] = {.lex_state = 535, .external_lex_state = 1}, + [10291] = {.lex_state = 96, .external_lex_state = 1}, + [10292] = {.lex_state = 537, .external_lex_state = 1}, + [10293] = {.lex_state = 96, .external_lex_state = 1}, + [10294] = {.lex_state = 104, .external_lex_state = 1}, + [10295] = {.lex_state = 96, .external_lex_state = 1}, + [10296] = {.lex_state = 96, .external_lex_state = 1}, + [10297] = {.lex_state = 96, .external_lex_state = 1}, + [10298] = {.lex_state = 160, .external_lex_state = 1}, + [10299] = {.lex_state = 535, .external_lex_state = 1}, + [10300] = {.lex_state = 91, .external_lex_state = 1}, + [10301] = {.lex_state = 96, .external_lex_state = 1}, + [10302] = {.lex_state = 102, .external_lex_state = 1}, + [10303] = {.lex_state = 96, .external_lex_state = 1}, + [10304] = {.lex_state = 108, .external_lex_state = 1}, + [10305] = {.lex_state = 535, .external_lex_state = 1}, + [10306] = {.lex_state = 553, .external_lex_state = 1}, + [10307] = {.lex_state = 96, .external_lex_state = 1}, + [10308] = {.lex_state = 91, .external_lex_state = 1}, + [10309] = {.lex_state = 146, .external_lex_state = 1}, + [10310] = {.lex_state = 170, .external_lex_state = 1}, + [10311] = {.lex_state = 147, .external_lex_state = 1}, + [10312] = {.lex_state = 96, .external_lex_state = 1}, + [10313] = {.lex_state = 104, .external_lex_state = 1}, + [10314] = {.lex_state = 98, .external_lex_state = 1}, + [10315] = {.lex_state = 96, .external_lex_state = 1}, + [10316] = {.lex_state = 93, .external_lex_state = 1}, + [10317] = {.lex_state = 104, .external_lex_state = 1}, + [10318] = {.lex_state = 535, .external_lex_state = 1}, + [10319] = {.lex_state = 96, .external_lex_state = 1}, + [10320] = {.lex_state = 546, .external_lex_state = 1}, + [10321] = {.lex_state = 160, .external_lex_state = 1}, + [10322] = {.lex_state = 99, .external_lex_state = 1}, + [10323] = {.lex_state = 173, .external_lex_state = 1}, + [10324] = {.lex_state = 160, .external_lex_state = 1}, + [10325] = {.lex_state = 146, .external_lex_state = 1}, + [10326] = {.lex_state = 173, .external_lex_state = 1}, + [10327] = {.lex_state = 170, .external_lex_state = 1}, + [10328] = {.lex_state = 96, .external_lex_state = 1}, + [10329] = {.lex_state = 97, .external_lex_state = 1}, + [10330] = {.lex_state = 131, .external_lex_state = 1}, + [10331] = {.lex_state = 160, .external_lex_state = 1}, + [10332] = {.lex_state = 98, .external_lex_state = 1}, + [10333] = {.lex_state = 173, .external_lex_state = 1}, + [10334] = {.lex_state = 131, .external_lex_state = 1}, + [10335] = {.lex_state = 546, .external_lex_state = 1}, + [10336] = {.lex_state = 96, .external_lex_state = 1}, + [10337] = {.lex_state = 98, .external_lex_state = 1}, + [10338] = {.lex_state = 192, .external_lex_state = 1}, + [10339] = {.lex_state = 131, .external_lex_state = 1}, + [10340] = {.lex_state = 173, .external_lex_state = 1}, + [10341] = {.lex_state = 131, .external_lex_state = 1}, + [10342] = {.lex_state = 185, .external_lex_state = 1}, + [10343] = {.lex_state = 185, .external_lex_state = 1}, + [10344] = {.lex_state = 185, .external_lex_state = 1}, + [10345] = {.lex_state = 185, .external_lex_state = 1}, + [10346] = {.lex_state = 185, .external_lex_state = 1}, + [10347] = {.lex_state = 185, .external_lex_state = 1}, + [10348] = {.lex_state = 185, .external_lex_state = 1}, + [10349] = {.lex_state = 185, .external_lex_state = 1}, + [10350] = {.lex_state = 185, .external_lex_state = 1}, + [10351] = {.lex_state = 185, .external_lex_state = 1}, + [10352] = {.lex_state = 185, .external_lex_state = 1}, + [10353] = {.lex_state = 185, .external_lex_state = 1}, + [10354] = {.lex_state = 185, .external_lex_state = 1}, + [10355] = {.lex_state = 535, .external_lex_state = 1}, + [10356] = {.lex_state = 100, .external_lex_state = 1}, + [10357] = {.lex_state = 131, .external_lex_state = 1}, + [10358] = {.lex_state = 92, .external_lex_state = 1}, + [10359] = {.lex_state = 102, .external_lex_state = 1}, + [10360] = {.lex_state = 166, .external_lex_state = 1}, + [10361] = {.lex_state = 71, .external_lex_state = 1}, + [10362] = {.lex_state = 71, .external_lex_state = 1}, + [10363] = {.lex_state = 95, .external_lex_state = 1}, + [10364] = {.lex_state = 73, .external_lex_state = 1}, + [10365] = {.lex_state = 71, .external_lex_state = 1}, + [10366] = {.lex_state = 71, .external_lex_state = 1}, + [10367] = {.lex_state = 131, .external_lex_state = 1}, + [10368] = {.lex_state = 131, .external_lex_state = 1}, + [10369] = {.lex_state = 131, .external_lex_state = 1}, + [10370] = {.lex_state = 71, .external_lex_state = 1}, + [10371] = {.lex_state = 71, .external_lex_state = 1}, + [10372] = {.lex_state = 71, .external_lex_state = 1}, + [10373] = {.lex_state = 71, .external_lex_state = 1}, + [10374] = {.lex_state = 71, .external_lex_state = 1}, + [10375] = {.lex_state = 131, .external_lex_state = 1}, + [10376] = {.lex_state = 92, .external_lex_state = 1}, + [10377] = {.lex_state = 174, .external_lex_state = 1}, + [10378] = {.lex_state = 535, .external_lex_state = 1}, + [10379] = {.lex_state = 131, .external_lex_state = 1}, + [10380] = {.lex_state = 535, .external_lex_state = 1}, + [10381] = {.lex_state = 71, .external_lex_state = 1}, + [10382] = {.lex_state = 71, .external_lex_state = 1}, + [10383] = {.lex_state = 71, .external_lex_state = 1}, + [10384] = {.lex_state = 71, .external_lex_state = 1}, + [10385] = {.lex_state = 71, .external_lex_state = 1}, + [10386] = {.lex_state = 131, .external_lex_state = 1}, + [10387] = {.lex_state = 535, .external_lex_state = 1}, + [10388] = {.lex_state = 71, .external_lex_state = 1}, + [10389] = {.lex_state = 71, .external_lex_state = 1}, + [10390] = {.lex_state = 166, .external_lex_state = 1}, + [10391] = {.lex_state = 166, .external_lex_state = 1}, + [10392] = {.lex_state = 166, .external_lex_state = 1}, + [10393] = {.lex_state = 71, .external_lex_state = 1}, + [10394] = {.lex_state = 71, .external_lex_state = 1}, + [10395] = {.lex_state = 92, .external_lex_state = 1}, + [10396] = {.lex_state = 71, .external_lex_state = 1}, + [10397] = {.lex_state = 71, .external_lex_state = 1}, + [10398] = {.lex_state = 131, .external_lex_state = 1}, + [10399] = {.lex_state = 535, .external_lex_state = 1}, + [10400] = {.lex_state = 71, .external_lex_state = 1}, + [10401] = {.lex_state = 71, .external_lex_state = 1}, + [10402] = {.lex_state = 131, .external_lex_state = 1}, + [10403] = {.lex_state = 131, .external_lex_state = 1}, + [10404] = {.lex_state = 131, .external_lex_state = 1}, + [10405] = {.lex_state = 546, .external_lex_state = 1}, + [10406] = {.lex_state = 102, .external_lex_state = 1}, + [10407] = {.lex_state = 71, .external_lex_state = 1}, + [10408] = {.lex_state = 131, .external_lex_state = 1}, + [10409] = {.lex_state = 71, .external_lex_state = 1}, + [10410] = {.lex_state = 71, .external_lex_state = 1}, + [10411] = {.lex_state = 71, .external_lex_state = 1}, + [10412] = {.lex_state = 71, .external_lex_state = 1}, + [10413] = {.lex_state = 131, .external_lex_state = 1}, + [10414] = {.lex_state = 71, .external_lex_state = 1}, + [10415] = {.lex_state = 131, .external_lex_state = 1}, + [10416] = {.lex_state = 102, .external_lex_state = 1}, + [10417] = {.lex_state = 170, .external_lex_state = 1}, + [10418] = {.lex_state = 146, .external_lex_state = 1}, + [10419] = {.lex_state = 170, .external_lex_state = 1}, + [10420] = {.lex_state = 170, .external_lex_state = 1}, + [10421] = {.lex_state = 170, .external_lex_state = 1}, + [10422] = {.lex_state = 71, .external_lex_state = 1}, + [10423] = {.lex_state = 131, .external_lex_state = 1}, + [10424] = {.lex_state = 71, .external_lex_state = 1}, + [10425] = {.lex_state = 71, .external_lex_state = 1}, + [10426] = {.lex_state = 71, .external_lex_state = 1}, + [10427] = {.lex_state = 71, .external_lex_state = 1}, + [10428] = {.lex_state = 71, .external_lex_state = 1}, + [10429] = {.lex_state = 71, .external_lex_state = 1}, + [10430] = {.lex_state = 131, .external_lex_state = 1}, + [10431] = {.lex_state = 131, .external_lex_state = 1}, + [10432] = {.lex_state = 71, .external_lex_state = 1}, + [10433] = {.lex_state = 71, .external_lex_state = 1}, + [10434] = {.lex_state = 170, .external_lex_state = 1}, + [10435] = {.lex_state = 71, .external_lex_state = 1}, + [10436] = {.lex_state = 131, .external_lex_state = 1}, + [10437] = {.lex_state = 170, .external_lex_state = 1}, + [10438] = {.lex_state = 71, .external_lex_state = 1}, + [10439] = {.lex_state = 71, .external_lex_state = 1}, + [10440] = {.lex_state = 140, .external_lex_state = 1}, + [10441] = {.lex_state = 146, .external_lex_state = 1}, + [10442] = {.lex_state = 170, .external_lex_state = 1}, + [10443] = {.lex_state = 71, .external_lex_state = 1}, + [10444] = {.lex_state = 170, .external_lex_state = 1}, + [10445] = {.lex_state = 131, .external_lex_state = 1}, + [10446] = {.lex_state = 131, .external_lex_state = 1}, + [10447] = {.lex_state = 71, .external_lex_state = 1}, + [10448] = {.lex_state = 71, .external_lex_state = 1}, + [10449] = {.lex_state = 71, .external_lex_state = 1}, + [10450] = {.lex_state = 71, .external_lex_state = 1}, + [10451] = {.lex_state = 71, .external_lex_state = 1}, + [10452] = {.lex_state = 71, .external_lex_state = 1}, + [10453] = {.lex_state = 71, .external_lex_state = 1}, + [10454] = {.lex_state = 71, .external_lex_state = 1}, + [10455] = {.lex_state = 71, .external_lex_state = 1}, + [10456] = {.lex_state = 71, .external_lex_state = 1}, + [10457] = {.lex_state = 71, .external_lex_state = 1}, + [10458] = {.lex_state = 131, .external_lex_state = 1}, + [10459] = {.lex_state = 131, .external_lex_state = 1}, + [10460] = {.lex_state = 71, .external_lex_state = 1}, + [10461] = {.lex_state = 95, .external_lex_state = 1}, + [10462] = {.lex_state = 131, .external_lex_state = 1}, + [10463] = {.lex_state = 131, .external_lex_state = 1}, + [10464] = {.lex_state = 535, .external_lex_state = 1}, + [10465] = {.lex_state = 96, .external_lex_state = 1}, + [10466] = {.lex_state = 170, .external_lex_state = 1}, + [10467] = {.lex_state = 131, .external_lex_state = 1}, + [10468] = {.lex_state = 131, .external_lex_state = 1}, + [10469] = {.lex_state = 72, .external_lex_state = 1}, + [10470] = {.lex_state = 146, .external_lex_state = 1}, + [10471] = {.lex_state = 72, .external_lex_state = 1}, + [10472] = {.lex_state = 188, .external_lex_state = 1}, + [10473] = {.lex_state = 188, .external_lex_state = 1}, + [10474] = {.lex_state = 188, .external_lex_state = 1}, + [10475] = {.lex_state = 536, .external_lex_state = 1}, + [10476] = {.lex_state = 188, .external_lex_state = 1}, + [10477] = {.lex_state = 188, .external_lex_state = 1}, + [10478] = {.lex_state = 535, .external_lex_state = 1}, + [10479] = {.lex_state = 188, .external_lex_state = 1}, + [10480] = {.lex_state = 188, .external_lex_state = 1}, + [10481] = {.lex_state = 188, .external_lex_state = 1}, + [10482] = {.lex_state = 131, .external_lex_state = 1}, + [10483] = {.lex_state = 131, .external_lex_state = 1}, + [10484] = {.lex_state = 143, .external_lex_state = 1}, + [10485] = {.lex_state = 188, .external_lex_state = 1}, + [10486] = {.lex_state = 143, .external_lex_state = 1}, + [10487] = {.lex_state = 188, .external_lex_state = 1}, + [10488] = {.lex_state = 188, .external_lex_state = 1}, + [10489] = {.lex_state = 188, .external_lex_state = 1}, + [10490] = {.lex_state = 72, .external_lex_state = 1}, + [10491] = {.lex_state = 143, .external_lex_state = 1}, + [10492] = {.lex_state = 72, .external_lex_state = 1}, + [10493] = {.lex_state = 170, .external_lex_state = 1}, + [10494] = {.lex_state = 131, .external_lex_state = 1}, + [10495] = {.lex_state = 131, .external_lex_state = 1}, + [10496] = {.lex_state = 188, .external_lex_state = 1}, + [10497] = {.lex_state = 189, .external_lex_state = 1}, + [10498] = {.lex_state = 536, .external_lex_state = 1}, + [10499] = {.lex_state = 96, .external_lex_state = 1}, + [10500] = {.lex_state = 536, .external_lex_state = 1}, + [10501] = {.lex_state = 189, .external_lex_state = 1}, + [10502] = {.lex_state = 170, .external_lex_state = 1}, + [10503] = {.lex_state = 170, .external_lex_state = 1}, + [10504] = {.lex_state = 189, .external_lex_state = 1}, + [10505] = {.lex_state = 71, .external_lex_state = 1}, + [10506] = {.lex_state = 72, .external_lex_state = 1}, + [10507] = {.lex_state = 191, .external_lex_state = 1}, + [10508] = {.lex_state = 72, .external_lex_state = 1}, + [10509] = {.lex_state = 191, .external_lex_state = 1}, + [10510] = {.lex_state = 191, .external_lex_state = 1}, + [10511] = {.lex_state = 96, .external_lex_state = 1}, + [10512] = {.lex_state = 72, .external_lex_state = 1}, + [10513] = {.lex_state = 72, .external_lex_state = 1}, + [10514] = {.lex_state = 166, .external_lex_state = 1}, + [10515] = {.lex_state = 131, .external_lex_state = 1}, + [10516] = {.lex_state = 131, .external_lex_state = 1}, + [10517] = {.lex_state = 72, .external_lex_state = 1}, + [10518] = {.lex_state = 166, .external_lex_state = 1}, + [10519] = {.lex_state = 535, .external_lex_state = 1}, + [10520] = {.lex_state = 191, .external_lex_state = 1}, + [10521] = {.lex_state = 191, .external_lex_state = 1}, + [10522] = {.lex_state = 131, .external_lex_state = 1}, + [10523] = {.lex_state = 131, .external_lex_state = 1}, + [10524] = {.lex_state = 72, .external_lex_state = 1}, + [10525] = {.lex_state = 72, .external_lex_state = 1}, + [10526] = {.lex_state = 72, .external_lex_state = 1}, + [10527] = {.lex_state = 72, .external_lex_state = 1}, + [10528] = {.lex_state = 170, .external_lex_state = 1}, + [10529] = {.lex_state = 189, .external_lex_state = 1}, + [10530] = {.lex_state = 189, .external_lex_state = 1}, + [10531] = {.lex_state = 189, .external_lex_state = 1}, + [10532] = {.lex_state = 191, .external_lex_state = 1}, + [10533] = {.lex_state = 191, .external_lex_state = 1}, + [10534] = {.lex_state = 72, .external_lex_state = 1}, + [10535] = {.lex_state = 72, .external_lex_state = 1}, + [10536] = {.lex_state = 72, .external_lex_state = 1}, + [10537] = {.lex_state = 166, .external_lex_state = 1}, + [10538] = {.lex_state = 166, .external_lex_state = 1}, + [10539] = {.lex_state = 72, .external_lex_state = 1}, + [10540] = {.lex_state = 535, .external_lex_state = 1}, + [10541] = {.lex_state = 131, .external_lex_state = 1}, + [10542] = {.lex_state = 131, .external_lex_state = 1}, + [10543] = {.lex_state = 191, .external_lex_state = 1}, + [10544] = {.lex_state = 72, .external_lex_state = 1}, + [10545] = {.lex_state = 536, .external_lex_state = 1}, + [10546] = {.lex_state = 72, .external_lex_state = 1}, + [10547] = {.lex_state = 72, .external_lex_state = 1}, + [10548] = {.lex_state = 72, .external_lex_state = 1}, + [10549] = {.lex_state = 72, .external_lex_state = 1}, + [10550] = {.lex_state = 72, .external_lex_state = 1}, + [10551] = {.lex_state = 191, .external_lex_state = 1}, + [10552] = {.lex_state = 72, .external_lex_state = 1}, + [10553] = {.lex_state = 191, .external_lex_state = 1}, + [10554] = {.lex_state = 191, .external_lex_state = 1}, + [10555] = {.lex_state = 191, .external_lex_state = 1}, + [10556] = {.lex_state = 189, .external_lex_state = 1}, + [10557] = {.lex_state = 166, .external_lex_state = 1}, + [10558] = {.lex_state = 72, .external_lex_state = 1}, + [10559] = {.lex_state = 72, .external_lex_state = 1}, + [10560] = {.lex_state = 72, .external_lex_state = 1}, + [10561] = {.lex_state = 72, .external_lex_state = 1}, + [10562] = {.lex_state = 72, .external_lex_state = 1}, + [10563] = {.lex_state = 72, .external_lex_state = 1}, + [10564] = {.lex_state = 72, .external_lex_state = 1}, + [10565] = {.lex_state = 72, .external_lex_state = 1}, + [10566] = {.lex_state = 72, .external_lex_state = 1}, + [10567] = {.lex_state = 72, .external_lex_state = 1}, + [10568] = {.lex_state = 72, .external_lex_state = 1}, + [10569] = {.lex_state = 191, .external_lex_state = 1}, + [10570] = {.lex_state = 72, .external_lex_state = 1}, + [10571] = {.lex_state = 72, .external_lex_state = 1}, + [10572] = {.lex_state = 189, .external_lex_state = 1}, + [10573] = {.lex_state = 72, .external_lex_state = 1}, + [10574] = {.lex_state = 72, .external_lex_state = 1}, + [10575] = {.lex_state = 189, .external_lex_state = 1}, + [10576] = {.lex_state = 72, .external_lex_state = 1}, + [10577] = {.lex_state = 72, .external_lex_state = 1}, + [10578] = {.lex_state = 72, .external_lex_state = 1}, + [10579] = {.lex_state = 72, .external_lex_state = 1}, + [10580] = {.lex_state = 72, .external_lex_state = 1}, + [10581] = {.lex_state = 189, .external_lex_state = 1}, + [10582] = {.lex_state = 189, .external_lex_state = 1}, + [10583] = {.lex_state = 188, .external_lex_state = 1}, + [10584] = {.lex_state = 146, .external_lex_state = 1}, + [10585] = {.lex_state = 72, .external_lex_state = 1}, + [10586] = {.lex_state = 72, .external_lex_state = 1}, + [10587] = {.lex_state = 72, .external_lex_state = 1}, + [10588] = {.lex_state = 72, .external_lex_state = 1}, + [10589] = {.lex_state = 72, .external_lex_state = 1}, + [10590] = {.lex_state = 72, .external_lex_state = 1}, + [10591] = {.lex_state = 547, .external_lex_state = 1}, + [10592] = {.lex_state = 189, .external_lex_state = 1}, + [10593] = {.lex_state = 188, .external_lex_state = 1}, + [10594] = {.lex_state = 72, .external_lex_state = 1}, + [10595] = {.lex_state = 72, .external_lex_state = 1}, + [10596] = {.lex_state = 72, .external_lex_state = 1}, + [10597] = {.lex_state = 535, .external_lex_state = 1}, + [10598] = {.lex_state = 536, .external_lex_state = 1}, + [10599] = {.lex_state = 535, .external_lex_state = 1}, + [10600] = {.lex_state = 72, .external_lex_state = 1}, + [10601] = {.lex_state = 535, .external_lex_state = 1}, + [10602] = {.lex_state = 71, .external_lex_state = 1}, + [10603] = {.lex_state = 535, .external_lex_state = 1}, + [10604] = {.lex_state = 535, .external_lex_state = 1}, + [10605] = {.lex_state = 189, .external_lex_state = 1}, + [10606] = {.lex_state = 535, .external_lex_state = 1}, + [10607] = {.lex_state = 535, .external_lex_state = 1}, + [10608] = {.lex_state = 535, .external_lex_state = 1}, + [10609] = {.lex_state = 535, .external_lex_state = 1}, + [10610] = {.lex_state = 546, .external_lex_state = 1}, + [10611] = {.lex_state = 91, .external_lex_state = 1}, + [10612] = {.lex_state = 91, .external_lex_state = 1}, + [10613] = {.lex_state = 91, .external_lex_state = 1}, + [10614] = {.lex_state = 91, .external_lex_state = 1}, + [10615] = {.lex_state = 91, .external_lex_state = 1}, + [10616] = {.lex_state = 535, .external_lex_state = 1}, + [10617] = {.lex_state = 91, .external_lex_state = 1}, + [10618] = {.lex_state = 91, .external_lex_state = 1}, + [10619] = {.lex_state = 185, .external_lex_state = 1}, + [10620] = {.lex_state = 91, .external_lex_state = 1}, + [10621] = {.lex_state = 535, .external_lex_state = 1}, + [10622] = {.lex_state = 146, .external_lex_state = 1}, + [10623] = {.lex_state = 185, .external_lex_state = 1}, + [10624] = {.lex_state = 567, .external_lex_state = 1}, + [10625] = {.lex_state = 567, .external_lex_state = 1}, + [10626] = {.lex_state = 546, .external_lex_state = 1}, + [10627] = {.lex_state = 188, .external_lex_state = 1}, + [10628] = {.lex_state = 96, .external_lex_state = 1}, + [10629] = {.lex_state = 166, .external_lex_state = 1}, + [10630] = {.lex_state = 95, .external_lex_state = 1}, + [10631] = {.lex_state = 91, .external_lex_state = 1}, + [10632] = {.lex_state = 96, .external_lex_state = 1}, + [10633] = {.lex_state = 91, .external_lex_state = 1}, + [10634] = {.lex_state = 166, .external_lex_state = 1}, + [10635] = {.lex_state = 91, .external_lex_state = 1}, + [10636] = {.lex_state = 91, .external_lex_state = 1}, + [10637] = {.lex_state = 91, .external_lex_state = 1}, + [10638] = {.lex_state = 91, .external_lex_state = 1}, + [10639] = {.lex_state = 91, .external_lex_state = 1}, + [10640] = {.lex_state = 91, .external_lex_state = 1}, + [10641] = {.lex_state = 91, .external_lex_state = 1}, + [10642] = {.lex_state = 91, .external_lex_state = 1}, + [10643] = {.lex_state = 191, .external_lex_state = 1}, + [10644] = {.lex_state = 91, .external_lex_state = 1}, + [10645] = {.lex_state = 91, .external_lex_state = 1}, + [10646] = {.lex_state = 91, .external_lex_state = 1}, + [10647] = {.lex_state = 91, .external_lex_state = 1}, + [10648] = {.lex_state = 91, .external_lex_state = 1}, + [10649] = {.lex_state = 91, .external_lex_state = 1}, + [10650] = {.lex_state = 91, .external_lex_state = 1}, + [10651] = {.lex_state = 96, .external_lex_state = 1}, + [10652] = {.lex_state = 146, .external_lex_state = 1}, + [10653] = {.lex_state = 190, .external_lex_state = 1}, + [10654] = {.lex_state = 191, .external_lex_state = 1}, + [10655] = {.lex_state = 91, .external_lex_state = 1}, + [10656] = {.lex_state = 567, .external_lex_state = 1}, + [10657] = {.lex_state = 157, .external_lex_state = 1}, + [10658] = {.lex_state = 91, .external_lex_state = 1}, + [10659] = {.lex_state = 91, .external_lex_state = 1}, + [10660] = {.lex_state = 91, .external_lex_state = 1}, + [10661] = {.lex_state = 166, .external_lex_state = 1}, + [10662] = {.lex_state = 166, .external_lex_state = 1}, + [10663] = {.lex_state = 103, .external_lex_state = 1}, + [10664] = {.lex_state = 185, .external_lex_state = 1}, + [10665] = {.lex_state = 546, .external_lex_state = 1}, + [10666] = {.lex_state = 96, .external_lex_state = 1}, + [10667] = {.lex_state = 96, .external_lex_state = 1}, + [10668] = {.lex_state = 91, .external_lex_state = 1}, + [10669] = {.lex_state = 91, .external_lex_state = 1}, + [10670] = {.lex_state = 535, .external_lex_state = 1}, + [10671] = {.lex_state = 535, .external_lex_state = 1}, + [10672] = {.lex_state = 146, .external_lex_state = 1}, + [10673] = {.lex_state = 91, .external_lex_state = 1}, + [10674] = {.lex_state = 546, .external_lex_state = 1}, + [10675] = {.lex_state = 166, .external_lex_state = 1}, + [10676] = {.lex_state = 95, .external_lex_state = 1}, + [10677] = {.lex_state = 91, .external_lex_state = 1}, + [10678] = {.lex_state = 91, .external_lex_state = 1}, + [10679] = {.lex_state = 189, .external_lex_state = 1}, + [10680] = {.lex_state = 189, .external_lex_state = 1}, + [10681] = {.lex_state = 146, .external_lex_state = 1}, + [10682] = {.lex_state = 535, .external_lex_state = 1}, + [10683] = {.lex_state = 162, .external_lex_state = 1}, + [10684] = {.lex_state = 536, .external_lex_state = 1}, + [10685] = {.lex_state = 91, .external_lex_state = 1}, + [10686] = {.lex_state = 173, .external_lex_state = 1}, + [10687] = {.lex_state = 96, .external_lex_state = 1}, + [10688] = {.lex_state = 96, .external_lex_state = 1}, + [10689] = {.lex_state = 91, .external_lex_state = 1}, + [10690] = {.lex_state = 91, .external_lex_state = 1}, + [10691] = {.lex_state = 546, .external_lex_state = 1}, + [10692] = {.lex_state = 536, .external_lex_state = 1}, + [10693] = {.lex_state = 186, .external_lex_state = 1}, + [10694] = {.lex_state = 91, .external_lex_state = 1}, + [10695] = {.lex_state = 91, .external_lex_state = 1}, + [10696] = {.lex_state = 161, .external_lex_state = 1}, + [10697] = {.lex_state = 91, .external_lex_state = 1}, + [10698] = {.lex_state = 161, .external_lex_state = 1}, + [10699] = {.lex_state = 173, .external_lex_state = 1}, + [10700] = {.lex_state = 161, .external_lex_state = 1}, + [10701] = {.lex_state = 166, .external_lex_state = 1}, + [10702] = {.lex_state = 96, .external_lex_state = 1}, + [10703] = {.lex_state = 189, .external_lex_state = 1}, + [10704] = {.lex_state = 161, .external_lex_state = 1}, + [10705] = {.lex_state = 161, .external_lex_state = 1}, + [10706] = {.lex_state = 546, .external_lex_state = 1}, + [10707] = {.lex_state = 91, .external_lex_state = 1}, + [10708] = {.lex_state = 91, .external_lex_state = 1}, + [10709] = {.lex_state = 106, .external_lex_state = 1}, + [10710] = {.lex_state = 91, .external_lex_state = 1}, + [10711] = {.lex_state = 535, .external_lex_state = 1}, + [10712] = {.lex_state = 218, .external_lex_state = 1}, + [10713] = {.lex_state = 91, .external_lex_state = 1}, + [10714] = {.lex_state = 91, .external_lex_state = 1}, + [10715] = {.lex_state = 535, .external_lex_state = 1}, + [10716] = {.lex_state = 535, .external_lex_state = 1}, + [10717] = {.lex_state = 96, .external_lex_state = 1}, + [10718] = {.lex_state = 161, .external_lex_state = 1}, + [10719] = {.lex_state = 91, .external_lex_state = 1}, + [10720] = {.lex_state = 91, .external_lex_state = 1}, + [10721] = {.lex_state = 535, .external_lex_state = 1}, + [10722] = {.lex_state = 161, .external_lex_state = 1}, + [10723] = {.lex_state = 146, .external_lex_state = 1}, + [10724] = {.lex_state = 91, .external_lex_state = 1}, + [10725] = {.lex_state = 96, .external_lex_state = 1}, + [10726] = {.lex_state = 535, .external_lex_state = 1}, + [10727] = {.lex_state = 173, .external_lex_state = 1}, + [10728] = {.lex_state = 535, .external_lex_state = 1}, + [10729] = {.lex_state = 535, .external_lex_state = 1}, + [10730] = {.lex_state = 535, .external_lex_state = 1}, + [10731] = {.lex_state = 535, .external_lex_state = 1}, + [10732] = {.lex_state = 535, .external_lex_state = 1}, + [10733] = {.lex_state = 535, .external_lex_state = 1}, + [10734] = {.lex_state = 91, .external_lex_state = 1}, + [10735] = {.lex_state = 91, .external_lex_state = 1}, + [10736] = {.lex_state = 161, .external_lex_state = 1}, + [10737] = {.lex_state = 96, .external_lex_state = 1}, + [10738] = {.lex_state = 535, .external_lex_state = 1}, + [10739] = {.lex_state = 91, .external_lex_state = 1}, + [10740] = {.lex_state = 146, .external_lex_state = 1}, + [10741] = {.lex_state = 146, .external_lex_state = 1}, + [10742] = {.lex_state = 146, .external_lex_state = 1}, + [10743] = {.lex_state = 546, .external_lex_state = 1}, + [10744] = {.lex_state = 161, .external_lex_state = 1}, + [10745] = {.lex_state = 91, .external_lex_state = 1}, + [10746] = {.lex_state = 146, .external_lex_state = 1}, + [10747] = {.lex_state = 91, .external_lex_state = 1}, + [10748] = {.lex_state = 161, .external_lex_state = 1}, + [10749] = {.lex_state = 161, .external_lex_state = 1}, + [10750] = {.lex_state = 161, .external_lex_state = 1}, + [10751] = {.lex_state = 173, .external_lex_state = 1}, + [10752] = {.lex_state = 96, .external_lex_state = 1}, + [10753] = {.lex_state = 535, .external_lex_state = 1}, + [10754] = {.lex_state = 535, .external_lex_state = 1}, + [10755] = {.lex_state = 536, .external_lex_state = 1}, + [10756] = {.lex_state = 535, .external_lex_state = 1}, + [10757] = {.lex_state = 91, .external_lex_state = 1}, + [10758] = {.lex_state = 71, .external_lex_state = 1}, + [10759] = {.lex_state = 535, .external_lex_state = 1}, + [10760] = {.lex_state = 173, .external_lex_state = 1}, + [10761] = {.lex_state = 535, .external_lex_state = 1}, + [10762] = {.lex_state = 535, .external_lex_state = 1}, + [10763] = {.lex_state = 546, .external_lex_state = 1}, + [10764] = {.lex_state = 535, .external_lex_state = 1}, + [10765] = {.lex_state = 96, .external_lex_state = 1}, + [10766] = {.lex_state = 535, .external_lex_state = 1}, + [10767] = {.lex_state = 546, .external_lex_state = 1}, + [10768] = {.lex_state = 161, .external_lex_state = 1}, + [10769] = {.lex_state = 96, .external_lex_state = 1}, + [10770] = {.lex_state = 535, .external_lex_state = 1}, + [10771] = {.lex_state = 166, .external_lex_state = 1}, + [10772] = {.lex_state = 96, .external_lex_state = 1}, + [10773] = {.lex_state = 96, .external_lex_state = 1}, + [10774] = {.lex_state = 96, .external_lex_state = 1}, + [10775] = {.lex_state = 96, .external_lex_state = 1}, + [10776] = {.lex_state = 546, .external_lex_state = 1}, + [10777] = {.lex_state = 96, .external_lex_state = 1}, + [10778] = {.lex_state = 536, .external_lex_state = 1}, + [10779] = {.lex_state = 104, .external_lex_state = 1}, + [10780] = {.lex_state = 92, .external_lex_state = 1}, + [10781] = {.lex_state = 96, .external_lex_state = 1}, + [10782] = {.lex_state = 535, .external_lex_state = 1}, + [10783] = {.lex_state = 535, .external_lex_state = 1}, + [10784] = {.lex_state = 535, .external_lex_state = 1}, + [10785] = {.lex_state = 535, .external_lex_state = 1}, + [10786] = {.lex_state = 535, .external_lex_state = 1}, + [10787] = {.lex_state = 536, .external_lex_state = 1}, + [10788] = {.lex_state = 546, .external_lex_state = 1}, + [10789] = {.lex_state = 146, .external_lex_state = 1}, + [10790] = {.lex_state = 92, .external_lex_state = 1}, + [10791] = {.lex_state = 96, .external_lex_state = 1}, + [10792] = {.lex_state = 96, .external_lex_state = 1}, + [10793] = {.lex_state = 92, .external_lex_state = 1}, + [10794] = {.lex_state = 95, .external_lex_state = 1}, + [10795] = {.lex_state = 181, .external_lex_state = 1}, + [10796] = {.lex_state = 172, .external_lex_state = 1}, + [10797] = {.lex_state = 172, .external_lex_state = 1}, + [10798] = {.lex_state = 172, .external_lex_state = 1}, + [10799] = {.lex_state = 217, .external_lex_state = 1}, + [10800] = {.lex_state = 143, .external_lex_state = 1}, + [10801] = {.lex_state = 535, .external_lex_state = 1}, + [10802] = {.lex_state = 92, .external_lex_state = 1}, + [10803] = {.lex_state = 91, .external_lex_state = 1}, + [10804] = {.lex_state = 143, .external_lex_state = 1}, + [10805] = {.lex_state = 96, .external_lex_state = 1}, + [10806] = {.lex_state = 96, .external_lex_state = 1}, + [10807] = {.lex_state = 72, .external_lex_state = 1}, + [10808] = {.lex_state = 172, .external_lex_state = 1}, + [10809] = {.lex_state = 96, .external_lex_state = 1}, + [10810] = {.lex_state = 172, .external_lex_state = 1}, + [10811] = {.lex_state = 71, .external_lex_state = 1}, + [10812] = {.lex_state = 92, .external_lex_state = 1}, + [10813] = {.lex_state = 92, .external_lex_state = 1}, + [10814] = {.lex_state = 72, .external_lex_state = 1}, + [10815] = {.lex_state = 143, .external_lex_state = 1}, + [10816] = {.lex_state = 143, .external_lex_state = 1}, + [10817] = {.lex_state = 143, .external_lex_state = 1}, + [10818] = {.lex_state = 92, .external_lex_state = 1}, + [10819] = {.lex_state = 92, .external_lex_state = 1}, + [10820] = {.lex_state = 546, .external_lex_state = 1}, + [10821] = {.lex_state = 71, .external_lex_state = 1}, + [10822] = {.lex_state = 172, .external_lex_state = 1}, + [10823] = {.lex_state = 191, .external_lex_state = 1}, + [10824] = {.lex_state = 172, .external_lex_state = 1}, + [10825] = {.lex_state = 143, .external_lex_state = 1}, + [10826] = {.lex_state = 143, .external_lex_state = 1}, + [10827] = {.lex_state = 92, .external_lex_state = 1}, + [10828] = {.lex_state = 172, .external_lex_state = 1}, + [10829] = {.lex_state = 143, .external_lex_state = 1}, + [10830] = {.lex_state = 537, .external_lex_state = 1}, + [10831] = {.lex_state = 92, .external_lex_state = 1}, + [10832] = {.lex_state = 143, .external_lex_state = 1}, + [10833] = {.lex_state = 92, .external_lex_state = 1}, + [10834] = {.lex_state = 172, .external_lex_state = 1}, + [10835] = {.lex_state = 96, .external_lex_state = 1}, + [10836] = {.lex_state = 92, .external_lex_state = 1}, + [10837] = {.lex_state = 172, .external_lex_state = 1}, + [10838] = {.lex_state = 172, .external_lex_state = 1}, + [10839] = {.lex_state = 92, .external_lex_state = 1}, + [10840] = {.lex_state = 172, .external_lex_state = 1}, + [10841] = {.lex_state = 96, .external_lex_state = 1}, + [10842] = {.lex_state = 92, .external_lex_state = 1}, + [10843] = {.lex_state = 140, .external_lex_state = 1}, + [10844] = {.lex_state = 92, .external_lex_state = 1}, + [10845] = {.lex_state = 72, .external_lex_state = 1}, + [10846] = {.lex_state = 92, .external_lex_state = 1}, + [10847] = {.lex_state = 535, .external_lex_state = 1}, + [10848] = {.lex_state = 92, .external_lex_state = 1}, + [10849] = {.lex_state = 96, .external_lex_state = 1}, + [10850] = {.lex_state = 173, .external_lex_state = 1}, + [10851] = {.lex_state = 143, .external_lex_state = 1}, + [10852] = {.lex_state = 92, .external_lex_state = 1}, + [10853] = {.lex_state = 172, .external_lex_state = 1}, + [10854] = {.lex_state = 92, .external_lex_state = 1}, + [10855] = {.lex_state = 170, .external_lex_state = 1}, + [10856] = {.lex_state = 140, .external_lex_state = 1}, + [10857] = {.lex_state = 92, .external_lex_state = 1}, + [10858] = {.lex_state = 535, .external_lex_state = 1}, + [10859] = {.lex_state = 72, .external_lex_state = 1}, + [10860] = {.lex_state = 92, .external_lex_state = 1}, + [10861] = {.lex_state = 140, .external_lex_state = 1}, + [10862] = {.lex_state = 92, .external_lex_state = 1}, + [10863] = {.lex_state = 92, .external_lex_state = 1}, + [10864] = {.lex_state = 92, .external_lex_state = 1}, + [10865] = {.lex_state = 546, .external_lex_state = 1}, + [10866] = {.lex_state = 140, .external_lex_state = 1}, + [10867] = {.lex_state = 92, .external_lex_state = 1}, + [10868] = {.lex_state = 547, .external_lex_state = 1}, + [10869] = {.lex_state = 92, .external_lex_state = 1}, + [10870] = {.lex_state = 140, .external_lex_state = 1}, + [10871] = {.lex_state = 96, .external_lex_state = 1}, + [10872] = {.lex_state = 92, .external_lex_state = 1}, + [10873] = {.lex_state = 92, .external_lex_state = 1}, + [10874] = {.lex_state = 143, .external_lex_state = 1}, + [10875] = {.lex_state = 536, .external_lex_state = 1}, + [10876] = {.lex_state = 92, .external_lex_state = 1}, + [10877] = {.lex_state = 161, .external_lex_state = 1}, + [10878] = {.lex_state = 92, .external_lex_state = 1}, + [10879] = {.lex_state = 140, .external_lex_state = 1}, + [10880] = {.lex_state = 92, .external_lex_state = 1}, + [10881] = {.lex_state = 140, .external_lex_state = 1}, + [10882] = {.lex_state = 92, .external_lex_state = 1}, + [10883] = {.lex_state = 140, .external_lex_state = 1}, + [10884] = {.lex_state = 140, .external_lex_state = 1}, + [10885] = {.lex_state = 92, .external_lex_state = 1}, + [10886] = {.lex_state = 96, .external_lex_state = 1}, + [10887] = {.lex_state = 140, .external_lex_state = 1}, + [10888] = {.lex_state = 92, .external_lex_state = 1}, + [10889] = {.lex_state = 140, .external_lex_state = 1}, + [10890] = {.lex_state = 140, .external_lex_state = 1}, + [10891] = {.lex_state = 92, .external_lex_state = 1}, + [10892] = {.lex_state = 92, .external_lex_state = 1}, + [10893] = {.lex_state = 537, .external_lex_state = 1}, + [10894] = {.lex_state = 547, .external_lex_state = 1}, + [10895] = {.lex_state = 92, .external_lex_state = 1}, + [10896] = {.lex_state = 140, .external_lex_state = 1}, + [10897] = {.lex_state = 92, .external_lex_state = 1}, + [10898] = {.lex_state = 92, .external_lex_state = 1}, + [10899] = {.lex_state = 536, .external_lex_state = 1}, + [10900] = {.lex_state = 161, .external_lex_state = 1}, + [10901] = {.lex_state = 92, .external_lex_state = 1}, + [10902] = {.lex_state = 96, .external_lex_state = 1}, + [10903] = {.lex_state = 92, .external_lex_state = 1}, + [10904] = {.lex_state = 92, .external_lex_state = 1}, + [10905] = {.lex_state = 92, .external_lex_state = 1}, + [10906] = {.lex_state = 140, .external_lex_state = 1}, + [10907] = {.lex_state = 92, .external_lex_state = 1}, + [10908] = {.lex_state = 92, .external_lex_state = 1}, + [10909] = {.lex_state = 92, .external_lex_state = 1}, + [10910] = {.lex_state = 173, .external_lex_state = 1}, + [10911] = {.lex_state = 92, .external_lex_state = 1}, + [10912] = {.lex_state = 173, .external_lex_state = 1}, + [10913] = {.lex_state = 92, .external_lex_state = 1}, + [10914] = {.lex_state = 173, .external_lex_state = 1}, + [10915] = {.lex_state = 92, .external_lex_state = 1}, + [10916] = {.lex_state = 96, .external_lex_state = 1}, + [10917] = {.lex_state = 92, .external_lex_state = 1}, + [10918] = {.lex_state = 96, .external_lex_state = 1}, + [10919] = {.lex_state = 92, .external_lex_state = 1}, + [10920] = {.lex_state = 92, .external_lex_state = 1}, + [10921] = {.lex_state = 92, .external_lex_state = 1}, + [10922] = {.lex_state = 173, .external_lex_state = 1}, + [10923] = {.lex_state = 96, .external_lex_state = 1}, + [10924] = {.lex_state = 98, .external_lex_state = 1}, + [10925] = {.lex_state = 105, .external_lex_state = 1}, + [10926] = {.lex_state = 95, .external_lex_state = 1}, + [10927] = {.lex_state = 173, .external_lex_state = 1}, + [10928] = {.lex_state = 95, .external_lex_state = 1}, + [10929] = {.lex_state = 96, .external_lex_state = 1}, + [10930] = {.lex_state = 143, .external_lex_state = 1}, + [10931] = {.lex_state = 95, .external_lex_state = 1}, + [10932] = {.lex_state = 95, .external_lex_state = 1}, + [10933] = {.lex_state = 92, .external_lex_state = 1}, + [10934] = {.lex_state = 104, .external_lex_state = 1}, + [10935] = {.lex_state = 193, .external_lex_state = 1}, + [10936] = {.lex_state = 95, .external_lex_state = 1}, + [10937] = {.lex_state = 95, .external_lex_state = 1}, + [10938] = {.lex_state = 104, .external_lex_state = 1}, + [10939] = {.lex_state = 547, .external_lex_state = 1}, + [10940] = {.lex_state = 95, .external_lex_state = 1}, + [10941] = {.lex_state = 104, .external_lex_state = 1}, + [10942] = {.lex_state = 104, .external_lex_state = 1}, + [10943] = {.lex_state = 95, .external_lex_state = 1}, + [10944] = {.lex_state = 104, .external_lex_state = 1}, + [10945] = {.lex_state = 104, .external_lex_state = 1}, + [10946] = {.lex_state = 104, .external_lex_state = 1}, + [10947] = {.lex_state = 104, .external_lex_state = 1}, + [10948] = {.lex_state = 95, .external_lex_state = 1}, + [10949] = {.lex_state = 161, .external_lex_state = 1}, + [10950] = {.lex_state = 104, .external_lex_state = 1}, + [10951] = {.lex_state = 95, .external_lex_state = 1}, + [10952] = {.lex_state = 536, .external_lex_state = 1}, + [10953] = {.lex_state = 535, .external_lex_state = 1}, + [10954] = {.lex_state = 104, .external_lex_state = 1}, + [10955] = {.lex_state = 104, .external_lex_state = 1}, + [10956] = {.lex_state = 104, .external_lex_state = 1}, + [10957] = {.lex_state = 104, .external_lex_state = 1}, + [10958] = {.lex_state = 104, .external_lex_state = 1}, + [10959] = {.lex_state = 95, .external_lex_state = 1}, + [10960] = {.lex_state = 95, .external_lex_state = 1}, + [10961] = {.lex_state = 95, .external_lex_state = 1}, + [10962] = {.lex_state = 160, .external_lex_state = 1}, + [10963] = {.lex_state = 104, .external_lex_state = 1}, + [10964] = {.lex_state = 140, .external_lex_state = 1}, + [10965] = {.lex_state = 104, .external_lex_state = 1}, + [10966] = {.lex_state = 95, .external_lex_state = 1}, + [10967] = {.lex_state = 95, .external_lex_state = 1}, + [10968] = {.lex_state = 95, .external_lex_state = 1}, + [10969] = {.lex_state = 104, .external_lex_state = 1}, + [10970] = {.lex_state = 160, .external_lex_state = 1}, + [10971] = {.lex_state = 184, .external_lex_state = 1}, + [10972] = {.lex_state = 95, .external_lex_state = 1}, + [10973] = {.lex_state = 144, .external_lex_state = 1}, + [10974] = {.lex_state = 172, .external_lex_state = 1}, + [10975] = {.lex_state = 184, .external_lex_state = 1}, + [10976] = {.lex_state = 95, .external_lex_state = 1}, + [10977] = {.lex_state = 95, .external_lex_state = 1}, + [10978] = {.lex_state = 95, .external_lex_state = 1}, + [10979] = {.lex_state = 95, .external_lex_state = 1}, + [10980] = {.lex_state = 95, .external_lex_state = 1}, + [10981] = {.lex_state = 95, .external_lex_state = 1}, + [10982] = {.lex_state = 95, .external_lex_state = 1}, + [10983] = {.lex_state = 95, .external_lex_state = 1}, + [10984] = {.lex_state = 95, .external_lex_state = 1}, + [10985] = {.lex_state = 95, .external_lex_state = 1}, + [10986] = {.lex_state = 95, .external_lex_state = 1}, + [10987] = {.lex_state = 95, .external_lex_state = 1}, + [10988] = {.lex_state = 95, .external_lex_state = 1}, + [10989] = {.lex_state = 95, .external_lex_state = 1}, + [10990] = {.lex_state = 95, .external_lex_state = 1}, + [10991] = {.lex_state = 95, .external_lex_state = 1}, + [10992] = {.lex_state = 95, .external_lex_state = 1}, + [10993] = {.lex_state = 95, .external_lex_state = 1}, + [10994] = {.lex_state = 95, .external_lex_state = 1}, + [10995] = {.lex_state = 95, .external_lex_state = 1}, + [10996] = {.lex_state = 95, .external_lex_state = 1}, + [10997] = {.lex_state = 95, .external_lex_state = 1}, + [10998] = {.lex_state = 95, .external_lex_state = 1}, + [10999] = {.lex_state = 95, .external_lex_state = 1}, + [11000] = {.lex_state = 95, .external_lex_state = 1}, + [11001] = {.lex_state = 95, .external_lex_state = 1}, + [11002] = {.lex_state = 95, .external_lex_state = 1}, + [11003] = {.lex_state = 95, .external_lex_state = 1}, + [11004] = {.lex_state = 95, .external_lex_state = 1}, + [11005] = {.lex_state = 95, .external_lex_state = 1}, + [11006] = {.lex_state = 95, .external_lex_state = 1}, + [11007] = {.lex_state = 95, .external_lex_state = 1}, + [11008] = {.lex_state = 95, .external_lex_state = 1}, + [11009] = {.lex_state = 95, .external_lex_state = 1}, + [11010] = {.lex_state = 95, .external_lex_state = 1}, + [11011] = {.lex_state = 95, .external_lex_state = 1}, + [11012] = {.lex_state = 184, .external_lex_state = 1}, + [11013] = {.lex_state = 104, .external_lex_state = 1}, + [11014] = {.lex_state = 104, .external_lex_state = 1}, + [11015] = {.lex_state = 104, .external_lex_state = 1}, + [11016] = {.lex_state = 104, .external_lex_state = 1}, + [11017] = {.lex_state = 96, .external_lex_state = 1}, + [11018] = {.lex_state = 96, .external_lex_state = 1}, + [11019] = {.lex_state = 104, .external_lex_state = 1}, + [11020] = {.lex_state = 104, .external_lex_state = 1}, + [11021] = {.lex_state = 104, .external_lex_state = 1}, + [11022] = {.lex_state = 104, .external_lex_state = 1}, + [11023] = {.lex_state = 97, .external_lex_state = 1}, + [11024] = {.lex_state = 131, .external_lex_state = 1}, + [11025] = {.lex_state = 186, .external_lex_state = 1}, + [11026] = {.lex_state = 100, .external_lex_state = 1}, + [11027] = {.lex_state = 147, .external_lex_state = 1}, + [11028] = {.lex_state = 147, .external_lex_state = 1}, + [11029] = {.lex_state = 100, .external_lex_state = 1}, + [11030] = {.lex_state = 100, .external_lex_state = 1}, + [11031] = {.lex_state = 131, .external_lex_state = 1}, + [11032] = {.lex_state = 131, .external_lex_state = 1}, + [11033] = {.lex_state = 108, .external_lex_state = 1}, + [11034] = {.lex_state = 100, .external_lex_state = 1}, + [11035] = {.lex_state = 97, .external_lex_state = 1}, + [11036] = {.lex_state = 186, .external_lex_state = 1}, + [11037] = {.lex_state = 108, .external_lex_state = 1}, + [11038] = {.lex_state = 97, .external_lex_state = 1}, + [11039] = {.lex_state = 106, .external_lex_state = 1}, + [11040] = {.lex_state = 147, .external_lex_state = 1}, + [11041] = {.lex_state = 97, .external_lex_state = 1}, + [11042] = {.lex_state = 186, .external_lex_state = 1}, + [11043] = {.lex_state = 192, .external_lex_state = 1}, + [11044] = {.lex_state = 186, .external_lex_state = 1}, + [11045] = {.lex_state = 186, .external_lex_state = 1}, + [11046] = {.lex_state = 106, .external_lex_state = 1}, + [11047] = {.lex_state = 131, .external_lex_state = 1}, + [11048] = {.lex_state = 147, .external_lex_state = 1}, + [11049] = {.lex_state = 192, .external_lex_state = 1}, + [11050] = {.lex_state = 97, .external_lex_state = 1}, + [11051] = {.lex_state = 108, .external_lex_state = 1}, + [11052] = {.lex_state = 147, .external_lex_state = 1}, + [11053] = {.lex_state = 537, .external_lex_state = 1}, + [11054] = {.lex_state = 108, .external_lex_state = 1}, + [11055] = {.lex_state = 553, .external_lex_state = 1}, + [11056] = {.lex_state = 147, .external_lex_state = 1}, + [11057] = {.lex_state = 108, .external_lex_state = 1}, + [11058] = {.lex_state = 108, .external_lex_state = 1}, + [11059] = {.lex_state = 131, .external_lex_state = 1}, + [11060] = {.lex_state = 131, .external_lex_state = 1}, + [11061] = {.lex_state = 93, .external_lex_state = 1}, + [11062] = {.lex_state = 108, .external_lex_state = 1}, + [11063] = {.lex_state = 108, .external_lex_state = 1}, + [11064] = {.lex_state = 108, .external_lex_state = 1}, + [11065] = {.lex_state = 108, .external_lex_state = 1}, + [11066] = {.lex_state = 93, .external_lex_state = 1}, + [11067] = {.lex_state = 108, .external_lex_state = 1}, + [11068] = {.lex_state = 73, .external_lex_state = 1}, + [11069] = {.lex_state = 108, .external_lex_state = 1}, + [11070] = {.lex_state = 108, .external_lex_state = 1}, + [11071] = {.lex_state = 108, .external_lex_state = 1}, + [11072] = {.lex_state = 105, .external_lex_state = 1}, + [11073] = {.lex_state = 108, .external_lex_state = 1}, + [11074] = {.lex_state = 537, .external_lex_state = 1}, + [11075] = {.lex_state = 108, .external_lex_state = 1}, + [11076] = {.lex_state = 108, .external_lex_state = 1}, + [11077] = {.lex_state = 100, .external_lex_state = 1}, + [11078] = {.lex_state = 108, .external_lex_state = 1}, + [11079] = {.lex_state = 108, .external_lex_state = 1}, + [11080] = {.lex_state = 108, .external_lex_state = 1}, + [11081] = {.lex_state = 97, .external_lex_state = 1}, + [11082] = {.lex_state = 105, .external_lex_state = 1}, + [11083] = {.lex_state = 73, .external_lex_state = 1}, + [11084] = {.lex_state = 73, .external_lex_state = 1}, + [11085] = {.lex_state = 108, .external_lex_state = 1}, + [11086] = {.lex_state = 93, .external_lex_state = 1}, + [11087] = {.lex_state = 108, .external_lex_state = 1}, + [11088] = {.lex_state = 108, .external_lex_state = 1}, + [11089] = {.lex_state = 73, .external_lex_state = 1}, + [11090] = {.lex_state = 105, .external_lex_state = 1}, + [11091] = {.lex_state = 105, .external_lex_state = 1}, + [11092] = {.lex_state = 108, .external_lex_state = 1}, + [11093] = {.lex_state = 73, .external_lex_state = 1}, + [11094] = {.lex_state = 108, .external_lex_state = 1}, + [11095] = {.lex_state = 108, .external_lex_state = 1}, + [11096] = {.lex_state = 108, .external_lex_state = 1}, + [11097] = {.lex_state = 162, .external_lex_state = 1}, + [11098] = {.lex_state = 186, .external_lex_state = 1}, + [11099] = {.lex_state = 162, .external_lex_state = 1}, + [11100] = {.lex_state = 162, .external_lex_state = 1}, + [11101] = {.lex_state = 193, .external_lex_state = 1}, + [11102] = {.lex_state = 93, .external_lex_state = 1}, + [11103] = {.lex_state = 93, .external_lex_state = 1}, + [11104] = {.lex_state = 193, .external_lex_state = 1}, + [11105] = {.lex_state = 106, .external_lex_state = 1}, + [11106] = {.lex_state = 108, .external_lex_state = 1}, + [11107] = {.lex_state = 108, .external_lex_state = 1}, + [11108] = {.lex_state = 108, .external_lex_state = 1}, + [11109] = {.lex_state = 97, .external_lex_state = 1}, + [11110] = {.lex_state = 190, .external_lex_state = 1}, + [11111] = {.lex_state = 108, .external_lex_state = 1}, + [11112] = {.lex_state = 162, .external_lex_state = 1}, + [11113] = {.lex_state = 162, .external_lex_state = 1}, + [11114] = {.lex_state = 108, .external_lex_state = 1}, + [11115] = {.lex_state = 108, .external_lex_state = 1}, + [11116] = {.lex_state = 108, .external_lex_state = 1}, + [11117] = {.lex_state = 108, .external_lex_state = 1}, + [11118] = {.lex_state = 546, .external_lex_state = 1}, + [11119] = {.lex_state = 190, .external_lex_state = 1}, + [11120] = {.lex_state = 108, .external_lex_state = 1}, + [11121] = {.lex_state = 108, .external_lex_state = 1}, + [11122] = {.lex_state = 106, .external_lex_state = 1}, + [11123] = {.lex_state = 108, .external_lex_state = 1}, + [11124] = {.lex_state = 97, .external_lex_state = 1}, + [11125] = {.lex_state = 106, .external_lex_state = 1}, + [11126] = {.lex_state = 93, .external_lex_state = 1}, + [11127] = {.lex_state = 174, .external_lex_state = 1}, + [11128] = {.lex_state = 162, .external_lex_state = 1}, + [11129] = {.lex_state = 162, .external_lex_state = 1}, + [11130] = {.lex_state = 100, .external_lex_state = 1}, + [11131] = {.lex_state = 174, .external_lex_state = 1}, + [11132] = {.lex_state = 174, .external_lex_state = 1}, + [11133] = {.lex_state = 105, .external_lex_state = 1}, + [11134] = {.lex_state = 106, .external_lex_state = 1}, + [11135] = {.lex_state = 73, .external_lex_state = 1}, + [11136] = {.lex_state = 108, .external_lex_state = 1}, + [11137] = {.lex_state = 108, .external_lex_state = 1}, + [11138] = {.lex_state = 108, .external_lex_state = 1}, + [11139] = {.lex_state = 108, .external_lex_state = 1}, + [11140] = {.lex_state = 108, .external_lex_state = 1}, + [11141] = {.lex_state = 106, .external_lex_state = 1}, + [11142] = {.lex_state = 152, .external_lex_state = 1}, + [11143] = {.lex_state = 108, .external_lex_state = 1}, + [11144] = {.lex_state = 162, .external_lex_state = 1}, + [11145] = {.lex_state = 131, .external_lex_state = 1}, + [11146] = {.lex_state = 106, .external_lex_state = 1}, + [11147] = {.lex_state = 108, .external_lex_state = 1}, + [11148] = {.lex_state = 93, .external_lex_state = 1}, + [11149] = {.lex_state = 108, .external_lex_state = 1}, + [11150] = {.lex_state = 97, .external_lex_state = 1}, + [11151] = {.lex_state = 105, .external_lex_state = 1}, + [11152] = {.lex_state = 174, .external_lex_state = 1}, + [11153] = {.lex_state = 99, .external_lex_state = 1}, + [11154] = {.lex_state = 546, .external_lex_state = 1}, + [11155] = {.lex_state = 174, .external_lex_state = 1}, + [11156] = {.lex_state = 162, .external_lex_state = 1}, + [11157] = {.lex_state = 99, .external_lex_state = 1}, + [11158] = {.lex_state = 97, .external_lex_state = 1}, + [11159] = {.lex_state = 99, .external_lex_state = 1}, + [11160] = {.lex_state = 99, .external_lex_state = 1}, + [11161] = {.lex_state = 108, .external_lex_state = 1}, + [11162] = {.lex_state = 99, .external_lex_state = 1}, + [11163] = {.lex_state = 162, .external_lex_state = 1}, + [11164] = {.lex_state = 162, .external_lex_state = 1}, + [11165] = {.lex_state = 162, .external_lex_state = 1}, + [11166] = {.lex_state = 103, .external_lex_state = 1}, + [11167] = {.lex_state = 131, .external_lex_state = 1}, + [11168] = {.lex_state = 99, .external_lex_state = 1}, + [11169] = {.lex_state = 181, .external_lex_state = 1}, + [11170] = {.lex_state = 181, .external_lex_state = 1}, + [11171] = {.lex_state = 106, .external_lex_state = 1}, + [11172] = {.lex_state = 181, .external_lex_state = 1}, + [11173] = {.lex_state = 99, .external_lex_state = 1}, + [11174] = {.lex_state = 537, .external_lex_state = 1}, + [11175] = {.lex_state = 537, .external_lex_state = 1}, + [11176] = {.lex_state = 99, .external_lex_state = 1}, + [11177] = {.lex_state = 180, .external_lex_state = 1}, + [11178] = {.lex_state = 128, .external_lex_state = 1}, + [11179] = {.lex_state = 99, .external_lex_state = 1}, + [11180] = {.lex_state = 108, .external_lex_state = 1}, + [11181] = {.lex_state = 162, .external_lex_state = 1}, + [11182] = {.lex_state = 93, .external_lex_state = 1}, + [11183] = {.lex_state = 93, .external_lex_state = 1}, + [11184] = {.lex_state = 181, .external_lex_state = 1}, + [11185] = {.lex_state = 193, .external_lex_state = 1}, + [11186] = {.lex_state = 103, .external_lex_state = 1}, + [11187] = {.lex_state = 181, .external_lex_state = 1}, + [11188] = {.lex_state = 537, .external_lex_state = 1}, + [11189] = {.lex_state = 99, .external_lex_state = 1}, + [11190] = {.lex_state = 174, .external_lex_state = 1}, + [11191] = {.lex_state = 546, .external_lex_state = 1}, + [11192] = {.lex_state = 174, .external_lex_state = 1}, + [11193] = {.lex_state = 131, .external_lex_state = 1}, + [11194] = {.lex_state = 537, .external_lex_state = 1}, + [11195] = {.lex_state = 537, .external_lex_state = 1}, + [11196] = {.lex_state = 99, .external_lex_state = 1}, + [11197] = {.lex_state = 93, .external_lex_state = 1}, + [11198] = {.lex_state = 99, .external_lex_state = 1}, + [11199] = {.lex_state = 99, .external_lex_state = 1}, + [11200] = {.lex_state = 193, .external_lex_state = 1}, + [11201] = {.lex_state = 99, .external_lex_state = 1}, + [11202] = {.lex_state = 181, .external_lex_state = 1}, + [11203] = {.lex_state = 99, .external_lex_state = 1}, + [11204] = {.lex_state = 217, .external_lex_state = 1}, + [11205] = {.lex_state = 181, .external_lex_state = 1}, + [11206] = {.lex_state = 99, .external_lex_state = 1}, + [11207] = {.lex_state = 99, .external_lex_state = 1}, + [11208] = {.lex_state = 105, .external_lex_state = 1}, + [11209] = {.lex_state = 97, .external_lex_state = 1}, + [11210] = {.lex_state = 93, .external_lex_state = 1}, + [11211] = {.lex_state = 99, .external_lex_state = 1}, + [11212] = {.lex_state = 537, .external_lex_state = 1}, + [11213] = {.lex_state = 93, .external_lex_state = 1}, + [11214] = {.lex_state = 217, .external_lex_state = 1}, + [11215] = {.lex_state = 99, .external_lex_state = 1}, + [11216] = {.lex_state = 131, .external_lex_state = 1}, + [11217] = {.lex_state = 546, .external_lex_state = 1}, + [11218] = {.lex_state = 99, .external_lex_state = 1}, + [11219] = {.lex_state = 99, .external_lex_state = 1}, + [11220] = {.lex_state = 99, .external_lex_state = 1}, + [11221] = {.lex_state = 174, .external_lex_state = 1}, + [11222] = {.lex_state = 99, .external_lex_state = 1}, + [11223] = {.lex_state = 537, .external_lex_state = 1}, + [11224] = {.lex_state = 537, .external_lex_state = 1}, + [11225] = {.lex_state = 99, .external_lex_state = 1}, + [11226] = {.lex_state = 193, .external_lex_state = 1}, + [11227] = {.lex_state = 193, .external_lex_state = 1}, + [11228] = {.lex_state = 181, .external_lex_state = 1}, + [11229] = {.lex_state = 537, .external_lex_state = 1}, + [11230] = {.lex_state = 99, .external_lex_state = 1}, + [11231] = {.lex_state = 99, .external_lex_state = 1}, + [11232] = {.lex_state = 99, .external_lex_state = 1}, + [11233] = {.lex_state = 131, .external_lex_state = 1}, + [11234] = {.lex_state = 537, .external_lex_state = 1}, + [11235] = {.lex_state = 537, .external_lex_state = 1}, + [11236] = {.lex_state = 105, .external_lex_state = 1}, + [11237] = {.lex_state = 99, .external_lex_state = 1}, + [11238] = {.lex_state = 537, .external_lex_state = 1}, + [11239] = {.lex_state = 99, .external_lex_state = 1}, + [11240] = {.lex_state = 99, .external_lex_state = 1}, + [11241] = {.lex_state = 174, .external_lex_state = 1}, + [11242] = {.lex_state = 99, .external_lex_state = 1}, + [11243] = {.lex_state = 99, .external_lex_state = 1}, + [11244] = {.lex_state = 537, .external_lex_state = 1}, + [11245] = {.lex_state = 537, .external_lex_state = 1}, + [11246] = {.lex_state = 144, .external_lex_state = 1}, + [11247] = {.lex_state = 99, .external_lex_state = 1}, + [11248] = {.lex_state = 144, .external_lex_state = 1}, + [11249] = {.lex_state = 144, .external_lex_state = 1}, + [11250] = {.lex_state = 99, .external_lex_state = 1}, + [11251] = {.lex_state = 174, .external_lex_state = 1}, + [11252] = {.lex_state = 174, .external_lex_state = 1}, + [11253] = {.lex_state = 174, .external_lex_state = 1}, + [11254] = {.lex_state = 106, .external_lex_state = 1}, + [11255] = {.lex_state = 99, .external_lex_state = 1}, + [11256] = {.lex_state = 105, .external_lex_state = 1}, + [11257] = {.lex_state = 144, .external_lex_state = 1}, + [11258] = {.lex_state = 144, .external_lex_state = 1}, + [11259] = {.lex_state = 537, .external_lex_state = 1}, + [11260] = {.lex_state = 73, .external_lex_state = 1}, + [11261] = {.lex_state = 193, .external_lex_state = 1}, + [11262] = {.lex_state = 537, .external_lex_state = 1}, + [11263] = {.lex_state = 537, .external_lex_state = 1}, + [11264] = {.lex_state = 181, .external_lex_state = 1}, + [11265] = {.lex_state = 99, .external_lex_state = 1}, + [11266] = {.lex_state = 93, .external_lex_state = 1}, + [11267] = {.lex_state = 106, .external_lex_state = 1}, + [11268] = {.lex_state = 100, .external_lex_state = 1}, + [11269] = {.lex_state = 131, .external_lex_state = 1}, + [11270] = {.lex_state = 193, .external_lex_state = 1}, + [11271] = {.lex_state = 181, .external_lex_state = 1}, + [11272] = {.lex_state = 223, .external_lex_state = 1}, + [11273] = {.lex_state = 181, .external_lex_state = 1}, + [11274] = {.lex_state = 181, .external_lex_state = 1}, + [11275] = {.lex_state = 101, .external_lex_state = 1}, + [11276] = {.lex_state = 190, .external_lex_state = 1}, + [11277] = {.lex_state = 99, .external_lex_state = 1}, + [11278] = {.lex_state = 99, .external_lex_state = 1}, + [11279] = {.lex_state = 73, .external_lex_state = 1}, + [11280] = {.lex_state = 99, .external_lex_state = 1}, + [11281] = {.lex_state = 106, .external_lex_state = 1}, + [11282] = {.lex_state = 99, .external_lex_state = 1}, + [11283] = {.lex_state = 99, .external_lex_state = 1}, + [11284] = {.lex_state = 105, .external_lex_state = 1}, + [11285] = {.lex_state = 537, .external_lex_state = 1}, + [11286] = {.lex_state = 73, .external_lex_state = 1}, + [11287] = {.lex_state = 99, .external_lex_state = 1}, + [11288] = {.lex_state = 99, .external_lex_state = 1}, + [11289] = {.lex_state = 99, .external_lex_state = 1}, + [11290] = {.lex_state = 93, .external_lex_state = 1}, + [11291] = {.lex_state = 174, .external_lex_state = 1}, + [11292] = {.lex_state = 218, .external_lex_state = 1}, + [11293] = {.lex_state = 106, .external_lex_state = 1}, + [11294] = {.lex_state = 131, .external_lex_state = 1}, + [11295] = {.lex_state = 131, .external_lex_state = 1}, + [11296] = {.lex_state = 131, .external_lex_state = 1}, + [11297] = {.lex_state = 73, .external_lex_state = 1}, + [11298] = {.lex_state = 180, .external_lex_state = 1}, + [11299] = {.lex_state = 546, .external_lex_state = 1}, + [11300] = {.lex_state = 537, .external_lex_state = 1}, + [11301] = {.lex_state = 106, .external_lex_state = 1}, + [11302] = {.lex_state = 99, .external_lex_state = 1}, + [11303] = {.lex_state = 546, .external_lex_state = 1}, + [11304] = {.lex_state = 99, .external_lex_state = 1}, + [11305] = {.lex_state = 546, .external_lex_state = 1}, + [11306] = {.lex_state = 192, .external_lex_state = 1}, + [11307] = {.lex_state = 218, .external_lex_state = 1}, + [11308] = {.lex_state = 218, .external_lex_state = 1}, + [11309] = {.lex_state = 218, .external_lex_state = 1}, + [11310] = {.lex_state = 218, .external_lex_state = 1}, + [11311] = {.lex_state = 190, .external_lex_state = 1}, + [11312] = {.lex_state = 181, .external_lex_state = 1}, + [11313] = {.lex_state = 131, .external_lex_state = 1}, + [11314] = {.lex_state = 73, .external_lex_state = 1}, + [11315] = {.lex_state = 73, .external_lex_state = 1}, + [11316] = {.lex_state = 105, .external_lex_state = 1}, + [11317] = {.lex_state = 99, .external_lex_state = 1}, + [11318] = {.lex_state = 162, .external_lex_state = 1}, + [11319] = {.lex_state = 99, .external_lex_state = 1}, + [11320] = {.lex_state = 144, .external_lex_state = 1}, + [11321] = {.lex_state = 144, .external_lex_state = 1}, + [11322] = {.lex_state = 73, .external_lex_state = 1}, + [11323] = {.lex_state = 218, .external_lex_state = 1}, + [11324] = {.lex_state = 218, .external_lex_state = 1}, + [11325] = {.lex_state = 218, .external_lex_state = 1}, + [11326] = {.lex_state = 180, .external_lex_state = 1}, + [11327] = {.lex_state = 99, .external_lex_state = 1}, + [11328] = {.lex_state = 93, .external_lex_state = 1}, + [11329] = {.lex_state = 546, .external_lex_state = 1}, + [11330] = {.lex_state = 190, .external_lex_state = 1}, + [11331] = {.lex_state = 162, .external_lex_state = 1}, + [11332] = {.lex_state = 217, .external_lex_state = 1}, + [11333] = {.lex_state = 106, .external_lex_state = 1}, + [11334] = {.lex_state = 73, .external_lex_state = 1}, + [11335] = {.lex_state = 97, .external_lex_state = 1}, + [11336] = {.lex_state = 218, .external_lex_state = 1}, + [11337] = {.lex_state = 73, .external_lex_state = 1}, + [11338] = {.lex_state = 546, .external_lex_state = 1}, + [11339] = {.lex_state = 546, .external_lex_state = 1}, + [11340] = {.lex_state = 73, .external_lex_state = 1}, + [11341] = {.lex_state = 546, .external_lex_state = 1}, + [11342] = {.lex_state = 546, .external_lex_state = 1}, + [11343] = {.lex_state = 218, .external_lex_state = 1}, + [11344] = {.lex_state = 109, .external_lex_state = 1}, + [11345] = {.lex_state = 546, .external_lex_state = 1}, + [11346] = {.lex_state = 106, .external_lex_state = 1}, + [11347] = {.lex_state = 192, .external_lex_state = 1}, + [11348] = {.lex_state = 105, .external_lex_state = 1}, + [11349] = {.lex_state = 105, .external_lex_state = 1}, + [11350] = {.lex_state = 105, .external_lex_state = 1}, + [11351] = {.lex_state = 546, .external_lex_state = 1}, + [11352] = {.lex_state = 546, .external_lex_state = 1}, + [11353] = {.lex_state = 537, .external_lex_state = 1}, + [11354] = {.lex_state = 186, .external_lex_state = 1}, + [11355] = {.lex_state = 227, .external_lex_state = 1}, + [11356] = {.lex_state = 180, .external_lex_state = 1}, + [11357] = {.lex_state = 131, .external_lex_state = 1}, + [11358] = {.lex_state = 192, .external_lex_state = 1}, + [11359] = {.lex_state = 537, .external_lex_state = 1}, + [11360] = {.lex_state = 93, .external_lex_state = 1}, + [11361] = {.lex_state = 218, .external_lex_state = 1}, + [11362] = {.lex_state = 105, .external_lex_state = 1}, + [11363] = {.lex_state = 218, .external_lex_state = 1}, + [11364] = {.lex_state = 73, .external_lex_state = 1}, + [11365] = {.lex_state = 105, .external_lex_state = 1}, + [11366] = {.lex_state = 537, .external_lex_state = 1}, + [11367] = {.lex_state = 218, .external_lex_state = 1}, + [11368] = {.lex_state = 105, .external_lex_state = 1}, + [11369] = {.lex_state = 99, .external_lex_state = 1}, + [11370] = {.lex_state = 186, .external_lex_state = 1}, + [11371] = {.lex_state = 97, .external_lex_state = 1}, + [11372] = {.lex_state = 99, .external_lex_state = 1}, + [11373] = {.lex_state = 73, .external_lex_state = 1}, + [11374] = {.lex_state = 99, .external_lex_state = 1}, + [11375] = {.lex_state = 108, .external_lex_state = 1}, + [11376] = {.lex_state = 93, .external_lex_state = 1}, + [11377] = {.lex_state = 73, .external_lex_state = 1}, + [11378] = {.lex_state = 93, .external_lex_state = 1}, + [11379] = {.lex_state = 93, .external_lex_state = 1}, + [11380] = {.lex_state = 73, .external_lex_state = 1}, + [11381] = {.lex_state = 73, .external_lex_state = 1}, + [11382] = {.lex_state = 73, .external_lex_state = 1}, + [11383] = {.lex_state = 180, .external_lex_state = 1}, + [11384] = {.lex_state = 218, .external_lex_state = 1}, + [11385] = {.lex_state = 73, .external_lex_state = 1}, + [11386] = {.lex_state = 73, .external_lex_state = 1}, + [11387] = {.lex_state = 73, .external_lex_state = 1}, + [11388] = {.lex_state = 190, .external_lex_state = 1}, + [11389] = {.lex_state = 537, .external_lex_state = 1}, + [11390] = {.lex_state = 162, .external_lex_state = 1}, + [11391] = {.lex_state = 73, .external_lex_state = 1}, + [11392] = {.lex_state = 131, .external_lex_state = 1}, + [11393] = {.lex_state = 144, .external_lex_state = 1}, + [11394] = {.lex_state = 131, .external_lex_state = 1}, + [11395] = {.lex_state = 73, .external_lex_state = 1}, + [11396] = {.lex_state = 73, .external_lex_state = 1}, + [11397] = {.lex_state = 73, .external_lex_state = 1}, + [11398] = {.lex_state = 73, .external_lex_state = 1}, + [11399] = {.lex_state = 218, .external_lex_state = 1}, + [11400] = {.lex_state = 99, .external_lex_state = 1}, + [11401] = {.lex_state = 218, .external_lex_state = 1}, + [11402] = {.lex_state = 105, .external_lex_state = 1}, + [11403] = {.lex_state = 73, .external_lex_state = 1}, + [11404] = {.lex_state = 97, .external_lex_state = 1}, + [11405] = {.lex_state = 93, .external_lex_state = 1}, + [11406] = {.lex_state = 73, .external_lex_state = 1}, + [11407] = {.lex_state = 100, .external_lex_state = 1}, + [11408] = {.lex_state = 180, .external_lex_state = 1}, + [11409] = {.lex_state = 190, .external_lex_state = 1}, + [11410] = {.lex_state = 131, .external_lex_state = 1}, + [11411] = {.lex_state = 131, .external_lex_state = 1}, + [11412] = {.lex_state = 131, .external_lex_state = 1}, + [11413] = {.lex_state = 100, .external_lex_state = 1}, + [11414] = {.lex_state = 180, .external_lex_state = 1}, + [11415] = {.lex_state = 100, .external_lex_state = 1}, + [11416] = {.lex_state = 100, .external_lex_state = 1}, + [11417] = {.lex_state = 99, .external_lex_state = 1}, + [11418] = {.lex_state = 144, .external_lex_state = 1}, + [11419] = {.lex_state = 100, .external_lex_state = 1}, + [11420] = {.lex_state = 73, .external_lex_state = 1}, + [11421] = {.lex_state = 100, .external_lex_state = 1}, + [11422] = {.lex_state = 93, .external_lex_state = 1}, + [11423] = {.lex_state = 100, .external_lex_state = 1}, + [11424] = {.lex_state = 100, .external_lex_state = 1}, + [11425] = {.lex_state = 131, .external_lex_state = 1}, + [11426] = {.lex_state = 131, .external_lex_state = 1}, + [11427] = {.lex_state = 131, .external_lex_state = 1}, + [11428] = {.lex_state = 105, .external_lex_state = 1}, + [11429] = {.lex_state = 100, .external_lex_state = 1}, + [11430] = {.lex_state = 93, .external_lex_state = 1}, + [11431] = {.lex_state = 105, .external_lex_state = 1}, + [11432] = {.lex_state = 93, .external_lex_state = 1}, + [11433] = {.lex_state = 105, .external_lex_state = 1}, + [11434] = {.lex_state = 546, .external_lex_state = 1}, + [11435] = {.lex_state = 553, .external_lex_state = 1}, + [11436] = {.lex_state = 73, .external_lex_state = 1}, + [11437] = {.lex_state = 73, .external_lex_state = 1}, + [11438] = {.lex_state = 144, .external_lex_state = 1}, + [11439] = {.lex_state = 217, .external_lex_state = 1}, + [11440] = {.lex_state = 73, .external_lex_state = 1}, + [11441] = {.lex_state = 100, .external_lex_state = 1}, + [11442] = {.lex_state = 93, .external_lex_state = 1}, + [11443] = {.lex_state = 73, .external_lex_state = 1}, + [11444] = {.lex_state = 131, .external_lex_state = 1}, + [11445] = {.lex_state = 131, .external_lex_state = 1}, + [11446] = {.lex_state = 131, .external_lex_state = 1}, + [11447] = {.lex_state = 97, .external_lex_state = 1}, + [11448] = {.lex_state = 73, .external_lex_state = 1}, + [11449] = {.lex_state = 93, .external_lex_state = 1}, + [11450] = {.lex_state = 93, .external_lex_state = 1}, + [11451] = {.lex_state = 93, .external_lex_state = 1}, + [11452] = {.lex_state = 105, .external_lex_state = 1}, + [11453] = {.lex_state = 105, .external_lex_state = 1}, + [11454] = {.lex_state = 105, .external_lex_state = 1}, + [11455] = {.lex_state = 99, .external_lex_state = 1}, + [11456] = {.lex_state = 73, .external_lex_state = 1}, + [11457] = {.lex_state = 105, .external_lex_state = 1}, + [11458] = {.lex_state = 144, .external_lex_state = 1}, + [11459] = {.lex_state = 217, .external_lex_state = 1}, + [11460] = {.lex_state = 73, .external_lex_state = 1}, + [11461] = {.lex_state = 182, .external_lex_state = 1}, + [11462] = {.lex_state = 144, .external_lex_state = 1}, + [11463] = {.lex_state = 73, .external_lex_state = 1}, + [11464] = {.lex_state = 105, .external_lex_state = 1}, + [11465] = {.lex_state = 537, .external_lex_state = 1}, + [11466] = {.lex_state = 131, .external_lex_state = 1}, + [11467] = {.lex_state = 546, .external_lex_state = 1}, + [11468] = {.lex_state = 192, .external_lex_state = 1}, + [11469] = {.lex_state = 100, .external_lex_state = 1}, + [11470] = {.lex_state = 105, .external_lex_state = 1}, + [11471] = {.lex_state = 106, .external_lex_state = 1}, + [11472] = {.lex_state = 106, .external_lex_state = 1}, + [11473] = {.lex_state = 144, .external_lex_state = 1}, + [11474] = {.lex_state = 93, .external_lex_state = 1}, + [11475] = {.lex_state = 186, .external_lex_state = 1}, + [11476] = {.lex_state = 193, .external_lex_state = 1}, + [11477] = {.lex_state = 193, .external_lex_state = 1}, + [11478] = {.lex_state = 537, .external_lex_state = 1}, + [11479] = {.lex_state = 192, .external_lex_state = 1}, + [11480] = {.lex_state = 537, .external_lex_state = 1}, + [11481] = {.lex_state = 131, .external_lex_state = 1}, + [11482] = {.lex_state = 106, .external_lex_state = 1}, + [11483] = {.lex_state = 100, .external_lex_state = 1}, + [11484] = {.lex_state = 106, .external_lex_state = 1}, + [11485] = {.lex_state = 217, .external_lex_state = 1}, + [11486] = {.lex_state = 106, .external_lex_state = 1}, + [11487] = {.lex_state = 194, .external_lex_state = 1}, + [11488] = {.lex_state = 174, .external_lex_state = 1}, + [11489] = {.lex_state = 73, .external_lex_state = 1}, + [11490] = {.lex_state = 105, .external_lex_state = 1}, + [11491] = {.lex_state = 131, .external_lex_state = 1}, + [11492] = {.lex_state = 537, .external_lex_state = 1}, + [11493] = {.lex_state = 193, .external_lex_state = 1}, + [11494] = {.lex_state = 73, .external_lex_state = 1}, + [11495] = {.lex_state = 73, .external_lex_state = 1}, + [11496] = {.lex_state = 106, .external_lex_state = 1}, + [11497] = {.lex_state = 537, .external_lex_state = 1}, + [11498] = {.lex_state = 93, .external_lex_state = 1}, + [11499] = {.lex_state = 105, .external_lex_state = 1}, + [11500] = {.lex_state = 537, .external_lex_state = 1}, + [11501] = {.lex_state = 107, .external_lex_state = 1}, + [11502] = {.lex_state = 537, .external_lex_state = 1}, + [11503] = {.lex_state = 93, .external_lex_state = 1}, + [11504] = {.lex_state = 73, .external_lex_state = 1}, + [11505] = {.lex_state = 131, .external_lex_state = 1}, + [11506] = {.lex_state = 537, .external_lex_state = 1}, + [11507] = {.lex_state = 106, .external_lex_state = 1}, + [11508] = {.lex_state = 73, .external_lex_state = 1}, + [11509] = {.lex_state = 546, .external_lex_state = 1}, + [11510] = {.lex_state = 174, .external_lex_state = 1}, + [11511] = {.lex_state = 106, .external_lex_state = 1}, + [11512] = {.lex_state = 106, .external_lex_state = 1}, + [11513] = {.lex_state = 106, .external_lex_state = 1}, + [11514] = {.lex_state = 180, .external_lex_state = 1}, + [11515] = {.lex_state = 192, .external_lex_state = 1}, + [11516] = {.lex_state = 181, .external_lex_state = 1}, + [11517] = {.lex_state = 131, .external_lex_state = 1}, + [11518] = {.lex_state = 147, .external_lex_state = 1}, + [11519] = {.lex_state = 131, .external_lex_state = 1}, + [11520] = {.lex_state = 217, .external_lex_state = 1}, + [11521] = {.lex_state = 73, .external_lex_state = 1}, + [11522] = {.lex_state = 537, .external_lex_state = 1}, + [11523] = {.lex_state = 105, .external_lex_state = 1}, + [11524] = {.lex_state = 100, .external_lex_state = 1}, + [11525] = {.lex_state = 217, .external_lex_state = 1}, + [11526] = {.lex_state = 217, .external_lex_state = 1}, + [11527] = {.lex_state = 131, .external_lex_state = 1}, + [11528] = {.lex_state = 131, .external_lex_state = 1}, + [11529] = {.lex_state = 131, .external_lex_state = 1}, + [11530] = {.lex_state = 217, .external_lex_state = 1}, + [11531] = {.lex_state = 105, .external_lex_state = 1}, + [11532] = {.lex_state = 217, .external_lex_state = 1}, + [11533] = {.lex_state = 181, .external_lex_state = 1}, + [11534] = {.lex_state = 217, .external_lex_state = 1}, + [11535] = {.lex_state = 105, .external_lex_state = 1}, + [11536] = {.lex_state = 180, .external_lex_state = 1}, + [11537] = {.lex_state = 180, .external_lex_state = 1}, + [11538] = {.lex_state = 100, .external_lex_state = 1}, + [11539] = {.lex_state = 93, .external_lex_state = 1}, + [11540] = {.lex_state = 131, .external_lex_state = 1}, + [11541] = {.lex_state = 131, .external_lex_state = 1}, + [11542] = {.lex_state = 93, .external_lex_state = 1}, + [11543] = {.lex_state = 131, .external_lex_state = 1}, + [11544] = {.lex_state = 537, .external_lex_state = 1}, + [11545] = {.lex_state = 537, .external_lex_state = 1}, + [11546] = {.lex_state = 105, .external_lex_state = 1}, + [11547] = {.lex_state = 180, .external_lex_state = 1}, + [11548] = {.lex_state = 192, .external_lex_state = 1}, + [11549] = {.lex_state = 105, .external_lex_state = 1}, + [11550] = {.lex_state = 97, .external_lex_state = 1}, + [11551] = {.lex_state = 73, .external_lex_state = 1}, + [11552] = {.lex_state = 73, .external_lex_state = 1}, + [11553] = {.lex_state = 217, .external_lex_state = 1}, + [11554] = {.lex_state = 217, .external_lex_state = 1}, + [11555] = {.lex_state = 73, .external_lex_state = 1}, + [11556] = {.lex_state = 73, .external_lex_state = 1}, + [11557] = {.lex_state = 73, .external_lex_state = 1}, + [11558] = {.lex_state = 73, .external_lex_state = 1}, + [11559] = {.lex_state = 537, .external_lex_state = 1}, + [11560] = {.lex_state = 106, .external_lex_state = 1}, + [11561] = {.lex_state = 106, .external_lex_state = 1}, + [11562] = {.lex_state = 144, .external_lex_state = 1}, + [11563] = {.lex_state = 106, .external_lex_state = 1}, + [11564] = {.lex_state = 193, .external_lex_state = 1}, + [11565] = {.lex_state = 103, .external_lex_state = 1}, + [11566] = {.lex_state = 537, .external_lex_state = 1}, + [11567] = {.lex_state = 108, .external_lex_state = 1}, + [11568] = {.lex_state = 103, .external_lex_state = 1}, + [11569] = {.lex_state = 106, .external_lex_state = 1}, + [11570] = {.lex_state = 103, .external_lex_state = 1}, + [11571] = {.lex_state = 103, .external_lex_state = 1}, + [11572] = {.lex_state = 131, .external_lex_state = 1}, + [11573] = {.lex_state = 546, .external_lex_state = 1}, + [11574] = {.lex_state = 103, .external_lex_state = 1}, + [11575] = {.lex_state = 103, .external_lex_state = 1}, + [11576] = {.lex_state = 180, .external_lex_state = 1}, + [11577] = {.lex_state = 103, .external_lex_state = 1}, + [11578] = {.lex_state = 217, .external_lex_state = 1}, + [11579] = {.lex_state = 103, .external_lex_state = 1}, + [11580] = {.lex_state = 537, .external_lex_state = 1}, + [11581] = {.lex_state = 93, .external_lex_state = 1}, + [11582] = {.lex_state = 97, .external_lex_state = 1}, + [11583] = {.lex_state = 103, .external_lex_state = 1}, + [11584] = {.lex_state = 73, .external_lex_state = 1}, + [11585] = {.lex_state = 73, .external_lex_state = 1}, + [11586] = {.lex_state = 105, .external_lex_state = 1}, + [11587] = {.lex_state = 73, .external_lex_state = 1}, + [11588] = {.lex_state = 190, .external_lex_state = 1}, + [11589] = {.lex_state = 105, .external_lex_state = 1}, + [11590] = {.lex_state = 537, .external_lex_state = 1}, + [11591] = {.lex_state = 103, .external_lex_state = 1}, + [11592] = {.lex_state = 217, .external_lex_state = 1}, + [11593] = {.lex_state = 97, .external_lex_state = 1}, + [11594] = {.lex_state = 131, .external_lex_state = 1}, + [11595] = {.lex_state = 103, .external_lex_state = 1}, + [11596] = {.lex_state = 73, .external_lex_state = 1}, + [11597] = {.lex_state = 103, .external_lex_state = 1}, + [11598] = {.lex_state = 106, .external_lex_state = 1}, + [11599] = {.lex_state = 103, .external_lex_state = 1}, + [11600] = {.lex_state = 97, .external_lex_state = 1}, + [11601] = {.lex_state = 106, .external_lex_state = 1}, + [11602] = {.lex_state = 97, .external_lex_state = 1}, + [11603] = {.lex_state = 97, .external_lex_state = 1}, + [11604] = {.lex_state = 103, .external_lex_state = 1}, + [11605] = {.lex_state = 97, .external_lex_state = 1}, + [11606] = {.lex_state = 131, .external_lex_state = 1}, + [11607] = {.lex_state = 73, .external_lex_state = 1}, + [11608] = {.lex_state = 105, .external_lex_state = 1}, + [11609] = {.lex_state = 106, .external_lex_state = 1}, + [11610] = {.lex_state = 97, .external_lex_state = 1}, + [11611] = {.lex_state = 97, .external_lex_state = 1}, + [11612] = {.lex_state = 106, .external_lex_state = 1}, + [11613] = {.lex_state = 103, .external_lex_state = 1}, + [11614] = {.lex_state = 106, .external_lex_state = 1}, + [11615] = {.lex_state = 106, .external_lex_state = 1}, + [11616] = {.lex_state = 103, .external_lex_state = 1}, + [11617] = {.lex_state = 131, .external_lex_state = 1}, + [11618] = {.lex_state = 103, .external_lex_state = 1}, + [11619] = {.lex_state = 106, .external_lex_state = 1}, + [11620] = {.lex_state = 106, .external_lex_state = 1}, + [11621] = {.lex_state = 180, .external_lex_state = 1}, + [11622] = {.lex_state = 180, .external_lex_state = 1}, + [11623] = {.lex_state = 103, .external_lex_state = 1}, + [11624] = {.lex_state = 180, .external_lex_state = 1}, + [11625] = {.lex_state = 103, .external_lex_state = 1}, + [11626] = {.lex_state = 181, .external_lex_state = 1}, + [11627] = {.lex_state = 97, .external_lex_state = 1}, + [11628] = {.lex_state = 174, .external_lex_state = 1}, + [11629] = {.lex_state = 103, .external_lex_state = 1}, + [11630] = {.lex_state = 97, .external_lex_state = 1}, + [11631] = {.lex_state = 93, .external_lex_state = 1}, + [11632] = {.lex_state = 105, .external_lex_state = 1}, + [11633] = {.lex_state = 131, .external_lex_state = 1}, + [11634] = {.lex_state = 131, .external_lex_state = 1}, + [11635] = {.lex_state = 131, .external_lex_state = 1}, + [11636] = {.lex_state = 105, .external_lex_state = 1}, + [11637] = {.lex_state = 105, .external_lex_state = 1}, + [11638] = {.lex_state = 103, .external_lex_state = 1}, + [11639] = {.lex_state = 546, .external_lex_state = 1}, + [11640] = {.lex_state = 103, .external_lex_state = 1}, + [11641] = {.lex_state = 103, .external_lex_state = 1}, + [11642] = {.lex_state = 106, .external_lex_state = 1}, + [11643] = {.lex_state = 103, .external_lex_state = 1}, + [11644] = {.lex_state = 105, .external_lex_state = 1}, + [11645] = {.lex_state = 192, .external_lex_state = 1}, + [11646] = {.lex_state = 103, .external_lex_state = 1}, + [11647] = {.lex_state = 537, .external_lex_state = 1}, + [11648] = {.lex_state = 103, .external_lex_state = 1}, + [11649] = {.lex_state = 105, .external_lex_state = 1}, + [11650] = {.lex_state = 131, .external_lex_state = 1}, + [11651] = {.lex_state = 105, .external_lex_state = 1}, + [11652] = {.lex_state = 103, .external_lex_state = 1}, + [11653] = {.lex_state = 546, .external_lex_state = 1}, + [11654] = {.lex_state = 180, .external_lex_state = 1}, + [11655] = {.lex_state = 106, .external_lex_state = 1}, + [11656] = {.lex_state = 106, .external_lex_state = 1}, + [11657] = {.lex_state = 106, .external_lex_state = 1}, + [11658] = {.lex_state = 103, .external_lex_state = 1}, + [11659] = {.lex_state = 546, .external_lex_state = 1}, + [11660] = {.lex_state = 537, .external_lex_state = 1}, + [11661] = {.lex_state = 131, .external_lex_state = 1}, + [11662] = {.lex_state = 105, .external_lex_state = 1}, + [11663] = {.lex_state = 97, .external_lex_state = 1}, + [11664] = {.lex_state = 97, .external_lex_state = 1}, + [11665] = {.lex_state = 103, .external_lex_state = 1}, + [11666] = {.lex_state = 97, .external_lex_state = 1}, + [11667] = {.lex_state = 97, .external_lex_state = 1}, + [11668] = {.lex_state = 537, .external_lex_state = 1}, + [11669] = {.lex_state = 97, .external_lex_state = 1}, + [11670] = {.lex_state = 100, .external_lex_state = 1}, + [11671] = {.lex_state = 103, .external_lex_state = 1}, + [11672] = {.lex_state = 131, .external_lex_state = 1}, + [11673] = {.lex_state = 131, .external_lex_state = 1}, + [11674] = {.lex_state = 131, .external_lex_state = 1}, + [11675] = {.lex_state = 106, .external_lex_state = 1}, + [11676] = {.lex_state = 97, .external_lex_state = 1}, + [11677] = {.lex_state = 106, .external_lex_state = 1}, + [11678] = {.lex_state = 105, .external_lex_state = 1}, + [11679] = {.lex_state = 97, .external_lex_state = 1}, + [11680] = {.lex_state = 105, .external_lex_state = 1}, + [11681] = {.lex_state = 106, .external_lex_state = 1}, + [11682] = {.lex_state = 103, .external_lex_state = 1}, + [11683] = {.lex_state = 103, .external_lex_state = 1}, + [11684] = {.lex_state = 131, .external_lex_state = 1}, + [11685] = {.lex_state = 106, .external_lex_state = 1}, + [11686] = {.lex_state = 192, .external_lex_state = 1}, + [11687] = {.lex_state = 106, .external_lex_state = 1}, + [11688] = {.lex_state = 103, .external_lex_state = 1}, + [11689] = {.lex_state = 97, .external_lex_state = 1}, + [11690] = {.lex_state = 97, .external_lex_state = 1}, + [11691] = {.lex_state = 105, .external_lex_state = 1}, + [11692] = {.lex_state = 103, .external_lex_state = 1}, + [11693] = {.lex_state = 97, .external_lex_state = 1}, + [11694] = {.lex_state = 97, .external_lex_state = 1}, + [11695] = {.lex_state = 97, .external_lex_state = 1}, + [11696] = {.lex_state = 106, .external_lex_state = 1}, + [11697] = {.lex_state = 103, .external_lex_state = 1}, + [11698] = {.lex_state = 97, .external_lex_state = 1}, + [11699] = {.lex_state = 97, .external_lex_state = 1}, + [11700] = {.lex_state = 190, .external_lex_state = 1}, + [11701] = {.lex_state = 103, .external_lex_state = 1}, + [11702] = {.lex_state = 106, .external_lex_state = 1}, + [11703] = {.lex_state = 103, .external_lex_state = 1}, + [11704] = {.lex_state = 103, .external_lex_state = 1}, + [11705] = {.lex_state = 97, .external_lex_state = 1}, + [11706] = {.lex_state = 192, .external_lex_state = 1}, + [11707] = {.lex_state = 103, .external_lex_state = 1}, + [11708] = {.lex_state = 97, .external_lex_state = 1}, + [11709] = {.lex_state = 103, .external_lex_state = 1}, + [11710] = {.lex_state = 103, .external_lex_state = 1}, + [11711] = {.lex_state = 192, .external_lex_state = 1}, + [11712] = {.lex_state = 103, .external_lex_state = 1}, + [11713] = {.lex_state = 103, .external_lex_state = 1}, + [11714] = {.lex_state = 192, .external_lex_state = 1}, + [11715] = {.lex_state = 546, .external_lex_state = 1}, + [11716] = {.lex_state = 99, .external_lex_state = 1}, + [11717] = {.lex_state = 97, .external_lex_state = 1}, + [11718] = {.lex_state = 97, .external_lex_state = 1}, + [11719] = {.lex_state = 128, .external_lex_state = 1}, + [11720] = {.lex_state = 105, .external_lex_state = 1}, + [11721] = {.lex_state = 105, .external_lex_state = 1}, + [11722] = {.lex_state = 103, .external_lex_state = 1}, + [11723] = {.lex_state = 97, .external_lex_state = 1}, + [11724] = {.lex_state = 103, .external_lex_state = 1}, + [11725] = {.lex_state = 105, .external_lex_state = 1}, + [11726] = {.lex_state = 97, .external_lex_state = 1}, + [11727] = {.lex_state = 103, .external_lex_state = 1}, + [11728] = {.lex_state = 97, .external_lex_state = 1}, + [11729] = {.lex_state = 147, .external_lex_state = 1}, + [11730] = {.lex_state = 546, .external_lex_state = 1}, + [11731] = {.lex_state = 103, .external_lex_state = 1}, + [11732] = {.lex_state = 97, .external_lex_state = 1}, + [11733] = {.lex_state = 103, .external_lex_state = 1}, + [11734] = {.lex_state = 103, .external_lex_state = 1}, + [11735] = {.lex_state = 100, .external_lex_state = 1}, + [11736] = {.lex_state = 103, .external_lex_state = 1}, + [11737] = {.lex_state = 103, .external_lex_state = 1}, + [11738] = {.lex_state = 190, .external_lex_state = 1}, + [11739] = {.lex_state = 100, .external_lex_state = 1}, + [11740] = {.lex_state = 103, .external_lex_state = 1}, + [11741] = {.lex_state = 190, .external_lex_state = 1}, + [11742] = {.lex_state = 103, .external_lex_state = 1}, + [11743] = {.lex_state = 100, .external_lex_state = 1}, + [11744] = {.lex_state = 105, .external_lex_state = 1}, + [11745] = {.lex_state = 108, .external_lex_state = 1}, + [11746] = {.lex_state = 105, .external_lex_state = 1}, + [11747] = {.lex_state = 147, .external_lex_state = 1}, + [11748] = {.lex_state = 190, .external_lex_state = 1}, + [11749] = {.lex_state = 131, .external_lex_state = 1}, + [11750] = {.lex_state = 190, .external_lex_state = 1}, + [11751] = {.lex_state = 106, .external_lex_state = 1}, + [11752] = {.lex_state = 99, .external_lex_state = 1}, + [11753] = {.lex_state = 131, .external_lex_state = 1}, + [11754] = {.lex_state = 147, .external_lex_state = 1}, + [11755] = {.lex_state = 106, .external_lex_state = 1}, + [11756] = {.lex_state = 93, .external_lex_state = 1}, + [11757] = {.lex_state = 106, .external_lex_state = 1}, + [11758] = {.lex_state = 106, .external_lex_state = 1}, + [11759] = {.lex_state = 105, .external_lex_state = 1}, + [11760] = {.lex_state = 103, .external_lex_state = 1}, + [11761] = {.lex_state = 105, .external_lex_state = 1}, + [11762] = {.lex_state = 93, .external_lex_state = 1}, + [11763] = {.lex_state = 106, .external_lex_state = 1}, + [11764] = {.lex_state = 106, .external_lex_state = 1}, + [11765] = {.lex_state = 100, .external_lex_state = 1}, + [11766] = {.lex_state = 108, .external_lex_state = 1}, + [11767] = {.lex_state = 147, .external_lex_state = 1}, + [11768] = {.lex_state = 105, .external_lex_state = 1}, + [11769] = {.lex_state = 193, .external_lex_state = 1}, + [11770] = {.lex_state = 106, .external_lex_state = 1}, + [11771] = {.lex_state = 97, .external_lex_state = 1}, + [11772] = {.lex_state = 106, .external_lex_state = 1}, + [11773] = {.lex_state = 147, .external_lex_state = 1}, + [11774] = {.lex_state = 193, .external_lex_state = 1}, + [11775] = {.lex_state = 97, .external_lex_state = 1}, + [11776] = {.lex_state = 97, .external_lex_state = 1}, + [11777] = {.lex_state = 105, .external_lex_state = 1}, + [11778] = {.lex_state = 106, .external_lex_state = 1}, + [11779] = {.lex_state = 93, .external_lex_state = 1}, + [11780] = {.lex_state = 108, .external_lex_state = 1}, + [11781] = {.lex_state = 193, .external_lex_state = 1}, + [11782] = {.lex_state = 97, .external_lex_state = 1}, + [11783] = {.lex_state = 97, .external_lex_state = 1}, + [11784] = {.lex_state = 147, .external_lex_state = 1}, + [11785] = {.lex_state = 192, .external_lex_state = 1}, + [11786] = {.lex_state = 546, .external_lex_state = 1}, + [11787] = {.lex_state = 192, .external_lex_state = 1}, + [11788] = {.lex_state = 108, .external_lex_state = 1}, + [11789] = {.lex_state = 100, .external_lex_state = 1}, + [11790] = {.lex_state = 546, .external_lex_state = 1}, + [11791] = {.lex_state = 100, .external_lex_state = 1}, + [11792] = {.lex_state = 100, .external_lex_state = 1}, + [11793] = {.lex_state = 100, .external_lex_state = 1}, + [11794] = {.lex_state = 100, .external_lex_state = 1}, + [11795] = {.lex_state = 537, .external_lex_state = 1}, + [11796] = {.lex_state = 100, .external_lex_state = 1}, + [11797] = {.lex_state = 100, .external_lex_state = 1}, + [11798] = {.lex_state = 103, .external_lex_state = 1}, + [11799] = {.lex_state = 97, .external_lex_state = 1}, + [11800] = {.lex_state = 99, .external_lex_state = 1}, + [11801] = {.lex_state = 193, .external_lex_state = 1}, + [11802] = {.lex_state = 100, .external_lex_state = 1}, + [11803] = {.lex_state = 103, .external_lex_state = 1}, + [11804] = {.lex_state = 93, .external_lex_state = 1}, + [11805] = {.lex_state = 97, .external_lex_state = 1}, + [11806] = {.lex_state = 537, .external_lex_state = 1}, + [11807] = {.lex_state = 131, .external_lex_state = 1}, + [11808] = {.lex_state = 131, .external_lex_state = 1}, + [11809] = {.lex_state = 537, .external_lex_state = 1}, + [11810] = {.lex_state = 93, .external_lex_state = 1}, + [11811] = {.lex_state = 537, .external_lex_state = 1}, + [11812] = {.lex_state = 537, .external_lex_state = 1}, + [11813] = {.lex_state = 93, .external_lex_state = 1}, + [11814] = {.lex_state = 93, .external_lex_state = 1}, + [11815] = {.lex_state = 537, .external_lex_state = 1}, + [11816] = {.lex_state = 93, .external_lex_state = 1}, + [11817] = {.lex_state = 100, .external_lex_state = 1}, + [11818] = {.lex_state = 93, .external_lex_state = 1}, + [11819] = {.lex_state = 537, .external_lex_state = 1}, + [11820] = {.lex_state = 93, .external_lex_state = 1}, + [11821] = {.lex_state = 93, .external_lex_state = 1}, + [11822] = {.lex_state = 93, .external_lex_state = 1}, + [11823] = {.lex_state = 546, .external_lex_state = 1}, + [11824] = {.lex_state = 186, .external_lex_state = 1}, + [11825] = {.lex_state = 93, .external_lex_state = 1}, + [11826] = {.lex_state = 186, .external_lex_state = 1}, + [11827] = {.lex_state = 144, .external_lex_state = 1}, + [11828] = {.lex_state = 186, .external_lex_state = 1}, + [11829] = {.lex_state = 100, .external_lex_state = 1}, + [11830] = {.lex_state = 93, .external_lex_state = 1}, + [11831] = {.lex_state = 100, .external_lex_state = 1}, + [11832] = {.lex_state = 546, .external_lex_state = 1}, + [11833] = {.lex_state = 537, .external_lex_state = 1}, + [11834] = {.lex_state = 537, .external_lex_state = 1}, + [11835] = {.lex_state = 100, .external_lex_state = 1}, + [11836] = {.lex_state = 144, .external_lex_state = 1}, + [11837] = {.lex_state = 100, .external_lex_state = 1}, + [11838] = {.lex_state = 100, .external_lex_state = 1}, + [11839] = {.lex_state = 100, .external_lex_state = 1}, + [11840] = {.lex_state = 100, .external_lex_state = 1}, + [11841] = {.lex_state = 186, .external_lex_state = 1}, + [11842] = {.lex_state = 186, .external_lex_state = 1}, + [11843] = {.lex_state = 97, .external_lex_state = 1}, + [11844] = {.lex_state = 108, .external_lex_state = 1}, + [11845] = {.lex_state = 105, .external_lex_state = 1}, + [11846] = {.lex_state = 97, .external_lex_state = 1}, + [11847] = {.lex_state = 97, .external_lex_state = 1}, + [11848] = {.lex_state = 100, .external_lex_state = 1}, + [11849] = {.lex_state = 131, .external_lex_state = 1}, + [11850] = {.lex_state = 131, .external_lex_state = 1}, + [11851] = {.lex_state = 131, .external_lex_state = 1}, + [11852] = {.lex_state = 131, .external_lex_state = 1}, + [11853] = {.lex_state = 131, .external_lex_state = 1}, + [11854] = {.lex_state = 100, .external_lex_state = 1}, + [11855] = {.lex_state = 100, .external_lex_state = 1}, + [11856] = {.lex_state = 131, .external_lex_state = 1}, + [11857] = {.lex_state = 131, .external_lex_state = 1}, + [11858] = {.lex_state = 131, .external_lex_state = 1}, + [11859] = {.lex_state = 131, .external_lex_state = 1}, + [11860] = {.lex_state = 131, .external_lex_state = 1}, + [11861] = {.lex_state = 100, .external_lex_state = 1}, + [11862] = {.lex_state = 100, .external_lex_state = 1}, + [11863] = {.lex_state = 131, .external_lex_state = 1}, + [11864] = {.lex_state = 131, .external_lex_state = 1}, + [11865] = {.lex_state = 100, .external_lex_state = 1}, + [11866] = {.lex_state = 100, .external_lex_state = 1}, + [11867] = {.lex_state = 186, .external_lex_state = 1}, + [11868] = {.lex_state = 186, .external_lex_state = 1}, + [11869] = {.lex_state = 147, .external_lex_state = 1}, + [11870] = {.lex_state = 131, .external_lex_state = 1}, + [11871] = {.lex_state = 131, .external_lex_state = 1}, + [11872] = {.lex_state = 131, .external_lex_state = 1}, + [11873] = {.lex_state = 131, .external_lex_state = 1}, + [11874] = {.lex_state = 131, .external_lex_state = 1}, + [11875] = {.lex_state = 100, .external_lex_state = 1}, + [11876] = {.lex_state = 537, .external_lex_state = 1}, + [11877] = {.lex_state = 537, .external_lex_state = 1}, + [11878] = {.lex_state = 100, .external_lex_state = 1}, + [11879] = {.lex_state = 100, .external_lex_state = 1}, + [11880] = {.lex_state = 100, .external_lex_state = 1}, + [11881] = {.lex_state = 93, .external_lex_state = 1}, + [11882] = {.lex_state = 93, .external_lex_state = 1}, + [11883] = {.lex_state = 93, .external_lex_state = 1}, + [11884] = {.lex_state = 147, .external_lex_state = 1}, + [11885] = {.lex_state = 100, .external_lex_state = 1}, + [11886] = {.lex_state = 147, .external_lex_state = 1}, + [11887] = {.lex_state = 100, .external_lex_state = 1}, + [11888] = {.lex_state = 93, .external_lex_state = 1}, + [11889] = {.lex_state = 93, .external_lex_state = 1}, + [11890] = {.lex_state = 93, .external_lex_state = 1}, + [11891] = {.lex_state = 100, .external_lex_state = 1}, + [11892] = {.lex_state = 100, .external_lex_state = 1}, + [11893] = {.lex_state = 190, .external_lex_state = 1}, + [11894] = {.lex_state = 100, .external_lex_state = 1}, + [11895] = {.lex_state = 108, .external_lex_state = 1}, + [11896] = {.lex_state = 108, .external_lex_state = 1}, + [11897] = {.lex_state = 93, .external_lex_state = 1}, + [11898] = {.lex_state = 93, .external_lex_state = 1}, + [11899] = {.lex_state = 190, .external_lex_state = 1}, + [11900] = {.lex_state = 190, .external_lex_state = 1}, + [11901] = {.lex_state = 93, .external_lex_state = 1}, + [11902] = {.lex_state = 108, .external_lex_state = 1}, + [11903] = {.lex_state = 93, .external_lex_state = 1}, + [11904] = {.lex_state = 105, .external_lex_state = 1}, + [11905] = {.lex_state = 131, .external_lex_state = 1}, + [11906] = {.lex_state = 546, .external_lex_state = 1}, + [11907] = {.lex_state = 125, .external_lex_state = 1}, + [11908] = {.lex_state = 125, .external_lex_state = 1}, + [11909] = {.lex_state = 125, .external_lex_state = 1}, + [11910] = {.lex_state = 125, .external_lex_state = 1}, + [11911] = {.lex_state = 546, .external_lex_state = 1}, + [11912] = {.lex_state = 125, .external_lex_state = 1}, + [11913] = {.lex_state = 223, .external_lex_state = 1}, + [11914] = {.lex_state = 223, .external_lex_state = 1}, + [11915] = {.lex_state = 223, .external_lex_state = 1}, + [11916] = {.lex_state = 223, .external_lex_state = 1}, + [11917] = {.lex_state = 223, .external_lex_state = 1}, + [11918] = {.lex_state = 125, .external_lex_state = 1}, + [11919] = {.lex_state = 125, .external_lex_state = 1}, + [11920] = {.lex_state = 223, .external_lex_state = 1}, + [11921] = {.lex_state = 223, .external_lex_state = 1}, + [11922] = {.lex_state = 125, .external_lex_state = 1}, + [11923] = {.lex_state = 223, .external_lex_state = 1}, + [11924] = {.lex_state = 107, .external_lex_state = 1}, + [11925] = {.lex_state = 223, .external_lex_state = 1}, + [11926] = {.lex_state = 107, .external_lex_state = 1}, + [11927] = {.lex_state = 223, .external_lex_state = 1}, + [11928] = {.lex_state = 223, .external_lex_state = 1}, + [11929] = {.lex_state = 223, .external_lex_state = 1}, + [11930] = {.lex_state = 125, .external_lex_state = 1}, + [11931] = {.lex_state = 125, .external_lex_state = 1}, + [11932] = {.lex_state = 107, .external_lex_state = 1}, + [11933] = {.lex_state = 107, .external_lex_state = 1}, + [11934] = {.lex_state = 107, .external_lex_state = 1}, + [11935] = {.lex_state = 107, .external_lex_state = 1}, + [11936] = {.lex_state = 107, .external_lex_state = 1}, + [11937] = {.lex_state = 125, .external_lex_state = 1}, + [11938] = {.lex_state = 107, .external_lex_state = 1}, + [11939] = {.lex_state = 107, .external_lex_state = 1}, + [11940] = {.lex_state = 107, .external_lex_state = 1}, + [11941] = {.lex_state = 107, .external_lex_state = 1}, + [11942] = {.lex_state = 125, .external_lex_state = 1}, + [11943] = {.lex_state = 223, .external_lex_state = 1}, + [11944] = {.lex_state = 107, .external_lex_state = 1}, + [11945] = {.lex_state = 125, .external_lex_state = 1}, + [11946] = {.lex_state = 107, .external_lex_state = 1}, + [11947] = {.lex_state = 107, .external_lex_state = 1}, + [11948] = {.lex_state = 107, .external_lex_state = 1}, + [11949] = {.lex_state = 107, .external_lex_state = 1}, + [11950] = {.lex_state = 107, .external_lex_state = 1}, + [11951] = {.lex_state = 107, .external_lex_state = 1}, + [11952] = {.lex_state = 107, .external_lex_state = 1}, + [11953] = {.lex_state = 125, .external_lex_state = 1}, + [11954] = {.lex_state = 107, .external_lex_state = 1}, + [11955] = {.lex_state = 546, .external_lex_state = 1}, + [11956] = {.lex_state = 122, .external_lex_state = 1}, + [11957] = {.lex_state = 125, .external_lex_state = 1}, + [11958] = {.lex_state = 107, .external_lex_state = 1}, + [11959] = {.lex_state = 223, .external_lex_state = 1}, + [11960] = {.lex_state = 125, .external_lex_state = 1}, + [11961] = {.lex_state = 223, .external_lex_state = 1}, + [11962] = {.lex_state = 107, .external_lex_state = 1}, + [11963] = {.lex_state = 107, .external_lex_state = 1}, + [11964] = {.lex_state = 107, .external_lex_state = 1}, + [11965] = {.lex_state = 107, .external_lex_state = 1}, + [11966] = {.lex_state = 107, .external_lex_state = 1}, + [11967] = {.lex_state = 107, .external_lex_state = 1}, + [11968] = {.lex_state = 125, .external_lex_state = 1}, + [11969] = {.lex_state = 107, .external_lex_state = 1}, + [11970] = {.lex_state = 125, .external_lex_state = 1}, + [11971] = {.lex_state = 546, .external_lex_state = 1}, + [11972] = {.lex_state = 119, .external_lex_state = 1}, + [11973] = {.lex_state = 223, .external_lex_state = 1}, + [11974] = {.lex_state = 107, .external_lex_state = 1}, + [11975] = {.lex_state = 107, .external_lex_state = 1}, + [11976] = {.lex_state = 107, .external_lex_state = 1}, + [11977] = {.lex_state = 107, .external_lex_state = 1}, + [11978] = {.lex_state = 107, .external_lex_state = 1}, + [11979] = {.lex_state = 107, .external_lex_state = 1}, + [11980] = {.lex_state = 107, .external_lex_state = 1}, + [11981] = {.lex_state = 107, .external_lex_state = 1}, + [11982] = {.lex_state = 107, .external_lex_state = 1}, + [11983] = {.lex_state = 125, .external_lex_state = 1}, + [11984] = {.lex_state = 546, .external_lex_state = 1}, + [11985] = {.lex_state = 107, .external_lex_state = 1}, + [11986] = {.lex_state = 107, .external_lex_state = 1}, + [11987] = {.lex_state = 107, .external_lex_state = 1}, + [11988] = {.lex_state = 107, .external_lex_state = 1}, + [11989] = {.lex_state = 107, .external_lex_state = 1}, + [11990] = {.lex_state = 107, .external_lex_state = 1}, + [11991] = {.lex_state = 107, .external_lex_state = 1}, + [11992] = {.lex_state = 107, .external_lex_state = 1}, + [11993] = {.lex_state = 107, .external_lex_state = 1}, + [11994] = {.lex_state = 107, .external_lex_state = 1}, + [11995] = {.lex_state = 107, .external_lex_state = 1}, + [11996] = {.lex_state = 125, .external_lex_state = 1}, + [11997] = {.lex_state = 107, .external_lex_state = 1}, + [11998] = {.lex_state = 107, .external_lex_state = 1}, + [11999] = {.lex_state = 107, .external_lex_state = 1}, + [12000] = {.lex_state = 107, .external_lex_state = 1}, + [12001] = {.lex_state = 107, .external_lex_state = 1}, + [12002] = {.lex_state = 107, .external_lex_state = 1}, + [12003] = {.lex_state = 125, .external_lex_state = 1}, + [12004] = {.lex_state = 107, .external_lex_state = 1}, + [12005] = {.lex_state = 107, .external_lex_state = 1}, + [12006] = {.lex_state = 107, .external_lex_state = 1}, + [12007] = {.lex_state = 107, .external_lex_state = 1}, + [12008] = {.lex_state = 125, .external_lex_state = 1}, + [12009] = {.lex_state = 125, .external_lex_state = 1}, + [12010] = {.lex_state = 125, .external_lex_state = 1}, + [12011] = {.lex_state = 125, .external_lex_state = 1}, + [12012] = {.lex_state = 125, .external_lex_state = 1}, + [12013] = {.lex_state = 125, .external_lex_state = 1}, + [12014] = {.lex_state = 125, .external_lex_state = 1}, + [12015] = {.lex_state = 125, .external_lex_state = 1}, + [12016] = {.lex_state = 125, .external_lex_state = 1}, + [12017] = {.lex_state = 125, .external_lex_state = 1}, + [12018] = {.lex_state = 125, .external_lex_state = 1}, + [12019] = {.lex_state = 125, .external_lex_state = 1}, + [12020] = {.lex_state = 125, .external_lex_state = 1}, + [12021] = {.lex_state = 125, .external_lex_state = 1}, + [12022] = {.lex_state = 125, .external_lex_state = 1}, + [12023] = {.lex_state = 125, .external_lex_state = 1}, + [12024] = {.lex_state = 227, .external_lex_state = 1}, + [12025] = {.lex_state = 227, .external_lex_state = 1}, + [12026] = {.lex_state = 227, .external_lex_state = 1}, + [12027] = {.lex_state = 227, .external_lex_state = 1}, + [12028] = {.lex_state = 227, .external_lex_state = 1}, + [12029] = {.lex_state = 125, .external_lex_state = 1}, + [12030] = {.lex_state = 227, .external_lex_state = 1}, + [12031] = {.lex_state = 227, .external_lex_state = 1}, + [12032] = {.lex_state = 125, .external_lex_state = 1}, + [12033] = {.lex_state = 125, .external_lex_state = 1}, + [12034] = {.lex_state = 227, .external_lex_state = 1}, + [12035] = {.lex_state = 227, .external_lex_state = 1}, + [12036] = {.lex_state = 227, .external_lex_state = 1}, + [12037] = {.lex_state = 227, .external_lex_state = 1}, + [12038] = {.lex_state = 227, .external_lex_state = 1}, + [12039] = {.lex_state = 125, .external_lex_state = 1}, + [12040] = {.lex_state = 125, .external_lex_state = 1}, + [12041] = {.lex_state = 227, .external_lex_state = 1}, + [12042] = {.lex_state = 125, .external_lex_state = 1}, + [12043] = {.lex_state = 125, .external_lex_state = 1}, + [12044] = {.lex_state = 125, .external_lex_state = 1}, + [12045] = {.lex_state = 125, .external_lex_state = 1}, + [12046] = {.lex_state = 227, .external_lex_state = 1}, + [12047] = {.lex_state = 227, .external_lex_state = 1}, + [12048] = {.lex_state = 125, .external_lex_state = 1}, + [12049] = {.lex_state = 125, .external_lex_state = 1}, + [12050] = {.lex_state = 227, .external_lex_state = 1}, + [12051] = {.lex_state = 125, .external_lex_state = 1}, + [12052] = {.lex_state = 546, .external_lex_state = 1}, + [12053] = {.lex_state = 546, .external_lex_state = 1}, + [12054] = {.lex_state = 125, .external_lex_state = 1}, + [12055] = {.lex_state = 125, .external_lex_state = 1}, + [12056] = {.lex_state = 128, .external_lex_state = 1}, + [12057] = {.lex_state = 125, .external_lex_state = 1}, + [12058] = {.lex_state = 125, .external_lex_state = 1}, + [12059] = {.lex_state = 546, .external_lex_state = 1}, + [12060] = {.lex_state = 546, .external_lex_state = 1}, + [12061] = {.lex_state = 125, .external_lex_state = 1}, + [12062] = {.lex_state = 125, .external_lex_state = 1}, + [12063] = {.lex_state = 125, .external_lex_state = 1}, + [12064] = {.lex_state = 546, .external_lex_state = 1}, + [12065] = {.lex_state = 125, .external_lex_state = 1}, + [12066] = {.lex_state = 125, .external_lex_state = 1}, + [12067] = {.lex_state = 567, .external_lex_state = 1}, + [12068] = {.lex_state = 125, .external_lex_state = 1}, + [12069] = {.lex_state = 546, .external_lex_state = 1}, + [12070] = {.lex_state = 125, .external_lex_state = 1}, + [12071] = {.lex_state = 152, .external_lex_state = 1}, + [12072] = {.lex_state = 152, .external_lex_state = 1}, + [12073] = {.lex_state = 152, .external_lex_state = 1}, + [12074] = {.lex_state = 152, .external_lex_state = 1}, + [12075] = {.lex_state = 152, .external_lex_state = 1}, + [12076] = {.lex_state = 152, .external_lex_state = 1}, + [12077] = {.lex_state = 152, .external_lex_state = 1}, + [12078] = {.lex_state = 152, .external_lex_state = 1}, + [12079] = {.lex_state = 152, .external_lex_state = 1}, + [12080] = {.lex_state = 152, .external_lex_state = 1}, + [12081] = {.lex_state = 152, .external_lex_state = 1}, + [12082] = {.lex_state = 152, .external_lex_state = 1}, + [12083] = {.lex_state = 122, .external_lex_state = 1}, + [12084] = {.lex_state = 152, .external_lex_state = 1}, + [12085] = {.lex_state = 125, .external_lex_state = 1}, + [12086] = {.lex_state = 152, .external_lex_state = 1}, + [12087] = {.lex_state = 152, .external_lex_state = 1}, + [12088] = {.lex_state = 125, .external_lex_state = 1}, + [12089] = {.lex_state = 152, .external_lex_state = 1}, + [12090] = {.lex_state = 125, .external_lex_state = 1}, + [12091] = {.lex_state = 125, .external_lex_state = 1}, + [12092] = {.lex_state = 125, .external_lex_state = 1}, + [12093] = {.lex_state = 546, .external_lex_state = 1}, + [12094] = {.lex_state = 546, .external_lex_state = 1}, + [12095] = {.lex_state = 546, .external_lex_state = 1}, + [12096] = {.lex_state = 125, .external_lex_state = 1}, + [12097] = {.lex_state = 194, .external_lex_state = 1}, + [12098] = {.lex_state = 194, .external_lex_state = 1}, + [12099] = {.lex_state = 194, .external_lex_state = 1}, + [12100] = {.lex_state = 194, .external_lex_state = 1}, + [12101] = {.lex_state = 194, .external_lex_state = 1}, + [12102] = {.lex_state = 125, .external_lex_state = 1}, + [12103] = {.lex_state = 194, .external_lex_state = 1}, + [12104] = {.lex_state = 194, .external_lex_state = 1}, + [12105] = {.lex_state = 122, .external_lex_state = 1}, + [12106] = {.lex_state = 194, .external_lex_state = 1}, + [12107] = {.lex_state = 546, .external_lex_state = 1}, + [12108] = {.lex_state = 194, .external_lex_state = 1}, + [12109] = {.lex_state = 125, .external_lex_state = 1}, + [12110] = {.lex_state = 194, .external_lex_state = 1}, + [12111] = {.lex_state = 194, .external_lex_state = 1}, + [12112] = {.lex_state = 194, .external_lex_state = 1}, + [12113] = {.lex_state = 194, .external_lex_state = 1}, + [12114] = {.lex_state = 125, .external_lex_state = 1}, + [12115] = {.lex_state = 225, .external_lex_state = 1}, + [12116] = {.lex_state = 125, .external_lex_state = 1}, + [12117] = {.lex_state = 109, .external_lex_state = 1}, + [12118] = {.lex_state = 109, .external_lex_state = 1}, + [12119] = {.lex_state = 125, .external_lex_state = 1}, + [12120] = {.lex_state = 109, .external_lex_state = 1}, + [12121] = {.lex_state = 109, .external_lex_state = 1}, + [12122] = {.lex_state = 109, .external_lex_state = 1}, + [12123] = {.lex_state = 109, .external_lex_state = 1}, + [12124] = {.lex_state = 109, .external_lex_state = 1}, + [12125] = {.lex_state = 109, .external_lex_state = 1}, + [12126] = {.lex_state = 125, .external_lex_state = 1}, + [12127] = {.lex_state = 109, .external_lex_state = 1}, + [12128] = {.lex_state = 109, .external_lex_state = 1}, + [12129] = {.lex_state = 109, .external_lex_state = 1}, + [12130] = {.lex_state = 125, .external_lex_state = 1}, + [12131] = {.lex_state = 125, .external_lex_state = 1}, + [12132] = {.lex_state = 182, .external_lex_state = 1}, + [12133] = {.lex_state = 182, .external_lex_state = 1}, + [12134] = {.lex_state = 182, .external_lex_state = 1}, + [12135] = {.lex_state = 125, .external_lex_state = 1}, + [12136] = {.lex_state = 182, .external_lex_state = 1}, + [12137] = {.lex_state = 109, .external_lex_state = 1}, + [12138] = {.lex_state = 109, .external_lex_state = 1}, + [12139] = {.lex_state = 109, .external_lex_state = 1}, + [12140] = {.lex_state = 109, .external_lex_state = 1}, + [12141] = {.lex_state = 194, .external_lex_state = 1}, + [12142] = {.lex_state = 125, .external_lex_state = 1}, + [12143] = {.lex_state = 109, .external_lex_state = 1}, + [12144] = {.lex_state = 109, .external_lex_state = 1}, + [12145] = {.lex_state = 109, .external_lex_state = 1}, + [12146] = {.lex_state = 109, .external_lex_state = 1}, + [12147] = {.lex_state = 546, .external_lex_state = 1}, + [12148] = {.lex_state = 194, .external_lex_state = 1}, + [12149] = {.lex_state = 125, .external_lex_state = 1}, + [12150] = {.lex_state = 182, .external_lex_state = 1}, + [12151] = {.lex_state = 182, .external_lex_state = 1}, + [12152] = {.lex_state = 182, .external_lex_state = 1}, + [12153] = {.lex_state = 125, .external_lex_state = 1}, + [12154] = {.lex_state = 125, .external_lex_state = 1}, + [12155] = {.lex_state = 125, .external_lex_state = 1}, + [12156] = {.lex_state = 109, .external_lex_state = 1}, + [12157] = {.lex_state = 125, .external_lex_state = 1}, + [12158] = {.lex_state = 182, .external_lex_state = 1}, + [12159] = {.lex_state = 182, .external_lex_state = 1}, + [12160] = {.lex_state = 125, .external_lex_state = 1}, + [12161] = {.lex_state = 125, .external_lex_state = 1}, + [12162] = {.lex_state = 125, .external_lex_state = 1}, + [12163] = {.lex_state = 125, .external_lex_state = 1}, + [12164] = {.lex_state = 109, .external_lex_state = 1}, + [12165] = {.lex_state = 125, .external_lex_state = 1}, + [12166] = {.lex_state = 125, .external_lex_state = 1}, + [12167] = {.lex_state = 122, .external_lex_state = 1}, + [12168] = {.lex_state = 125, .external_lex_state = 1}, + [12169] = {.lex_state = 194, .external_lex_state = 1}, + [12170] = {.lex_state = 182, .external_lex_state = 1}, + [12171] = {.lex_state = 125, .external_lex_state = 1}, + [12172] = {.lex_state = 125, .external_lex_state = 1}, + [12173] = {.lex_state = 109, .external_lex_state = 1}, + [12174] = {.lex_state = 109, .external_lex_state = 1}, + [12175] = {.lex_state = 122, .external_lex_state = 1}, + [12176] = {.lex_state = 109, .external_lex_state = 1}, + [12177] = {.lex_state = 229, .external_lex_state = 1}, + [12178] = {.lex_state = 125, .external_lex_state = 1}, + [12179] = {.lex_state = 182, .external_lex_state = 1}, + [12180] = {.lex_state = 125, .external_lex_state = 1}, + [12181] = {.lex_state = 109, .external_lex_state = 1}, + [12182] = {.lex_state = 125, .external_lex_state = 1}, + [12183] = {.lex_state = 125, .external_lex_state = 1}, + [12184] = {.lex_state = 109, .external_lex_state = 1}, + [12185] = {.lex_state = 109, .external_lex_state = 1}, + [12186] = {.lex_state = 182, .external_lex_state = 1}, + [12187] = {.lex_state = 182, .external_lex_state = 1}, + [12188] = {.lex_state = 125, .external_lex_state = 1}, + [12189] = {.lex_state = 182, .external_lex_state = 1}, + [12190] = {.lex_state = 125, .external_lex_state = 1}, + [12191] = {.lex_state = 125, .external_lex_state = 1}, + [12192] = {.lex_state = 125, .external_lex_state = 1}, + [12193] = {.lex_state = 125, .external_lex_state = 1}, + [12194] = {.lex_state = 125, .external_lex_state = 1}, + [12195] = {.lex_state = 125, .external_lex_state = 1}, + [12196] = {.lex_state = 182, .external_lex_state = 1}, + [12197] = {.lex_state = 109, .external_lex_state = 1}, + [12198] = {.lex_state = 125, .external_lex_state = 1}, + [12199] = {.lex_state = 109, .external_lex_state = 1}, + [12200] = {.lex_state = 109, .external_lex_state = 1}, + [12201] = {.lex_state = 109, .external_lex_state = 1}, + [12202] = {.lex_state = 109, .external_lex_state = 1}, + [12203] = {.lex_state = 109, .external_lex_state = 1}, + [12204] = {.lex_state = 109, .external_lex_state = 1}, + [12205] = {.lex_state = 109, .external_lex_state = 1}, + [12206] = {.lex_state = 109, .external_lex_state = 1}, + [12207] = {.lex_state = 109, .external_lex_state = 1}, + [12208] = {.lex_state = 131, .external_lex_state = 1}, + [12209] = {.lex_state = 125, .external_lex_state = 1}, + [12210] = {.lex_state = 125, .external_lex_state = 1}, + [12211] = {.lex_state = 125, .external_lex_state = 1}, + [12212] = {.lex_state = 109, .external_lex_state = 1}, + [12213] = {.lex_state = 125, .external_lex_state = 1}, + [12214] = {.lex_state = 109, .external_lex_state = 1}, + [12215] = {.lex_state = 109, .external_lex_state = 1}, + [12216] = {.lex_state = 109, .external_lex_state = 1}, + [12217] = {.lex_state = 109, .external_lex_state = 1}, + [12218] = {.lex_state = 109, .external_lex_state = 1}, + [12219] = {.lex_state = 125, .external_lex_state = 1}, + [12220] = {.lex_state = 109, .external_lex_state = 1}, + [12221] = {.lex_state = 125, .external_lex_state = 1}, + [12222] = {.lex_state = 125, .external_lex_state = 1}, + [12223] = {.lex_state = 125, .external_lex_state = 1}, + [12224] = {.lex_state = 109, .external_lex_state = 1}, + [12225] = {.lex_state = 109, .external_lex_state = 1}, + [12226] = {.lex_state = 109, .external_lex_state = 1}, + [12227] = {.lex_state = 109, .external_lex_state = 1}, + [12228] = {.lex_state = 125, .external_lex_state = 1}, + [12229] = {.lex_state = 125, .external_lex_state = 1}, + [12230] = {.lex_state = 125, .external_lex_state = 1}, + [12231] = {.lex_state = 125, .external_lex_state = 1}, + [12232] = {.lex_state = 125, .external_lex_state = 1}, + [12233] = {.lex_state = 125, .external_lex_state = 1}, + [12234] = {.lex_state = 125, .external_lex_state = 1}, + [12235] = {.lex_state = 109, .external_lex_state = 1}, + [12236] = {.lex_state = 109, .external_lex_state = 1}, + [12237] = {.lex_state = 109, .external_lex_state = 1}, + [12238] = {.lex_state = 125, .external_lex_state = 1}, + [12239] = {.lex_state = 109, .external_lex_state = 1}, + [12240] = {.lex_state = 109, .external_lex_state = 1}, + [12241] = {.lex_state = 125, .external_lex_state = 1}, + [12242] = {.lex_state = 109, .external_lex_state = 1}, + [12243] = {.lex_state = 125, .external_lex_state = 1}, + [12244] = {.lex_state = 125, .external_lex_state = 1}, + [12245] = {.lex_state = 125, .external_lex_state = 1}, + [12246] = {.lex_state = 125, .external_lex_state = 1}, + [12247] = {.lex_state = 125, .external_lex_state = 1}, + [12248] = {.lex_state = 546, .external_lex_state = 1}, + [12249] = {.lex_state = 125, .external_lex_state = 1}, + [12250] = {.lex_state = 109, .external_lex_state = 1}, + [12251] = {.lex_state = 109, .external_lex_state = 1}, + [12252] = {.lex_state = 131, .external_lex_state = 1}, + [12253] = {.lex_state = 109, .external_lex_state = 1}, + [12254] = {.lex_state = 128, .external_lex_state = 1}, + [12255] = {.lex_state = 125, .external_lex_state = 1}, + [12256] = {.lex_state = 125, .external_lex_state = 1}, + [12257] = {.lex_state = 125, .external_lex_state = 1}, + [12258] = {.lex_state = 101, .external_lex_state = 1}, + [12259] = {.lex_state = 119, .external_lex_state = 1}, + [12260] = {.lex_state = 546, .external_lex_state = 1}, + [12261] = {.lex_state = 101, .external_lex_state = 1}, + [12262] = {.lex_state = 131, .external_lex_state = 1}, + [12263] = {.lex_state = 101, .external_lex_state = 1}, + [12264] = {.lex_state = 125, .external_lex_state = 1}, + [12265] = {.lex_state = 125, .external_lex_state = 1}, + [12266] = {.lex_state = 101, .external_lex_state = 1}, + [12267] = {.lex_state = 101, .external_lex_state = 1}, + [12268] = {.lex_state = 125, .external_lex_state = 1}, + [12269] = {.lex_state = 101, .external_lex_state = 1}, + [12270] = {.lex_state = 101, .external_lex_state = 1}, + [12271] = {.lex_state = 109, .external_lex_state = 1}, + [12272] = {.lex_state = 131, .external_lex_state = 1}, + [12273] = {.lex_state = 131, .external_lex_state = 1}, + [12274] = {.lex_state = 101, .external_lex_state = 1}, + [12275] = {.lex_state = 101, .external_lex_state = 1}, + [12276] = {.lex_state = 125, .external_lex_state = 1}, + [12277] = {.lex_state = 101, .external_lex_state = 1}, + [12278] = {.lex_state = 101, .external_lex_state = 1}, + [12279] = {.lex_state = 125, .external_lex_state = 1}, + [12280] = {.lex_state = 125, .external_lex_state = 1}, + [12281] = {.lex_state = 131, .external_lex_state = 1}, + [12282] = {.lex_state = 125, .external_lex_state = 1}, + [12283] = {.lex_state = 125, .external_lex_state = 1}, + [12284] = {.lex_state = 131, .external_lex_state = 1}, + [12285] = {.lex_state = 125, .external_lex_state = 1}, + [12286] = {.lex_state = 125, .external_lex_state = 1}, + [12287] = {.lex_state = 131, .external_lex_state = 1}, + [12288] = {.lex_state = 131, .external_lex_state = 1}, + [12289] = {.lex_state = 131, .external_lex_state = 1}, + [12290] = {.lex_state = 125, .external_lex_state = 1}, + [12291] = {.lex_state = 125, .external_lex_state = 1}, + [12292] = {.lex_state = 131, .external_lex_state = 1}, + [12293] = {.lex_state = 125, .external_lex_state = 1}, + [12294] = {.lex_state = 125, .external_lex_state = 1}, + [12295] = {.lex_state = 125, .external_lex_state = 1}, + [12296] = {.lex_state = 101, .external_lex_state = 1}, + [12297] = {.lex_state = 125, .external_lex_state = 1}, + [12298] = {.lex_state = 101, .external_lex_state = 1}, + [12299] = {.lex_state = 101, .external_lex_state = 1}, + [12300] = {.lex_state = 101, .external_lex_state = 1}, + [12301] = {.lex_state = 101, .external_lex_state = 1}, + [12302] = {.lex_state = 131, .external_lex_state = 1}, + [12303] = {.lex_state = 101, .external_lex_state = 1}, + [12304] = {.lex_state = 101, .external_lex_state = 1}, + [12305] = {.lex_state = 101, .external_lex_state = 1}, + [12306] = {.lex_state = 125, .external_lex_state = 1}, + [12307] = {.lex_state = 131, .external_lex_state = 1}, + [12308] = {.lex_state = 125, .external_lex_state = 1}, + [12309] = {.lex_state = 128, .external_lex_state = 1}, + [12310] = {.lex_state = 131, .external_lex_state = 1}, + [12311] = {.lex_state = 125, .external_lex_state = 1}, + [12312] = {.lex_state = 128, .external_lex_state = 1}, + [12313] = {.lex_state = 131, .external_lex_state = 1}, + [12314] = {.lex_state = 101, .external_lex_state = 1}, + [12315] = {.lex_state = 125, .external_lex_state = 1}, + [12316] = {.lex_state = 128, .external_lex_state = 1}, + [12317] = {.lex_state = 131, .external_lex_state = 1}, + [12318] = {.lex_state = 125, .external_lex_state = 1}, + [12319] = {.lex_state = 131, .external_lex_state = 1}, + [12320] = {.lex_state = 128, .external_lex_state = 1}, + [12321] = {.lex_state = 128, .external_lex_state = 1}, + [12322] = {.lex_state = 131, .external_lex_state = 1}, + [12323] = {.lex_state = 125, .external_lex_state = 1}, + [12324] = {.lex_state = 128, .external_lex_state = 1}, + [12325] = {.lex_state = 128, .external_lex_state = 1}, + [12326] = {.lex_state = 131, .external_lex_state = 1}, + [12327] = {.lex_state = 125, .external_lex_state = 1}, + [12328] = {.lex_state = 101, .external_lex_state = 1}, + [12329] = {.lex_state = 546, .external_lex_state = 1}, + [12330] = {.lex_state = 131, .external_lex_state = 1}, + [12331] = {.lex_state = 131, .external_lex_state = 1}, + [12332] = {.lex_state = 125, .external_lex_state = 1}, + [12333] = {.lex_state = 131, .external_lex_state = 1}, + [12334] = {.lex_state = 131, .external_lex_state = 1}, + [12335] = {.lex_state = 125, .external_lex_state = 1}, + [12336] = {.lex_state = 131, .external_lex_state = 1}, + [12337] = {.lex_state = 128, .external_lex_state = 1}, + [12338] = {.lex_state = 128, .external_lex_state = 1}, + [12339] = {.lex_state = 131, .external_lex_state = 1}, + [12340] = {.lex_state = 131, .external_lex_state = 1}, + [12341] = {.lex_state = 131, .external_lex_state = 1}, + [12342] = {.lex_state = 125, .external_lex_state = 1}, + [12343] = {.lex_state = 125, .external_lex_state = 1}, + [12344] = {.lex_state = 125, .external_lex_state = 1}, + [12345] = {.lex_state = 131, .external_lex_state = 1}, + [12346] = {.lex_state = 131, .external_lex_state = 1}, + [12347] = {.lex_state = 131, .external_lex_state = 1}, + [12348] = {.lex_state = 125, .external_lex_state = 1}, + [12349] = {.lex_state = 131, .external_lex_state = 1}, + [12350] = {.lex_state = 125, .external_lex_state = 1}, + [12351] = {.lex_state = 131, .external_lex_state = 1}, + [12352] = {.lex_state = 131, .external_lex_state = 1}, + [12353] = {.lex_state = 101, .external_lex_state = 1}, + [12354] = {.lex_state = 125, .external_lex_state = 1}, + [12355] = {.lex_state = 131, .external_lex_state = 1}, + [12356] = {.lex_state = 101, .external_lex_state = 1}, + [12357] = {.lex_state = 125, .external_lex_state = 1}, + [12358] = {.lex_state = 131, .external_lex_state = 1}, + [12359] = {.lex_state = 125, .external_lex_state = 1}, + [12360] = {.lex_state = 125, .external_lex_state = 1}, + [12361] = {.lex_state = 125, .external_lex_state = 1}, + [12362] = {.lex_state = 131, .external_lex_state = 1}, + [12363] = {.lex_state = 125, .external_lex_state = 1}, + [12364] = {.lex_state = 101, .external_lex_state = 1}, + [12365] = {.lex_state = 101, .external_lex_state = 1}, + [12366] = {.lex_state = 131, .external_lex_state = 1}, + [12367] = {.lex_state = 101, .external_lex_state = 1}, + [12368] = {.lex_state = 125, .external_lex_state = 1}, + [12369] = {.lex_state = 131, .external_lex_state = 1}, + [12370] = {.lex_state = 101, .external_lex_state = 1}, + [12371] = {.lex_state = 125, .external_lex_state = 1}, + [12372] = {.lex_state = 131, .external_lex_state = 1}, + [12373] = {.lex_state = 131, .external_lex_state = 1}, + [12374] = {.lex_state = 131, .external_lex_state = 1}, + [12375] = {.lex_state = 131, .external_lex_state = 1}, + [12376] = {.lex_state = 125, .external_lex_state = 1}, + [12377] = {.lex_state = 125, .external_lex_state = 1}, + [12378] = {.lex_state = 131, .external_lex_state = 1}, + [12379] = {.lex_state = 125, .external_lex_state = 1}, + [12380] = {.lex_state = 131, .external_lex_state = 1}, + [12381] = {.lex_state = 131, .external_lex_state = 1}, + [12382] = {.lex_state = 131, .external_lex_state = 1}, + [12383] = {.lex_state = 131, .external_lex_state = 1}, + [12384] = {.lex_state = 125, .external_lex_state = 1}, + [12385] = {.lex_state = 131, .external_lex_state = 1}, + [12386] = {.lex_state = 101, .external_lex_state = 1}, + [12387] = {.lex_state = 125, .external_lex_state = 1}, + [12388] = {.lex_state = 125, .external_lex_state = 1}, + [12389] = {.lex_state = 131, .external_lex_state = 1}, + [12390] = {.lex_state = 131, .external_lex_state = 1}, + [12391] = {.lex_state = 125, .external_lex_state = 1}, + [12392] = {.lex_state = 182, .external_lex_state = 1}, + [12393] = {.lex_state = 131, .external_lex_state = 1}, + [12394] = {.lex_state = 131, .external_lex_state = 1}, + [12395] = {.lex_state = 131, .external_lex_state = 1}, + [12396] = {.lex_state = 125, .external_lex_state = 1}, + [12397] = {.lex_state = 125, .external_lex_state = 1}, + [12398] = {.lex_state = 131, .external_lex_state = 1}, + [12399] = {.lex_state = 131, .external_lex_state = 1}, + [12400] = {.lex_state = 131, .external_lex_state = 1}, + [12401] = {.lex_state = 131, .external_lex_state = 1}, + [12402] = {.lex_state = 125, .external_lex_state = 1}, + [12403] = {.lex_state = 125, .external_lex_state = 1}, + [12404] = {.lex_state = 125, .external_lex_state = 1}, + [12405] = {.lex_state = 131, .external_lex_state = 1}, + [12406] = {.lex_state = 125, .external_lex_state = 1}, + [12407] = {.lex_state = 125, .external_lex_state = 1}, + [12408] = {.lex_state = 125, .external_lex_state = 1}, + [12409] = {.lex_state = 125, .external_lex_state = 1}, + [12410] = {.lex_state = 546, .external_lex_state = 1}, + [12411] = {.lex_state = 546, .external_lex_state = 1}, + [12412] = {.lex_state = 131, .external_lex_state = 1}, + [12413] = {.lex_state = 125, .external_lex_state = 1}, + [12414] = {.lex_state = 125, .external_lex_state = 1}, + [12415] = {.lex_state = 131, .external_lex_state = 1}, + [12416] = {.lex_state = 131, .external_lex_state = 1}, + [12417] = {.lex_state = 131, .external_lex_state = 1}, + [12418] = {.lex_state = 131, .external_lex_state = 1}, + [12419] = {.lex_state = 101, .external_lex_state = 1}, + [12420] = {.lex_state = 101, .external_lex_state = 1}, + [12421] = {.lex_state = 101, .external_lex_state = 1}, + [12422] = {.lex_state = 101, .external_lex_state = 1}, + [12423] = {.lex_state = 101, .external_lex_state = 1}, + [12424] = {.lex_state = 101, .external_lex_state = 1}, + [12425] = {.lex_state = 101, .external_lex_state = 1}, + [12426] = {.lex_state = 125, .external_lex_state = 1}, + [12427] = {.lex_state = 131, .external_lex_state = 1}, + [12428] = {.lex_state = 131, .external_lex_state = 1}, + [12429] = {.lex_state = 131, .external_lex_state = 1}, + [12430] = {.lex_state = 125, .external_lex_state = 1}, + [12431] = {.lex_state = 101, .external_lex_state = 1}, + [12432] = {.lex_state = 101, .external_lex_state = 1}, + [12433] = {.lex_state = 131, .external_lex_state = 1}, + [12434] = {.lex_state = 125, .external_lex_state = 1}, + [12435] = {.lex_state = 131, .external_lex_state = 1}, + [12436] = {.lex_state = 131, .external_lex_state = 1}, + [12437] = {.lex_state = 125, .external_lex_state = 1}, + [12438] = {.lex_state = 125, .external_lex_state = 1}, + [12439] = {.lex_state = 131, .external_lex_state = 1}, + [12440] = {.lex_state = 131, .external_lex_state = 1}, + [12441] = {.lex_state = 131, .external_lex_state = 1}, + [12442] = {.lex_state = 125, .external_lex_state = 1}, + [12443] = {.lex_state = 125, .external_lex_state = 1}, + [12444] = {.lex_state = 125, .external_lex_state = 1}, + [12445] = {.lex_state = 125, .external_lex_state = 1}, + [12446] = {.lex_state = 125, .external_lex_state = 1}, + [12447] = {.lex_state = 125, .external_lex_state = 1}, + [12448] = {.lex_state = 131, .external_lex_state = 1}, + [12449] = {.lex_state = 101, .external_lex_state = 1}, + [12450] = {.lex_state = 125, .external_lex_state = 1}, + [12451] = {.lex_state = 125, .external_lex_state = 1}, + [12452] = {.lex_state = 101, .external_lex_state = 1}, + [12453] = {.lex_state = 125, .external_lex_state = 1}, + [12454] = {.lex_state = 125, .external_lex_state = 1}, + [12455] = {.lex_state = 125, .external_lex_state = 1}, + [12456] = {.lex_state = 125, .external_lex_state = 1}, + [12457] = {.lex_state = 125, .external_lex_state = 1}, + [12458] = {.lex_state = 125, .external_lex_state = 1}, + [12459] = {.lex_state = 101, .external_lex_state = 1}, + [12460] = {.lex_state = 101, .external_lex_state = 1}, + [12461] = {.lex_state = 125, .external_lex_state = 1}, + [12462] = {.lex_state = 101, .external_lex_state = 1}, + [12463] = {.lex_state = 125, .external_lex_state = 1}, + [12464] = {.lex_state = 131, .external_lex_state = 1}, + [12465] = {.lex_state = 101, .external_lex_state = 1}, + [12466] = {.lex_state = 125, .external_lex_state = 1}, + [12467] = {.lex_state = 101, .external_lex_state = 1}, + [12468] = {.lex_state = 125, .external_lex_state = 1}, + [12469] = {.lex_state = 125, .external_lex_state = 1}, + [12470] = {.lex_state = 125, .external_lex_state = 1}, + [12471] = {.lex_state = 125, .external_lex_state = 1}, + [12472] = {.lex_state = 101, .external_lex_state = 1}, + [12473] = {.lex_state = 101, .external_lex_state = 1}, + [12474] = {.lex_state = 101, .external_lex_state = 1}, + [12475] = {.lex_state = 125, .external_lex_state = 1}, + [12476] = {.lex_state = 101, .external_lex_state = 1}, + [12477] = {.lex_state = 125, .external_lex_state = 1}, + [12478] = {.lex_state = 125, .external_lex_state = 1}, + [12479] = {.lex_state = 125, .external_lex_state = 1}, + [12480] = {.lex_state = 125, .external_lex_state = 1}, + [12481] = {.lex_state = 125, .external_lex_state = 1}, + [12482] = {.lex_state = 125, .external_lex_state = 1}, + [12483] = {.lex_state = 125, .external_lex_state = 1}, + [12484] = {.lex_state = 125, .external_lex_state = 1}, + [12485] = {.lex_state = 125, .external_lex_state = 1}, + [12486] = {.lex_state = 125, .external_lex_state = 1}, + [12487] = {.lex_state = 125, .external_lex_state = 1}, + [12488] = {.lex_state = 131, .external_lex_state = 1}, + [12489] = {.lex_state = 125, .external_lex_state = 1}, + [12490] = {.lex_state = 125, .external_lex_state = 1}, + [12491] = {.lex_state = 125, .external_lex_state = 1}, + [12492] = {.lex_state = 101, .external_lex_state = 1}, + [12493] = {.lex_state = 125, .external_lex_state = 1}, + [12494] = {.lex_state = 101, .external_lex_state = 1}, + [12495] = {.lex_state = 125, .external_lex_state = 1}, + [12496] = {.lex_state = 125, .external_lex_state = 1}, + [12497] = {.lex_state = 125, .external_lex_state = 1}, + [12498] = {.lex_state = 101, .external_lex_state = 1}, + [12499] = {.lex_state = 125, .external_lex_state = 1}, + [12500] = {.lex_state = 101, .external_lex_state = 1}, + [12501] = {.lex_state = 101, .external_lex_state = 1}, + [12502] = {.lex_state = 101, .external_lex_state = 1}, + [12503] = {.lex_state = 125, .external_lex_state = 1}, + [12504] = {.lex_state = 125, .external_lex_state = 1}, + [12505] = {.lex_state = 125, .external_lex_state = 1}, + [12506] = {.lex_state = 546, .external_lex_state = 1}, + [12507] = {.lex_state = 125, .external_lex_state = 1}, + [12508] = {.lex_state = 125, .external_lex_state = 1}, + [12509] = {.lex_state = 125, .external_lex_state = 1}, + [12510] = {.lex_state = 122, .external_lex_state = 1}, + [12511] = {.lex_state = 125, .external_lex_state = 1}, + [12512] = {.lex_state = 125, .external_lex_state = 1}, + [12513] = {.lex_state = 125, .external_lex_state = 1}, + [12514] = {.lex_state = 101, .external_lex_state = 1}, + [12515] = {.lex_state = 101, .external_lex_state = 1}, + [12516] = {.lex_state = 125, .external_lex_state = 1}, + [12517] = {.lex_state = 125, .external_lex_state = 1}, + [12518] = {.lex_state = 101, .external_lex_state = 1}, + [12519] = {.lex_state = 125, .external_lex_state = 1}, + [12520] = {.lex_state = 125, .external_lex_state = 1}, + [12521] = {.lex_state = 125, .external_lex_state = 1}, + [12522] = {.lex_state = 125, .external_lex_state = 1}, + [12523] = {.lex_state = 125, .external_lex_state = 1}, + [12524] = {.lex_state = 125, .external_lex_state = 1}, + [12525] = {.lex_state = 125, .external_lex_state = 1}, + [12526] = {.lex_state = 125, .external_lex_state = 1}, + [12527] = {.lex_state = 125, .external_lex_state = 1}, + [12528] = {.lex_state = 125, .external_lex_state = 1}, + [12529] = {.lex_state = 125, .external_lex_state = 1}, + [12530] = {.lex_state = 125, .external_lex_state = 1}, + [12531] = {.lex_state = 125, .external_lex_state = 1}, + [12532] = {.lex_state = 125, .external_lex_state = 1}, + [12533] = {.lex_state = 125, .external_lex_state = 1}, + [12534] = {.lex_state = 125, .external_lex_state = 1}, + [12535] = {.lex_state = 125, .external_lex_state = 1}, + [12536] = {.lex_state = 125, .external_lex_state = 1}, + [12537] = {.lex_state = 125, .external_lex_state = 1}, + [12538] = {.lex_state = 125, .external_lex_state = 1}, + [12539] = {.lex_state = 125, .external_lex_state = 1}, + [12540] = {.lex_state = 125, .external_lex_state = 1}, + [12541] = {.lex_state = 125, .external_lex_state = 1}, + [12542] = {.lex_state = 125, .external_lex_state = 1}, + [12543] = {.lex_state = 125, .external_lex_state = 1}, + [12544] = {.lex_state = 125, .external_lex_state = 1}, + [12545] = {.lex_state = 125, .external_lex_state = 1}, + [12546] = {.lex_state = 125, .external_lex_state = 1}, + [12547] = {.lex_state = 125, .external_lex_state = 1}, + [12548] = {.lex_state = 125, .external_lex_state = 1}, + [12549] = {.lex_state = 125, .external_lex_state = 1}, + [12550] = {.lex_state = 125, .external_lex_state = 1}, + [12551] = {.lex_state = 125, .external_lex_state = 1}, + [12552] = {.lex_state = 125, .external_lex_state = 1}, + [12553] = {.lex_state = 125, .external_lex_state = 1}, + [12554] = {.lex_state = 125, .external_lex_state = 1}, + [12555] = {.lex_state = 125, .external_lex_state = 1}, + [12556] = {.lex_state = 125, .external_lex_state = 1}, + [12557] = {.lex_state = 125, .external_lex_state = 1}, + [12558] = {.lex_state = 125, .external_lex_state = 1}, + [12559] = {.lex_state = 125, .external_lex_state = 1}, + [12560] = {.lex_state = 125, .external_lex_state = 1}, + [12561] = {.lex_state = 125, .external_lex_state = 1}, + [12562] = {.lex_state = 125, .external_lex_state = 1}, + [12563] = {.lex_state = 125, .external_lex_state = 1}, + [12564] = {.lex_state = 125, .external_lex_state = 1}, + [12565] = {.lex_state = 125, .external_lex_state = 1}, + [12566] = {.lex_state = 125, .external_lex_state = 1}, + [12567] = {.lex_state = 125, .external_lex_state = 1}, + [12568] = {.lex_state = 125, .external_lex_state = 1}, + [12569] = {.lex_state = 125, .external_lex_state = 1}, + [12570] = {.lex_state = 125, .external_lex_state = 1}, + [12571] = {.lex_state = 125, .external_lex_state = 1}, + [12572] = {.lex_state = 125, .external_lex_state = 1}, + [12573] = {.lex_state = 125, .external_lex_state = 1}, + [12574] = {.lex_state = 125, .external_lex_state = 1}, + [12575] = {.lex_state = 125, .external_lex_state = 1}, + [12576] = {.lex_state = 125, .external_lex_state = 1}, + [12577] = {.lex_state = 125, .external_lex_state = 1}, + [12578] = {.lex_state = 125, .external_lex_state = 1}, + [12579] = {.lex_state = 125, .external_lex_state = 1}, + [12580] = {.lex_state = 125, .external_lex_state = 1}, + [12581] = {.lex_state = 125, .external_lex_state = 1}, + [12582] = {.lex_state = 101, .external_lex_state = 1}, + [12583] = {.lex_state = 125, .external_lex_state = 1}, + [12584] = {.lex_state = 125, .external_lex_state = 1}, + [12585] = {.lex_state = 125, .external_lex_state = 1}, + [12586] = {.lex_state = 125, .external_lex_state = 1}, + [12587] = {.lex_state = 125, .external_lex_state = 1}, + [12588] = {.lex_state = 125, .external_lex_state = 1}, + [12589] = {.lex_state = 125, .external_lex_state = 1}, + [12590] = {.lex_state = 125, .external_lex_state = 1}, + [12591] = {.lex_state = 125, .external_lex_state = 1}, + [12592] = {.lex_state = 125, .external_lex_state = 1}, + [12593] = {.lex_state = 125, .external_lex_state = 1}, + [12594] = {.lex_state = 125, .external_lex_state = 1}, + [12595] = {.lex_state = 125, .external_lex_state = 1}, + [12596] = {.lex_state = 125, .external_lex_state = 1}, + [12597] = {.lex_state = 125, .external_lex_state = 1}, + [12598] = {.lex_state = 125, .external_lex_state = 1}, + [12599] = {.lex_state = 125, .external_lex_state = 1}, + [12600] = {.lex_state = 122, .external_lex_state = 1}, + [12601] = {.lex_state = 125, .external_lex_state = 1}, + [12602] = {.lex_state = 125, .external_lex_state = 1}, + [12603] = {.lex_state = 125, .external_lex_state = 1}, + [12604] = {.lex_state = 125, .external_lex_state = 1}, + [12605] = {.lex_state = 125, .external_lex_state = 1}, + [12606] = {.lex_state = 125, .external_lex_state = 1}, + [12607] = {.lex_state = 125, .external_lex_state = 1}, + [12608] = {.lex_state = 125, .external_lex_state = 1}, + [12609] = {.lex_state = 546, .external_lex_state = 1}, + [12610] = {.lex_state = 125, .external_lex_state = 1}, + [12611] = {.lex_state = 131, .external_lex_state = 1}, + [12612] = {.lex_state = 125, .external_lex_state = 1}, + [12613] = {.lex_state = 125, .external_lex_state = 1}, + [12614] = {.lex_state = 125, .external_lex_state = 1}, + [12615] = {.lex_state = 131, .external_lex_state = 1}, + [12616] = {.lex_state = 125, .external_lex_state = 1}, + [12617] = {.lex_state = 125, .external_lex_state = 1}, + [12618] = {.lex_state = 125, .external_lex_state = 1}, + [12619] = {.lex_state = 125, .external_lex_state = 1}, + [12620] = {.lex_state = 131, .external_lex_state = 1}, + [12621] = {.lex_state = 131, .external_lex_state = 1}, + [12622] = {.lex_state = 131, .external_lex_state = 1}, + [12623] = {.lex_state = 131, .external_lex_state = 1}, + [12624] = {.lex_state = 131, .external_lex_state = 1}, + [12625] = {.lex_state = 131, .external_lex_state = 1}, + [12626] = {.lex_state = 131, .external_lex_state = 1}, + [12627] = {.lex_state = 131, .external_lex_state = 1}, + [12628] = {.lex_state = 131, .external_lex_state = 1}, + [12629] = {.lex_state = 131, .external_lex_state = 1}, + [12630] = {.lex_state = 131, .external_lex_state = 1}, + [12631] = {.lex_state = 131, .external_lex_state = 1}, + [12632] = {.lex_state = 131, .external_lex_state = 1}, + [12633] = {.lex_state = 131, .external_lex_state = 1}, + [12634] = {.lex_state = 131, .external_lex_state = 1}, + [12635] = {.lex_state = 131, .external_lex_state = 1}, + [12636] = {.lex_state = 131, .external_lex_state = 1}, + [12637] = {.lex_state = 131, .external_lex_state = 1}, + [12638] = {.lex_state = 131, .external_lex_state = 1}, + [12639] = {.lex_state = 131, .external_lex_state = 1}, + [12640] = {.lex_state = 131, .external_lex_state = 1}, + [12641] = {.lex_state = 131, .external_lex_state = 1}, + [12642] = {.lex_state = 131, .external_lex_state = 1}, + [12643] = {.lex_state = 131, .external_lex_state = 1}, + [12644] = {.lex_state = 131, .external_lex_state = 1}, + [12645] = {.lex_state = 546, .external_lex_state = 1}, + [12646] = {.lex_state = 125, .external_lex_state = 1}, + [12647] = {.lex_state = 131, .external_lex_state = 1}, + [12648] = {.lex_state = 131, .external_lex_state = 1}, + [12649] = {.lex_state = 131, .external_lex_state = 1}, + [12650] = {.lex_state = 131, .external_lex_state = 1}, + [12651] = {.lex_state = 131, .external_lex_state = 1}, + [12652] = {.lex_state = 131, .external_lex_state = 1}, + [12653] = {.lex_state = 131, .external_lex_state = 1}, + [12654] = {.lex_state = 131, .external_lex_state = 1}, + [12655] = {.lex_state = 131, .external_lex_state = 1}, + [12656] = {.lex_state = 131, .external_lex_state = 1}, + [12657] = {.lex_state = 131, .external_lex_state = 1}, + [12658] = {.lex_state = 131, .external_lex_state = 1}, + [12659] = {.lex_state = 131, .external_lex_state = 1}, + [12660] = {.lex_state = 131, .external_lex_state = 1}, + [12661] = {.lex_state = 125, .external_lex_state = 1}, + [12662] = {.lex_state = 128, .external_lex_state = 1}, + [12663] = {.lex_state = 131, .external_lex_state = 1}, + [12664] = {.lex_state = 546, .external_lex_state = 1}, + [12665] = {.lex_state = 125, .external_lex_state = 1}, + [12666] = {.lex_state = 131, .external_lex_state = 1}, + [12667] = {.lex_state = 131, .external_lex_state = 1}, + [12668] = {.lex_state = 131, .external_lex_state = 1}, + [12669] = {.lex_state = 131, .external_lex_state = 1}, + [12670] = {.lex_state = 131, .external_lex_state = 1}, + [12671] = {.lex_state = 131, .external_lex_state = 1}, + [12672] = {.lex_state = 131, .external_lex_state = 1}, + [12673] = {.lex_state = 131, .external_lex_state = 1}, + [12674] = {.lex_state = 131, .external_lex_state = 1}, + [12675] = {.lex_state = 131, .external_lex_state = 1}, + [12676] = {.lex_state = 125, .external_lex_state = 1}, + [12677] = {.lex_state = 128, .external_lex_state = 1}, + [12678] = {.lex_state = 131, .external_lex_state = 1}, + [12679] = {.lex_state = 125, .external_lex_state = 1}, + [12680] = {.lex_state = 131, .external_lex_state = 1}, + [12681] = {.lex_state = 131, .external_lex_state = 1}, + [12682] = {.lex_state = 128, .external_lex_state = 1}, + [12683] = {.lex_state = 128, .external_lex_state = 1}, + [12684] = {.lex_state = 128, .external_lex_state = 1}, + [12685] = {.lex_state = 125, .external_lex_state = 1}, + [12686] = {.lex_state = 224, .external_lex_state = 1}, + [12687] = {.lex_state = 131, .external_lex_state = 1}, + [12688] = {.lex_state = 128, .external_lex_state = 1}, + [12689] = {.lex_state = 128, .external_lex_state = 1}, + [12690] = {.lex_state = 131, .external_lex_state = 1}, + [12691] = {.lex_state = 131, .external_lex_state = 1}, + [12692] = {.lex_state = 131, .external_lex_state = 1}, + [12693] = {.lex_state = 125, .external_lex_state = 1}, + [12694] = {.lex_state = 125, .external_lex_state = 1}, + [12695] = {.lex_state = 125, .external_lex_state = 1}, + [12696] = {.lex_state = 131, .external_lex_state = 1}, + [12697] = {.lex_state = 131, .external_lex_state = 1}, + [12698] = {.lex_state = 225, .external_lex_state = 1}, + [12699] = {.lex_state = 114, .external_lex_state = 1}, + [12700] = {.lex_state = 131, .external_lex_state = 1}, + [12701] = {.lex_state = 131, .external_lex_state = 1}, + [12702] = {.lex_state = 128, .external_lex_state = 1}, + [12703] = {.lex_state = 131, .external_lex_state = 1}, + [12704] = {.lex_state = 125, .external_lex_state = 1}, + [12705] = {.lex_state = 131, .external_lex_state = 1}, + [12706] = {.lex_state = 128, .external_lex_state = 1}, + [12707] = {.lex_state = 131, .external_lex_state = 1}, + [12708] = {.lex_state = 225, .external_lex_state = 1}, + [12709] = {.lex_state = 125, .external_lex_state = 1}, + [12710] = {.lex_state = 131, .external_lex_state = 1}, + [12711] = {.lex_state = 128, .external_lex_state = 1}, + [12712] = {.lex_state = 128, .external_lex_state = 1}, + [12713] = {.lex_state = 128, .external_lex_state = 1}, + [12714] = {.lex_state = 128, .external_lex_state = 1}, + [12715] = {.lex_state = 131, .external_lex_state = 1}, + [12716] = {.lex_state = 131, .external_lex_state = 1}, + [12717] = {.lex_state = 125, .external_lex_state = 1}, + [12718] = {.lex_state = 125, .external_lex_state = 1}, + [12719] = {.lex_state = 131, .external_lex_state = 1}, + [12720] = {.lex_state = 128, .external_lex_state = 1}, + [12721] = {.lex_state = 131, .external_lex_state = 1}, + [12722] = {.lex_state = 131, .external_lex_state = 1}, + [12723] = {.lex_state = 131, .external_lex_state = 1}, + [12724] = {.lex_state = 131, .external_lex_state = 1}, + [12725] = {.lex_state = 131, .external_lex_state = 1}, + [12726] = {.lex_state = 229, .external_lex_state = 1}, + [12727] = {.lex_state = 131, .external_lex_state = 1}, + [12728] = {.lex_state = 229, .external_lex_state = 1}, + [12729] = {.lex_state = 229, .external_lex_state = 1}, + [12730] = {.lex_state = 125, .external_lex_state = 1}, + [12731] = {.lex_state = 125, .external_lex_state = 1}, + [12732] = {.lex_state = 131, .external_lex_state = 1}, + [12733] = {.lex_state = 131, .external_lex_state = 1}, + [12734] = {.lex_state = 131, .external_lex_state = 1}, + [12735] = {.lex_state = 131, .external_lex_state = 1}, + [12736] = {.lex_state = 131, .external_lex_state = 1}, + [12737] = {.lex_state = 131, .external_lex_state = 1}, + [12738] = {.lex_state = 229, .external_lex_state = 1}, + [12739] = {.lex_state = 131, .external_lex_state = 1}, + [12740] = {.lex_state = 229, .external_lex_state = 1}, + [12741] = {.lex_state = 125, .external_lex_state = 1}, + [12742] = {.lex_state = 131, .external_lex_state = 1}, + [12743] = {.lex_state = 125, .external_lex_state = 1}, + [12744] = {.lex_state = 229, .external_lex_state = 1}, + [12745] = {.lex_state = 131, .external_lex_state = 1}, + [12746] = {.lex_state = 229, .external_lex_state = 1}, + [12747] = {.lex_state = 131, .external_lex_state = 1}, + [12748] = {.lex_state = 125, .external_lex_state = 1}, + [12749] = {.lex_state = 131, .external_lex_state = 1}, + [12750] = {.lex_state = 131, .external_lex_state = 1}, + [12751] = {.lex_state = 131, .external_lex_state = 1}, + [12752] = {.lex_state = 229, .external_lex_state = 1}, + [12753] = {.lex_state = 131, .external_lex_state = 1}, + [12754] = {.lex_state = 131, .external_lex_state = 1}, + [12755] = {.lex_state = 131, .external_lex_state = 1}, + [12756] = {.lex_state = 125, .external_lex_state = 1}, + [12757] = {.lex_state = 131, .external_lex_state = 1}, + [12758] = {.lex_state = 131, .external_lex_state = 1}, + [12759] = {.lex_state = 225, .external_lex_state = 1}, + [12760] = {.lex_state = 229, .external_lex_state = 1}, + [12761] = {.lex_state = 125, .external_lex_state = 1}, + [12762] = {.lex_state = 131, .external_lex_state = 1}, + [12763] = {.lex_state = 131, .external_lex_state = 1}, + [12764] = {.lex_state = 131, .external_lex_state = 1}, + [12765] = {.lex_state = 131, .external_lex_state = 1}, + [12766] = {.lex_state = 131, .external_lex_state = 1}, + [12767] = {.lex_state = 229, .external_lex_state = 1}, + [12768] = {.lex_state = 229, .external_lex_state = 1}, + [12769] = {.lex_state = 229, .external_lex_state = 1}, + [12770] = {.lex_state = 125, .external_lex_state = 1}, + [12771] = {.lex_state = 131, .external_lex_state = 1}, + [12772] = {.lex_state = 131, .external_lex_state = 1}, + [12773] = {.lex_state = 131, .external_lex_state = 1}, + [12774] = {.lex_state = 131, .external_lex_state = 1}, + [12775] = {.lex_state = 131, .external_lex_state = 1}, + [12776] = {.lex_state = 131, .external_lex_state = 1}, + [12777] = {.lex_state = 131, .external_lex_state = 1}, + [12778] = {.lex_state = 125, .external_lex_state = 1}, + [12779] = {.lex_state = 131, .external_lex_state = 1}, + [12780] = {.lex_state = 131, .external_lex_state = 1}, + [12781] = {.lex_state = 131, .external_lex_state = 1}, + [12782] = {.lex_state = 125, .external_lex_state = 1}, + [12783] = {.lex_state = 125, .external_lex_state = 1}, + [12784] = {.lex_state = 229, .external_lex_state = 1}, + [12785] = {.lex_state = 131, .external_lex_state = 1}, + [12786] = {.lex_state = 131, .external_lex_state = 1}, + [12787] = {.lex_state = 131, .external_lex_state = 1}, + [12788] = {.lex_state = 131, .external_lex_state = 1}, + [12789] = {.lex_state = 125, .external_lex_state = 1}, + [12790] = {.lex_state = 125, .external_lex_state = 1}, + [12791] = {.lex_state = 228, .external_lex_state = 1}, + [12792] = {.lex_state = 131, .external_lex_state = 1}, + [12793] = {.lex_state = 125, .external_lex_state = 1}, + [12794] = {.lex_state = 131, .external_lex_state = 1}, + [12795] = {.lex_state = 131, .external_lex_state = 1}, + [12796] = {.lex_state = 131, .external_lex_state = 1}, + [12797] = {.lex_state = 131, .external_lex_state = 1}, + [12798] = {.lex_state = 125, .external_lex_state = 1}, + [12799] = {.lex_state = 125, .external_lex_state = 1}, + [12800] = {.lex_state = 131, .external_lex_state = 1}, + [12801] = {.lex_state = 131, .external_lex_state = 1}, + [12802] = {.lex_state = 131, .external_lex_state = 1}, + [12803] = {.lex_state = 131, .external_lex_state = 1}, + [12804] = {.lex_state = 546, .external_lex_state = 1}, + [12805] = {.lex_state = 125, .external_lex_state = 1}, + [12806] = {.lex_state = 125, .external_lex_state = 1}, + [12807] = {.lex_state = 128, .external_lex_state = 1}, + [12808] = {.lex_state = 131, .external_lex_state = 1}, + [12809] = {.lex_state = 125, .external_lex_state = 1}, + [12810] = {.lex_state = 125, .external_lex_state = 1}, + [12811] = {.lex_state = 131, .external_lex_state = 1}, + [12812] = {.lex_state = 131, .external_lex_state = 1}, + [12813] = {.lex_state = 125, .external_lex_state = 1}, + [12814] = {.lex_state = 125, .external_lex_state = 1}, + [12815] = {.lex_state = 131, .external_lex_state = 1}, + [12816] = {.lex_state = 131, .external_lex_state = 1}, + [12817] = {.lex_state = 125, .external_lex_state = 1}, + [12818] = {.lex_state = 125, .external_lex_state = 1}, + [12819] = {.lex_state = 131, .external_lex_state = 1}, + [12820] = {.lex_state = 131, .external_lex_state = 1}, + [12821] = {.lex_state = 125, .external_lex_state = 1}, + [12822] = {.lex_state = 125, .external_lex_state = 1}, + [12823] = {.lex_state = 131, .external_lex_state = 1}, + [12824] = {.lex_state = 125, .external_lex_state = 1}, + [12825] = {.lex_state = 131, .external_lex_state = 1}, + [12826] = {.lex_state = 131, .external_lex_state = 1}, + [12827] = {.lex_state = 128, .external_lex_state = 1}, + [12828] = {.lex_state = 128, .external_lex_state = 1}, + [12829] = {.lex_state = 128, .external_lex_state = 1}, + [12830] = {.lex_state = 128, .external_lex_state = 1}, + [12831] = {.lex_state = 125, .external_lex_state = 1}, + [12832] = {.lex_state = 131, .external_lex_state = 1}, + [12833] = {.lex_state = 131, .external_lex_state = 1}, + [12834] = {.lex_state = 125, .external_lex_state = 1}, + [12835] = {.lex_state = 131, .external_lex_state = 1}, + [12836] = {.lex_state = 131, .external_lex_state = 1}, + [12837] = {.lex_state = 131, .external_lex_state = 1}, + [12838] = {.lex_state = 229, .external_lex_state = 1}, + [12839] = {.lex_state = 546, .external_lex_state = 1}, + [12840] = {.lex_state = 131, .external_lex_state = 1}, + [12841] = {.lex_state = 131, .external_lex_state = 1}, + [12842] = {.lex_state = 125, .external_lex_state = 1}, + [12843] = {.lex_state = 125, .external_lex_state = 1}, + [12844] = {.lex_state = 131, .external_lex_state = 1}, + [12845] = {.lex_state = 131, .external_lex_state = 1}, + [12846] = {.lex_state = 131, .external_lex_state = 1}, + [12847] = {.lex_state = 125, .external_lex_state = 1}, + [12848] = {.lex_state = 131, .external_lex_state = 1}, + [12849] = {.lex_state = 128, .external_lex_state = 1}, + [12850] = {.lex_state = 131, .external_lex_state = 1}, + [12851] = {.lex_state = 131, .external_lex_state = 1}, + [12852] = {.lex_state = 131, .external_lex_state = 1}, + [12853] = {.lex_state = 131, .external_lex_state = 1}, + [12854] = {.lex_state = 125, .external_lex_state = 1}, + [12855] = {.lex_state = 125, .external_lex_state = 1}, + [12856] = {.lex_state = 131, .external_lex_state = 1}, + [12857] = {.lex_state = 546, .external_lex_state = 1}, + [12858] = {.lex_state = 125, .external_lex_state = 1}, + [12859] = {.lex_state = 546, .external_lex_state = 1}, + [12860] = {.lex_state = 131, .external_lex_state = 1}, + [12861] = {.lex_state = 229, .external_lex_state = 1}, + [12862] = {.lex_state = 131, .external_lex_state = 1}, + [12863] = {.lex_state = 125, .external_lex_state = 1}, + [12864] = {.lex_state = 131, .external_lex_state = 1}, + [12865] = {.lex_state = 131, .external_lex_state = 1}, + [12866] = {.lex_state = 125, .external_lex_state = 1}, + [12867] = {.lex_state = 125, .external_lex_state = 1}, + [12868] = {.lex_state = 125, .external_lex_state = 1}, + [12869] = {.lex_state = 125, .external_lex_state = 1}, + [12870] = {.lex_state = 128, .external_lex_state = 1}, + [12871] = {.lex_state = 125, .external_lex_state = 1}, + [12872] = {.lex_state = 125, .external_lex_state = 1}, + [12873] = {.lex_state = 131, .external_lex_state = 1}, + [12874] = {.lex_state = 125, .external_lex_state = 1}, + [12875] = {.lex_state = 125, .external_lex_state = 1}, + [12876] = {.lex_state = 225, .external_lex_state = 1}, + [12877] = {.lex_state = 225, .external_lex_state = 1}, + [12878] = {.lex_state = 229, .external_lex_state = 1}, + [12879] = {.lex_state = 225, .external_lex_state = 1}, + [12880] = {.lex_state = 546, .external_lex_state = 1}, + [12881] = {.lex_state = 546, .external_lex_state = 1}, + [12882] = {.lex_state = 131, .external_lex_state = 1}, + [12883] = {.lex_state = 546, .external_lex_state = 1}, + [12884] = {.lex_state = 125, .external_lex_state = 1}, + [12885] = {.lex_state = 225, .external_lex_state = 1}, + [12886] = {.lex_state = 131, .external_lex_state = 1}, + [12887] = {.lex_state = 125, .external_lex_state = 1}, + [12888] = {.lex_state = 131, .external_lex_state = 1}, + [12889] = {.lex_state = 131, .external_lex_state = 1}, + [12890] = {.lex_state = 225, .external_lex_state = 1}, + [12891] = {.lex_state = 131, .external_lex_state = 1}, + [12892] = {.lex_state = 125, .external_lex_state = 1}, + [12893] = {.lex_state = 125, .external_lex_state = 1}, + [12894] = {.lex_state = 125, .external_lex_state = 1}, + [12895] = {.lex_state = 125, .external_lex_state = 1}, + [12896] = {.lex_state = 125, .external_lex_state = 1}, + [12897] = {.lex_state = 225, .external_lex_state = 1}, + [12898] = {.lex_state = 225, .external_lex_state = 1}, + [12899] = {.lex_state = 546, .external_lex_state = 1}, + [12900] = {.lex_state = 125, .external_lex_state = 1}, + [12901] = {.lex_state = 125, .external_lex_state = 1}, + [12902] = {.lex_state = 125, .external_lex_state = 1}, + [12903] = {.lex_state = 125, .external_lex_state = 1}, + [12904] = {.lex_state = 125, .external_lex_state = 1}, + [12905] = {.lex_state = 125, .external_lex_state = 1}, + [12906] = {.lex_state = 125, .external_lex_state = 1}, + [12907] = {.lex_state = 125, .external_lex_state = 1}, + [12908] = {.lex_state = 125, .external_lex_state = 1}, + [12909] = {.lex_state = 125, .external_lex_state = 1}, + [12910] = {.lex_state = 125, .external_lex_state = 1}, + [12911] = {.lex_state = 225, .external_lex_state = 1}, + [12912] = {.lex_state = 125, .external_lex_state = 1}, + [12913] = {.lex_state = 225, .external_lex_state = 1}, + [12914] = {.lex_state = 125, .external_lex_state = 1}, + [12915] = {.lex_state = 225, .external_lex_state = 1}, + [12916] = {.lex_state = 225, .external_lex_state = 1}, + [12917] = {.lex_state = 225, .external_lex_state = 1}, + [12918] = {.lex_state = 125, .external_lex_state = 1}, + [12919] = {.lex_state = 125, .external_lex_state = 1}, + [12920] = {.lex_state = 125, .external_lex_state = 1}, + [12921] = {.lex_state = 125, .external_lex_state = 1}, + [12922] = {.lex_state = 125, .external_lex_state = 1}, + [12923] = {.lex_state = 546, .external_lex_state = 1}, + [12924] = {.lex_state = 128, .external_lex_state = 1}, + [12925] = {.lex_state = 125, .external_lex_state = 1}, + [12926] = {.lex_state = 131, .external_lex_state = 1}, + [12927] = {.lex_state = 125, .external_lex_state = 1}, + [12928] = {.lex_state = 125, .external_lex_state = 1}, + [12929] = {.lex_state = 125, .external_lex_state = 1}, + [12930] = {.lex_state = 125, .external_lex_state = 1}, + [12931] = {.lex_state = 125, .external_lex_state = 1}, + [12932] = {.lex_state = 125, .external_lex_state = 1}, + [12933] = {.lex_state = 125, .external_lex_state = 1}, + [12934] = {.lex_state = 125, .external_lex_state = 1}, + [12935] = {.lex_state = 125, .external_lex_state = 1}, + [12936] = {.lex_state = 125, .external_lex_state = 1}, + [12937] = {.lex_state = 125, .external_lex_state = 1}, + [12938] = {.lex_state = 125, .external_lex_state = 1}, + [12939] = {.lex_state = 125, .external_lex_state = 1}, + [12940] = {.lex_state = 125, .external_lex_state = 1}, + [12941] = {.lex_state = 125, .external_lex_state = 1}, + [12942] = {.lex_state = 125, .external_lex_state = 1}, + [12943] = {.lex_state = 125, .external_lex_state = 1}, + [12944] = {.lex_state = 125, .external_lex_state = 1}, + [12945] = {.lex_state = 125, .external_lex_state = 1}, + [12946] = {.lex_state = 125, .external_lex_state = 1}, + [12947] = {.lex_state = 125, .external_lex_state = 1}, + [12948] = {.lex_state = 125, .external_lex_state = 1}, + [12949] = {.lex_state = 153, .external_lex_state = 1}, + [12950] = {.lex_state = 125, .external_lex_state = 1}, + [12951] = {.lex_state = 125, .external_lex_state = 1}, + [12952] = {.lex_state = 125, .external_lex_state = 1}, + [12953] = {.lex_state = 125, .external_lex_state = 1}, + [12954] = {.lex_state = 125, .external_lex_state = 1}, + [12955] = {.lex_state = 125, .external_lex_state = 1}, + [12956] = {.lex_state = 225, .external_lex_state = 1}, + [12957] = {.lex_state = 546, .external_lex_state = 1}, + [12958] = {.lex_state = 125, .external_lex_state = 1}, + [12959] = {.lex_state = 547, .external_lex_state = 1}, + [12960] = {.lex_state = 125, .external_lex_state = 1}, + [12961] = {.lex_state = 131, .external_lex_state = 1}, + [12962] = {.lex_state = 131, .external_lex_state = 1}, + [12963] = {.lex_state = 131, .external_lex_state = 1}, + [12964] = {.lex_state = 125, .external_lex_state = 1}, + [12965] = {.lex_state = 125, .external_lex_state = 1}, + [12966] = {.lex_state = 131, .external_lex_state = 1}, + [12967] = {.lex_state = 131, .external_lex_state = 1}, + [12968] = {.lex_state = 131, .external_lex_state = 1}, + [12969] = {.lex_state = 131, .external_lex_state = 1}, + [12970] = {.lex_state = 131, .external_lex_state = 1}, + [12971] = {.lex_state = 131, .external_lex_state = 1}, + [12972] = {.lex_state = 131, .external_lex_state = 1}, + [12973] = {.lex_state = 125, .external_lex_state = 1}, + [12974] = {.lex_state = 131, .external_lex_state = 1}, + [12975] = {.lex_state = 131, .external_lex_state = 1}, + [12976] = {.lex_state = 131, .external_lex_state = 1}, + [12977] = {.lex_state = 131, .external_lex_state = 1}, + [12978] = {.lex_state = 131, .external_lex_state = 1}, + [12979] = {.lex_state = 131, .external_lex_state = 1}, + [12980] = {.lex_state = 131, .external_lex_state = 1}, + [12981] = {.lex_state = 131, .external_lex_state = 1}, + [12982] = {.lex_state = 131, .external_lex_state = 1}, + [12983] = {.lex_state = 131, .external_lex_state = 1}, + [12984] = {.lex_state = 131, .external_lex_state = 1}, + [12985] = {.lex_state = 131, .external_lex_state = 1}, + [12986] = {.lex_state = 131, .external_lex_state = 1}, + [12987] = {.lex_state = 131, .external_lex_state = 1}, + [12988] = {.lex_state = 131, .external_lex_state = 1}, + [12989] = {.lex_state = 546, .external_lex_state = 1}, + [12990] = {.lex_state = 125, .external_lex_state = 1}, + [12991] = {.lex_state = 131, .external_lex_state = 1}, + [12992] = {.lex_state = 131, .external_lex_state = 1}, + [12993] = {.lex_state = 131, .external_lex_state = 1}, + [12994] = {.lex_state = 131, .external_lex_state = 1}, + [12995] = {.lex_state = 131, .external_lex_state = 1}, + [12996] = {.lex_state = 131, .external_lex_state = 1}, + [12997] = {.lex_state = 125, .external_lex_state = 1}, + [12998] = {.lex_state = 125, .external_lex_state = 1}, + [12999] = {.lex_state = 131, .external_lex_state = 1}, + [13000] = {.lex_state = 131, .external_lex_state = 1}, + [13001] = {.lex_state = 131, .external_lex_state = 1}, + [13002] = {.lex_state = 131, .external_lex_state = 1}, + [13003] = {.lex_state = 131, .external_lex_state = 1}, + [13004] = {.lex_state = 131, .external_lex_state = 1}, + [13005] = {.lex_state = 131, .external_lex_state = 1}, + [13006] = {.lex_state = 131, .external_lex_state = 1}, + [13007] = {.lex_state = 131, .external_lex_state = 1}, + [13008] = {.lex_state = 131, .external_lex_state = 1}, + [13009] = {.lex_state = 131, .external_lex_state = 1}, + [13010] = {.lex_state = 131, .external_lex_state = 1}, + [13011] = {.lex_state = 131, .external_lex_state = 1}, + [13012] = {.lex_state = 131, .external_lex_state = 1}, + [13013] = {.lex_state = 131, .external_lex_state = 1}, + [13014] = {.lex_state = 131, .external_lex_state = 1}, + [13015] = {.lex_state = 131, .external_lex_state = 1}, + [13016] = {.lex_state = 131, .external_lex_state = 1}, + [13017] = {.lex_state = 131, .external_lex_state = 1}, + [13018] = {.lex_state = 131, .external_lex_state = 1}, + [13019] = {.lex_state = 131, .external_lex_state = 1}, + [13020] = {.lex_state = 131, .external_lex_state = 1}, + [13021] = {.lex_state = 131, .external_lex_state = 1}, + [13022] = {.lex_state = 131, .external_lex_state = 1}, + [13023] = {.lex_state = 131, .external_lex_state = 1}, + [13024] = {.lex_state = 125, .external_lex_state = 1}, + [13025] = {.lex_state = 125, .external_lex_state = 1}, + [13026] = {.lex_state = 546, .external_lex_state = 1}, + [13027] = {.lex_state = 547, .external_lex_state = 1}, + [13028] = {.lex_state = 228, .external_lex_state = 1}, + [13029] = {.lex_state = 131, .external_lex_state = 1}, + [13030] = {.lex_state = 131, .external_lex_state = 1}, + [13031] = {.lex_state = 238, .external_lex_state = 1}, + [13032] = {.lex_state = 131, .external_lex_state = 1}, + [13033] = {.lex_state = 131, .external_lex_state = 1}, + [13034] = {.lex_state = 131, .external_lex_state = 1}, + [13035] = {.lex_state = 128, .external_lex_state = 1}, + [13036] = {.lex_state = 228, .external_lex_state = 1}, + [13037] = {.lex_state = 547, .external_lex_state = 1}, + [13038] = {.lex_state = 131, .external_lex_state = 1}, + [13039] = {.lex_state = 131, .external_lex_state = 1}, + [13040] = {.lex_state = 131, .external_lex_state = 1}, + [13041] = {.lex_state = 131, .external_lex_state = 1}, + [13042] = {.lex_state = 131, .external_lex_state = 1}, + [13043] = {.lex_state = 131, .external_lex_state = 1}, + [13044] = {.lex_state = 240, .external_lex_state = 1}, + [13045] = {.lex_state = 547, .external_lex_state = 1}, + [13046] = {.lex_state = 547, .external_lex_state = 1}, + [13047] = {.lex_state = 131, .external_lex_state = 1}, + [13048] = {.lex_state = 131, .external_lex_state = 1}, + [13049] = {.lex_state = 131, .external_lex_state = 1}, + [13050] = {.lex_state = 131, .external_lex_state = 1}, + [13051] = {.lex_state = 131, .external_lex_state = 1}, + [13052] = {.lex_state = 131, .external_lex_state = 1}, + [13053] = {.lex_state = 131, .external_lex_state = 1}, + [13054] = {.lex_state = 131, .external_lex_state = 1}, + [13055] = {.lex_state = 131, .external_lex_state = 1}, + [13056] = {.lex_state = 131, .external_lex_state = 1}, + [13057] = {.lex_state = 128, .external_lex_state = 1}, + [13058] = {.lex_state = 131, .external_lex_state = 1}, + [13059] = {.lex_state = 547, .external_lex_state = 1}, + [13060] = {.lex_state = 131, .external_lex_state = 1}, + [13061] = {.lex_state = 131, .external_lex_state = 1}, + [13062] = {.lex_state = 128, .external_lex_state = 1}, + [13063] = {.lex_state = 228, .external_lex_state = 1}, + [13064] = {.lex_state = 547, .external_lex_state = 1}, + [13065] = {.lex_state = 131, .external_lex_state = 1}, + [13066] = {.lex_state = 131, .external_lex_state = 1}, + [13067] = {.lex_state = 128, .external_lex_state = 1}, + [13068] = {.lex_state = 131, .external_lex_state = 1}, + [13069] = {.lex_state = 131, .external_lex_state = 1}, + [13070] = {.lex_state = 128, .external_lex_state = 1}, + [13071] = {.lex_state = 131, .external_lex_state = 1}, + [13072] = {.lex_state = 131, .external_lex_state = 1}, + [13073] = {.lex_state = 131, .external_lex_state = 1}, + [13074] = {.lex_state = 131, .external_lex_state = 1}, + [13075] = {.lex_state = 128, .external_lex_state = 1}, + [13076] = {.lex_state = 128, .external_lex_state = 1}, + [13077] = {.lex_state = 131, .external_lex_state = 1}, + [13078] = {.lex_state = 128, .external_lex_state = 1}, + [13079] = {.lex_state = 131, .external_lex_state = 1}, + [13080] = {.lex_state = 131, .external_lex_state = 1}, + [13081] = {.lex_state = 131, .external_lex_state = 1}, + [13082] = {.lex_state = 230, .external_lex_state = 1}, + [13083] = {.lex_state = 131, .external_lex_state = 1}, + [13084] = {.lex_state = 131, .external_lex_state = 1}, + [13085] = {.lex_state = 131, .external_lex_state = 1}, + [13086] = {.lex_state = 131, .external_lex_state = 1}, + [13087] = {.lex_state = 131, .external_lex_state = 1}, + [13088] = {.lex_state = 131, .external_lex_state = 1}, + [13089] = {.lex_state = 114, .external_lex_state = 1}, + [13090] = {.lex_state = 131, .external_lex_state = 1}, + [13091] = {.lex_state = 114, .external_lex_state = 1}, + [13092] = {.lex_state = 128, .external_lex_state = 1}, + [13093] = {.lex_state = 547, .external_lex_state = 1}, + [13094] = {.lex_state = 131, .external_lex_state = 1}, + [13095] = {.lex_state = 128, .external_lex_state = 1}, + [13096] = {.lex_state = 114, .external_lex_state = 1}, + [13097] = {.lex_state = 228, .external_lex_state = 1}, + [13098] = {.lex_state = 131, .external_lex_state = 1}, + [13099] = {.lex_state = 114, .external_lex_state = 1}, + [13100] = {.lex_state = 131, .external_lex_state = 1}, + [13101] = {.lex_state = 131, .external_lex_state = 1}, + [13102] = {.lex_state = 228, .external_lex_state = 1}, + [13103] = {.lex_state = 547, .external_lex_state = 1}, + [13104] = {.lex_state = 547, .external_lex_state = 1}, + [13105] = {.lex_state = 547, .external_lex_state = 1}, + [13106] = {.lex_state = 131, .external_lex_state = 1}, + [13107] = {.lex_state = 131, .external_lex_state = 1}, + [13108] = {.lex_state = 153, .external_lex_state = 1}, + [13109] = {.lex_state = 131, .external_lex_state = 1}, + [13110] = {.lex_state = 547, .external_lex_state = 1}, + [13111] = {.lex_state = 153, .external_lex_state = 1}, + [13112] = {.lex_state = 153, .external_lex_state = 1}, + [13113] = {.lex_state = 224, .external_lex_state = 1}, + [13114] = {.lex_state = 131, .external_lex_state = 1}, + [13115] = {.lex_state = 131, .external_lex_state = 1}, + [13116] = {.lex_state = 131, .external_lex_state = 1}, + [13117] = {.lex_state = 131, .external_lex_state = 1}, + [13118] = {.lex_state = 228, .external_lex_state = 1}, + [13119] = {.lex_state = 131, .external_lex_state = 1}, + [13120] = {.lex_state = 547, .external_lex_state = 1}, + [13121] = {.lex_state = 131, .external_lex_state = 1}, + [13122] = {.lex_state = 153, .external_lex_state = 1}, + [13123] = {.lex_state = 131, .external_lex_state = 1}, + [13124] = {.lex_state = 153, .external_lex_state = 1}, + [13125] = {.lex_state = 547, .external_lex_state = 1}, + [13126] = {.lex_state = 131, .external_lex_state = 1}, + [13127] = {.lex_state = 114, .external_lex_state = 1}, + [13128] = {.lex_state = 128, .external_lex_state = 1}, + [13129] = {.lex_state = 153, .external_lex_state = 1}, + [13130] = {.lex_state = 224, .external_lex_state = 1}, + [13131] = {.lex_state = 153, .external_lex_state = 1}, + [13132] = {.lex_state = 224, .external_lex_state = 1}, + [13133] = {.lex_state = 131, .external_lex_state = 1}, + [13134] = {.lex_state = 131, .external_lex_state = 1}, + [13135] = {.lex_state = 131, .external_lex_state = 1}, + [13136] = {.lex_state = 547, .external_lex_state = 1}, + [13137] = {.lex_state = 228, .external_lex_state = 1}, + [13138] = {.lex_state = 228, .external_lex_state = 1}, + [13139] = {.lex_state = 114, .external_lex_state = 1}, + [13140] = {.lex_state = 131, .external_lex_state = 1}, + [13141] = {.lex_state = 131, .external_lex_state = 1}, + [13142] = {.lex_state = 131, .external_lex_state = 1}, + [13143] = {.lex_state = 131, .external_lex_state = 1}, + [13144] = {.lex_state = 131, .external_lex_state = 1}, + [13145] = {.lex_state = 131, .external_lex_state = 1}, + [13146] = {.lex_state = 131, .external_lex_state = 1}, + [13147] = {.lex_state = 131, .external_lex_state = 1}, + [13148] = {.lex_state = 131, .external_lex_state = 1}, + [13149] = {.lex_state = 131, .external_lex_state = 1}, + [13150] = {.lex_state = 226, .external_lex_state = 1}, + [13151] = {.lex_state = 153, .external_lex_state = 1}, + [13152] = {.lex_state = 114, .external_lex_state = 1}, + [13153] = {.lex_state = 114, .external_lex_state = 1}, + [13154] = {.lex_state = 131, .external_lex_state = 1}, + [13155] = {.lex_state = 114, .external_lex_state = 1}, + [13156] = {.lex_state = 153, .external_lex_state = 1}, + [13157] = {.lex_state = 131, .external_lex_state = 1}, + [13158] = {.lex_state = 114, .external_lex_state = 1}, + [13159] = {.lex_state = 131, .external_lex_state = 1}, + [13160] = {.lex_state = 153, .external_lex_state = 1}, + [13161] = {.lex_state = 153, .external_lex_state = 1}, + [13162] = {.lex_state = 153, .external_lex_state = 1}, + [13163] = {.lex_state = 131, .external_lex_state = 1}, + [13164] = {.lex_state = 547, .external_lex_state = 1}, + [13165] = {.lex_state = 131, .external_lex_state = 1}, + [13166] = {.lex_state = 228, .external_lex_state = 1}, + [13167] = {.lex_state = 547, .external_lex_state = 1}, + [13168] = {.lex_state = 228, .external_lex_state = 1}, + [13169] = {.lex_state = 547, .external_lex_state = 1}, + [13170] = {.lex_state = 131, .external_lex_state = 1}, + [13171] = {.lex_state = 128, .external_lex_state = 1}, + [13172] = {.lex_state = 114, .external_lex_state = 1}, + [13173] = {.lex_state = 224, .external_lex_state = 1}, + [13174] = {.lex_state = 228, .external_lex_state = 1}, + [13175] = {.lex_state = 224, .external_lex_state = 1}, + [13176] = {.lex_state = 153, .external_lex_state = 1}, + [13177] = {.lex_state = 547, .external_lex_state = 1}, + [13178] = {.lex_state = 114, .external_lex_state = 1}, + [13179] = {.lex_state = 114, .external_lex_state = 1}, + [13180] = {.lex_state = 114, .external_lex_state = 1}, + [13181] = {.lex_state = 547, .external_lex_state = 1}, + [13182] = {.lex_state = 114, .external_lex_state = 1}, + [13183] = {.lex_state = 131, .external_lex_state = 1}, + [13184] = {.lex_state = 224, .external_lex_state = 1}, + [13185] = {.lex_state = 131, .external_lex_state = 1}, + [13186] = {.lex_state = 114, .external_lex_state = 1}, + [13187] = {.lex_state = 131, .external_lex_state = 1}, + [13188] = {.lex_state = 224, .external_lex_state = 1}, + [13189] = {.lex_state = 224, .external_lex_state = 1}, + [13190] = {.lex_state = 131, .external_lex_state = 1}, + [13191] = {.lex_state = 128, .external_lex_state = 1}, + [13192] = {.lex_state = 547, .external_lex_state = 1}, + [13193] = {.lex_state = 131, .external_lex_state = 1}, + [13194] = {.lex_state = 114, .external_lex_state = 1}, + [13195] = {.lex_state = 114, .external_lex_state = 1}, + [13196] = {.lex_state = 131, .external_lex_state = 1}, + [13197] = {.lex_state = 114, .external_lex_state = 1}, + [13198] = {.lex_state = 131, .external_lex_state = 1}, + [13199] = {.lex_state = 128, .external_lex_state = 1}, + [13200] = {.lex_state = 128, .external_lex_state = 1}, + [13201] = {.lex_state = 131, .external_lex_state = 1}, + [13202] = {.lex_state = 131, .external_lex_state = 1}, + [13203] = {.lex_state = 131, .external_lex_state = 1}, + [13204] = {.lex_state = 131, .external_lex_state = 1}, + [13205] = {.lex_state = 547, .external_lex_state = 1}, + [13206] = {.lex_state = 547, .external_lex_state = 1}, + [13207] = {.lex_state = 128, .external_lex_state = 1}, + [13208] = {.lex_state = 128, .external_lex_state = 1}, + [13209] = {.lex_state = 547, .external_lex_state = 1}, + [13210] = {.lex_state = 547, .external_lex_state = 1}, + [13211] = {.lex_state = 131, .external_lex_state = 1}, + [13212] = {.lex_state = 224, .external_lex_state = 1}, + [13213] = {.lex_state = 131, .external_lex_state = 1}, + [13214] = {.lex_state = 131, .external_lex_state = 1}, + [13215] = {.lex_state = 131, .external_lex_state = 1}, + [13216] = {.lex_state = 114, .external_lex_state = 1}, + [13217] = {.lex_state = 131, .external_lex_state = 1}, + [13218] = {.lex_state = 228, .external_lex_state = 1}, + [13219] = {.lex_state = 128, .external_lex_state = 1}, + [13220] = {.lex_state = 128, .external_lex_state = 1}, + [13221] = {.lex_state = 131, .external_lex_state = 1}, + [13222] = {.lex_state = 131, .external_lex_state = 1}, + [13223] = {.lex_state = 238, .external_lex_state = 1}, + [13224] = {.lex_state = 131, .external_lex_state = 1}, + [13225] = {.lex_state = 131, .external_lex_state = 1}, + [13226] = {.lex_state = 131, .external_lex_state = 1}, + [13227] = {.lex_state = 131, .external_lex_state = 1}, + [13228] = {.lex_state = 131, .external_lex_state = 1}, + [13229] = {.lex_state = 131, .external_lex_state = 1}, + [13230] = {.lex_state = 547, .external_lex_state = 1}, + [13231] = {.lex_state = 128, .external_lex_state = 1}, + [13232] = {.lex_state = 153, .external_lex_state = 1}, + [13233] = {.lex_state = 128, .external_lex_state = 1}, + [13234] = {.lex_state = 128, .external_lex_state = 1}, + [13235] = {.lex_state = 228, .external_lex_state = 1}, + [13236] = {.lex_state = 128, .external_lex_state = 1}, + [13237] = {.lex_state = 131, .external_lex_state = 1}, + [13238] = {.lex_state = 153, .external_lex_state = 1}, + [13239] = {.lex_state = 131, .external_lex_state = 1}, + [13240] = {.lex_state = 153, .external_lex_state = 1}, + [13241] = {.lex_state = 128, .external_lex_state = 1}, + [13242] = {.lex_state = 131, .external_lex_state = 1}, + [13243] = {.lex_state = 131, .external_lex_state = 1}, + [13244] = {.lex_state = 547, .external_lex_state = 1}, + [13245] = {.lex_state = 131, .external_lex_state = 1}, + [13246] = {.lex_state = 224, .external_lex_state = 1}, + [13247] = {.lex_state = 131, .external_lex_state = 1}, + [13248] = {.lex_state = 131, .external_lex_state = 1}, + [13249] = {.lex_state = 128, .external_lex_state = 1}, + [13250] = {.lex_state = 547, .external_lex_state = 1}, + [13251] = {.lex_state = 131, .external_lex_state = 1}, + [13252] = {.lex_state = 131, .external_lex_state = 1}, + [13253] = {.lex_state = 131, .external_lex_state = 1}, + [13254] = {.lex_state = 131, .external_lex_state = 1}, + [13255] = {.lex_state = 224, .external_lex_state = 1}, + [13256] = {.lex_state = 131, .external_lex_state = 1}, + [13257] = {.lex_state = 228, .external_lex_state = 1}, + [13258] = {.lex_state = 131, .external_lex_state = 1}, + [13259] = {.lex_state = 114, .external_lex_state = 1}, + [13260] = {.lex_state = 131, .external_lex_state = 1}, + [13261] = {.lex_state = 131, .external_lex_state = 1}, + [13262] = {.lex_state = 131, .external_lex_state = 1}, + [13263] = {.lex_state = 155, .external_lex_state = 1}, + [13264] = {.lex_state = 131, .external_lex_state = 1}, + [13265] = {.lex_state = 114, .external_lex_state = 1}, + [13266] = {.lex_state = 224, .external_lex_state = 1}, + [13267] = {.lex_state = 128, .external_lex_state = 1}, + [13268] = {.lex_state = 128, .external_lex_state = 1}, + [13269] = {.lex_state = 114, .external_lex_state = 1}, + [13270] = {.lex_state = 131, .external_lex_state = 1}, + [13271] = {.lex_state = 131, .external_lex_state = 1}, + [13272] = {.lex_state = 131, .external_lex_state = 1}, + [13273] = {.lex_state = 131, .external_lex_state = 1}, + [13274] = {.lex_state = 131, .external_lex_state = 1}, + [13275] = {.lex_state = 131, .external_lex_state = 1}, + [13276] = {.lex_state = 547, .external_lex_state = 1}, + [13277] = {.lex_state = 228, .external_lex_state = 1}, + [13278] = {.lex_state = 224, .external_lex_state = 1}, + [13279] = {.lex_state = 131, .external_lex_state = 1}, + [13280] = {.lex_state = 547, .external_lex_state = 1}, + [13281] = {.lex_state = 228, .external_lex_state = 1}, + [13282] = {.lex_state = 547, .external_lex_state = 1}, + [13283] = {.lex_state = 131, .external_lex_state = 1}, + [13284] = {.lex_state = 131, .external_lex_state = 1}, + [13285] = {.lex_state = 131, .external_lex_state = 1}, + [13286] = {.lex_state = 155, .external_lex_state = 1}, + [13287] = {.lex_state = 131, .external_lex_state = 1}, + [13288] = {.lex_state = 131, .external_lex_state = 1}, + [13289] = {.lex_state = 131, .external_lex_state = 1}, + [13290] = {.lex_state = 131, .external_lex_state = 1}, + [13291] = {.lex_state = 114, .external_lex_state = 1}, + [13292] = {.lex_state = 114, .external_lex_state = 1}, + [13293] = {.lex_state = 114, .external_lex_state = 1}, + [13294] = {.lex_state = 114, .external_lex_state = 1}, + [13295] = {.lex_state = 240, .external_lex_state = 1}, + [13296] = {.lex_state = 114, .external_lex_state = 1}, + [13297] = {.lex_state = 131, .external_lex_state = 1}, + [13298] = {.lex_state = 131, .external_lex_state = 1}, + [13299] = {.lex_state = 131, .external_lex_state = 1}, + [13300] = {.lex_state = 547, .external_lex_state = 1}, + [13301] = {.lex_state = 114, .external_lex_state = 1}, + [13302] = {.lex_state = 114, .external_lex_state = 1}, + [13303] = {.lex_state = 114, .external_lex_state = 1}, + [13304] = {.lex_state = 131, .external_lex_state = 1}, + [13305] = {.lex_state = 131, .external_lex_state = 1}, + [13306] = {.lex_state = 114, .external_lex_state = 1}, + [13307] = {.lex_state = 131, .external_lex_state = 1}, + [13308] = {.lex_state = 131, .external_lex_state = 1}, + [13309] = {.lex_state = 128, .external_lex_state = 1}, + [13310] = {.lex_state = 131, .external_lex_state = 1}, + [13311] = {.lex_state = 128, .external_lex_state = 1}, + [13312] = {.lex_state = 128, .external_lex_state = 1}, + [13313] = {.lex_state = 128, .external_lex_state = 1}, + [13314] = {.lex_state = 128, .external_lex_state = 1}, + [13315] = {.lex_state = 128, .external_lex_state = 1}, + [13316] = {.lex_state = 224, .external_lex_state = 1}, + [13317] = {.lex_state = 128, .external_lex_state = 1}, + [13318] = {.lex_state = 128, .external_lex_state = 1}, + [13319] = {.lex_state = 128, .external_lex_state = 1}, + [13320] = {.lex_state = 128, .external_lex_state = 1}, + [13321] = {.lex_state = 128, .external_lex_state = 1}, + [13322] = {.lex_state = 224, .external_lex_state = 1}, + [13323] = {.lex_state = 224, .external_lex_state = 1}, + [13324] = {.lex_state = 114, .external_lex_state = 1}, + [13325] = {.lex_state = 128, .external_lex_state = 1}, + [13326] = {.lex_state = 128, .external_lex_state = 1}, + [13327] = {.lex_state = 128, .external_lex_state = 1}, + [13328] = {.lex_state = 128, .external_lex_state = 1}, + [13329] = {.lex_state = 128, .external_lex_state = 1}, + [13330] = {.lex_state = 128, .external_lex_state = 1}, + [13331] = {.lex_state = 128, .external_lex_state = 1}, + [13332] = {.lex_state = 119, .external_lex_state = 1}, + [13333] = {.lex_state = 128, .external_lex_state = 1}, + [13334] = {.lex_state = 230, .external_lex_state = 1}, + [13335] = {.lex_state = 240, .external_lex_state = 1}, + [13336] = {.lex_state = 119, .external_lex_state = 1}, + [13337] = {.lex_state = 131, .external_lex_state = 1}, + [13338] = {.lex_state = 131, .external_lex_state = 1}, + [13339] = {.lex_state = 230, .external_lex_state = 1}, + [13340] = {.lex_state = 238, .external_lex_state = 1}, + [13341] = {.lex_state = 128, .external_lex_state = 1}, + [13342] = {.lex_state = 128, .external_lex_state = 1}, + [13343] = {.lex_state = 128, .external_lex_state = 1}, + [13344] = {.lex_state = 128, .external_lex_state = 1}, + [13345] = {.lex_state = 128, .external_lex_state = 1}, + [13346] = {.lex_state = 131, .external_lex_state = 1}, + [13347] = {.lex_state = 131, .external_lex_state = 1}, + [13348] = {.lex_state = 131, .external_lex_state = 1}, + [13349] = {.lex_state = 238, .external_lex_state = 1}, + [13350] = {.lex_state = 119, .external_lex_state = 1}, + [13351] = {.lex_state = 119, .external_lex_state = 1}, + [13352] = {.lex_state = 238, .external_lex_state = 1}, + [13353] = {.lex_state = 131, .external_lex_state = 1}, + [13354] = {.lex_state = 131, .external_lex_state = 1}, + [13355] = {.lex_state = 131, .external_lex_state = 1}, + [13356] = {.lex_state = 238, .external_lex_state = 1}, + [13357] = {.lex_state = 226, .external_lex_state = 1}, + [13358] = {.lex_state = 131, .external_lex_state = 1}, + [13359] = {.lex_state = 131, .external_lex_state = 1}, + [13360] = {.lex_state = 230, .external_lex_state = 1}, + [13361] = {.lex_state = 119, .external_lex_state = 1}, + [13362] = {.lex_state = 131, .external_lex_state = 1}, + [13363] = {.lex_state = 131, .external_lex_state = 1}, + [13364] = {.lex_state = 119, .external_lex_state = 1}, + [13365] = {.lex_state = 128, .external_lex_state = 1}, + [13366] = {.lex_state = 128, .external_lex_state = 1}, + [13367] = {.lex_state = 128, .external_lex_state = 1}, + [13368] = {.lex_state = 128, .external_lex_state = 1}, + [13369] = {.lex_state = 128, .external_lex_state = 1}, + [13370] = {.lex_state = 128, .external_lex_state = 1}, + [13371] = {.lex_state = 131, .external_lex_state = 1}, + [13372] = {.lex_state = 131, .external_lex_state = 1}, + [13373] = {.lex_state = 119, .external_lex_state = 1}, + [13374] = {.lex_state = 226, .external_lex_state = 1}, + [13375] = {.lex_state = 155, .external_lex_state = 1}, + [13376] = {.lex_state = 230, .external_lex_state = 1}, + [13377] = {.lex_state = 240, .external_lex_state = 1}, + [13378] = {.lex_state = 128, .external_lex_state = 1}, + [13379] = {.lex_state = 241, .external_lex_state = 1}, + [13380] = {.lex_state = 119, .external_lex_state = 1}, + [13381] = {.lex_state = 119, .external_lex_state = 1}, + [13382] = {.lex_state = 119, .external_lex_state = 1}, + [13383] = {.lex_state = 119, .external_lex_state = 1}, + [13384] = {.lex_state = 119, .external_lex_state = 1}, + [13385] = {.lex_state = 131, .external_lex_state = 1}, + [13386] = {.lex_state = 131, .external_lex_state = 1}, + [13387] = {.lex_state = 131, .external_lex_state = 1}, + [13388] = {.lex_state = 241, .external_lex_state = 1}, + [13389] = {.lex_state = 131, .external_lex_state = 1}, + [13390] = {.lex_state = 240, .external_lex_state = 1}, + [13391] = {.lex_state = 119, .external_lex_state = 1}, + [13392] = {.lex_state = 120, .external_lex_state = 1}, + [13393] = {.lex_state = 128, .external_lex_state = 1}, + [13394] = {.lex_state = 230, .external_lex_state = 1}, + [13395] = {.lex_state = 128, .external_lex_state = 1}, + [13396] = {.lex_state = 128, .external_lex_state = 1}, + [13397] = {.lex_state = 128, .external_lex_state = 1}, + [13398] = {.lex_state = 119, .external_lex_state = 1}, + [13399] = {.lex_state = 240, .external_lex_state = 1}, + [13400] = {.lex_state = 128, .external_lex_state = 1}, + [13401] = {.lex_state = 131, .external_lex_state = 1}, + [13402] = {.lex_state = 119, .external_lex_state = 1}, + [13403] = {.lex_state = 226, .external_lex_state = 1}, + [13404] = {.lex_state = 119, .external_lex_state = 1}, + [13405] = {.lex_state = 131, .external_lex_state = 1}, + [13406] = {.lex_state = 230, .external_lex_state = 1}, + [13407] = {.lex_state = 128, .external_lex_state = 1}, + [13408] = {.lex_state = 119, .external_lex_state = 1}, + [13409] = {.lex_state = 131, .external_lex_state = 1}, + [13410] = {.lex_state = 131, .external_lex_state = 1}, + [13411] = {.lex_state = 238, .external_lex_state = 1}, + [13412] = {.lex_state = 238, .external_lex_state = 1}, + [13413] = {.lex_state = 230, .external_lex_state = 1}, + [13414] = {.lex_state = 226, .external_lex_state = 1}, + [13415] = {.lex_state = 119, .external_lex_state = 1}, + [13416] = {.lex_state = 128, .external_lex_state = 1}, + [13417] = {.lex_state = 119, .external_lex_state = 1}, + [13418] = {.lex_state = 131, .external_lex_state = 1}, + [13419] = {.lex_state = 131, .external_lex_state = 1}, + [13420] = {.lex_state = 226, .external_lex_state = 1}, + [13421] = {.lex_state = 131, .external_lex_state = 1}, + [13422] = {.lex_state = 119, .external_lex_state = 1}, + [13423] = {.lex_state = 131, .external_lex_state = 1}, + [13424] = {.lex_state = 131, .external_lex_state = 1}, + [13425] = {.lex_state = 131, .external_lex_state = 1}, + [13426] = {.lex_state = 119, .external_lex_state = 1}, + [13427] = {.lex_state = 119, .external_lex_state = 1}, + [13428] = {.lex_state = 119, .external_lex_state = 1}, + [13429] = {.lex_state = 119, .external_lex_state = 1}, + [13430] = {.lex_state = 119, .external_lex_state = 1}, + [13431] = {.lex_state = 155, .external_lex_state = 1}, + [13432] = {.lex_state = 226, .external_lex_state = 1}, + [13433] = {.lex_state = 131, .external_lex_state = 1}, + [13434] = {.lex_state = 131, .external_lex_state = 1}, + [13435] = {.lex_state = 119, .external_lex_state = 1}, + [13436] = {.lex_state = 119, .external_lex_state = 1}, + [13437] = {.lex_state = 230, .external_lex_state = 1}, + [13438] = {.lex_state = 128, .external_lex_state = 1}, + [13439] = {.lex_state = 128, .external_lex_state = 1}, + [13440] = {.lex_state = 131, .external_lex_state = 1}, + [13441] = {.lex_state = 131, .external_lex_state = 1}, + [13442] = {.lex_state = 230, .external_lex_state = 1}, + [13443] = {.lex_state = 131, .external_lex_state = 1}, + [13444] = {.lex_state = 131, .external_lex_state = 1}, + [13445] = {.lex_state = 120, .external_lex_state = 1}, + [13446] = {.lex_state = 230, .external_lex_state = 1}, + [13447] = {.lex_state = 226, .external_lex_state = 1}, + [13448] = {.lex_state = 128, .external_lex_state = 1}, + [13449] = {.lex_state = 128, .external_lex_state = 1}, + [13450] = {.lex_state = 131, .external_lex_state = 1}, + [13451] = {.lex_state = 120, .external_lex_state = 1}, + [13452] = {.lex_state = 119, .external_lex_state = 1}, + [13453] = {.lex_state = 226, .external_lex_state = 1}, + [13454] = {.lex_state = 155, .external_lex_state = 1}, + [13455] = {.lex_state = 155, .external_lex_state = 1}, + [13456] = {.lex_state = 119, .external_lex_state = 1}, + [13457] = {.lex_state = 119, .external_lex_state = 1}, + [13458] = {.lex_state = 119, .external_lex_state = 1}, + [13459] = {.lex_state = 131, .external_lex_state = 1}, + [13460] = {.lex_state = 131, .external_lex_state = 1}, + [13461] = {.lex_state = 226, .external_lex_state = 1}, + [13462] = {.lex_state = 128, .external_lex_state = 1}, + [13463] = {.lex_state = 131, .external_lex_state = 1}, + [13464] = {.lex_state = 119, .external_lex_state = 1}, + [13465] = {.lex_state = 230, .external_lex_state = 1}, + [13466] = {.lex_state = 131, .external_lex_state = 1}, + [13467] = {.lex_state = 131, .external_lex_state = 1}, + [13468] = {.lex_state = 131, .external_lex_state = 1}, + [13469] = {.lex_state = 230, .external_lex_state = 1}, + [13470] = {.lex_state = 131, .external_lex_state = 1}, + [13471] = {.lex_state = 131, .external_lex_state = 1}, + [13472] = {.lex_state = 230, .external_lex_state = 1}, + [13473] = {.lex_state = 239, .external_lex_state = 1}, + [13474] = {.lex_state = 230, .external_lex_state = 1}, + [13475] = {.lex_state = 131, .external_lex_state = 1}, + [13476] = {.lex_state = 128, .external_lex_state = 1}, + [13477] = {.lex_state = 128, .external_lex_state = 1}, + [13478] = {.lex_state = 128, .external_lex_state = 1}, + [13479] = {.lex_state = 226, .external_lex_state = 1}, + [13480] = {.lex_state = 230, .external_lex_state = 1}, + [13481] = {.lex_state = 131, .external_lex_state = 1}, + [13482] = {.lex_state = 239, .external_lex_state = 1}, + [13483] = {.lex_state = 240, .external_lex_state = 1}, + [13484] = {.lex_state = 155, .external_lex_state = 1}, + [13485] = {.lex_state = 119, .external_lex_state = 1}, + [13486] = {.lex_state = 131, .external_lex_state = 1}, + [13487] = {.lex_state = 119, .external_lex_state = 1}, + [13488] = {.lex_state = 240, .external_lex_state = 1}, + [13489] = {.lex_state = 128, .external_lex_state = 1}, + [13490] = {.lex_state = 131, .external_lex_state = 1}, + [13491] = {.lex_state = 226, .external_lex_state = 1}, + [13492] = {.lex_state = 131, .external_lex_state = 1}, + [13493] = {.lex_state = 131, .external_lex_state = 1}, + [13494] = {.lex_state = 128, .external_lex_state = 1}, + [13495] = {.lex_state = 128, .external_lex_state = 1}, + [13496] = {.lex_state = 226, .external_lex_state = 1}, + [13497] = {.lex_state = 131, .external_lex_state = 1}, + [13498] = {.lex_state = 128, .external_lex_state = 1}, + [13499] = {.lex_state = 119, .external_lex_state = 1}, + [13500] = {.lex_state = 128, .external_lex_state = 1}, + [13501] = {.lex_state = 155, .external_lex_state = 1}, + [13502] = {.lex_state = 131, .external_lex_state = 1}, + [13503] = {.lex_state = 128, .external_lex_state = 1}, + [13504] = {.lex_state = 226, .external_lex_state = 1}, + [13505] = {.lex_state = 226, .external_lex_state = 1}, + [13506] = {.lex_state = 226, .external_lex_state = 1}, + [13507] = {.lex_state = 131, .external_lex_state = 1}, + [13508] = {.lex_state = 230, .external_lex_state = 1}, + [13509] = {.lex_state = 226, .external_lex_state = 1}, + [13510] = {.lex_state = 128, .external_lex_state = 1}, + [13511] = {.lex_state = 131, .external_lex_state = 1}, + [13512] = {.lex_state = 131, .external_lex_state = 1}, + [13513] = {.lex_state = 131, .external_lex_state = 1}, + [13514] = {.lex_state = 131, .external_lex_state = 1}, + [13515] = {.lex_state = 119, .external_lex_state = 1}, + [13516] = {.lex_state = 131, .external_lex_state = 1}, + [13517] = {.lex_state = 131, .external_lex_state = 1}, + [13518] = {.lex_state = 128, .external_lex_state = 1}, + [13519] = {.lex_state = 119, .external_lex_state = 1}, + [13520] = {.lex_state = 111, .external_lex_state = 1}, + [13521] = {.lex_state = 239, .external_lex_state = 1}, + [13522] = {.lex_state = 115, .external_lex_state = 1}, + [13523] = {.lex_state = 239, .external_lex_state = 1}, + [13524] = {.lex_state = 115, .external_lex_state = 1}, + [13525] = {.lex_state = 115, .external_lex_state = 1}, + [13526] = {.lex_state = 239, .external_lex_state = 1}, + [13527] = {.lex_state = 115, .external_lex_state = 1}, + [13528] = {.lex_state = 115, .external_lex_state = 1}, + [13529] = {.lex_state = 115, .external_lex_state = 1}, + [13530] = {.lex_state = 115, .external_lex_state = 1}, + [13531] = {.lex_state = 131, .external_lex_state = 1}, + [13532] = {.lex_state = 115, .external_lex_state = 1}, + [13533] = {.lex_state = 119, .external_lex_state = 1}, + [13534] = {.lex_state = 119, .external_lex_state = 1}, + [13535] = {.lex_state = 119, .external_lex_state = 1}, + [13536] = {.lex_state = 128, .external_lex_state = 1}, + [13537] = {.lex_state = 220, .external_lex_state = 1}, + [13538] = {.lex_state = 115, .external_lex_state = 1}, + [13539] = {.lex_state = 115, .external_lex_state = 1}, + [13540] = {.lex_state = 115, .external_lex_state = 1}, + [13541] = {.lex_state = 115, .external_lex_state = 1}, + [13542] = {.lex_state = 128, .external_lex_state = 1}, + [13543] = {.lex_state = 128, .external_lex_state = 1}, + [13544] = {.lex_state = 115, .external_lex_state = 1}, + [13545] = {.lex_state = 128, .external_lex_state = 1}, + [13546] = {.lex_state = 128, .external_lex_state = 1}, + [13547] = {.lex_state = 115, .external_lex_state = 1}, + [13548] = {.lex_state = 128, .external_lex_state = 1}, + [13549] = {.lex_state = 128, .external_lex_state = 1}, + [13550] = {.lex_state = 119, .external_lex_state = 1}, + [13551] = {.lex_state = 128, .external_lex_state = 1}, + [13552] = {.lex_state = 128, .external_lex_state = 1}, + [13553] = {.lex_state = 128, .external_lex_state = 1}, + [13554] = {.lex_state = 131, .external_lex_state = 1}, + [13555] = {.lex_state = 131, .external_lex_state = 1}, + [13556] = {.lex_state = 131, .external_lex_state = 1}, + [13557] = {.lex_state = 128, .external_lex_state = 1}, + [13558] = {.lex_state = 119, .external_lex_state = 1}, + [13559] = {.lex_state = 128, .external_lex_state = 1}, + [13560] = {.lex_state = 131, .external_lex_state = 1}, + [13561] = {.lex_state = 128, .external_lex_state = 1}, + [13562] = {.lex_state = 115, .external_lex_state = 1}, + [13563] = {.lex_state = 119, .external_lex_state = 1}, + [13564] = {.lex_state = 119, .external_lex_state = 1}, + [13565] = {.lex_state = 115, .external_lex_state = 1}, + [13566] = {.lex_state = 119, .external_lex_state = 1}, + [13567] = {.lex_state = 128, .external_lex_state = 1}, + [13568] = {.lex_state = 128, .external_lex_state = 1}, + [13569] = {.lex_state = 149, .external_lex_state = 1}, + [13570] = {.lex_state = 128, .external_lex_state = 1}, + [13571] = {.lex_state = 128, .external_lex_state = 1}, + [13572] = {.lex_state = 128, .external_lex_state = 1}, + [13573] = {.lex_state = 128, .external_lex_state = 1}, + [13574] = {.lex_state = 128, .external_lex_state = 1}, + [13575] = {.lex_state = 128, .external_lex_state = 1}, + [13576] = {.lex_state = 128, .external_lex_state = 1}, + [13577] = {.lex_state = 116, .external_lex_state = 1}, + [13578] = {.lex_state = 115, .external_lex_state = 1}, + [13579] = {.lex_state = 128, .external_lex_state = 1}, + [13580] = {.lex_state = 115, .external_lex_state = 1}, + [13581] = {.lex_state = 115, .external_lex_state = 1}, + [13582] = {.lex_state = 115, .external_lex_state = 1}, + [13583] = {.lex_state = 119, .external_lex_state = 1}, + [13584] = {.lex_state = 128, .external_lex_state = 1}, + [13585] = {.lex_state = 119, .external_lex_state = 1}, + [13586] = {.lex_state = 128, .external_lex_state = 1}, + [13587] = {.lex_state = 128, .external_lex_state = 1}, + [13588] = {.lex_state = 119, .external_lex_state = 1}, + [13589] = {.lex_state = 119, .external_lex_state = 1}, + [13590] = {.lex_state = 128, .external_lex_state = 1}, + [13591] = {.lex_state = 119, .external_lex_state = 1}, + [13592] = {.lex_state = 115, .external_lex_state = 1}, + [13593] = {.lex_state = 128, .external_lex_state = 1}, + [13594] = {.lex_state = 115, .external_lex_state = 1}, + [13595] = {.lex_state = 128, .external_lex_state = 1}, + [13596] = {.lex_state = 119, .external_lex_state = 1}, + [13597] = {.lex_state = 119, .external_lex_state = 1}, + [13598] = {.lex_state = 115, .external_lex_state = 1}, + [13599] = {.lex_state = 128, .external_lex_state = 1}, + [13600] = {.lex_state = 128, .external_lex_state = 1}, + [13601] = {.lex_state = 128, .external_lex_state = 1}, + [13602] = {.lex_state = 128, .external_lex_state = 1}, + [13603] = {.lex_state = 131, .external_lex_state = 1}, + [13604] = {.lex_state = 131, .external_lex_state = 1}, + [13605] = {.lex_state = 119, .external_lex_state = 1}, + [13606] = {.lex_state = 131, .external_lex_state = 1}, + [13607] = {.lex_state = 128, .external_lex_state = 1}, + [13608] = {.lex_state = 128, .external_lex_state = 1}, + [13609] = {.lex_state = 128, .external_lex_state = 1}, + [13610] = {.lex_state = 119, .external_lex_state = 1}, + [13611] = {.lex_state = 128, .external_lex_state = 1}, + [13612] = {.lex_state = 119, .external_lex_state = 1}, + [13613] = {.lex_state = 119, .external_lex_state = 1}, + [13614] = {.lex_state = 119, .external_lex_state = 1}, + [13615] = {.lex_state = 119, .external_lex_state = 1}, + [13616] = {.lex_state = 119, .external_lex_state = 1}, + [13617] = {.lex_state = 119, .external_lex_state = 1}, + [13618] = {.lex_state = 131, .external_lex_state = 1}, + [13619] = {.lex_state = 128, .external_lex_state = 1}, + [13620] = {.lex_state = 128, .external_lex_state = 1}, + [13621] = {.lex_state = 131, .external_lex_state = 1}, + [13622] = {.lex_state = 119, .external_lex_state = 1}, + [13623] = {.lex_state = 128, .external_lex_state = 1}, + [13624] = {.lex_state = 128, .external_lex_state = 1}, + [13625] = {.lex_state = 128, .external_lex_state = 1}, + [13626] = {.lex_state = 128, .external_lex_state = 1}, + [13627] = {.lex_state = 128, .external_lex_state = 1}, + [13628] = {.lex_state = 131, .external_lex_state = 1}, + [13629] = {.lex_state = 119, .external_lex_state = 1}, + [13630] = {.lex_state = 131, .external_lex_state = 1}, + [13631] = {.lex_state = 128, .external_lex_state = 1}, + [13632] = {.lex_state = 128, .external_lex_state = 1}, + [13633] = {.lex_state = 119, .external_lex_state = 1}, + [13634] = {.lex_state = 119, .external_lex_state = 1}, + [13635] = {.lex_state = 241, .external_lex_state = 1}, + [13636] = {.lex_state = 241, .external_lex_state = 1}, + [13637] = {.lex_state = 241, .external_lex_state = 1}, + [13638] = {.lex_state = 131, .external_lex_state = 1}, + [13639] = {.lex_state = 119, .external_lex_state = 1}, + [13640] = {.lex_state = 119, .external_lex_state = 1}, + [13641] = {.lex_state = 119, .external_lex_state = 1}, + [13642] = {.lex_state = 241, .external_lex_state = 1}, + [13643] = {.lex_state = 241, .external_lex_state = 1}, + [13644] = {.lex_state = 241, .external_lex_state = 1}, + [13645] = {.lex_state = 119, .external_lex_state = 1}, + [13646] = {.lex_state = 119, .external_lex_state = 1}, + [13647] = {.lex_state = 119, .external_lex_state = 1}, + [13648] = {.lex_state = 119, .external_lex_state = 1}, + [13649] = {.lex_state = 128, .external_lex_state = 1}, + [13650] = {.lex_state = 115, .external_lex_state = 1}, + [13651] = {.lex_state = 119, .external_lex_state = 1}, + [13652] = {.lex_state = 128, .external_lex_state = 1}, + [13653] = {.lex_state = 128, .external_lex_state = 1}, + [13654] = {.lex_state = 128, .external_lex_state = 1}, + [13655] = {.lex_state = 128, .external_lex_state = 1}, + [13656] = {.lex_state = 128, .external_lex_state = 1}, + [13657] = {.lex_state = 128, .external_lex_state = 1}, + [13658] = {.lex_state = 128, .external_lex_state = 1}, + [13659] = {.lex_state = 115, .external_lex_state = 1}, + [13660] = {.lex_state = 128, .external_lex_state = 1}, + [13661] = {.lex_state = 239, .external_lex_state = 1}, + [13662] = {.lex_state = 128, .external_lex_state = 1}, + [13663] = {.lex_state = 119, .external_lex_state = 1}, + [13664] = {.lex_state = 239, .external_lex_state = 1}, + [13665] = {.lex_state = 128, .external_lex_state = 1}, + [13666] = {.lex_state = 239, .external_lex_state = 1}, + [13667] = {.lex_state = 119, .external_lex_state = 1}, + [13668] = {.lex_state = 128, .external_lex_state = 1}, + [13669] = {.lex_state = 115, .external_lex_state = 1}, + [13670] = {.lex_state = 115, .external_lex_state = 1}, + [13671] = {.lex_state = 115, .external_lex_state = 1}, + [13672] = {.lex_state = 128, .external_lex_state = 1}, + [13673] = {.lex_state = 128, .external_lex_state = 1}, + [13674] = {.lex_state = 128, .external_lex_state = 1}, + [13675] = {.lex_state = 128, .external_lex_state = 1}, + [13676] = {.lex_state = 128, .external_lex_state = 1}, + [13677] = {.lex_state = 128, .external_lex_state = 1}, + [13678] = {.lex_state = 128, .external_lex_state = 1}, + [13679] = {.lex_state = 128, .external_lex_state = 1}, + [13680] = {.lex_state = 128, .external_lex_state = 1}, + [13681] = {.lex_state = 128, .external_lex_state = 1}, + [13682] = {.lex_state = 115, .external_lex_state = 1}, + [13683] = {.lex_state = 115, .external_lex_state = 1}, + [13684] = {.lex_state = 128, .external_lex_state = 1}, + [13685] = {.lex_state = 128, .external_lex_state = 1}, + [13686] = {.lex_state = 128, .external_lex_state = 1}, + [13687] = {.lex_state = 128, .external_lex_state = 1}, + [13688] = {.lex_state = 128, .external_lex_state = 1}, + [13689] = {.lex_state = 128, .external_lex_state = 1}, + [13690] = {.lex_state = 128, .external_lex_state = 1}, + [13691] = {.lex_state = 128, .external_lex_state = 1}, + [13692] = {.lex_state = 128, .external_lex_state = 1}, + [13693] = {.lex_state = 128, .external_lex_state = 1}, + [13694] = {.lex_state = 131, .external_lex_state = 1}, + [13695] = {.lex_state = 131, .external_lex_state = 1}, + [13696] = {.lex_state = 128, .external_lex_state = 1}, + [13697] = {.lex_state = 125, .external_lex_state = 1}, + [13698] = {.lex_state = 125, .external_lex_state = 1}, + [13699] = {.lex_state = 131, .external_lex_state = 1}, + [13700] = {.lex_state = 220, .external_lex_state = 1}, + [13701] = {.lex_state = 125, .external_lex_state = 1}, + [13702] = {.lex_state = 125, .external_lex_state = 1}, + [13703] = {.lex_state = 125, .external_lex_state = 1}, + [13704] = {.lex_state = 125, .external_lex_state = 1}, + [13705] = {.lex_state = 125, .external_lex_state = 1}, + [13706] = {.lex_state = 125, .external_lex_state = 1}, + [13707] = {.lex_state = 125, .external_lex_state = 1}, + [13708] = {.lex_state = 125, .external_lex_state = 1}, + [13709] = {.lex_state = 125, .external_lex_state = 1}, + [13710] = {.lex_state = 125, .external_lex_state = 1}, + [13711] = {.lex_state = 125, .external_lex_state = 1}, + [13712] = {.lex_state = 131, .external_lex_state = 1}, + [13713] = {.lex_state = 131, .external_lex_state = 1}, + [13714] = {.lex_state = 125, .external_lex_state = 1}, + [13715] = {.lex_state = 125, .external_lex_state = 1}, + [13716] = {.lex_state = 125, .external_lex_state = 1}, + [13717] = {.lex_state = 125, .external_lex_state = 1}, + [13718] = {.lex_state = 125, .external_lex_state = 1}, + [13719] = {.lex_state = 238, .external_lex_state = 1}, + [13720] = {.lex_state = 128, .external_lex_state = 1}, + [13721] = {.lex_state = 131, .external_lex_state = 1}, + [13722] = {.lex_state = 220, .external_lex_state = 1}, + [13723] = {.lex_state = 220, .external_lex_state = 1}, + [13724] = {.lex_state = 150, .external_lex_state = 1}, + [13725] = {.lex_state = 128, .external_lex_state = 1}, + [13726] = {.lex_state = 125, .external_lex_state = 1}, + [13727] = {.lex_state = 125, .external_lex_state = 1}, + [13728] = {.lex_state = 125, .external_lex_state = 1}, + [13729] = {.lex_state = 220, .external_lex_state = 1}, + [13730] = {.lex_state = 125, .external_lex_state = 1}, + [13731] = {.lex_state = 125, .external_lex_state = 1}, + [13732] = {.lex_state = 125, .external_lex_state = 1}, + [13733] = {.lex_state = 125, .external_lex_state = 1}, + [13734] = {.lex_state = 125, .external_lex_state = 1}, + [13735] = {.lex_state = 125, .external_lex_state = 1}, + [13736] = {.lex_state = 125, .external_lex_state = 1}, + [13737] = {.lex_state = 125, .external_lex_state = 1}, + [13738] = {.lex_state = 125, .external_lex_state = 1}, + [13739] = {.lex_state = 125, .external_lex_state = 1}, + [13740] = {.lex_state = 125, .external_lex_state = 1}, + [13741] = {.lex_state = 125, .external_lex_state = 1}, + [13742] = {.lex_state = 125, .external_lex_state = 1}, + [13743] = {.lex_state = 125, .external_lex_state = 1}, + [13744] = {.lex_state = 125, .external_lex_state = 1}, + [13745] = {.lex_state = 119, .external_lex_state = 1}, + [13746] = {.lex_state = 125, .external_lex_state = 1}, + [13747] = {.lex_state = 220, .external_lex_state = 1}, + [13748] = {.lex_state = 125, .external_lex_state = 1}, + [13749] = {.lex_state = 125, .external_lex_state = 1}, + [13750] = {.lex_state = 125, .external_lex_state = 1}, + [13751] = {.lex_state = 125, .external_lex_state = 1}, + [13752] = {.lex_state = 125, .external_lex_state = 1}, + [13753] = {.lex_state = 120, .external_lex_state = 1}, + [13754] = {.lex_state = 125, .external_lex_state = 1}, + [13755] = {.lex_state = 125, .external_lex_state = 1}, + [13756] = {.lex_state = 125, .external_lex_state = 1}, + [13757] = {.lex_state = 125, .external_lex_state = 1}, + [13758] = {.lex_state = 125, .external_lex_state = 1}, + [13759] = {.lex_state = 125, .external_lex_state = 1}, + [13760] = {.lex_state = 125, .external_lex_state = 1}, + [13761] = {.lex_state = 119, .external_lex_state = 1}, + [13762] = {.lex_state = 120, .external_lex_state = 1}, + [13763] = {.lex_state = 119, .external_lex_state = 1}, + [13764] = {.lex_state = 116, .external_lex_state = 1}, + [13765] = {.lex_state = 125, .external_lex_state = 1}, + [13766] = {.lex_state = 125, .external_lex_state = 1}, + [13767] = {.lex_state = 125, .external_lex_state = 1}, + [13768] = {.lex_state = 116, .external_lex_state = 1}, + [13769] = {.lex_state = 116, .external_lex_state = 1}, + [13770] = {.lex_state = 116, .external_lex_state = 1}, + [13771] = {.lex_state = 115, .external_lex_state = 1}, + [13772] = {.lex_state = 125, .external_lex_state = 1}, + [13773] = {.lex_state = 125, .external_lex_state = 1}, + [13774] = {.lex_state = 125, .external_lex_state = 1}, + [13775] = {.lex_state = 131, .external_lex_state = 1}, + [13776] = {.lex_state = 131, .external_lex_state = 1}, + [13777] = {.lex_state = 125, .external_lex_state = 1}, + [13778] = {.lex_state = 125, .external_lex_state = 1}, + [13779] = {.lex_state = 125, .external_lex_state = 1}, + [13780] = {.lex_state = 125, .external_lex_state = 1}, + [13781] = {.lex_state = 131, .external_lex_state = 1}, + [13782] = {.lex_state = 125, .external_lex_state = 1}, + [13783] = {.lex_state = 125, .external_lex_state = 1}, + [13784] = {.lex_state = 131, .external_lex_state = 1}, + [13785] = {.lex_state = 125, .external_lex_state = 1}, + [13786] = {.lex_state = 125, .external_lex_state = 1}, + [13787] = {.lex_state = 125, .external_lex_state = 1}, + [13788] = {.lex_state = 125, .external_lex_state = 1}, + [13789] = {.lex_state = 125, .external_lex_state = 1}, + [13790] = {.lex_state = 125, .external_lex_state = 1}, + [13791] = {.lex_state = 125, .external_lex_state = 1}, + [13792] = {.lex_state = 125, .external_lex_state = 1}, + [13793] = {.lex_state = 125, .external_lex_state = 1}, + [13794] = {.lex_state = 125, .external_lex_state = 1}, + [13795] = {.lex_state = 125, .external_lex_state = 1}, + [13796] = {.lex_state = 125, .external_lex_state = 1}, + [13797] = {.lex_state = 125, .external_lex_state = 1}, + [13798] = {.lex_state = 125, .external_lex_state = 1}, + [13799] = {.lex_state = 149, .external_lex_state = 1}, + [13800] = {.lex_state = 125, .external_lex_state = 1}, + [13801] = {.lex_state = 125, .external_lex_state = 1}, + [13802] = {.lex_state = 125, .external_lex_state = 1}, + [13803] = {.lex_state = 125, .external_lex_state = 1}, + [13804] = {.lex_state = 125, .external_lex_state = 1}, + [13805] = {.lex_state = 125, .external_lex_state = 1}, + [13806] = {.lex_state = 116, .external_lex_state = 1}, + [13807] = {.lex_state = 125, .external_lex_state = 1}, + [13808] = {.lex_state = 125, .external_lex_state = 1}, + [13809] = {.lex_state = 125, .external_lex_state = 1}, + [13810] = {.lex_state = 125, .external_lex_state = 1}, + [13811] = {.lex_state = 125, .external_lex_state = 1}, + [13812] = {.lex_state = 125, .external_lex_state = 1}, + [13813] = {.lex_state = 125, .external_lex_state = 1}, + [13814] = {.lex_state = 116, .external_lex_state = 1}, + [13815] = {.lex_state = 125, .external_lex_state = 1}, + [13816] = {.lex_state = 125, .external_lex_state = 1}, + [13817] = {.lex_state = 116, .external_lex_state = 1}, + [13818] = {.lex_state = 125, .external_lex_state = 1}, + [13819] = {.lex_state = 125, .external_lex_state = 1}, + [13820] = {.lex_state = 128, .external_lex_state = 1}, + [13821] = {.lex_state = 125, .external_lex_state = 1}, + [13822] = {.lex_state = 125, .external_lex_state = 1}, + [13823] = {.lex_state = 125, .external_lex_state = 1}, + [13824] = {.lex_state = 125, .external_lex_state = 1}, + [13825] = {.lex_state = 125, .external_lex_state = 1}, + [13826] = {.lex_state = 125, .external_lex_state = 1}, + [13827] = {.lex_state = 125, .external_lex_state = 1}, + [13828] = {.lex_state = 125, .external_lex_state = 1}, + [13829] = {.lex_state = 220, .external_lex_state = 1}, + [13830] = {.lex_state = 125, .external_lex_state = 1}, + [13831] = {.lex_state = 125, .external_lex_state = 1}, + [13832] = {.lex_state = 125, .external_lex_state = 1}, + [13833] = {.lex_state = 125, .external_lex_state = 1}, + [13834] = {.lex_state = 125, .external_lex_state = 1}, + [13835] = {.lex_state = 155, .external_lex_state = 1}, + [13836] = {.lex_state = 125, .external_lex_state = 1}, + [13837] = {.lex_state = 125, .external_lex_state = 1}, + [13838] = {.lex_state = 125, .external_lex_state = 1}, + [13839] = {.lex_state = 125, .external_lex_state = 1}, + [13840] = {.lex_state = 155, .external_lex_state = 1}, + [13841] = {.lex_state = 125, .external_lex_state = 1}, + [13842] = {.lex_state = 125, .external_lex_state = 1}, + [13843] = {.lex_state = 125, .external_lex_state = 1}, + [13844] = {.lex_state = 125, .external_lex_state = 1}, + [13845] = {.lex_state = 125, .external_lex_state = 1}, + [13846] = {.lex_state = 116, .external_lex_state = 1}, + [13847] = {.lex_state = 119, .external_lex_state = 1}, + [13848] = {.lex_state = 125, .external_lex_state = 1}, + [13849] = {.lex_state = 125, .external_lex_state = 1}, + [13850] = {.lex_state = 155, .external_lex_state = 1}, + [13851] = {.lex_state = 125, .external_lex_state = 1}, + [13852] = {.lex_state = 115, .external_lex_state = 1}, + [13853] = {.lex_state = 125, .external_lex_state = 1}, + [13854] = {.lex_state = 125, .external_lex_state = 1}, + [13855] = {.lex_state = 125, .external_lex_state = 1}, + [13856] = {.lex_state = 120, .external_lex_state = 1}, + [13857] = {.lex_state = 120, .external_lex_state = 1}, + [13858] = {.lex_state = 120, .external_lex_state = 1}, + [13859] = {.lex_state = 125, .external_lex_state = 1}, + [13860] = {.lex_state = 125, .external_lex_state = 1}, + [13861] = {.lex_state = 240, .external_lex_state = 1}, + [13862] = {.lex_state = 125, .external_lex_state = 1}, + [13863] = {.lex_state = 125, .external_lex_state = 1}, + [13864] = {.lex_state = 120, .external_lex_state = 1}, + [13865] = {.lex_state = 125, .external_lex_state = 1}, + [13866] = {.lex_state = 116, .external_lex_state = 1}, + [13867] = {.lex_state = 128, .external_lex_state = 1}, + [13868] = {.lex_state = 125, .external_lex_state = 1}, + [13869] = {.lex_state = 125, .external_lex_state = 1}, + [13870] = {.lex_state = 116, .external_lex_state = 1}, + [13871] = {.lex_state = 116, .external_lex_state = 1}, + [13872] = {.lex_state = 116, .external_lex_state = 1}, + [13873] = {.lex_state = 125, .external_lex_state = 1}, + [13874] = {.lex_state = 125, .external_lex_state = 1}, + [13875] = {.lex_state = 125, .external_lex_state = 1}, + [13876] = {.lex_state = 125, .external_lex_state = 1}, + [13877] = {.lex_state = 125, .external_lex_state = 1}, + [13878] = {.lex_state = 125, .external_lex_state = 1}, + [13879] = {.lex_state = 131, .external_lex_state = 1}, + [13880] = {.lex_state = 115, .external_lex_state = 1}, + [13881] = {.lex_state = 125, .external_lex_state = 1}, + [13882] = {.lex_state = 125, .external_lex_state = 1}, + [13883] = {.lex_state = 125, .external_lex_state = 1}, + [13884] = {.lex_state = 125, .external_lex_state = 1}, + [13885] = {.lex_state = 125, .external_lex_state = 1}, + [13886] = {.lex_state = 125, .external_lex_state = 1}, + [13887] = {.lex_state = 125, .external_lex_state = 1}, + [13888] = {.lex_state = 125, .external_lex_state = 1}, + [13889] = {.lex_state = 125, .external_lex_state = 1}, + [13890] = {.lex_state = 221, .external_lex_state = 1}, + [13891] = {.lex_state = 125, .external_lex_state = 1}, + [13892] = {.lex_state = 125, .external_lex_state = 1}, + [13893] = {.lex_state = 128, .external_lex_state = 1}, + [13894] = {.lex_state = 125, .external_lex_state = 1}, + [13895] = {.lex_state = 125, .external_lex_state = 1}, + [13896] = {.lex_state = 125, .external_lex_state = 1}, + [13897] = {.lex_state = 128, .external_lex_state = 1}, + [13898] = {.lex_state = 125, .external_lex_state = 1}, + [13899] = {.lex_state = 125, .external_lex_state = 1}, + [13900] = {.lex_state = 125, .external_lex_state = 1}, + [13901] = {.lex_state = 125, .external_lex_state = 1}, + [13902] = {.lex_state = 125, .external_lex_state = 1}, + [13903] = {.lex_state = 125, .external_lex_state = 1}, + [13904] = {.lex_state = 125, .external_lex_state = 1}, + [13905] = {.lex_state = 125, .external_lex_state = 1}, + [13906] = {.lex_state = 125, .external_lex_state = 1}, + [13907] = {.lex_state = 125, .external_lex_state = 1}, + [13908] = {.lex_state = 125, .external_lex_state = 1}, + [13909] = {.lex_state = 125, .external_lex_state = 1}, + [13910] = {.lex_state = 125, .external_lex_state = 1}, + [13911] = {.lex_state = 125, .external_lex_state = 1}, + [13912] = {.lex_state = 120, .external_lex_state = 1}, + [13913] = {.lex_state = 128, .external_lex_state = 1}, + [13914] = {.lex_state = 128, .external_lex_state = 1}, + [13915] = {.lex_state = 128, .external_lex_state = 1}, + [13916] = {.lex_state = 128, .external_lex_state = 1}, + [13917] = {.lex_state = 125, .external_lex_state = 1}, + [13918] = {.lex_state = 125, .external_lex_state = 1}, + [13919] = {.lex_state = 125, .external_lex_state = 1}, + [13920] = {.lex_state = 128, .external_lex_state = 1}, + [13921] = {.lex_state = 119, .external_lex_state = 1}, + [13922] = {.lex_state = 116, .external_lex_state = 1}, + [13923] = {.lex_state = 116, .external_lex_state = 1}, + [13924] = {.lex_state = 240, .external_lex_state = 1}, + [13925] = {.lex_state = 240, .external_lex_state = 1}, + [13926] = {.lex_state = 128, .external_lex_state = 1}, + [13927] = {.lex_state = 128, .external_lex_state = 1}, + [13928] = {.lex_state = 125, .external_lex_state = 1}, + [13929] = {.lex_state = 128, .external_lex_state = 1}, + [13930] = {.lex_state = 125, .external_lex_state = 1}, + [13931] = {.lex_state = 125, .external_lex_state = 1}, + [13932] = {.lex_state = 125, .external_lex_state = 1}, + [13933] = {.lex_state = 128, .external_lex_state = 1}, + [13934] = {.lex_state = 116, .external_lex_state = 1}, + [13935] = {.lex_state = 125, .external_lex_state = 1}, + [13936] = {.lex_state = 116, .external_lex_state = 1}, + [13937] = {.lex_state = 125, .external_lex_state = 1}, + [13938] = {.lex_state = 125, .external_lex_state = 1}, + [13939] = {.lex_state = 131, .external_lex_state = 1}, + [13940] = {.lex_state = 125, .external_lex_state = 1}, + [13941] = {.lex_state = 125, .external_lex_state = 1}, + [13942] = {.lex_state = 125, .external_lex_state = 1}, + [13943] = {.lex_state = 125, .external_lex_state = 1}, + [13944] = {.lex_state = 125, .external_lex_state = 1}, + [13945] = {.lex_state = 116, .external_lex_state = 1}, + [13946] = {.lex_state = 128, .external_lex_state = 1}, + [13947] = {.lex_state = 128, .external_lex_state = 1}, + [13948] = {.lex_state = 116, .external_lex_state = 1}, + [13949] = {.lex_state = 128, .external_lex_state = 1}, + [13950] = {.lex_state = 116, .external_lex_state = 1}, + [13951] = {.lex_state = 125, .external_lex_state = 1}, + [13952] = {.lex_state = 115, .external_lex_state = 1}, + [13953] = {.lex_state = 125, .external_lex_state = 1}, + [13954] = {.lex_state = 125, .external_lex_state = 1}, + [13955] = {.lex_state = 125, .external_lex_state = 1}, + [13956] = {.lex_state = 149, .external_lex_state = 1}, + [13957] = {.lex_state = 125, .external_lex_state = 1}, + [13958] = {.lex_state = 125, .external_lex_state = 1}, + [13959] = {.lex_state = 116, .external_lex_state = 1}, + [13960] = {.lex_state = 116, .external_lex_state = 1}, + [13961] = {.lex_state = 116, .external_lex_state = 1}, + [13962] = {.lex_state = 125, .external_lex_state = 1}, + [13963] = {.lex_state = 116, .external_lex_state = 1}, + [13964] = {.lex_state = 116, .external_lex_state = 1}, + [13965] = {.lex_state = 116, .external_lex_state = 1}, + [13966] = {.lex_state = 125, .external_lex_state = 1}, + [13967] = {.lex_state = 125, .external_lex_state = 1}, + [13968] = {.lex_state = 125, .external_lex_state = 1}, + [13969] = {.lex_state = 116, .external_lex_state = 1}, + [13970] = {.lex_state = 125, .external_lex_state = 1}, + [13971] = {.lex_state = 116, .external_lex_state = 1}, + [13972] = {.lex_state = 125, .external_lex_state = 1}, + [13973] = {.lex_state = 125, .external_lex_state = 1}, + [13974] = {.lex_state = 119, .external_lex_state = 1}, + [13975] = {.lex_state = 125, .external_lex_state = 1}, + [13976] = {.lex_state = 120, .external_lex_state = 1}, + [13977] = {.lex_state = 116, .external_lex_state = 1}, + [13978] = {.lex_state = 120, .external_lex_state = 1}, + [13979] = {.lex_state = 131, .external_lex_state = 1}, + [13980] = {.lex_state = 149, .external_lex_state = 1}, + [13981] = {.lex_state = 149, .external_lex_state = 1}, + [13982] = {.lex_state = 149, .external_lex_state = 1}, + [13983] = {.lex_state = 149, .external_lex_state = 1}, + [13984] = {.lex_state = 149, .external_lex_state = 1}, + [13985] = {.lex_state = 128, .external_lex_state = 1}, + [13986] = {.lex_state = 149, .external_lex_state = 1}, + [13987] = {.lex_state = 149, .external_lex_state = 1}, + [13988] = {.lex_state = 125, .external_lex_state = 1}, + [13989] = {.lex_state = 125, .external_lex_state = 1}, + [13990] = {.lex_state = 125, .external_lex_state = 1}, + [13991] = {.lex_state = 131, .external_lex_state = 1}, + [13992] = {.lex_state = 125, .external_lex_state = 1}, + [13993] = {.lex_state = 119, .external_lex_state = 1}, + [13994] = {.lex_state = 149, .external_lex_state = 1}, + [13995] = {.lex_state = 125, .external_lex_state = 1}, + [13996] = {.lex_state = 149, .external_lex_state = 1}, + [13997] = {.lex_state = 149, .external_lex_state = 1}, + [13998] = {.lex_state = 149, .external_lex_state = 1}, + [13999] = {.lex_state = 149, .external_lex_state = 1}, + [14000] = {.lex_state = 125, .external_lex_state = 1}, + [14001] = {.lex_state = 125, .external_lex_state = 1}, + [14002] = {.lex_state = 125, .external_lex_state = 1}, + [14003] = {.lex_state = 125, .external_lex_state = 1}, + [14004] = {.lex_state = 149, .external_lex_state = 1}, + [14005] = {.lex_state = 128, .external_lex_state = 1}, + [14006] = {.lex_state = 131, .external_lex_state = 1}, + [14007] = {.lex_state = 128, .external_lex_state = 1}, + [14008] = {.lex_state = 125, .external_lex_state = 1}, + [14009] = {.lex_state = 128, .external_lex_state = 1}, + [14010] = {.lex_state = 125, .external_lex_state = 1}, + [14011] = {.lex_state = 128, .external_lex_state = 1}, + [14012] = {.lex_state = 128, .external_lex_state = 1}, + [14013] = {.lex_state = 128, .external_lex_state = 1}, + [14014] = {.lex_state = 128, .external_lex_state = 1}, + [14015] = {.lex_state = 128, .external_lex_state = 1}, + [14016] = {.lex_state = 128, .external_lex_state = 1}, + [14017] = {.lex_state = 128, .external_lex_state = 1}, + [14018] = {.lex_state = 128, .external_lex_state = 1}, + [14019] = {.lex_state = 125, .external_lex_state = 1}, + [14020] = {.lex_state = 155, .external_lex_state = 1}, + [14021] = {.lex_state = 128, .external_lex_state = 1}, + [14022] = {.lex_state = 128, .external_lex_state = 1}, + [14023] = {.lex_state = 125, .external_lex_state = 1}, + [14024] = {.lex_state = 131, .external_lex_state = 1}, + [14025] = {.lex_state = 128, .external_lex_state = 1}, + [14026] = {.lex_state = 128, .external_lex_state = 1}, + [14027] = {.lex_state = 128, .external_lex_state = 1}, + [14028] = {.lex_state = 237, .external_lex_state = 1}, + [14029] = {.lex_state = 128, .external_lex_state = 1}, + [14030] = {.lex_state = 131, .external_lex_state = 1}, + [14031] = {.lex_state = 128, .external_lex_state = 1}, + [14032] = {.lex_state = 125, .external_lex_state = 1}, + [14033] = {.lex_state = 125, .external_lex_state = 1}, + [14034] = {.lex_state = 125, .external_lex_state = 1}, + [14035] = {.lex_state = 128, .external_lex_state = 1}, + [14036] = {.lex_state = 128, .external_lex_state = 1}, + [14037] = {.lex_state = 128, .external_lex_state = 1}, + [14038] = {.lex_state = 125, .external_lex_state = 1}, + [14039] = {.lex_state = 220, .external_lex_state = 1}, + [14040] = {.lex_state = 128, .external_lex_state = 1}, + [14041] = {.lex_state = 128, .external_lex_state = 1}, + [14042] = {.lex_state = 220, .external_lex_state = 1}, + [14043] = {.lex_state = 125, .external_lex_state = 1}, + [14044] = {.lex_state = 128, .external_lex_state = 1}, + [14045] = {.lex_state = 128, .external_lex_state = 1}, + [14046] = {.lex_state = 131, .external_lex_state = 1}, + [14047] = {.lex_state = 125, .external_lex_state = 1}, + [14048] = {.lex_state = 125, .external_lex_state = 1}, + [14049] = {.lex_state = 131, .external_lex_state = 1}, + [14050] = {.lex_state = 125, .external_lex_state = 1}, + [14051] = {.lex_state = 125, .external_lex_state = 1}, + [14052] = {.lex_state = 128, .external_lex_state = 1}, + [14053] = {.lex_state = 125, .external_lex_state = 1}, + [14054] = {.lex_state = 128, .external_lex_state = 1}, + [14055] = {.lex_state = 125, .external_lex_state = 1}, + [14056] = {.lex_state = 125, .external_lex_state = 1}, + [14057] = {.lex_state = 125, .external_lex_state = 1}, + [14058] = {.lex_state = 125, .external_lex_state = 1}, + [14059] = {.lex_state = 125, .external_lex_state = 1}, + [14060] = {.lex_state = 125, .external_lex_state = 1}, + [14061] = {.lex_state = 125, .external_lex_state = 1}, + [14062] = {.lex_state = 240, .external_lex_state = 1}, + [14063] = {.lex_state = 116, .external_lex_state = 1}, + [14064] = {.lex_state = 125, .external_lex_state = 1}, + [14065] = {.lex_state = 125, .external_lex_state = 1}, + [14066] = {.lex_state = 116, .external_lex_state = 1}, + [14067] = {.lex_state = 116, .external_lex_state = 1}, + [14068] = {.lex_state = 116, .external_lex_state = 1}, + [14069] = {.lex_state = 220, .external_lex_state = 1}, + [14070] = {.lex_state = 116, .external_lex_state = 1}, + [14071] = {.lex_state = 220, .external_lex_state = 1}, + [14072] = {.lex_state = 220, .external_lex_state = 1}, + [14073] = {.lex_state = 125, .external_lex_state = 1}, + [14074] = {.lex_state = 125, .external_lex_state = 1}, + [14075] = {.lex_state = 125, .external_lex_state = 1}, + [14076] = {.lex_state = 125, .external_lex_state = 1}, + [14077] = {.lex_state = 125, .external_lex_state = 1}, + [14078] = {.lex_state = 238, .external_lex_state = 1}, + [14079] = {.lex_state = 238, .external_lex_state = 1}, + [14080] = {.lex_state = 220, .external_lex_state = 1}, + [14081] = {.lex_state = 220, .external_lex_state = 1}, + [14082] = {.lex_state = 125, .external_lex_state = 1}, + [14083] = {.lex_state = 125, .external_lex_state = 1}, + [14084] = {.lex_state = 125, .external_lex_state = 1}, + [14085] = {.lex_state = 131, .external_lex_state = 1}, + [14086] = {.lex_state = 125, .external_lex_state = 1}, + [14087] = {.lex_state = 125, .external_lex_state = 1}, + [14088] = {.lex_state = 149, .external_lex_state = 1}, + [14089] = {.lex_state = 125, .external_lex_state = 1}, + [14090] = {.lex_state = 125, .external_lex_state = 1}, + [14091] = {.lex_state = 128, .external_lex_state = 1}, + [14092] = {.lex_state = 128, .external_lex_state = 1}, + [14093] = {.lex_state = 128, .external_lex_state = 1}, + [14094] = {.lex_state = 125, .external_lex_state = 1}, + [14095] = {.lex_state = 128, .external_lex_state = 1}, + [14096] = {.lex_state = 125, .external_lex_state = 1}, + [14097] = {.lex_state = 125, .external_lex_state = 1}, + [14098] = {.lex_state = 238, .external_lex_state = 1}, + [14099] = {.lex_state = 220, .external_lex_state = 1}, + [14100] = {.lex_state = 220, .external_lex_state = 1}, + [14101] = {.lex_state = 128, .external_lex_state = 1}, + [14102] = {.lex_state = 128, .external_lex_state = 1}, + [14103] = {.lex_state = 128, .external_lex_state = 1}, + [14104] = {.lex_state = 128, .external_lex_state = 1}, + [14105] = {.lex_state = 125, .external_lex_state = 1}, + [14106] = {.lex_state = 128, .external_lex_state = 1}, + [14107] = {.lex_state = 131, .external_lex_state = 1}, + [14108] = {.lex_state = 128, .external_lex_state = 1}, + [14109] = {.lex_state = 220, .external_lex_state = 1}, + [14110] = {.lex_state = 128, .external_lex_state = 1}, + [14111] = {.lex_state = 128, .external_lex_state = 1}, + [14112] = {.lex_state = 128, .external_lex_state = 1}, + [14113] = {.lex_state = 128, .external_lex_state = 1}, + [14114] = {.lex_state = 128, .external_lex_state = 1}, + [14115] = {.lex_state = 128, .external_lex_state = 1}, + [14116] = {.lex_state = 128, .external_lex_state = 1}, + [14117] = {.lex_state = 128, .external_lex_state = 1}, + [14118] = {.lex_state = 128, .external_lex_state = 1}, + [14119] = {.lex_state = 128, .external_lex_state = 1}, + [14120] = {.lex_state = 128, .external_lex_state = 1}, + [14121] = {.lex_state = 128, .external_lex_state = 1}, + [14122] = {.lex_state = 131, .external_lex_state = 1}, + [14123] = {.lex_state = 221, .external_lex_state = 1}, + [14124] = {.lex_state = 221, .external_lex_state = 1}, + [14125] = {.lex_state = 221, .external_lex_state = 1}, + [14126] = {.lex_state = 221, .external_lex_state = 1}, + [14127] = {.lex_state = 221, .external_lex_state = 1}, + [14128] = {.lex_state = 221, .external_lex_state = 1}, + [14129] = {.lex_state = 221, .external_lex_state = 1}, + [14130] = {.lex_state = 221, .external_lex_state = 1}, + [14131] = {.lex_state = 221, .external_lex_state = 1}, + [14132] = {.lex_state = 221, .external_lex_state = 1}, + [14133] = {.lex_state = 150, .external_lex_state = 1}, + [14134] = {.lex_state = 221, .external_lex_state = 1}, + [14135] = {.lex_state = 122, .external_lex_state = 1}, + [14136] = {.lex_state = 122, .external_lex_state = 1}, + [14137] = {.lex_state = 150, .external_lex_state = 1}, + [14138] = {.lex_state = 122, .external_lex_state = 1}, + [14139] = {.lex_state = 128, .external_lex_state = 1}, + [14140] = {.lex_state = 119, .external_lex_state = 1}, + [14141] = {.lex_state = 222, .external_lex_state = 1}, + [14142] = {.lex_state = 221, .external_lex_state = 1}, + [14143] = {.lex_state = 119, .external_lex_state = 1}, + [14144] = {.lex_state = 221, .external_lex_state = 1}, + [14145] = {.lex_state = 221, .external_lex_state = 1}, + [14146] = {.lex_state = 150, .external_lex_state = 1}, + [14147] = {.lex_state = 128, .external_lex_state = 1}, + [14148] = {.lex_state = 241, .external_lex_state = 1}, + [14149] = {.lex_state = 128, .external_lex_state = 1}, + [14150] = {.lex_state = 150, .external_lex_state = 1}, + [14151] = {.lex_state = 150, .external_lex_state = 1}, + [14152] = {.lex_state = 151, .external_lex_state = 1}, + [14153] = {.lex_state = 131, .external_lex_state = 1}, + [14154] = {.lex_state = 150, .external_lex_state = 1}, + [14155] = {.lex_state = 117, .external_lex_state = 1}, + [14156] = {.lex_state = 150, .external_lex_state = 1}, + [14157] = {.lex_state = 131, .external_lex_state = 1}, + [14158] = {.lex_state = 241, .external_lex_state = 1}, + [14159] = {.lex_state = 128, .external_lex_state = 1}, + [14160] = {.lex_state = 128, .external_lex_state = 1}, + [14161] = {.lex_state = 128, .external_lex_state = 1}, + [14162] = {.lex_state = 128, .external_lex_state = 1}, + [14163] = {.lex_state = 128, .external_lex_state = 1}, + [14164] = {.lex_state = 239, .external_lex_state = 1}, + [14165] = {.lex_state = 128, .external_lex_state = 1}, + [14166] = {.lex_state = 128, .external_lex_state = 1}, + [14167] = {.lex_state = 131, .external_lex_state = 1}, + [14168] = {.lex_state = 128, .external_lex_state = 1}, + [14169] = {.lex_state = 128, .external_lex_state = 1}, + [14170] = {.lex_state = 150, .external_lex_state = 1}, + [14171] = {.lex_state = 128, .external_lex_state = 1}, + [14172] = {.lex_state = 239, .external_lex_state = 1}, + [14173] = {.lex_state = 150, .external_lex_state = 1}, + [14174] = {.lex_state = 150, .external_lex_state = 1}, + [14175] = {.lex_state = 128, .external_lex_state = 1}, + [14176] = {.lex_state = 150, .external_lex_state = 1}, + [14177] = {.lex_state = 128, .external_lex_state = 1}, + [14178] = {.lex_state = 128, .external_lex_state = 1}, + [14179] = {.lex_state = 128, .external_lex_state = 1}, + [14180] = {.lex_state = 241, .external_lex_state = 1}, + [14181] = {.lex_state = 128, .external_lex_state = 1}, + [14182] = {.lex_state = 128, .external_lex_state = 1}, + [14183] = {.lex_state = 128, .external_lex_state = 1}, + [14184] = {.lex_state = 150, .external_lex_state = 1}, + [14185] = {.lex_state = 150, .external_lex_state = 1}, + [14186] = {.lex_state = 150, .external_lex_state = 1}, + [14187] = {.lex_state = 549, .external_lex_state = 1}, + [14188] = {.lex_state = 128, .external_lex_state = 1}, + [14189] = {.lex_state = 241, .external_lex_state = 1}, + [14190] = {.lex_state = 128, .external_lex_state = 1}, + [14191] = {.lex_state = 122, .external_lex_state = 1}, + [14192] = {.lex_state = 122, .external_lex_state = 1}, + [14193] = {.lex_state = 128, .external_lex_state = 1}, + [14194] = {.lex_state = 122, .external_lex_state = 1}, + [14195] = {.lex_state = 128, .external_lex_state = 1}, + [14196] = {.lex_state = 150, .external_lex_state = 1}, + [14197] = {.lex_state = 128, .external_lex_state = 1}, + [14198] = {.lex_state = 150, .external_lex_state = 1}, + [14199] = {.lex_state = 221, .external_lex_state = 1}, + [14200] = {.lex_state = 239, .external_lex_state = 1}, + [14201] = {.lex_state = 128, .external_lex_state = 1}, + [14202] = {.lex_state = 221, .external_lex_state = 1}, + [14203] = {.lex_state = 151, .external_lex_state = 1}, + [14204] = {.lex_state = 131, .external_lex_state = 1}, + [14205] = {.lex_state = 222, .external_lex_state = 1}, + [14206] = {.lex_state = 117, .external_lex_state = 1}, + [14207] = {.lex_state = 117, .external_lex_state = 1}, + [14208] = {.lex_state = 117, .external_lex_state = 1}, + [14209] = {.lex_state = 117, .external_lex_state = 1}, + [14210] = {.lex_state = 117, .external_lex_state = 1}, + [14211] = {.lex_state = 117, .external_lex_state = 1}, + [14212] = {.lex_state = 151, .external_lex_state = 1}, + [14213] = {.lex_state = 151, .external_lex_state = 1}, + [14214] = {.lex_state = 549, .external_lex_state = 1}, + [14215] = {.lex_state = 151, .external_lex_state = 1}, + [14216] = {.lex_state = 117, .external_lex_state = 1}, + [14217] = {.lex_state = 222, .external_lex_state = 1}, + [14218] = {.lex_state = 117, .external_lex_state = 1}, + [14219] = {.lex_state = 222, .external_lex_state = 1}, + [14220] = {.lex_state = 117, .external_lex_state = 1}, + [14221] = {.lex_state = 151, .external_lex_state = 1}, + [14222] = {.lex_state = 117, .external_lex_state = 1}, + [14223] = {.lex_state = 222, .external_lex_state = 1}, + [14224] = {.lex_state = 117, .external_lex_state = 1}, + [14225] = {.lex_state = 117, .external_lex_state = 1}, + [14226] = {.lex_state = 117, .external_lex_state = 1}, + [14227] = {.lex_state = 117, .external_lex_state = 1}, + [14228] = {.lex_state = 222, .external_lex_state = 1}, + [14229] = {.lex_state = 549, .external_lex_state = 1}, + [14230] = {.lex_state = 222, .external_lex_state = 1}, + [14231] = {.lex_state = 117, .external_lex_state = 1}, + [14232] = {.lex_state = 122, .external_lex_state = 1}, + [14233] = {.lex_state = 151, .external_lex_state = 1}, + [14234] = {.lex_state = 151, .external_lex_state = 1}, + [14235] = {.lex_state = 151, .external_lex_state = 1}, + [14236] = {.lex_state = 131, .external_lex_state = 1}, + [14237] = {.lex_state = 131, .external_lex_state = 1}, + [14238] = {.lex_state = 131, .external_lex_state = 1}, + [14239] = {.lex_state = 151, .external_lex_state = 1}, + [14240] = {.lex_state = 117, .external_lex_state = 1}, + [14241] = {.lex_state = 151, .external_lex_state = 1}, + [14242] = {.lex_state = 549, .external_lex_state = 1}, + [14243] = {.lex_state = 117, .external_lex_state = 1}, + [14244] = {.lex_state = 549, .external_lex_state = 1}, + [14245] = {.lex_state = 131, .external_lex_state = 1}, + [14246] = {.lex_state = 549, .external_lex_state = 1}, + [14247] = {.lex_state = 151, .external_lex_state = 1}, + [14248] = {.lex_state = 122, .external_lex_state = 1}, + [14249] = {.lex_state = 122, .external_lex_state = 1}, + [14250] = {.lex_state = 122, .external_lex_state = 1}, + [14251] = {.lex_state = 151, .external_lex_state = 1}, + [14252] = {.lex_state = 222, .external_lex_state = 1}, + [14253] = {.lex_state = 549, .external_lex_state = 1}, + [14254] = {.lex_state = 117, .external_lex_state = 1}, + [14255] = {.lex_state = 117, .external_lex_state = 1}, + [14256] = {.lex_state = 131, .external_lex_state = 1}, + [14257] = {.lex_state = 117, .external_lex_state = 1}, + [14258] = {.lex_state = 131, .external_lex_state = 1}, + [14259] = {.lex_state = 549, .external_lex_state = 1}, + [14260] = {.lex_state = 117, .external_lex_state = 1}, + [14261] = {.lex_state = 117, .external_lex_state = 1}, + [14262] = {.lex_state = 117, .external_lex_state = 1}, + [14263] = {.lex_state = 117, .external_lex_state = 1}, + [14264] = {.lex_state = 222, .external_lex_state = 1}, + [14265] = {.lex_state = 549, .external_lex_state = 1}, + [14266] = {.lex_state = 549, .external_lex_state = 1}, + [14267] = {.lex_state = 117, .external_lex_state = 1}, + [14268] = {.lex_state = 222, .external_lex_state = 1}, + [14269] = {.lex_state = 549, .external_lex_state = 1}, + [14270] = {.lex_state = 131, .external_lex_state = 1}, + [14271] = {.lex_state = 549, .external_lex_state = 1}, + [14272] = {.lex_state = 131, .external_lex_state = 1}, + [14273] = {.lex_state = 550, .external_lex_state = 1}, + [14274] = {.lex_state = 117, .external_lex_state = 1}, + [14275] = {.lex_state = 117, .external_lex_state = 1}, + [14276] = {.lex_state = 117, .external_lex_state = 1}, + [14277] = {.lex_state = 549, .external_lex_state = 1}, + [14278] = {.lex_state = 222, .external_lex_state = 1}, + [14279] = {.lex_state = 222, .external_lex_state = 1}, + [14280] = {.lex_state = 222, .external_lex_state = 1}, + [14281] = {.lex_state = 222, .external_lex_state = 1}, + [14282] = {.lex_state = 131, .external_lex_state = 1}, + [14283] = {.lex_state = 117, .external_lex_state = 1}, + [14284] = {.lex_state = 549, .external_lex_state = 1}, + [14285] = {.lex_state = 117, .external_lex_state = 1}, + [14286] = {.lex_state = 122, .external_lex_state = 1}, + [14287] = {.lex_state = 117, .external_lex_state = 1}, + [14288] = {.lex_state = 117, .external_lex_state = 1}, + [14289] = {.lex_state = 122, .external_lex_state = 1}, + [14290] = {.lex_state = 549, .external_lex_state = 1}, + [14291] = {.lex_state = 551, .external_lex_state = 1}, + [14292] = {.lex_state = 151, .external_lex_state = 1}, + [14293] = {.lex_state = 122, .external_lex_state = 1}, + [14294] = {.lex_state = 117, .external_lex_state = 1}, + [14295] = {.lex_state = 122, .external_lex_state = 1}, + [14296] = {.lex_state = 549, .external_lex_state = 1}, + [14297] = {.lex_state = 222, .external_lex_state = 1}, + [14298] = {.lex_state = 151, .external_lex_state = 1}, + [14299] = {.lex_state = 222, .external_lex_state = 1}, + [14300] = {.lex_state = 151, .external_lex_state = 1}, + [14301] = {.lex_state = 133, .external_lex_state = 1}, + [14302] = {.lex_state = 222, .external_lex_state = 1}, + [14303] = {.lex_state = 111, .external_lex_state = 1}, + [14304] = {.lex_state = 117, .external_lex_state = 1}, + [14305] = {.lex_state = 549, .external_lex_state = 1}, + [14306] = {.lex_state = 151, .external_lex_state = 1}, + [14307] = {.lex_state = 131, .external_lex_state = 1}, + [14308] = {.lex_state = 547, .external_lex_state = 1}, + [14309] = {.lex_state = 551, .external_lex_state = 1}, + [14310] = {.lex_state = 552, .external_lex_state = 1}, + [14311] = {.lex_state = 122, .external_lex_state = 1}, + [14312] = {.lex_state = 551, .external_lex_state = 1}, + [14313] = {.lex_state = 118, .external_lex_state = 1}, + [14314] = {.lex_state = 550, .external_lex_state = 1}, + [14315] = {.lex_state = 551, .external_lex_state = 1}, + [14316] = {.lex_state = 131, .external_lex_state = 1}, + [14317] = {.lex_state = 551, .external_lex_state = 1}, + [14318] = {.lex_state = 551, .external_lex_state = 1}, + [14319] = {.lex_state = 113, .external_lex_state = 1}, + [14320] = {.lex_state = 133, .external_lex_state = 1}, + [14321] = {.lex_state = 123, .external_lex_state = 1}, + [14322] = {.lex_state = 550, .external_lex_state = 1}, + [14323] = {.lex_state = 550, .external_lex_state = 1}, + [14324] = {.lex_state = 123, .external_lex_state = 1}, + [14325] = {.lex_state = 133, .external_lex_state = 1}, + [14326] = {.lex_state = 551, .external_lex_state = 1}, + [14327] = {.lex_state = 551, .external_lex_state = 1}, + [14328] = {.lex_state = 122, .external_lex_state = 1}, + [14329] = {.lex_state = 133, .external_lex_state = 1}, + [14330] = {.lex_state = 133, .external_lex_state = 1}, + [14331] = {.lex_state = 122, .external_lex_state = 1}, + [14332] = {.lex_state = 113, .external_lex_state = 1}, + [14333] = {.lex_state = 122, .external_lex_state = 1}, + [14334] = {.lex_state = 135, .external_lex_state = 1}, + [14335] = {.lex_state = 551, .external_lex_state = 1}, + [14336] = {.lex_state = 122, .external_lex_state = 1}, + [14337] = {.lex_state = 550, .external_lex_state = 1}, + [14338] = {.lex_state = 122, .external_lex_state = 1}, + [14339] = {.lex_state = 550, .external_lex_state = 1}, + [14340] = {.lex_state = 550, .external_lex_state = 1}, + [14341] = {.lex_state = 551, .external_lex_state = 1}, + [14342] = {.lex_state = 113, .external_lex_state = 1}, + [14343] = {.lex_state = 122, .external_lex_state = 1}, + [14344] = {.lex_state = 113, .external_lex_state = 1}, + [14345] = {.lex_state = 122, .external_lex_state = 1}, + [14346] = {.lex_state = 551, .external_lex_state = 1}, + [14347] = {.lex_state = 133, .external_lex_state = 1}, + [14348] = {.lex_state = 122, .external_lex_state = 1}, + [14349] = {.lex_state = 122, .external_lex_state = 1}, + [14350] = {.lex_state = 122, .external_lex_state = 1}, + [14351] = {.lex_state = 550, .external_lex_state = 1}, + [14352] = {.lex_state = 133, .external_lex_state = 1}, + [14353] = {.lex_state = 550, .external_lex_state = 1}, + [14354] = {.lex_state = 134, .external_lex_state = 1}, + [14355] = {.lex_state = 551, .external_lex_state = 1}, + [14356] = {.lex_state = 122, .external_lex_state = 1}, + [14357] = {.lex_state = 550, .external_lex_state = 1}, + [14358] = {.lex_state = 133, .external_lex_state = 1}, + [14359] = {.lex_state = 550, .external_lex_state = 1}, + [14360] = {.lex_state = 547, .external_lex_state = 1}, + [14361] = {.lex_state = 122, .external_lex_state = 1}, + [14362] = {.lex_state = 550, .external_lex_state = 1}, + [14363] = {.lex_state = 551, .external_lex_state = 1}, + [14364] = {.lex_state = 551, .external_lex_state = 1}, + [14365] = {.lex_state = 122, .external_lex_state = 1}, + [14366] = {.lex_state = 122, .external_lex_state = 1}, + [14367] = {.lex_state = 246, .external_lex_state = 1}, + [14368] = {.lex_state = 133, .external_lex_state = 1}, + [14369] = {.lex_state = 122, .external_lex_state = 1}, + [14370] = {.lex_state = 550, .external_lex_state = 1}, + [14371] = {.lex_state = 122, .external_lex_state = 1}, + [14372] = {.lex_state = 550, .external_lex_state = 1}, + [14373] = {.lex_state = 550, .external_lex_state = 1}, + [14374] = {.lex_state = 550, .external_lex_state = 1}, + [14375] = {.lex_state = 133, .external_lex_state = 1}, + [14376] = {.lex_state = 133, .external_lex_state = 1}, + [14377] = {.lex_state = 122, .external_lex_state = 1}, + [14378] = {.lex_state = 122, .external_lex_state = 1}, + [14379] = {.lex_state = 122, .external_lex_state = 1}, + [14380] = {.lex_state = 122, .external_lex_state = 1}, + [14381] = {.lex_state = 156, .external_lex_state = 1}, + [14382] = {.lex_state = 133, .external_lex_state = 1}, + [14383] = {.lex_state = 133, .external_lex_state = 1}, + [14384] = {.lex_state = 551, .external_lex_state = 1}, + [14385] = {.lex_state = 133, .external_lex_state = 1}, + [14386] = {.lex_state = 133, .external_lex_state = 1}, + [14387] = {.lex_state = 122, .external_lex_state = 1}, + [14388] = {.lex_state = 133, .external_lex_state = 1}, + [14389] = {.lex_state = 551, .external_lex_state = 1}, + [14390] = {.lex_state = 547, .external_lex_state = 1}, + [14391] = {.lex_state = 133, .external_lex_state = 1}, + [14392] = {.lex_state = 551, .external_lex_state = 1}, + [14393] = {.lex_state = 550, .external_lex_state = 1}, + [14394] = {.lex_state = 125, .external_lex_state = 1}, + [14395] = {.lex_state = 125, .external_lex_state = 1}, + [14396] = {.lex_state = 125, .external_lex_state = 1}, + [14397] = {.lex_state = 125, .external_lex_state = 1}, + [14398] = {.lex_state = 125, .external_lex_state = 1}, + [14399] = {.lex_state = 125, .external_lex_state = 1}, + [14400] = {.lex_state = 125, .external_lex_state = 1}, + [14401] = {.lex_state = 125, .external_lex_state = 1}, + [14402] = {.lex_state = 125, .external_lex_state = 1}, + [14403] = {.lex_state = 125, .external_lex_state = 1}, + [14404] = {.lex_state = 125, .external_lex_state = 1}, + [14405] = {.lex_state = 125, .external_lex_state = 1}, + [14406] = {.lex_state = 125, .external_lex_state = 1}, + [14407] = {.lex_state = 125, .external_lex_state = 1}, + [14408] = {.lex_state = 175, .external_lex_state = 1}, + [14409] = {.lex_state = 125, .external_lex_state = 1}, + [14410] = {.lex_state = 125, .external_lex_state = 1}, + [14411] = {.lex_state = 125, .external_lex_state = 1}, + [14412] = {.lex_state = 125, .external_lex_state = 1}, + [14413] = {.lex_state = 125, .external_lex_state = 1}, + [14414] = {.lex_state = 125, .external_lex_state = 1}, + [14415] = {.lex_state = 125, .external_lex_state = 1}, + [14416] = {.lex_state = 125, .external_lex_state = 1}, + [14417] = {.lex_state = 125, .external_lex_state = 1}, + [14418] = {.lex_state = 125, .external_lex_state = 1}, + [14419] = {.lex_state = 552, .external_lex_state = 1}, + [14420] = {.lex_state = 552, .external_lex_state = 1}, + [14421] = {.lex_state = 125, .external_lex_state = 1}, + [14422] = {.lex_state = 552, .external_lex_state = 1}, + [14423] = {.lex_state = 125, .external_lex_state = 1}, + [14424] = {.lex_state = 125, .external_lex_state = 1}, + [14425] = {.lex_state = 125, .external_lex_state = 1}, + [14426] = {.lex_state = 125, .external_lex_state = 1}, + [14427] = {.lex_state = 125, .external_lex_state = 1}, + [14428] = {.lex_state = 125, .external_lex_state = 1}, + [14429] = {.lex_state = 125, .external_lex_state = 1}, + [14430] = {.lex_state = 125, .external_lex_state = 1}, + [14431] = {.lex_state = 125, .external_lex_state = 1}, + [14432] = {.lex_state = 125, .external_lex_state = 1}, + [14433] = {.lex_state = 125, .external_lex_state = 1}, + [14434] = {.lex_state = 125, .external_lex_state = 1}, + [14435] = {.lex_state = 125, .external_lex_state = 1}, + [14436] = {.lex_state = 125, .external_lex_state = 1}, + [14437] = {.lex_state = 125, .external_lex_state = 1}, + [14438] = {.lex_state = 125, .external_lex_state = 1}, + [14439] = {.lex_state = 125, .external_lex_state = 1}, + [14440] = {.lex_state = 125, .external_lex_state = 1}, + [14441] = {.lex_state = 125, .external_lex_state = 1}, + [14442] = {.lex_state = 125, .external_lex_state = 1}, + [14443] = {.lex_state = 125, .external_lex_state = 1}, + [14444] = {.lex_state = 125, .external_lex_state = 1}, + [14445] = {.lex_state = 125, .external_lex_state = 1}, + [14446] = {.lex_state = 125, .external_lex_state = 1}, + [14447] = {.lex_state = 125, .external_lex_state = 1}, + [14448] = {.lex_state = 122, .external_lex_state = 1}, + [14449] = {.lex_state = 125, .external_lex_state = 1}, + [14450] = {.lex_state = 125, .external_lex_state = 1}, + [14451] = {.lex_state = 414, .external_lex_state = 1}, + [14452] = {.lex_state = 125, .external_lex_state = 1}, + [14453] = {.lex_state = 546, .external_lex_state = 1}, + [14454] = {.lex_state = 125, .external_lex_state = 1}, + [14455] = {.lex_state = 157, .external_lex_state = 1}, + [14456] = {.lex_state = 125, .external_lex_state = 1}, + [14457] = {.lex_state = 125, .external_lex_state = 1}, + [14458] = {.lex_state = 546, .external_lex_state = 1}, + [14459] = {.lex_state = 125, .external_lex_state = 1}, + [14460] = {.lex_state = 414, .external_lex_state = 1}, + [14461] = {.lex_state = 414, .external_lex_state = 1}, + [14462] = {.lex_state = 414, .external_lex_state = 1}, + [14463] = {.lex_state = 125, .external_lex_state = 1}, + [14464] = {.lex_state = 414, .external_lex_state = 1}, + [14465] = {.lex_state = 125, .external_lex_state = 1}, + [14466] = {.lex_state = 125, .external_lex_state = 1}, + [14467] = {.lex_state = 125, .external_lex_state = 1}, + [14468] = {.lex_state = 414, .external_lex_state = 1}, + [14469] = {.lex_state = 125, .external_lex_state = 1}, + [14470] = {.lex_state = 552, .external_lex_state = 1}, + [14471] = {.lex_state = 552, .external_lex_state = 1}, + [14472] = {.lex_state = 125, .external_lex_state = 1}, + [14473] = {.lex_state = 125, .external_lex_state = 1}, + [14474] = {.lex_state = 125, .external_lex_state = 1}, + [14475] = {.lex_state = 125, .external_lex_state = 1}, + [14476] = {.lex_state = 125, .external_lex_state = 1}, + [14477] = {.lex_state = 125, .external_lex_state = 1}, + [14478] = {.lex_state = 125, .external_lex_state = 1}, + [14479] = {.lex_state = 125, .external_lex_state = 1}, + [14480] = {.lex_state = 125, .external_lex_state = 1}, + [14481] = {.lex_state = 125, .external_lex_state = 1}, + [14482] = {.lex_state = 125, .external_lex_state = 1}, + [14483] = {.lex_state = 125, .external_lex_state = 1}, + [14484] = {.lex_state = 125, .external_lex_state = 1}, + [14485] = {.lex_state = 125, .external_lex_state = 1}, + [14486] = {.lex_state = 125, .external_lex_state = 1}, + [14487] = {.lex_state = 125, .external_lex_state = 1}, + [14488] = {.lex_state = 125, .external_lex_state = 1}, + [14489] = {.lex_state = 125, .external_lex_state = 1}, + [14490] = {.lex_state = 125, .external_lex_state = 1}, + [14491] = {.lex_state = 125, .external_lex_state = 1}, + [14492] = {.lex_state = 125, .external_lex_state = 1}, + [14493] = {.lex_state = 125, .external_lex_state = 1}, + [14494] = {.lex_state = 125, .external_lex_state = 1}, + [14495] = {.lex_state = 122, .external_lex_state = 1}, + [14496] = {.lex_state = 125, .external_lex_state = 1}, + [14497] = {.lex_state = 125, .external_lex_state = 1}, + [14498] = {.lex_state = 125, .external_lex_state = 1}, + [14499] = {.lex_state = 125, .external_lex_state = 1}, + [14500] = {.lex_state = 125, .external_lex_state = 1}, + [14501] = {.lex_state = 546, .external_lex_state = 1}, + [14502] = {.lex_state = 125, .external_lex_state = 1}, + [14503] = {.lex_state = 125, .external_lex_state = 1}, + [14504] = {.lex_state = 546, .external_lex_state = 1}, + [14505] = {.lex_state = 125, .external_lex_state = 1}, + [14506] = {.lex_state = 125, .external_lex_state = 1}, + [14507] = {.lex_state = 125, .external_lex_state = 1}, + [14508] = {.lex_state = 125, .external_lex_state = 1}, + [14509] = {.lex_state = 125, .external_lex_state = 1}, + [14510] = {.lex_state = 125, .external_lex_state = 1}, + [14511] = {.lex_state = 125, .external_lex_state = 1}, + [14512] = {.lex_state = 125, .external_lex_state = 1}, + [14513] = {.lex_state = 122, .external_lex_state = 1}, + [14514] = {.lex_state = 547, .external_lex_state = 1}, + [14515] = {.lex_state = 547, .external_lex_state = 1}, + [14516] = {.lex_state = 125, .external_lex_state = 1}, + [14517] = {.lex_state = 125, .external_lex_state = 1}, + [14518] = {.lex_state = 125, .external_lex_state = 1}, + [14519] = {.lex_state = 125, .external_lex_state = 1}, + [14520] = {.lex_state = 125, .external_lex_state = 1}, + [14521] = {.lex_state = 125, .external_lex_state = 1}, + [14522] = {.lex_state = 125, .external_lex_state = 1}, + [14523] = {.lex_state = 546, .external_lex_state = 1}, + [14524] = {.lex_state = 414, .external_lex_state = 1}, + [14525] = {.lex_state = 125, .external_lex_state = 1}, + [14526] = {.lex_state = 547, .external_lex_state = 1}, + [14527] = {.lex_state = 547, .external_lex_state = 1}, + [14528] = {.lex_state = 125, .external_lex_state = 1}, + [14529] = {.lex_state = 125, .external_lex_state = 1}, + [14530] = {.lex_state = 125, .external_lex_state = 1}, + [14531] = {.lex_state = 125, .external_lex_state = 1}, + [14532] = {.lex_state = 125, .external_lex_state = 1}, + [14533] = {.lex_state = 125, .external_lex_state = 1}, + [14534] = {.lex_state = 125, .external_lex_state = 1}, + [14535] = {.lex_state = 125, .external_lex_state = 1}, + [14536] = {.lex_state = 125, .external_lex_state = 1}, + [14537] = {.lex_state = 125, .external_lex_state = 1}, + [14538] = {.lex_state = 125, .external_lex_state = 1}, + [14539] = {.lex_state = 125, .external_lex_state = 1}, + [14540] = {.lex_state = 125, .external_lex_state = 1}, + [14541] = {.lex_state = 247, .external_lex_state = 1}, + [14542] = {.lex_state = 125, .external_lex_state = 1}, + [14543] = {.lex_state = 125, .external_lex_state = 1}, + [14544] = {.lex_state = 125, .external_lex_state = 1}, + [14545] = {.lex_state = 125, .external_lex_state = 1}, + [14546] = {.lex_state = 125, .external_lex_state = 1}, + [14547] = {.lex_state = 125, .external_lex_state = 1}, + [14548] = {.lex_state = 125, .external_lex_state = 1}, + [14549] = {.lex_state = 122, .external_lex_state = 1}, + [14550] = {.lex_state = 552, .external_lex_state = 1}, + [14551] = {.lex_state = 125, .external_lex_state = 1}, + [14552] = {.lex_state = 125, .external_lex_state = 1}, + [14553] = {.lex_state = 125, .external_lex_state = 1}, + [14554] = {.lex_state = 414, .external_lex_state = 1}, + [14555] = {.lex_state = 125, .external_lex_state = 1}, + [14556] = {.lex_state = 125, .external_lex_state = 1}, + [14557] = {.lex_state = 125, .external_lex_state = 1}, + [14558] = {.lex_state = 125, .external_lex_state = 1}, + [14559] = {.lex_state = 125, .external_lex_state = 1}, + [14560] = {.lex_state = 125, .external_lex_state = 1}, + [14561] = {.lex_state = 125, .external_lex_state = 1}, + [14562] = {.lex_state = 122, .external_lex_state = 1}, + [14563] = {.lex_state = 125, .external_lex_state = 1}, + [14564] = {.lex_state = 125, .external_lex_state = 1}, + [14565] = {.lex_state = 125, .external_lex_state = 1}, + [14566] = {.lex_state = 125, .external_lex_state = 1}, + [14567] = {.lex_state = 111, .external_lex_state = 1}, + [14568] = {.lex_state = 125, .external_lex_state = 1}, + [14569] = {.lex_state = 125, .external_lex_state = 1}, + [14570] = {.lex_state = 125, .external_lex_state = 1}, + [14571] = {.lex_state = 125, .external_lex_state = 1}, + [14572] = {.lex_state = 247, .external_lex_state = 1}, + [14573] = {.lex_state = 125, .external_lex_state = 1}, + [14574] = {.lex_state = 125, .external_lex_state = 1}, + [14575] = {.lex_state = 125, .external_lex_state = 1}, + [14576] = {.lex_state = 125, .external_lex_state = 1}, + [14577] = {.lex_state = 125, .external_lex_state = 1}, + [14578] = {.lex_state = 552, .external_lex_state = 1}, + [14579] = {.lex_state = 125, .external_lex_state = 1}, + [14580] = {.lex_state = 125, .external_lex_state = 1}, + [14581] = {.lex_state = 125, .external_lex_state = 1}, + [14582] = {.lex_state = 125, .external_lex_state = 1}, + [14583] = {.lex_state = 125, .external_lex_state = 1}, + [14584] = {.lex_state = 125, .external_lex_state = 1}, + [14585] = {.lex_state = 547, .external_lex_state = 1}, + [14586] = {.lex_state = 125, .external_lex_state = 1}, + [14587] = {.lex_state = 125, .external_lex_state = 1}, + [14588] = {.lex_state = 125, .external_lex_state = 1}, + [14589] = {.lex_state = 552, .external_lex_state = 1}, + [14590] = {.lex_state = 136, .external_lex_state = 1}, + [14591] = {.lex_state = 125, .external_lex_state = 1}, + [14592] = {.lex_state = 125, .external_lex_state = 1}, + [14593] = {.lex_state = 134, .external_lex_state = 1}, + [14594] = {.lex_state = 125, .external_lex_state = 1}, + [14595] = {.lex_state = 134, .external_lex_state = 1}, + [14596] = {.lex_state = 134, .external_lex_state = 1}, + [14597] = {.lex_state = 125, .external_lex_state = 1}, + [14598] = {.lex_state = 134, .external_lex_state = 1}, + [14599] = {.lex_state = 134, .external_lex_state = 1}, + [14600] = {.lex_state = 134, .external_lex_state = 1}, + [14601] = {.lex_state = 547, .external_lex_state = 1}, + [14602] = {.lex_state = 134, .external_lex_state = 1}, + [14603] = {.lex_state = 125, .external_lex_state = 1}, + [14604] = {.lex_state = 134, .external_lex_state = 1}, + [14605] = {.lex_state = 134, .external_lex_state = 1}, + [14606] = {.lex_state = 134, .external_lex_state = 1}, + [14607] = {.lex_state = 134, .external_lex_state = 1}, + [14608] = {.lex_state = 125, .external_lex_state = 1}, + [14609] = {.lex_state = 134, .external_lex_state = 1}, + [14610] = {.lex_state = 552, .external_lex_state = 1}, + [14611] = {.lex_state = 134, .external_lex_state = 1}, + [14612] = {.lex_state = 125, .external_lex_state = 1}, + [14613] = {.lex_state = 135, .external_lex_state = 1}, + [14614] = {.lex_state = 125, .external_lex_state = 1}, + [14615] = {.lex_state = 135, .external_lex_state = 1}, + [14616] = {.lex_state = 135, .external_lex_state = 1}, + [14617] = {.lex_state = 135, .external_lex_state = 1}, + [14618] = {.lex_state = 135, .external_lex_state = 1}, + [14619] = {.lex_state = 135, .external_lex_state = 1}, + [14620] = {.lex_state = 135, .external_lex_state = 1}, + [14621] = {.lex_state = 135, .external_lex_state = 1}, + [14622] = {.lex_state = 135, .external_lex_state = 1}, + [14623] = {.lex_state = 135, .external_lex_state = 1}, + [14624] = {.lex_state = 125, .external_lex_state = 1}, + [14625] = {.lex_state = 135, .external_lex_state = 1}, + [14626] = {.lex_state = 135, .external_lex_state = 1}, + [14627] = {.lex_state = 125, .external_lex_state = 1}, + [14628] = {.lex_state = 135, .external_lex_state = 1}, + [14629] = {.lex_state = 134, .external_lex_state = 1}, + [14630] = {.lex_state = 125, .external_lex_state = 1}, + [14631] = {.lex_state = 125, .external_lex_state = 1}, + [14632] = {.lex_state = 125, .external_lex_state = 1}, + [14633] = {.lex_state = 125, .external_lex_state = 1}, + [14634] = {.lex_state = 125, .external_lex_state = 1}, + [14635] = {.lex_state = 134, .external_lex_state = 1}, + [14636] = {.lex_state = 125, .external_lex_state = 1}, + [14637] = {.lex_state = 125, .external_lex_state = 1}, + [14638] = {.lex_state = 134, .external_lex_state = 1}, + [14639] = {.lex_state = 125, .external_lex_state = 1}, + [14640] = {.lex_state = 552, .external_lex_state = 1}, + [14641] = {.lex_state = 135, .external_lex_state = 1}, + [14642] = {.lex_state = 125, .external_lex_state = 1}, + [14643] = {.lex_state = 125, .external_lex_state = 1}, + [14644] = {.lex_state = 125, .external_lex_state = 1}, + [14645] = {.lex_state = 135, .external_lex_state = 1}, + [14646] = {.lex_state = 125, .external_lex_state = 1}, + [14647] = {.lex_state = 125, .external_lex_state = 1}, + [14648] = {.lex_state = 125, .external_lex_state = 1}, + [14649] = {.lex_state = 135, .external_lex_state = 1}, + [14650] = {.lex_state = 125, .external_lex_state = 1}, + [14651] = {.lex_state = 125, .external_lex_state = 1}, + [14652] = {.lex_state = 125, .external_lex_state = 1}, + [14653] = {.lex_state = 125, .external_lex_state = 1}, + [14654] = {.lex_state = 125, .external_lex_state = 1}, + [14655] = {.lex_state = 125, .external_lex_state = 1}, + [14656] = {.lex_state = 125, .external_lex_state = 1}, + [14657] = {.lex_state = 125, .external_lex_state = 1}, + [14658] = {.lex_state = 547, .external_lex_state = 1}, + [14659] = {.lex_state = 125, .external_lex_state = 1}, + [14660] = {.lex_state = 125, .external_lex_state = 1}, + [14661] = {.lex_state = 125, .external_lex_state = 1}, + [14662] = {.lex_state = 111, .external_lex_state = 1}, + [14663] = {.lex_state = 125, .external_lex_state = 1}, + [14664] = {.lex_state = 125, .external_lex_state = 1}, + [14665] = {.lex_state = 125, .external_lex_state = 1}, + [14666] = {.lex_state = 125, .external_lex_state = 1}, + [14667] = {.lex_state = 125, .external_lex_state = 1}, + [14668] = {.lex_state = 125, .external_lex_state = 1}, + [14669] = {.lex_state = 125, .external_lex_state = 1}, + [14670] = {.lex_state = 125, .external_lex_state = 1}, + [14671] = {.lex_state = 125, .external_lex_state = 1}, + [14672] = {.lex_state = 111, .external_lex_state = 1}, + [14673] = {.lex_state = 125, .external_lex_state = 1}, + [14674] = {.lex_state = 125, .external_lex_state = 1}, + [14675] = {.lex_state = 125, .external_lex_state = 1}, + [14676] = {.lex_state = 125, .external_lex_state = 1}, + [14677] = {.lex_state = 125, .external_lex_state = 1}, + [14678] = {.lex_state = 125, .external_lex_state = 1}, + [14679] = {.lex_state = 125, .external_lex_state = 1}, + [14680] = {.lex_state = 125, .external_lex_state = 1}, + [14681] = {.lex_state = 125, .external_lex_state = 1}, + [14682] = {.lex_state = 125, .external_lex_state = 1}, + [14683] = {.lex_state = 125, .external_lex_state = 1}, + [14684] = {.lex_state = 552, .external_lex_state = 1}, + [14685] = {.lex_state = 125, .external_lex_state = 1}, + [14686] = {.lex_state = 125, .external_lex_state = 1}, + [14687] = {.lex_state = 125, .external_lex_state = 1}, + [14688] = {.lex_state = 125, .external_lex_state = 1}, + [14689] = {.lex_state = 197, .external_lex_state = 1}, + [14690] = {.lex_state = 125, .external_lex_state = 1}, + [14691] = {.lex_state = 125, .external_lex_state = 1}, + [14692] = {.lex_state = 125, .external_lex_state = 1}, + [14693] = {.lex_state = 125, .external_lex_state = 1}, + [14694] = {.lex_state = 201, .external_lex_state = 1}, + [14695] = {.lex_state = 125, .external_lex_state = 1}, + [14696] = {.lex_state = 125, .external_lex_state = 1}, + [14697] = {.lex_state = 125, .external_lex_state = 1}, + [14698] = {.lex_state = 125, .external_lex_state = 1}, + [14699] = {.lex_state = 125, .external_lex_state = 1}, + [14700] = {.lex_state = 125, .external_lex_state = 1}, + [14701] = {.lex_state = 125, .external_lex_state = 1}, + [14702] = {.lex_state = 125, .external_lex_state = 1}, + [14703] = {.lex_state = 125, .external_lex_state = 1}, + [14704] = {.lex_state = 125, .external_lex_state = 1}, + [14705] = {.lex_state = 125, .external_lex_state = 1}, + [14706] = {.lex_state = 125, .external_lex_state = 1}, + [14707] = {.lex_state = 125, .external_lex_state = 1}, + [14708] = {.lex_state = 125, .external_lex_state = 1}, + [14709] = {.lex_state = 125, .external_lex_state = 1}, + [14710] = {.lex_state = 125, .external_lex_state = 1}, + [14711] = {.lex_state = 125, .external_lex_state = 1}, + [14712] = {.lex_state = 125, .external_lex_state = 1}, + [14713] = {.lex_state = 125, .external_lex_state = 1}, + [14714] = {.lex_state = 125, .external_lex_state = 1}, + [14715] = {.lex_state = 125, .external_lex_state = 1}, + [14716] = {.lex_state = 125, .external_lex_state = 1}, + [14717] = {.lex_state = 125, .external_lex_state = 1}, + [14718] = {.lex_state = 125, .external_lex_state = 1}, + [14719] = {.lex_state = 125, .external_lex_state = 1}, + [14720] = {.lex_state = 125, .external_lex_state = 1}, + [14721] = {.lex_state = 125, .external_lex_state = 1}, + [14722] = {.lex_state = 125, .external_lex_state = 1}, + [14723] = {.lex_state = 125, .external_lex_state = 1}, + [14724] = {.lex_state = 125, .external_lex_state = 1}, + [14725] = {.lex_state = 125, .external_lex_state = 1}, + [14726] = {.lex_state = 125, .external_lex_state = 1}, + [14727] = {.lex_state = 125, .external_lex_state = 1}, + [14728] = {.lex_state = 125, .external_lex_state = 1}, + [14729] = {.lex_state = 125, .external_lex_state = 1}, + [14730] = {.lex_state = 125, .external_lex_state = 1}, + [14731] = {.lex_state = 125, .external_lex_state = 1}, + [14732] = {.lex_state = 125, .external_lex_state = 1}, + [14733] = {.lex_state = 125, .external_lex_state = 1}, + [14734] = {.lex_state = 125, .external_lex_state = 1}, + [14735] = {.lex_state = 125, .external_lex_state = 1}, + [14736] = {.lex_state = 125, .external_lex_state = 1}, + [14737] = {.lex_state = 125, .external_lex_state = 1}, + [14738] = {.lex_state = 125, .external_lex_state = 1}, + [14739] = {.lex_state = 125, .external_lex_state = 1}, + [14740] = {.lex_state = 125, .external_lex_state = 1}, + [14741] = {.lex_state = 547, .external_lex_state = 1}, + [14742] = {.lex_state = 122, .external_lex_state = 1}, + [14743] = {.lex_state = 125, .external_lex_state = 1}, + [14744] = {.lex_state = 125, .external_lex_state = 1}, + [14745] = {.lex_state = 414, .external_lex_state = 1}, + [14746] = {.lex_state = 125, .external_lex_state = 1}, + [14747] = {.lex_state = 125, .external_lex_state = 1}, + [14748] = {.lex_state = 125, .external_lex_state = 1}, + [14749] = {.lex_state = 125, .external_lex_state = 1}, + [14750] = {.lex_state = 125, .external_lex_state = 1}, + [14751] = {.lex_state = 125, .external_lex_state = 1}, + [14752] = {.lex_state = 547, .external_lex_state = 1}, + [14753] = {.lex_state = 547, .external_lex_state = 1}, + [14754] = {.lex_state = 125, .external_lex_state = 1}, + [14755] = {.lex_state = 125, .external_lex_state = 1}, + [14756] = {.lex_state = 125, .external_lex_state = 1}, + [14757] = {.lex_state = 125, .external_lex_state = 1}, + [14758] = {.lex_state = 125, .external_lex_state = 1}, + [14759] = {.lex_state = 125, .external_lex_state = 1}, + [14760] = {.lex_state = 125, .external_lex_state = 1}, + [14761] = {.lex_state = 125, .external_lex_state = 1}, + [14762] = {.lex_state = 125, .external_lex_state = 1}, + [14763] = {.lex_state = 125, .external_lex_state = 1}, + [14764] = {.lex_state = 125, .external_lex_state = 1}, + [14765] = {.lex_state = 414, .external_lex_state = 1}, + [14766] = {.lex_state = 125, .external_lex_state = 1}, + [14767] = {.lex_state = 125, .external_lex_state = 1}, + [14768] = {.lex_state = 125, .external_lex_state = 1}, + [14769] = {.lex_state = 125, .external_lex_state = 1}, + [14770] = {.lex_state = 125, .external_lex_state = 1}, + [14771] = {.lex_state = 125, .external_lex_state = 1}, + [14772] = {.lex_state = 414, .external_lex_state = 1}, + [14773] = {.lex_state = 125, .external_lex_state = 1}, + [14774] = {.lex_state = 125, .external_lex_state = 1}, + [14775] = {.lex_state = 125, .external_lex_state = 1}, + [14776] = {.lex_state = 125, .external_lex_state = 1}, + [14777] = {.lex_state = 125, .external_lex_state = 1}, + [14778] = {.lex_state = 125, .external_lex_state = 1}, + [14779] = {.lex_state = 125, .external_lex_state = 1}, + [14780] = {.lex_state = 125, .external_lex_state = 1}, + [14781] = {.lex_state = 125, .external_lex_state = 1}, + [14782] = {.lex_state = 125, .external_lex_state = 1}, + [14783] = {.lex_state = 125, .external_lex_state = 1}, + [14784] = {.lex_state = 125, .external_lex_state = 1}, + [14785] = {.lex_state = 125, .external_lex_state = 1}, + [14786] = {.lex_state = 125, .external_lex_state = 1}, + [14787] = {.lex_state = 125, .external_lex_state = 1}, + [14788] = {.lex_state = 125, .external_lex_state = 1}, + [14789] = {.lex_state = 125, .external_lex_state = 1}, + [14790] = {.lex_state = 125, .external_lex_state = 1}, + [14791] = {.lex_state = 125, .external_lex_state = 1}, + [14792] = {.lex_state = 125, .external_lex_state = 1}, + [14793] = {.lex_state = 125, .external_lex_state = 1}, + [14794] = {.lex_state = 125, .external_lex_state = 1}, + [14795] = {.lex_state = 125, .external_lex_state = 1}, + [14796] = {.lex_state = 125, .external_lex_state = 1}, + [14797] = {.lex_state = 552, .external_lex_state = 1}, + [14798] = {.lex_state = 125, .external_lex_state = 1}, + [14799] = {.lex_state = 414, .external_lex_state = 1}, + [14800] = {.lex_state = 125, .external_lex_state = 1}, + [14801] = {.lex_state = 125, .external_lex_state = 1}, + [14802] = {.lex_state = 125, .external_lex_state = 1}, + [14803] = {.lex_state = 125, .external_lex_state = 1}, + [14804] = {.lex_state = 125, .external_lex_state = 1}, + [14805] = {.lex_state = 552, .external_lex_state = 1}, + [14806] = {.lex_state = 552, .external_lex_state = 1}, + [14807] = {.lex_state = 125, .external_lex_state = 1}, + [14808] = {.lex_state = 125, .external_lex_state = 1}, + [14809] = {.lex_state = 125, .external_lex_state = 1}, + [14810] = {.lex_state = 125, .external_lex_state = 1}, + [14811] = {.lex_state = 125, .external_lex_state = 1}, + [14812] = {.lex_state = 125, .external_lex_state = 1}, + [14813] = {.lex_state = 122, .external_lex_state = 1}, + [14814] = {.lex_state = 125, .external_lex_state = 1}, + [14815] = {.lex_state = 122, .external_lex_state = 1}, + [14816] = {.lex_state = 125, .external_lex_state = 1}, + [14817] = {.lex_state = 552, .external_lex_state = 1}, + [14818] = {.lex_state = 125, .external_lex_state = 1}, + [14819] = {.lex_state = 125, .external_lex_state = 1}, + [14820] = {.lex_state = 125, .external_lex_state = 1}, + [14821] = {.lex_state = 125, .external_lex_state = 1}, + [14822] = {.lex_state = 125, .external_lex_state = 1}, + [14823] = {.lex_state = 111, .external_lex_state = 1}, + [14824] = {.lex_state = 125, .external_lex_state = 1}, + [14825] = {.lex_state = 125, .external_lex_state = 1}, + [14826] = {.lex_state = 125, .external_lex_state = 1}, + [14827] = {.lex_state = 552, .external_lex_state = 1}, + [14828] = {.lex_state = 125, .external_lex_state = 1}, + [14829] = {.lex_state = 125, .external_lex_state = 1}, + [14830] = {.lex_state = 414, .external_lex_state = 1}, + [14831] = {.lex_state = 125, .external_lex_state = 1}, + [14832] = {.lex_state = 125, .external_lex_state = 1}, + [14833] = {.lex_state = 125, .external_lex_state = 1}, + [14834] = {.lex_state = 125, .external_lex_state = 1}, + [14835] = {.lex_state = 125, .external_lex_state = 1}, + [14836] = {.lex_state = 125, .external_lex_state = 1}, + [14837] = {.lex_state = 125, .external_lex_state = 1}, + [14838] = {.lex_state = 125, .external_lex_state = 1}, + [14839] = {.lex_state = 125, .external_lex_state = 1}, + [14840] = {.lex_state = 125, .external_lex_state = 1}, + [14841] = {.lex_state = 125, .external_lex_state = 1}, + [14842] = {.lex_state = 125, .external_lex_state = 1}, + [14843] = {.lex_state = 122, .external_lex_state = 1}, + [14844] = {.lex_state = 125, .external_lex_state = 1}, + [14845] = {.lex_state = 125, .external_lex_state = 1}, + [14846] = {.lex_state = 125, .external_lex_state = 1}, + [14847] = {.lex_state = 125, .external_lex_state = 1}, + [14848] = {.lex_state = 125, .external_lex_state = 1}, + [14849] = {.lex_state = 125, .external_lex_state = 1}, + [14850] = {.lex_state = 125, .external_lex_state = 1}, + [14851] = {.lex_state = 122, .external_lex_state = 1}, + [14852] = {.lex_state = 125, .external_lex_state = 1}, + [14853] = {.lex_state = 125, .external_lex_state = 1}, + [14854] = {.lex_state = 125, .external_lex_state = 1}, + [14855] = {.lex_state = 125, .external_lex_state = 1}, + [14856] = {.lex_state = 125, .external_lex_state = 1}, + [14857] = {.lex_state = 125, .external_lex_state = 1}, + [14858] = {.lex_state = 125, .external_lex_state = 1}, + [14859] = {.lex_state = 122, .external_lex_state = 1}, + [14860] = {.lex_state = 125, .external_lex_state = 1}, + [14861] = {.lex_state = 125, .external_lex_state = 1}, + [14862] = {.lex_state = 125, .external_lex_state = 1}, + [14863] = {.lex_state = 125, .external_lex_state = 1}, + [14864] = {.lex_state = 125, .external_lex_state = 1}, + [14865] = {.lex_state = 125, .external_lex_state = 1}, + [14866] = {.lex_state = 125, .external_lex_state = 1}, + [14867] = {.lex_state = 125, .external_lex_state = 1}, + [14868] = {.lex_state = 125, .external_lex_state = 1}, + [14869] = {.lex_state = 125, .external_lex_state = 1}, + [14870] = {.lex_state = 125, .external_lex_state = 1}, + [14871] = {.lex_state = 125, .external_lex_state = 1}, + [14872] = {.lex_state = 125, .external_lex_state = 1}, + [14873] = {.lex_state = 125, .external_lex_state = 1}, + [14874] = {.lex_state = 122, .external_lex_state = 1}, + [14875] = {.lex_state = 122, .external_lex_state = 1}, + [14876] = {.lex_state = 122, .external_lex_state = 1}, + [14877] = {.lex_state = 122, .external_lex_state = 1}, + [14878] = {.lex_state = 122, .external_lex_state = 1}, + [14879] = {.lex_state = 125, .external_lex_state = 1}, + [14880] = {.lex_state = 125, .external_lex_state = 1}, + [14881] = {.lex_state = 549, .external_lex_state = 1}, + [14882] = {.lex_state = 125, .external_lex_state = 1}, + [14883] = {.lex_state = 122, .external_lex_state = 1}, + [14884] = {.lex_state = 125, .external_lex_state = 1}, + [14885] = {.lex_state = 125, .external_lex_state = 1}, + [14886] = {.lex_state = 125, .external_lex_state = 1}, + [14887] = {.lex_state = 125, .external_lex_state = 1}, + [14888] = {.lex_state = 122, .external_lex_state = 1}, + [14889] = {.lex_state = 125, .external_lex_state = 1}, + [14890] = {.lex_state = 125, .external_lex_state = 1}, + [14891] = {.lex_state = 125, .external_lex_state = 1}, + [14892] = {.lex_state = 125, .external_lex_state = 1}, + [14893] = {.lex_state = 157, .external_lex_state = 1}, + [14894] = {.lex_state = 125, .external_lex_state = 1}, + [14895] = {.lex_state = 125, .external_lex_state = 1}, + [14896] = {.lex_state = 122, .external_lex_state = 1}, + [14897] = {.lex_state = 125, .external_lex_state = 1}, + [14898] = {.lex_state = 125, .external_lex_state = 1}, + [14899] = {.lex_state = 125, .external_lex_state = 1}, + [14900] = {.lex_state = 125, .external_lex_state = 1}, + [14901] = {.lex_state = 125, .external_lex_state = 1}, + [14902] = {.lex_state = 125, .external_lex_state = 1}, + [14903] = {.lex_state = 125, .external_lex_state = 1}, + [14904] = {.lex_state = 546, .external_lex_state = 1}, + [14905] = {.lex_state = 125, .external_lex_state = 1}, + [14906] = {.lex_state = 125, .external_lex_state = 1}, + [14907] = {.lex_state = 125, .external_lex_state = 1}, + [14908] = {.lex_state = 125, .external_lex_state = 1}, + [14909] = {.lex_state = 125, .external_lex_state = 1}, + [14910] = {.lex_state = 125, .external_lex_state = 1}, + [14911] = {.lex_state = 125, .external_lex_state = 1}, + [14912] = {.lex_state = 125, .external_lex_state = 1}, + [14913] = {.lex_state = 125, .external_lex_state = 1}, + [14914] = {.lex_state = 125, .external_lex_state = 1}, + [14915] = {.lex_state = 125, .external_lex_state = 1}, + [14916] = {.lex_state = 125, .external_lex_state = 1}, + [14917] = {.lex_state = 125, .external_lex_state = 1}, + [14918] = {.lex_state = 125, .external_lex_state = 1}, + [14919] = {.lex_state = 125, .external_lex_state = 1}, + [14920] = {.lex_state = 125, .external_lex_state = 1}, + [14921] = {.lex_state = 125, .external_lex_state = 1}, + [14922] = {.lex_state = 125, .external_lex_state = 1}, + [14923] = {.lex_state = 125, .external_lex_state = 1}, + [14924] = {.lex_state = 125, .external_lex_state = 1}, + [14925] = {.lex_state = 125, .external_lex_state = 1}, + [14926] = {.lex_state = 125, .external_lex_state = 1}, + [14927] = {.lex_state = 125, .external_lex_state = 1}, + [14928] = {.lex_state = 125, .external_lex_state = 1}, + [14929] = {.lex_state = 125, .external_lex_state = 1}, + [14930] = {.lex_state = 125, .external_lex_state = 1}, + [14931] = {.lex_state = 414, .external_lex_state = 1}, + [14932] = {.lex_state = 122, .external_lex_state = 1}, + [14933] = {.lex_state = 122, .external_lex_state = 1}, + [14934] = {.lex_state = 122, .external_lex_state = 1}, + [14935] = {.lex_state = 125, .external_lex_state = 1}, + [14936] = {.lex_state = 125, .external_lex_state = 1}, + [14937] = {.lex_state = 125, .external_lex_state = 1}, + [14938] = {.lex_state = 122, .external_lex_state = 1}, + [14939] = {.lex_state = 122, .external_lex_state = 1}, + [14940] = {.lex_state = 125, .external_lex_state = 1}, + [14941] = {.lex_state = 125, .external_lex_state = 1}, + [14942] = {.lex_state = 122, .external_lex_state = 1}, + [14943] = {.lex_state = 122, .external_lex_state = 1}, + [14944] = {.lex_state = 125, .external_lex_state = 1}, + [14945] = {.lex_state = 125, .external_lex_state = 1}, + [14946] = {.lex_state = 125, .external_lex_state = 1}, + [14947] = {.lex_state = 125, .external_lex_state = 1}, + [14948] = {.lex_state = 122, .external_lex_state = 1}, + [14949] = {.lex_state = 122, .external_lex_state = 1}, + [14950] = {.lex_state = 122, .external_lex_state = 1}, + [14951] = {.lex_state = 122, .external_lex_state = 1}, + [14952] = {.lex_state = 125, .external_lex_state = 1}, + [14953] = {.lex_state = 125, .external_lex_state = 1}, + [14954] = {.lex_state = 125, .external_lex_state = 1}, + [14955] = {.lex_state = 125, .external_lex_state = 1}, + [14956] = {.lex_state = 125, .external_lex_state = 1}, + [14957] = {.lex_state = 122, .external_lex_state = 1}, + [14958] = {.lex_state = 122, .external_lex_state = 1}, + [14959] = {.lex_state = 122, .external_lex_state = 1}, + [14960] = {.lex_state = 122, .external_lex_state = 1}, + [14961] = {.lex_state = 125, .external_lex_state = 1}, + [14962] = {.lex_state = 125, .external_lex_state = 1}, + [14963] = {.lex_state = 125, .external_lex_state = 1}, + [14964] = {.lex_state = 125, .external_lex_state = 1}, + [14965] = {.lex_state = 125, .external_lex_state = 1}, + [14966] = {.lex_state = 414, .external_lex_state = 1}, + [14967] = {.lex_state = 414, .external_lex_state = 1}, + [14968] = {.lex_state = 125, .external_lex_state = 1}, + [14969] = {.lex_state = 414, .external_lex_state = 1}, + [14970] = {.lex_state = 414, .external_lex_state = 1}, + [14971] = {.lex_state = 125, .external_lex_state = 1}, + [14972] = {.lex_state = 125, .external_lex_state = 1}, + [14973] = {.lex_state = 122, .external_lex_state = 1}, + [14974] = {.lex_state = 137, .external_lex_state = 1}, + [14975] = {.lex_state = 199, .external_lex_state = 1}, + [14976] = {.lex_state = 202, .external_lex_state = 1}, + [14977] = {.lex_state = 203, .external_lex_state = 1}, + [14978] = {.lex_state = 136, .external_lex_state = 1}, + [14979] = {.lex_state = 547, .external_lex_state = 1}, + [14980] = {.lex_state = 122, .external_lex_state = 1}, + [14981] = {.lex_state = 547, .external_lex_state = 1}, + [14982] = {.lex_state = 209, .external_lex_state = 1}, + [14983] = {.lex_state = 550, .external_lex_state = 1}, + [14984] = {.lex_state = 136, .external_lex_state = 1}, + [14985] = {.lex_state = 122, .external_lex_state = 1}, + [14986] = {.lex_state = 547, .external_lex_state = 1}, + [14987] = {.lex_state = 122, .external_lex_state = 1}, + [14988] = {.lex_state = 175, .external_lex_state = 1}, + [14989] = {.lex_state = 136, .external_lex_state = 1}, + [14990] = {.lex_state = 136, .external_lex_state = 1}, + [14991] = {.lex_state = 547, .external_lex_state = 1}, + [14992] = {.lex_state = 211, .external_lex_state = 1}, + [14993] = {.lex_state = 547, .external_lex_state = 1}, + [14994] = {.lex_state = 175, .external_lex_state = 1}, + [14995] = {.lex_state = 156, .external_lex_state = 1}, + [14996] = {.lex_state = 136, .external_lex_state = 1}, + [14997] = {.lex_state = 197, .external_lex_state = 1}, + [14998] = {.lex_state = 197, .external_lex_state = 1}, + [14999] = {.lex_state = 197, .external_lex_state = 1}, + [15000] = {.lex_state = 197, .external_lex_state = 1}, + [15001] = {.lex_state = 197, .external_lex_state = 1}, + [15002] = {.lex_state = 197, .external_lex_state = 1}, + [15003] = {.lex_state = 197, .external_lex_state = 1}, + [15004] = {.lex_state = 197, .external_lex_state = 1}, + [15005] = {.lex_state = 197, .external_lex_state = 1}, + [15006] = {.lex_state = 547, .external_lex_state = 1}, + [15007] = {.lex_state = 197, .external_lex_state = 1}, + [15008] = {.lex_state = 197, .external_lex_state = 1}, + [15009] = {.lex_state = 197, .external_lex_state = 1}, + [15010] = {.lex_state = 197, .external_lex_state = 1}, + [15011] = {.lex_state = 201, .external_lex_state = 1}, + [15012] = {.lex_state = 201, .external_lex_state = 1}, + [15013] = {.lex_state = 176, .external_lex_state = 1}, + [15014] = {.lex_state = 201, .external_lex_state = 1}, + [15015] = {.lex_state = 201, .external_lex_state = 1}, + [15016] = {.lex_state = 201, .external_lex_state = 1}, + [15017] = {.lex_state = 201, .external_lex_state = 1}, + [15018] = {.lex_state = 201, .external_lex_state = 1}, + [15019] = {.lex_state = 201, .external_lex_state = 1}, + [15020] = {.lex_state = 201, .external_lex_state = 1}, + [15021] = {.lex_state = 201, .external_lex_state = 1}, + [15022] = {.lex_state = 201, .external_lex_state = 1}, + [15023] = {.lex_state = 201, .external_lex_state = 1}, + [15024] = {.lex_state = 201, .external_lex_state = 1}, + [15025] = {.lex_state = 197, .external_lex_state = 1}, + [15026] = {.lex_state = 197, .external_lex_state = 1}, + [15027] = {.lex_state = 246, .external_lex_state = 1}, + [15028] = {.lex_state = 197, .external_lex_state = 1}, + [15029] = {.lex_state = 201, .external_lex_state = 1}, + [15030] = {.lex_state = 201, .external_lex_state = 1}, + [15031] = {.lex_state = 547, .external_lex_state = 1}, + [15032] = {.lex_state = 201, .external_lex_state = 1}, + [15033] = {.lex_state = 122, .external_lex_state = 1}, + [15034] = {.lex_state = 546, .external_lex_state = 1}, + [15035] = {.lex_state = 551, .external_lex_state = 1}, + [15036] = {.lex_state = 549, .external_lex_state = 1}, + [15037] = {.lex_state = 549, .external_lex_state = 1}, + [15038] = {.lex_state = 549, .external_lex_state = 1}, + [15039] = {.lex_state = 547, .external_lex_state = 1}, + [15040] = {.lex_state = 547, .external_lex_state = 1}, + [15041] = {.lex_state = 547, .external_lex_state = 1}, + [15042] = {.lex_state = 547, .external_lex_state = 1}, + [15043] = {.lex_state = 549, .external_lex_state = 1}, + [15044] = {.lex_state = 549, .external_lex_state = 1}, + [15045] = {.lex_state = 549, .external_lex_state = 1}, + [15046] = {.lex_state = 549, .external_lex_state = 1}, + [15047] = {.lex_state = 549, .external_lex_state = 1}, + [15048] = {.lex_state = 546, .external_lex_state = 1}, + [15049] = {.lex_state = 123, .external_lex_state = 1}, + [15050] = {.lex_state = 122, .external_lex_state = 1}, + [15051] = {.lex_state = 546, .external_lex_state = 1}, + [15052] = {.lex_state = 549, .external_lex_state = 1}, + [15053] = {.lex_state = 122, .external_lex_state = 1}, + [15054] = {.lex_state = 549, .external_lex_state = 1}, + [15055] = {.lex_state = 547, .external_lex_state = 1}, + [15056] = {.lex_state = 122, .external_lex_state = 1}, + [15057] = {.lex_state = 198, .external_lex_state = 1}, + [15058] = {.lex_state = 549, .external_lex_state = 1}, + [15059] = {.lex_state = 122, .external_lex_state = 1}, + [15060] = {.lex_state = 136, .external_lex_state = 1}, + [15061] = {.lex_state = 122, .external_lex_state = 1}, + [15062] = {.lex_state = 122, .external_lex_state = 1}, + [15063] = {.lex_state = 177, .external_lex_state = 1}, + [15064] = {.lex_state = 205, .external_lex_state = 1}, + [15065] = {.lex_state = 549, .external_lex_state = 1}, + [15066] = {.lex_state = 122, .external_lex_state = 1}, + [15067] = {.lex_state = 122, .external_lex_state = 1}, + [15068] = {.lex_state = 122, .external_lex_state = 1}, + [15069] = {.lex_state = 122, .external_lex_state = 1}, + [15070] = {.lex_state = 122, .external_lex_state = 1}, + [15071] = {.lex_state = 122, .external_lex_state = 1}, + [15072] = {.lex_state = 547, .external_lex_state = 1}, + [15073] = {.lex_state = 547, .external_lex_state = 1}, + [15074] = {.lex_state = 547, .external_lex_state = 1}, + [15075] = {.lex_state = 546, .external_lex_state = 1}, + [15076] = {.lex_state = 122, .external_lex_state = 1}, + [15077] = {.lex_state = 547, .external_lex_state = 1}, + [15078] = {.lex_state = 123, .external_lex_state = 1}, + [15079] = {.lex_state = 122, .external_lex_state = 1}, + [15080] = {.lex_state = 122, .external_lex_state = 1}, + [15081] = {.lex_state = 122, .external_lex_state = 1}, + [15082] = {.lex_state = 547, .external_lex_state = 1}, + [15083] = {.lex_state = 122, .external_lex_state = 1}, + [15084] = {.lex_state = 547, .external_lex_state = 1}, + [15085] = {.lex_state = 122, .external_lex_state = 1}, + [15086] = {.lex_state = 547, .external_lex_state = 1}, + [15087] = {.lex_state = 175, .external_lex_state = 1}, + [15088] = {.lex_state = 122, .external_lex_state = 1}, + [15089] = {.lex_state = 122, .external_lex_state = 1}, + [15090] = {.lex_state = 122, .external_lex_state = 1}, + [15091] = {.lex_state = 175, .external_lex_state = 1}, + [15092] = {.lex_state = 175, .external_lex_state = 1}, + [15093] = {.lex_state = 136, .external_lex_state = 1}, + [15094] = {.lex_state = 136, .external_lex_state = 1}, + [15095] = {.lex_state = 175, .external_lex_state = 1}, + [15096] = {.lex_state = 136, .external_lex_state = 1}, + [15097] = {.lex_state = 122, .external_lex_state = 1}, + [15098] = {.lex_state = 122, .external_lex_state = 1}, + [15099] = {.lex_state = 122, .external_lex_state = 1}, + [15100] = {.lex_state = 175, .external_lex_state = 1}, + [15101] = {.lex_state = 136, .external_lex_state = 1}, + [15102] = {.lex_state = 136, .external_lex_state = 1}, + [15103] = {.lex_state = 175, .external_lex_state = 1}, + [15104] = {.lex_state = 549, .external_lex_state = 1}, + [15105] = {.lex_state = 122, .external_lex_state = 1}, + [15106] = {.lex_state = 122, .external_lex_state = 1}, + [15107] = {.lex_state = 549, .external_lex_state = 1}, + [15108] = {.lex_state = 546, .external_lex_state = 1}, + [15109] = {.lex_state = 547, .external_lex_state = 1}, + [15110] = {.lex_state = 175, .external_lex_state = 1}, + [15111] = {.lex_state = 175, .external_lex_state = 1}, + [15112] = {.lex_state = 122, .external_lex_state = 1}, + [15113] = {.lex_state = 136, .external_lex_state = 1}, + [15114] = {.lex_state = 136, .external_lex_state = 1}, + [15115] = {.lex_state = 175, .external_lex_state = 1}, + [15116] = {.lex_state = 136, .external_lex_state = 1}, + [15117] = {.lex_state = 175, .external_lex_state = 1}, + [15118] = {.lex_state = 136, .external_lex_state = 1}, + [15119] = {.lex_state = 122, .external_lex_state = 1}, + [15120] = {.lex_state = 175, .external_lex_state = 1}, + [15121] = {.lex_state = 175, .external_lex_state = 1}, + [15122] = {.lex_state = 175, .external_lex_state = 1}, + [15123] = {.lex_state = 546, .external_lex_state = 1}, + [15124] = {.lex_state = 175, .external_lex_state = 1}, + [15125] = {.lex_state = 549, .external_lex_state = 1}, + [15126] = {.lex_state = 136, .external_lex_state = 1}, + [15127] = {.lex_state = 122, .external_lex_state = 1}, + [15128] = {.lex_state = 122, .external_lex_state = 1}, + [15129] = {.lex_state = 547, .external_lex_state = 1}, + [15130] = {.lex_state = 122, .external_lex_state = 1}, + [15131] = {.lex_state = 549, .external_lex_state = 1}, + [15132] = {.lex_state = 202, .external_lex_state = 1}, + [15133] = {.lex_state = 551, .external_lex_state = 1}, + [15134] = {.lex_state = 547, .external_lex_state = 1}, + [15135] = {.lex_state = 176, .external_lex_state = 1}, + [15136] = {.lex_state = 547, .external_lex_state = 1}, + [15137] = {.lex_state = 119, .external_lex_state = 1}, + [15138] = {.lex_state = 119, .external_lex_state = 1}, + [15139] = {.lex_state = 122, .external_lex_state = 1}, + [15140] = {.lex_state = 550, .external_lex_state = 1}, + [15141] = {.lex_state = 547, .external_lex_state = 1}, + [15142] = {.lex_state = 137, .external_lex_state = 1}, + [15143] = {.lex_state = 137, .external_lex_state = 1}, + [15144] = {.lex_state = 200, .external_lex_state = 1}, + [15145] = {.lex_state = 547, .external_lex_state = 1}, + [15146] = {.lex_state = 177, .external_lex_state = 1}, + [15147] = {.lex_state = 547, .external_lex_state = 1}, + [15148] = {.lex_state = 202, .external_lex_state = 1}, + [15149] = {.lex_state = 177, .external_lex_state = 1}, + [15150] = {.lex_state = 119, .external_lex_state = 1}, + [15151] = {.lex_state = 119, .external_lex_state = 1}, + [15152] = {.lex_state = 547, .external_lex_state = 1}, + [15153] = {.lex_state = 547, .external_lex_state = 1}, + [15154] = {.lex_state = 119, .external_lex_state = 1}, + [15155] = {.lex_state = 119, .external_lex_state = 1}, + [15156] = {.lex_state = 550, .external_lex_state = 1}, + [15157] = {.lex_state = 547, .external_lex_state = 1}, + [15158] = {.lex_state = 209, .external_lex_state = 1}, + [15159] = {.lex_state = 547, .external_lex_state = 1}, + [15160] = {.lex_state = 206, .external_lex_state = 1}, + [15161] = {.lex_state = 205, .external_lex_state = 1}, + [15162] = {.lex_state = 547, .external_lex_state = 1}, + [15163] = {.lex_state = 120, .external_lex_state = 1}, + [15164] = {.lex_state = 550, .external_lex_state = 1}, + [15165] = {.lex_state = 137, .external_lex_state = 1}, + [15166] = {.lex_state = 547, .external_lex_state = 1}, + [15167] = {.lex_state = 137, .external_lex_state = 1}, + [15168] = {.lex_state = 122, .external_lex_state = 1}, + [15169] = {.lex_state = 547, .external_lex_state = 1}, + [15170] = {.lex_state = 202, .external_lex_state = 1}, + [15171] = {.lex_state = 550, .external_lex_state = 1}, + [15172] = {.lex_state = 547, .external_lex_state = 1}, + [15173] = {.lex_state = 207, .external_lex_state = 1}, + [15174] = {.lex_state = 209, .external_lex_state = 1}, + [15175] = {.lex_state = 176, .external_lex_state = 1}, + [15176] = {.lex_state = 547, .external_lex_state = 1}, + [15177] = {.lex_state = 176, .external_lex_state = 1}, + [15178] = {.lex_state = 177, .external_lex_state = 1}, + [15179] = {.lex_state = 547, .external_lex_state = 1}, + [15180] = {.lex_state = 198, .external_lex_state = 1}, + [15181] = {.lex_state = 547, .external_lex_state = 1}, + [15182] = {.lex_state = 137, .external_lex_state = 1}, + [15183] = {.lex_state = 137, .external_lex_state = 1}, + [15184] = {.lex_state = 550, .external_lex_state = 1}, + [15185] = {.lex_state = 550, .external_lex_state = 1}, + [15186] = {.lex_state = 202, .external_lex_state = 1}, + [15187] = {.lex_state = 177, .external_lex_state = 1}, + [15188] = {.lex_state = 177, .external_lex_state = 1}, + [15189] = {.lex_state = 137, .external_lex_state = 1}, + [15190] = {.lex_state = 177, .external_lex_state = 1}, + [15191] = {.lex_state = 177, .external_lex_state = 1}, + [15192] = {.lex_state = 547, .external_lex_state = 1}, + [15193] = {.lex_state = 137, .external_lex_state = 1}, + [15194] = {.lex_state = 137, .external_lex_state = 1}, + [15195] = {.lex_state = 547, .external_lex_state = 1}, + [15196] = {.lex_state = 176, .external_lex_state = 1}, + [15197] = {.lex_state = 547, .external_lex_state = 1}, + [15198] = {.lex_state = 550, .external_lex_state = 1}, + [15199] = {.lex_state = 550, .external_lex_state = 1}, + [15200] = {.lex_state = 547, .external_lex_state = 1}, + [15201] = {.lex_state = 204, .external_lex_state = 1}, + [15202] = {.lex_state = 547, .external_lex_state = 1}, + [15203] = {.lex_state = 547, .external_lex_state = 1}, + [15204] = {.lex_state = 547, .external_lex_state = 1}, + [15205] = {.lex_state = 550, .external_lex_state = 1}, + [15206] = {.lex_state = 547, .external_lex_state = 1}, + [15207] = {.lex_state = 547, .external_lex_state = 1}, + [15208] = {.lex_state = 550, .external_lex_state = 1}, + [15209] = {.lex_state = 202, .external_lex_state = 1}, + [15210] = {.lex_state = 547, .external_lex_state = 1}, + [15211] = {.lex_state = 119, .external_lex_state = 1}, + [15212] = {.lex_state = 547, .external_lex_state = 1}, + [15213] = {.lex_state = 177, .external_lex_state = 1}, + [15214] = {.lex_state = 547, .external_lex_state = 1}, + [15215] = {.lex_state = 202, .external_lex_state = 1}, + [15216] = {.lex_state = 137, .external_lex_state = 1}, + [15217] = {.lex_state = 547, .external_lex_state = 1}, + [15218] = {.lex_state = 137, .external_lex_state = 1}, + [15219] = {.lex_state = 202, .external_lex_state = 1}, + [15220] = {.lex_state = 202, .external_lex_state = 1}, + [15221] = {.lex_state = 202, .external_lex_state = 1}, + [15222] = {.lex_state = 547, .external_lex_state = 1}, + [15223] = {.lex_state = 547, .external_lex_state = 1}, + [15224] = {.lex_state = 202, .external_lex_state = 1}, + [15225] = {.lex_state = 198, .external_lex_state = 1}, + [15226] = {.lex_state = 547, .external_lex_state = 1}, + [15227] = {.lex_state = 202, .external_lex_state = 1}, + [15228] = {.lex_state = 203, .external_lex_state = 1}, + [15229] = {.lex_state = 199, .external_lex_state = 1}, + [15230] = {.lex_state = 209, .external_lex_state = 1}, + [15231] = {.lex_state = 203, .external_lex_state = 1}, + [15232] = {.lex_state = 547, .external_lex_state = 1}, + [15233] = {.lex_state = 203, .external_lex_state = 1}, + [15234] = {.lex_state = 203, .external_lex_state = 1}, + [15235] = {.lex_state = 547, .external_lex_state = 1}, + [15236] = {.lex_state = 137, .external_lex_state = 1}, + [15237] = {.lex_state = 157, .external_lex_state = 1}, + [15238] = {.lex_state = 203, .external_lex_state = 1}, + [15239] = {.lex_state = 199, .external_lex_state = 1}, + [15240] = {.lex_state = 203, .external_lex_state = 1}, + [15241] = {.lex_state = 547, .external_lex_state = 1}, + [15242] = {.lex_state = 203, .external_lex_state = 1}, + [15243] = {.lex_state = 203, .external_lex_state = 1}, + [15244] = {.lex_state = 176, .external_lex_state = 1}, + [15245] = {.lex_state = 203, .external_lex_state = 1}, + [15246] = {.lex_state = 177, .external_lex_state = 1}, + [15247] = {.lex_state = 547, .external_lex_state = 1}, + [15248] = {.lex_state = 547, .external_lex_state = 1}, + [15249] = {.lex_state = 176, .external_lex_state = 1}, + [15250] = {.lex_state = 547, .external_lex_state = 1}, + [15251] = {.lex_state = 203, .external_lex_state = 1}, + [15252] = {.lex_state = 203, .external_lex_state = 1}, + [15253] = {.lex_state = 550, .external_lex_state = 1}, + [15254] = {.lex_state = 547, .external_lex_state = 1}, + [15255] = {.lex_state = 550, .external_lex_state = 1}, + [15256] = {.lex_state = 550, .external_lex_state = 1}, + [15257] = {.lex_state = 547, .external_lex_state = 1}, + [15258] = {.lex_state = 547, .external_lex_state = 1}, + [15259] = {.lex_state = 547, .external_lex_state = 1}, + [15260] = {.lex_state = 547, .external_lex_state = 1}, + [15261] = {.lex_state = 203, .external_lex_state = 1}, + [15262] = {.lex_state = 547, .external_lex_state = 1}, + [15263] = {.lex_state = 547, .external_lex_state = 1}, + [15264] = {.lex_state = 199, .external_lex_state = 1}, + [15265] = {.lex_state = 550, .external_lex_state = 1}, + [15266] = {.lex_state = 551, .external_lex_state = 1}, + [15267] = {.lex_state = 203, .external_lex_state = 1}, + [15268] = {.lex_state = 211, .external_lex_state = 1}, + [15269] = {.lex_state = 547, .external_lex_state = 1}, + [15270] = {.lex_state = 211, .external_lex_state = 1}, + [15271] = {.lex_state = 211, .external_lex_state = 1}, + [15272] = {.lex_state = 547, .external_lex_state = 1}, + [15273] = {.lex_state = 202, .external_lex_state = 1}, + [15274] = {.lex_state = 178, .external_lex_state = 1}, + [15275] = {.lex_state = 551, .external_lex_state = 1}, + [15276] = {.lex_state = 547, .external_lex_state = 1}, + [15277] = {.lex_state = 547, .external_lex_state = 1}, + [15278] = {.lex_state = 547, .external_lex_state = 1}, + [15279] = {.lex_state = 547, .external_lex_state = 1}, + [15280] = {.lex_state = 547, .external_lex_state = 1}, + [15281] = {.lex_state = 547, .external_lex_state = 1}, + [15282] = {.lex_state = 211, .external_lex_state = 1}, + [15283] = {.lex_state = 211, .external_lex_state = 1}, + [15284] = {.lex_state = 547, .external_lex_state = 1}, + [15285] = {.lex_state = 211, .external_lex_state = 1}, + [15286] = {.lex_state = 119, .external_lex_state = 1}, + [15287] = {.lex_state = 547, .external_lex_state = 1}, + [15288] = {.lex_state = 176, .external_lex_state = 1}, + [15289] = {.lex_state = 119, .external_lex_state = 1}, + [15290] = {.lex_state = 176, .external_lex_state = 1}, + [15291] = {.lex_state = 547, .external_lex_state = 1}, + [15292] = {.lex_state = 547, .external_lex_state = 1}, + [15293] = {.lex_state = 547, .external_lex_state = 1}, + [15294] = {.lex_state = 547, .external_lex_state = 1}, + [15295] = {.lex_state = 547, .external_lex_state = 1}, + [15296] = {.lex_state = 176, .external_lex_state = 1}, + [15297] = {.lex_state = 202, .external_lex_state = 1}, + [15298] = {.lex_state = 547, .external_lex_state = 1}, + [15299] = {.lex_state = 176, .external_lex_state = 1}, + [15300] = {.lex_state = 211, .external_lex_state = 1}, + [15301] = {.lex_state = 547, .external_lex_state = 1}, + [15302] = {.lex_state = 550, .external_lex_state = 1}, + [15303] = {.lex_state = 547, .external_lex_state = 1}, + [15304] = {.lex_state = 202, .external_lex_state = 1}, + [15305] = {.lex_state = 211, .external_lex_state = 1}, + [15306] = {.lex_state = 211, .external_lex_state = 1}, + [15307] = {.lex_state = 551, .external_lex_state = 1}, + [15308] = {.lex_state = 547, .external_lex_state = 1}, + [15309] = {.lex_state = 120, .external_lex_state = 1}, + [15310] = {.lex_state = 198, .external_lex_state = 1}, + [15311] = {.lex_state = 547, .external_lex_state = 1}, + [15312] = {.lex_state = 547, .external_lex_state = 1}, + [15313] = {.lex_state = 547, .external_lex_state = 1}, + [15314] = {.lex_state = 125, .external_lex_state = 1}, + [15315] = {.lex_state = 547, .external_lex_state = 1}, + [15316] = {.lex_state = 203, .external_lex_state = 1}, + [15317] = {.lex_state = 547, .external_lex_state = 1}, + [15318] = {.lex_state = 177, .external_lex_state = 1}, + [15319] = {.lex_state = 209, .external_lex_state = 1}, + [15320] = {.lex_state = 205, .external_lex_state = 1}, + [15321] = {.lex_state = 209, .external_lex_state = 1}, + [15322] = {.lex_state = 122, .external_lex_state = 1}, + [15323] = {.lex_state = 211, .external_lex_state = 1}, + [15324] = {.lex_state = 547, .external_lex_state = 1}, + [15325] = {.lex_state = 547, .external_lex_state = 1}, + [15326] = {.lex_state = 211, .external_lex_state = 1}, + [15327] = {.lex_state = 552, .external_lex_state = 1}, + [15328] = {.lex_state = 199, .external_lex_state = 1}, + [15329] = {.lex_state = 547, .external_lex_state = 1}, + [15330] = {.lex_state = 547, .external_lex_state = 1}, + [15331] = {.lex_state = 203, .external_lex_state = 1}, + [15332] = {.lex_state = 119, .external_lex_state = 1}, + [15333] = {.lex_state = 177, .external_lex_state = 1}, + [15334] = {.lex_state = 122, .external_lex_state = 1}, + [15335] = {.lex_state = 547, .external_lex_state = 1}, + [15336] = {.lex_state = 547, .external_lex_state = 1}, + [15337] = {.lex_state = 202, .external_lex_state = 1}, + [15338] = {.lex_state = 551, .external_lex_state = 1}, + [15339] = {.lex_state = 211, .external_lex_state = 1}, + [15340] = {.lex_state = 209, .external_lex_state = 1}, + [15341] = {.lex_state = 122, .external_lex_state = 1}, + [15342] = {.lex_state = 215, .external_lex_state = 1}, + [15343] = {.lex_state = 547, .external_lex_state = 1}, + [15344] = {.lex_state = 211, .external_lex_state = 1}, + [15345] = {.lex_state = 547, .external_lex_state = 1}, + [15346] = {.lex_state = 209, .external_lex_state = 1}, + [15347] = {.lex_state = 211, .external_lex_state = 1}, + [15348] = {.lex_state = 205, .external_lex_state = 1}, + [15349] = {.lex_state = 177, .external_lex_state = 1}, + [15350] = {.lex_state = 547, .external_lex_state = 1}, + [15351] = {.lex_state = 547, .external_lex_state = 1}, + [15352] = {.lex_state = 122, .external_lex_state = 1}, + [15353] = {.lex_state = 547, .external_lex_state = 1}, + [15354] = {.lex_state = 547, .external_lex_state = 1}, + [15355] = {.lex_state = 177, .external_lex_state = 1}, + [15356] = {.lex_state = 247, .external_lex_state = 1}, + [15357] = {.lex_state = 122, .external_lex_state = 1}, + [15358] = {.lex_state = 209, .external_lex_state = 1}, + [15359] = {.lex_state = 547, .external_lex_state = 1}, + [15360] = {.lex_state = 547, .external_lex_state = 1}, + [15361] = {.lex_state = 122, .external_lex_state = 1}, + [15362] = {.lex_state = 547, .external_lex_state = 1}, + [15363] = {.lex_state = 122, .external_lex_state = 1}, + [15364] = {.lex_state = 203, .external_lex_state = 1}, + [15365] = {.lex_state = 209, .external_lex_state = 1}, + [15366] = {.lex_state = 551, .external_lex_state = 1}, + [15367] = {.lex_state = 210, .external_lex_state = 1}, + [15368] = {.lex_state = 547, .external_lex_state = 1}, + [15369] = {.lex_state = 211, .external_lex_state = 1}, + [15370] = {.lex_state = 547, .external_lex_state = 1}, + [15371] = {.lex_state = 547, .external_lex_state = 1}, + [15372] = {.lex_state = 137, .external_lex_state = 1}, + [15373] = {.lex_state = 551, .external_lex_state = 1}, + [15374] = {.lex_state = 547, .external_lex_state = 1}, + [15375] = {.lex_state = 547, .external_lex_state = 1}, + [15376] = {.lex_state = 547, .external_lex_state = 1}, + [15377] = {.lex_state = 547, .external_lex_state = 1}, + [15378] = {.lex_state = 176, .external_lex_state = 1}, + [15379] = {.lex_state = 176, .external_lex_state = 1}, + [15380] = {.lex_state = 209, .external_lex_state = 1}, + [15381] = {.lex_state = 551, .external_lex_state = 1}, + [15382] = {.lex_state = 547, .external_lex_state = 1}, + [15383] = {.lex_state = 547, .external_lex_state = 1}, + [15384] = {.lex_state = 122, .external_lex_state = 1}, + [15385] = {.lex_state = 547, .external_lex_state = 1}, + [15386] = {.lex_state = 551, .external_lex_state = 1}, + [15387] = {.lex_state = 547, .external_lex_state = 1}, + [15388] = {.lex_state = 176, .external_lex_state = 1}, + [15389] = {.lex_state = 176, .external_lex_state = 1}, + [15390] = {.lex_state = 209, .external_lex_state = 1}, + [15391] = {.lex_state = 205, .external_lex_state = 1}, + [15392] = {.lex_state = 547, .external_lex_state = 1}, + [15393] = {.lex_state = 213, .external_lex_state = 1}, + [15394] = {.lex_state = 205, .external_lex_state = 1}, + [15395] = {.lex_state = 547, .external_lex_state = 1}, + [15396] = {.lex_state = 551, .external_lex_state = 1}, + [15397] = {.lex_state = 202, .external_lex_state = 1}, + [15398] = {.lex_state = 547, .external_lex_state = 1}, + [15399] = {.lex_state = 205, .external_lex_state = 1}, + [15400] = {.lex_state = 551, .external_lex_state = 1}, + [15401] = {.lex_state = 547, .external_lex_state = 1}, + [15402] = {.lex_state = 209, .external_lex_state = 1}, + [15403] = {.lex_state = 209, .external_lex_state = 1}, + [15404] = {.lex_state = 122, .external_lex_state = 1}, + [15405] = {.lex_state = 209, .external_lex_state = 1}, + [15406] = {.lex_state = 551, .external_lex_state = 1}, + [15407] = {.lex_state = 551, .external_lex_state = 1}, + [15408] = {.lex_state = 547, .external_lex_state = 1}, + [15409] = {.lex_state = 547, .external_lex_state = 1}, + [15410] = {.lex_state = 137, .external_lex_state = 1}, + [15411] = {.lex_state = 547, .external_lex_state = 1}, + [15412] = {.lex_state = 137, .external_lex_state = 1}, + [15413] = {.lex_state = 547, .external_lex_state = 1}, + [15414] = {.lex_state = 211, .external_lex_state = 1}, + [15415] = {.lex_state = 547, .external_lex_state = 1}, + [15416] = {.lex_state = 137, .external_lex_state = 1}, + [15417] = {.lex_state = 125, .external_lex_state = 1}, + [15418] = {.lex_state = 547, .external_lex_state = 1}, + [15419] = {.lex_state = 212, .external_lex_state = 1}, + [15420] = {.lex_state = 551, .external_lex_state = 1}, + [15421] = {.lex_state = 550, .external_lex_state = 1}, + [15422] = {.lex_state = 547, .external_lex_state = 1}, + [15423] = {.lex_state = 205, .external_lex_state = 1}, + [15424] = {.lex_state = 547, .external_lex_state = 1}, + [15425] = {.lex_state = 205, .external_lex_state = 1}, + [15426] = {.lex_state = 205, .external_lex_state = 1}, + [15427] = {.lex_state = 209, .external_lex_state = 1}, + [15428] = {.lex_state = 547, .external_lex_state = 1}, + [15429] = {.lex_state = 547, .external_lex_state = 1}, + [15430] = {.lex_state = 547, .external_lex_state = 1}, + [15431] = {.lex_state = 547, .external_lex_state = 1}, + [15432] = {.lex_state = 547, .external_lex_state = 1}, + [15433] = {.lex_state = 198, .external_lex_state = 1}, + [15434] = {.lex_state = 551, .external_lex_state = 1}, + [15435] = {.lex_state = 198, .external_lex_state = 1}, + [15436] = {.lex_state = 547, .external_lex_state = 1}, + [15437] = {.lex_state = 205, .external_lex_state = 1}, + [15438] = {.lex_state = 205, .external_lex_state = 1}, + [15439] = {.lex_state = 547, .external_lex_state = 1}, + [15440] = {.lex_state = 177, .external_lex_state = 1}, + [15441] = {.lex_state = 205, .external_lex_state = 1}, + [15442] = {.lex_state = 547, .external_lex_state = 1}, + [15443] = {.lex_state = 198, .external_lex_state = 1}, + [15444] = {.lex_state = 198, .external_lex_state = 1}, + [15445] = {.lex_state = 547, .external_lex_state = 1}, + [15446] = {.lex_state = 198, .external_lex_state = 1}, + [15447] = {.lex_state = 547, .external_lex_state = 1}, + [15448] = {.lex_state = 551, .external_lex_state = 1}, + [15449] = {.lex_state = 547, .external_lex_state = 1}, + [15450] = {.lex_state = 177, .external_lex_state = 1}, + [15451] = {.lex_state = 122, .external_lex_state = 1}, + [15452] = {.lex_state = 198, .external_lex_state = 1}, + [15453] = {.lex_state = 198, .external_lex_state = 1}, + [15454] = {.lex_state = 198, .external_lex_state = 1}, + [15455] = {.lex_state = 177, .external_lex_state = 1}, + [15456] = {.lex_state = 547, .external_lex_state = 1}, + [15457] = {.lex_state = 176, .external_lex_state = 1}, + [15458] = {.lex_state = 198, .external_lex_state = 1}, + [15459] = {.lex_state = 198, .external_lex_state = 1}, + [15460] = {.lex_state = 198, .external_lex_state = 1}, + [15461] = {.lex_state = 198, .external_lex_state = 1}, + [15462] = {.lex_state = 547, .external_lex_state = 1}, + [15463] = {.lex_state = 198, .external_lex_state = 1}, + [15464] = {.lex_state = 199, .external_lex_state = 1}, + [15465] = {.lex_state = 199, .external_lex_state = 1}, + [15466] = {.lex_state = 176, .external_lex_state = 1}, + [15467] = {.lex_state = 199, .external_lex_state = 1}, + [15468] = {.lex_state = 199, .external_lex_state = 1}, + [15469] = {.lex_state = 199, .external_lex_state = 1}, + [15470] = {.lex_state = 205, .external_lex_state = 1}, + [15471] = {.lex_state = 199, .external_lex_state = 1}, + [15472] = {.lex_state = 199, .external_lex_state = 1}, + [15473] = {.lex_state = 199, .external_lex_state = 1}, + [15474] = {.lex_state = 199, .external_lex_state = 1}, + [15475] = {.lex_state = 199, .external_lex_state = 1}, + [15476] = {.lex_state = 547, .external_lex_state = 1}, + [15477] = {.lex_state = 205, .external_lex_state = 1}, + [15478] = {.lex_state = 547, .external_lex_state = 1}, + [15479] = {.lex_state = 199, .external_lex_state = 1}, + [15480] = {.lex_state = 205, .external_lex_state = 1}, + [15481] = {.lex_state = 199, .external_lex_state = 1}, + [15482] = {.lex_state = 205, .external_lex_state = 1}, + [15483] = {.lex_state = 547, .external_lex_state = 1}, + [15484] = {.lex_state = 209, .external_lex_state = 1}, + [15485] = {.lex_state = 547, .external_lex_state = 1}, + [15486] = {.lex_state = 206, .external_lex_state = 1}, + [15487] = {.lex_state = 125, .external_lex_state = 1}, + [15488] = {.lex_state = 125, .external_lex_state = 1}, + [15489] = {.lex_state = 125, .external_lex_state = 1}, + [15490] = {.lex_state = 125, .external_lex_state = 1}, + [15491] = {.lex_state = 125, .external_lex_state = 1}, + [15492] = {.lex_state = 125, .external_lex_state = 1}, + [15493] = {.lex_state = 125, .external_lex_state = 1}, + [15494] = {.lex_state = 125, .external_lex_state = 1}, + [15495] = {.lex_state = 125, .external_lex_state = 1}, + [15496] = {.lex_state = 125, .external_lex_state = 1}, + [15497] = {.lex_state = 125, .external_lex_state = 1}, + [15498] = {.lex_state = 125, .external_lex_state = 1}, + [15499] = {.lex_state = 125, .external_lex_state = 1}, + [15500] = {.lex_state = 125, .external_lex_state = 1}, + [15501] = {.lex_state = 125, .external_lex_state = 1}, + [15502] = {.lex_state = 125, .external_lex_state = 1}, + [15503] = {.lex_state = 125, .external_lex_state = 1}, + [15504] = {.lex_state = 125, .external_lex_state = 1}, + [15505] = {.lex_state = 125, .external_lex_state = 1}, + [15506] = {.lex_state = 125, .external_lex_state = 1}, + [15507] = {.lex_state = 125, .external_lex_state = 1}, + [15508] = {.lex_state = 125, .external_lex_state = 1}, + [15509] = {.lex_state = 125, .external_lex_state = 1}, + [15510] = {.lex_state = 125, .external_lex_state = 1}, + [15511] = {.lex_state = 125, .external_lex_state = 1}, + [15512] = {.lex_state = 125, .external_lex_state = 1}, + [15513] = {.lex_state = 125, .external_lex_state = 1}, + [15514] = {.lex_state = 125, .external_lex_state = 1}, + [15515] = {.lex_state = 547, .external_lex_state = 1}, + [15516] = {.lex_state = 125, .external_lex_state = 1}, + [15517] = {.lex_state = 125, .external_lex_state = 1}, + [15518] = {.lex_state = 125, .external_lex_state = 1}, + [15519] = {.lex_state = 125, .external_lex_state = 1}, + [15520] = {.lex_state = 125, .external_lex_state = 1}, + [15521] = {.lex_state = 125, .external_lex_state = 1}, + [15522] = {.lex_state = 125, .external_lex_state = 1}, + [15523] = {.lex_state = 125, .external_lex_state = 1}, + [15524] = {.lex_state = 547, .external_lex_state = 1}, + [15525] = {.lex_state = 125, .external_lex_state = 1}, + [15526] = {.lex_state = 125, .external_lex_state = 1}, + [15527] = {.lex_state = 125, .external_lex_state = 1}, + [15528] = {.lex_state = 125, .external_lex_state = 1}, + [15529] = {.lex_state = 125, .external_lex_state = 1}, + [15530] = {.lex_state = 125, .external_lex_state = 1}, + [15531] = {.lex_state = 547, .external_lex_state = 1}, + [15532] = {.lex_state = 547, .external_lex_state = 1}, + [15533] = {.lex_state = 200, .external_lex_state = 1}, + [15534] = {.lex_state = 125, .external_lex_state = 1}, + [15535] = {.lex_state = 125, .external_lex_state = 1}, + [15536] = {.lex_state = 125, .external_lex_state = 1}, + [15537] = {.lex_state = 125, .external_lex_state = 1}, + [15538] = {.lex_state = 125, .external_lex_state = 1}, + [15539] = {.lex_state = 125, .external_lex_state = 1}, + [15540] = {.lex_state = 207, .external_lex_state = 1}, + [15541] = {.lex_state = 125, .external_lex_state = 1}, + [15542] = {.lex_state = 125, .external_lex_state = 1}, + [15543] = {.lex_state = 126, .external_lex_state = 1}, + [15544] = {.lex_state = 125, .external_lex_state = 1}, + [15545] = {.lex_state = 547, .external_lex_state = 1}, + [15546] = {.lex_state = 547, .external_lex_state = 1}, + [15547] = {.lex_state = 125, .external_lex_state = 1}, + [15548] = {.lex_state = 125, .external_lex_state = 1}, + [15549] = {.lex_state = 200, .external_lex_state = 1}, + [15550] = {.lex_state = 125, .external_lex_state = 1}, + [15551] = {.lex_state = 125, .external_lex_state = 1}, + [15552] = {.lex_state = 125, .external_lex_state = 1}, + [15553] = {.lex_state = 547, .external_lex_state = 1}, + [15554] = {.lex_state = 547, .external_lex_state = 1}, + [15555] = {.lex_state = 125, .external_lex_state = 1}, + [15556] = {.lex_state = 125, .external_lex_state = 1}, + [15557] = {.lex_state = 125, .external_lex_state = 1}, + [15558] = {.lex_state = 125, .external_lex_state = 1}, + [15559] = {.lex_state = 125, .external_lex_state = 1}, + [15560] = {.lex_state = 125, .external_lex_state = 1}, + [15561] = {.lex_state = 125, .external_lex_state = 1}, + [15562] = {.lex_state = 125, .external_lex_state = 1}, + [15563] = {.lex_state = 125, .external_lex_state = 1}, + [15564] = {.lex_state = 125, .external_lex_state = 1}, + [15565] = {.lex_state = 125, .external_lex_state = 1}, + [15566] = {.lex_state = 125, .external_lex_state = 1}, + [15567] = {.lex_state = 125, .external_lex_state = 1}, + [15568] = {.lex_state = 125, .external_lex_state = 1}, + [15569] = {.lex_state = 125, .external_lex_state = 1}, + [15570] = {.lex_state = 178, .external_lex_state = 1}, + [15571] = {.lex_state = 547, .external_lex_state = 1}, + [15572] = {.lex_state = 125, .external_lex_state = 1}, + [15573] = {.lex_state = 125, .external_lex_state = 1}, + [15574] = {.lex_state = 212, .external_lex_state = 1}, + [15575] = {.lex_state = 125, .external_lex_state = 1}, + [15576] = {.lex_state = 125, .external_lex_state = 1}, + [15577] = {.lex_state = 125, .external_lex_state = 1}, + [15578] = {.lex_state = 212, .external_lex_state = 1}, + [15579] = {.lex_state = 125, .external_lex_state = 1}, + [15580] = {.lex_state = 204, .external_lex_state = 1}, + [15581] = {.lex_state = 552, .external_lex_state = 1}, + [15582] = {.lex_state = 125, .external_lex_state = 1}, + [15583] = {.lex_state = 212, .external_lex_state = 1}, + [15584] = {.lex_state = 125, .external_lex_state = 1}, + [15585] = {.lex_state = 125, .external_lex_state = 1}, + [15586] = {.lex_state = 125, .external_lex_state = 1}, + [15587] = {.lex_state = 210, .external_lex_state = 1}, + [15588] = {.lex_state = 125, .external_lex_state = 1}, + [15589] = {.lex_state = 125, .external_lex_state = 1}, + [15590] = {.lex_state = 125, .external_lex_state = 1}, + [15591] = {.lex_state = 200, .external_lex_state = 1}, + [15592] = {.lex_state = 210, .external_lex_state = 1}, + [15593] = {.lex_state = 210, .external_lex_state = 1}, + [15594] = {.lex_state = 125, .external_lex_state = 1}, + [15595] = {.lex_state = 125, .external_lex_state = 1}, + [15596] = {.lex_state = 125, .external_lex_state = 1}, + [15597] = {.lex_state = 547, .external_lex_state = 1}, + [15598] = {.lex_state = 547, .external_lex_state = 1}, + [15599] = {.lex_state = 125, .external_lex_state = 1}, + [15600] = {.lex_state = 212, .external_lex_state = 1}, + [15601] = {.lex_state = 125, .external_lex_state = 1}, + [15602] = {.lex_state = 547, .external_lex_state = 1}, + [15603] = {.lex_state = 547, .external_lex_state = 1}, + [15604] = {.lex_state = 125, .external_lex_state = 1}, + [15605] = {.lex_state = 125, .external_lex_state = 1}, + [15606] = {.lex_state = 547, .external_lex_state = 1}, + [15607] = {.lex_state = 547, .external_lex_state = 1}, + [15608] = {.lex_state = 125, .external_lex_state = 1}, + [15609] = {.lex_state = 125, .external_lex_state = 1}, + [15610] = {.lex_state = 125, .external_lex_state = 1}, + [15611] = {.lex_state = 125, .external_lex_state = 1}, + [15612] = {.lex_state = 547, .external_lex_state = 1}, + [15613] = {.lex_state = 547, .external_lex_state = 1}, + [15614] = {.lex_state = 212, .external_lex_state = 1}, + [15615] = {.lex_state = 125, .external_lex_state = 1}, + [15616] = {.lex_state = 125, .external_lex_state = 1}, + [15617] = {.lex_state = 125, .external_lex_state = 1}, + [15618] = {.lex_state = 125, .external_lex_state = 1}, + [15619] = {.lex_state = 200, .external_lex_state = 1}, + [15620] = {.lex_state = 125, .external_lex_state = 1}, + [15621] = {.lex_state = 125, .external_lex_state = 1}, + [15622] = {.lex_state = 178, .external_lex_state = 1}, + [15623] = {.lex_state = 210, .external_lex_state = 1}, + [15624] = {.lex_state = 125, .external_lex_state = 1}, + [15625] = {.lex_state = 125, .external_lex_state = 1}, + [15626] = {.lex_state = 125, .external_lex_state = 1}, + [15627] = {.lex_state = 125, .external_lex_state = 1}, + [15628] = {.lex_state = 125, .external_lex_state = 1}, + [15629] = {.lex_state = 125, .external_lex_state = 1}, + [15630] = {.lex_state = 210, .external_lex_state = 1}, + [15631] = {.lex_state = 125, .external_lex_state = 1}, + [15632] = {.lex_state = 125, .external_lex_state = 1}, + [15633] = {.lex_state = 125, .external_lex_state = 1}, + [15634] = {.lex_state = 125, .external_lex_state = 1}, + [15635] = {.lex_state = 125, .external_lex_state = 1}, + [15636] = {.lex_state = 125, .external_lex_state = 1}, + [15637] = {.lex_state = 125, .external_lex_state = 1}, + [15638] = {.lex_state = 125, .external_lex_state = 1}, + [15639] = {.lex_state = 125, .external_lex_state = 1}, + [15640] = {.lex_state = 125, .external_lex_state = 1}, + [15641] = {.lex_state = 125, .external_lex_state = 1}, + [15642] = {.lex_state = 125, .external_lex_state = 1}, + [15643] = {.lex_state = 125, .external_lex_state = 1}, + [15644] = {.lex_state = 125, .external_lex_state = 1}, + [15645] = {.lex_state = 204, .external_lex_state = 1}, + [15646] = {.lex_state = 125, .external_lex_state = 1}, + [15647] = {.lex_state = 125, .external_lex_state = 1}, + [15648] = {.lex_state = 125, .external_lex_state = 1}, + [15649] = {.lex_state = 125, .external_lex_state = 1}, + [15650] = {.lex_state = 125, .external_lex_state = 1}, + [15651] = {.lex_state = 125, .external_lex_state = 1}, + [15652] = {.lex_state = 210, .external_lex_state = 1}, + [15653] = {.lex_state = 125, .external_lex_state = 1}, + [15654] = {.lex_state = 547, .external_lex_state = 1}, + [15655] = {.lex_state = 125, .external_lex_state = 1}, + [15656] = {.lex_state = 125, .external_lex_state = 1}, + [15657] = {.lex_state = 125, .external_lex_state = 1}, + [15658] = {.lex_state = 125, .external_lex_state = 1}, + [15659] = {.lex_state = 210, .external_lex_state = 1}, + [15660] = {.lex_state = 547, .external_lex_state = 1}, + [15661] = {.lex_state = 125, .external_lex_state = 1}, + [15662] = {.lex_state = 125, .external_lex_state = 1}, + [15663] = {.lex_state = 125, .external_lex_state = 1}, + [15664] = {.lex_state = 212, .external_lex_state = 1}, + [15665] = {.lex_state = 212, .external_lex_state = 1}, + [15666] = {.lex_state = 125, .external_lex_state = 1}, + [15667] = {.lex_state = 125, .external_lex_state = 1}, + [15668] = {.lex_state = 125, .external_lex_state = 1}, + [15669] = {.lex_state = 125, .external_lex_state = 1}, + [15670] = {.lex_state = 125, .external_lex_state = 1}, + [15671] = {.lex_state = 125, .external_lex_state = 1}, + [15672] = {.lex_state = 125, .external_lex_state = 1}, + [15673] = {.lex_state = 125, .external_lex_state = 1}, + [15674] = {.lex_state = 125, .external_lex_state = 1}, + [15675] = {.lex_state = 125, .external_lex_state = 1}, + [15676] = {.lex_state = 125, .external_lex_state = 1}, + [15677] = {.lex_state = 125, .external_lex_state = 1}, + [15678] = {.lex_state = 125, .external_lex_state = 1}, + [15679] = {.lex_state = 125, .external_lex_state = 1}, + [15680] = {.lex_state = 125, .external_lex_state = 1}, + [15681] = {.lex_state = 207, .external_lex_state = 1}, + [15682] = {.lex_state = 125, .external_lex_state = 1}, + [15683] = {.lex_state = 125, .external_lex_state = 1}, + [15684] = {.lex_state = 178, .external_lex_state = 1}, + [15685] = {.lex_state = 547, .external_lex_state = 1}, + [15686] = {.lex_state = 125, .external_lex_state = 1}, + [15687] = {.lex_state = 207, .external_lex_state = 1}, + [15688] = {.lex_state = 178, .external_lex_state = 1}, + [15689] = {.lex_state = 125, .external_lex_state = 1}, + [15690] = {.lex_state = 125, .external_lex_state = 1}, + [15691] = {.lex_state = 125, .external_lex_state = 1}, + [15692] = {.lex_state = 125, .external_lex_state = 1}, + [15693] = {.lex_state = 125, .external_lex_state = 1}, + [15694] = {.lex_state = 178, .external_lex_state = 1}, + [15695] = {.lex_state = 210, .external_lex_state = 1}, + [15696] = {.lex_state = 125, .external_lex_state = 1}, + [15697] = {.lex_state = 125, .external_lex_state = 1}, + [15698] = {.lex_state = 125, .external_lex_state = 1}, + [15699] = {.lex_state = 125, .external_lex_state = 1}, + [15700] = {.lex_state = 212, .external_lex_state = 1}, + [15701] = {.lex_state = 547, .external_lex_state = 1}, + [15702] = {.lex_state = 547, .external_lex_state = 1}, + [15703] = {.lex_state = 125, .external_lex_state = 1}, + [15704] = {.lex_state = 210, .external_lex_state = 1}, + [15705] = {.lex_state = 125, .external_lex_state = 1}, + [15706] = {.lex_state = 125, .external_lex_state = 1}, + [15707] = {.lex_state = 125, .external_lex_state = 1}, + [15708] = {.lex_state = 547, .external_lex_state = 1}, + [15709] = {.lex_state = 210, .external_lex_state = 1}, + [15710] = {.lex_state = 210, .external_lex_state = 1}, + [15711] = {.lex_state = 210, .external_lex_state = 1}, + [15712] = {.lex_state = 125, .external_lex_state = 1}, + [15713] = {.lex_state = 125, .external_lex_state = 1}, + [15714] = {.lex_state = 125, .external_lex_state = 1}, + [15715] = {.lex_state = 125, .external_lex_state = 1}, + [15716] = {.lex_state = 200, .external_lex_state = 1}, + [15717] = {.lex_state = 125, .external_lex_state = 1}, + [15718] = {.lex_state = 125, .external_lex_state = 1}, + [15719] = {.lex_state = 200, .external_lex_state = 1}, + [15720] = {.lex_state = 122, .external_lex_state = 1}, + [15721] = {.lex_state = 212, .external_lex_state = 1}, + [15722] = {.lex_state = 125, .external_lex_state = 1}, + [15723] = {.lex_state = 206, .external_lex_state = 1}, + [15724] = {.lex_state = 125, .external_lex_state = 1}, + [15725] = {.lex_state = 207, .external_lex_state = 1}, + [15726] = {.lex_state = 178, .external_lex_state = 1}, + [15727] = {.lex_state = 204, .external_lex_state = 1}, + [15728] = {.lex_state = 212, .external_lex_state = 1}, + [15729] = {.lex_state = 125, .external_lex_state = 1}, + [15730] = {.lex_state = 125, .external_lex_state = 1}, + [15731] = {.lex_state = 212, .external_lex_state = 1}, + [15732] = {.lex_state = 125, .external_lex_state = 1}, + [15733] = {.lex_state = 125, .external_lex_state = 1}, + [15734] = {.lex_state = 212, .external_lex_state = 1}, + [15735] = {.lex_state = 210, .external_lex_state = 1}, + [15736] = {.lex_state = 125, .external_lex_state = 1}, + [15737] = {.lex_state = 125, .external_lex_state = 1}, + [15738] = {.lex_state = 125, .external_lex_state = 1}, + [15739] = {.lex_state = 125, .external_lex_state = 1}, + [15740] = {.lex_state = 207, .external_lex_state = 1}, + [15741] = {.lex_state = 212, .external_lex_state = 1}, + [15742] = {.lex_state = 547, .external_lex_state = 1}, + [15743] = {.lex_state = 215, .external_lex_state = 1}, + [15744] = {.lex_state = 125, .external_lex_state = 1}, + [15745] = {.lex_state = 178, .external_lex_state = 1}, + [15746] = {.lex_state = 178, .external_lex_state = 1}, + [15747] = {.lex_state = 125, .external_lex_state = 1}, + [15748] = {.lex_state = 125, .external_lex_state = 1}, + [15749] = {.lex_state = 125, .external_lex_state = 1}, + [15750] = {.lex_state = 125, .external_lex_state = 1}, + [15751] = {.lex_state = 204, .external_lex_state = 1}, + [15752] = {.lex_state = 125, .external_lex_state = 1}, + [15753] = {.lex_state = 125, .external_lex_state = 1}, + [15754] = {.lex_state = 547, .external_lex_state = 1}, + [15755] = {.lex_state = 125, .external_lex_state = 1}, + [15756] = {.lex_state = 125, .external_lex_state = 1}, + [15757] = {.lex_state = 204, .external_lex_state = 1}, + [15758] = {.lex_state = 552, .external_lex_state = 1}, + [15759] = {.lex_state = 547, .external_lex_state = 1}, + [15760] = {.lex_state = 125, .external_lex_state = 1}, + [15761] = {.lex_state = 125, .external_lex_state = 1}, + [15762] = {.lex_state = 125, .external_lex_state = 1}, + [15763] = {.lex_state = 125, .external_lex_state = 1}, + [15764] = {.lex_state = 126, .external_lex_state = 1}, + [15765] = {.lex_state = 125, .external_lex_state = 1}, + [15766] = {.lex_state = 125, .external_lex_state = 1}, + [15767] = {.lex_state = 125, .external_lex_state = 1}, + [15768] = {.lex_state = 125, .external_lex_state = 1}, + [15769] = {.lex_state = 125, .external_lex_state = 1}, + [15770] = {.lex_state = 207, .external_lex_state = 1}, + [15771] = {.lex_state = 547, .external_lex_state = 1}, + [15772] = {.lex_state = 125, .external_lex_state = 1}, + [15773] = {.lex_state = 125, .external_lex_state = 1}, + [15774] = {.lex_state = 125, .external_lex_state = 1}, + [15775] = {.lex_state = 125, .external_lex_state = 1}, + [15776] = {.lex_state = 125, .external_lex_state = 1}, + [15777] = {.lex_state = 125, .external_lex_state = 1}, + [15778] = {.lex_state = 125, .external_lex_state = 1}, + [15779] = {.lex_state = 125, .external_lex_state = 1}, + [15780] = {.lex_state = 552, .external_lex_state = 1}, + [15781] = {.lex_state = 125, .external_lex_state = 1}, + [15782] = {.lex_state = 125, .external_lex_state = 1}, + [15783] = {.lex_state = 125, .external_lex_state = 1}, + [15784] = {.lex_state = 125, .external_lex_state = 1}, + [15785] = {.lex_state = 125, .external_lex_state = 1}, + [15786] = {.lex_state = 125, .external_lex_state = 1}, + [15787] = {.lex_state = 125, .external_lex_state = 1}, + [15788] = {.lex_state = 125, .external_lex_state = 1}, + [15789] = {.lex_state = 125, .external_lex_state = 1}, + [15790] = {.lex_state = 213, .external_lex_state = 1}, + [15791] = {.lex_state = 125, .external_lex_state = 1}, + [15792] = {.lex_state = 125, .external_lex_state = 1}, + [15793] = {.lex_state = 125, .external_lex_state = 1}, + [15794] = {.lex_state = 125, .external_lex_state = 1}, + [15795] = {.lex_state = 125, .external_lex_state = 1}, + [15796] = {.lex_state = 125, .external_lex_state = 1}, + [15797] = {.lex_state = 125, .external_lex_state = 1}, + [15798] = {.lex_state = 125, .external_lex_state = 1}, + [15799] = {.lex_state = 125, .external_lex_state = 1}, + [15800] = {.lex_state = 125, .external_lex_state = 1}, + [15801] = {.lex_state = 125, .external_lex_state = 1}, + [15802] = {.lex_state = 125, .external_lex_state = 1}, + [15803] = {.lex_state = 200, .external_lex_state = 1}, + [15804] = {.lex_state = 125, .external_lex_state = 1}, + [15805] = {.lex_state = 214, .external_lex_state = 1}, + [15806] = {.lex_state = 125, .external_lex_state = 1}, + [15807] = {.lex_state = 125, .external_lex_state = 1}, + [15808] = {.lex_state = 125, .external_lex_state = 1}, + [15809] = {.lex_state = 125, .external_lex_state = 1}, + [15810] = {.lex_state = 125, .external_lex_state = 1}, + [15811] = {.lex_state = 552, .external_lex_state = 1}, + [15812] = {.lex_state = 125, .external_lex_state = 1}, + [15813] = {.lex_state = 125, .external_lex_state = 1}, + [15814] = {.lex_state = 552, .external_lex_state = 1}, + [15815] = {.lex_state = 212, .external_lex_state = 1}, + [15816] = {.lex_state = 213, .external_lex_state = 1}, + [15817] = {.lex_state = 213, .external_lex_state = 1}, + [15818] = {.lex_state = 125, .external_lex_state = 1}, + [15819] = {.lex_state = 200, .external_lex_state = 1}, + [15820] = {.lex_state = 125, .external_lex_state = 1}, + [15821] = {.lex_state = 125, .external_lex_state = 1}, + [15822] = {.lex_state = 200, .external_lex_state = 1}, + [15823] = {.lex_state = 125, .external_lex_state = 1}, + [15824] = {.lex_state = 125, .external_lex_state = 1}, + [15825] = {.lex_state = 125, .external_lex_state = 1}, + [15826] = {.lex_state = 125, .external_lex_state = 1}, + [15827] = {.lex_state = 125, .external_lex_state = 1}, + [15828] = {.lex_state = 125, .external_lex_state = 1}, + [15829] = {.lex_state = 125, .external_lex_state = 1}, + [15830] = {.lex_state = 125, .external_lex_state = 1}, + [15831] = {.lex_state = 213, .external_lex_state = 1}, + [15832] = {.lex_state = 547, .external_lex_state = 1}, + [15833] = {.lex_state = 125, .external_lex_state = 1}, + [15834] = {.lex_state = 125, .external_lex_state = 1}, + [15835] = {.lex_state = 125, .external_lex_state = 1}, + [15836] = {.lex_state = 200, .external_lex_state = 1}, + [15837] = {.lex_state = 125, .external_lex_state = 1}, + [15838] = {.lex_state = 125, .external_lex_state = 1}, + [15839] = {.lex_state = 200, .external_lex_state = 1}, + [15840] = {.lex_state = 125, .external_lex_state = 1}, + [15841] = {.lex_state = 125, .external_lex_state = 1}, + [15842] = {.lex_state = 125, .external_lex_state = 1}, + [15843] = {.lex_state = 547, .external_lex_state = 1}, + [15844] = {.lex_state = 125, .external_lex_state = 1}, + [15845] = {.lex_state = 125, .external_lex_state = 1}, + [15846] = {.lex_state = 200, .external_lex_state = 1}, + [15847] = {.lex_state = 125, .external_lex_state = 1}, + [15848] = {.lex_state = 125, .external_lex_state = 1}, + [15849] = {.lex_state = 547, .external_lex_state = 1}, + [15850] = {.lex_state = 125, .external_lex_state = 1}, + [15851] = {.lex_state = 125, .external_lex_state = 1}, + [15852] = {.lex_state = 200, .external_lex_state = 1}, + [15853] = {.lex_state = 125, .external_lex_state = 1}, + [15854] = {.lex_state = 125, .external_lex_state = 1}, + [15855] = {.lex_state = 125, .external_lex_state = 1}, + [15856] = {.lex_state = 547, .external_lex_state = 1}, + [15857] = {.lex_state = 125, .external_lex_state = 1}, + [15858] = {.lex_state = 125, .external_lex_state = 1}, + [15859] = {.lex_state = 547, .external_lex_state = 1}, + [15860] = {.lex_state = 125, .external_lex_state = 1}, + [15861] = {.lex_state = 125, .external_lex_state = 1}, + [15862] = {.lex_state = 125, .external_lex_state = 1}, + [15863] = {.lex_state = 213, .external_lex_state = 1}, + [15864] = {.lex_state = 125, .external_lex_state = 1}, + [15865] = {.lex_state = 125, .external_lex_state = 1}, + [15866] = {.lex_state = 125, .external_lex_state = 1}, + [15867] = {.lex_state = 125, .external_lex_state = 1}, + [15868] = {.lex_state = 125, .external_lex_state = 1}, + [15869] = {.lex_state = 547, .external_lex_state = 1}, + [15870] = {.lex_state = 125, .external_lex_state = 1}, + [15871] = {.lex_state = 215, .external_lex_state = 1}, + [15872] = {.lex_state = 125, .external_lex_state = 1}, + [15873] = {.lex_state = 547, .external_lex_state = 1}, + [15874] = {.lex_state = 125, .external_lex_state = 1}, + [15875] = {.lex_state = 125, .external_lex_state = 1}, + [15876] = {.lex_state = 125, .external_lex_state = 1}, + [15877] = {.lex_state = 125, .external_lex_state = 1}, + [15878] = {.lex_state = 125, .external_lex_state = 1}, + [15879] = {.lex_state = 125, .external_lex_state = 1}, + [15880] = {.lex_state = 125, .external_lex_state = 1}, + [15881] = {.lex_state = 125, .external_lex_state = 1}, + [15882] = {.lex_state = 125, .external_lex_state = 1}, + [15883] = {.lex_state = 125, .external_lex_state = 1}, + [15884] = {.lex_state = 213, .external_lex_state = 1}, + [15885] = {.lex_state = 213, .external_lex_state = 1}, + [15886] = {.lex_state = 125, .external_lex_state = 1}, + [15887] = {.lex_state = 125, .external_lex_state = 1}, + [15888] = {.lex_state = 207, .external_lex_state = 1}, + [15889] = {.lex_state = 547, .external_lex_state = 1}, + [15890] = {.lex_state = 547, .external_lex_state = 1}, + [15891] = {.lex_state = 125, .external_lex_state = 1}, + [15892] = {.lex_state = 213, .external_lex_state = 1}, + [15893] = {.lex_state = 125, .external_lex_state = 1}, + [15894] = {.lex_state = 547, .external_lex_state = 1}, + [15895] = {.lex_state = 215, .external_lex_state = 1}, + [15896] = {.lex_state = 547, .external_lex_state = 1}, + [15897] = {.lex_state = 125, .external_lex_state = 1}, + [15898] = {.lex_state = 215, .external_lex_state = 1}, + [15899] = {.lex_state = 207, .external_lex_state = 1}, + [15900] = {.lex_state = 547, .external_lex_state = 1}, + [15901] = {.lex_state = 547, .external_lex_state = 1}, + [15902] = {.lex_state = 547, .external_lex_state = 1}, + [15903] = {.lex_state = 125, .external_lex_state = 1}, + [15904] = {.lex_state = 125, .external_lex_state = 1}, + [15905] = {.lex_state = 125, .external_lex_state = 1}, + [15906] = {.lex_state = 125, .external_lex_state = 1}, + [15907] = {.lex_state = 125, .external_lex_state = 1}, + [15908] = {.lex_state = 207, .external_lex_state = 1}, + [15909] = {.lex_state = 207, .external_lex_state = 1}, + [15910] = {.lex_state = 125, .external_lex_state = 1}, + [15911] = {.lex_state = 125, .external_lex_state = 1}, + [15912] = {.lex_state = 125, .external_lex_state = 1}, + [15913] = {.lex_state = 125, .external_lex_state = 1}, + [15914] = {.lex_state = 125, .external_lex_state = 1}, + [15915] = {.lex_state = 125, .external_lex_state = 1}, + [15916] = {.lex_state = 125, .external_lex_state = 1}, + [15917] = {.lex_state = 125, .external_lex_state = 1}, + [15918] = {.lex_state = 125, .external_lex_state = 1}, + [15919] = {.lex_state = 200, .external_lex_state = 1}, + [15920] = {.lex_state = 125, .external_lex_state = 1}, + [15921] = {.lex_state = 125, .external_lex_state = 1}, + [15922] = {.lex_state = 125, .external_lex_state = 1}, + [15923] = {.lex_state = 125, .external_lex_state = 1}, + [15924] = {.lex_state = 125, .external_lex_state = 1}, + [15925] = {.lex_state = 213, .external_lex_state = 1}, + [15926] = {.lex_state = 213, .external_lex_state = 1}, + [15927] = {.lex_state = 200, .external_lex_state = 1}, + [15928] = {.lex_state = 213, .external_lex_state = 1}, + [15929] = {.lex_state = 125, .external_lex_state = 1}, + [15930] = {.lex_state = 125, .external_lex_state = 1}, + [15931] = {.lex_state = 552, .external_lex_state = 1}, + [15932] = {.lex_state = 125, .external_lex_state = 1}, + [15933] = {.lex_state = 125, .external_lex_state = 1}, + [15934] = {.lex_state = 125, .external_lex_state = 1}, + [15935] = {.lex_state = 207, .external_lex_state = 1}, + [15936] = {.lex_state = 125, .external_lex_state = 1}, + [15937] = {.lex_state = 213, .external_lex_state = 1}, + [15938] = {.lex_state = 213, .external_lex_state = 1}, + [15939] = {.lex_state = 207, .external_lex_state = 1}, + [15940] = {.lex_state = 215, .external_lex_state = 1}, + [15941] = {.lex_state = 125, .external_lex_state = 1}, + [15942] = {.lex_state = 125, .external_lex_state = 1}, + [15943] = {.lex_state = 125, .external_lex_state = 1}, + [15944] = {.lex_state = 125, .external_lex_state = 1}, + [15945] = {.lex_state = 125, .external_lex_state = 1}, + [15946] = {.lex_state = 215, .external_lex_state = 1}, + [15947] = {.lex_state = 125, .external_lex_state = 1}, + [15948] = {.lex_state = 178, .external_lex_state = 1}, + [15949] = {.lex_state = 125, .external_lex_state = 1}, + [15950] = {.lex_state = 125, .external_lex_state = 1}, + [15951] = {.lex_state = 125, .external_lex_state = 1}, + [15952] = {.lex_state = 125, .external_lex_state = 1}, + [15953] = {.lex_state = 204, .external_lex_state = 1}, + [15954] = {.lex_state = 178, .external_lex_state = 1}, + [15955] = {.lex_state = 125, .external_lex_state = 1}, + [15956] = {.lex_state = 125, .external_lex_state = 1}, + [15957] = {.lex_state = 125, .external_lex_state = 1}, + [15958] = {.lex_state = 125, .external_lex_state = 1}, + [15959] = {.lex_state = 125, .external_lex_state = 1}, + [15960] = {.lex_state = 125, .external_lex_state = 1}, + [15961] = {.lex_state = 125, .external_lex_state = 1}, + [15962] = {.lex_state = 204, .external_lex_state = 1}, + [15963] = {.lex_state = 207, .external_lex_state = 1}, + [15964] = {.lex_state = 125, .external_lex_state = 1}, + [15965] = {.lex_state = 125, .external_lex_state = 1}, + [15966] = {.lex_state = 125, .external_lex_state = 1}, + [15967] = {.lex_state = 125, .external_lex_state = 1}, + [15968] = {.lex_state = 213, .external_lex_state = 1}, + [15969] = {.lex_state = 125, .external_lex_state = 1}, + [15970] = {.lex_state = 125, .external_lex_state = 1}, + [15971] = {.lex_state = 125, .external_lex_state = 1}, + [15972] = {.lex_state = 125, .external_lex_state = 1}, + [15973] = {.lex_state = 125, .external_lex_state = 1}, + [15974] = {.lex_state = 125, .external_lex_state = 1}, + [15975] = {.lex_state = 125, .external_lex_state = 1}, + [15976] = {.lex_state = 547, .external_lex_state = 1}, + [15977] = {.lex_state = 125, .external_lex_state = 1}, + [15978] = {.lex_state = 125, .external_lex_state = 1}, + [15979] = {.lex_state = 125, .external_lex_state = 1}, + [15980] = {.lex_state = 207, .external_lex_state = 1}, + [15981] = {.lex_state = 125, .external_lex_state = 1}, + [15982] = {.lex_state = 125, .external_lex_state = 1}, + [15983] = {.lex_state = 125, .external_lex_state = 1}, + [15984] = {.lex_state = 547, .external_lex_state = 1}, + [15985] = {.lex_state = 547, .external_lex_state = 1}, + [15986] = {.lex_state = 547, .external_lex_state = 1}, + [15987] = {.lex_state = 125, .external_lex_state = 1}, + [15988] = {.lex_state = 547, .external_lex_state = 1}, + [15989] = {.lex_state = 210, .external_lex_state = 1}, + [15990] = {.lex_state = 125, .external_lex_state = 1}, + [15991] = {.lex_state = 125, .external_lex_state = 1}, + [15992] = {.lex_state = 125, .external_lex_state = 1}, + [15993] = {.lex_state = 125, .external_lex_state = 1}, + [15994] = {.lex_state = 125, .external_lex_state = 1}, + [15995] = {.lex_state = 125, .external_lex_state = 1}, + [15996] = {.lex_state = 125, .external_lex_state = 1}, + [15997] = {.lex_state = 210, .external_lex_state = 1}, + [15998] = {.lex_state = 125, .external_lex_state = 1}, + [15999] = {.lex_state = 125, .external_lex_state = 1}, + [16000] = {.lex_state = 125, .external_lex_state = 1}, + [16001] = {.lex_state = 125, .external_lex_state = 1}, + [16002] = {.lex_state = 125, .external_lex_state = 1}, + [16003] = {.lex_state = 552, .external_lex_state = 1}, + [16004] = {.lex_state = 125, .external_lex_state = 1}, + [16005] = {.lex_state = 125, .external_lex_state = 1}, + [16006] = {.lex_state = 125, .external_lex_state = 1}, + [16007] = {.lex_state = 125, .external_lex_state = 1}, + [16008] = {.lex_state = 125, .external_lex_state = 1}, + [16009] = {.lex_state = 125, .external_lex_state = 1}, + [16010] = {.lex_state = 204, .external_lex_state = 1}, + [16011] = {.lex_state = 125, .external_lex_state = 1}, + [16012] = {.lex_state = 215, .external_lex_state = 1}, + [16013] = {.lex_state = 215, .external_lex_state = 1}, + [16014] = {.lex_state = 125, .external_lex_state = 1}, + [16015] = {.lex_state = 125, .external_lex_state = 1}, + [16016] = {.lex_state = 125, .external_lex_state = 1}, + [16017] = {.lex_state = 125, .external_lex_state = 1}, + [16018] = {.lex_state = 125, .external_lex_state = 1}, + [16019] = {.lex_state = 125, .external_lex_state = 1}, + [16020] = {.lex_state = 125, .external_lex_state = 1}, + [16021] = {.lex_state = 125, .external_lex_state = 1}, + [16022] = {.lex_state = 125, .external_lex_state = 1}, + [16023] = {.lex_state = 125, .external_lex_state = 1}, + [16024] = {.lex_state = 125, .external_lex_state = 1}, + [16025] = {.lex_state = 125, .external_lex_state = 1}, + [16026] = {.lex_state = 125, .external_lex_state = 1}, + [16027] = {.lex_state = 125, .external_lex_state = 1}, + [16028] = {.lex_state = 547, .external_lex_state = 1}, + [16029] = {.lex_state = 547, .external_lex_state = 1}, + [16030] = {.lex_state = 552, .external_lex_state = 1}, + [16031] = {.lex_state = 200, .external_lex_state = 1}, + [16032] = {.lex_state = 215, .external_lex_state = 1}, + [16033] = {.lex_state = 208, .external_lex_state = 1}, + [16034] = {.lex_state = 206, .external_lex_state = 1}, + [16035] = {.lex_state = 125, .external_lex_state = 1}, + [16036] = {.lex_state = 125, .external_lex_state = 1}, + [16037] = {.lex_state = 125, .external_lex_state = 1}, + [16038] = {.lex_state = 125, .external_lex_state = 1}, + [16039] = {.lex_state = 125, .external_lex_state = 1}, + [16040] = {.lex_state = 125, .external_lex_state = 1}, + [16041] = {.lex_state = 125, .external_lex_state = 1}, + [16042] = {.lex_state = 552, .external_lex_state = 1}, + [16043] = {.lex_state = 125, .external_lex_state = 1}, + [16044] = {.lex_state = 125, .external_lex_state = 1}, + [16045] = {.lex_state = 125, .external_lex_state = 1}, + [16046] = {.lex_state = 125, .external_lex_state = 1}, + [16047] = {.lex_state = 125, .external_lex_state = 1}, + [16048] = {.lex_state = 125, .external_lex_state = 1}, + [16049] = {.lex_state = 215, .external_lex_state = 1}, + [16050] = {.lex_state = 125, .external_lex_state = 1}, + [16051] = {.lex_state = 125, .external_lex_state = 1}, + [16052] = {.lex_state = 125, .external_lex_state = 1}, + [16053] = {.lex_state = 125, .external_lex_state = 1}, + [16054] = {.lex_state = 215, .external_lex_state = 1}, + [16055] = {.lex_state = 125, .external_lex_state = 1}, + [16056] = {.lex_state = 125, .external_lex_state = 1}, + [16057] = {.lex_state = 215, .external_lex_state = 1}, + [16058] = {.lex_state = 125, .external_lex_state = 1}, + [16059] = {.lex_state = 215, .external_lex_state = 1}, + [16060] = {.lex_state = 210, .external_lex_state = 1}, + [16061] = {.lex_state = 125, .external_lex_state = 1}, + [16062] = {.lex_state = 125, .external_lex_state = 1}, + [16063] = {.lex_state = 125, .external_lex_state = 1}, + [16064] = {.lex_state = 125, .external_lex_state = 1}, + [16065] = {.lex_state = 125, .external_lex_state = 1}, + [16066] = {.lex_state = 125, .external_lex_state = 1}, + [16067] = {.lex_state = 125, .external_lex_state = 1}, + [16068] = {.lex_state = 547, .external_lex_state = 1}, + [16069] = {.lex_state = 125, .external_lex_state = 1}, + [16070] = {.lex_state = 125, .external_lex_state = 1}, + [16071] = {.lex_state = 125, .external_lex_state = 1}, + [16072] = {.lex_state = 126, .external_lex_state = 1}, + [16073] = {.lex_state = 216, .external_lex_state = 1}, + [16074] = {.lex_state = 125, .external_lex_state = 1}, + [16075] = {.lex_state = 125, .external_lex_state = 1}, + [16076] = {.lex_state = 125, .external_lex_state = 1}, + [16077] = {.lex_state = 125, .external_lex_state = 1}, + [16078] = {.lex_state = 213, .external_lex_state = 1}, + [16079] = {.lex_state = 125, .external_lex_state = 1}, + [16080] = {.lex_state = 125, .external_lex_state = 1}, + [16081] = {.lex_state = 125, .external_lex_state = 1}, + [16082] = {.lex_state = 125, .external_lex_state = 1}, + [16083] = {.lex_state = 547, .external_lex_state = 1}, + [16084] = {.lex_state = 552, .external_lex_state = 1}, + [16085] = {.lex_state = 125, .external_lex_state = 1}, + [16086] = {.lex_state = 547, .external_lex_state = 1}, + [16087] = {.lex_state = 125, .external_lex_state = 1}, + [16088] = {.lex_state = 552, .external_lex_state = 1}, + [16089] = {.lex_state = 215, .external_lex_state = 1}, + [16090] = {.lex_state = 213, .external_lex_state = 1}, + [16091] = {.lex_state = 125, .external_lex_state = 1}, + [16092] = {.lex_state = 547, .external_lex_state = 1}, + [16093] = {.lex_state = 125, .external_lex_state = 1}, + [16094] = {.lex_state = 125, .external_lex_state = 1}, + [16095] = {.lex_state = 125, .external_lex_state = 1}, + [16096] = {.lex_state = 125, .external_lex_state = 1}, + [16097] = {.lex_state = 125, .external_lex_state = 1}, + [16098] = {.lex_state = 125, .external_lex_state = 1}, + [16099] = {.lex_state = 125, .external_lex_state = 1}, + [16100] = {.lex_state = 125, .external_lex_state = 1}, + [16101] = {.lex_state = 125, .external_lex_state = 1}, + [16102] = {.lex_state = 125, .external_lex_state = 1}, + [16103] = {.lex_state = 125, .external_lex_state = 1}, + [16104] = {.lex_state = 125, .external_lex_state = 1}, + [16105] = {.lex_state = 125, .external_lex_state = 1}, + [16106] = {.lex_state = 125, .external_lex_state = 1}, + [16107] = {.lex_state = 547, .external_lex_state = 1}, + [16108] = {.lex_state = 125, .external_lex_state = 1}, + [16109] = {.lex_state = 125, .external_lex_state = 1}, + [16110] = {.lex_state = 125, .external_lex_state = 1}, + [16111] = {.lex_state = 125, .external_lex_state = 1}, + [16112] = {.lex_state = 125, .external_lex_state = 1}, + [16113] = {.lex_state = 125, .external_lex_state = 1}, + [16114] = {.lex_state = 219, .external_lex_state = 1}, + [16115] = {.lex_state = 125, .external_lex_state = 1}, + [16116] = {.lex_state = 547, .external_lex_state = 1}, + [16117] = {.lex_state = 125, .external_lex_state = 1}, + [16118] = {.lex_state = 125, .external_lex_state = 1}, + [16119] = {.lex_state = 125, .external_lex_state = 1}, + [16120] = {.lex_state = 125, .external_lex_state = 1}, + [16121] = {.lex_state = 125, .external_lex_state = 1}, + [16122] = {.lex_state = 125, .external_lex_state = 1}, + [16123] = {.lex_state = 125, .external_lex_state = 1}, + [16124] = {.lex_state = 547, .external_lex_state = 1}, + [16125] = {.lex_state = 547, .external_lex_state = 1}, + [16126] = {.lex_state = 125, .external_lex_state = 1}, + [16127] = {.lex_state = 204, .external_lex_state = 1}, + [16128] = {.lex_state = 125, .external_lex_state = 1}, + [16129] = {.lex_state = 204, .external_lex_state = 1}, + [16130] = {.lex_state = 125, .external_lex_state = 1}, + [16131] = {.lex_state = 125, .external_lex_state = 1}, + [16132] = {.lex_state = 125, .external_lex_state = 1}, + [16133] = {.lex_state = 125, .external_lex_state = 1}, + [16134] = {.lex_state = 125, .external_lex_state = 1}, + [16135] = {.lex_state = 125, .external_lex_state = 1}, + [16136] = {.lex_state = 125, .external_lex_state = 1}, + [16137] = {.lex_state = 125, .external_lex_state = 1}, + [16138] = {.lex_state = 206, .external_lex_state = 1}, + [16139] = {.lex_state = 212, .external_lex_state = 1}, + [16140] = {.lex_state = 125, .external_lex_state = 1}, + [16141] = {.lex_state = 206, .external_lex_state = 1}, + [16142] = {.lex_state = 206, .external_lex_state = 1}, + [16143] = {.lex_state = 125, .external_lex_state = 1}, + [16144] = {.lex_state = 125, .external_lex_state = 1}, + [16145] = {.lex_state = 125, .external_lex_state = 1}, + [16146] = {.lex_state = 125, .external_lex_state = 1}, + [16147] = {.lex_state = 125, .external_lex_state = 1}, + [16148] = {.lex_state = 125, .external_lex_state = 1}, + [16149] = {.lex_state = 125, .external_lex_state = 1}, + [16150] = {.lex_state = 547, .external_lex_state = 1}, + [16151] = {.lex_state = 125, .external_lex_state = 1}, + [16152] = {.lex_state = 125, .external_lex_state = 1}, + [16153] = {.lex_state = 125, .external_lex_state = 1}, + [16154] = {.lex_state = 204, .external_lex_state = 1}, + [16155] = {.lex_state = 125, .external_lex_state = 1}, + [16156] = {.lex_state = 125, .external_lex_state = 1}, + [16157] = {.lex_state = 547, .external_lex_state = 1}, + [16158] = {.lex_state = 547, .external_lex_state = 1}, + [16159] = {.lex_state = 547, .external_lex_state = 1}, + [16160] = {.lex_state = 125, .external_lex_state = 1}, + [16161] = {.lex_state = 125, .external_lex_state = 1}, + [16162] = {.lex_state = 552, .external_lex_state = 1}, + [16163] = {.lex_state = 125, .external_lex_state = 1}, + [16164] = {.lex_state = 547, .external_lex_state = 1}, + [16165] = {.lex_state = 125, .external_lex_state = 1}, + [16166] = {.lex_state = 125, .external_lex_state = 1}, + [16167] = {.lex_state = 125, .external_lex_state = 1}, + [16168] = {.lex_state = 125, .external_lex_state = 1}, + [16169] = {.lex_state = 125, .external_lex_state = 1}, + [16170] = {.lex_state = 125, .external_lex_state = 1}, + [16171] = {.lex_state = 206, .external_lex_state = 1}, + [16172] = {.lex_state = 125, .external_lex_state = 1}, + [16173] = {.lex_state = 206, .external_lex_state = 1}, + [16174] = {.lex_state = 125, .external_lex_state = 1}, + [16175] = {.lex_state = 125, .external_lex_state = 1}, + [16176] = {.lex_state = 125, .external_lex_state = 1}, + [16177] = {.lex_state = 212, .external_lex_state = 1}, + [16178] = {.lex_state = 125, .external_lex_state = 1}, + [16179] = {.lex_state = 125, .external_lex_state = 1}, + [16180] = {.lex_state = 125, .external_lex_state = 1}, + [16181] = {.lex_state = 125, .external_lex_state = 1}, + [16182] = {.lex_state = 125, .external_lex_state = 1}, + [16183] = {.lex_state = 125, .external_lex_state = 1}, + [16184] = {.lex_state = 125, .external_lex_state = 1}, + [16185] = {.lex_state = 125, .external_lex_state = 1}, + [16186] = {.lex_state = 125, .external_lex_state = 1}, + [16187] = {.lex_state = 552, .external_lex_state = 1}, + [16188] = {.lex_state = 148, .external_lex_state = 1}, + [16189] = {.lex_state = 125, .external_lex_state = 1}, + [16190] = {.lex_state = 125, .external_lex_state = 1}, + [16191] = {.lex_state = 125, .external_lex_state = 1}, + [16192] = {.lex_state = 206, .external_lex_state = 1}, + [16193] = {.lex_state = 125, .external_lex_state = 1}, + [16194] = {.lex_state = 125, .external_lex_state = 1}, + [16195] = {.lex_state = 125, .external_lex_state = 1}, + [16196] = {.lex_state = 125, .external_lex_state = 1}, + [16197] = {.lex_state = 125, .external_lex_state = 1}, + [16198] = {.lex_state = 125, .external_lex_state = 1}, + [16199] = {.lex_state = 206, .external_lex_state = 1}, + [16200] = {.lex_state = 125, .external_lex_state = 1}, + [16201] = {.lex_state = 125, .external_lex_state = 1}, + [16202] = {.lex_state = 552, .external_lex_state = 1}, + [16203] = {.lex_state = 125, .external_lex_state = 1}, + [16204] = {.lex_state = 125, .external_lex_state = 1}, + [16205] = {.lex_state = 125, .external_lex_state = 1}, + [16206] = {.lex_state = 125, .external_lex_state = 1}, + [16207] = {.lex_state = 125, .external_lex_state = 1}, + [16208] = {.lex_state = 125, .external_lex_state = 1}, + [16209] = {.lex_state = 125, .external_lex_state = 1}, + [16210] = {.lex_state = 125, .external_lex_state = 1}, + [16211] = {.lex_state = 125, .external_lex_state = 1}, + [16212] = {.lex_state = 547, .external_lex_state = 1}, + [16213] = {.lex_state = 552, .external_lex_state = 1}, + [16214] = {.lex_state = 125, .external_lex_state = 1}, + [16215] = {.lex_state = 125, .external_lex_state = 1}, + [16216] = {.lex_state = 204, .external_lex_state = 1}, + [16217] = {.lex_state = 125, .external_lex_state = 1}, + [16218] = {.lex_state = 125, .external_lex_state = 1}, + [16219] = {.lex_state = 178, .external_lex_state = 1}, + [16220] = {.lex_state = 204, .external_lex_state = 1}, + [16221] = {.lex_state = 215, .external_lex_state = 1}, + [16222] = {.lex_state = 125, .external_lex_state = 1}, + [16223] = {.lex_state = 125, .external_lex_state = 1}, + [16224] = {.lex_state = 125, .external_lex_state = 1}, + [16225] = {.lex_state = 125, .external_lex_state = 1}, + [16226] = {.lex_state = 125, .external_lex_state = 1}, + [16227] = {.lex_state = 204, .external_lex_state = 1}, + [16228] = {.lex_state = 125, .external_lex_state = 1}, + [16229] = {.lex_state = 125, .external_lex_state = 1}, + [16230] = {.lex_state = 547, .external_lex_state = 1}, + [16231] = {.lex_state = 125, .external_lex_state = 1}, + [16232] = {.lex_state = 125, .external_lex_state = 1}, + [16233] = {.lex_state = 125, .external_lex_state = 1}, + [16234] = {.lex_state = 125, .external_lex_state = 1}, + [16235] = {.lex_state = 125, .external_lex_state = 1}, + [16236] = {.lex_state = 206, .external_lex_state = 1}, + [16237] = {.lex_state = 125, .external_lex_state = 1}, + [16238] = {.lex_state = 125, .external_lex_state = 1}, + [16239] = {.lex_state = 547, .external_lex_state = 1}, + [16240] = {.lex_state = 125, .external_lex_state = 1}, + [16241] = {.lex_state = 125, .external_lex_state = 1}, + [16242] = {.lex_state = 125, .external_lex_state = 1}, + [16243] = {.lex_state = 125, .external_lex_state = 1}, + [16244] = {.lex_state = 125, .external_lex_state = 1}, + [16245] = {.lex_state = 207, .external_lex_state = 1}, + [16246] = {.lex_state = 178, .external_lex_state = 1}, + [16247] = {.lex_state = 125, .external_lex_state = 1}, + [16248] = {.lex_state = 547, .external_lex_state = 1}, + [16249] = {.lex_state = 547, .external_lex_state = 1}, + [16250] = {.lex_state = 547, .external_lex_state = 1}, + [16251] = {.lex_state = 125, .external_lex_state = 1}, + [16252] = {.lex_state = 206, .external_lex_state = 1}, + [16253] = {.lex_state = 547, .external_lex_state = 1}, + [16254] = {.lex_state = 125, .external_lex_state = 1}, + [16255] = {.lex_state = 125, .external_lex_state = 1}, + [16256] = {.lex_state = 125, .external_lex_state = 1}, + [16257] = {.lex_state = 125, .external_lex_state = 1}, + [16258] = {.lex_state = 204, .external_lex_state = 1}, + [16259] = {.lex_state = 125, .external_lex_state = 1}, + [16260] = {.lex_state = 552, .external_lex_state = 1}, + [16261] = {.lex_state = 125, .external_lex_state = 1}, + [16262] = {.lex_state = 125, .external_lex_state = 1}, + [16263] = {.lex_state = 125, .external_lex_state = 1}, + [16264] = {.lex_state = 125, .external_lex_state = 1}, + [16265] = {.lex_state = 125, .external_lex_state = 1}, + [16266] = {.lex_state = 125, .external_lex_state = 1}, + [16267] = {.lex_state = 125, .external_lex_state = 1}, + [16268] = {.lex_state = 206, .external_lex_state = 1}, + [16269] = {.lex_state = 125, .external_lex_state = 1}, + [16270] = {.lex_state = 547, .external_lex_state = 1}, + [16271] = {.lex_state = 125, .external_lex_state = 1}, + [16272] = {.lex_state = 125, .external_lex_state = 1}, + [16273] = {.lex_state = 125, .external_lex_state = 1}, + [16274] = {.lex_state = 125, .external_lex_state = 1}, + [16275] = {.lex_state = 125, .external_lex_state = 1}, + [16276] = {.lex_state = 125, .external_lex_state = 1}, + [16277] = {.lex_state = 125, .external_lex_state = 1}, + [16278] = {.lex_state = 125, .external_lex_state = 1}, + [16279] = {.lex_state = 125, .external_lex_state = 1}, + [16280] = {.lex_state = 125, .external_lex_state = 1}, + [16281] = {.lex_state = 125, .external_lex_state = 1}, + [16282] = {.lex_state = 125, .external_lex_state = 1}, + [16283] = {.lex_state = 125, .external_lex_state = 1}, + [16284] = {.lex_state = 125, .external_lex_state = 1}, + [16285] = {.lex_state = 125, .external_lex_state = 1}, + [16286] = {.lex_state = 125, .external_lex_state = 1}, + [16287] = {.lex_state = 204, .external_lex_state = 1}, + [16288] = {.lex_state = 206, .external_lex_state = 1}, + [16289] = {.lex_state = 206, .external_lex_state = 1}, + [16290] = {.lex_state = 178, .external_lex_state = 1}, + [16291] = {.lex_state = 206, .external_lex_state = 1}, + [16292] = {.lex_state = 125, .external_lex_state = 1}, + [16293] = {.lex_state = 125, .external_lex_state = 1}, + [16294] = {.lex_state = 125, .external_lex_state = 1}, + [16295] = {.lex_state = 125, .external_lex_state = 1}, + [16296] = {.lex_state = 125, .external_lex_state = 1}, + [16297] = {.lex_state = 125, .external_lex_state = 1}, + [16298] = {.lex_state = 125, .external_lex_state = 1}, + [16299] = {.lex_state = 125, .external_lex_state = 1}, + [16300] = {.lex_state = 125, .external_lex_state = 1}, + [16301] = {.lex_state = 125, .external_lex_state = 1}, + [16302] = {.lex_state = 125, .external_lex_state = 1}, + [16303] = {.lex_state = 125, .external_lex_state = 1}, + [16304] = {.lex_state = 125, .external_lex_state = 1}, + [16305] = {.lex_state = 125, .external_lex_state = 1}, + [16306] = {.lex_state = 125, .external_lex_state = 1}, + [16307] = {.lex_state = 125, .external_lex_state = 1}, + [16308] = {.lex_state = 125, .external_lex_state = 1}, + [16309] = {.lex_state = 125, .external_lex_state = 1}, + [16310] = {.lex_state = 125, .external_lex_state = 1}, + [16311] = {.lex_state = 178, .external_lex_state = 1}, + [16312] = {.lex_state = 125, .external_lex_state = 1}, + [16313] = {.lex_state = 125, .external_lex_state = 1}, + [16314] = {.lex_state = 125, .external_lex_state = 1}, + [16315] = {.lex_state = 125, .external_lex_state = 1}, + [16316] = {.lex_state = 125, .external_lex_state = 1}, + [16317] = {.lex_state = 125, .external_lex_state = 1}, + [16318] = {.lex_state = 125, .external_lex_state = 1}, + [16319] = {.lex_state = 125, .external_lex_state = 1}, + [16320] = {.lex_state = 125, .external_lex_state = 1}, + [16321] = {.lex_state = 125, .external_lex_state = 1}, + [16322] = {.lex_state = 178, .external_lex_state = 1}, + [16323] = {.lex_state = 125, .external_lex_state = 1}, + [16324] = {.lex_state = 125, .external_lex_state = 1}, + [16325] = {.lex_state = 125, .external_lex_state = 1}, + [16326] = {.lex_state = 125, .external_lex_state = 1}, + [16327] = {.lex_state = 125, .external_lex_state = 1}, + [16328] = {.lex_state = 125, .external_lex_state = 1}, + [16329] = {.lex_state = 125, .external_lex_state = 1}, + [16330] = {.lex_state = 125, .external_lex_state = 1}, + [16331] = {.lex_state = 215, .external_lex_state = 1}, + [16332] = {.lex_state = 125, .external_lex_state = 1}, + [16333] = {.lex_state = 125, .external_lex_state = 1}, + [16334] = {.lex_state = 125, .external_lex_state = 1}, + [16335] = {.lex_state = 178, .external_lex_state = 1}, + [16336] = {.lex_state = 125, .external_lex_state = 1}, + [16337] = {.lex_state = 125, .external_lex_state = 1}, + [16338] = {.lex_state = 125, .external_lex_state = 1}, + [16339] = {.lex_state = 125, .external_lex_state = 1}, + [16340] = {.lex_state = 125, .external_lex_state = 1}, + [16341] = {.lex_state = 125, .external_lex_state = 1}, + [16342] = {.lex_state = 207, .external_lex_state = 1}, + [16343] = {.lex_state = 125, .external_lex_state = 1}, + [16344] = {.lex_state = 125, .external_lex_state = 1}, + [16345] = {.lex_state = 127, .external_lex_state = 1}, + [16346] = {.lex_state = 127, .external_lex_state = 1}, + [16347] = {.lex_state = 216, .external_lex_state = 1}, + [16348] = {.lex_state = 127, .external_lex_state = 1}, + [16349] = {.lex_state = 127, .external_lex_state = 1}, + [16350] = {.lex_state = 547, .external_lex_state = 1}, + [16351] = {.lex_state = 547, .external_lex_state = 1}, + [16352] = {.lex_state = 125, .external_lex_state = 1}, + [16353] = {.lex_state = 125, .external_lex_state = 1}, + [16354] = {.lex_state = 214, .external_lex_state = 1}, + [16355] = {.lex_state = 214, .external_lex_state = 1}, + [16356] = {.lex_state = 214, .external_lex_state = 1}, + [16357] = {.lex_state = 214, .external_lex_state = 1}, + [16358] = {.lex_state = 547, .external_lex_state = 1}, + [16359] = {.lex_state = 547, .external_lex_state = 1}, + [16360] = {.lex_state = 214, .external_lex_state = 1}, + [16361] = {.lex_state = 127, .external_lex_state = 1}, + [16362] = {.lex_state = 214, .external_lex_state = 1}, + [16363] = {.lex_state = 214, .external_lex_state = 1}, + [16364] = {.lex_state = 219, .external_lex_state = 1}, + [16365] = {.lex_state = 219, .external_lex_state = 1}, + [16366] = {.lex_state = 219, .external_lex_state = 1}, + [16367] = {.lex_state = 219, .external_lex_state = 1}, + [16368] = {.lex_state = 219, .external_lex_state = 1}, + [16369] = {.lex_state = 219, .external_lex_state = 1}, + [16370] = {.lex_state = 219, .external_lex_state = 1}, + [16371] = {.lex_state = 219, .external_lex_state = 1}, + [16372] = {.lex_state = 219, .external_lex_state = 1}, + [16373] = {.lex_state = 219, .external_lex_state = 1}, + [16374] = {.lex_state = 219, .external_lex_state = 1}, + [16375] = {.lex_state = 219, .external_lex_state = 1}, + [16376] = {.lex_state = 219, .external_lex_state = 1}, + [16377] = {.lex_state = 148, .external_lex_state = 1}, + [16378] = {.lex_state = 148, .external_lex_state = 1}, + [16379] = {.lex_state = 148, .external_lex_state = 1}, + [16380] = {.lex_state = 148, .external_lex_state = 1}, + [16381] = {.lex_state = 148, .external_lex_state = 1}, + [16382] = {.lex_state = 148, .external_lex_state = 1}, + [16383] = {.lex_state = 148, .external_lex_state = 1}, + [16384] = {.lex_state = 148, .external_lex_state = 1}, + [16385] = {.lex_state = 148, .external_lex_state = 1}, + [16386] = {.lex_state = 148, .external_lex_state = 1}, + [16387] = {.lex_state = 148, .external_lex_state = 1}, + [16388] = {.lex_state = 148, .external_lex_state = 1}, + [16389] = {.lex_state = 148, .external_lex_state = 1}, + [16390] = {.lex_state = 219, .external_lex_state = 1}, + [16391] = {.lex_state = 219, .external_lex_state = 1}, + [16392] = {.lex_state = 219, .external_lex_state = 1}, + [16393] = {.lex_state = 127, .external_lex_state = 1}, + [16394] = {.lex_state = 148, .external_lex_state = 1}, + [16395] = {.lex_state = 148, .external_lex_state = 1}, + [16396] = {.lex_state = 127, .external_lex_state = 1}, + [16397] = {.lex_state = 148, .external_lex_state = 1}, + [16398] = {.lex_state = 214, .external_lex_state = 1}, + [16399] = {.lex_state = 214, .external_lex_state = 1}, + [16400] = {.lex_state = 127, .external_lex_state = 1}, + [16401] = {.lex_state = 214, .external_lex_state = 1}, + [16402] = {.lex_state = 125, .external_lex_state = 1}, + [16403] = {.lex_state = 125, .external_lex_state = 1}, + [16404] = {.lex_state = 208, .external_lex_state = 1}, + [16405] = {.lex_state = 547, .external_lex_state = 1}, + [16406] = {.lex_state = 214, .external_lex_state = 1}, + [16407] = {.lex_state = 208, .external_lex_state = 1}, + [16408] = {.lex_state = 214, .external_lex_state = 1}, + [16409] = {.lex_state = 214, .external_lex_state = 1}, + [16410] = {.lex_state = 214, .external_lex_state = 1}, + [16411] = {.lex_state = 125, .external_lex_state = 1}, + [16412] = {.lex_state = 547, .external_lex_state = 1}, + [16413] = {.lex_state = 547, .external_lex_state = 1}, + [16414] = {.lex_state = 208, .external_lex_state = 1}, + [16415] = {.lex_state = 214, .external_lex_state = 1}, + [16416] = {.lex_state = 127, .external_lex_state = 1}, + [16417] = {.lex_state = 127, .external_lex_state = 1}, + [16418] = {.lex_state = 127, .external_lex_state = 1}, + [16419] = {.lex_state = 127, .external_lex_state = 1}, + [16420] = {.lex_state = 195, .external_lex_state = 1}, + [16421] = {.lex_state = 233, .external_lex_state = 1}, + [16422] = {.lex_state = 125, .external_lex_state = 1}, + [16423] = {.lex_state = 127, .external_lex_state = 1}, + [16424] = {.lex_state = 127, .external_lex_state = 1}, + [16425] = {.lex_state = 208, .external_lex_state = 1}, + [16426] = {.lex_state = 547, .external_lex_state = 1}, + [16427] = {.lex_state = 127, .external_lex_state = 1}, + [16428] = {.lex_state = 127, .external_lex_state = 1}, + [16429] = {.lex_state = 547, .external_lex_state = 1}, + [16430] = {.lex_state = 127, .external_lex_state = 1}, + [16431] = {.lex_state = 127, .external_lex_state = 1}, + [16432] = {.lex_state = 547, .external_lex_state = 1}, + [16433] = {.lex_state = 547, .external_lex_state = 1}, + [16434] = {.lex_state = 127, .external_lex_state = 1}, + [16435] = {.lex_state = 127, .external_lex_state = 1}, + [16436] = {.lex_state = 208, .external_lex_state = 1}, + [16437] = {.lex_state = 208, .external_lex_state = 1}, + [16438] = {.lex_state = 196, .external_lex_state = 1}, + [16439] = {.lex_state = 547, .external_lex_state = 1}, + [16440] = {.lex_state = 127, .external_lex_state = 1}, + [16441] = {.lex_state = 127, .external_lex_state = 1}, + [16442] = {.lex_state = 127, .external_lex_state = 1}, + [16443] = {.lex_state = 547, .external_lex_state = 1}, + [16444] = {.lex_state = 127, .external_lex_state = 1}, + [16445] = {.lex_state = 127, .external_lex_state = 1}, + [16446] = {.lex_state = 547, .external_lex_state = 1}, + [16447] = {.lex_state = 127, .external_lex_state = 1}, + [16448] = {.lex_state = 127, .external_lex_state = 1}, + [16449] = {.lex_state = 547, .external_lex_state = 1}, + [16450] = {.lex_state = 127, .external_lex_state = 1}, + [16451] = {.lex_state = 127, .external_lex_state = 1}, + [16452] = {.lex_state = 547, .external_lex_state = 1}, + [16453] = {.lex_state = 127, .external_lex_state = 1}, + [16454] = {.lex_state = 547, .external_lex_state = 1}, + [16455] = {.lex_state = 547, .external_lex_state = 1}, + [16456] = {.lex_state = 547, .external_lex_state = 1}, + [16457] = {.lex_state = 547, .external_lex_state = 1}, + [16458] = {.lex_state = 127, .external_lex_state = 1}, + [16459] = {.lex_state = 127, .external_lex_state = 1}, + [16460] = {.lex_state = 127, .external_lex_state = 1}, + [16461] = {.lex_state = 547, .external_lex_state = 1}, + [16462] = {.lex_state = 547, .external_lex_state = 1}, + [16463] = {.lex_state = 547, .external_lex_state = 1}, + [16464] = {.lex_state = 127, .external_lex_state = 1}, + [16465] = {.lex_state = 127, .external_lex_state = 1}, + [16466] = {.lex_state = 547, .external_lex_state = 1}, + [16467] = {.lex_state = 547, .external_lex_state = 1}, + [16468] = {.lex_state = 547, .external_lex_state = 1}, + [16469] = {.lex_state = 547, .external_lex_state = 1}, + [16470] = {.lex_state = 127, .external_lex_state = 1}, + [16471] = {.lex_state = 127, .external_lex_state = 1}, + [16472] = {.lex_state = 547, .external_lex_state = 1}, + [16473] = {.lex_state = 547, .external_lex_state = 1}, + [16474] = {.lex_state = 547, .external_lex_state = 1}, + [16475] = {.lex_state = 127, .external_lex_state = 1}, + [16476] = {.lex_state = 127, .external_lex_state = 1}, + [16477] = {.lex_state = 547, .external_lex_state = 1}, + [16478] = {.lex_state = 547, .external_lex_state = 1}, + [16479] = {.lex_state = 127, .external_lex_state = 1}, + [16480] = {.lex_state = 127, .external_lex_state = 1}, + [16481] = {.lex_state = 547, .external_lex_state = 1}, + [16482] = {.lex_state = 547, .external_lex_state = 1}, + [16483] = {.lex_state = 127, .external_lex_state = 1}, + [16484] = {.lex_state = 127, .external_lex_state = 1}, + [16485] = {.lex_state = 547, .external_lex_state = 1}, + [16486] = {.lex_state = 127, .external_lex_state = 1}, + [16487] = {.lex_state = 127, .external_lex_state = 1}, + [16488] = {.lex_state = 127, .external_lex_state = 1}, + [16489] = {.lex_state = 547, .external_lex_state = 1}, + [16490] = {.lex_state = 216, .external_lex_state = 1}, + [16491] = {.lex_state = 127, .external_lex_state = 1}, + [16492] = {.lex_state = 216, .external_lex_state = 1}, + [16493] = {.lex_state = 216, .external_lex_state = 1}, + [16494] = {.lex_state = 127, .external_lex_state = 1}, + [16495] = {.lex_state = 127, .external_lex_state = 1}, + [16496] = {.lex_state = 547, .external_lex_state = 1}, + [16497] = {.lex_state = 127, .external_lex_state = 1}, + [16498] = {.lex_state = 547, .external_lex_state = 1}, + [16499] = {.lex_state = 547, .external_lex_state = 1}, + [16500] = {.lex_state = 547, .external_lex_state = 1}, + [16501] = {.lex_state = 547, .external_lex_state = 1}, + [16502] = {.lex_state = 127, .external_lex_state = 1}, + [16503] = {.lex_state = 216, .external_lex_state = 1}, + [16504] = {.lex_state = 547, .external_lex_state = 1}, + [16505] = {.lex_state = 127, .external_lex_state = 1}, + [16506] = {.lex_state = 547, .external_lex_state = 1}, + [16507] = {.lex_state = 127, .external_lex_state = 1}, + [16508] = {.lex_state = 127, .external_lex_state = 1}, + [16509] = {.lex_state = 547, .external_lex_state = 1}, + [16510] = {.lex_state = 127, .external_lex_state = 1}, + [16511] = {.lex_state = 547, .external_lex_state = 1}, + [16512] = {.lex_state = 547, .external_lex_state = 1}, + [16513] = {.lex_state = 547, .external_lex_state = 1}, + [16514] = {.lex_state = 547, .external_lex_state = 1}, + [16515] = {.lex_state = 547, .external_lex_state = 1}, + [16516] = {.lex_state = 127, .external_lex_state = 1}, + [16517] = {.lex_state = 547, .external_lex_state = 1}, + [16518] = {.lex_state = 547, .external_lex_state = 1}, + [16519] = {.lex_state = 547, .external_lex_state = 1}, + [16520] = {.lex_state = 547, .external_lex_state = 1}, + [16521] = {.lex_state = 547, .external_lex_state = 1}, + [16522] = {.lex_state = 127, .external_lex_state = 1}, + [16523] = {.lex_state = 127, .external_lex_state = 1}, + [16524] = {.lex_state = 127, .external_lex_state = 1}, + [16525] = {.lex_state = 125, .external_lex_state = 1}, + [16526] = {.lex_state = 127, .external_lex_state = 1}, + [16527] = {.lex_state = 547, .external_lex_state = 1}, + [16528] = {.lex_state = 127, .external_lex_state = 1}, + [16529] = {.lex_state = 127, .external_lex_state = 1}, + [16530] = {.lex_state = 127, .external_lex_state = 1}, + [16531] = {.lex_state = 547, .external_lex_state = 1}, + [16532] = {.lex_state = 127, .external_lex_state = 1}, + [16533] = {.lex_state = 547, .external_lex_state = 1}, + [16534] = {.lex_state = 547, .external_lex_state = 1}, + [16535] = {.lex_state = 214, .external_lex_state = 1}, + [16536] = {.lex_state = 127, .external_lex_state = 1}, + [16537] = {.lex_state = 547, .external_lex_state = 1}, + [16538] = {.lex_state = 127, .external_lex_state = 1}, + [16539] = {.lex_state = 547, .external_lex_state = 1}, + [16540] = {.lex_state = 127, .external_lex_state = 1}, + [16541] = {.lex_state = 127, .external_lex_state = 1}, + [16542] = {.lex_state = 547, .external_lex_state = 1}, + [16543] = {.lex_state = 216, .external_lex_state = 1}, + [16544] = {.lex_state = 216, .external_lex_state = 1}, + [16545] = {.lex_state = 127, .external_lex_state = 1}, + [16546] = {.lex_state = 127, .external_lex_state = 1}, + [16547] = {.lex_state = 216, .external_lex_state = 1}, + [16548] = {.lex_state = 547, .external_lex_state = 1}, + [16549] = {.lex_state = 127, .external_lex_state = 1}, + [16550] = {.lex_state = 127, .external_lex_state = 1}, + [16551] = {.lex_state = 127, .external_lex_state = 1}, + [16552] = {.lex_state = 127, .external_lex_state = 1}, + [16553] = {.lex_state = 127, .external_lex_state = 1}, + [16554] = {.lex_state = 127, .external_lex_state = 1}, + [16555] = {.lex_state = 127, .external_lex_state = 1}, + [16556] = {.lex_state = 127, .external_lex_state = 1}, + [16557] = {.lex_state = 216, .external_lex_state = 1}, + [16558] = {.lex_state = 216, .external_lex_state = 1}, + [16559] = {.lex_state = 127, .external_lex_state = 1}, + [16560] = {.lex_state = 127, .external_lex_state = 1}, + [16561] = {.lex_state = 127, .external_lex_state = 1}, + [16562] = {.lex_state = 127, .external_lex_state = 1}, + [16563] = {.lex_state = 127, .external_lex_state = 1}, + [16564] = {.lex_state = 127, .external_lex_state = 1}, + [16565] = {.lex_state = 127, .external_lex_state = 1}, + [16566] = {.lex_state = 127, .external_lex_state = 1}, + [16567] = {.lex_state = 127, .external_lex_state = 1}, + [16568] = {.lex_state = 127, .external_lex_state = 1}, + [16569] = {.lex_state = 127, .external_lex_state = 1}, + [16570] = {.lex_state = 127, .external_lex_state = 1}, + [16571] = {.lex_state = 127, .external_lex_state = 1}, + [16572] = {.lex_state = 127, .external_lex_state = 1}, + [16573] = {.lex_state = 547, .external_lex_state = 1}, + [16574] = {.lex_state = 127, .external_lex_state = 1}, + [16575] = {.lex_state = 547, .external_lex_state = 1}, + [16576] = {.lex_state = 127, .external_lex_state = 1}, + [16577] = {.lex_state = 127, .external_lex_state = 1}, + [16578] = {.lex_state = 127, .external_lex_state = 1}, + [16579] = {.lex_state = 127, .external_lex_state = 1}, + [16580] = {.lex_state = 127, .external_lex_state = 1}, + [16581] = {.lex_state = 127, .external_lex_state = 1}, + [16582] = {.lex_state = 127, .external_lex_state = 1}, + [16583] = {.lex_state = 127, .external_lex_state = 1}, + [16584] = {.lex_state = 216, .external_lex_state = 1}, + [16585] = {.lex_state = 127, .external_lex_state = 1}, + [16586] = {.lex_state = 127, .external_lex_state = 1}, + [16587] = {.lex_state = 127, .external_lex_state = 1}, + [16588] = {.lex_state = 127, .external_lex_state = 1}, + [16589] = {.lex_state = 127, .external_lex_state = 1}, + [16590] = {.lex_state = 127, .external_lex_state = 1}, + [16591] = {.lex_state = 127, .external_lex_state = 1}, + [16592] = {.lex_state = 127, .external_lex_state = 1}, + [16593] = {.lex_state = 127, .external_lex_state = 1}, + [16594] = {.lex_state = 127, .external_lex_state = 1}, + [16595] = {.lex_state = 127, .external_lex_state = 1}, + [16596] = {.lex_state = 127, .external_lex_state = 1}, + [16597] = {.lex_state = 127, .external_lex_state = 1}, + [16598] = {.lex_state = 216, .external_lex_state = 1}, + [16599] = {.lex_state = 127, .external_lex_state = 1}, + [16600] = {.lex_state = 127, .external_lex_state = 1}, + [16601] = {.lex_state = 127, .external_lex_state = 1}, + [16602] = {.lex_state = 127, .external_lex_state = 1}, + [16603] = {.lex_state = 127, .external_lex_state = 1}, + [16604] = {.lex_state = 216, .external_lex_state = 1}, + [16605] = {.lex_state = 127, .external_lex_state = 1}, + [16606] = {.lex_state = 125, .external_lex_state = 1}, + [16607] = {.lex_state = 125, .external_lex_state = 1}, + [16608] = {.lex_state = 216, .external_lex_state = 1}, + [16609] = {.lex_state = 125, .external_lex_state = 1}, + [16610] = {.lex_state = 125, .external_lex_state = 1}, + [16611] = {.lex_state = 125, .external_lex_state = 1}, + [16612] = {.lex_state = 125, .external_lex_state = 1}, + [16613] = {.lex_state = 216, .external_lex_state = 1}, + [16614] = {.lex_state = 125, .external_lex_state = 1}, + [16615] = {.lex_state = 127, .external_lex_state = 1}, + [16616] = {.lex_state = 127, .external_lex_state = 1}, + [16617] = {.lex_state = 125, .external_lex_state = 1}, + [16618] = {.lex_state = 125, .external_lex_state = 1}, + [16619] = {.lex_state = 125, .external_lex_state = 1}, + [16620] = {.lex_state = 127, .external_lex_state = 1}, + [16621] = {.lex_state = 125, .external_lex_state = 1}, + [16622] = {.lex_state = 127, .external_lex_state = 1}, + [16623] = {.lex_state = 125, .external_lex_state = 1}, + [16624] = {.lex_state = 125, .external_lex_state = 1}, + [16625] = {.lex_state = 125, .external_lex_state = 1}, + [16626] = {.lex_state = 125, .external_lex_state = 1}, + [16627] = {.lex_state = 125, .external_lex_state = 1}, + [16628] = {.lex_state = 125, .external_lex_state = 1}, + [16629] = {.lex_state = 125, .external_lex_state = 1}, + [16630] = {.lex_state = 216, .external_lex_state = 1}, + [16631] = {.lex_state = 547, .external_lex_state = 1}, + [16632] = {.lex_state = 547, .external_lex_state = 1}, + [16633] = {.lex_state = 547, .external_lex_state = 1}, + [16634] = {.lex_state = 547, .external_lex_state = 1}, + [16635] = {.lex_state = 547, .external_lex_state = 1}, + [16636] = {.lex_state = 127, .external_lex_state = 1}, + [16637] = {.lex_state = 125, .external_lex_state = 1}, + [16638] = {.lex_state = 127, .external_lex_state = 1}, + [16639] = {.lex_state = 547, .external_lex_state = 1}, + [16640] = {.lex_state = 547, .external_lex_state = 1}, + [16641] = {.lex_state = 547, .external_lex_state = 1}, + [16642] = {.lex_state = 125, .external_lex_state = 1}, + [16643] = {.lex_state = 547, .external_lex_state = 1}, + [16644] = {.lex_state = 547, .external_lex_state = 1}, + [16645] = {.lex_state = 547, .external_lex_state = 1}, + [16646] = {.lex_state = 547, .external_lex_state = 1}, + [16647] = {.lex_state = 547, .external_lex_state = 1}, + [16648] = {.lex_state = 208, .external_lex_state = 1}, + [16649] = {.lex_state = 547, .external_lex_state = 1}, + [16650] = {.lex_state = 547, .external_lex_state = 1}, + [16651] = {.lex_state = 547, .external_lex_state = 1}, + [16652] = {.lex_state = 547, .external_lex_state = 1}, + [16653] = {.lex_state = 208, .external_lex_state = 1}, + [16654] = {.lex_state = 208, .external_lex_state = 1}, + [16655] = {.lex_state = 208, .external_lex_state = 1}, + [16656] = {.lex_state = 547, .external_lex_state = 1}, + [16657] = {.lex_state = 208, .external_lex_state = 1}, + [16658] = {.lex_state = 127, .external_lex_state = 1}, + [16659] = {.lex_state = 127, .external_lex_state = 1}, + [16660] = {.lex_state = 127, .external_lex_state = 1}, + [16661] = {.lex_state = 208, .external_lex_state = 1}, + [16662] = {.lex_state = 208, .external_lex_state = 1}, + [16663] = {.lex_state = 547, .external_lex_state = 1}, + [16664] = {.lex_state = 208, .external_lex_state = 1}, + [16665] = {.lex_state = 547, .external_lex_state = 1}, + [16666] = {.lex_state = 127, .external_lex_state = 1}, + [16667] = {.lex_state = 127, .external_lex_state = 1}, + [16668] = {.lex_state = 208, .external_lex_state = 1}, + [16669] = {.lex_state = 208, .external_lex_state = 1}, + [16670] = {.lex_state = 547, .external_lex_state = 1}, + [16671] = {.lex_state = 547, .external_lex_state = 1}, + [16672] = {.lex_state = 547, .external_lex_state = 1}, + [16673] = {.lex_state = 547, .external_lex_state = 1}, + [16674] = {.lex_state = 547, .external_lex_state = 1}, + [16675] = {.lex_state = 547, .external_lex_state = 1}, + [16676] = {.lex_state = 547, .external_lex_state = 1}, + [16677] = {.lex_state = 196, .external_lex_state = 1}, + [16678] = {.lex_state = 547, .external_lex_state = 1}, + [16679] = {.lex_state = 547, .external_lex_state = 1}, + [16680] = {.lex_state = 547, .external_lex_state = 1}, + [16681] = {.lex_state = 547, .external_lex_state = 1}, + [16682] = {.lex_state = 547, .external_lex_state = 1}, + [16683] = {.lex_state = 547, .external_lex_state = 1}, + [16684] = {.lex_state = 547, .external_lex_state = 1}, + [16685] = {.lex_state = 547, .external_lex_state = 1}, + [16686] = {.lex_state = 547, .external_lex_state = 1}, + [16687] = {.lex_state = 547, .external_lex_state = 1}, + [16688] = {.lex_state = 547, .external_lex_state = 1}, + [16689] = {.lex_state = 547, .external_lex_state = 1}, + [16690] = {.lex_state = 547, .external_lex_state = 1}, + [16691] = {.lex_state = 547, .external_lex_state = 1}, + [16692] = {.lex_state = 547, .external_lex_state = 1}, + [16693] = {.lex_state = 547, .external_lex_state = 1}, + [16694] = {.lex_state = 547, .external_lex_state = 1}, + [16695] = {.lex_state = 547, .external_lex_state = 1}, + [16696] = {.lex_state = 547, .external_lex_state = 1}, + [16697] = {.lex_state = 547, .external_lex_state = 1}, + [16698] = {.lex_state = 547, .external_lex_state = 1}, + [16699] = {.lex_state = 547, .external_lex_state = 1}, + [16700] = {.lex_state = 547, .external_lex_state = 1}, + [16701] = {.lex_state = 547, .external_lex_state = 1}, + [16702] = {.lex_state = 547, .external_lex_state = 1}, + [16703] = {.lex_state = 547, .external_lex_state = 1}, + [16704] = {.lex_state = 547, .external_lex_state = 1}, + [16705] = {.lex_state = 547, .external_lex_state = 1}, + [16706] = {.lex_state = 547, .external_lex_state = 1}, + [16707] = {.lex_state = 547, .external_lex_state = 1}, + [16708] = {.lex_state = 547, .external_lex_state = 1}, + [16709] = {.lex_state = 547, .external_lex_state = 1}, + [16710] = {.lex_state = 233, .external_lex_state = 1}, + [16711] = {.lex_state = 547, .external_lex_state = 1}, + [16712] = {.lex_state = 547, .external_lex_state = 1}, + [16713] = {.lex_state = 547, .external_lex_state = 1}, + [16714] = {.lex_state = 547, .external_lex_state = 1}, + [16715] = {.lex_state = 547, .external_lex_state = 1}, + [16716] = {.lex_state = 547, .external_lex_state = 1}, + [16717] = {.lex_state = 547, .external_lex_state = 1}, + [16718] = {.lex_state = 547, .external_lex_state = 1}, + [16719] = {.lex_state = 233, .external_lex_state = 1}, + [16720] = {.lex_state = 233, .external_lex_state = 1}, + [16721] = {.lex_state = 547, .external_lex_state = 1}, + [16722] = {.lex_state = 547, .external_lex_state = 1}, + [16723] = {.lex_state = 547, .external_lex_state = 1}, + [16724] = {.lex_state = 547, .external_lex_state = 1}, + [16725] = {.lex_state = 547, .external_lex_state = 1}, + [16726] = {.lex_state = 547, .external_lex_state = 1}, + [16727] = {.lex_state = 547, .external_lex_state = 1}, + [16728] = {.lex_state = 547, .external_lex_state = 1}, + [16729] = {.lex_state = 547, .external_lex_state = 1}, + [16730] = {.lex_state = 547, .external_lex_state = 1}, + [16731] = {.lex_state = 547, .external_lex_state = 1}, + [16732] = {.lex_state = 547, .external_lex_state = 1}, + [16733] = {.lex_state = 547, .external_lex_state = 1}, + [16734] = {.lex_state = 547, .external_lex_state = 1}, + [16735] = {.lex_state = 547, .external_lex_state = 1}, + [16736] = {.lex_state = 547, .external_lex_state = 1}, + [16737] = {.lex_state = 547, .external_lex_state = 1}, + [16738] = {.lex_state = 233, .external_lex_state = 1}, + [16739] = {.lex_state = 233, .external_lex_state = 1}, + [16740] = {.lex_state = 547, .external_lex_state = 1}, + [16741] = {.lex_state = 547, .external_lex_state = 1}, + [16742] = {.lex_state = 547, .external_lex_state = 1}, + [16743] = {.lex_state = 547, .external_lex_state = 1}, + [16744] = {.lex_state = 547, .external_lex_state = 1}, + [16745] = {.lex_state = 547, .external_lex_state = 1}, + [16746] = {.lex_state = 547, .external_lex_state = 1}, + [16747] = {.lex_state = 547, .external_lex_state = 1}, + [16748] = {.lex_state = 547, .external_lex_state = 1}, + [16749] = {.lex_state = 547, .external_lex_state = 1}, + [16750] = {.lex_state = 547, .external_lex_state = 1}, + [16751] = {.lex_state = 547, .external_lex_state = 1}, + [16752] = {.lex_state = 547, .external_lex_state = 1}, + [16753] = {.lex_state = 233, .external_lex_state = 1}, + [16754] = {.lex_state = 233, .external_lex_state = 1}, + [16755] = {.lex_state = 547, .external_lex_state = 1}, + [16756] = {.lex_state = 547, .external_lex_state = 1}, + [16757] = {.lex_state = 547, .external_lex_state = 1}, + [16758] = {.lex_state = 547, .external_lex_state = 1}, + [16759] = {.lex_state = 547, .external_lex_state = 1}, + [16760] = {.lex_state = 547, .external_lex_state = 1}, + [16761] = {.lex_state = 547, .external_lex_state = 1}, + [16762] = {.lex_state = 547, .external_lex_state = 1}, + [16763] = {.lex_state = 547, .external_lex_state = 1}, + [16764] = {.lex_state = 547, .external_lex_state = 1}, + [16765] = {.lex_state = 547, .external_lex_state = 1}, + [16766] = {.lex_state = 547, .external_lex_state = 1}, + [16767] = {.lex_state = 547, .external_lex_state = 1}, + [16768] = {.lex_state = 547, .external_lex_state = 1}, + [16769] = {.lex_state = 547, .external_lex_state = 1}, + [16770] = {.lex_state = 547, .external_lex_state = 1}, + [16771] = {.lex_state = 547, .external_lex_state = 1}, + [16772] = {.lex_state = 547, .external_lex_state = 1}, + [16773] = {.lex_state = 547, .external_lex_state = 1}, + [16774] = {.lex_state = 547, .external_lex_state = 1}, + [16775] = {.lex_state = 547, .external_lex_state = 1}, + [16776] = {.lex_state = 547, .external_lex_state = 1}, + [16777] = {.lex_state = 547, .external_lex_state = 1}, + [16778] = {.lex_state = 547, .external_lex_state = 1}, + [16779] = {.lex_state = 547, .external_lex_state = 1}, + [16780] = {.lex_state = 547, .external_lex_state = 1}, + [16781] = {.lex_state = 233, .external_lex_state = 1}, + [16782] = {.lex_state = 547, .external_lex_state = 1}, + [16783] = {.lex_state = 547, .external_lex_state = 1}, + [16784] = {.lex_state = 547, .external_lex_state = 1}, + [16785] = {.lex_state = 547, .external_lex_state = 1}, + [16786] = {.lex_state = 547, .external_lex_state = 1}, + [16787] = {.lex_state = 547, .external_lex_state = 1}, + [16788] = {.lex_state = 547, .external_lex_state = 1}, + [16789] = {.lex_state = 547, .external_lex_state = 1}, + [16790] = {.lex_state = 547, .external_lex_state = 1}, + [16791] = {.lex_state = 547, .external_lex_state = 1}, + [16792] = {.lex_state = 547, .external_lex_state = 1}, + [16793] = {.lex_state = 547, .external_lex_state = 1}, + [16794] = {.lex_state = 233, .external_lex_state = 1}, + [16795] = {.lex_state = 547, .external_lex_state = 1}, + [16796] = {.lex_state = 547, .external_lex_state = 1}, + [16797] = {.lex_state = 547, .external_lex_state = 1}, + [16798] = {.lex_state = 547, .external_lex_state = 1}, + [16799] = {.lex_state = 547, .external_lex_state = 1}, + [16800] = {.lex_state = 233, .external_lex_state = 1}, + [16801] = {.lex_state = 547, .external_lex_state = 1}, + [16802] = {.lex_state = 233, .external_lex_state = 1}, + [16803] = {.lex_state = 233, .external_lex_state = 1}, + [16804] = {.lex_state = 547, .external_lex_state = 1}, + [16805] = {.lex_state = 126, .external_lex_state = 1}, + [16806] = {.lex_state = 547, .external_lex_state = 1}, + [16807] = {.lex_state = 547, .external_lex_state = 1}, + [16808] = {.lex_state = 547, .external_lex_state = 1}, + [16809] = {.lex_state = 547, .external_lex_state = 1}, + [16810] = {.lex_state = 547, .external_lex_state = 1}, + [16811] = {.lex_state = 547, .external_lex_state = 1}, + [16812] = {.lex_state = 547, .external_lex_state = 1}, + [16813] = {.lex_state = 547, .external_lex_state = 1}, + [16814] = {.lex_state = 547, .external_lex_state = 1}, + [16815] = {.lex_state = 547, .external_lex_state = 1}, + [16816] = {.lex_state = 547, .external_lex_state = 1}, + [16817] = {.lex_state = 547, .external_lex_state = 1}, + [16818] = {.lex_state = 547, .external_lex_state = 1}, + [16819] = {.lex_state = 547, .external_lex_state = 1}, + [16820] = {.lex_state = 547, .external_lex_state = 1}, + [16821] = {.lex_state = 547, .external_lex_state = 1}, + [16822] = {.lex_state = 547, .external_lex_state = 1}, + [16823] = {.lex_state = 547, .external_lex_state = 1}, + [16824] = {.lex_state = 547, .external_lex_state = 1}, + [16825] = {.lex_state = 547, .external_lex_state = 1}, + [16826] = {.lex_state = 547, .external_lex_state = 1}, + [16827] = {.lex_state = 547, .external_lex_state = 1}, + [16828] = {.lex_state = 547, .external_lex_state = 1}, + [16829] = {.lex_state = 547, .external_lex_state = 1}, + [16830] = {.lex_state = 547, .external_lex_state = 1}, + [16831] = {.lex_state = 547, .external_lex_state = 1}, + [16832] = {.lex_state = 547, .external_lex_state = 1}, + [16833] = {.lex_state = 547, .external_lex_state = 1}, + [16834] = {.lex_state = 547, .external_lex_state = 1}, + [16835] = {.lex_state = 547, .external_lex_state = 1}, + [16836] = {.lex_state = 547, .external_lex_state = 1}, + [16837] = {.lex_state = 547, .external_lex_state = 1}, + [16838] = {.lex_state = 547, .external_lex_state = 1}, + [16839] = {.lex_state = 547, .external_lex_state = 1}, + [16840] = {.lex_state = 125, .external_lex_state = 1}, + [16841] = {.lex_state = 339, .external_lex_state = 1}, + [16842] = {.lex_state = 125, .external_lex_state = 1}, + [16843] = {.lex_state = 547, .external_lex_state = 1}, + [16844] = {.lex_state = 547, .external_lex_state = 1}, + [16845] = {.lex_state = 547, .external_lex_state = 1}, + [16846] = {.lex_state = 547, .external_lex_state = 1}, + [16847] = {.lex_state = 547, .external_lex_state = 1}, + [16848] = {.lex_state = 547, .external_lex_state = 1}, + [16849] = {.lex_state = 547, .external_lex_state = 1}, + [16850] = {.lex_state = 547, .external_lex_state = 1}, + [16851] = {.lex_state = 547, .external_lex_state = 1}, + [16852] = {.lex_state = 547, .external_lex_state = 1}, + [16853] = {.lex_state = 233, .external_lex_state = 1}, + [16854] = {.lex_state = 547, .external_lex_state = 1}, + [16855] = {.lex_state = 547, .external_lex_state = 1}, + [16856] = {.lex_state = 547, .external_lex_state = 1}, + [16857] = {.lex_state = 547, .external_lex_state = 1}, + [16858] = {.lex_state = 547, .external_lex_state = 1}, + [16859] = {.lex_state = 547, .external_lex_state = 1}, + [16860] = {.lex_state = 547, .external_lex_state = 1}, + [16861] = {.lex_state = 547, .external_lex_state = 1}, + [16862] = {.lex_state = 547, .external_lex_state = 1}, + [16863] = {.lex_state = 547, .external_lex_state = 1}, + [16864] = {.lex_state = 547, .external_lex_state = 1}, + [16865] = {.lex_state = 547, .external_lex_state = 1}, + [16866] = {.lex_state = 547, .external_lex_state = 1}, + [16867] = {.lex_state = 547, .external_lex_state = 1}, + [16868] = {.lex_state = 547, .external_lex_state = 1}, + [16869] = {.lex_state = 138, .external_lex_state = 1}, + [16870] = {.lex_state = 547, .external_lex_state = 1}, + [16871] = {.lex_state = 547, .external_lex_state = 1}, + [16872] = {.lex_state = 547, .external_lex_state = 1}, + [16873] = {.lex_state = 547, .external_lex_state = 1}, + [16874] = {.lex_state = 547, .external_lex_state = 1}, + [16875] = {.lex_state = 547, .external_lex_state = 1}, + [16876] = {.lex_state = 547, .external_lex_state = 1}, + [16877] = {.lex_state = 547, .external_lex_state = 1}, + [16878] = {.lex_state = 547, .external_lex_state = 1}, + [16879] = {.lex_state = 547, .external_lex_state = 1}, + [16880] = {.lex_state = 547, .external_lex_state = 1}, + [16881] = {.lex_state = 547, .external_lex_state = 1}, + [16882] = {.lex_state = 547, .external_lex_state = 1}, + [16883] = {.lex_state = 547, .external_lex_state = 1}, + [16884] = {.lex_state = 547, .external_lex_state = 1}, + [16885] = {.lex_state = 547, .external_lex_state = 1}, + [16886] = {.lex_state = 547, .external_lex_state = 1}, + [16887] = {.lex_state = 547, .external_lex_state = 1}, + [16888] = {.lex_state = 547, .external_lex_state = 1}, + [16889] = {.lex_state = 547, .external_lex_state = 1}, + [16890] = {.lex_state = 547, .external_lex_state = 1}, + [16891] = {.lex_state = 547, .external_lex_state = 1}, + [16892] = {.lex_state = 547, .external_lex_state = 1}, + [16893] = {.lex_state = 547, .external_lex_state = 1}, + [16894] = {.lex_state = 547, .external_lex_state = 1}, + [16895] = {.lex_state = 547, .external_lex_state = 1}, + [16896] = {.lex_state = 547, .external_lex_state = 1}, + [16897] = {.lex_state = 547, .external_lex_state = 1}, + [16898] = {.lex_state = 547, .external_lex_state = 1}, + [16899] = {.lex_state = 547, .external_lex_state = 1}, + [16900] = {.lex_state = 547, .external_lex_state = 1}, + [16901] = {.lex_state = 547, .external_lex_state = 1}, + [16902] = {.lex_state = 547, .external_lex_state = 1}, + [16903] = {.lex_state = 547, .external_lex_state = 1}, + [16904] = {.lex_state = 547, .external_lex_state = 1}, + [16905] = {.lex_state = 547, .external_lex_state = 1}, + [16906] = {.lex_state = 547, .external_lex_state = 1}, + [16907] = {.lex_state = 547, .external_lex_state = 1}, + [16908] = {.lex_state = 547, .external_lex_state = 1}, + [16909] = {.lex_state = 547, .external_lex_state = 1}, + [16910] = {.lex_state = 547, .external_lex_state = 1}, + [16911] = {.lex_state = 547, .external_lex_state = 1}, + [16912] = {.lex_state = 547, .external_lex_state = 1}, + [16913] = {.lex_state = 547, .external_lex_state = 1}, + [16914] = {.lex_state = 547, .external_lex_state = 1}, + [16915] = {.lex_state = 547, .external_lex_state = 1}, + [16916] = {.lex_state = 547, .external_lex_state = 1}, + [16917] = {.lex_state = 547, .external_lex_state = 1}, + [16918] = {.lex_state = 547, .external_lex_state = 1}, + [16919] = {.lex_state = 547, .external_lex_state = 1}, + [16920] = {.lex_state = 547, .external_lex_state = 1}, + [16921] = {.lex_state = 547, .external_lex_state = 1}, + [16922] = {.lex_state = 547, .external_lex_state = 1}, + [16923] = {.lex_state = 547, .external_lex_state = 1}, + [16924] = {.lex_state = 547, .external_lex_state = 1}, + [16925] = {.lex_state = 547, .external_lex_state = 1}, + [16926] = {.lex_state = 547, .external_lex_state = 1}, + [16927] = {.lex_state = 547, .external_lex_state = 1}, + [16928] = {.lex_state = 547, .external_lex_state = 1}, + [16929] = {.lex_state = 547, .external_lex_state = 1}, + [16930] = {.lex_state = 547, .external_lex_state = 1}, + [16931] = {.lex_state = 547, .external_lex_state = 1}, + [16932] = {.lex_state = 547, .external_lex_state = 1}, + [16933] = {.lex_state = 547, .external_lex_state = 1}, + [16934] = {.lex_state = 547, .external_lex_state = 1}, + [16935] = {.lex_state = 547, .external_lex_state = 1}, + [16936] = {.lex_state = 547, .external_lex_state = 1}, + [16937] = {.lex_state = 547, .external_lex_state = 1}, + [16938] = {.lex_state = 547, .external_lex_state = 1}, + [16939] = {.lex_state = 547, .external_lex_state = 1}, + [16940] = {.lex_state = 547, .external_lex_state = 1}, + [16941] = {.lex_state = 547, .external_lex_state = 1}, + [16942] = {.lex_state = 547, .external_lex_state = 1}, + [16943] = {.lex_state = 547, .external_lex_state = 1}, + [16944] = {.lex_state = 547, .external_lex_state = 1}, + [16945] = {.lex_state = 547, .external_lex_state = 1}, + [16946] = {.lex_state = 547, .external_lex_state = 1}, + [16947] = {.lex_state = 547, .external_lex_state = 1}, + [16948] = {.lex_state = 547, .external_lex_state = 1}, + [16949] = {.lex_state = 547, .external_lex_state = 1}, + [16950] = {.lex_state = 547, .external_lex_state = 1}, + [16951] = {.lex_state = 547, .external_lex_state = 1}, + [16952] = {.lex_state = 547, .external_lex_state = 1}, + [16953] = {.lex_state = 547, .external_lex_state = 1}, + [16954] = {.lex_state = 547, .external_lex_state = 1}, + [16955] = {.lex_state = 547, .external_lex_state = 1}, + [16956] = {.lex_state = 547, .external_lex_state = 1}, + [16957] = {.lex_state = 547, .external_lex_state = 1}, + [16958] = {.lex_state = 547, .external_lex_state = 1}, + [16959] = {.lex_state = 547, .external_lex_state = 1}, + [16960] = {.lex_state = 547, .external_lex_state = 1}, + [16961] = {.lex_state = 547, .external_lex_state = 1}, + [16962] = {.lex_state = 547, .external_lex_state = 1}, + [16963] = {.lex_state = 547, .external_lex_state = 1}, + [16964] = {.lex_state = 547, .external_lex_state = 1}, + [16965] = {.lex_state = 547, .external_lex_state = 1}, + [16966] = {.lex_state = 547, .external_lex_state = 1}, + [16967] = {.lex_state = 195, .external_lex_state = 1}, + [16968] = {.lex_state = 547, .external_lex_state = 1}, + [16969] = {.lex_state = 547, .external_lex_state = 1}, + [16970] = {.lex_state = 547, .external_lex_state = 1}, + [16971] = {.lex_state = 547, .external_lex_state = 1}, + [16972] = {.lex_state = 547, .external_lex_state = 1}, + [16973] = {.lex_state = 547, .external_lex_state = 1}, + [16974] = {.lex_state = 547, .external_lex_state = 1}, + [16975] = {.lex_state = 547, .external_lex_state = 1}, + [16976] = {.lex_state = 547, .external_lex_state = 1}, + [16977] = {.lex_state = 195, .external_lex_state = 1}, + [16978] = {.lex_state = 195, .external_lex_state = 1}, + [16979] = {.lex_state = 547, .external_lex_state = 1}, + [16980] = {.lex_state = 547, .external_lex_state = 1}, + [16981] = {.lex_state = 547, .external_lex_state = 1}, + [16982] = {.lex_state = 547, .external_lex_state = 1}, + [16983] = {.lex_state = 195, .external_lex_state = 1}, + [16984] = {.lex_state = 547, .external_lex_state = 1}, + [16985] = {.lex_state = 547, .external_lex_state = 1}, + [16986] = {.lex_state = 547, .external_lex_state = 1}, + [16987] = {.lex_state = 547, .external_lex_state = 1}, + [16988] = {.lex_state = 547, .external_lex_state = 1}, + [16989] = {.lex_state = 547, .external_lex_state = 1}, + [16990] = {.lex_state = 547, .external_lex_state = 1}, + [16991] = {.lex_state = 547, .external_lex_state = 1}, + [16992] = {.lex_state = 547, .external_lex_state = 1}, + [16993] = {.lex_state = 547, .external_lex_state = 1}, + [16994] = {.lex_state = 547, .external_lex_state = 1}, + [16995] = {.lex_state = 547, .external_lex_state = 1}, + [16996] = {.lex_state = 547, .external_lex_state = 1}, + [16997] = {.lex_state = 547, .external_lex_state = 1}, + [16998] = {.lex_state = 547, .external_lex_state = 1}, + [16999] = {.lex_state = 547, .external_lex_state = 1}, + [17000] = {.lex_state = 547, .external_lex_state = 1}, + [17001] = {.lex_state = 547, .external_lex_state = 1}, + [17002] = {.lex_state = 547, .external_lex_state = 1}, + [17003] = {.lex_state = 547, .external_lex_state = 1}, + [17004] = {.lex_state = 547, .external_lex_state = 1}, + [17005] = {.lex_state = 547, .external_lex_state = 1}, + [17006] = {.lex_state = 547, .external_lex_state = 1}, + [17007] = {.lex_state = 547, .external_lex_state = 1}, + [17008] = {.lex_state = 547, .external_lex_state = 1}, + [17009] = {.lex_state = 547, .external_lex_state = 1}, + [17010] = {.lex_state = 547, .external_lex_state = 1}, + [17011] = {.lex_state = 547, .external_lex_state = 1}, + [17012] = {.lex_state = 547, .external_lex_state = 1}, + [17013] = {.lex_state = 547, .external_lex_state = 1}, + [17014] = {.lex_state = 547, .external_lex_state = 1}, + [17015] = {.lex_state = 547, .external_lex_state = 1}, + [17016] = {.lex_state = 547, .external_lex_state = 1}, + [17017] = {.lex_state = 547, .external_lex_state = 1}, + [17018] = {.lex_state = 547, .external_lex_state = 1}, + [17019] = {.lex_state = 547, .external_lex_state = 1}, + [17020] = {.lex_state = 547, .external_lex_state = 1}, + [17021] = {.lex_state = 547, .external_lex_state = 1}, + [17022] = {.lex_state = 547, .external_lex_state = 1}, + [17023] = {.lex_state = 547, .external_lex_state = 1}, + [17024] = {.lex_state = 547, .external_lex_state = 1}, + [17025] = {.lex_state = 547, .external_lex_state = 1}, + [17026] = {.lex_state = 547, .external_lex_state = 1}, + [17027] = {.lex_state = 547, .external_lex_state = 1}, + [17028] = {.lex_state = 547, .external_lex_state = 1}, + [17029] = {.lex_state = 547, .external_lex_state = 1}, + [17030] = {.lex_state = 547, .external_lex_state = 1}, + [17031] = {.lex_state = 547, .external_lex_state = 1}, + [17032] = {.lex_state = 547, .external_lex_state = 1}, + [17033] = {.lex_state = 547, .external_lex_state = 1}, + [17034] = {.lex_state = 547, .external_lex_state = 1}, + [17035] = {.lex_state = 547, .external_lex_state = 1}, + [17036] = {.lex_state = 125, .external_lex_state = 1}, + [17037] = {.lex_state = 547, .external_lex_state = 1}, + [17038] = {.lex_state = 547, .external_lex_state = 1}, + [17039] = {.lex_state = 547, .external_lex_state = 1}, + [17040] = {.lex_state = 547, .external_lex_state = 1}, + [17041] = {.lex_state = 547, .external_lex_state = 1}, + [17042] = {.lex_state = 547, .external_lex_state = 1}, + [17043] = {.lex_state = 547, .external_lex_state = 1}, + [17044] = {.lex_state = 547, .external_lex_state = 1}, + [17045] = {.lex_state = 547, .external_lex_state = 1}, + [17046] = {.lex_state = 547, .external_lex_state = 1}, + [17047] = {.lex_state = 547, .external_lex_state = 1}, + [17048] = {.lex_state = 547, .external_lex_state = 1}, + [17049] = {.lex_state = 547, .external_lex_state = 1}, + [17050] = {.lex_state = 547, .external_lex_state = 1}, + [17051] = {.lex_state = 547, .external_lex_state = 1}, + [17052] = {.lex_state = 547, .external_lex_state = 1}, + [17053] = {.lex_state = 547, .external_lex_state = 1}, + [17054] = {.lex_state = 547, .external_lex_state = 1}, + [17055] = {.lex_state = 547, .external_lex_state = 1}, + [17056] = {.lex_state = 547, .external_lex_state = 1}, + [17057] = {.lex_state = 547, .external_lex_state = 1}, + [17058] = {.lex_state = 547, .external_lex_state = 1}, + [17059] = {.lex_state = 547, .external_lex_state = 1}, + [17060] = {.lex_state = 547, .external_lex_state = 1}, + [17061] = {.lex_state = 547, .external_lex_state = 1}, + [17062] = {.lex_state = 233, .external_lex_state = 1}, + [17063] = {.lex_state = 547, .external_lex_state = 1}, + [17064] = {.lex_state = 547, .external_lex_state = 1}, + [17065] = {.lex_state = 547, .external_lex_state = 1}, + [17066] = {.lex_state = 547, .external_lex_state = 1}, + [17067] = {.lex_state = 547, .external_lex_state = 1}, + [17068] = {.lex_state = 547, .external_lex_state = 1}, + [17069] = {.lex_state = 547, .external_lex_state = 1}, + [17070] = {.lex_state = 547, .external_lex_state = 1}, + [17071] = {.lex_state = 547, .external_lex_state = 1}, + [17072] = {.lex_state = 195, .external_lex_state = 1}, + [17073] = {.lex_state = 547, .external_lex_state = 1}, + [17074] = {.lex_state = 195, .external_lex_state = 1}, + [17075] = {.lex_state = 195, .external_lex_state = 1}, + [17076] = {.lex_state = 547, .external_lex_state = 1}, + [17077] = {.lex_state = 547, .external_lex_state = 1}, + [17078] = {.lex_state = 547, .external_lex_state = 1}, + [17079] = {.lex_state = 547, .external_lex_state = 1}, + [17080] = {.lex_state = 547, .external_lex_state = 1}, + [17081] = {.lex_state = 547, .external_lex_state = 1}, + [17082] = {.lex_state = 547, .external_lex_state = 1}, + [17083] = {.lex_state = 547, .external_lex_state = 1}, + [17084] = {.lex_state = 547, .external_lex_state = 1}, + [17085] = {.lex_state = 547, .external_lex_state = 1}, + [17086] = {.lex_state = 547, .external_lex_state = 1}, + [17087] = {.lex_state = 547, .external_lex_state = 1}, + [17088] = {.lex_state = 547, .external_lex_state = 1}, + [17089] = {.lex_state = 547, .external_lex_state = 1}, + [17090] = {.lex_state = 233, .external_lex_state = 1}, + [17091] = {.lex_state = 547, .external_lex_state = 1}, + [17092] = {.lex_state = 547, .external_lex_state = 1}, + [17093] = {.lex_state = 547, .external_lex_state = 1}, + [17094] = {.lex_state = 547, .external_lex_state = 1}, + [17095] = {.lex_state = 547, .external_lex_state = 1}, + [17096] = {.lex_state = 547, .external_lex_state = 1}, + [17097] = {.lex_state = 547, .external_lex_state = 1}, + [17098] = {.lex_state = 547, .external_lex_state = 1}, + [17099] = {.lex_state = 547, .external_lex_state = 1}, + [17100] = {.lex_state = 547, .external_lex_state = 1}, + [17101] = {.lex_state = 547, .external_lex_state = 1}, + [17102] = {.lex_state = 547, .external_lex_state = 1}, + [17103] = {.lex_state = 547, .external_lex_state = 1}, + [17104] = {.lex_state = 547, .external_lex_state = 1}, + [17105] = {.lex_state = 547, .external_lex_state = 1}, + [17106] = {.lex_state = 547, .external_lex_state = 1}, + [17107] = {.lex_state = 547, .external_lex_state = 1}, + [17108] = {.lex_state = 547, .external_lex_state = 1}, + [17109] = {.lex_state = 547, .external_lex_state = 1}, + [17110] = {.lex_state = 547, .external_lex_state = 1}, + [17111] = {.lex_state = 547, .external_lex_state = 1}, + [17112] = {.lex_state = 547, .external_lex_state = 1}, + [17113] = {.lex_state = 547, .external_lex_state = 1}, + [17114] = {.lex_state = 547, .external_lex_state = 1}, + [17115] = {.lex_state = 547, .external_lex_state = 1}, + [17116] = {.lex_state = 195, .external_lex_state = 1}, + [17117] = {.lex_state = 195, .external_lex_state = 1}, + [17118] = {.lex_state = 547, .external_lex_state = 1}, + [17119] = {.lex_state = 547, .external_lex_state = 1}, + [17120] = {.lex_state = 547, .external_lex_state = 1}, + [17121] = {.lex_state = 547, .external_lex_state = 1}, + [17122] = {.lex_state = 547, .external_lex_state = 1}, + [17123] = {.lex_state = 547, .external_lex_state = 1}, + [17124] = {.lex_state = 547, .external_lex_state = 1}, + [17125] = {.lex_state = 125, .external_lex_state = 1}, + [17126] = {.lex_state = 547, .external_lex_state = 1}, + [17127] = {.lex_state = 547, .external_lex_state = 1}, + [17128] = {.lex_state = 547, .external_lex_state = 1}, + [17129] = {.lex_state = 547, .external_lex_state = 1}, + [17130] = {.lex_state = 547, .external_lex_state = 1}, + [17131] = {.lex_state = 547, .external_lex_state = 1}, + [17132] = {.lex_state = 547, .external_lex_state = 1}, + [17133] = {.lex_state = 547, .external_lex_state = 1}, + [17134] = {.lex_state = 547, .external_lex_state = 1}, + [17135] = {.lex_state = 547, .external_lex_state = 1}, + [17136] = {.lex_state = 547, .external_lex_state = 1}, + [17137] = {.lex_state = 547, .external_lex_state = 1}, + [17138] = {.lex_state = 547, .external_lex_state = 1}, + [17139] = {.lex_state = 547, .external_lex_state = 1}, + [17140] = {.lex_state = 547, .external_lex_state = 1}, + [17141] = {.lex_state = 547, .external_lex_state = 1}, + [17142] = {.lex_state = 547, .external_lex_state = 1}, + [17143] = {.lex_state = 547, .external_lex_state = 1}, + [17144] = {.lex_state = 547, .external_lex_state = 1}, + [17145] = {.lex_state = 547, .external_lex_state = 1}, + [17146] = {.lex_state = 195, .external_lex_state = 1}, + [17147] = {.lex_state = 547, .external_lex_state = 1}, + [17148] = {.lex_state = 547, .external_lex_state = 1}, + [17149] = {.lex_state = 547, .external_lex_state = 1}, + [17150] = {.lex_state = 547, .external_lex_state = 1}, + [17151] = {.lex_state = 547, .external_lex_state = 1}, + [17152] = {.lex_state = 547, .external_lex_state = 1}, + [17153] = {.lex_state = 547, .external_lex_state = 1}, + [17154] = {.lex_state = 195, .external_lex_state = 1}, + [17155] = {.lex_state = 195, .external_lex_state = 1}, + [17156] = {.lex_state = 547, .external_lex_state = 1}, + [17157] = {.lex_state = 547, .external_lex_state = 1}, + [17158] = {.lex_state = 547, .external_lex_state = 1}, + [17159] = {.lex_state = 195, .external_lex_state = 1}, + [17160] = {.lex_state = 233, .external_lex_state = 1}, + [17161] = {.lex_state = 195, .external_lex_state = 1}, + [17162] = {.lex_state = 547, .external_lex_state = 1}, + [17163] = {.lex_state = 547, .external_lex_state = 1}, + [17164] = {.lex_state = 547, .external_lex_state = 1}, + [17165] = {.lex_state = 547, .external_lex_state = 1}, + [17166] = {.lex_state = 547, .external_lex_state = 1}, + [17167] = {.lex_state = 547, .external_lex_state = 1}, + [17168] = {.lex_state = 547, .external_lex_state = 1}, + [17169] = {.lex_state = 547, .external_lex_state = 1}, + [17170] = {.lex_state = 547, .external_lex_state = 1}, + [17171] = {.lex_state = 547, .external_lex_state = 1}, + [17172] = {.lex_state = 547, .external_lex_state = 1}, + [17173] = {.lex_state = 547, .external_lex_state = 1}, + [17174] = {.lex_state = 547, .external_lex_state = 1}, + [17175] = {.lex_state = 195, .external_lex_state = 1}, + [17176] = {.lex_state = 547, .external_lex_state = 1}, + [17177] = {.lex_state = 547, .external_lex_state = 1}, + [17178] = {.lex_state = 125, .external_lex_state = 1}, + [17179] = {.lex_state = 547, .external_lex_state = 1}, + [17180] = {.lex_state = 547, .external_lex_state = 1}, + [17181] = {.lex_state = 547, .external_lex_state = 1}, + [17182] = {.lex_state = 547, .external_lex_state = 1}, + [17183] = {.lex_state = 547, .external_lex_state = 1}, + [17184] = {.lex_state = 547, .external_lex_state = 1}, + [17185] = {.lex_state = 547, .external_lex_state = 1}, + [17186] = {.lex_state = 547, .external_lex_state = 1}, + [17187] = {.lex_state = 547, .external_lex_state = 1}, + [17188] = {.lex_state = 547, .external_lex_state = 1}, + [17189] = {.lex_state = 547, .external_lex_state = 1}, + [17190] = {.lex_state = 547, .external_lex_state = 1}, + [17191] = {.lex_state = 547, .external_lex_state = 1}, + [17192] = {.lex_state = 547, .external_lex_state = 1}, + [17193] = {.lex_state = 547, .external_lex_state = 1}, + [17194] = {.lex_state = 547, .external_lex_state = 1}, + [17195] = {.lex_state = 339, .external_lex_state = 1}, + [17196] = {.lex_state = 547, .external_lex_state = 1}, + [17197] = {.lex_state = 547, .external_lex_state = 1}, + [17198] = {.lex_state = 547, .external_lex_state = 1}, + [17199] = {.lex_state = 547, .external_lex_state = 1}, + [17200] = {.lex_state = 547, .external_lex_state = 1}, + [17201] = {.lex_state = 154, .external_lex_state = 1}, + [17202] = {.lex_state = 547, .external_lex_state = 1}, + [17203] = {.lex_state = 547, .external_lex_state = 1}, + [17204] = {.lex_state = 547, .external_lex_state = 1}, + [17205] = {.lex_state = 547, .external_lex_state = 1}, + [17206] = {.lex_state = 547, .external_lex_state = 1}, + [17207] = {.lex_state = 547, .external_lex_state = 1}, + [17208] = {.lex_state = 339, .external_lex_state = 1}, + [17209] = {.lex_state = 547, .external_lex_state = 1}, + [17210] = {.lex_state = 547, .external_lex_state = 1}, + [17211] = {.lex_state = 547, .external_lex_state = 1}, + [17212] = {.lex_state = 547, .external_lex_state = 1}, + [17213] = {.lex_state = 547, .external_lex_state = 1}, + [17214] = {.lex_state = 547, .external_lex_state = 1}, + [17215] = {.lex_state = 547, .external_lex_state = 1}, + [17216] = {.lex_state = 547, .external_lex_state = 1}, + [17217] = {.lex_state = 547, .external_lex_state = 1}, + [17218] = {.lex_state = 339, .external_lex_state = 1}, + [17219] = {.lex_state = 547, .external_lex_state = 1}, + [17220] = {.lex_state = 547, .external_lex_state = 1}, + [17221] = {.lex_state = 547, .external_lex_state = 1}, + [17222] = {.lex_state = 547, .external_lex_state = 1}, + [17223] = {.lex_state = 196, .external_lex_state = 1}, + [17224] = {.lex_state = 196, .external_lex_state = 1}, + [17225] = {.lex_state = 546, .external_lex_state = 1}, + [17226] = {.lex_state = 196, .external_lex_state = 1}, + [17227] = {.lex_state = 547, .external_lex_state = 1}, + [17228] = {.lex_state = 196, .external_lex_state = 1}, + [17229] = {.lex_state = 547, .external_lex_state = 1}, + [17230] = {.lex_state = 547, .external_lex_state = 1}, + [17231] = {.lex_state = 547, .external_lex_state = 1}, + [17232] = {.lex_state = 547, .external_lex_state = 1}, + [17233] = {.lex_state = 547, .external_lex_state = 1}, + [17234] = {.lex_state = 339, .external_lex_state = 1}, + [17235] = {.lex_state = 546, .external_lex_state = 1}, + [17236] = {.lex_state = 547, .external_lex_state = 1}, + [17237] = {.lex_state = 547, .external_lex_state = 1}, + [17238] = {.lex_state = 547, .external_lex_state = 1}, + [17239] = {.lex_state = 547, .external_lex_state = 1}, + [17240] = {.lex_state = 547, .external_lex_state = 1}, + [17241] = {.lex_state = 547, .external_lex_state = 1}, + [17242] = {.lex_state = 547, .external_lex_state = 1}, + [17243] = {.lex_state = 547, .external_lex_state = 1}, + [17244] = {.lex_state = 547, .external_lex_state = 1}, + [17245] = {.lex_state = 547, .external_lex_state = 1}, + [17246] = {.lex_state = 547, .external_lex_state = 1}, + [17247] = {.lex_state = 547, .external_lex_state = 1}, + [17248] = {.lex_state = 547, .external_lex_state = 1}, + [17249] = {.lex_state = 547, .external_lex_state = 1}, + [17250] = {.lex_state = 547, .external_lex_state = 1}, + [17251] = {.lex_state = 547, .external_lex_state = 1}, + [17252] = {.lex_state = 547, .external_lex_state = 1}, + [17253] = {.lex_state = 547, .external_lex_state = 1}, + [17254] = {.lex_state = 547, .external_lex_state = 1}, + [17255] = {.lex_state = 547, .external_lex_state = 1}, + [17256] = {.lex_state = 547, .external_lex_state = 1}, + [17257] = {.lex_state = 547, .external_lex_state = 1}, + [17258] = {.lex_state = 547, .external_lex_state = 1}, + [17259] = {.lex_state = 547, .external_lex_state = 1}, + [17260] = {.lex_state = 547, .external_lex_state = 1}, + [17261] = {.lex_state = 196, .external_lex_state = 1}, + [17262] = {.lex_state = 196, .external_lex_state = 1}, + [17263] = {.lex_state = 547, .external_lex_state = 1}, + [17264] = {.lex_state = 547, .external_lex_state = 1}, + [17265] = {.lex_state = 547, .external_lex_state = 1}, + [17266] = {.lex_state = 547, .external_lex_state = 1}, + [17267] = {.lex_state = 547, .external_lex_state = 1}, + [17268] = {.lex_state = 547, .external_lex_state = 1}, + [17269] = {.lex_state = 547, .external_lex_state = 1}, + [17270] = {.lex_state = 547, .external_lex_state = 1}, + [17271] = {.lex_state = 547, .external_lex_state = 1}, + [17272] = {.lex_state = 547, .external_lex_state = 1}, + [17273] = {.lex_state = 547, .external_lex_state = 1}, + [17274] = {.lex_state = 196, .external_lex_state = 1}, + [17275] = {.lex_state = 547, .external_lex_state = 1}, + [17276] = {.lex_state = 547, .external_lex_state = 1}, + [17277] = {.lex_state = 547, .external_lex_state = 1}, + [17278] = {.lex_state = 547, .external_lex_state = 1}, + [17279] = {.lex_state = 547, .external_lex_state = 1}, + [17280] = {.lex_state = 547, .external_lex_state = 1}, + [17281] = {.lex_state = 547, .external_lex_state = 1}, + [17282] = {.lex_state = 547, .external_lex_state = 1}, + [17283] = {.lex_state = 547, .external_lex_state = 1}, + [17284] = {.lex_state = 547, .external_lex_state = 1}, + [17285] = {.lex_state = 547, .external_lex_state = 1}, + [17286] = {.lex_state = 547, .external_lex_state = 1}, + [17287] = {.lex_state = 547, .external_lex_state = 1}, + [17288] = {.lex_state = 547, .external_lex_state = 1}, + [17289] = {.lex_state = 547, .external_lex_state = 1}, + [17290] = {.lex_state = 547, .external_lex_state = 1}, + [17291] = {.lex_state = 547, .external_lex_state = 1}, + [17292] = {.lex_state = 547, .external_lex_state = 1}, + [17293] = {.lex_state = 547, .external_lex_state = 1}, + [17294] = {.lex_state = 547, .external_lex_state = 1}, + [17295] = {.lex_state = 547, .external_lex_state = 1}, + [17296] = {.lex_state = 196, .external_lex_state = 1}, + [17297] = {.lex_state = 196, .external_lex_state = 1}, + [17298] = {.lex_state = 547, .external_lex_state = 1}, + [17299] = {.lex_state = 547, .external_lex_state = 1}, + [17300] = {.lex_state = 547, .external_lex_state = 1}, + [17301] = {.lex_state = 547, .external_lex_state = 1}, + [17302] = {.lex_state = 547, .external_lex_state = 1}, + [17303] = {.lex_state = 547, .external_lex_state = 1}, + [17304] = {.lex_state = 547, .external_lex_state = 1}, + [17305] = {.lex_state = 547, .external_lex_state = 1}, + [17306] = {.lex_state = 547, .external_lex_state = 1}, + [17307] = {.lex_state = 547, .external_lex_state = 1}, + [17308] = {.lex_state = 547, .external_lex_state = 1}, + [17309] = {.lex_state = 547, .external_lex_state = 1}, + [17310] = {.lex_state = 547, .external_lex_state = 1}, + [17311] = {.lex_state = 547, .external_lex_state = 1}, + [17312] = {.lex_state = 546, .external_lex_state = 1}, + [17313] = {.lex_state = 546, .external_lex_state = 1}, + [17314] = {.lex_state = 547, .external_lex_state = 1}, + [17315] = {.lex_state = 547, .external_lex_state = 1}, + [17316] = {.lex_state = 547, .external_lex_state = 1}, + [17317] = {.lex_state = 547, .external_lex_state = 1}, + [17318] = {.lex_state = 547, .external_lex_state = 1}, + [17319] = {.lex_state = 547, .external_lex_state = 1}, + [17320] = {.lex_state = 547, .external_lex_state = 1}, + [17321] = {.lex_state = 546, .external_lex_state = 1}, + [17322] = {.lex_state = 546, .external_lex_state = 1}, + [17323] = {.lex_state = 547, .external_lex_state = 1}, + [17324] = {.lex_state = 547, .external_lex_state = 1}, + [17325] = {.lex_state = 547, .external_lex_state = 1}, + [17326] = {.lex_state = 547, .external_lex_state = 1}, + [17327] = {.lex_state = 547, .external_lex_state = 1}, + [17328] = {.lex_state = 196, .external_lex_state = 1}, + [17329] = {.lex_state = 547, .external_lex_state = 1}, + [17330] = {.lex_state = 547, .external_lex_state = 1}, + [17331] = {.lex_state = 547, .external_lex_state = 1}, + [17332] = {.lex_state = 547, .external_lex_state = 1}, + [17333] = {.lex_state = 547, .external_lex_state = 1}, + [17334] = {.lex_state = 547, .external_lex_state = 1}, + [17335] = {.lex_state = 547, .external_lex_state = 1}, + [17336] = {.lex_state = 547, .external_lex_state = 1}, + [17337] = {.lex_state = 547, .external_lex_state = 1}, + [17338] = {.lex_state = 547, .external_lex_state = 1}, + [17339] = {.lex_state = 547, .external_lex_state = 1}, + [17340] = {.lex_state = 547, .external_lex_state = 1}, + [17341] = {.lex_state = 547, .external_lex_state = 1}, + [17342] = {.lex_state = 547, .external_lex_state = 1}, + [17343] = {.lex_state = 547, .external_lex_state = 1}, + [17344] = {.lex_state = 547, .external_lex_state = 1}, + [17345] = {.lex_state = 547, .external_lex_state = 1}, + [17346] = {.lex_state = 547, .external_lex_state = 1}, + [17347] = {.lex_state = 547, .external_lex_state = 1}, + [17348] = {.lex_state = 547, .external_lex_state = 1}, + [17349] = {.lex_state = 547, .external_lex_state = 1}, + [17350] = {.lex_state = 547, .external_lex_state = 1}, + [17351] = {.lex_state = 547, .external_lex_state = 1}, + [17352] = {.lex_state = 547, .external_lex_state = 1}, + [17353] = {.lex_state = 196, .external_lex_state = 1}, + [17354] = {.lex_state = 547, .external_lex_state = 1}, + [17355] = {.lex_state = 547, .external_lex_state = 1}, + [17356] = {.lex_state = 547, .external_lex_state = 1}, + [17357] = {.lex_state = 547, .external_lex_state = 1}, + [17358] = {.lex_state = 547, .external_lex_state = 1}, + [17359] = {.lex_state = 547, .external_lex_state = 1}, + [17360] = {.lex_state = 547, .external_lex_state = 1}, + [17361] = {.lex_state = 547, .external_lex_state = 1}, + [17362] = {.lex_state = 547, .external_lex_state = 1}, + [17363] = {.lex_state = 547, .external_lex_state = 1}, + [17364] = {.lex_state = 196, .external_lex_state = 1}, + [17365] = {.lex_state = 547, .external_lex_state = 1}, + [17366] = {.lex_state = 547, .external_lex_state = 1}, + [17367] = {.lex_state = 196, .external_lex_state = 1}, + [17368] = {.lex_state = 547, .external_lex_state = 1}, + [17369] = {.lex_state = 547, .external_lex_state = 1}, + [17370] = {.lex_state = 196, .external_lex_state = 1}, + [17371] = {.lex_state = 547, .external_lex_state = 1}, + [17372] = {.lex_state = 547, .external_lex_state = 1}, + [17373] = {.lex_state = 547, .external_lex_state = 1}, + [17374] = {.lex_state = 547, .external_lex_state = 1}, + [17375] = {.lex_state = 547, .external_lex_state = 1}, + [17376] = {.lex_state = 547, .external_lex_state = 1}, + [17377] = {.lex_state = 547, .external_lex_state = 1}, + [17378] = {.lex_state = 547, .external_lex_state = 1}, + [17379] = {.lex_state = 547, .external_lex_state = 1}, + [17380] = {.lex_state = 547, .external_lex_state = 1}, + [17381] = {.lex_state = 547, .external_lex_state = 1}, + [17382] = {.lex_state = 547, .external_lex_state = 1}, + [17383] = {.lex_state = 547, .external_lex_state = 1}, + [17384] = {.lex_state = 547, .external_lex_state = 1}, + [17385] = {.lex_state = 547, .external_lex_state = 1}, + [17386] = {.lex_state = 547, .external_lex_state = 1}, + [17387] = {.lex_state = 547, .external_lex_state = 1}, + [17388] = {.lex_state = 547, .external_lex_state = 1}, + [17389] = {.lex_state = 547, .external_lex_state = 1}, + [17390] = {.lex_state = 547, .external_lex_state = 1}, + [17391] = {.lex_state = 547, .external_lex_state = 1}, + [17392] = {.lex_state = 547, .external_lex_state = 1}, + [17393] = {.lex_state = 547, .external_lex_state = 1}, + [17394] = {.lex_state = 547, .external_lex_state = 1}, + [17395] = {.lex_state = 547, .external_lex_state = 1}, + [17396] = {.lex_state = 547, .external_lex_state = 1}, + [17397] = {.lex_state = 547, .external_lex_state = 1}, + [17398] = {.lex_state = 547, .external_lex_state = 1}, + [17399] = {.lex_state = 547, .external_lex_state = 1}, + [17400] = {.lex_state = 547, .external_lex_state = 1}, + [17401] = {.lex_state = 547, .external_lex_state = 1}, + [17402] = {.lex_state = 547, .external_lex_state = 1}, + [17403] = {.lex_state = 547, .external_lex_state = 1}, + [17404] = {.lex_state = 547, .external_lex_state = 1}, + [17405] = {.lex_state = 547, .external_lex_state = 1}, + [17406] = {.lex_state = 547, .external_lex_state = 1}, + [17407] = {.lex_state = 547, .external_lex_state = 1}, + [17408] = {.lex_state = 196, .external_lex_state = 1}, + [17409] = {.lex_state = 547, .external_lex_state = 1}, + [17410] = {.lex_state = 547, .external_lex_state = 1}, + [17411] = {.lex_state = 547, .external_lex_state = 1}, + [17412] = {.lex_state = 547, .external_lex_state = 1}, + [17413] = {.lex_state = 547, .external_lex_state = 1}, + [17414] = {.lex_state = 547, .external_lex_state = 1}, + [17415] = {.lex_state = 547, .external_lex_state = 1}, + [17416] = {.lex_state = 547, .external_lex_state = 1}, + [17417] = {.lex_state = 547, .external_lex_state = 1}, + [17418] = {.lex_state = 547, .external_lex_state = 1}, + [17419] = {.lex_state = 547, .external_lex_state = 1}, + [17420] = {.lex_state = 547, .external_lex_state = 1}, + [17421] = {.lex_state = 547, .external_lex_state = 1}, + [17422] = {.lex_state = 158, .external_lex_state = 1}, + [17423] = {.lex_state = 547, .external_lex_state = 1}, + [17424] = {.lex_state = 547, .external_lex_state = 1}, + [17425] = {.lex_state = 547, .external_lex_state = 1}, + [17426] = {.lex_state = 547, .external_lex_state = 1}, + [17427] = {.lex_state = 547, .external_lex_state = 1}, + [17428] = {.lex_state = 547, .external_lex_state = 1}, + [17429] = {.lex_state = 547, .external_lex_state = 1}, + [17430] = {.lex_state = 547, .external_lex_state = 1}, + [17431] = {.lex_state = 547, .external_lex_state = 1}, + [17432] = {.lex_state = 547, .external_lex_state = 1}, + [17433] = {.lex_state = 547, .external_lex_state = 1}, + [17434] = {.lex_state = 547, .external_lex_state = 1}, + [17435] = {.lex_state = 547, .external_lex_state = 1}, + [17436] = {.lex_state = 547, .external_lex_state = 1}, + [17437] = {.lex_state = 547, .external_lex_state = 1}, + [17438] = {.lex_state = 547, .external_lex_state = 1}, + [17439] = {.lex_state = 547, .external_lex_state = 1}, + [17440] = {.lex_state = 547, .external_lex_state = 1}, + [17441] = {.lex_state = 547, .external_lex_state = 1}, + [17442] = {.lex_state = 547, .external_lex_state = 1}, + [17443] = {.lex_state = 547, .external_lex_state = 1}, + [17444] = {.lex_state = 547, .external_lex_state = 1}, + [17445] = {.lex_state = 547, .external_lex_state = 1}, + [17446] = {.lex_state = 547, .external_lex_state = 1}, + [17447] = {.lex_state = 547, .external_lex_state = 1}, + [17448] = {.lex_state = 547, .external_lex_state = 1}, + [17449] = {.lex_state = 547, .external_lex_state = 1}, + [17450] = {.lex_state = 547, .external_lex_state = 1}, + [17451] = {.lex_state = 547, .external_lex_state = 1}, + [17452] = {.lex_state = 547, .external_lex_state = 1}, + [17453] = {.lex_state = 547, .external_lex_state = 1}, + [17454] = {.lex_state = 547, .external_lex_state = 1}, + [17455] = {.lex_state = 547, .external_lex_state = 1}, + [17456] = {.lex_state = 547, .external_lex_state = 1}, + [17457] = {.lex_state = 547, .external_lex_state = 1}, + [17458] = {.lex_state = 547, .external_lex_state = 1}, + [17459] = {.lex_state = 547, .external_lex_state = 1}, + [17460] = {.lex_state = 547, .external_lex_state = 1}, + [17461] = {.lex_state = 547, .external_lex_state = 1}, + [17462] = {.lex_state = 547, .external_lex_state = 1}, + [17463] = {.lex_state = 547, .external_lex_state = 1}, + [17464] = {.lex_state = 547, .external_lex_state = 1}, + [17465] = {.lex_state = 547, .external_lex_state = 1}, + [17466] = {.lex_state = 547, .external_lex_state = 1}, + [17467] = {.lex_state = 547, .external_lex_state = 1}, + [17468] = {.lex_state = 547, .external_lex_state = 1}, + [17469] = {.lex_state = 547, .external_lex_state = 1}, + [17470] = {.lex_state = 547, .external_lex_state = 1}, + [17471] = {.lex_state = 547, .external_lex_state = 1}, + [17472] = {.lex_state = 547, .external_lex_state = 1}, + [17473] = {.lex_state = 547, .external_lex_state = 1}, + [17474] = {.lex_state = 547, .external_lex_state = 1}, + [17475] = {.lex_state = 547, .external_lex_state = 1}, + [17476] = {.lex_state = 547, .external_lex_state = 1}, + [17477] = {.lex_state = 547, .external_lex_state = 1}, + [17478] = {.lex_state = 547, .external_lex_state = 1}, + [17479] = {.lex_state = 125, .external_lex_state = 1}, + [17480] = {.lex_state = 547, .external_lex_state = 1}, + [17481] = {.lex_state = 547, .external_lex_state = 1}, + [17482] = {.lex_state = 547, .external_lex_state = 1}, + [17483] = {.lex_state = 547, .external_lex_state = 1}, + [17484] = {.lex_state = 547, .external_lex_state = 1}, + [17485] = {.lex_state = 547, .external_lex_state = 1}, + [17486] = {.lex_state = 547, .external_lex_state = 1}, + [17487] = {.lex_state = 547, .external_lex_state = 1}, + [17488] = {.lex_state = 547, .external_lex_state = 1}, + [17489] = {.lex_state = 547, .external_lex_state = 1}, + [17490] = {.lex_state = 547, .external_lex_state = 1}, + [17491] = {.lex_state = 547, .external_lex_state = 1}, + [17492] = {.lex_state = 547, .external_lex_state = 1}, + [17493] = {.lex_state = 547, .external_lex_state = 1}, + [17494] = {.lex_state = 547, .external_lex_state = 1}, + [17495] = {.lex_state = 547, .external_lex_state = 1}, + [17496] = {.lex_state = 547, .external_lex_state = 1}, + [17497] = {.lex_state = 547, .external_lex_state = 1}, + [17498] = {.lex_state = 547, .external_lex_state = 1}, + [17499] = {.lex_state = 547, .external_lex_state = 1}, + [17500] = {.lex_state = 547, .external_lex_state = 1}, + [17501] = {.lex_state = 547, .external_lex_state = 1}, + [17502] = {.lex_state = 547, .external_lex_state = 1}, + [17503] = {.lex_state = 547, .external_lex_state = 1}, + [17504] = {.lex_state = 547, .external_lex_state = 1}, + [17505] = {.lex_state = 547, .external_lex_state = 1}, + [17506] = {.lex_state = 547, .external_lex_state = 1}, + [17507] = {.lex_state = 547, .external_lex_state = 1}, + [17508] = {.lex_state = 547, .external_lex_state = 1}, + [17509] = {.lex_state = 547, .external_lex_state = 1}, + [17510] = {.lex_state = 547, .external_lex_state = 1}, + [17511] = {.lex_state = 547, .external_lex_state = 1}, + [17512] = {.lex_state = 547, .external_lex_state = 1}, + [17513] = {.lex_state = 547, .external_lex_state = 1}, + [17514] = {.lex_state = 547, .external_lex_state = 1}, + [17515] = {.lex_state = 547, .external_lex_state = 1}, + [17516] = {.lex_state = 547, .external_lex_state = 1}, + [17517] = {.lex_state = 547, .external_lex_state = 1}, + [17518] = {.lex_state = 547, .external_lex_state = 1}, + [17519] = {.lex_state = 547, .external_lex_state = 1}, + [17520] = {.lex_state = 125, .external_lex_state = 1}, + [17521] = {.lex_state = 547, .external_lex_state = 1}, + [17522] = {.lex_state = 125, .external_lex_state = 1}, + [17523] = {.lex_state = 547, .external_lex_state = 1}, + [17524] = {.lex_state = 125, .external_lex_state = 1}, + [17525] = {.lex_state = 547, .external_lex_state = 1}, + [17526] = {.lex_state = 547, .external_lex_state = 1}, + [17527] = {.lex_state = 547, .external_lex_state = 1}, + [17528] = {.lex_state = 547, .external_lex_state = 1}, + [17529] = {.lex_state = 547, .external_lex_state = 1}, + [17530] = {.lex_state = 547, .external_lex_state = 1}, + [17531] = {.lex_state = 547, .external_lex_state = 1}, + [17532] = {.lex_state = 125, .external_lex_state = 1}, + [17533] = {.lex_state = 547, .external_lex_state = 1}, + [17534] = {.lex_state = 125, .external_lex_state = 1}, + [17535] = {.lex_state = 125, .external_lex_state = 1}, + [17536] = {.lex_state = 547, .external_lex_state = 1}, + [17537] = {.lex_state = 547, .external_lex_state = 1}, + [17538] = {.lex_state = 547, .external_lex_state = 1}, + [17539] = {.lex_state = 547, .external_lex_state = 1}, + [17540] = {.lex_state = 547, .external_lex_state = 1}, + [17541] = {.lex_state = 547, .external_lex_state = 1}, + [17542] = {.lex_state = 547, .external_lex_state = 1}, + [17543] = {.lex_state = 547, .external_lex_state = 1}, + [17544] = {.lex_state = 547, .external_lex_state = 1}, + [17545] = {.lex_state = 125, .external_lex_state = 1}, + [17546] = {.lex_state = 547, .external_lex_state = 1}, + [17547] = {.lex_state = 125, .external_lex_state = 1}, + [17548] = {.lex_state = 547, .external_lex_state = 1}, + [17549] = {.lex_state = 547, .external_lex_state = 1}, + [17550] = {.lex_state = 547, .external_lex_state = 1}, + [17551] = {.lex_state = 547, .external_lex_state = 1}, + [17552] = {.lex_state = 547, .external_lex_state = 1}, + [17553] = {.lex_state = 547, .external_lex_state = 1}, + [17554] = {.lex_state = 547, .external_lex_state = 1}, + [17555] = {.lex_state = 547, .external_lex_state = 1}, + [17556] = {.lex_state = 547, .external_lex_state = 1}, + [17557] = {.lex_state = 125, .external_lex_state = 1}, + [17558] = {.lex_state = 125, .external_lex_state = 1}, + [17559] = {.lex_state = 547, .external_lex_state = 1}, + [17560] = {.lex_state = 547, .external_lex_state = 1}, + [17561] = {.lex_state = 547, .external_lex_state = 1}, + [17562] = {.lex_state = 547, .external_lex_state = 1}, + [17563] = {.lex_state = 547, .external_lex_state = 1}, + [17564] = {.lex_state = 547, .external_lex_state = 1}, + [17565] = {.lex_state = 547, .external_lex_state = 1}, + [17566] = {.lex_state = 547, .external_lex_state = 1}, + [17567] = {.lex_state = 547, .external_lex_state = 1}, + [17568] = {.lex_state = 547, .external_lex_state = 1}, + [17569] = {.lex_state = 547, .external_lex_state = 1}, + [17570] = {.lex_state = 547, .external_lex_state = 1}, + [17571] = {.lex_state = 547, .external_lex_state = 1}, + [17572] = {.lex_state = 547, .external_lex_state = 1}, + [17573] = {.lex_state = 547, .external_lex_state = 1}, + [17574] = {.lex_state = 547, .external_lex_state = 1}, + [17575] = {.lex_state = 547, .external_lex_state = 1}, + [17576] = {.lex_state = 547, .external_lex_state = 1}, + [17577] = {.lex_state = 547, .external_lex_state = 1}, + [17578] = {.lex_state = 547, .external_lex_state = 1}, + [17579] = {.lex_state = 547, .external_lex_state = 1}, + [17580] = {.lex_state = 547, .external_lex_state = 1}, + [17581] = {.lex_state = 547, .external_lex_state = 1}, + [17582] = {.lex_state = 547, .external_lex_state = 1}, + [17583] = {.lex_state = 547, .external_lex_state = 1}, + [17584] = {.lex_state = 547, .external_lex_state = 1}, + [17585] = {.lex_state = 547, .external_lex_state = 1}, + [17586] = {.lex_state = 547, .external_lex_state = 1}, + [17587] = {.lex_state = 547, .external_lex_state = 1}, + [17588] = {.lex_state = 547, .external_lex_state = 1}, + [17589] = {.lex_state = 547, .external_lex_state = 1}, + [17590] = {.lex_state = 547, .external_lex_state = 1}, + [17591] = {.lex_state = 547, .external_lex_state = 1}, + [17592] = {.lex_state = 547, .external_lex_state = 1}, + [17593] = {.lex_state = 547, .external_lex_state = 1}, + [17594] = {.lex_state = 547, .external_lex_state = 1}, + [17595] = {.lex_state = 339, .external_lex_state = 1}, + [17596] = {.lex_state = 547, .external_lex_state = 1}, + [17597] = {.lex_state = 547, .external_lex_state = 1}, + [17598] = {.lex_state = 547, .external_lex_state = 1}, + [17599] = {.lex_state = 125, .external_lex_state = 1}, + [17600] = {.lex_state = 547, .external_lex_state = 1}, + [17601] = {.lex_state = 547, .external_lex_state = 1}, + [17602] = {.lex_state = 547, .external_lex_state = 1}, + [17603] = {.lex_state = 547, .external_lex_state = 1}, + [17604] = {.lex_state = 547, .external_lex_state = 1}, + [17605] = {.lex_state = 547, .external_lex_state = 1}, + [17606] = {.lex_state = 547, .external_lex_state = 1}, + [17607] = {.lex_state = 547, .external_lex_state = 1}, + [17608] = {.lex_state = 547, .external_lex_state = 1}, + [17609] = {.lex_state = 547, .external_lex_state = 1}, + [17610] = {.lex_state = 547, .external_lex_state = 1}, + [17611] = {.lex_state = 547, .external_lex_state = 1}, + [17612] = {.lex_state = 547, .external_lex_state = 1}, + [17613] = {.lex_state = 547, .external_lex_state = 1}, + [17614] = {.lex_state = 547, .external_lex_state = 1}, + [17615] = {.lex_state = 231, .external_lex_state = 1}, + [17616] = {.lex_state = 547, .external_lex_state = 1}, + [17617] = {.lex_state = 547, .external_lex_state = 1}, + [17618] = {.lex_state = 547, .external_lex_state = 1}, + [17619] = {.lex_state = 547, .external_lex_state = 1}, + [17620] = {.lex_state = 547, .external_lex_state = 1}, + [17621] = {.lex_state = 547, .external_lex_state = 1}, + [17622] = {.lex_state = 547, .external_lex_state = 1}, + [17623] = {.lex_state = 547, .external_lex_state = 1}, + [17624] = {.lex_state = 547, .external_lex_state = 1}, + [17625] = {.lex_state = 547, .external_lex_state = 1}, + [17626] = {.lex_state = 547, .external_lex_state = 1}, + [17627] = {.lex_state = 547, .external_lex_state = 1}, + [17628] = {.lex_state = 547, .external_lex_state = 1}, + [17629] = {.lex_state = 547, .external_lex_state = 1}, + [17630] = {.lex_state = 547, .external_lex_state = 1}, + [17631] = {.lex_state = 547, .external_lex_state = 1}, + [17632] = {.lex_state = 547, .external_lex_state = 1}, + [17633] = {.lex_state = 547, .external_lex_state = 1}, + [17634] = {.lex_state = 547, .external_lex_state = 1}, + [17635] = {.lex_state = 547, .external_lex_state = 1}, + [17636] = {.lex_state = 547, .external_lex_state = 1}, + [17637] = {.lex_state = 547, .external_lex_state = 1}, + [17638] = {.lex_state = 126, .external_lex_state = 1}, + [17639] = {.lex_state = 547, .external_lex_state = 1}, + [17640] = {.lex_state = 547, .external_lex_state = 1}, + [17641] = {.lex_state = 547, .external_lex_state = 1}, + [17642] = {.lex_state = 547, .external_lex_state = 1}, + [17643] = {.lex_state = 547, .external_lex_state = 1}, + [17644] = {.lex_state = 547, .external_lex_state = 1}, + [17645] = {.lex_state = 547, .external_lex_state = 1}, + [17646] = {.lex_state = 547, .external_lex_state = 1}, + [17647] = {.lex_state = 547, .external_lex_state = 1}, + [17648] = {.lex_state = 547, .external_lex_state = 1}, + [17649] = {.lex_state = 547, .external_lex_state = 1}, + [17650] = {.lex_state = 547, .external_lex_state = 1}, + [17651] = {.lex_state = 547, .external_lex_state = 1}, + [17652] = {.lex_state = 547, .external_lex_state = 1}, + [17653] = {.lex_state = 547, .external_lex_state = 1}, + [17654] = {.lex_state = 125, .external_lex_state = 1}, + [17655] = {.lex_state = 125, .external_lex_state = 1}, + [17656] = {.lex_state = 547, .external_lex_state = 1}, + [17657] = {.lex_state = 547, .external_lex_state = 1}, + [17658] = {.lex_state = 547, .external_lex_state = 1}, + [17659] = {.lex_state = 547, .external_lex_state = 1}, + [17660] = {.lex_state = 547, .external_lex_state = 1}, + [17661] = {.lex_state = 547, .external_lex_state = 1}, + [17662] = {.lex_state = 547, .external_lex_state = 1}, + [17663] = {.lex_state = 547, .external_lex_state = 1}, + [17664] = {.lex_state = 547, .external_lex_state = 1}, + [17665] = {.lex_state = 547, .external_lex_state = 1}, + [17666] = {.lex_state = 547, .external_lex_state = 1}, + [17667] = {.lex_state = 547, .external_lex_state = 1}, + [17668] = {.lex_state = 547, .external_lex_state = 1}, + [17669] = {.lex_state = 547, .external_lex_state = 1}, + [17670] = {.lex_state = 547, .external_lex_state = 1}, + [17671] = {.lex_state = 195, .external_lex_state = 1}, + [17672] = {.lex_state = 547, .external_lex_state = 1}, + [17673] = {.lex_state = 547, .external_lex_state = 1}, + [17674] = {.lex_state = 547, .external_lex_state = 1}, + [17675] = {.lex_state = 547, .external_lex_state = 1}, + [17676] = {.lex_state = 547, .external_lex_state = 1}, + [17677] = {.lex_state = 547, .external_lex_state = 1}, + [17678] = {.lex_state = 547, .external_lex_state = 1}, + [17679] = {.lex_state = 547, .external_lex_state = 1}, + [17680] = {.lex_state = 547, .external_lex_state = 1}, + [17681] = {.lex_state = 547, .external_lex_state = 1}, + [17682] = {.lex_state = 547, .external_lex_state = 1}, + [17683] = {.lex_state = 547, .external_lex_state = 1}, + [17684] = {.lex_state = 547, .external_lex_state = 1}, + [17685] = {.lex_state = 547, .external_lex_state = 1}, + [17686] = {.lex_state = 547, .external_lex_state = 1}, + [17687] = {.lex_state = 547, .external_lex_state = 1}, + [17688] = {.lex_state = 547, .external_lex_state = 1}, + [17689] = {.lex_state = 547, .external_lex_state = 1}, + [17690] = {.lex_state = 547, .external_lex_state = 1}, + [17691] = {.lex_state = 547, .external_lex_state = 1}, + [17692] = {.lex_state = 547, .external_lex_state = 1}, + [17693] = {.lex_state = 547, .external_lex_state = 1}, + [17694] = {.lex_state = 547, .external_lex_state = 1}, + [17695] = {.lex_state = 547, .external_lex_state = 1}, + [17696] = {.lex_state = 547, .external_lex_state = 1}, + [17697] = {.lex_state = 547, .external_lex_state = 1}, + [17698] = {.lex_state = 547, .external_lex_state = 1}, + [17699] = {.lex_state = 547, .external_lex_state = 1}, + [17700] = {.lex_state = 547, .external_lex_state = 1}, + [17701] = {.lex_state = 451, .external_lex_state = 1}, + [17702] = {.lex_state = 231, .external_lex_state = 1}, + [17703] = {.lex_state = 547, .external_lex_state = 1}, + [17704] = {.lex_state = 547, .external_lex_state = 1}, + [17705] = {.lex_state = 547, .external_lex_state = 1}, + [17706] = {.lex_state = 547, .external_lex_state = 1}, + [17707] = {.lex_state = 154, .external_lex_state = 1}, + [17708] = {.lex_state = 234, .external_lex_state = 1}, + [17709] = {.lex_state = 231, .external_lex_state = 1}, + [17710] = {.lex_state = 451, .external_lex_state = 1}, + [17711] = {.lex_state = 547, .external_lex_state = 1}, + [17712] = {.lex_state = 451, .external_lex_state = 1}, + [17713] = {.lex_state = 231, .external_lex_state = 1}, + [17714] = {.lex_state = 154, .external_lex_state = 1}, + [17715] = {.lex_state = 547, .external_lex_state = 1}, + [17716] = {.lex_state = 138, .external_lex_state = 1}, + [17717] = {.lex_state = 138, .external_lex_state = 1}, + [17718] = {.lex_state = 547, .external_lex_state = 1}, + [17719] = {.lex_state = 547, .external_lex_state = 1}, + [17720] = {.lex_state = 547, .external_lex_state = 1}, + [17721] = {.lex_state = 158, .external_lex_state = 1}, + [17722] = {.lex_state = 125, .external_lex_state = 1}, + [17723] = {.lex_state = 547, .external_lex_state = 1}, + [17724] = {.lex_state = 547, .external_lex_state = 1}, + [17725] = {.lex_state = 125, .external_lex_state = 1}, + [17726] = {.lex_state = 126, .external_lex_state = 1}, + [17727] = {.lex_state = 547, .external_lex_state = 1}, + [17728] = {.lex_state = 547, .external_lex_state = 1}, + [17729] = {.lex_state = 547, .external_lex_state = 1}, + [17730] = {.lex_state = 547, .external_lex_state = 1}, + [17731] = {.lex_state = 547, .external_lex_state = 1}, + [17732] = {.lex_state = 481, .external_lex_state = 1}, + [17733] = {.lex_state = 451, .external_lex_state = 1}, + [17734] = {.lex_state = 451, .external_lex_state = 1}, + [17735] = {.lex_state = 154, .external_lex_state = 1}, + [17736] = {.lex_state = 340, .external_lex_state = 1}, + [17737] = {.lex_state = 138, .external_lex_state = 1}, + [17738] = {.lex_state = 340, .external_lex_state = 1}, + [17739] = {.lex_state = 547, .external_lex_state = 1}, + [17740] = {.lex_state = 547, .external_lex_state = 1}, + [17741] = {.lex_state = 547, .external_lex_state = 1}, + [17742] = {.lex_state = 547, .external_lex_state = 1}, + [17743] = {.lex_state = 481, .external_lex_state = 1}, + [17744] = {.lex_state = 547, .external_lex_state = 1}, + [17745] = {.lex_state = 547, .external_lex_state = 1}, + [17746] = {.lex_state = 131, .external_lex_state = 1}, + [17747] = {.lex_state = 547, .external_lex_state = 1}, + [17748] = {.lex_state = 231, .external_lex_state = 1}, + [17749] = {.lex_state = 481, .external_lex_state = 1}, + [17750] = {.lex_state = 547, .external_lex_state = 1}, + [17751] = {.lex_state = 231, .external_lex_state = 1}, + [17752] = {.lex_state = 547, .external_lex_state = 1}, + [17753] = {.lex_state = 154, .external_lex_state = 1}, + [17754] = {.lex_state = 547, .external_lex_state = 1}, + [17755] = {.lex_state = 547, .external_lex_state = 1}, + [17756] = {.lex_state = 231, .external_lex_state = 1}, + [17757] = {.lex_state = 547, .external_lex_state = 1}, + [17758] = {.lex_state = 127, .external_lex_state = 1}, + [17759] = {.lex_state = 547, .external_lex_state = 1}, + [17760] = {.lex_state = 547, .external_lex_state = 1}, + [17761] = {.lex_state = 547, .external_lex_state = 1}, + [17762] = {.lex_state = 231, .external_lex_state = 1}, + [17763] = {.lex_state = 547, .external_lex_state = 1}, + [17764] = {.lex_state = 547, .external_lex_state = 1}, + [17765] = {.lex_state = 547, .external_lex_state = 1}, + [17766] = {.lex_state = 127, .external_lex_state = 1}, + [17767] = {.lex_state = 138, .external_lex_state = 1}, + [17768] = {.lex_state = 547, .external_lex_state = 1}, + [17769] = {.lex_state = 547, .external_lex_state = 1}, + [17770] = {.lex_state = 231, .external_lex_state = 1}, + [17771] = {.lex_state = 547, .external_lex_state = 1}, + [17772] = {.lex_state = 154, .external_lex_state = 1}, + [17773] = {.lex_state = 547, .external_lex_state = 1}, + [17774] = {.lex_state = 547, .external_lex_state = 1}, + [17775] = {.lex_state = 154, .external_lex_state = 1}, + [17776] = {.lex_state = 122, .external_lex_state = 1}, + [17777] = {.lex_state = 122, .external_lex_state = 1}, + [17778] = {.lex_state = 231, .external_lex_state = 1}, + [17779] = {.lex_state = 138, .external_lex_state = 1}, + [17780] = {.lex_state = 547, .external_lex_state = 1}, + [17781] = {.lex_state = 138, .external_lex_state = 1}, + [17782] = {.lex_state = 451, .external_lex_state = 1}, + [17783] = {.lex_state = 451, .external_lex_state = 1}, + [17784] = {.lex_state = 547, .external_lex_state = 1}, + [17785] = {.lex_state = 451, .external_lex_state = 1}, + [17786] = {.lex_state = 547, .external_lex_state = 1}, + [17787] = {.lex_state = 547, .external_lex_state = 1}, + [17788] = {.lex_state = 451, .external_lex_state = 1}, + [17789] = {.lex_state = 452, .external_lex_state = 1}, + [17790] = {.lex_state = 138, .external_lex_state = 1}, + [17791] = {.lex_state = 547, .external_lex_state = 1}, + [17792] = {.lex_state = 547, .external_lex_state = 1}, + [17793] = {.lex_state = 547, .external_lex_state = 1}, + [17794] = {.lex_state = 547, .external_lex_state = 1}, + [17795] = {.lex_state = 138, .external_lex_state = 1}, + [17796] = {.lex_state = 138, .external_lex_state = 1}, + [17797] = {.lex_state = 547, .external_lex_state = 1}, + [17798] = {.lex_state = 547, .external_lex_state = 1}, + [17799] = {.lex_state = 154, .external_lex_state = 1}, + [17800] = {.lex_state = 547, .external_lex_state = 1}, + [17801] = {.lex_state = 547, .external_lex_state = 1}, + [17802] = {.lex_state = 547, .external_lex_state = 1}, + [17803] = {.lex_state = 547, .external_lex_state = 1}, + [17804] = {.lex_state = 547, .external_lex_state = 1}, + [17805] = {.lex_state = 547, .external_lex_state = 1}, + [17806] = {.lex_state = 547, .external_lex_state = 1}, + [17807] = {.lex_state = 547, .external_lex_state = 1}, + [17808] = {.lex_state = 547, .external_lex_state = 1}, + [17809] = {.lex_state = 131, .external_lex_state = 1}, + [17810] = {.lex_state = 547, .external_lex_state = 1}, + [17811] = {.lex_state = 481, .external_lex_state = 1}, + [17812] = {.lex_state = 547, .external_lex_state = 1}, + [17813] = {.lex_state = 547, .external_lex_state = 1}, + [17814] = {.lex_state = 154, .external_lex_state = 1}, + [17815] = {.lex_state = 302, .external_lex_state = 1}, + [17816] = {.lex_state = 547, .external_lex_state = 1}, + [17817] = {.lex_state = 547, .external_lex_state = 1}, + [17818] = {.lex_state = 547, .external_lex_state = 1}, + [17819] = {.lex_state = 547, .external_lex_state = 1}, + [17820] = {.lex_state = 547, .external_lex_state = 1}, + [17821] = {.lex_state = 547, .external_lex_state = 1}, + [17822] = {.lex_state = 547, .external_lex_state = 1}, + [17823] = {.lex_state = 547, .external_lex_state = 1}, + [17824] = {.lex_state = 126, .external_lex_state = 1}, + [17825] = {.lex_state = 547, .external_lex_state = 1}, + [17826] = {.lex_state = 547, .external_lex_state = 1}, + [17827] = {.lex_state = 547, .external_lex_state = 1}, + [17828] = {.lex_state = 547, .external_lex_state = 1}, + [17829] = {.lex_state = 547, .external_lex_state = 1}, + [17830] = {.lex_state = 547, .external_lex_state = 1}, + [17831] = {.lex_state = 547, .external_lex_state = 1}, + [17832] = {.lex_state = 547, .external_lex_state = 1}, + [17833] = {.lex_state = 547, .external_lex_state = 1}, + [17834] = {.lex_state = 481, .external_lex_state = 1}, + [17835] = {.lex_state = 481, .external_lex_state = 1}, + [17836] = {.lex_state = 547, .external_lex_state = 1}, + [17837] = {.lex_state = 547, .external_lex_state = 1}, + [17838] = {.lex_state = 547, .external_lex_state = 1}, + [17839] = {.lex_state = 138, .external_lex_state = 1}, + [17840] = {.lex_state = 547, .external_lex_state = 1}, + [17841] = {.lex_state = 452, .external_lex_state = 1}, + [17842] = {.lex_state = 451, .external_lex_state = 1}, + [17843] = {.lex_state = 547, .external_lex_state = 1}, + [17844] = {.lex_state = 451, .external_lex_state = 1}, + [17845] = {.lex_state = 547, .external_lex_state = 1}, + [17846] = {.lex_state = 547, .external_lex_state = 1}, + [17847] = {.lex_state = 547, .external_lex_state = 1}, + [17848] = {.lex_state = 481, .external_lex_state = 1}, + [17849] = {.lex_state = 231, .external_lex_state = 1}, + [17850] = {.lex_state = 154, .external_lex_state = 1}, + [17851] = {.lex_state = 547, .external_lex_state = 1}, + [17852] = {.lex_state = 158, .external_lex_state = 1}, + [17853] = {.lex_state = 158, .external_lex_state = 1}, + [17854] = {.lex_state = 547, .external_lex_state = 1}, + [17855] = {.lex_state = 547, .external_lex_state = 1}, + [17856] = {.lex_state = 158, .external_lex_state = 1}, + [17857] = {.lex_state = 158, .external_lex_state = 1}, + [17858] = {.lex_state = 138, .external_lex_state = 1}, + [17859] = {.lex_state = 547, .external_lex_state = 1}, + [17860] = {.lex_state = 547, .external_lex_state = 1}, + [17861] = {.lex_state = 547, .external_lex_state = 1}, + [17862] = {.lex_state = 547, .external_lex_state = 1}, + [17863] = {.lex_state = 547, .external_lex_state = 1}, + [17864] = {.lex_state = 547, .external_lex_state = 1}, + [17865] = {.lex_state = 547, .external_lex_state = 1}, + [17866] = {.lex_state = 547, .external_lex_state = 1}, + [17867] = {.lex_state = 546, .external_lex_state = 1}, + [17868] = {.lex_state = 547, .external_lex_state = 1}, + [17869] = {.lex_state = 231, .external_lex_state = 1}, + [17870] = {.lex_state = 547, .external_lex_state = 1}, + [17871] = {.lex_state = 154, .external_lex_state = 1}, + [17872] = {.lex_state = 547, .external_lex_state = 1}, + [17873] = {.lex_state = 452, .external_lex_state = 1}, + [17874] = {.lex_state = 547, .external_lex_state = 1}, + [17875] = {.lex_state = 547, .external_lex_state = 1}, + [17876] = {.lex_state = 547, .external_lex_state = 1}, + [17877] = {.lex_state = 547, .external_lex_state = 1}, + [17878] = {.lex_state = 547, .external_lex_state = 1}, + [17879] = {.lex_state = 547, .external_lex_state = 1}, + [17880] = {.lex_state = 546, .external_lex_state = 1}, + [17881] = {.lex_state = 547, .external_lex_state = 1}, + [17882] = {.lex_state = 154, .external_lex_state = 1}, + [17883] = {.lex_state = 547, .external_lex_state = 1}, + [17884] = {.lex_state = 231, .external_lex_state = 1}, + [17885] = {.lex_state = 451, .external_lex_state = 1}, + [17886] = {.lex_state = 547, .external_lex_state = 1}, + [17887] = {.lex_state = 138, .external_lex_state = 1}, + [17888] = {.lex_state = 452, .external_lex_state = 1}, + [17889] = {.lex_state = 138, .external_lex_state = 1}, + [17890] = {.lex_state = 451, .external_lex_state = 1}, + [17891] = {.lex_state = 451, .external_lex_state = 1}, + [17892] = {.lex_state = 138, .external_lex_state = 1}, + [17893] = {.lex_state = 547, .external_lex_state = 1}, + [17894] = {.lex_state = 481, .external_lex_state = 1}, + [17895] = {.lex_state = 231, .external_lex_state = 1}, + [17896] = {.lex_state = 547, .external_lex_state = 1}, + [17897] = {.lex_state = 547, .external_lex_state = 1}, + [17898] = {.lex_state = 547, .external_lex_state = 1}, + [17899] = {.lex_state = 158, .external_lex_state = 1}, + [17900] = {.lex_state = 158, .external_lex_state = 1}, + [17901] = {.lex_state = 138, .external_lex_state = 1}, + [17902] = {.lex_state = 547, .external_lex_state = 1}, + [17903] = {.lex_state = 154, .external_lex_state = 1}, + [17904] = {.lex_state = 547, .external_lex_state = 1}, + [17905] = {.lex_state = 158, .external_lex_state = 1}, + [17906] = {.lex_state = 481, .external_lex_state = 1}, + [17907] = {.lex_state = 547, .external_lex_state = 1}, + [17908] = {.lex_state = 547, .external_lex_state = 1}, + [17909] = {.lex_state = 547, .external_lex_state = 1}, + [17910] = {.lex_state = 547, .external_lex_state = 1}, + [17911] = {.lex_state = 547, .external_lex_state = 1}, + [17912] = {.lex_state = 154, .external_lex_state = 1}, + [17913] = {.lex_state = 154, .external_lex_state = 1}, + [17914] = {.lex_state = 547, .external_lex_state = 1}, + [17915] = {.lex_state = 547, .external_lex_state = 1}, + [17916] = {.lex_state = 547, .external_lex_state = 1}, + [17917] = {.lex_state = 481, .external_lex_state = 1}, + [17918] = {.lex_state = 547, .external_lex_state = 1}, + [17919] = {.lex_state = 547, .external_lex_state = 1}, + [17920] = {.lex_state = 547, .external_lex_state = 1}, + [17921] = {.lex_state = 122, .external_lex_state = 1}, + [17922] = {.lex_state = 547, .external_lex_state = 1}, + [17923] = {.lex_state = 547, .external_lex_state = 1}, + [17924] = {.lex_state = 547, .external_lex_state = 1}, + [17925] = {.lex_state = 547, .external_lex_state = 1}, + [17926] = {.lex_state = 158, .external_lex_state = 1}, + [17927] = {.lex_state = 547, .external_lex_state = 1}, + [17928] = {.lex_state = 158, .external_lex_state = 1}, + [17929] = {.lex_state = 547, .external_lex_state = 1}, + [17930] = {.lex_state = 547, .external_lex_state = 1}, + [17931] = {.lex_state = 158, .external_lex_state = 1}, + [17932] = {.lex_state = 138, .external_lex_state = 1}, + [17933] = {.lex_state = 547, .external_lex_state = 1}, + [17934] = {.lex_state = 547, .external_lex_state = 1}, + [17935] = {.lex_state = 154, .external_lex_state = 1}, + [17936] = {.lex_state = 547, .external_lex_state = 1}, + [17937] = {.lex_state = 547, .external_lex_state = 1}, + [17938] = {.lex_state = 547, .external_lex_state = 1}, + [17939] = {.lex_state = 547, .external_lex_state = 1}, + [17940] = {.lex_state = 547, .external_lex_state = 1}, + [17941] = {.lex_state = 158, .external_lex_state = 1}, + [17942] = {.lex_state = 547, .external_lex_state = 1}, + [17943] = {.lex_state = 547, .external_lex_state = 1}, + [17944] = {.lex_state = 158, .external_lex_state = 1}, + [17945] = {.lex_state = 481, .external_lex_state = 1}, + [17946] = {.lex_state = 231, .external_lex_state = 1}, + [17947] = {.lex_state = 231, .external_lex_state = 1}, + [17948] = {.lex_state = 231, .external_lex_state = 1}, + [17949] = {.lex_state = 481, .external_lex_state = 1}, + [17950] = {.lex_state = 547, .external_lex_state = 1}, + [17951] = {.lex_state = 158, .external_lex_state = 1}, + [17952] = {.lex_state = 158, .external_lex_state = 1}, + [17953] = {.lex_state = 158, .external_lex_state = 1}, + [17954] = {.lex_state = 154, .external_lex_state = 1}, + [17955] = {.lex_state = 481, .external_lex_state = 1}, + [17956] = {.lex_state = 481, .external_lex_state = 1}, + [17957] = {.lex_state = 481, .external_lex_state = 1}, + [17958] = {.lex_state = 481, .external_lex_state = 1}, + [17959] = {.lex_state = 481, .external_lex_state = 1}, + [17960] = {.lex_state = 547, .external_lex_state = 1}, + [17961] = {.lex_state = 481, .external_lex_state = 1}, + [17962] = {.lex_state = 481, .external_lex_state = 1}, + [17963] = {.lex_state = 547, .external_lex_state = 1}, + [17964] = {.lex_state = 131, .external_lex_state = 1}, + [17965] = {.lex_state = 547, .external_lex_state = 1}, + [17966] = {.lex_state = 546, .external_lex_state = 1}, + [17967] = {.lex_state = 302, .external_lex_state = 1}, + [17968] = {.lex_state = 302, .external_lex_state = 1}, + [17969] = {.lex_state = 302, .external_lex_state = 1}, + [17970] = {.lex_state = 125, .external_lex_state = 1}, + [17971] = {.lex_state = 234, .external_lex_state = 1}, + [17972] = {.lex_state = 547, .external_lex_state = 1}, + [17973] = {.lex_state = 302, .external_lex_state = 1}, + [17974] = {.lex_state = 125, .external_lex_state = 1}, + [17975] = {.lex_state = 302, .external_lex_state = 1}, + [17976] = {.lex_state = 302, .external_lex_state = 1}, + [17977] = {.lex_state = 302, .external_lex_state = 1}, + [17978] = {.lex_state = 125, .external_lex_state = 1}, + [17979] = {.lex_state = 302, .external_lex_state = 1}, + [17980] = {.lex_state = 124, .external_lex_state = 1}, + [17981] = {.lex_state = 547, .external_lex_state = 1}, + [17982] = {.lex_state = 302, .external_lex_state = 1}, + [17983] = {.lex_state = 302, .external_lex_state = 1}, + [17984] = {.lex_state = 302, .external_lex_state = 1}, + [17985] = {.lex_state = 125, .external_lex_state = 1}, + [17986] = {.lex_state = 124, .external_lex_state = 1}, + [17987] = {.lex_state = 125, .external_lex_state = 1}, + [17988] = {.lex_state = 302, .external_lex_state = 1}, + [17989] = {.lex_state = 125, .external_lex_state = 1}, + [17990] = {.lex_state = 125, .external_lex_state = 1}, + [17991] = {.lex_state = 302, .external_lex_state = 1}, + [17992] = {.lex_state = 302, .external_lex_state = 1}, + [17993] = {.lex_state = 302, .external_lex_state = 1}, + [17994] = {.lex_state = 125, .external_lex_state = 1}, + [17995] = {.lex_state = 302, .external_lex_state = 1}, + [17996] = {.lex_state = 125, .external_lex_state = 1}, + [17997] = {.lex_state = 302, .external_lex_state = 1}, + [17998] = {.lex_state = 125, .external_lex_state = 1}, + [17999] = {.lex_state = 302, .external_lex_state = 1}, + [18000] = {.lex_state = 302, .external_lex_state = 1}, + [18001] = {.lex_state = 302, .external_lex_state = 1}, + [18002] = {.lex_state = 302, .external_lex_state = 1}, + [18003] = {.lex_state = 125, .external_lex_state = 1}, + [18004] = {.lex_state = 302, .external_lex_state = 1}, + [18005] = {.lex_state = 124, .external_lex_state = 1}, + [18006] = {.lex_state = 125, .external_lex_state = 1}, + [18007] = {.lex_state = 302, .external_lex_state = 1}, + [18008] = {.lex_state = 302, .external_lex_state = 1}, + [18009] = {.lex_state = 302, .external_lex_state = 1}, + [18010] = {.lex_state = 302, .external_lex_state = 1}, + [18011] = {.lex_state = 125, .external_lex_state = 1}, + [18012] = {.lex_state = 302, .external_lex_state = 1}, + [18013] = {.lex_state = 125, .external_lex_state = 1}, + [18014] = {.lex_state = 302, .external_lex_state = 1}, + [18015] = {.lex_state = 302, .external_lex_state = 1}, + [18016] = {.lex_state = 125, .external_lex_state = 1}, + [18017] = {.lex_state = 125, .external_lex_state = 1}, + [18018] = {.lex_state = 125, .external_lex_state = 1}, + [18019] = {.lex_state = 125, .external_lex_state = 1}, + [18020] = {.lex_state = 125, .external_lex_state = 1}, + [18021] = {.lex_state = 302, .external_lex_state = 1}, + [18022] = {.lex_state = 547, .external_lex_state = 1}, + [18023] = {.lex_state = 452, .external_lex_state = 1}, + [18024] = {.lex_state = 302, .external_lex_state = 1}, + [18025] = {.lex_state = 125, .external_lex_state = 1}, + [18026] = {.lex_state = 302, .external_lex_state = 1}, + [18027] = {.lex_state = 547, .external_lex_state = 1}, + [18028] = {.lex_state = 125, .external_lex_state = 1}, + [18029] = {.lex_state = 125, .external_lex_state = 1}, + [18030] = {.lex_state = 125, .external_lex_state = 1}, + [18031] = {.lex_state = 547, .external_lex_state = 1}, + [18032] = {.lex_state = 302, .external_lex_state = 1}, + [18033] = {.lex_state = 125, .external_lex_state = 1}, + [18034] = {.lex_state = 302, .external_lex_state = 1}, + [18035] = {.lex_state = 125, .external_lex_state = 1}, + [18036] = {.lex_state = 125, .external_lex_state = 1}, + [18037] = {.lex_state = 302, .external_lex_state = 1}, + [18038] = {.lex_state = 125, .external_lex_state = 1}, + [18039] = {.lex_state = 125, .external_lex_state = 1}, + [18040] = {.lex_state = 547, .external_lex_state = 1}, + [18041] = {.lex_state = 547, .external_lex_state = 1}, + [18042] = {.lex_state = 302, .external_lex_state = 1}, + [18043] = {.lex_state = 125, .external_lex_state = 1}, + [18044] = {.lex_state = 234, .external_lex_state = 1}, + [18045] = {.lex_state = 302, .external_lex_state = 1}, + [18046] = {.lex_state = 124, .external_lex_state = 1}, + [18047] = {.lex_state = 125, .external_lex_state = 1}, + [18048] = {.lex_state = 125, .external_lex_state = 1}, + [18049] = {.lex_state = 125, .external_lex_state = 1}, + [18050] = {.lex_state = 125, .external_lex_state = 1}, + [18051] = {.lex_state = 302, .external_lex_state = 1}, + [18052] = {.lex_state = 125, .external_lex_state = 1}, + [18053] = {.lex_state = 302, .external_lex_state = 1}, + [18054] = {.lex_state = 125, .external_lex_state = 1}, + [18055] = {.lex_state = 125, .external_lex_state = 1}, + [18056] = {.lex_state = 302, .external_lex_state = 1}, + [18057] = {.lex_state = 125, .external_lex_state = 1}, + [18058] = {.lex_state = 302, .external_lex_state = 1}, + [18059] = {.lex_state = 125, .external_lex_state = 1}, + [18060] = {.lex_state = 125, .external_lex_state = 1}, + [18061] = {.lex_state = 302, .external_lex_state = 1}, + [18062] = {.lex_state = 302, .external_lex_state = 1}, + [18063] = {.lex_state = 125, .external_lex_state = 1}, + [18064] = {.lex_state = 125, .external_lex_state = 1}, + [18065] = {.lex_state = 125, .external_lex_state = 1}, + [18066] = {.lex_state = 125, .external_lex_state = 1}, + [18067] = {.lex_state = 125, .external_lex_state = 1}, + [18068] = {.lex_state = 302, .external_lex_state = 1}, + [18069] = {.lex_state = 125, .external_lex_state = 1}, + [18070] = {.lex_state = 302, .external_lex_state = 1}, + [18071] = {.lex_state = 302, .external_lex_state = 1}, + [18072] = {.lex_state = 124, .external_lex_state = 1}, + [18073] = {.lex_state = 302, .external_lex_state = 1}, + [18074] = {.lex_state = 302, .external_lex_state = 1}, + [18075] = {.lex_state = 302, .external_lex_state = 1}, + [18076] = {.lex_state = 302, .external_lex_state = 1}, + [18077] = {.lex_state = 125, .external_lex_state = 1}, + [18078] = {.lex_state = 302, .external_lex_state = 1}, + [18079] = {.lex_state = 302, .external_lex_state = 1}, + [18080] = {.lex_state = 302, .external_lex_state = 1}, + [18081] = {.lex_state = 302, .external_lex_state = 1}, + [18082] = {.lex_state = 302, .external_lex_state = 1}, + [18083] = {.lex_state = 125, .external_lex_state = 1}, + [18084] = {.lex_state = 302, .external_lex_state = 1}, + [18085] = {.lex_state = 302, .external_lex_state = 1}, + [18086] = {.lex_state = 302, .external_lex_state = 1}, + [18087] = {.lex_state = 302, .external_lex_state = 1}, + [18088] = {.lex_state = 302, .external_lex_state = 1}, + [18089] = {.lex_state = 125, .external_lex_state = 1}, + [18090] = {.lex_state = 125, .external_lex_state = 1}, + [18091] = {.lex_state = 125, .external_lex_state = 1}, + [18092] = {.lex_state = 302, .external_lex_state = 1}, + [18093] = {.lex_state = 302, .external_lex_state = 1}, + [18094] = {.lex_state = 125, .external_lex_state = 1}, + [18095] = {.lex_state = 302, .external_lex_state = 1}, + [18096] = {.lex_state = 547, .external_lex_state = 1}, + [18097] = {.lex_state = 302, .external_lex_state = 1}, + [18098] = {.lex_state = 124, .external_lex_state = 1}, + [18099] = {.lex_state = 125, .external_lex_state = 1}, + [18100] = {.lex_state = 302, .external_lex_state = 1}, + [18101] = {.lex_state = 234, .external_lex_state = 1}, + [18102] = {.lex_state = 302, .external_lex_state = 1}, + [18103] = {.lex_state = 302, .external_lex_state = 1}, + [18104] = {.lex_state = 234, .external_lex_state = 1}, + [18105] = {.lex_state = 125, .external_lex_state = 1}, + [18106] = {.lex_state = 124, .external_lex_state = 1}, + [18107] = {.lex_state = 234, .external_lex_state = 1}, + [18108] = {.lex_state = 124, .external_lex_state = 1}, + [18109] = {.lex_state = 125, .external_lex_state = 1}, + [18110] = {.lex_state = 125, .external_lex_state = 1}, + [18111] = {.lex_state = 125, .external_lex_state = 1}, + [18112] = {.lex_state = 125, .external_lex_state = 1}, + [18113] = {.lex_state = 302, .external_lex_state = 1}, + [18114] = {.lex_state = 125, .external_lex_state = 1}, + [18115] = {.lex_state = 125, .external_lex_state = 1}, + [18116] = {.lex_state = 125, .external_lex_state = 1}, + [18117] = {.lex_state = 125, .external_lex_state = 1}, + [18118] = {.lex_state = 125, .external_lex_state = 1}, + [18119] = {.lex_state = 125, .external_lex_state = 1}, + [18120] = {.lex_state = 302, .external_lex_state = 1}, + [18121] = {.lex_state = 302, .external_lex_state = 1}, + [18122] = {.lex_state = 302, .external_lex_state = 1}, + [18123] = {.lex_state = 125, .external_lex_state = 1}, + [18124] = {.lex_state = 234, .external_lex_state = 1}, + [18125] = {.lex_state = 125, .external_lex_state = 1}, + [18126] = {.lex_state = 125, .external_lex_state = 1}, + [18127] = {.lex_state = 125, .external_lex_state = 1}, + [18128] = {.lex_state = 302, .external_lex_state = 1}, + [18129] = {.lex_state = 302, .external_lex_state = 1}, + [18130] = {.lex_state = 302, .external_lex_state = 1}, + [18131] = {.lex_state = 302, .external_lex_state = 1}, + [18132] = {.lex_state = 302, .external_lex_state = 1}, + [18133] = {.lex_state = 124, .external_lex_state = 1}, + [18134] = {.lex_state = 302, .external_lex_state = 1}, + [18135] = {.lex_state = 125, .external_lex_state = 1}, + [18136] = {.lex_state = 302, .external_lex_state = 1}, + [18137] = {.lex_state = 125, .external_lex_state = 1}, + [18138] = {.lex_state = 125, .external_lex_state = 1}, + [18139] = {.lex_state = 302, .external_lex_state = 1}, + [18140] = {.lex_state = 302, .external_lex_state = 1}, + [18141] = {.lex_state = 234, .external_lex_state = 1}, + [18142] = {.lex_state = 547, .external_lex_state = 1}, + [18143] = {.lex_state = 125, .external_lex_state = 1}, + [18144] = {.lex_state = 302, .external_lex_state = 1}, + [18145] = {.lex_state = 302, .external_lex_state = 1}, + [18146] = {.lex_state = 125, .external_lex_state = 1}, + [18147] = {.lex_state = 547, .external_lex_state = 1}, + [18148] = {.lex_state = 302, .external_lex_state = 1}, + [18149] = {.lex_state = 302, .external_lex_state = 1}, + [18150] = {.lex_state = 302, .external_lex_state = 1}, + [18151] = {.lex_state = 302, .external_lex_state = 1}, + [18152] = {.lex_state = 302, .external_lex_state = 1}, + [18153] = {.lex_state = 125, .external_lex_state = 1}, + [18154] = {.lex_state = 302, .external_lex_state = 1}, + [18155] = {.lex_state = 125, .external_lex_state = 1}, + [18156] = {.lex_state = 302, .external_lex_state = 1}, + [18157] = {.lex_state = 519, .external_lex_state = 1}, + [18158] = {.lex_state = 302, .external_lex_state = 1}, + [18159] = {.lex_state = 302, .external_lex_state = 1}, + [18160] = {.lex_state = 302, .external_lex_state = 1}, + [18161] = {.lex_state = 125, .external_lex_state = 1}, + [18162] = {.lex_state = 302, .external_lex_state = 1}, + [18163] = {.lex_state = 302, .external_lex_state = 1}, + [18164] = {.lex_state = 302, .external_lex_state = 1}, + [18165] = {.lex_state = 125, .external_lex_state = 1}, + [18166] = {.lex_state = 125, .external_lex_state = 1}, + [18167] = {.lex_state = 547, .external_lex_state = 1}, + [18168] = {.lex_state = 302, .external_lex_state = 1}, + [18169] = {.lex_state = 302, .external_lex_state = 1}, + [18170] = {.lex_state = 125, .external_lex_state = 1}, + [18171] = {.lex_state = 452, .external_lex_state = 1}, + [18172] = {.lex_state = 302, .external_lex_state = 1}, + [18173] = {.lex_state = 302, .external_lex_state = 1}, + [18174] = {.lex_state = 302, .external_lex_state = 1}, + [18175] = {.lex_state = 302, .external_lex_state = 1}, + [18176] = {.lex_state = 302, .external_lex_state = 1}, + [18177] = {.lex_state = 302, .external_lex_state = 1}, + [18178] = {.lex_state = 125, .external_lex_state = 1}, + [18179] = {.lex_state = 125, .external_lex_state = 1}, + [18180] = {.lex_state = 122, .external_lex_state = 1}, + [18181] = {.lex_state = 125, .external_lex_state = 1}, + [18182] = {.lex_state = 546, .external_lex_state = 1}, + [18183] = {.lex_state = 547, .external_lex_state = 1}, + [18184] = {.lex_state = 125, .external_lex_state = 1}, + [18185] = {.lex_state = 125, .external_lex_state = 1}, + [18186] = {.lex_state = 125, .external_lex_state = 1}, + [18187] = {.lex_state = 125, .external_lex_state = 1}, + [18188] = {.lex_state = 302, .external_lex_state = 1}, + [18189] = {.lex_state = 302, .external_lex_state = 1}, + [18190] = {.lex_state = 302, .external_lex_state = 1}, + [18191] = {.lex_state = 125, .external_lex_state = 1}, + [18192] = {.lex_state = 302, .external_lex_state = 1}, + [18193] = {.lex_state = 302, .external_lex_state = 1}, + [18194] = {.lex_state = 302, .external_lex_state = 1}, + [18195] = {.lex_state = 302, .external_lex_state = 1}, + [18196] = {.lex_state = 125, .external_lex_state = 1}, + [18197] = {.lex_state = 124, .external_lex_state = 1}, + [18198] = {.lex_state = 302, .external_lex_state = 1}, + [18199] = {.lex_state = 302, .external_lex_state = 1}, + [18200] = {.lex_state = 125, .external_lex_state = 1}, + [18201] = {.lex_state = 302, .external_lex_state = 1}, + [18202] = {.lex_state = 125, .external_lex_state = 1}, + [18203] = {.lex_state = 302, .external_lex_state = 1}, + [18204] = {.lex_state = 0, .external_lex_state = 1}, + [18205] = {.lex_state = 302, .external_lex_state = 1}, + [18206] = {.lex_state = 302, .external_lex_state = 1}, + [18207] = {.lex_state = 302, .external_lex_state = 1}, + [18208] = {.lex_state = 302, .external_lex_state = 1}, + [18209] = {.lex_state = 302, .external_lex_state = 1}, + [18210] = {.lex_state = 547, .external_lex_state = 1}, + [18211] = {.lex_state = 124, .external_lex_state = 1}, + [18212] = {.lex_state = 547, .external_lex_state = 1}, + [18213] = {.lex_state = 547, .external_lex_state = 1}, + [18214] = {.lex_state = 302, .external_lex_state = 1}, + [18215] = {.lex_state = 547, .external_lex_state = 1}, + [18216] = {.lex_state = 302, .external_lex_state = 1}, + [18217] = {.lex_state = 125, .external_lex_state = 1}, + [18218] = {.lex_state = 452, .external_lex_state = 1}, + [18219] = {.lex_state = 302, .external_lex_state = 1}, + [18220] = {.lex_state = 302, .external_lex_state = 1}, + [18221] = {.lex_state = 302, .external_lex_state = 1}, + [18222] = {.lex_state = 125, .external_lex_state = 1}, + [18223] = {.lex_state = 302, .external_lex_state = 1}, + [18224] = {.lex_state = 125, .external_lex_state = 1}, + [18225] = {.lex_state = 125, .external_lex_state = 1}, + [18226] = {.lex_state = 122, .external_lex_state = 1}, + [18227] = {.lex_state = 125, .external_lex_state = 1}, + [18228] = {.lex_state = 125, .external_lex_state = 1}, + [18229] = {.lex_state = 125, .external_lex_state = 1}, + [18230] = {.lex_state = 547, .external_lex_state = 1}, + [18231] = {.lex_state = 125, .external_lex_state = 1}, + [18232] = {.lex_state = 547, .external_lex_state = 1}, + [18233] = {.lex_state = 302, .external_lex_state = 1}, + [18234] = {.lex_state = 302, .external_lex_state = 1}, + [18235] = {.lex_state = 302, .external_lex_state = 1}, + [18236] = {.lex_state = 547, .external_lex_state = 1}, + [18237] = {.lex_state = 547, .external_lex_state = 1}, + [18238] = {.lex_state = 125, .external_lex_state = 1}, + [18239] = {.lex_state = 125, .external_lex_state = 1}, + [18240] = {.lex_state = 547, .external_lex_state = 1}, + [18241] = {.lex_state = 125, .external_lex_state = 1}, + [18242] = {.lex_state = 125, .external_lex_state = 1}, + [18243] = {.lex_state = 302, .external_lex_state = 1}, + [18244] = {.lex_state = 234, .external_lex_state = 1}, + [18245] = {.lex_state = 125, .external_lex_state = 1}, + [18246] = {.lex_state = 125, .external_lex_state = 1}, + [18247] = {.lex_state = 547, .external_lex_state = 1}, + [18248] = {.lex_state = 124, .external_lex_state = 1}, + [18249] = {.lex_state = 302, .external_lex_state = 1}, + [18250] = {.lex_state = 302, .external_lex_state = 1}, + [18251] = {.lex_state = 125, .external_lex_state = 1}, + [18252] = {.lex_state = 302, .external_lex_state = 1}, + [18253] = {.lex_state = 234, .external_lex_state = 1}, + [18254] = {.lex_state = 547, .external_lex_state = 1}, + [18255] = {.lex_state = 0, .external_lex_state = 1}, + [18256] = {.lex_state = 302, .external_lex_state = 1}, + [18257] = {.lex_state = 302, .external_lex_state = 1}, + [18258] = {.lex_state = 302, .external_lex_state = 1}, + [18259] = {.lex_state = 302, .external_lex_state = 1}, + [18260] = {.lex_state = 547, .external_lex_state = 1}, + [18261] = {.lex_state = 125, .external_lex_state = 1}, + [18262] = {.lex_state = 302, .external_lex_state = 1}, + [18263] = {.lex_state = 302, .external_lex_state = 1}, + [18264] = {.lex_state = 302, .external_lex_state = 1}, + [18265] = {.lex_state = 302, .external_lex_state = 1}, + [18266] = {.lex_state = 0, .external_lex_state = 1}, + [18267] = {.lex_state = 125, .external_lex_state = 1}, + [18268] = {.lex_state = 302, .external_lex_state = 1}, + [18269] = {.lex_state = 125, .external_lex_state = 1}, + [18270] = {.lex_state = 302, .external_lex_state = 1}, + [18271] = {.lex_state = 125, .external_lex_state = 1}, + [18272] = {.lex_state = 125, .external_lex_state = 1}, + [18273] = {.lex_state = 125, .external_lex_state = 1}, + [18274] = {.lex_state = 302, .external_lex_state = 1}, + [18275] = {.lex_state = 302, .external_lex_state = 1}, + [18276] = {.lex_state = 125, .external_lex_state = 1}, + [18277] = {.lex_state = 125, .external_lex_state = 1}, + [18278] = {.lex_state = 125, .external_lex_state = 1}, + [18279] = {.lex_state = 234, .external_lex_state = 1}, + [18280] = {.lex_state = 125, .external_lex_state = 1}, + [18281] = {.lex_state = 125, .external_lex_state = 1}, + [18282] = {.lex_state = 452, .external_lex_state = 1}, + [18283] = {.lex_state = 302, .external_lex_state = 1}, + [18284] = {.lex_state = 302, .external_lex_state = 1}, + [18285] = {.lex_state = 302, .external_lex_state = 1}, + [18286] = {.lex_state = 302, .external_lex_state = 1}, + [18287] = {.lex_state = 302, .external_lex_state = 1}, + [18288] = {.lex_state = 302, .external_lex_state = 1}, + [18289] = {.lex_state = 302, .external_lex_state = 1}, + [18290] = {.lex_state = 302, .external_lex_state = 1}, + [18291] = {.lex_state = 302, .external_lex_state = 1}, + [18292] = {.lex_state = 302, .external_lex_state = 1}, + [18293] = {.lex_state = 302, .external_lex_state = 1}, + [18294] = {.lex_state = 547, .external_lex_state = 1}, + [18295] = {.lex_state = 302, .external_lex_state = 1}, + [18296] = {.lex_state = 547, .external_lex_state = 1}, + [18297] = {.lex_state = 302, .external_lex_state = 1}, + [18298] = {.lex_state = 302, .external_lex_state = 1}, + [18299] = {.lex_state = 302, .external_lex_state = 1}, + [18300] = {.lex_state = 302, .external_lex_state = 1}, + [18301] = {.lex_state = 302, .external_lex_state = 1}, + [18302] = {.lex_state = 302, .external_lex_state = 1}, + [18303] = {.lex_state = 302, .external_lex_state = 1}, + [18304] = {.lex_state = 125, .external_lex_state = 1}, + [18305] = {.lex_state = 302, .external_lex_state = 1}, + [18306] = {.lex_state = 125, .external_lex_state = 1}, + [18307] = {.lex_state = 547, .external_lex_state = 1}, + [18308] = {.lex_state = 547, .external_lex_state = 1}, + [18309] = {.lex_state = 302, .external_lex_state = 1}, + [18310] = {.lex_state = 302, .external_lex_state = 1}, + [18311] = {.lex_state = 302, .external_lex_state = 1}, + [18312] = {.lex_state = 302, .external_lex_state = 1}, + [18313] = {.lex_state = 302, .external_lex_state = 1}, + [18314] = {.lex_state = 124, .external_lex_state = 1}, + [18315] = {.lex_state = 547, .external_lex_state = 1}, + [18316] = {.lex_state = 302, .external_lex_state = 1}, + [18317] = {.lex_state = 125, .external_lex_state = 1}, + [18318] = {.lex_state = 125, .external_lex_state = 1}, + [18319] = {.lex_state = 125, .external_lex_state = 1}, + [18320] = {.lex_state = 124, .external_lex_state = 1}, + [18321] = {.lex_state = 302, .external_lex_state = 1}, + [18322] = {.lex_state = 234, .external_lex_state = 1}, + [18323] = {.lex_state = 125, .external_lex_state = 1}, + [18324] = {.lex_state = 125, .external_lex_state = 1}, + [18325] = {.lex_state = 125, .external_lex_state = 1}, + [18326] = {.lex_state = 547, .external_lex_state = 1}, + [18327] = {.lex_state = 302, .external_lex_state = 1}, + [18328] = {.lex_state = 302, .external_lex_state = 1}, + [18329] = {.lex_state = 125, .external_lex_state = 1}, + [18330] = {.lex_state = 125, .external_lex_state = 1}, + [18331] = {.lex_state = 547, .external_lex_state = 1}, + [18332] = {.lex_state = 234, .external_lex_state = 1}, + [18333] = {.lex_state = 547, .external_lex_state = 1}, + [18334] = {.lex_state = 547, .external_lex_state = 1}, + [18335] = {.lex_state = 547, .external_lex_state = 1}, + [18336] = {.lex_state = 302, .external_lex_state = 1}, + [18337] = {.lex_state = 302, .external_lex_state = 1}, + [18338] = {.lex_state = 452, .external_lex_state = 1}, + [18339] = {.lex_state = 302, .external_lex_state = 1}, + [18340] = {.lex_state = 302, .external_lex_state = 1}, + [18341] = {.lex_state = 302, .external_lex_state = 1}, + [18342] = {.lex_state = 302, .external_lex_state = 1}, + [18343] = {.lex_state = 302, .external_lex_state = 1}, + [18344] = {.lex_state = 125, .external_lex_state = 1}, + [18345] = {.lex_state = 519, .external_lex_state = 1}, + [18346] = {.lex_state = 125, .external_lex_state = 1}, + [18347] = {.lex_state = 547, .external_lex_state = 1}, + [18348] = {.lex_state = 547, .external_lex_state = 1}, + [18349] = {.lex_state = 125, .external_lex_state = 1}, + [18350] = {.lex_state = 0, .external_lex_state = 1}, + [18351] = {.lex_state = 302, .external_lex_state = 1}, + [18352] = {.lex_state = 302, .external_lex_state = 1}, + [18353] = {.lex_state = 302, .external_lex_state = 1}, + [18354] = {.lex_state = 125, .external_lex_state = 1}, + [18355] = {.lex_state = 302, .external_lex_state = 1}, + [18356] = {.lex_state = 302, .external_lex_state = 1}, + [18357] = {.lex_state = 302, .external_lex_state = 1}, + [18358] = {.lex_state = 125, .external_lex_state = 1}, + [18359] = {.lex_state = 547, .external_lex_state = 1}, + [18360] = {.lex_state = 125, .external_lex_state = 1}, + [18361] = {.lex_state = 125, .external_lex_state = 1}, + [18362] = {.lex_state = 547, .external_lex_state = 1}, + [18363] = {.lex_state = 125, .external_lex_state = 1}, + [18364] = {.lex_state = 302, .external_lex_state = 1}, + [18365] = {.lex_state = 125, .external_lex_state = 1}, + [18366] = {.lex_state = 125, .external_lex_state = 1}, + [18367] = {.lex_state = 125, .external_lex_state = 1}, + [18368] = {.lex_state = 302, .external_lex_state = 1}, + [18369] = {.lex_state = 302, .external_lex_state = 1}, + [18370] = {.lex_state = 302, .external_lex_state = 1}, + [18371] = {.lex_state = 125, .external_lex_state = 1}, + [18372] = {.lex_state = 125, .external_lex_state = 1}, + [18373] = {.lex_state = 302, .external_lex_state = 1}, + [18374] = {.lex_state = 125, .external_lex_state = 1}, + [18375] = {.lex_state = 124, .external_lex_state = 1}, + [18376] = {.lex_state = 302, .external_lex_state = 1}, + [18377] = {.lex_state = 302, .external_lex_state = 1}, + [18378] = {.lex_state = 547, .external_lex_state = 1}, + [18379] = {.lex_state = 302, .external_lex_state = 1}, + [18380] = {.lex_state = 302, .external_lex_state = 1}, + [18381] = {.lex_state = 547, .external_lex_state = 1}, + [18382] = {.lex_state = 302, .external_lex_state = 1}, + [18383] = {.lex_state = 125, .external_lex_state = 1}, + [18384] = {.lex_state = 547, .external_lex_state = 1}, + [18385] = {.lex_state = 547, .external_lex_state = 1}, + [18386] = {.lex_state = 547, .external_lex_state = 1}, + [18387] = {.lex_state = 302, .external_lex_state = 1}, + [18388] = {.lex_state = 302, .external_lex_state = 1}, + [18389] = {.lex_state = 302, .external_lex_state = 1}, + [18390] = {.lex_state = 302, .external_lex_state = 1}, + [18391] = {.lex_state = 125, .external_lex_state = 1}, + [18392] = {.lex_state = 125, .external_lex_state = 1}, + [18393] = {.lex_state = 125, .external_lex_state = 1}, + [18394] = {.lex_state = 302, .external_lex_state = 1}, + [18395] = {.lex_state = 302, .external_lex_state = 1}, + [18396] = {.lex_state = 232, .external_lex_state = 1}, + [18397] = {.lex_state = 302, .external_lex_state = 1}, + [18398] = {.lex_state = 125, .external_lex_state = 1}, + [18399] = {.lex_state = 125, .external_lex_state = 1}, + [18400] = {.lex_state = 234, .external_lex_state = 1}, + [18401] = {.lex_state = 125, .external_lex_state = 1}, + [18402] = {.lex_state = 302, .external_lex_state = 1}, + [18403] = {.lex_state = 125, .external_lex_state = 1}, + [18404] = {.lex_state = 125, .external_lex_state = 1}, + [18405] = {.lex_state = 125, .external_lex_state = 1}, + [18406] = {.lex_state = 302, .external_lex_state = 1}, + [18407] = {.lex_state = 125, .external_lex_state = 1}, + [18408] = {.lex_state = 302, .external_lex_state = 1}, + [18409] = {.lex_state = 302, .external_lex_state = 1}, + [18410] = {.lex_state = 302, .external_lex_state = 1}, + [18411] = {.lex_state = 547, .external_lex_state = 1}, + [18412] = {.lex_state = 547, .external_lex_state = 1}, + [18413] = {.lex_state = 234, .external_lex_state = 1}, + [18414] = {.lex_state = 125, .external_lex_state = 1}, + [18415] = {.lex_state = 125, .external_lex_state = 1}, + [18416] = {.lex_state = 547, .external_lex_state = 1}, + [18417] = {.lex_state = 125, .external_lex_state = 1}, + [18418] = {.lex_state = 547, .external_lex_state = 1}, + [18419] = {.lex_state = 547, .external_lex_state = 1}, + [18420] = {.lex_state = 125, .external_lex_state = 1}, + [18421] = {.lex_state = 302, .external_lex_state = 1}, + [18422] = {.lex_state = 125, .external_lex_state = 1}, + [18423] = {.lex_state = 302, .external_lex_state = 1}, + [18424] = {.lex_state = 302, .external_lex_state = 1}, + [18425] = {.lex_state = 125, .external_lex_state = 1}, + [18426] = {.lex_state = 302, .external_lex_state = 1}, + [18427] = {.lex_state = 302, .external_lex_state = 1}, + [18428] = {.lex_state = 302, .external_lex_state = 1}, + [18429] = {.lex_state = 125, .external_lex_state = 1}, + [18430] = {.lex_state = 302, .external_lex_state = 1}, + [18431] = {.lex_state = 125, .external_lex_state = 1}, + [18432] = {.lex_state = 302, .external_lex_state = 1}, + [18433] = {.lex_state = 302, .external_lex_state = 1}, + [18434] = {.lex_state = 302, .external_lex_state = 1}, + [18435] = {.lex_state = 302, .external_lex_state = 1}, + [18436] = {.lex_state = 302, .external_lex_state = 1}, + [18437] = {.lex_state = 125, .external_lex_state = 1}, + [18438] = {.lex_state = 125, .external_lex_state = 1}, + [18439] = {.lex_state = 302, .external_lex_state = 1}, + [18440] = {.lex_state = 302, .external_lex_state = 1}, + [18441] = {.lex_state = 547, .external_lex_state = 1}, + [18442] = {.lex_state = 302, .external_lex_state = 1}, + [18443] = {.lex_state = 125, .external_lex_state = 1}, + [18444] = {.lex_state = 302, .external_lex_state = 1}, + [18445] = {.lex_state = 302, .external_lex_state = 1}, + [18446] = {.lex_state = 125, .external_lex_state = 1}, + [18447] = {.lex_state = 125, .external_lex_state = 1}, + [18448] = {.lex_state = 547, .external_lex_state = 1}, + [18449] = {.lex_state = 547, .external_lex_state = 1}, + [18450] = {.lex_state = 547, .external_lex_state = 1}, + [18451] = {.lex_state = 547, .external_lex_state = 1}, + [18452] = {.lex_state = 547, .external_lex_state = 1}, + [18453] = {.lex_state = 302, .external_lex_state = 1}, + [18454] = {.lex_state = 125, .external_lex_state = 1}, + [18455] = {.lex_state = 125, .external_lex_state = 1}, + [18456] = {.lex_state = 302, .external_lex_state = 1}, + [18457] = {.lex_state = 302, .external_lex_state = 1}, + [18458] = {.lex_state = 302, .external_lex_state = 1}, + [18459] = {.lex_state = 302, .external_lex_state = 1}, + [18460] = {.lex_state = 124, .external_lex_state = 1}, + [18461] = {.lex_state = 547, .external_lex_state = 1}, + [18462] = {.lex_state = 302, .external_lex_state = 1}, + [18463] = {.lex_state = 125, .external_lex_state = 1}, + [18464] = {.lex_state = 302, .external_lex_state = 1}, + [18465] = {.lex_state = 125, .external_lex_state = 1}, + [18466] = {.lex_state = 125, .external_lex_state = 1}, + [18467] = {.lex_state = 547, .external_lex_state = 1}, + [18468] = {.lex_state = 124, .external_lex_state = 1}, + [18469] = {.lex_state = 0, .external_lex_state = 1}, + [18470] = {.lex_state = 547, .external_lex_state = 1}, + [18471] = {.lex_state = 302, .external_lex_state = 1}, + [18472] = {.lex_state = 125, .external_lex_state = 1}, + [18473] = {.lex_state = 125, .external_lex_state = 1}, + [18474] = {.lex_state = 125, .external_lex_state = 1}, + [18475] = {.lex_state = 547, .external_lex_state = 1}, + [18476] = {.lex_state = 547, .external_lex_state = 1}, + [18477] = {.lex_state = 302, .external_lex_state = 1}, + [18478] = {.lex_state = 125, .external_lex_state = 1}, + [18479] = {.lex_state = 125, .external_lex_state = 1}, + [18480] = {.lex_state = 125, .external_lex_state = 1}, + [18481] = {.lex_state = 302, .external_lex_state = 1}, + [18482] = {.lex_state = 125, .external_lex_state = 1}, + [18483] = {.lex_state = 124, .external_lex_state = 1}, + [18484] = {.lex_state = 547, .external_lex_state = 1}, + [18485] = {.lex_state = 124, .external_lex_state = 1}, + [18486] = {.lex_state = 131, .external_lex_state = 1}, + [18487] = {.lex_state = 302, .external_lex_state = 1}, + [18488] = {.lex_state = 302, .external_lex_state = 1}, + [18489] = {.lex_state = 125, .external_lex_state = 1}, + [18490] = {.lex_state = 125, .external_lex_state = 1}, + [18491] = {.lex_state = 125, .external_lex_state = 1}, + [18492] = {.lex_state = 125, .external_lex_state = 1}, + [18493] = {.lex_state = 125, .external_lex_state = 1}, + [18494] = {.lex_state = 125, .external_lex_state = 1}, + [18495] = {.lex_state = 546, .external_lex_state = 1}, + [18496] = {.lex_state = 546, .external_lex_state = 1}, + [18497] = {.lex_state = 0, .external_lex_state = 1}, + [18498] = {.lex_state = 125, .external_lex_state = 1}, + [18499] = {.lex_state = 125, .external_lex_state = 1}, + [18500] = {.lex_state = 125, .external_lex_state = 1}, + [18501] = {.lex_state = 302, .external_lex_state = 1}, + [18502] = {.lex_state = 302, .external_lex_state = 1}, + [18503] = {.lex_state = 125, .external_lex_state = 1}, + [18504] = {.lex_state = 547, .external_lex_state = 1}, + [18505] = {.lex_state = 125, .external_lex_state = 1}, + [18506] = {.lex_state = 125, .external_lex_state = 1}, + [18507] = {.lex_state = 125, .external_lex_state = 1}, + [18508] = {.lex_state = 302, .external_lex_state = 1}, + [18509] = {.lex_state = 302, .external_lex_state = 1}, + [18510] = {.lex_state = 302, .external_lex_state = 1}, + [18511] = {.lex_state = 302, .external_lex_state = 1}, + [18512] = {.lex_state = 124, .external_lex_state = 1}, + [18513] = {.lex_state = 125, .external_lex_state = 1}, + [18514] = {.lex_state = 302, .external_lex_state = 1}, + [18515] = {.lex_state = 125, .external_lex_state = 1}, + [18516] = {.lex_state = 302, .external_lex_state = 1}, + [18517] = {.lex_state = 125, .external_lex_state = 1}, + [18518] = {.lex_state = 302, .external_lex_state = 1}, + [18519] = {.lex_state = 302, .external_lex_state = 1}, + [18520] = {.lex_state = 125, .external_lex_state = 1}, + [18521] = {.lex_state = 125, .external_lex_state = 1}, + [18522] = {.lex_state = 125, .external_lex_state = 1}, + [18523] = {.lex_state = 302, .external_lex_state = 1}, + [18524] = {.lex_state = 302, .external_lex_state = 1}, + [18525] = {.lex_state = 302, .external_lex_state = 1}, + [18526] = {.lex_state = 302, .external_lex_state = 1}, + [18527] = {.lex_state = 302, .external_lex_state = 1}, + [18528] = {.lex_state = 302, .external_lex_state = 1}, + [18529] = {.lex_state = 125, .external_lex_state = 1}, + [18530] = {.lex_state = 125, .external_lex_state = 1}, + [18531] = {.lex_state = 125, .external_lex_state = 1}, + [18532] = {.lex_state = 547, .external_lex_state = 1}, + [18533] = {.lex_state = 302, .external_lex_state = 1}, + [18534] = {.lex_state = 302, .external_lex_state = 1}, + [18535] = {.lex_state = 302, .external_lex_state = 1}, + [18536] = {.lex_state = 302, .external_lex_state = 1}, + [18537] = {.lex_state = 547, .external_lex_state = 1}, + [18538] = {.lex_state = 547, .external_lex_state = 1}, + [18539] = {.lex_state = 302, .external_lex_state = 1}, + [18540] = {.lex_state = 302, .external_lex_state = 1}, + [18541] = {.lex_state = 302, .external_lex_state = 1}, + [18542] = {.lex_state = 302, .external_lex_state = 1}, + [18543] = {.lex_state = 302, .external_lex_state = 1}, + [18544] = {.lex_state = 519, .external_lex_state = 1}, + [18545] = {.lex_state = 302, .external_lex_state = 1}, + [18546] = {.lex_state = 302, .external_lex_state = 1}, + [18547] = {.lex_state = 302, .external_lex_state = 1}, + [18548] = {.lex_state = 124, .external_lex_state = 1}, + [18549] = {.lex_state = 125, .external_lex_state = 1}, + [18550] = {.lex_state = 302, .external_lex_state = 1}, + [18551] = {.lex_state = 302, .external_lex_state = 1}, + [18552] = {.lex_state = 122, .external_lex_state = 1}, + [18553] = {.lex_state = 122, .external_lex_state = 1}, + [18554] = {.lex_state = 302, .external_lex_state = 1}, + [18555] = {.lex_state = 302, .external_lex_state = 1}, + [18556] = {.lex_state = 125, .external_lex_state = 1}, + [18557] = {.lex_state = 547, .external_lex_state = 1}, + [18558] = {.lex_state = 547, .external_lex_state = 1}, + [18559] = {.lex_state = 547, .external_lex_state = 1}, + [18560] = {.lex_state = 125, .external_lex_state = 1}, + [18561] = {.lex_state = 125, .external_lex_state = 1}, + [18562] = {.lex_state = 125, .external_lex_state = 1}, + [18563] = {.lex_state = 234, .external_lex_state = 1}, + [18564] = {.lex_state = 302, .external_lex_state = 1}, + [18565] = {.lex_state = 125, .external_lex_state = 1}, + [18566] = {.lex_state = 234, .external_lex_state = 1}, + [18567] = {.lex_state = 125, .external_lex_state = 1}, + [18568] = {.lex_state = 125, .external_lex_state = 1}, + [18569] = {.lex_state = 302, .external_lex_state = 1}, + [18570] = {.lex_state = 125, .external_lex_state = 1}, + [18571] = {.lex_state = 125, .external_lex_state = 1}, + [18572] = {.lex_state = 0, .external_lex_state = 1}, + [18573] = {.lex_state = 125, .external_lex_state = 1}, + [18574] = {.lex_state = 125, .external_lex_state = 1}, + [18575] = {.lex_state = 302, .external_lex_state = 1}, + [18576] = {.lex_state = 302, .external_lex_state = 1}, + [18577] = {.lex_state = 125, .external_lex_state = 1}, + [18578] = {.lex_state = 125, .external_lex_state = 1}, + [18579] = {.lex_state = 125, .external_lex_state = 1}, + [18580] = {.lex_state = 125, .external_lex_state = 1}, + [18581] = {.lex_state = 302, .external_lex_state = 1}, + [18582] = {.lex_state = 302, .external_lex_state = 1}, + [18583] = {.lex_state = 302, .external_lex_state = 1}, + [18584] = {.lex_state = 125, .external_lex_state = 1}, + [18585] = {.lex_state = 302, .external_lex_state = 1}, + [18586] = {.lex_state = 302, .external_lex_state = 1}, + [18587] = {.lex_state = 125, .external_lex_state = 1}, + [18588] = {.lex_state = 546, .external_lex_state = 1}, + [18589] = {.lex_state = 125, .external_lex_state = 1}, + [18590] = {.lex_state = 302, .external_lex_state = 1}, + [18591] = {.lex_state = 302, .external_lex_state = 1}, + [18592] = {.lex_state = 302, .external_lex_state = 1}, + [18593] = {.lex_state = 302, .external_lex_state = 1}, + [18594] = {.lex_state = 124, .external_lex_state = 1}, + [18595] = {.lex_state = 302, .external_lex_state = 1}, + [18596] = {.lex_state = 302, .external_lex_state = 1}, + [18597] = {.lex_state = 302, .external_lex_state = 1}, + [18598] = {.lex_state = 302, .external_lex_state = 1}, + [18599] = {.lex_state = 302, .external_lex_state = 1}, + [18600] = {.lex_state = 302, .external_lex_state = 1}, + [18601] = {.lex_state = 547, .external_lex_state = 1}, + [18602] = {.lex_state = 519, .external_lex_state = 1}, + [18603] = {.lex_state = 302, .external_lex_state = 1}, + [18604] = {.lex_state = 125, .external_lex_state = 1}, + [18605] = {.lex_state = 302, .external_lex_state = 1}, + [18606] = {.lex_state = 302, .external_lex_state = 1}, + [18607] = {.lex_state = 125, .external_lex_state = 1}, + [18608] = {.lex_state = 302, .external_lex_state = 1}, + [18609] = {.lex_state = 125, .external_lex_state = 1}, + [18610] = {.lex_state = 302, .external_lex_state = 1}, + [18611] = {.lex_state = 302, .external_lex_state = 1}, + [18612] = {.lex_state = 125, .external_lex_state = 1}, + [18613] = {.lex_state = 546, .external_lex_state = 1}, + [18614] = {.lex_state = 125, .external_lex_state = 1}, + [18615] = {.lex_state = 302, .external_lex_state = 1}, + [18616] = {.lex_state = 302, .external_lex_state = 1}, + [18617] = {.lex_state = 125, .external_lex_state = 1}, + [18618] = {.lex_state = 302, .external_lex_state = 1}, + [18619] = {.lex_state = 302, .external_lex_state = 1}, + [18620] = {.lex_state = 124, .external_lex_state = 1}, + [18621] = {.lex_state = 125, .external_lex_state = 1}, + [18622] = {.lex_state = 302, .external_lex_state = 1}, + [18623] = {.lex_state = 125, .external_lex_state = 1}, + [18624] = {.lex_state = 547, .external_lex_state = 1}, + [18625] = {.lex_state = 302, .external_lex_state = 1}, + [18626] = {.lex_state = 125, .external_lex_state = 1}, + [18627] = {.lex_state = 125, .external_lex_state = 1}, + [18628] = {.lex_state = 302, .external_lex_state = 1}, + [18629] = {.lex_state = 125, .external_lex_state = 1}, + [18630] = {.lex_state = 302, .external_lex_state = 1}, + [18631] = {.lex_state = 302, .external_lex_state = 1}, + [18632] = {.lex_state = 125, .external_lex_state = 1}, + [18633] = {.lex_state = 125, .external_lex_state = 1}, + [18634] = {.lex_state = 125, .external_lex_state = 1}, + [18635] = {.lex_state = 546, .external_lex_state = 1}, + [18636] = {.lex_state = 125, .external_lex_state = 1}, + [18637] = {.lex_state = 302, .external_lex_state = 1}, + [18638] = {.lex_state = 125, .external_lex_state = 1}, + [18639] = {.lex_state = 125, .external_lex_state = 1}, + [18640] = {.lex_state = 125, .external_lex_state = 1}, + [18641] = {.lex_state = 302, .external_lex_state = 1}, + [18642] = {.lex_state = 125, .external_lex_state = 1}, + [18643] = {.lex_state = 302, .external_lex_state = 1}, + [18644] = {.lex_state = 302, .external_lex_state = 1}, + [18645] = {.lex_state = 302, .external_lex_state = 1}, + [18646] = {.lex_state = 302, .external_lex_state = 1}, + [18647] = {.lex_state = 302, .external_lex_state = 1}, + [18648] = {.lex_state = 302, .external_lex_state = 1}, + [18649] = {.lex_state = 124, .external_lex_state = 1}, + [18650] = {.lex_state = 302, .external_lex_state = 1}, + [18651] = {.lex_state = 302, .external_lex_state = 1}, + [18652] = {.lex_state = 302, .external_lex_state = 1}, + [18653] = {.lex_state = 302, .external_lex_state = 1}, + [18654] = {.lex_state = 302, .external_lex_state = 1}, + [18655] = {.lex_state = 547, .external_lex_state = 1}, + [18656] = {.lex_state = 302, .external_lex_state = 1}, + [18657] = {.lex_state = 302, .external_lex_state = 1}, + [18658] = {.lex_state = 302, .external_lex_state = 1}, + [18659] = {.lex_state = 302, .external_lex_state = 1}, + [18660] = {.lex_state = 302, .external_lex_state = 1}, + [18661] = {.lex_state = 0, .external_lex_state = 1}, + [18662] = {.lex_state = 302, .external_lex_state = 1}, + [18663] = {.lex_state = 125, .external_lex_state = 1}, + [18664] = {.lex_state = 302, .external_lex_state = 1}, + [18665] = {.lex_state = 124, .external_lex_state = 1}, + [18666] = {.lex_state = 547, .external_lex_state = 1}, + [18667] = {.lex_state = 302, .external_lex_state = 1}, + [18668] = {.lex_state = 302, .external_lex_state = 1}, + [18669] = {.lex_state = 302, .external_lex_state = 1}, + [18670] = {.lex_state = 302, .external_lex_state = 1}, + [18671] = {.lex_state = 302, .external_lex_state = 1}, + [18672] = {.lex_state = 302, .external_lex_state = 1}, + [18673] = {.lex_state = 125, .external_lex_state = 1}, + [18674] = {.lex_state = 124, .external_lex_state = 1}, + [18675] = {.lex_state = 124, .external_lex_state = 1}, + [18676] = {.lex_state = 125, .external_lex_state = 1}, + [18677] = {.lex_state = 546, .external_lex_state = 1}, + [18678] = {.lex_state = 125, .external_lex_state = 1}, + [18679] = {.lex_state = 125, .external_lex_state = 1}, + [18680] = {.lex_state = 125, .external_lex_state = 1}, + [18681] = {.lex_state = 125, .external_lex_state = 1}, + [18682] = {.lex_state = 546, .external_lex_state = 1}, + [18683] = {.lex_state = 546, .external_lex_state = 1}, + [18684] = {.lex_state = 546, .external_lex_state = 1}, + [18685] = {.lex_state = 546, .external_lex_state = 1}, + [18686] = {.lex_state = 125, .external_lex_state = 1}, + [18687] = {.lex_state = 125, .external_lex_state = 1}, + [18688] = {.lex_state = 546, .external_lex_state = 1}, + [18689] = {.lex_state = 546, .external_lex_state = 1}, + [18690] = {.lex_state = 546, .external_lex_state = 1}, + [18691] = {.lex_state = 547, .external_lex_state = 1}, + [18692] = {.lex_state = 125, .external_lex_state = 1}, + [18693] = {.lex_state = 125, .external_lex_state = 1}, + [18694] = {.lex_state = 125, .external_lex_state = 1}, + [18695] = {.lex_state = 125, .external_lex_state = 1}, + [18696] = {.lex_state = 302, .external_lex_state = 1}, + [18697] = {.lex_state = 125, .external_lex_state = 1}, + [18698] = {.lex_state = 302, .external_lex_state = 1}, + [18699] = {.lex_state = 302, .external_lex_state = 1}, + [18700] = {.lex_state = 302, .external_lex_state = 1}, + [18701] = {.lex_state = 452, .external_lex_state = 1}, + [18702] = {.lex_state = 302, .external_lex_state = 1}, + [18703] = {.lex_state = 302, .external_lex_state = 1}, + [18704] = {.lex_state = 302, .external_lex_state = 1}, + [18705] = {.lex_state = 547, .external_lex_state = 1}, + [18706] = {.lex_state = 125, .external_lex_state = 1}, + [18707] = {.lex_state = 125, .external_lex_state = 1}, + [18708] = {.lex_state = 124, .external_lex_state = 1}, + [18709] = {.lex_state = 125, .external_lex_state = 1}, + [18710] = {.lex_state = 125, .external_lex_state = 1}, + [18711] = {.lex_state = 547, .external_lex_state = 1}, + [18712] = {.lex_state = 547, .external_lex_state = 1}, + [18713] = {.lex_state = 547, .external_lex_state = 1}, + [18714] = {.lex_state = 125, .external_lex_state = 1}, + [18715] = {.lex_state = 124, .external_lex_state = 1}, + [18716] = {.lex_state = 125, .external_lex_state = 1}, + [18717] = {.lex_state = 547, .external_lex_state = 1}, + [18718] = {.lex_state = 547, .external_lex_state = 1}, + [18719] = {.lex_state = 0, .external_lex_state = 1}, + [18720] = {.lex_state = 125, .external_lex_state = 1}, + [18721] = {.lex_state = 547, .external_lex_state = 1}, + [18722] = {.lex_state = 547, .external_lex_state = 1}, + [18723] = {.lex_state = 125, .external_lex_state = 1}, + [18724] = {.lex_state = 124, .external_lex_state = 1}, + [18725] = {.lex_state = 125, .external_lex_state = 1}, + [18726] = {.lex_state = 125, .external_lex_state = 1}, + [18727] = {.lex_state = 547, .external_lex_state = 1}, + [18728] = {.lex_state = 125, .external_lex_state = 1}, + [18729] = {.lex_state = 547, .external_lex_state = 1}, + [18730] = {.lex_state = 125, .external_lex_state = 1}, + [18731] = {.lex_state = 125, .external_lex_state = 1}, + [18732] = {.lex_state = 547, .external_lex_state = 1}, + [18733] = {.lex_state = 125, .external_lex_state = 1}, + [18734] = {.lex_state = 125, .external_lex_state = 1}, + [18735] = {.lex_state = 125, .external_lex_state = 1}, + [18736] = {.lex_state = 547, .external_lex_state = 1}, + [18737] = {.lex_state = 547, .external_lex_state = 1}, + [18738] = {.lex_state = 547, .external_lex_state = 1}, + [18739] = {.lex_state = 125, .external_lex_state = 1}, + [18740] = {.lex_state = 124, .external_lex_state = 1}, + [18741] = {.lex_state = 125, .external_lex_state = 1}, + [18742] = {.lex_state = 452, .external_lex_state = 1}, + [18743] = {.lex_state = 122, .external_lex_state = 1}, + [18744] = {.lex_state = 125, .external_lex_state = 1}, + [18745] = {.lex_state = 547, .external_lex_state = 1}, + [18746] = {.lex_state = 125, .external_lex_state = 1}, + [18747] = {.lex_state = 125, .external_lex_state = 1}, + [18748] = {.lex_state = 122, .external_lex_state = 1}, + [18749] = {.lex_state = 125, .external_lex_state = 1}, + [18750] = {.lex_state = 125, .external_lex_state = 1}, + [18751] = {.lex_state = 125, .external_lex_state = 1}, + [18752] = {.lex_state = 125, .external_lex_state = 1}, + [18753] = {.lex_state = 125, .external_lex_state = 1}, + [18754] = {.lex_state = 125, .external_lex_state = 1}, + [18755] = {.lex_state = 547, .external_lex_state = 1}, + [18756] = {.lex_state = 547, .external_lex_state = 1}, + [18757] = {.lex_state = 547, .external_lex_state = 1}, + [18758] = {.lex_state = 452, .external_lex_state = 1}, + [18759] = {.lex_state = 124, .external_lex_state = 1}, + [18760] = {.lex_state = 125, .external_lex_state = 1}, + [18761] = {.lex_state = 125, .external_lex_state = 1}, + [18762] = {.lex_state = 125, .external_lex_state = 1}, + [18763] = {.lex_state = 547, .external_lex_state = 1}, + [18764] = {.lex_state = 125, .external_lex_state = 1}, + [18765] = {.lex_state = 452, .external_lex_state = 1}, + [18766] = {.lex_state = 125, .external_lex_state = 1}, + [18767] = {.lex_state = 125, .external_lex_state = 1}, + [18768] = {.lex_state = 452, .external_lex_state = 1}, + [18769] = {.lex_state = 122, .external_lex_state = 1}, + [18770] = {.lex_state = 547, .external_lex_state = 1}, + [18771] = {.lex_state = 547, .external_lex_state = 1}, + [18772] = {.lex_state = 547, .external_lex_state = 1}, + [18773] = {.lex_state = 125, .external_lex_state = 1}, + [18774] = {.lex_state = 547, .external_lex_state = 1}, + [18775] = {.lex_state = 547, .external_lex_state = 1}, + [18776] = {.lex_state = 547, .external_lex_state = 1}, + [18777] = {.lex_state = 547, .external_lex_state = 1}, + [18778] = {.lex_state = 547, .external_lex_state = 1}, + [18779] = {.lex_state = 547, .external_lex_state = 1}, + [18780] = {.lex_state = 547, .external_lex_state = 1}, + [18781] = {.lex_state = 547, .external_lex_state = 1}, + [18782] = {.lex_state = 547, .external_lex_state = 1}, + [18783] = {.lex_state = 547, .external_lex_state = 1}, + [18784] = {.lex_state = 547, .external_lex_state = 1}, + [18785] = {.lex_state = 547, .external_lex_state = 1}, + [18786] = {.lex_state = 547, .external_lex_state = 1}, + [18787] = {.lex_state = 547, .external_lex_state = 1}, + [18788] = {.lex_state = 547, .external_lex_state = 1}, + [18789] = {.lex_state = 547, .external_lex_state = 1}, + [18790] = {.lex_state = 547, .external_lex_state = 1}, + [18791] = {.lex_state = 547, .external_lex_state = 1}, + [18792] = {.lex_state = 547, .external_lex_state = 1}, + [18793] = {.lex_state = 547, .external_lex_state = 1}, + [18794] = {.lex_state = 547, .external_lex_state = 1}, + [18795] = {.lex_state = 547, .external_lex_state = 1}, + [18796] = {.lex_state = 547, .external_lex_state = 1}, + [18797] = {.lex_state = 547, .external_lex_state = 1}, + [18798] = {.lex_state = 547, .external_lex_state = 1}, + [18799] = {.lex_state = 547, .external_lex_state = 1}, + [18800] = {.lex_state = 547, .external_lex_state = 1}, + [18801] = {.lex_state = 547, .external_lex_state = 1}, + [18802] = {.lex_state = 547, .external_lex_state = 1}, + [18803] = {.lex_state = 547, .external_lex_state = 1}, + [18804] = {.lex_state = 547, .external_lex_state = 1}, + [18805] = {.lex_state = 547, .external_lex_state = 1}, + [18806] = {.lex_state = 125, .external_lex_state = 1}, + [18807] = {.lex_state = 125, .external_lex_state = 1}, + [18808] = {.lex_state = 125, .external_lex_state = 1}, + [18809] = {.lex_state = 547, .external_lex_state = 1}, + [18810] = {.lex_state = 242, .external_lex_state = 1}, + [18811] = {.lex_state = 125, .external_lex_state = 1}, + [18812] = {.lex_state = 125, .external_lex_state = 1}, + [18813] = {.lex_state = 242, .external_lex_state = 1}, + [18814] = {.lex_state = 547, .external_lex_state = 1}, + [18815] = {.lex_state = 125, .external_lex_state = 1}, + [18816] = {.lex_state = 125, .external_lex_state = 1}, + [18817] = {.lex_state = 129, .external_lex_state = 1}, + [18818] = {.lex_state = 124, .external_lex_state = 1}, + [18819] = {.lex_state = 125, .external_lex_state = 1}, + [18820] = {.lex_state = 547, .external_lex_state = 1}, + [18821] = {.lex_state = 125, .external_lex_state = 1}, + [18822] = {.lex_state = 547, .external_lex_state = 1}, + [18823] = {.lex_state = 131, .external_lex_state = 1}, + [18824] = {.lex_state = 547, .external_lex_state = 1}, + [18825] = {.lex_state = 242, .external_lex_state = 1}, + [18826] = {.lex_state = 242, .external_lex_state = 1}, + [18827] = {.lex_state = 125, .external_lex_state = 1}, + [18828] = {.lex_state = 547, .external_lex_state = 1}, + [18829] = {.lex_state = 125, .external_lex_state = 1}, + [18830] = {.lex_state = 547, .external_lex_state = 1}, + [18831] = {.lex_state = 125, .external_lex_state = 1}, + [18832] = {.lex_state = 547, .external_lex_state = 1}, + [18833] = {.lex_state = 125, .external_lex_state = 1}, + [18834] = {.lex_state = 547, .external_lex_state = 1}, + [18835] = {.lex_state = 125, .external_lex_state = 1}, + [18836] = {.lex_state = 124, .external_lex_state = 1}, + [18837] = {.lex_state = 547, .external_lex_state = 1}, + [18838] = {.lex_state = 547, .external_lex_state = 1}, + [18839] = {.lex_state = 125, .external_lex_state = 1}, + [18840] = {.lex_state = 547, .external_lex_state = 1}, + [18841] = {.lex_state = 547, .external_lex_state = 1}, + [18842] = {.lex_state = 125, .external_lex_state = 1}, + [18843] = {.lex_state = 547, .external_lex_state = 1}, + [18844] = {.lex_state = 125, .external_lex_state = 1}, + [18845] = {.lex_state = 232, .external_lex_state = 1}, + [18846] = {.lex_state = 232, .external_lex_state = 1}, + [18847] = {.lex_state = 232, .external_lex_state = 1}, + [18848] = {.lex_state = 547, .external_lex_state = 1}, + [18849] = {.lex_state = 125, .external_lex_state = 1}, + [18850] = {.lex_state = 547, .external_lex_state = 1}, + [18851] = {.lex_state = 547, .external_lex_state = 1}, + [18852] = {.lex_state = 452, .external_lex_state = 1}, + [18853] = {.lex_state = 547, .external_lex_state = 1}, + [18854] = {.lex_state = 125, .external_lex_state = 1}, + [18855] = {.lex_state = 232, .external_lex_state = 1}, + [18856] = {.lex_state = 125, .external_lex_state = 1}, + [18857] = {.lex_state = 125, .external_lex_state = 1}, + [18858] = {.lex_state = 547, .external_lex_state = 1}, + [18859] = {.lex_state = 125, .external_lex_state = 1}, + [18860] = {.lex_state = 547, .external_lex_state = 1}, + [18861] = {.lex_state = 125, .external_lex_state = 1}, + [18862] = {.lex_state = 547, .external_lex_state = 1}, + [18863] = {.lex_state = 547, .external_lex_state = 1}, + [18864] = {.lex_state = 125, .external_lex_state = 1}, + [18865] = {.lex_state = 547, .external_lex_state = 1}, + [18866] = {.lex_state = 547, .external_lex_state = 1}, + [18867] = {.lex_state = 232, .external_lex_state = 1}, + [18868] = {.lex_state = 547, .external_lex_state = 1}, + [18869] = {.lex_state = 125, .external_lex_state = 1}, + [18870] = {.lex_state = 125, .external_lex_state = 1}, + [18871] = {.lex_state = 232, .external_lex_state = 1}, + [18872] = {.lex_state = 125, .external_lex_state = 1}, + [18873] = {.lex_state = 124, .external_lex_state = 1}, + [18874] = {.lex_state = 125, .external_lex_state = 1}, + [18875] = {.lex_state = 547, .external_lex_state = 1}, + [18876] = {.lex_state = 232, .external_lex_state = 1}, + [18877] = {.lex_state = 125, .external_lex_state = 1}, + [18878] = {.lex_state = 125, .external_lex_state = 1}, + [18879] = {.lex_state = 125, .external_lex_state = 1}, + [18880] = {.lex_state = 125, .external_lex_state = 1}, + [18881] = {.lex_state = 547, .external_lex_state = 1}, + [18882] = {.lex_state = 125, .external_lex_state = 1}, + [18883] = {.lex_state = 125, .external_lex_state = 1}, + [18884] = {.lex_state = 547, .external_lex_state = 1}, + [18885] = {.lex_state = 452, .external_lex_state = 1}, + [18886] = {.lex_state = 124, .external_lex_state = 1}, + [18887] = {.lex_state = 125, .external_lex_state = 1}, + [18888] = {.lex_state = 125, .external_lex_state = 1}, + [18889] = {.lex_state = 125, .external_lex_state = 1}, + [18890] = {.lex_state = 452, .external_lex_state = 1}, + [18891] = {.lex_state = 125, .external_lex_state = 1}, + [18892] = {.lex_state = 125, .external_lex_state = 1}, + [18893] = {.lex_state = 125, .external_lex_state = 1}, + [18894] = {.lex_state = 125, .external_lex_state = 1}, + [18895] = {.lex_state = 547, .external_lex_state = 1}, + [18896] = {.lex_state = 125, .external_lex_state = 1}, + [18897] = {.lex_state = 547, .external_lex_state = 1}, + [18898] = {.lex_state = 452, .external_lex_state = 1}, + [18899] = {.lex_state = 452, .external_lex_state = 1}, + [18900] = {.lex_state = 129, .external_lex_state = 1}, + [18901] = {.lex_state = 547, .external_lex_state = 1}, + [18902] = {.lex_state = 547, .external_lex_state = 1}, + [18903] = {.lex_state = 125, .external_lex_state = 1}, + [18904] = {.lex_state = 547, .external_lex_state = 1}, + [18905] = {.lex_state = 547, .external_lex_state = 1}, + [18906] = {.lex_state = 547, .external_lex_state = 1}, + [18907] = {.lex_state = 125, .external_lex_state = 1}, + [18908] = {.lex_state = 547, .external_lex_state = 1}, + [18909] = {.lex_state = 547, .external_lex_state = 1}, + [18910] = {.lex_state = 547, .external_lex_state = 1}, + [18911] = {.lex_state = 125, .external_lex_state = 1}, + [18912] = {.lex_state = 547, .external_lex_state = 1}, + [18913] = {.lex_state = 125, .external_lex_state = 1}, + [18914] = {.lex_state = 125, .external_lex_state = 1}, + [18915] = {.lex_state = 547, .external_lex_state = 1}, + [18916] = {.lex_state = 547, .external_lex_state = 1}, + [18917] = {.lex_state = 125, .external_lex_state = 1}, + [18918] = {.lex_state = 547, .external_lex_state = 1}, + [18919] = {.lex_state = 125, .external_lex_state = 1}, + [18920] = {.lex_state = 125, .external_lex_state = 1}, + [18921] = {.lex_state = 547, .external_lex_state = 1}, + [18922] = {.lex_state = 125, .external_lex_state = 1}, + [18923] = {.lex_state = 124, .external_lex_state = 1}, + [18924] = {.lex_state = 125, .external_lex_state = 1}, + [18925] = {.lex_state = 232, .external_lex_state = 1}, + [18926] = {.lex_state = 232, .external_lex_state = 1}, + [18927] = {.lex_state = 547, .external_lex_state = 1}, + [18928] = {.lex_state = 242, .external_lex_state = 1}, + [18929] = {.lex_state = 547, .external_lex_state = 1}, + [18930] = {.lex_state = 547, .external_lex_state = 1}, + [18931] = {.lex_state = 124, .external_lex_state = 1}, + [18932] = {.lex_state = 547, .external_lex_state = 1}, + [18933] = {.lex_state = 242, .external_lex_state = 1}, + [18934] = {.lex_state = 125, .external_lex_state = 1}, + [18935] = {.lex_state = 547, .external_lex_state = 1}, + [18936] = {.lex_state = 125, .external_lex_state = 1}, + [18937] = {.lex_state = 547, .external_lex_state = 1}, + [18938] = {.lex_state = 547, .external_lex_state = 1}, + [18939] = {.lex_state = 125, .external_lex_state = 1}, + [18940] = {.lex_state = 547, .external_lex_state = 1}, + [18941] = {.lex_state = 125, .external_lex_state = 1}, + [18942] = {.lex_state = 547, .external_lex_state = 1}, + [18943] = {.lex_state = 124, .external_lex_state = 1}, + [18944] = {.lex_state = 547, .external_lex_state = 1}, + [18945] = {.lex_state = 125, .external_lex_state = 1}, + [18946] = {.lex_state = 547, .external_lex_state = 1}, + [18947] = {.lex_state = 125, .external_lex_state = 1}, + [18948] = {.lex_state = 122, .external_lex_state = 1}, + [18949] = {.lex_state = 125, .external_lex_state = 1}, + [18950] = {.lex_state = 125, .external_lex_state = 1}, + [18951] = {.lex_state = 125, .external_lex_state = 1}, + [18952] = {.lex_state = 547, .external_lex_state = 1}, + [18953] = {.lex_state = 125, .external_lex_state = 1}, + [18954] = {.lex_state = 452, .external_lex_state = 1}, + [18955] = {.lex_state = 547, .external_lex_state = 1}, + [18956] = {.lex_state = 125, .external_lex_state = 1}, + [18957] = {.lex_state = 547, .external_lex_state = 1}, + [18958] = {.lex_state = 125, .external_lex_state = 1}, + [18959] = {.lex_state = 125, .external_lex_state = 1}, + [18960] = {.lex_state = 125, .external_lex_state = 1}, + [18961] = {.lex_state = 125, .external_lex_state = 1}, + [18962] = {.lex_state = 125, .external_lex_state = 1}, + [18963] = {.lex_state = 232, .external_lex_state = 1}, + [18964] = {.lex_state = 547, .external_lex_state = 1}, + [18965] = {.lex_state = 125, .external_lex_state = 1}, + [18966] = {.lex_state = 547, .external_lex_state = 1}, + [18967] = {.lex_state = 547, .external_lex_state = 1}, + [18968] = {.lex_state = 547, .external_lex_state = 1}, + [18969] = {.lex_state = 125, .external_lex_state = 1}, + [18970] = {.lex_state = 125, .external_lex_state = 1}, + [18971] = {.lex_state = 452, .external_lex_state = 1}, + [18972] = {.lex_state = 547, .external_lex_state = 1}, + [18973] = {.lex_state = 124, .external_lex_state = 1}, + [18974] = {.lex_state = 547, .external_lex_state = 1}, + [18975] = {.lex_state = 125, .external_lex_state = 1}, + [18976] = {.lex_state = 547, .external_lex_state = 1}, + [18977] = {.lex_state = 125, .external_lex_state = 1}, + [18978] = {.lex_state = 125, .external_lex_state = 1}, + [18979] = {.lex_state = 547, .external_lex_state = 1}, + [18980] = {.lex_state = 125, .external_lex_state = 1}, + [18981] = {.lex_state = 547, .external_lex_state = 1}, + [18982] = {.lex_state = 547, .external_lex_state = 1}, + [18983] = {.lex_state = 547, .external_lex_state = 1}, + [18984] = {.lex_state = 125, .external_lex_state = 1}, + [18985] = {.lex_state = 125, .external_lex_state = 1}, + [18986] = {.lex_state = 125, .external_lex_state = 1}, + [18987] = {.lex_state = 547, .external_lex_state = 1}, + [18988] = {.lex_state = 125, .external_lex_state = 1}, + [18989] = {.lex_state = 547, .external_lex_state = 1}, + [18990] = {.lex_state = 547, .external_lex_state = 1}, + [18991] = {.lex_state = 125, .external_lex_state = 1}, + [18992] = {.lex_state = 547, .external_lex_state = 1}, + [18993] = {.lex_state = 547, .external_lex_state = 1}, + [18994] = {.lex_state = 232, .external_lex_state = 1}, + [18995] = {.lex_state = 547, .external_lex_state = 1}, + [18996] = {.lex_state = 125, .external_lex_state = 1}, + [18997] = {.lex_state = 125, .external_lex_state = 1}, + [18998] = {.lex_state = 125, .external_lex_state = 1}, + [18999] = {.lex_state = 125, .external_lex_state = 1}, + [19000] = {.lex_state = 547, .external_lex_state = 1}, + [19001] = {.lex_state = 232, .external_lex_state = 1}, + [19002] = {.lex_state = 232, .external_lex_state = 1}, + [19003] = {.lex_state = 547, .external_lex_state = 1}, + [19004] = {.lex_state = 232, .external_lex_state = 1}, + [19005] = {.lex_state = 547, .external_lex_state = 1}, + [19006] = {.lex_state = 242, .external_lex_state = 1}, + [19007] = {.lex_state = 242, .external_lex_state = 1}, + [19008] = {.lex_state = 547, .external_lex_state = 1}, + [19009] = {.lex_state = 452, .external_lex_state = 1}, + [19010] = {.lex_state = 547, .external_lex_state = 1}, + [19011] = {.lex_state = 547, .external_lex_state = 1}, + [19012] = {.lex_state = 452, .external_lex_state = 1}, + [19013] = {.lex_state = 452, .external_lex_state = 1}, + [19014] = {.lex_state = 125, .external_lex_state = 1}, + [19015] = {.lex_state = 547, .external_lex_state = 1}, + [19016] = {.lex_state = 547, .external_lex_state = 1}, + [19017] = {.lex_state = 547, .external_lex_state = 1}, + [19018] = {.lex_state = 547, .external_lex_state = 1}, + [19019] = {.lex_state = 125, .external_lex_state = 1}, + [19020] = {.lex_state = 547, .external_lex_state = 1}, + [19021] = {.lex_state = 124, .external_lex_state = 1}, + [19022] = {.lex_state = 547, .external_lex_state = 1}, + [19023] = {.lex_state = 547, .external_lex_state = 1}, + [19024] = {.lex_state = 547, .external_lex_state = 1}, + [19025] = {.lex_state = 547, .external_lex_state = 1}, + [19026] = {.lex_state = 547, .external_lex_state = 1}, + [19027] = {.lex_state = 125, .external_lex_state = 1}, + [19028] = {.lex_state = 125, .external_lex_state = 1}, + [19029] = {.lex_state = 232, .external_lex_state = 1}, + [19030] = {.lex_state = 547, .external_lex_state = 1}, + [19031] = {.lex_state = 131, .external_lex_state = 1}, + [19032] = {.lex_state = 547, .external_lex_state = 1}, + [19033] = {.lex_state = 125, .external_lex_state = 1}, + [19034] = {.lex_state = 125, .external_lex_state = 1}, + [19035] = {.lex_state = 0, .external_lex_state = 1}, + [19036] = {.lex_state = 547, .external_lex_state = 1}, + [19037] = {.lex_state = 547, .external_lex_state = 1}, + [19038] = {.lex_state = 125, .external_lex_state = 1}, + [19039] = {.lex_state = 125, .external_lex_state = 1}, + [19040] = {.lex_state = 547, .external_lex_state = 1}, + [19041] = {.lex_state = 547, .external_lex_state = 1}, + [19042] = {.lex_state = 547, .external_lex_state = 1}, + [19043] = {.lex_state = 125, .external_lex_state = 1}, + [19044] = {.lex_state = 547, .external_lex_state = 1}, + [19045] = {.lex_state = 547, .external_lex_state = 1}, + [19046] = {.lex_state = 125, .external_lex_state = 1}, + [19047] = {.lex_state = 547, .external_lex_state = 1}, + [19048] = {.lex_state = 125, .external_lex_state = 1}, + [19049] = {.lex_state = 232, .external_lex_state = 1}, + [19050] = {.lex_state = 547, .external_lex_state = 1}, + [19051] = {.lex_state = 547, .external_lex_state = 1}, + [19052] = {.lex_state = 547, .external_lex_state = 1}, + [19053] = {.lex_state = 547, .external_lex_state = 1}, + [19054] = {.lex_state = 125, .external_lex_state = 1}, + [19055] = {.lex_state = 125, .external_lex_state = 1}, + [19056] = {.lex_state = 547, .external_lex_state = 1}, + [19057] = {.lex_state = 125, .external_lex_state = 1}, + [19058] = {.lex_state = 547, .external_lex_state = 1}, + [19059] = {.lex_state = 129, .external_lex_state = 1}, + [19060] = {.lex_state = 125, .external_lex_state = 1}, + [19061] = {.lex_state = 547, .external_lex_state = 1}, + [19062] = {.lex_state = 547, .external_lex_state = 1}, + [19063] = {.lex_state = 125, .external_lex_state = 1}, + [19064] = {.lex_state = 124, .external_lex_state = 1}, + [19065] = {.lex_state = 547, .external_lex_state = 1}, + [19066] = {.lex_state = 125, .external_lex_state = 1}, + [19067] = {.lex_state = 547, .external_lex_state = 1}, + [19068] = {.lex_state = 547, .external_lex_state = 1}, + [19069] = {.lex_state = 125, .external_lex_state = 1}, + [19070] = {.lex_state = 124, .external_lex_state = 1}, + [19071] = {.lex_state = 547, .external_lex_state = 1}, + [19072] = {.lex_state = 547, .external_lex_state = 1}, + [19073] = {.lex_state = 0, .external_lex_state = 1}, + [19074] = {.lex_state = 547, .external_lex_state = 1}, + [19075] = {.lex_state = 547, .external_lex_state = 1}, + [19076] = {.lex_state = 125, .external_lex_state = 1}, + [19077] = {.lex_state = 125, .external_lex_state = 1}, + [19078] = {.lex_state = 547, .external_lex_state = 1}, + [19079] = {.lex_state = 547, .external_lex_state = 1}, + [19080] = {.lex_state = 547, .external_lex_state = 1}, + [19081] = {.lex_state = 125, .external_lex_state = 1}, + [19082] = {.lex_state = 125, .external_lex_state = 1}, + [19083] = {.lex_state = 125, .external_lex_state = 1}, + [19084] = {.lex_state = 547, .external_lex_state = 1}, + [19085] = {.lex_state = 125, .external_lex_state = 1}, + [19086] = {.lex_state = 125, .external_lex_state = 1}, + [19087] = {.lex_state = 125, .external_lex_state = 1}, + [19088] = {.lex_state = 125, .external_lex_state = 1}, + [19089] = {.lex_state = 547, .external_lex_state = 1}, + [19090] = {.lex_state = 125, .external_lex_state = 1}, + [19091] = {.lex_state = 125, .external_lex_state = 1}, + [19092] = {.lex_state = 124, .external_lex_state = 1}, + [19093] = {.lex_state = 124, .external_lex_state = 1}, + [19094] = {.lex_state = 452, .external_lex_state = 1}, + [19095] = {.lex_state = 547, .external_lex_state = 1}, + [19096] = {.lex_state = 547, .external_lex_state = 1}, + [19097] = {.lex_state = 125, .external_lex_state = 1}, + [19098] = {.lex_state = 547, .external_lex_state = 1}, + [19099] = {.lex_state = 125, .external_lex_state = 1}, + [19100] = {.lex_state = 125, .external_lex_state = 1}, + [19101] = {.lex_state = 452, .external_lex_state = 1}, + [19102] = {.lex_state = 125, .external_lex_state = 1}, + [19103] = {.lex_state = 124, .external_lex_state = 1}, + [19104] = {.lex_state = 0, .external_lex_state = 1}, + [19105] = {.lex_state = 547, .external_lex_state = 1}, + [19106] = {.lex_state = 125, .external_lex_state = 1}, + [19107] = {.lex_state = 125, .external_lex_state = 1}, + [19108] = {.lex_state = 125, .external_lex_state = 1}, + [19109] = {.lex_state = 125, .external_lex_state = 1}, + [19110] = {.lex_state = 125, .external_lex_state = 1}, + [19111] = {.lex_state = 547, .external_lex_state = 1}, + [19112] = {.lex_state = 125, .external_lex_state = 1}, + [19113] = {.lex_state = 125, .external_lex_state = 1}, + [19114] = {.lex_state = 125, .external_lex_state = 1}, + [19115] = {.lex_state = 547, .external_lex_state = 1}, + [19116] = {.lex_state = 547, .external_lex_state = 1}, + [19117] = {.lex_state = 125, .external_lex_state = 1}, + [19118] = {.lex_state = 547, .external_lex_state = 1}, + [19119] = {.lex_state = 452, .external_lex_state = 1}, + [19120] = {.lex_state = 547, .external_lex_state = 1}, + [19121] = {.lex_state = 547, .external_lex_state = 1}, + [19122] = {.lex_state = 452, .external_lex_state = 1}, + [19123] = {.lex_state = 452, .external_lex_state = 1}, + [19124] = {.lex_state = 547, .external_lex_state = 1}, + [19125] = {.lex_state = 547, .external_lex_state = 1}, + [19126] = {.lex_state = 546, .external_lex_state = 1}, + [19127] = {.lex_state = 547, .external_lex_state = 1}, + [19128] = {.lex_state = 124, .external_lex_state = 1}, + [19129] = {.lex_state = 547, .external_lex_state = 1}, + [19130] = {.lex_state = 547, .external_lex_state = 1}, + [19131] = {.lex_state = 490, .external_lex_state = 1}, + [19132] = {.lex_state = 125, .external_lex_state = 1}, + [19133] = {.lex_state = 125, .external_lex_state = 1}, + [19134] = {.lex_state = 129, .external_lex_state = 1}, + [19135] = {.lex_state = 547, .external_lex_state = 1}, + [19136] = {.lex_state = 547, .external_lex_state = 1}, + [19137] = {.lex_state = 125, .external_lex_state = 1}, + [19138] = {.lex_state = 125, .external_lex_state = 1}, + [19139] = {.lex_state = 547, .external_lex_state = 1}, + [19140] = {.lex_state = 547, .external_lex_state = 1}, + [19141] = {.lex_state = 547, .external_lex_state = 1}, + [19142] = {.lex_state = 125, .external_lex_state = 1}, + [19143] = {.lex_state = 547, .external_lex_state = 1}, + [19144] = {.lex_state = 125, .external_lex_state = 1}, + [19145] = {.lex_state = 125, .external_lex_state = 1}, + [19146] = {.lex_state = 125, .external_lex_state = 1}, + [19147] = {.lex_state = 125, .external_lex_state = 1}, + [19148] = {.lex_state = 547, .external_lex_state = 1}, + [19149] = {.lex_state = 129, .external_lex_state = 1}, + [19150] = {.lex_state = 547, .external_lex_state = 1}, + [19151] = {.lex_state = 125, .external_lex_state = 1}, + [19152] = {.lex_state = 124, .external_lex_state = 1}, + [19153] = {.lex_state = 547, .external_lex_state = 1}, + [19154] = {.lex_state = 547, .external_lex_state = 1}, + [19155] = {.lex_state = 547, .external_lex_state = 1}, + [19156] = {.lex_state = 125, .external_lex_state = 1}, + [19157] = {.lex_state = 548, .external_lex_state = 1}, + [19158] = {.lex_state = 547, .external_lex_state = 1}, + [19159] = {.lex_state = 125, .external_lex_state = 1}, + [19160] = {.lex_state = 125, .external_lex_state = 1}, + [19161] = {.lex_state = 125, .external_lex_state = 1}, + [19162] = {.lex_state = 124, .external_lex_state = 1}, + [19163] = {.lex_state = 125, .external_lex_state = 1}, + [19164] = {.lex_state = 125, .external_lex_state = 1}, + [19165] = {.lex_state = 125, .external_lex_state = 1}, + [19166] = {.lex_state = 547, .external_lex_state = 1}, + [19167] = {.lex_state = 547, .external_lex_state = 1}, + [19168] = {.lex_state = 125, .external_lex_state = 1}, + [19169] = {.lex_state = 547, .external_lex_state = 1}, + [19170] = {.lex_state = 125, .external_lex_state = 1}, + [19171] = {.lex_state = 125, .external_lex_state = 1}, + [19172] = {.lex_state = 125, .external_lex_state = 1}, + [19173] = {.lex_state = 125, .external_lex_state = 1}, + [19174] = {.lex_state = 242, .external_lex_state = 1}, + [19175] = {.lex_state = 125, .external_lex_state = 1}, + [19176] = {.lex_state = 125, .external_lex_state = 1}, + [19177] = {.lex_state = 547, .external_lex_state = 1}, + [19178] = {.lex_state = 547, .external_lex_state = 1}, + [19179] = {.lex_state = 125, .external_lex_state = 1}, + [19180] = {.lex_state = 125, .external_lex_state = 1}, + [19181] = {.lex_state = 125, .external_lex_state = 1}, + [19182] = {.lex_state = 125, .external_lex_state = 1}, + [19183] = {.lex_state = 125, .external_lex_state = 1}, + [19184] = {.lex_state = 125, .external_lex_state = 1}, + [19185] = {.lex_state = 125, .external_lex_state = 1}, + [19186] = {.lex_state = 547, .external_lex_state = 1}, + [19187] = {.lex_state = 547, .external_lex_state = 1}, + [19188] = {.lex_state = 547, .external_lex_state = 1}, + [19189] = {.lex_state = 547, .external_lex_state = 1}, + [19190] = {.lex_state = 125, .external_lex_state = 1}, + [19191] = {.lex_state = 547, .external_lex_state = 1}, + [19192] = {.lex_state = 547, .external_lex_state = 1}, + [19193] = {.lex_state = 547, .external_lex_state = 1}, + [19194] = {.lex_state = 124, .external_lex_state = 1}, + [19195] = {.lex_state = 125, .external_lex_state = 1}, + [19196] = {.lex_state = 547, .external_lex_state = 1}, + [19197] = {.lex_state = 547, .external_lex_state = 1}, + [19198] = {.lex_state = 547, .external_lex_state = 1}, + [19199] = {.lex_state = 125, .external_lex_state = 1}, + [19200] = {.lex_state = 0, .external_lex_state = 1}, + [19201] = {.lex_state = 124, .external_lex_state = 1}, + [19202] = {.lex_state = 547, .external_lex_state = 1}, + [19203] = {.lex_state = 125, .external_lex_state = 1}, + [19204] = {.lex_state = 125, .external_lex_state = 1}, + [19205] = {.lex_state = 547, .external_lex_state = 1}, + [19206] = {.lex_state = 125, .external_lex_state = 1}, + [19207] = {.lex_state = 125, .external_lex_state = 1}, + [19208] = {.lex_state = 125, .external_lex_state = 1}, + [19209] = {.lex_state = 125, .external_lex_state = 1}, + [19210] = {.lex_state = 125, .external_lex_state = 1}, + [19211] = {.lex_state = 547, .external_lex_state = 1}, + [19212] = {.lex_state = 547, .external_lex_state = 1}, + [19213] = {.lex_state = 547, .external_lex_state = 1}, + [19214] = {.lex_state = 125, .external_lex_state = 1}, + [19215] = {.lex_state = 125, .external_lex_state = 1}, + [19216] = {.lex_state = 548, .external_lex_state = 1}, + [19217] = {.lex_state = 547, .external_lex_state = 1}, + [19218] = {.lex_state = 242, .external_lex_state = 1}, + [19219] = {.lex_state = 125, .external_lex_state = 1}, + [19220] = {.lex_state = 125, .external_lex_state = 1}, + [19221] = {.lex_state = 124, .external_lex_state = 1}, + [19222] = {.lex_state = 124, .external_lex_state = 1}, + [19223] = {.lex_state = 548, .external_lex_state = 1}, + [19224] = {.lex_state = 125, .external_lex_state = 1}, + [19225] = {.lex_state = 242, .external_lex_state = 1}, + [19226] = {.lex_state = 125, .external_lex_state = 1}, + [19227] = {.lex_state = 0, .external_lex_state = 1}, + [19228] = {.lex_state = 547, .external_lex_state = 1}, + [19229] = {.lex_state = 547, .external_lex_state = 1}, + [19230] = {.lex_state = 125, .external_lex_state = 1}, + [19231] = {.lex_state = 125, .external_lex_state = 1}, + [19232] = {.lex_state = 547, .external_lex_state = 1}, + [19233] = {.lex_state = 125, .external_lex_state = 1}, + [19234] = {.lex_state = 123, .external_lex_state = 1}, + [19235] = {.lex_state = 125, .external_lex_state = 1}, + [19236] = {.lex_state = 125, .external_lex_state = 1}, + [19237] = {.lex_state = 125, .external_lex_state = 1}, + [19238] = {.lex_state = 547, .external_lex_state = 1}, + [19239] = {.lex_state = 125, .external_lex_state = 1}, + [19240] = {.lex_state = 125, .external_lex_state = 1}, + [19241] = {.lex_state = 125, .external_lex_state = 1}, + [19242] = {.lex_state = 547, .external_lex_state = 1}, + [19243] = {.lex_state = 125, .external_lex_state = 1}, + [19244] = {.lex_state = 124, .external_lex_state = 1}, + [19245] = {.lex_state = 123, .external_lex_state = 1}, + [19246] = {.lex_state = 547, .external_lex_state = 1}, + [19247] = {.lex_state = 452, .external_lex_state = 1}, + [19248] = {.lex_state = 122, .external_lex_state = 1}, + [19249] = {.lex_state = 125, .external_lex_state = 1}, + [19250] = {.lex_state = 125, .external_lex_state = 1}, + [19251] = {.lex_state = 122, .external_lex_state = 1}, + [19252] = {.lex_state = 122, .external_lex_state = 1}, + [19253] = {.lex_state = 547, .external_lex_state = 1}, + [19254] = {.lex_state = 242, .external_lex_state = 1}, + [19255] = {.lex_state = 125, .external_lex_state = 1}, + [19256] = {.lex_state = 125, .external_lex_state = 1}, + [19257] = {.lex_state = 547, .external_lex_state = 1}, + [19258] = {.lex_state = 547, .external_lex_state = 1}, + [19259] = {.lex_state = 125, .external_lex_state = 1}, + [19260] = {.lex_state = 547, .external_lex_state = 1}, + [19261] = {.lex_state = 547, .external_lex_state = 1}, + [19262] = {.lex_state = 0, .external_lex_state = 1}, + [19263] = {.lex_state = 0, .external_lex_state = 1}, + [19264] = {.lex_state = 0, .external_lex_state = 1}, + [19265] = {.lex_state = 0, .external_lex_state = 1}, + [19266] = {.lex_state = 0, .external_lex_state = 1}, + [19267] = {.lex_state = 0, .external_lex_state = 1}, + [19268] = {.lex_state = 0, .external_lex_state = 1}, + [19269] = {.lex_state = 0, .external_lex_state = 1}, + [19270] = {.lex_state = 0, .external_lex_state = 1}, + [19271] = {.lex_state = 125, .external_lex_state = 1}, + [19272] = {.lex_state = 125, .external_lex_state = 1}, + [19273] = {.lex_state = 0, .external_lex_state = 1}, + [19274] = {.lex_state = 0, .external_lex_state = 1}, + [19275] = {.lex_state = 0, .external_lex_state = 1}, + [19276] = {.lex_state = 0, .external_lex_state = 1}, + [19277] = {.lex_state = 0, .external_lex_state = 1}, + [19278] = {.lex_state = 0, .external_lex_state = 1}, + [19279] = {.lex_state = 0, .external_lex_state = 1}, + [19280] = {.lex_state = 0, .external_lex_state = 1}, + [19281] = {.lex_state = 0, .external_lex_state = 1}, + [19282] = {.lex_state = 0, .external_lex_state = 1}, + [19283] = {.lex_state = 0, .external_lex_state = 1}, + [19284] = {.lex_state = 0, .external_lex_state = 1}, + [19285] = {.lex_state = 0, .external_lex_state = 1}, + [19286] = {.lex_state = 0, .external_lex_state = 1}, + [19287] = {.lex_state = 0, .external_lex_state = 1}, + [19288] = {.lex_state = 0, .external_lex_state = 1}, + [19289] = {.lex_state = 0, .external_lex_state = 1}, + [19290] = {.lex_state = 125, .external_lex_state = 1}, + [19291] = {.lex_state = 0, .external_lex_state = 1}, + [19292] = {.lex_state = 0, .external_lex_state = 1}, + [19293] = {.lex_state = 125, .external_lex_state = 1}, + [19294] = {.lex_state = 0, .external_lex_state = 1}, + [19295] = {.lex_state = 0, .external_lex_state = 1}, + [19296] = {.lex_state = 0, .external_lex_state = 1}, + [19297] = {.lex_state = 0, .external_lex_state = 1}, + [19298] = {.lex_state = 0, .external_lex_state = 1}, + [19299] = {.lex_state = 0, .external_lex_state = 1}, + [19300] = {.lex_state = 0, .external_lex_state = 1}, + [19301] = {.lex_state = 0, .external_lex_state = 1}, + [19302] = {.lex_state = 125, .external_lex_state = 1}, + [19303] = {.lex_state = 0, .external_lex_state = 1}, + [19304] = {.lex_state = 0, .external_lex_state = 1}, + [19305] = {.lex_state = 0, .external_lex_state = 1}, + [19306] = {.lex_state = 0, .external_lex_state = 1}, + [19307] = {.lex_state = 0, .external_lex_state = 1}, + [19308] = {.lex_state = 0, .external_lex_state = 1}, + [19309] = {.lex_state = 0, .external_lex_state = 1}, + [19310] = {.lex_state = 0, .external_lex_state = 1}, + [19311] = {.lex_state = 0, .external_lex_state = 1}, + [19312] = {.lex_state = 0, .external_lex_state = 1}, + [19313] = {.lex_state = 131, .external_lex_state = 1}, + [19314] = {.lex_state = 0, .external_lex_state = 1}, + [19315] = {.lex_state = 125, .external_lex_state = 1}, + [19316] = {.lex_state = 0, .external_lex_state = 1}, + [19317] = {.lex_state = 125, .external_lex_state = 1}, + [19318] = {.lex_state = 0, .external_lex_state = 1}, + [19319] = {.lex_state = 0, .external_lex_state = 1}, + [19320] = {.lex_state = 0, .external_lex_state = 1}, + [19321] = {.lex_state = 0, .external_lex_state = 1}, + [19322] = {.lex_state = 0, .external_lex_state = 1}, + [19323] = {.lex_state = 0, .external_lex_state = 1}, + [19324] = {.lex_state = 0, .external_lex_state = 1}, + [19325] = {.lex_state = 0, .external_lex_state = 1}, + [19326] = {.lex_state = 0, .external_lex_state = 1}, + [19327] = {.lex_state = 0, .external_lex_state = 1}, + [19328] = {.lex_state = 0, .external_lex_state = 1}, + [19329] = {.lex_state = 0, .external_lex_state = 1}, + [19330] = {.lex_state = 0, .external_lex_state = 1}, + [19331] = {.lex_state = 0, .external_lex_state = 1}, + [19332] = {.lex_state = 0, .external_lex_state = 1}, + [19333] = {.lex_state = 0, .external_lex_state = 1}, + [19334] = {.lex_state = 0, .external_lex_state = 1}, + [19335] = {.lex_state = 0, .external_lex_state = 1}, + [19336] = {.lex_state = 0, .external_lex_state = 1}, + [19337] = {.lex_state = 0, .external_lex_state = 1}, + [19338] = {.lex_state = 0, .external_lex_state = 1}, + [19339] = {.lex_state = 0, .external_lex_state = 1}, + [19340] = {.lex_state = 0, .external_lex_state = 1}, + [19341] = {.lex_state = 0, .external_lex_state = 1}, + [19342] = {.lex_state = 0, .external_lex_state = 1}, + [19343] = {.lex_state = 0, .external_lex_state = 1}, + [19344] = {.lex_state = 0, .external_lex_state = 1}, + [19345] = {.lex_state = 0, .external_lex_state = 1}, + [19346] = {.lex_state = 0, .external_lex_state = 1}, + [19347] = {.lex_state = 0, .external_lex_state = 1}, + [19348] = {.lex_state = 0, .external_lex_state = 1}, + [19349] = {.lex_state = 0, .external_lex_state = 1}, + [19350] = {.lex_state = 0, .external_lex_state = 1}, + [19351] = {.lex_state = 0, .external_lex_state = 1}, + [19352] = {.lex_state = 0, .external_lex_state = 1}, + [19353] = {.lex_state = 0, .external_lex_state = 1}, + [19354] = {.lex_state = 0, .external_lex_state = 1}, + [19355] = {.lex_state = 0, .external_lex_state = 1}, + [19356] = {.lex_state = 0, .external_lex_state = 1}, + [19357] = {.lex_state = 0, .external_lex_state = 1}, + [19358] = {.lex_state = 0, .external_lex_state = 1}, + [19359] = {.lex_state = 0, .external_lex_state = 1}, + [19360] = {.lex_state = 0, .external_lex_state = 1}, + [19361] = {.lex_state = 0, .external_lex_state = 1}, + [19362] = {.lex_state = 0, .external_lex_state = 1}, + [19363] = {.lex_state = 0, .external_lex_state = 1}, + [19364] = {.lex_state = 0, .external_lex_state = 1}, + [19365] = {.lex_state = 0, .external_lex_state = 1}, + [19366] = {.lex_state = 0, .external_lex_state = 1}, + [19367] = {.lex_state = 0, .external_lex_state = 1}, + [19368] = {.lex_state = 0, .external_lex_state = 1}, + [19369] = {.lex_state = 125, .external_lex_state = 1}, + [19370] = {.lex_state = 0, .external_lex_state = 1}, + [19371] = {.lex_state = 0, .external_lex_state = 1}, + [19372] = {.lex_state = 0, .external_lex_state = 1}, + [19373] = {.lex_state = 0, .external_lex_state = 1}, + [19374] = {.lex_state = 0, .external_lex_state = 1}, + [19375] = {.lex_state = 0, .external_lex_state = 1}, + [19376] = {.lex_state = 0, .external_lex_state = 1}, + [19377] = {.lex_state = 0, .external_lex_state = 1}, + [19378] = {.lex_state = 0, .external_lex_state = 1}, + [19379] = {.lex_state = 0, .external_lex_state = 1}, + [19380] = {.lex_state = 0, .external_lex_state = 1}, + [19381] = {.lex_state = 0, .external_lex_state = 1}, + [19382] = {.lex_state = 0, .external_lex_state = 1}, + [19383] = {.lex_state = 0, .external_lex_state = 1}, + [19384] = {.lex_state = 0, .external_lex_state = 1}, + [19385] = {.lex_state = 0, .external_lex_state = 1}, + [19386] = {.lex_state = 0, .external_lex_state = 1}, + [19387] = {.lex_state = 0, .external_lex_state = 1}, + [19388] = {.lex_state = 0, .external_lex_state = 1}, + [19389] = {.lex_state = 0, .external_lex_state = 1}, + [19390] = {.lex_state = 0, .external_lex_state = 1}, + [19391] = {.lex_state = 0, .external_lex_state = 1}, + [19392] = {.lex_state = 0, .external_lex_state = 1}, + [19393] = {.lex_state = 0, .external_lex_state = 1}, + [19394] = {.lex_state = 0, .external_lex_state = 1}, + [19395] = {.lex_state = 0, .external_lex_state = 1}, + [19396] = {.lex_state = 0, .external_lex_state = 1}, + [19397] = {.lex_state = 0, .external_lex_state = 1}, + [19398] = {.lex_state = 0, .external_lex_state = 1}, + [19399] = {.lex_state = 0, .external_lex_state = 1}, + [19400] = {.lex_state = 0, .external_lex_state = 1}, + [19401] = {.lex_state = 0, .external_lex_state = 1}, + [19402] = {.lex_state = 0, .external_lex_state = 1}, + [19403] = {.lex_state = 0, .external_lex_state = 1}, + [19404] = {.lex_state = 0, .external_lex_state = 1}, + [19405] = {.lex_state = 0, .external_lex_state = 1}, + [19406] = {.lex_state = 0, .external_lex_state = 1}, + [19407] = {.lex_state = 0, .external_lex_state = 1}, + [19408] = {.lex_state = 0, .external_lex_state = 1}, + [19409] = {.lex_state = 0, .external_lex_state = 1}, + [19410] = {.lex_state = 0, .external_lex_state = 1}, + [19411] = {.lex_state = 0, .external_lex_state = 1}, + [19412] = {.lex_state = 0, .external_lex_state = 1}, + [19413] = {.lex_state = 0, .external_lex_state = 1}, + [19414] = {.lex_state = 125, .external_lex_state = 1}, + [19415] = {.lex_state = 0, .external_lex_state = 1}, + [19416] = {.lex_state = 125, .external_lex_state = 1}, + [19417] = {.lex_state = 0, .external_lex_state = 1}, + [19418] = {.lex_state = 0, .external_lex_state = 1}, + [19419] = {.lex_state = 0, .external_lex_state = 1}, + [19420] = {.lex_state = 0, .external_lex_state = 1}, + [19421] = {.lex_state = 0, .external_lex_state = 1}, + [19422] = {.lex_state = 0, .external_lex_state = 1}, + [19423] = {.lex_state = 125, .external_lex_state = 1}, + [19424] = {.lex_state = 0, .external_lex_state = 1}, + [19425] = {.lex_state = 0, .external_lex_state = 1}, + [19426] = {.lex_state = 0, .external_lex_state = 1}, + [19427] = {.lex_state = 0, .external_lex_state = 1}, + [19428] = {.lex_state = 0, .external_lex_state = 1}, + [19429] = {.lex_state = 0, .external_lex_state = 1}, + [19430] = {.lex_state = 0, .external_lex_state = 1}, + [19431] = {.lex_state = 125, .external_lex_state = 1}, + [19432] = {.lex_state = 0, .external_lex_state = 1}, + [19433] = {.lex_state = 0, .external_lex_state = 1}, + [19434] = {.lex_state = 0, .external_lex_state = 1}, + [19435] = {.lex_state = 0, .external_lex_state = 1}, + [19436] = {.lex_state = 0, .external_lex_state = 1}, + [19437] = {.lex_state = 0, .external_lex_state = 1}, + [19438] = {.lex_state = 0, .external_lex_state = 1}, + [19439] = {.lex_state = 0, .external_lex_state = 1}, + [19440] = {.lex_state = 0, .external_lex_state = 1}, + [19441] = {.lex_state = 0, .external_lex_state = 1}, + [19442] = {.lex_state = 0, .external_lex_state = 1}, + [19443] = {.lex_state = 0, .external_lex_state = 1}, + [19444] = {.lex_state = 0, .external_lex_state = 1}, + [19445] = {.lex_state = 0, .external_lex_state = 1}, + [19446] = {.lex_state = 0, .external_lex_state = 1}, + [19447] = {.lex_state = 0, .external_lex_state = 1}, + [19448] = {.lex_state = 0, .external_lex_state = 1}, + [19449] = {.lex_state = 0, .external_lex_state = 1}, + [19450] = {.lex_state = 125, .external_lex_state = 1}, + [19451] = {.lex_state = 125, .external_lex_state = 1}, + [19452] = {.lex_state = 0, .external_lex_state = 1}, + [19453] = {.lex_state = 0, .external_lex_state = 1}, + [19454] = {.lex_state = 0, .external_lex_state = 1}, + [19455] = {.lex_state = 0, .external_lex_state = 1}, + [19456] = {.lex_state = 0, .external_lex_state = 1}, + [19457] = {.lex_state = 125, .external_lex_state = 1}, + [19458] = {.lex_state = 0, .external_lex_state = 1}, + [19459] = {.lex_state = 125, .external_lex_state = 1}, + [19460] = {.lex_state = 0, .external_lex_state = 1}, + [19461] = {.lex_state = 125, .external_lex_state = 1}, + [19462] = {.lex_state = 0, .external_lex_state = 1}, + [19463] = {.lex_state = 0, .external_lex_state = 1}, + [19464] = {.lex_state = 0, .external_lex_state = 1}, + [19465] = {.lex_state = 0, .external_lex_state = 1}, + [19466] = {.lex_state = 0, .external_lex_state = 1}, + [19467] = {.lex_state = 0, .external_lex_state = 1}, + [19468] = {.lex_state = 0, .external_lex_state = 1}, + [19469] = {.lex_state = 0, .external_lex_state = 1}, + [19470] = {.lex_state = 0, .external_lex_state = 1}, + [19471] = {.lex_state = 122, .external_lex_state = 1}, + [19472] = {.lex_state = 0, .external_lex_state = 1}, + [19473] = {.lex_state = 0, .external_lex_state = 1}, + [19474] = {.lex_state = 0, .external_lex_state = 1}, + [19475] = {.lex_state = 0, .external_lex_state = 1}, + [19476] = {.lex_state = 0, .external_lex_state = 1}, + [19477] = {.lex_state = 0, .external_lex_state = 1}, + [19478] = {.lex_state = 0, .external_lex_state = 1}, + [19479] = {.lex_state = 0, .external_lex_state = 1}, + [19480] = {.lex_state = 0, .external_lex_state = 1}, + [19481] = {.lex_state = 0, .external_lex_state = 1}, + [19482] = {.lex_state = 0, .external_lex_state = 1}, + [19483] = {.lex_state = 0, .external_lex_state = 1}, + [19484] = {.lex_state = 0, .external_lex_state = 1}, + [19485] = {.lex_state = 0, .external_lex_state = 1}, + [19486] = {.lex_state = 0, .external_lex_state = 1}, + [19487] = {.lex_state = 0, .external_lex_state = 1}, + [19488] = {.lex_state = 0, .external_lex_state = 1}, + [19489] = {.lex_state = 0, .external_lex_state = 1}, + [19490] = {.lex_state = 0, .external_lex_state = 1}, + [19491] = {.lex_state = 0, .external_lex_state = 1}, + [19492] = {.lex_state = 0, .external_lex_state = 1}, + [19493] = {.lex_state = 0, .external_lex_state = 1}, + [19494] = {.lex_state = 0, .external_lex_state = 1}, + [19495] = {.lex_state = 0, .external_lex_state = 1}, + [19496] = {.lex_state = 0, .external_lex_state = 1}, + [19497] = {.lex_state = 0, .external_lex_state = 1}, + [19498] = {.lex_state = 0, .external_lex_state = 1}, + [19499] = {.lex_state = 0, .external_lex_state = 1}, + [19500] = {.lex_state = 0, .external_lex_state = 1}, + [19501] = {.lex_state = 0, .external_lex_state = 1}, + [19502] = {.lex_state = 0, .external_lex_state = 1}, + [19503] = {.lex_state = 125, .external_lex_state = 1}, + [19504] = {.lex_state = 0, .external_lex_state = 1}, + [19505] = {.lex_state = 0, .external_lex_state = 1}, + [19506] = {.lex_state = 0, .external_lex_state = 1}, + [19507] = {.lex_state = 0, .external_lex_state = 1}, + [19508] = {.lex_state = 0, .external_lex_state = 1}, + [19509] = {.lex_state = 0, .external_lex_state = 1}, + [19510] = {.lex_state = 0, .external_lex_state = 1}, + [19511] = {.lex_state = 0, .external_lex_state = 1}, + [19512] = {.lex_state = 0, .external_lex_state = 1}, + [19513] = {.lex_state = 0, .external_lex_state = 1}, + [19514] = {.lex_state = 0, .external_lex_state = 1}, + [19515] = {.lex_state = 0, .external_lex_state = 1}, + [19516] = {.lex_state = 0, .external_lex_state = 1}, + [19517] = {.lex_state = 0, .external_lex_state = 1}, + [19518] = {.lex_state = 125, .external_lex_state = 1}, + [19519] = {.lex_state = 0, .external_lex_state = 1}, + [19520] = {.lex_state = 0, .external_lex_state = 1}, + [19521] = {.lex_state = 0, .external_lex_state = 1}, + [19522] = {.lex_state = 0, .external_lex_state = 1}, + [19523] = {.lex_state = 0, .external_lex_state = 1}, + [19524] = {.lex_state = 0, .external_lex_state = 1}, + [19525] = {.lex_state = 0, .external_lex_state = 1}, + [19526] = {.lex_state = 0, .external_lex_state = 1}, + [19527] = {.lex_state = 0, .external_lex_state = 1}, + [19528] = {.lex_state = 0, .external_lex_state = 1}, + [19529] = {.lex_state = 0, .external_lex_state = 1}, + [19530] = {.lex_state = 0, .external_lex_state = 1}, + [19531] = {.lex_state = 0, .external_lex_state = 1}, + [19532] = {.lex_state = 0, .external_lex_state = 1}, + [19533] = {.lex_state = 0, .external_lex_state = 1}, + [19534] = {.lex_state = 0, .external_lex_state = 1}, + [19535] = {.lex_state = 0, .external_lex_state = 1}, + [19536] = {.lex_state = 0, .external_lex_state = 1}, + [19537] = {.lex_state = 0, .external_lex_state = 1}, + [19538] = {.lex_state = 0, .external_lex_state = 1}, + [19539] = {.lex_state = 0, .external_lex_state = 1}, + [19540] = {.lex_state = 0, .external_lex_state = 1}, + [19541] = {.lex_state = 0, .external_lex_state = 1}, + [19542] = {.lex_state = 0, .external_lex_state = 1}, + [19543] = {.lex_state = 0, .external_lex_state = 1}, + [19544] = {.lex_state = 0, .external_lex_state = 1}, + [19545] = {.lex_state = 0, .external_lex_state = 1}, + [19546] = {.lex_state = 0, .external_lex_state = 1}, + [19547] = {.lex_state = 0, .external_lex_state = 1}, + [19548] = {.lex_state = 0, .external_lex_state = 1}, + [19549] = {.lex_state = 0, .external_lex_state = 1}, + [19550] = {.lex_state = 0, .external_lex_state = 1}, + [19551] = {.lex_state = 0, .external_lex_state = 1}, + [19552] = {.lex_state = 125, .external_lex_state = 1}, + [19553] = {.lex_state = 0, .external_lex_state = 1}, + [19554] = {.lex_state = 125, .external_lex_state = 1}, + [19555] = {.lex_state = 0, .external_lex_state = 1}, + [19556] = {.lex_state = 0, .external_lex_state = 1}, + [19557] = {.lex_state = 0, .external_lex_state = 1}, + [19558] = {.lex_state = 0, .external_lex_state = 1}, + [19559] = {.lex_state = 0, .external_lex_state = 1}, + [19560] = {.lex_state = 0, .external_lex_state = 1}, + [19561] = {.lex_state = 0, .external_lex_state = 1}, + [19562] = {.lex_state = 0, .external_lex_state = 1}, + [19563] = {.lex_state = 0, .external_lex_state = 1}, + [19564] = {.lex_state = 0, .external_lex_state = 1}, + [19565] = {.lex_state = 0, .external_lex_state = 1}, + [19566] = {.lex_state = 0, .external_lex_state = 1}, + [19567] = {.lex_state = 0, .external_lex_state = 1}, + [19568] = {.lex_state = 0, .external_lex_state = 1}, + [19569] = {.lex_state = 0, .external_lex_state = 1}, + [19570] = {.lex_state = 0, .external_lex_state = 1}, + [19571] = {.lex_state = 0, .external_lex_state = 1}, + [19572] = {.lex_state = 0, .external_lex_state = 1}, + [19573] = {.lex_state = 0, .external_lex_state = 1}, + [19574] = {.lex_state = 0, .external_lex_state = 1}, + [19575] = {.lex_state = 0, .external_lex_state = 1}, + [19576] = {.lex_state = 0, .external_lex_state = 1}, + [19577] = {.lex_state = 0, .external_lex_state = 1}, + [19578] = {.lex_state = 0, .external_lex_state = 1}, + [19579] = {.lex_state = 0, .external_lex_state = 1}, + [19580] = {.lex_state = 0, .external_lex_state = 1}, + [19581] = {.lex_state = 0, .external_lex_state = 1}, + [19582] = {.lex_state = 0, .external_lex_state = 1}, + [19583] = {.lex_state = 0, .external_lex_state = 1}, + [19584] = {.lex_state = 0, .external_lex_state = 1}, + [19585] = {.lex_state = 0, .external_lex_state = 1}, + [19586] = {.lex_state = 0, .external_lex_state = 1}, + [19587] = {.lex_state = 0, .external_lex_state = 1}, + [19588] = {.lex_state = 0, .external_lex_state = 1}, + [19589] = {.lex_state = 0, .external_lex_state = 1}, + [19590] = {.lex_state = 0, .external_lex_state = 1}, + [19591] = {.lex_state = 0, .external_lex_state = 1}, + [19592] = {.lex_state = 0, .external_lex_state = 1}, + [19593] = {.lex_state = 0, .external_lex_state = 1}, + [19594] = {.lex_state = 546, .external_lex_state = 1}, + [19595] = {.lex_state = 0, .external_lex_state = 1}, + [19596] = {.lex_state = 125, .external_lex_state = 1}, + [19597] = {.lex_state = 0, .external_lex_state = 1}, + [19598] = {.lex_state = 0, .external_lex_state = 1}, + [19599] = {.lex_state = 0, .external_lex_state = 1}, + [19600] = {.lex_state = 0, .external_lex_state = 1}, + [19601] = {.lex_state = 0, .external_lex_state = 1}, + [19602] = {.lex_state = 0, .external_lex_state = 1}, + [19603] = {.lex_state = 0, .external_lex_state = 1}, + [19604] = {.lex_state = 0, .external_lex_state = 1}, + [19605] = {.lex_state = 0, .external_lex_state = 1}, + [19606] = {.lex_state = 0, .external_lex_state = 1}, + [19607] = {.lex_state = 0, .external_lex_state = 1}, + [19608] = {.lex_state = 0, .external_lex_state = 1}, + [19609] = {.lex_state = 0, .external_lex_state = 1}, + [19610] = {.lex_state = 0, .external_lex_state = 1}, + [19611] = {.lex_state = 0, .external_lex_state = 1}, + [19612] = {.lex_state = 125, .external_lex_state = 1}, + [19613] = {.lex_state = 0, .external_lex_state = 1}, + [19614] = {.lex_state = 0, .external_lex_state = 1}, + [19615] = {.lex_state = 125, .external_lex_state = 1}, + [19616] = {.lex_state = 0, .external_lex_state = 1}, + [19617] = {.lex_state = 0, .external_lex_state = 1}, + [19618] = {.lex_state = 0, .external_lex_state = 1}, + [19619] = {.lex_state = 0, .external_lex_state = 1}, + [19620] = {.lex_state = 0, .external_lex_state = 1}, + [19621] = {.lex_state = 0, .external_lex_state = 1}, + [19622] = {.lex_state = 0, .external_lex_state = 1}, + [19623] = {.lex_state = 0, .external_lex_state = 1}, + [19624] = {.lex_state = 0, .external_lex_state = 1}, + [19625] = {.lex_state = 302, .external_lex_state = 1}, + [19626] = {.lex_state = 0, .external_lex_state = 1}, + [19627] = {.lex_state = 0, .external_lex_state = 1}, + [19628] = {.lex_state = 0, .external_lex_state = 1}, + [19629] = {.lex_state = 0, .external_lex_state = 1}, + [19630] = {.lex_state = 0, .external_lex_state = 1}, + [19631] = {.lex_state = 0, .external_lex_state = 1}, + [19632] = {.lex_state = 0, .external_lex_state = 1}, + [19633] = {.lex_state = 0, .external_lex_state = 1}, + [19634] = {.lex_state = 0, .external_lex_state = 1}, + [19635] = {.lex_state = 0, .external_lex_state = 1}, + [19636] = {.lex_state = 0, .external_lex_state = 1}, + [19637] = {.lex_state = 0, .external_lex_state = 1}, + [19638] = {.lex_state = 0, .external_lex_state = 1}, + [19639] = {.lex_state = 125, .external_lex_state = 1}, + [19640] = {.lex_state = 125, .external_lex_state = 1}, + [19641] = {.lex_state = 0, .external_lex_state = 1}, + [19642] = {.lex_state = 0, .external_lex_state = 1}, + [19643] = {.lex_state = 125, .external_lex_state = 1}, + [19644] = {.lex_state = 0, .external_lex_state = 1}, + [19645] = {.lex_state = 0, .external_lex_state = 1}, + [19646] = {.lex_state = 0, .external_lex_state = 1}, + [19647] = {.lex_state = 0, .external_lex_state = 1}, + [19648] = {.lex_state = 125, .external_lex_state = 1}, + [19649] = {.lex_state = 0, .external_lex_state = 1}, + [19650] = {.lex_state = 0, .external_lex_state = 1}, + [19651] = {.lex_state = 0, .external_lex_state = 1}, + [19652] = {.lex_state = 0, .external_lex_state = 1}, + [19653] = {.lex_state = 0, .external_lex_state = 1}, + [19654] = {.lex_state = 0, .external_lex_state = 1}, + [19655] = {.lex_state = 0, .external_lex_state = 1}, + [19656] = {.lex_state = 0, .external_lex_state = 1}, + [19657] = {.lex_state = 0, .external_lex_state = 1}, + [19658] = {.lex_state = 0, .external_lex_state = 1}, + [19659] = {.lex_state = 0, .external_lex_state = 1}, + [19660] = {.lex_state = 125, .external_lex_state = 1}, + [19661] = {.lex_state = 0, .external_lex_state = 1}, + [19662] = {.lex_state = 0, .external_lex_state = 1}, + [19663] = {.lex_state = 0, .external_lex_state = 1}, + [19664] = {.lex_state = 0, .external_lex_state = 1}, + [19665] = {.lex_state = 0, .external_lex_state = 1}, + [19666] = {.lex_state = 0, .external_lex_state = 1}, + [19667] = {.lex_state = 0, .external_lex_state = 1}, + [19668] = {.lex_state = 0, .external_lex_state = 1}, + [19669] = {.lex_state = 0, .external_lex_state = 1}, + [19670] = {.lex_state = 0, .external_lex_state = 1}, + [19671] = {.lex_state = 0, .external_lex_state = 1}, + [19672] = {.lex_state = 0, .external_lex_state = 1}, + [19673] = {.lex_state = 0, .external_lex_state = 1}, + [19674] = {.lex_state = 0, .external_lex_state = 1}, + [19675] = {.lex_state = 0, .external_lex_state = 1}, + [19676] = {.lex_state = 0, .external_lex_state = 1}, + [19677] = {.lex_state = 0, .external_lex_state = 1}, + [19678] = {.lex_state = 0, .external_lex_state = 1}, + [19679] = {.lex_state = 125, .external_lex_state = 1}, + [19680] = {.lex_state = 0, .external_lex_state = 1}, + [19681] = {.lex_state = 0, .external_lex_state = 1}, + [19682] = {.lex_state = 125, .external_lex_state = 1}, + [19683] = {.lex_state = 0, .external_lex_state = 1}, + [19684] = {.lex_state = 0, .external_lex_state = 1}, + [19685] = {.lex_state = 0, .external_lex_state = 1}, + [19686] = {.lex_state = 0, .external_lex_state = 1}, + [19687] = {.lex_state = 0, .external_lex_state = 1}, + [19688] = {.lex_state = 0, .external_lex_state = 1}, + [19689] = {.lex_state = 0, .external_lex_state = 1}, + [19690] = {.lex_state = 0, .external_lex_state = 1}, + [19691] = {.lex_state = 0, .external_lex_state = 1}, + [19692] = {.lex_state = 0, .external_lex_state = 1}, + [19693] = {.lex_state = 0, .external_lex_state = 1}, + [19694] = {.lex_state = 0, .external_lex_state = 1}, + [19695] = {.lex_state = 0, .external_lex_state = 1}, + [19696] = {.lex_state = 0, .external_lex_state = 1}, + [19697] = {.lex_state = 0, .external_lex_state = 1}, + [19698] = {.lex_state = 0, .external_lex_state = 1}, + [19699] = {.lex_state = 0, .external_lex_state = 1}, + [19700] = {.lex_state = 0, .external_lex_state = 1}, + [19701] = {.lex_state = 0, .external_lex_state = 1}, + [19702] = {.lex_state = 0, .external_lex_state = 1}, + [19703] = {.lex_state = 0, .external_lex_state = 1}, + [19704] = {.lex_state = 0, .external_lex_state = 1}, + [19705] = {.lex_state = 0, .external_lex_state = 1}, + [19706] = {.lex_state = 0, .external_lex_state = 1}, + [19707] = {.lex_state = 0, .external_lex_state = 1}, + [19708] = {.lex_state = 0, .external_lex_state = 1}, + [19709] = {.lex_state = 0, .external_lex_state = 1}, + [19710] = {.lex_state = 0, .external_lex_state = 1}, + [19711] = {.lex_state = 0, .external_lex_state = 1}, + [19712] = {.lex_state = 0, .external_lex_state = 1}, + [19713] = {.lex_state = 0, .external_lex_state = 1}, + [19714] = {.lex_state = 0, .external_lex_state = 1}, + [19715] = {.lex_state = 0, .external_lex_state = 1}, + [19716] = {.lex_state = 0, .external_lex_state = 1}, + [19717] = {.lex_state = 0, .external_lex_state = 1}, + [19718] = {.lex_state = 0, .external_lex_state = 1}, + [19719] = {.lex_state = 0, .external_lex_state = 1}, + [19720] = {.lex_state = 0, .external_lex_state = 1}, + [19721] = {.lex_state = 0, .external_lex_state = 1}, + [19722] = {.lex_state = 0, .external_lex_state = 1}, + [19723] = {.lex_state = 0, .external_lex_state = 1}, + [19724] = {.lex_state = 0, .external_lex_state = 1}, + [19725] = {.lex_state = 0, .external_lex_state = 1}, + [19726] = {.lex_state = 125, .external_lex_state = 1}, + [19727] = {.lex_state = 0, .external_lex_state = 1}, + [19728] = {.lex_state = 0, .external_lex_state = 1}, + [19729] = {.lex_state = 0, .external_lex_state = 1}, + [19730] = {.lex_state = 0, .external_lex_state = 1}, + [19731] = {.lex_state = 0, .external_lex_state = 1}, + [19732] = {.lex_state = 0, .external_lex_state = 1}, + [19733] = {.lex_state = 0, .external_lex_state = 1}, + [19734] = {.lex_state = 0, .external_lex_state = 1}, + [19735] = {.lex_state = 0, .external_lex_state = 1}, + [19736] = {.lex_state = 0, .external_lex_state = 1}, + [19737] = {.lex_state = 0, .external_lex_state = 1}, + [19738] = {.lex_state = 0, .external_lex_state = 1}, + [19739] = {.lex_state = 0, .external_lex_state = 1}, + [19740] = {.lex_state = 0, .external_lex_state = 1}, + [19741] = {.lex_state = 0, .external_lex_state = 1}, + [19742] = {.lex_state = 0, .external_lex_state = 1}, + [19743] = {.lex_state = 0, .external_lex_state = 1}, + [19744] = {.lex_state = 0, .external_lex_state = 1}, + [19745] = {.lex_state = 0, .external_lex_state = 1}, + [19746] = {.lex_state = 0, .external_lex_state = 1}, + [19747] = {.lex_state = 0, .external_lex_state = 1}, + [19748] = {.lex_state = 0, .external_lex_state = 1}, + [19749] = {.lex_state = 0, .external_lex_state = 1}, + [19750] = {.lex_state = 0, .external_lex_state = 1}, + [19751] = {.lex_state = 0, .external_lex_state = 1}, + [19752] = {.lex_state = 0, .external_lex_state = 1}, + [19753] = {.lex_state = 0, .external_lex_state = 1}, + [19754] = {.lex_state = 0, .external_lex_state = 1}, + [19755] = {.lex_state = 0, .external_lex_state = 1}, + [19756] = {.lex_state = 0, .external_lex_state = 1}, + [19757] = {.lex_state = 0, .external_lex_state = 1}, + [19758] = {.lex_state = 0, .external_lex_state = 1}, + [19759] = {.lex_state = 0, .external_lex_state = 1}, + [19760] = {.lex_state = 0, .external_lex_state = 1}, + [19761] = {.lex_state = 0, .external_lex_state = 1}, + [19762] = {.lex_state = 0, .external_lex_state = 1}, + [19763] = {.lex_state = 0, .external_lex_state = 1}, + [19764] = {.lex_state = 0, .external_lex_state = 1}, + [19765] = {.lex_state = 0, .external_lex_state = 1}, + [19766] = {.lex_state = 0, .external_lex_state = 1}, + [19767] = {.lex_state = 0, .external_lex_state = 1}, + [19768] = {.lex_state = 0, .external_lex_state = 1}, + [19769] = {.lex_state = 0, .external_lex_state = 1}, + [19770] = {.lex_state = 125, .external_lex_state = 1}, + [19771] = {.lex_state = 0, .external_lex_state = 1}, + [19772] = {.lex_state = 0, .external_lex_state = 1}, + [19773] = {.lex_state = 0, .external_lex_state = 1}, + [19774] = {.lex_state = 0, .external_lex_state = 1}, + [19775] = {.lex_state = 0, .external_lex_state = 1}, + [19776] = {.lex_state = 0, .external_lex_state = 1}, + [19777] = {.lex_state = 0, .external_lex_state = 1}, + [19778] = {.lex_state = 0, .external_lex_state = 1}, + [19779] = {.lex_state = 0, .external_lex_state = 1}, + [19780] = {.lex_state = 0, .external_lex_state = 1}, + [19781] = {.lex_state = 0, .external_lex_state = 1}, + [19782] = {.lex_state = 0, .external_lex_state = 1}, + [19783] = {.lex_state = 0, .external_lex_state = 1}, + [19784] = {.lex_state = 0, .external_lex_state = 1}, + [19785] = {.lex_state = 0, .external_lex_state = 1}, + [19786] = {.lex_state = 546, .external_lex_state = 1}, + [19787] = {.lex_state = 0, .external_lex_state = 1}, + [19788] = {.lex_state = 0, .external_lex_state = 1}, + [19789] = {.lex_state = 0, .external_lex_state = 1}, + [19790] = {.lex_state = 0, .external_lex_state = 1}, + [19791] = {.lex_state = 0, .external_lex_state = 1}, + [19792] = {.lex_state = 0, .external_lex_state = 1}, + [19793] = {.lex_state = 0, .external_lex_state = 1}, + [19794] = {.lex_state = 0, .external_lex_state = 1}, + [19795] = {.lex_state = 0, .external_lex_state = 1}, + [19796] = {.lex_state = 0, .external_lex_state = 1}, + [19797] = {.lex_state = 0, .external_lex_state = 1}, + [19798] = {.lex_state = 0, .external_lex_state = 1}, + [19799] = {.lex_state = 0, .external_lex_state = 1}, + [19800] = {.lex_state = 0, .external_lex_state = 1}, + [19801] = {.lex_state = 0, .external_lex_state = 1}, + [19802] = {.lex_state = 0, .external_lex_state = 1}, + [19803] = {.lex_state = 0, .external_lex_state = 1}, + [19804] = {.lex_state = 0, .external_lex_state = 1}, + [19805] = {.lex_state = 0, .external_lex_state = 1}, + [19806] = {.lex_state = 0, .external_lex_state = 1}, + [19807] = {.lex_state = 0, .external_lex_state = 1}, + [19808] = {.lex_state = 125, .external_lex_state = 1}, + [19809] = {.lex_state = 0, .external_lex_state = 1}, + [19810] = {.lex_state = 0, .external_lex_state = 1}, + [19811] = {.lex_state = 0, .external_lex_state = 1}, + [19812] = {.lex_state = 0, .external_lex_state = 1}, + [19813] = {.lex_state = 0, .external_lex_state = 1}, + [19814] = {.lex_state = 125, .external_lex_state = 1}, + [19815] = {.lex_state = 125, .external_lex_state = 1}, + [19816] = {.lex_state = 0, .external_lex_state = 1}, + [19817] = {.lex_state = 0, .external_lex_state = 1}, + [19818] = {.lex_state = 0, .external_lex_state = 1}, + [19819] = {.lex_state = 0, .external_lex_state = 1}, + [19820] = {.lex_state = 0, .external_lex_state = 1}, + [19821] = {.lex_state = 0, .external_lex_state = 1}, + [19822] = {.lex_state = 0, .external_lex_state = 1}, + [19823] = {.lex_state = 0, .external_lex_state = 1}, + [19824] = {.lex_state = 0, .external_lex_state = 1}, + [19825] = {.lex_state = 0, .external_lex_state = 1}, + [19826] = {.lex_state = 0, .external_lex_state = 1}, + [19827] = {.lex_state = 0, .external_lex_state = 1}, + [19828] = {.lex_state = 0, .external_lex_state = 1}, + [19829] = {.lex_state = 0, .external_lex_state = 1}, + [19830] = {.lex_state = 125, .external_lex_state = 1}, + [19831] = {.lex_state = 0, .external_lex_state = 1}, + [19832] = {.lex_state = 0, .external_lex_state = 1}, + [19833] = {.lex_state = 0, .external_lex_state = 1}, + [19834] = {.lex_state = 0, .external_lex_state = 1}, + [19835] = {.lex_state = 0, .external_lex_state = 1}, + [19836] = {.lex_state = 0, .external_lex_state = 1}, + [19837] = {.lex_state = 546, .external_lex_state = 1}, + [19838] = {.lex_state = 0, .external_lex_state = 1}, + [19839] = {.lex_state = 0, .external_lex_state = 1}, + [19840] = {.lex_state = 125, .external_lex_state = 1}, + [19841] = {.lex_state = 0, .external_lex_state = 1}, + [19842] = {.lex_state = 0, .external_lex_state = 1}, + [19843] = {.lex_state = 0, .external_lex_state = 1}, + [19844] = {.lex_state = 0, .external_lex_state = 1}, + [19845] = {.lex_state = 125, .external_lex_state = 1}, + [19846] = {.lex_state = 0, .external_lex_state = 1}, + [19847] = {.lex_state = 0, .external_lex_state = 1}, + [19848] = {.lex_state = 0, .external_lex_state = 1}, + [19849] = {.lex_state = 0, .external_lex_state = 1}, + [19850] = {.lex_state = 0, .external_lex_state = 1}, + [19851] = {.lex_state = 0, .external_lex_state = 1}, + [19852] = {.lex_state = 122, .external_lex_state = 1}, + [19853] = {.lex_state = 0, .external_lex_state = 1}, + [19854] = {.lex_state = 125, .external_lex_state = 1}, + [19855] = {.lex_state = 0, .external_lex_state = 1}, + [19856] = {.lex_state = 0, .external_lex_state = 1}, + [19857] = {.lex_state = 0, .external_lex_state = 1}, + [19858] = {.lex_state = 0, .external_lex_state = 1}, + [19859] = {.lex_state = 0, .external_lex_state = 1}, + [19860] = {.lex_state = 0, .external_lex_state = 1}, + [19861] = {.lex_state = 0, .external_lex_state = 1}, + [19862] = {.lex_state = 0, .external_lex_state = 1}, + [19863] = {.lex_state = 0, .external_lex_state = 1}, + [19864] = {.lex_state = 0, .external_lex_state = 1}, + [19865] = {.lex_state = 0, .external_lex_state = 1}, + [19866] = {.lex_state = 546, .external_lex_state = 1}, + [19867] = {.lex_state = 0, .external_lex_state = 1}, + [19868] = {.lex_state = 0, .external_lex_state = 1}, + [19869] = {.lex_state = 0, .external_lex_state = 1}, + [19870] = {.lex_state = 0, .external_lex_state = 1}, + [19871] = {.lex_state = 0, .external_lex_state = 1}, + [19872] = {.lex_state = 546, .external_lex_state = 1}, + [19873] = {.lex_state = 0, .external_lex_state = 1}, + [19874] = {.lex_state = 0, .external_lex_state = 1}, + [19875] = {.lex_state = 0, .external_lex_state = 1}, + [19876] = {.lex_state = 0, .external_lex_state = 1}, + [19877] = {.lex_state = 0, .external_lex_state = 1}, + [19878] = {.lex_state = 0, .external_lex_state = 1}, + [19879] = {.lex_state = 0, .external_lex_state = 1}, + [19880] = {.lex_state = 0, .external_lex_state = 1}, + [19881] = {.lex_state = 0, .external_lex_state = 1}, + [19882] = {.lex_state = 0, .external_lex_state = 1}, + [19883] = {.lex_state = 0, .external_lex_state = 1}, + [19884] = {.lex_state = 0, .external_lex_state = 1}, + [19885] = {.lex_state = 0, .external_lex_state = 1}, + [19886] = {.lex_state = 0, .external_lex_state = 1}, + [19887] = {.lex_state = 0, .external_lex_state = 1}, + [19888] = {.lex_state = 0, .external_lex_state = 1}, + [19889] = {.lex_state = 0, .external_lex_state = 1}, + [19890] = {.lex_state = 0, .external_lex_state = 1}, + [19891] = {.lex_state = 0, .external_lex_state = 1}, + [19892] = {.lex_state = 0, .external_lex_state = 1}, + [19893] = {.lex_state = 0, .external_lex_state = 1}, + [19894] = {.lex_state = 0, .external_lex_state = 1}, + [19895] = {.lex_state = 0, .external_lex_state = 1}, + [19896] = {.lex_state = 0, .external_lex_state = 1}, + [19897] = {.lex_state = 0, .external_lex_state = 1}, + [19898] = {.lex_state = 0, .external_lex_state = 1}, + [19899] = {.lex_state = 0, .external_lex_state = 1}, + [19900] = {.lex_state = 0, .external_lex_state = 1}, + [19901] = {.lex_state = 0, .external_lex_state = 1}, + [19902] = {.lex_state = 0, .external_lex_state = 1}, + [19903] = {.lex_state = 0, .external_lex_state = 1}, + [19904] = {.lex_state = 0, .external_lex_state = 1}, + [19905] = {.lex_state = 0, .external_lex_state = 1}, + [19906] = {.lex_state = 0, .external_lex_state = 1}, + [19907] = {.lex_state = 0, .external_lex_state = 1}, + [19908] = {.lex_state = 0, .external_lex_state = 1}, + [19909] = {.lex_state = 0, .external_lex_state = 1}, + [19910] = {.lex_state = 0, .external_lex_state = 1}, + [19911] = {.lex_state = 0, .external_lex_state = 1}, + [19912] = {.lex_state = 0, .external_lex_state = 1}, + [19913] = {.lex_state = 0, .external_lex_state = 1}, + [19914] = {.lex_state = 0, .external_lex_state = 1}, + [19915] = {.lex_state = 0, .external_lex_state = 1}, + [19916] = {.lex_state = 0, .external_lex_state = 1}, + [19917] = {.lex_state = 0, .external_lex_state = 1}, + [19918] = {.lex_state = 0, .external_lex_state = 1}, + [19919] = {.lex_state = 0, .external_lex_state = 1}, + [19920] = {.lex_state = 0, .external_lex_state = 1}, + [19921] = {.lex_state = 0, .external_lex_state = 1}, + [19922] = {.lex_state = 0, .external_lex_state = 1}, + [19923] = {.lex_state = 0, .external_lex_state = 1}, + [19924] = {.lex_state = 0, .external_lex_state = 1}, + [19925] = {.lex_state = 0, .external_lex_state = 1}, + [19926] = {.lex_state = 0, .external_lex_state = 1}, + [19927] = {.lex_state = 0, .external_lex_state = 1}, + [19928] = {.lex_state = 0, .external_lex_state = 1}, + [19929] = {.lex_state = 0, .external_lex_state = 1}, + [19930] = {.lex_state = 0, .external_lex_state = 1}, + [19931] = {.lex_state = 0, .external_lex_state = 1}, + [19932] = {.lex_state = 0, .external_lex_state = 1}, + [19933] = {.lex_state = 0, .external_lex_state = 1}, + [19934] = {.lex_state = 0, .external_lex_state = 1}, + [19935] = {.lex_state = 0, .external_lex_state = 1}, + [19936] = {.lex_state = 0, .external_lex_state = 1}, + [19937] = {.lex_state = 0, .external_lex_state = 1}, + [19938] = {.lex_state = 0, .external_lex_state = 1}, + [19939] = {.lex_state = 0, .external_lex_state = 1}, + [19940] = {.lex_state = 0, .external_lex_state = 1}, + [19941] = {.lex_state = 0, .external_lex_state = 1}, + [19942] = {.lex_state = 0, .external_lex_state = 1}, + [19943] = {.lex_state = 0, .external_lex_state = 1}, + [19944] = {.lex_state = 0, .external_lex_state = 1}, + [19945] = {.lex_state = 0, .external_lex_state = 1}, + [19946] = {.lex_state = 0, .external_lex_state = 1}, + [19947] = {.lex_state = 0, .external_lex_state = 1}, + [19948] = {.lex_state = 0, .external_lex_state = 1}, + [19949] = {.lex_state = 0, .external_lex_state = 1}, + [19950] = {.lex_state = 0, .external_lex_state = 1}, + [19951] = {.lex_state = 0, .external_lex_state = 1}, + [19952] = {.lex_state = 0, .external_lex_state = 1}, + [19953] = {.lex_state = 0, .external_lex_state = 1}, + [19954] = {.lex_state = 0, .external_lex_state = 1}, + [19955] = {.lex_state = 0, .external_lex_state = 1}, + [19956] = {.lex_state = 0, .external_lex_state = 1}, + [19957] = {.lex_state = 0, .external_lex_state = 1}, + [19958] = {.lex_state = 0, .external_lex_state = 1}, + [19959] = {.lex_state = 0, .external_lex_state = 1}, + [19960] = {.lex_state = 0, .external_lex_state = 1}, + [19961] = {.lex_state = 0, .external_lex_state = 1}, + [19962] = {.lex_state = 0, .external_lex_state = 1}, + [19963] = {.lex_state = 0, .external_lex_state = 1}, + [19964] = {.lex_state = 0, .external_lex_state = 1}, + [19965] = {.lex_state = 0, .external_lex_state = 1}, + [19966] = {.lex_state = 0, .external_lex_state = 1}, + [19967] = {.lex_state = 0, .external_lex_state = 1}, + [19968] = {.lex_state = 0, .external_lex_state = 1}, + [19969] = {.lex_state = 125, .external_lex_state = 1}, + [19970] = {.lex_state = 0, .external_lex_state = 1}, + [19971] = {.lex_state = 0, .external_lex_state = 1}, + [19972] = {.lex_state = 0, .external_lex_state = 1}, + [19973] = {.lex_state = 0, .external_lex_state = 1}, + [19974] = {.lex_state = 0, .external_lex_state = 1}, + [19975] = {.lex_state = 0, .external_lex_state = 1}, + [19976] = {.lex_state = 0, .external_lex_state = 1}, + [19977] = {.lex_state = 0, .external_lex_state = 1}, + [19978] = {.lex_state = 0, .external_lex_state = 1}, + [19979] = {.lex_state = 0, .external_lex_state = 1}, + [19980] = {.lex_state = 0, .external_lex_state = 1}, + [19981] = {.lex_state = 0, .external_lex_state = 1}, + [19982] = {.lex_state = 0, .external_lex_state = 1}, + [19983] = {.lex_state = 0, .external_lex_state = 1}, + [19984] = {.lex_state = 0, .external_lex_state = 1}, + [19985] = {.lex_state = 0, .external_lex_state = 1}, + [19986] = {.lex_state = 0, .external_lex_state = 1}, + [19987] = {.lex_state = 0, .external_lex_state = 1}, + [19988] = {.lex_state = 0, .external_lex_state = 1}, + [19989] = {.lex_state = 0, .external_lex_state = 1}, + [19990] = {.lex_state = 0, .external_lex_state = 1}, + [19991] = {.lex_state = 0, .external_lex_state = 1}, + [19992] = {.lex_state = 0, .external_lex_state = 1}, + [19993] = {.lex_state = 0, .external_lex_state = 1}, + [19994] = {.lex_state = 0, .external_lex_state = 1}, + [19995] = {.lex_state = 0, .external_lex_state = 1}, + [19996] = {.lex_state = 0, .external_lex_state = 1}, + [19997] = {.lex_state = 0, .external_lex_state = 1}, + [19998] = {.lex_state = 0, .external_lex_state = 1}, + [19999] = {.lex_state = 0, .external_lex_state = 1}, + [20000] = {.lex_state = 0, .external_lex_state = 1}, + [20001] = {.lex_state = 0, .external_lex_state = 1}, + [20002] = {.lex_state = 0, .external_lex_state = 1}, + [20003] = {.lex_state = 0, .external_lex_state = 1}, + [20004] = {.lex_state = 0, .external_lex_state = 1}, + [20005] = {.lex_state = 0, .external_lex_state = 1}, + [20006] = {.lex_state = 0, .external_lex_state = 1}, + [20007] = {.lex_state = 0, .external_lex_state = 1}, + [20008] = {.lex_state = 0, .external_lex_state = 1}, + [20009] = {.lex_state = 0, .external_lex_state = 1}, + [20010] = {.lex_state = 0, .external_lex_state = 1}, + [20011] = {.lex_state = 0, .external_lex_state = 1}, + [20012] = {.lex_state = 0, .external_lex_state = 1}, + [20013] = {.lex_state = 0, .external_lex_state = 1}, + [20014] = {.lex_state = 0, .external_lex_state = 1}, + [20015] = {.lex_state = 0, .external_lex_state = 1}, + [20016] = {.lex_state = 0, .external_lex_state = 1}, + [20017] = {.lex_state = 0, .external_lex_state = 1}, + [20018] = {.lex_state = 0, .external_lex_state = 1}, + [20019] = {.lex_state = 0, .external_lex_state = 1}, + [20020] = {.lex_state = 0, .external_lex_state = 1}, + [20021] = {.lex_state = 0, .external_lex_state = 1}, + [20022] = {.lex_state = 0, .external_lex_state = 1}, + [20023] = {.lex_state = 0, .external_lex_state = 1}, + [20024] = {.lex_state = 0, .external_lex_state = 1}, + [20025] = {.lex_state = 0, .external_lex_state = 1}, + [20026] = {.lex_state = 0, .external_lex_state = 1}, + [20027] = {.lex_state = 0, .external_lex_state = 1}, + [20028] = {.lex_state = 0, .external_lex_state = 1}, + [20029] = {.lex_state = 0, .external_lex_state = 1}, + [20030] = {.lex_state = 0, .external_lex_state = 1}, + [20031] = {.lex_state = 0, .external_lex_state = 1}, + [20032] = {.lex_state = 0, .external_lex_state = 1}, + [20033] = {.lex_state = 0, .external_lex_state = 1}, + [20034] = {.lex_state = 0, .external_lex_state = 1}, + [20035] = {.lex_state = 0, .external_lex_state = 1}, + [20036] = {.lex_state = 0, .external_lex_state = 1}, + [20037] = {.lex_state = 0, .external_lex_state = 1}, + [20038] = {.lex_state = 0, .external_lex_state = 1}, + [20039] = {.lex_state = 0, .external_lex_state = 1}, + [20040] = {.lex_state = 0, .external_lex_state = 1}, + [20041] = {.lex_state = 0, .external_lex_state = 1}, + [20042] = {.lex_state = 0, .external_lex_state = 1}, + [20043] = {.lex_state = 0, .external_lex_state = 1}, + [20044] = {.lex_state = 0, .external_lex_state = 1}, + [20045] = {.lex_state = 0, .external_lex_state = 1}, + [20046] = {.lex_state = 0, .external_lex_state = 1}, + [20047] = {.lex_state = 0, .external_lex_state = 1}, + [20048] = {.lex_state = 0, .external_lex_state = 1}, + [20049] = {.lex_state = 0, .external_lex_state = 1}, + [20050] = {.lex_state = 0, .external_lex_state = 1}, + [20051] = {.lex_state = 0, .external_lex_state = 1}, + [20052] = {.lex_state = 0, .external_lex_state = 1}, + [20053] = {.lex_state = 0, .external_lex_state = 1}, + [20054] = {.lex_state = 0, .external_lex_state = 1}, + [20055] = {.lex_state = 0, .external_lex_state = 1}, + [20056] = {.lex_state = 0, .external_lex_state = 1}, + [20057] = {.lex_state = 0, .external_lex_state = 1}, + [20058] = {.lex_state = 0, .external_lex_state = 1}, + [20059] = {.lex_state = 0, .external_lex_state = 1}, + [20060] = {.lex_state = 0, .external_lex_state = 1}, + [20061] = {.lex_state = 0, .external_lex_state = 1}, + [20062] = {.lex_state = 0, .external_lex_state = 1}, + [20063] = {.lex_state = 0, .external_lex_state = 1}, + [20064] = {.lex_state = 0, .external_lex_state = 1}, + [20065] = {.lex_state = 0, .external_lex_state = 1}, + [20066] = {.lex_state = 0, .external_lex_state = 1}, + [20067] = {.lex_state = 0, .external_lex_state = 1}, + [20068] = {.lex_state = 0, .external_lex_state = 1}, + [20069] = {.lex_state = 0, .external_lex_state = 1}, + [20070] = {.lex_state = 0, .external_lex_state = 1}, + [20071] = {.lex_state = 0, .external_lex_state = 1}, + [20072] = {.lex_state = 0, .external_lex_state = 1}, + [20073] = {.lex_state = 0, .external_lex_state = 1}, + [20074] = {.lex_state = 0, .external_lex_state = 1}, + [20075] = {.lex_state = 0, .external_lex_state = 1}, + [20076] = {.lex_state = 0, .external_lex_state = 1}, + [20077] = {.lex_state = 0, .external_lex_state = 1}, + [20078] = {.lex_state = 0, .external_lex_state = 1}, + [20079] = {.lex_state = 0, .external_lex_state = 1}, + [20080] = {.lex_state = 0, .external_lex_state = 1}, + [20081] = {.lex_state = 0, .external_lex_state = 1}, + [20082] = {.lex_state = 0, .external_lex_state = 1}, + [20083] = {.lex_state = 0, .external_lex_state = 1}, + [20084] = {.lex_state = 0, .external_lex_state = 1}, + [20085] = {.lex_state = 0, .external_lex_state = 1}, + [20086] = {.lex_state = 125, .external_lex_state = 1}, + [20087] = {.lex_state = 0, .external_lex_state = 1}, + [20088] = {.lex_state = 0, .external_lex_state = 1}, + [20089] = {.lex_state = 0, .external_lex_state = 1}, + [20090] = {.lex_state = 547, .external_lex_state = 1}, + [20091] = {.lex_state = 131, .external_lex_state = 1}, + [20092] = {.lex_state = 0, .external_lex_state = 1}, + [20093] = {.lex_state = 0, .external_lex_state = 1}, + [20094] = {.lex_state = 125, .external_lex_state = 1}, + [20095] = {.lex_state = 125, .external_lex_state = 1}, + [20096] = {.lex_state = 0, .external_lex_state = 1}, + [20097] = {.lex_state = 0, .external_lex_state = 1}, + [20098] = {.lex_state = 0, .external_lex_state = 1}, + [20099] = {.lex_state = 0, .external_lex_state = 1}, + [20100] = {.lex_state = 0, .external_lex_state = 1}, + [20101] = {.lex_state = 125, .external_lex_state = 1}, + [20102] = {.lex_state = 0, .external_lex_state = 1}, + [20103] = {.lex_state = 0, .external_lex_state = 1}, + [20104] = {.lex_state = 125, .external_lex_state = 1}, + [20105] = {.lex_state = 0, .external_lex_state = 1}, + [20106] = {.lex_state = 0, .external_lex_state = 1}, + [20107] = {.lex_state = 0, .external_lex_state = 1}, + [20108] = {.lex_state = 0, .external_lex_state = 1}, + [20109] = {.lex_state = 0, .external_lex_state = 1}, + [20110] = {.lex_state = 0, .external_lex_state = 1}, + [20111] = {.lex_state = 0, .external_lex_state = 1}, + [20112] = {.lex_state = 125, .external_lex_state = 1}, + [20113] = {.lex_state = 0, .external_lex_state = 1}, + [20114] = {.lex_state = 125, .external_lex_state = 1}, + [20115] = {.lex_state = 0, .external_lex_state = 1}, + [20116] = {.lex_state = 0, .external_lex_state = 1}, + [20117] = {.lex_state = 0, .external_lex_state = 1}, + [20118] = {.lex_state = 0, .external_lex_state = 1}, + [20119] = {.lex_state = 0, .external_lex_state = 1}, + [20120] = {.lex_state = 125, .external_lex_state = 1}, + [20121] = {.lex_state = 0, .external_lex_state = 1}, + [20122] = {.lex_state = 0, .external_lex_state = 1}, + [20123] = {.lex_state = 124, .external_lex_state = 1}, + [20124] = {.lex_state = 0, .external_lex_state = 1}, + [20125] = {.lex_state = 0, .external_lex_state = 1}, + [20126] = {.lex_state = 0, .external_lex_state = 1}, + [20127] = {.lex_state = 0, .external_lex_state = 1}, + [20128] = {.lex_state = 131, .external_lex_state = 1}, + [20129] = {.lex_state = 0, .external_lex_state = 1}, + [20130] = {.lex_state = 0, .external_lex_state = 1}, + [20131] = {.lex_state = 0, .external_lex_state = 1}, + [20132] = {.lex_state = 0, .external_lex_state = 1}, + [20133] = {.lex_state = 0, .external_lex_state = 1}, + [20134] = {.lex_state = 0, .external_lex_state = 1}, + [20135] = {.lex_state = 0, .external_lex_state = 1}, + [20136] = {.lex_state = 0, .external_lex_state = 1}, + [20137] = {.lex_state = 0, .external_lex_state = 1}, + [20138] = {.lex_state = 0, .external_lex_state = 1}, + [20139] = {.lex_state = 0, .external_lex_state = 1}, + [20140] = {.lex_state = 0, .external_lex_state = 1}, + [20141] = {.lex_state = 0, .external_lex_state = 1}, + [20142] = {.lex_state = 0, .external_lex_state = 1}, + [20143] = {.lex_state = 0, .external_lex_state = 1}, + [20144] = {.lex_state = 0, .external_lex_state = 1}, + [20145] = {.lex_state = 0, .external_lex_state = 1}, + [20146] = {.lex_state = 0, .external_lex_state = 1}, + [20147] = {.lex_state = 0, .external_lex_state = 1}, + [20148] = {.lex_state = 0, .external_lex_state = 1}, + [20149] = {.lex_state = 125, .external_lex_state = 1}, + [20150] = {.lex_state = 125, .external_lex_state = 1}, + [20151] = {.lex_state = 0, .external_lex_state = 1}, + [20152] = {.lex_state = 0, .external_lex_state = 1}, + [20153] = {.lex_state = 0, .external_lex_state = 1}, + [20154] = {.lex_state = 0, .external_lex_state = 1}, + [20155] = {.lex_state = 0, .external_lex_state = 1}, + [20156] = {.lex_state = 0, .external_lex_state = 1}, + [20157] = {.lex_state = 547, .external_lex_state = 1}, + [20158] = {.lex_state = 131, .external_lex_state = 1}, + [20159] = {.lex_state = 0, .external_lex_state = 1}, + [20160] = {.lex_state = 0, .external_lex_state = 1}, + [20161] = {.lex_state = 0, .external_lex_state = 1}, + [20162] = {.lex_state = 0, .external_lex_state = 1}, + [20163] = {.lex_state = 0, .external_lex_state = 1}, + [20164] = {.lex_state = 0, .external_lex_state = 1}, + [20165] = {.lex_state = 0, .external_lex_state = 1}, + [20166] = {.lex_state = 0, .external_lex_state = 1}, + [20167] = {.lex_state = 0, .external_lex_state = 1}, + [20168] = {.lex_state = 0, .external_lex_state = 1}, + [20169] = {.lex_state = 0, .external_lex_state = 1}, + [20170] = {.lex_state = 0, .external_lex_state = 1}, + [20171] = {.lex_state = 0, .external_lex_state = 1}, + [20172] = {.lex_state = 0, .external_lex_state = 1}, + [20173] = {.lex_state = 0, .external_lex_state = 1}, + [20174] = {.lex_state = 0, .external_lex_state = 1}, + [20175] = {.lex_state = 0, .external_lex_state = 1}, + [20176] = {.lex_state = 0, .external_lex_state = 1}, + [20177] = {.lex_state = 0, .external_lex_state = 1}, + [20178] = {.lex_state = 0, .external_lex_state = 1}, + [20179] = {.lex_state = 0, .external_lex_state = 1}, + [20180] = {.lex_state = 0, .external_lex_state = 1}, + [20181] = {.lex_state = 0, .external_lex_state = 1}, + [20182] = {.lex_state = 0, .external_lex_state = 1}, + [20183] = {.lex_state = 0, .external_lex_state = 1}, + [20184] = {.lex_state = 0, .external_lex_state = 1}, + [20185] = {.lex_state = 0, .external_lex_state = 1}, + [20186] = {.lex_state = 0, .external_lex_state = 1}, + [20187] = {.lex_state = 0, .external_lex_state = 1}, + [20188] = {.lex_state = 547, .external_lex_state = 1}, + [20189] = {.lex_state = 131, .external_lex_state = 1}, + [20190] = {.lex_state = 125, .external_lex_state = 1}, + [20191] = {.lex_state = 125, .external_lex_state = 1}, + [20192] = {.lex_state = 0, .external_lex_state = 1}, + [20193] = {.lex_state = 0, .external_lex_state = 1}, + [20194] = {.lex_state = 0, .external_lex_state = 1}, + [20195] = {.lex_state = 0, .external_lex_state = 1}, + [20196] = {.lex_state = 0, .external_lex_state = 1}, + [20197] = {.lex_state = 0, .external_lex_state = 1}, + [20198] = {.lex_state = 0, .external_lex_state = 1}, + [20199] = {.lex_state = 0, .external_lex_state = 1}, + [20200] = {.lex_state = 0, .external_lex_state = 1}, + [20201] = {.lex_state = 0, .external_lex_state = 1}, + [20202] = {.lex_state = 125, .external_lex_state = 1}, + [20203] = {.lex_state = 0, .external_lex_state = 1}, + [20204] = {.lex_state = 0, .external_lex_state = 1}, + [20205] = {.lex_state = 0, .external_lex_state = 1}, + [20206] = {.lex_state = 0, .external_lex_state = 1}, + [20207] = {.lex_state = 0, .external_lex_state = 1}, + [20208] = {.lex_state = 0, .external_lex_state = 1}, + [20209] = {.lex_state = 0, .external_lex_state = 1}, + [20210] = {.lex_state = 0, .external_lex_state = 1}, + [20211] = {.lex_state = 0, .external_lex_state = 1}, + [20212] = {.lex_state = 0, .external_lex_state = 1}, + [20213] = {.lex_state = 0, .external_lex_state = 1}, + [20214] = {.lex_state = 0, .external_lex_state = 1}, + [20215] = {.lex_state = 0, .external_lex_state = 1}, + [20216] = {.lex_state = 0, .external_lex_state = 1}, + [20217] = {.lex_state = 0, .external_lex_state = 1}, + [20218] = {.lex_state = 0, .external_lex_state = 1}, + [20219] = {.lex_state = 0, .external_lex_state = 1}, + [20220] = {.lex_state = 0, .external_lex_state = 1}, + [20221] = {.lex_state = 0, .external_lex_state = 1}, + [20222] = {.lex_state = 0, .external_lex_state = 1}, + [20223] = {.lex_state = 0, .external_lex_state = 1}, + [20224] = {.lex_state = 0, .external_lex_state = 1}, + [20225] = {.lex_state = 0, .external_lex_state = 1}, + [20226] = {.lex_state = 0, .external_lex_state = 1}, + [20227] = {.lex_state = 547, .external_lex_state = 1}, + [20228] = {.lex_state = 131, .external_lex_state = 1}, + [20229] = {.lex_state = 0, .external_lex_state = 1}, + [20230] = {.lex_state = 0, .external_lex_state = 1}, + [20231] = {.lex_state = 0, .external_lex_state = 1}, + [20232] = {.lex_state = 0, .external_lex_state = 1}, + [20233] = {.lex_state = 0, .external_lex_state = 1}, + [20234] = {.lex_state = 0, .external_lex_state = 1}, + [20235] = {.lex_state = 0, .external_lex_state = 1}, + [20236] = {.lex_state = 0, .external_lex_state = 1}, + [20237] = {.lex_state = 0, .external_lex_state = 1}, + [20238] = {.lex_state = 0, .external_lex_state = 1}, + [20239] = {.lex_state = 0, .external_lex_state = 1}, + [20240] = {.lex_state = 0, .external_lex_state = 1}, + [20241] = {.lex_state = 0, .external_lex_state = 1}, + [20242] = {.lex_state = 0, .external_lex_state = 1}, + [20243] = {.lex_state = 125, .external_lex_state = 1}, + [20244] = {.lex_state = 0, .external_lex_state = 1}, + [20245] = {.lex_state = 0, .external_lex_state = 1}, + [20246] = {.lex_state = 0, .external_lex_state = 1}, + [20247] = {.lex_state = 125, .external_lex_state = 1}, + [20248] = {.lex_state = 0, .external_lex_state = 1}, + [20249] = {.lex_state = 0, .external_lex_state = 1}, + [20250] = {.lex_state = 0, .external_lex_state = 1}, + [20251] = {.lex_state = 0, .external_lex_state = 1}, + [20252] = {.lex_state = 0, .external_lex_state = 1}, + [20253] = {.lex_state = 0, .external_lex_state = 1}, + [20254] = {.lex_state = 0, .external_lex_state = 1}, + [20255] = {.lex_state = 0, .external_lex_state = 1}, + [20256] = {.lex_state = 546, .external_lex_state = 1}, + [20257] = {.lex_state = 0, .external_lex_state = 1}, + [20258] = {.lex_state = 0, .external_lex_state = 1}, + [20259] = {.lex_state = 0, .external_lex_state = 1}, + [20260] = {.lex_state = 0, .external_lex_state = 1}, + [20261] = {.lex_state = 0, .external_lex_state = 1}, + [20262] = {.lex_state = 0, .external_lex_state = 1}, + [20263] = {.lex_state = 0, .external_lex_state = 1}, + [20264] = {.lex_state = 0, .external_lex_state = 1}, + [20265] = {.lex_state = 0, .external_lex_state = 1}, + [20266] = {.lex_state = 0, .external_lex_state = 1}, + [20267] = {.lex_state = 0, .external_lex_state = 1}, + [20268] = {.lex_state = 547, .external_lex_state = 1}, + [20269] = {.lex_state = 131, .external_lex_state = 1}, + [20270] = {.lex_state = 0, .external_lex_state = 1}, + [20271] = {.lex_state = 0, .external_lex_state = 1}, + [20272] = {.lex_state = 0, .external_lex_state = 1}, + [20273] = {.lex_state = 0, .external_lex_state = 1}, + [20274] = {.lex_state = 0, .external_lex_state = 1}, + [20275] = {.lex_state = 0, .external_lex_state = 1}, + [20276] = {.lex_state = 125, .external_lex_state = 1}, + [20277] = {.lex_state = 125, .external_lex_state = 1}, + [20278] = {.lex_state = 0, .external_lex_state = 1}, + [20279] = {.lex_state = 0, .external_lex_state = 1}, + [20280] = {.lex_state = 0, .external_lex_state = 1}, + [20281] = {.lex_state = 0, .external_lex_state = 1}, + [20282] = {.lex_state = 0, .external_lex_state = 1}, + [20283] = {.lex_state = 0, .external_lex_state = 1}, + [20284] = {.lex_state = 0, .external_lex_state = 1}, + [20285] = {.lex_state = 0, .external_lex_state = 1}, + [20286] = {.lex_state = 0, .external_lex_state = 1}, + [20287] = {.lex_state = 547, .external_lex_state = 1}, + [20288] = {.lex_state = 0, .external_lex_state = 1}, + [20289] = {.lex_state = 125, .external_lex_state = 1}, + [20290] = {.lex_state = 0, .external_lex_state = 1}, + [20291] = {.lex_state = 125, .external_lex_state = 1}, + [20292] = {.lex_state = 0, .external_lex_state = 1}, + [20293] = {.lex_state = 0, .external_lex_state = 1}, + [20294] = {.lex_state = 0, .external_lex_state = 1}, + [20295] = {.lex_state = 0, .external_lex_state = 1}, + [20296] = {.lex_state = 0, .external_lex_state = 1}, + [20297] = {.lex_state = 0, .external_lex_state = 1}, + [20298] = {.lex_state = 0, .external_lex_state = 1}, + [20299] = {.lex_state = 0, .external_lex_state = 1}, + [20300] = {.lex_state = 0, .external_lex_state = 1}, + [20301] = {.lex_state = 0, .external_lex_state = 1}, + [20302] = {.lex_state = 0, .external_lex_state = 1}, + [20303] = {.lex_state = 0, .external_lex_state = 1}, + [20304] = {.lex_state = 0, .external_lex_state = 1}, + [20305] = {.lex_state = 0, .external_lex_state = 1}, + [20306] = {.lex_state = 0, .external_lex_state = 1}, + [20307] = {.lex_state = 0, .external_lex_state = 1}, + [20308] = {.lex_state = 0, .external_lex_state = 1}, + [20309] = {.lex_state = 0, .external_lex_state = 1}, + [20310] = {.lex_state = 0, .external_lex_state = 1}, + [20311] = {.lex_state = 0, .external_lex_state = 1}, + [20312] = {.lex_state = 0, .external_lex_state = 1}, + [20313] = {.lex_state = 547, .external_lex_state = 1}, + [20314] = {.lex_state = 0, .external_lex_state = 1}, + [20315] = {.lex_state = 0, .external_lex_state = 1}, + [20316] = {.lex_state = 0, .external_lex_state = 1}, + [20317] = {.lex_state = 0, .external_lex_state = 1}, + [20318] = {.lex_state = 0, .external_lex_state = 1}, + [20319] = {.lex_state = 0, .external_lex_state = 1}, + [20320] = {.lex_state = 0, .external_lex_state = 1}, + [20321] = {.lex_state = 0, .external_lex_state = 1}, + [20322] = {.lex_state = 0, .external_lex_state = 1}, + [20323] = {.lex_state = 0, .external_lex_state = 1}, + [20324] = {.lex_state = 0, .external_lex_state = 1}, + [20325] = {.lex_state = 0, .external_lex_state = 1}, + [20326] = {.lex_state = 0, .external_lex_state = 1}, + [20327] = {.lex_state = 0, .external_lex_state = 1}, + [20328] = {.lex_state = 0, .external_lex_state = 1}, + [20329] = {.lex_state = 0, .external_lex_state = 1}, + [20330] = {.lex_state = 125, .external_lex_state = 1}, + [20331] = {.lex_state = 125, .external_lex_state = 1}, + [20332] = {.lex_state = 0, .external_lex_state = 1}, + [20333] = {.lex_state = 0, .external_lex_state = 1}, + [20334] = {.lex_state = 0, .external_lex_state = 1}, + [20335] = {.lex_state = 0, .external_lex_state = 1}, + [20336] = {.lex_state = 547, .external_lex_state = 1}, + [20337] = {.lex_state = 0, .external_lex_state = 1}, + [20338] = {.lex_state = 0, .external_lex_state = 1}, + [20339] = {.lex_state = 0, .external_lex_state = 1}, + [20340] = {.lex_state = 0, .external_lex_state = 1}, + [20341] = {.lex_state = 0, .external_lex_state = 1}, + [20342] = {.lex_state = 0, .external_lex_state = 1}, + [20343] = {.lex_state = 0, .external_lex_state = 1}, + [20344] = {.lex_state = 0, .external_lex_state = 1}, + [20345] = {.lex_state = 0, .external_lex_state = 1}, + [20346] = {.lex_state = 0, .external_lex_state = 1}, + [20347] = {.lex_state = 0, .external_lex_state = 1}, + [20348] = {.lex_state = 0, .external_lex_state = 1}, + [20349] = {.lex_state = 0, .external_lex_state = 1}, + [20350] = {.lex_state = 0, .external_lex_state = 1}, + [20351] = {.lex_state = 0, .external_lex_state = 1}, + [20352] = {.lex_state = 132, .external_lex_state = 1}, + [20353] = {.lex_state = 547, .external_lex_state = 1}, + [20354] = {.lex_state = 0, .external_lex_state = 1}, + [20355] = {.lex_state = 0, .external_lex_state = 1}, + [20356] = {.lex_state = 0, .external_lex_state = 1}, + [20357] = {.lex_state = 0, .external_lex_state = 1}, + [20358] = {.lex_state = 0, .external_lex_state = 1}, + [20359] = {.lex_state = 0, .external_lex_state = 1}, + [20360] = {.lex_state = 0, .external_lex_state = 1}, + [20361] = {.lex_state = 0, .external_lex_state = 1}, + [20362] = {.lex_state = 0, .external_lex_state = 1}, + [20363] = {.lex_state = 0, .external_lex_state = 1}, + [20364] = {.lex_state = 0, .external_lex_state = 1}, + [20365] = {.lex_state = 0, .external_lex_state = 1}, + [20366] = {.lex_state = 0, .external_lex_state = 1}, + [20367] = {.lex_state = 0, .external_lex_state = 1}, + [20368] = {.lex_state = 0, .external_lex_state = 1}, + [20369] = {.lex_state = 0, .external_lex_state = 1}, + [20370] = {.lex_state = 0, .external_lex_state = 1}, + [20371] = {.lex_state = 0, .external_lex_state = 1}, + [20372] = {.lex_state = 0, .external_lex_state = 1}, + [20373] = {.lex_state = 0, .external_lex_state = 1}, + [20374] = {.lex_state = 547, .external_lex_state = 1}, + [20375] = {.lex_state = 0, .external_lex_state = 1}, + [20376] = {.lex_state = 125, .external_lex_state = 1}, + [20377] = {.lex_state = 0, .external_lex_state = 1}, + [20378] = {.lex_state = 0, .external_lex_state = 1}, + [20379] = {.lex_state = 0, .external_lex_state = 1}, + [20380] = {.lex_state = 0, .external_lex_state = 1}, + [20381] = {.lex_state = 0, .external_lex_state = 1}, + [20382] = {.lex_state = 0, .external_lex_state = 1}, + [20383] = {.lex_state = 0, .external_lex_state = 1}, + [20384] = {.lex_state = 0, .external_lex_state = 1}, + [20385] = {.lex_state = 0, .external_lex_state = 1}, + [20386] = {.lex_state = 0, .external_lex_state = 1}, + [20387] = {.lex_state = 125, .external_lex_state = 1}, + [20388] = {.lex_state = 0, .external_lex_state = 1}, + [20389] = {.lex_state = 125, .external_lex_state = 1}, + [20390] = {.lex_state = 0, .external_lex_state = 1}, + [20391] = {.lex_state = 0, .external_lex_state = 1}, + [20392] = {.lex_state = 547, .external_lex_state = 1}, + [20393] = {.lex_state = 0, .external_lex_state = 1}, + [20394] = {.lex_state = 125, .external_lex_state = 1}, + [20395] = {.lex_state = 0, .external_lex_state = 1}, + [20396] = {.lex_state = 0, .external_lex_state = 1}, + [20397] = {.lex_state = 0, .external_lex_state = 1}, + [20398] = {.lex_state = 0, .external_lex_state = 1}, + [20399] = {.lex_state = 0, .external_lex_state = 1}, + [20400] = {.lex_state = 122, .external_lex_state = 1}, + [20401] = {.lex_state = 0, .external_lex_state = 1}, + [20402] = {.lex_state = 0, .external_lex_state = 1}, + [20403] = {.lex_state = 0, .external_lex_state = 1}, + [20404] = {.lex_state = 0, .external_lex_state = 1}, + [20405] = {.lex_state = 0, .external_lex_state = 1}, + [20406] = {.lex_state = 0, .external_lex_state = 1}, + [20407] = {.lex_state = 0, .external_lex_state = 1}, + [20408] = {.lex_state = 0, .external_lex_state = 1}, + [20409] = {.lex_state = 0, .external_lex_state = 1}, + [20410] = {.lex_state = 0, .external_lex_state = 1}, + [20411] = {.lex_state = 0, .external_lex_state = 1}, + [20412] = {.lex_state = 547, .external_lex_state = 1}, + [20413] = {.lex_state = 0, .external_lex_state = 1}, + [20414] = {.lex_state = 0, .external_lex_state = 1}, + [20415] = {.lex_state = 0, .external_lex_state = 1}, + [20416] = {.lex_state = 0, .external_lex_state = 1}, + [20417] = {.lex_state = 0, .external_lex_state = 1}, + [20418] = {.lex_state = 0, .external_lex_state = 1}, + [20419] = {.lex_state = 0, .external_lex_state = 1}, + [20420] = {.lex_state = 0, .external_lex_state = 1}, + [20421] = {.lex_state = 0, .external_lex_state = 1}, + [20422] = {.lex_state = 0, .external_lex_state = 1}, + [20423] = {.lex_state = 0, .external_lex_state = 1}, + [20424] = {.lex_state = 0, .external_lex_state = 1}, + [20425] = {.lex_state = 0, .external_lex_state = 1}, + [20426] = {.lex_state = 0, .external_lex_state = 1}, + [20427] = {.lex_state = 547, .external_lex_state = 1}, + [20428] = {.lex_state = 0, .external_lex_state = 1}, + [20429] = {.lex_state = 125, .external_lex_state = 1}, + [20430] = {.lex_state = 125, .external_lex_state = 1}, + [20431] = {.lex_state = 0, .external_lex_state = 1}, + [20432] = {.lex_state = 0, .external_lex_state = 1}, + [20433] = {.lex_state = 0, .external_lex_state = 1}, + [20434] = {.lex_state = 0, .external_lex_state = 1}, + [20435] = {.lex_state = 0, .external_lex_state = 1}, + [20436] = {.lex_state = 0, .external_lex_state = 1}, + [20437] = {.lex_state = 0, .external_lex_state = 1}, + [20438] = {.lex_state = 0, .external_lex_state = 1}, + [20439] = {.lex_state = 0, .external_lex_state = 1}, + [20440] = {.lex_state = 0, .external_lex_state = 1}, + [20441] = {.lex_state = 0, .external_lex_state = 1}, + [20442] = {.lex_state = 0, .external_lex_state = 1}, + [20443] = {.lex_state = 0, .external_lex_state = 1}, + [20444] = {.lex_state = 547, .external_lex_state = 1}, + [20445] = {.lex_state = 0, .external_lex_state = 1}, + [20446] = {.lex_state = 0, .external_lex_state = 1}, + [20447] = {.lex_state = 0, .external_lex_state = 1}, + [20448] = {.lex_state = 0, .external_lex_state = 1}, + [20449] = {.lex_state = 0, .external_lex_state = 1}, + [20450] = {.lex_state = 0, .external_lex_state = 1}, + [20451] = {.lex_state = 0, .external_lex_state = 1}, + [20452] = {.lex_state = 0, .external_lex_state = 1}, + [20453] = {.lex_state = 0, .external_lex_state = 1}, + [20454] = {.lex_state = 125, .external_lex_state = 1}, + [20455] = {.lex_state = 0, .external_lex_state = 1}, + [20456] = {.lex_state = 0, .external_lex_state = 1}, + [20457] = {.lex_state = 0, .external_lex_state = 1}, + [20458] = {.lex_state = 0, .external_lex_state = 1}, + [20459] = {.lex_state = 547, .external_lex_state = 1}, + [20460] = {.lex_state = 0, .external_lex_state = 1}, + [20461] = {.lex_state = 0, .external_lex_state = 1}, + [20462] = {.lex_state = 0, .external_lex_state = 1}, + [20463] = {.lex_state = 0, .external_lex_state = 1}, + [20464] = {.lex_state = 0, .external_lex_state = 1}, + [20465] = {.lex_state = 0, .external_lex_state = 1}, + [20466] = {.lex_state = 0, .external_lex_state = 1}, + [20467] = {.lex_state = 0, .external_lex_state = 1}, + [20468] = {.lex_state = 0, .external_lex_state = 1}, + [20469] = {.lex_state = 0, .external_lex_state = 1}, + [20470] = {.lex_state = 547, .external_lex_state = 1}, + [20471] = {.lex_state = 0, .external_lex_state = 1}, + [20472] = {.lex_state = 0, .external_lex_state = 1}, + [20473] = {.lex_state = 0, .external_lex_state = 1}, + [20474] = {.lex_state = 125, .external_lex_state = 1}, + [20475] = {.lex_state = 125, .external_lex_state = 1}, + [20476] = {.lex_state = 125, .external_lex_state = 1}, + [20477] = {.lex_state = 0, .external_lex_state = 1}, + [20478] = {.lex_state = 547, .external_lex_state = 1}, + [20479] = {.lex_state = 0, .external_lex_state = 1}, + [20480] = {.lex_state = 0, .external_lex_state = 1}, + [20481] = {.lex_state = 0, .external_lex_state = 1}, + [20482] = {.lex_state = 125, .external_lex_state = 1}, + [20483] = {.lex_state = 0, .external_lex_state = 1}, + [20484] = {.lex_state = 0, .external_lex_state = 1}, + [20485] = {.lex_state = 0, .external_lex_state = 1}, + [20486] = {.lex_state = 0, .external_lex_state = 1}, + [20487] = {.lex_state = 0, .external_lex_state = 1}, + [20488] = {.lex_state = 547, .external_lex_state = 1}, + [20489] = {.lex_state = 0, .external_lex_state = 1}, + [20490] = {.lex_state = 0, .external_lex_state = 1}, + [20491] = {.lex_state = 0, .external_lex_state = 1}, + [20492] = {.lex_state = 0, .external_lex_state = 1}, + [20493] = {.lex_state = 0, .external_lex_state = 1}, + [20494] = {.lex_state = 0, .external_lex_state = 1}, + [20495] = {.lex_state = 0, .external_lex_state = 1}, + [20496] = {.lex_state = 0, .external_lex_state = 1}, + [20497] = {.lex_state = 0, .external_lex_state = 1}, + [20498] = {.lex_state = 0, .external_lex_state = 1}, + [20499] = {.lex_state = 0, .external_lex_state = 1}, + [20500] = {.lex_state = 125, .external_lex_state = 1}, + [20501] = {.lex_state = 0, .external_lex_state = 1}, + [20502] = {.lex_state = 0, .external_lex_state = 1}, + [20503] = {.lex_state = 0, .external_lex_state = 1}, + [20504] = {.lex_state = 0, .external_lex_state = 1}, + [20505] = {.lex_state = 547, .external_lex_state = 1}, + [20506] = {.lex_state = 0, .external_lex_state = 1}, + [20507] = {.lex_state = 0, .external_lex_state = 1}, + [20508] = {.lex_state = 0, .external_lex_state = 1}, + [20509] = {.lex_state = 0, .external_lex_state = 1}, + [20510] = {.lex_state = 125, .external_lex_state = 1}, + [20511] = {.lex_state = 0, .external_lex_state = 1}, + [20512] = {.lex_state = 0, .external_lex_state = 1}, + [20513] = {.lex_state = 0, .external_lex_state = 1}, + [20514] = {.lex_state = 0, .external_lex_state = 1}, + [20515] = {.lex_state = 0, .external_lex_state = 1}, + [20516] = {.lex_state = 0, .external_lex_state = 1}, + [20517] = {.lex_state = 0, .external_lex_state = 1}, + [20518] = {.lex_state = 0, .external_lex_state = 1}, + [20519] = {.lex_state = 0, .external_lex_state = 1}, + [20520] = {.lex_state = 0, .external_lex_state = 1}, + [20521] = {.lex_state = 0, .external_lex_state = 1}, + [20522] = {.lex_state = 0, .external_lex_state = 1}, + [20523] = {.lex_state = 547, .external_lex_state = 1}, + [20524] = {.lex_state = 0, .external_lex_state = 1}, + [20525] = {.lex_state = 0, .external_lex_state = 1}, + [20526] = {.lex_state = 0, .external_lex_state = 1}, + [20527] = {.lex_state = 0, .external_lex_state = 1}, + [20528] = {.lex_state = 0, .external_lex_state = 1}, + [20529] = {.lex_state = 0, .external_lex_state = 1}, + [20530] = {.lex_state = 0, .external_lex_state = 1}, + [20531] = {.lex_state = 0, .external_lex_state = 1}, + [20532] = {.lex_state = 0, .external_lex_state = 1}, + [20533] = {.lex_state = 0, .external_lex_state = 1}, + [20534] = {.lex_state = 0, .external_lex_state = 1}, + [20535] = {.lex_state = 547, .external_lex_state = 1}, + [20536] = {.lex_state = 0, .external_lex_state = 1}, + [20537] = {.lex_state = 0, .external_lex_state = 1}, + [20538] = {.lex_state = 0, .external_lex_state = 1}, + [20539] = {.lex_state = 0, .external_lex_state = 1}, + [20540] = {.lex_state = 0, .external_lex_state = 1}, + [20541] = {.lex_state = 0, .external_lex_state = 1}, + [20542] = {.lex_state = 0, .external_lex_state = 1}, + [20543] = {.lex_state = 0, .external_lex_state = 1}, + [20544] = {.lex_state = 0, .external_lex_state = 1}, + [20545] = {.lex_state = 0, .external_lex_state = 1}, + [20546] = {.lex_state = 547, .external_lex_state = 1}, + [20547] = {.lex_state = 0, .external_lex_state = 1}, + [20548] = {.lex_state = 125, .external_lex_state = 1}, + [20549] = {.lex_state = 0, .external_lex_state = 1}, + [20550] = {.lex_state = 0, .external_lex_state = 1}, + [20551] = {.lex_state = 0, .external_lex_state = 1}, + [20552] = {.lex_state = 0, .external_lex_state = 1}, + [20553] = {.lex_state = 0, .external_lex_state = 1}, + [20554] = {.lex_state = 0, .external_lex_state = 1}, + [20555] = {.lex_state = 547, .external_lex_state = 1}, + [20556] = {.lex_state = 0, .external_lex_state = 1}, + [20557] = {.lex_state = 0, .external_lex_state = 1}, + [20558] = {.lex_state = 0, .external_lex_state = 1}, + [20559] = {.lex_state = 0, .external_lex_state = 1}, + [20560] = {.lex_state = 0, .external_lex_state = 1}, + [20561] = {.lex_state = 0, .external_lex_state = 1}, + [20562] = {.lex_state = 0, .external_lex_state = 1}, + [20563] = {.lex_state = 547, .external_lex_state = 1}, + [20564] = {.lex_state = 0, .external_lex_state = 1}, + [20565] = {.lex_state = 0, .external_lex_state = 1}, + [20566] = {.lex_state = 125, .external_lex_state = 1}, + [20567] = {.lex_state = 0, .external_lex_state = 1}, + [20568] = {.lex_state = 0, .external_lex_state = 1}, + [20569] = {.lex_state = 547, .external_lex_state = 1}, + [20570] = {.lex_state = 0, .external_lex_state = 1}, + [20571] = {.lex_state = 0, .external_lex_state = 1}, + [20572] = {.lex_state = 0, .external_lex_state = 1}, + [20573] = {.lex_state = 0, .external_lex_state = 1}, + [20574] = {.lex_state = 0, .external_lex_state = 1}, + [20575] = {.lex_state = 125, .external_lex_state = 1}, + [20576] = {.lex_state = 0, .external_lex_state = 1}, + [20577] = {.lex_state = 547, .external_lex_state = 1}, + [20578] = {.lex_state = 0, .external_lex_state = 1}, + [20579] = {.lex_state = 0, .external_lex_state = 1}, + [20580] = {.lex_state = 0, .external_lex_state = 1}, + [20581] = {.lex_state = 125, .external_lex_state = 1}, + [20582] = {.lex_state = 0, .external_lex_state = 1}, + [20583] = {.lex_state = 125, .external_lex_state = 1}, + [20584] = {.lex_state = 0, .external_lex_state = 1}, + [20585] = {.lex_state = 0, .external_lex_state = 1}, + [20586] = {.lex_state = 0, .external_lex_state = 1}, + [20587] = {.lex_state = 125, .external_lex_state = 1}, + [20588] = {.lex_state = 0, .external_lex_state = 1}, + [20589] = {.lex_state = 0, .external_lex_state = 1}, + [20590] = {.lex_state = 0, .external_lex_state = 1}, + [20591] = {.lex_state = 0, .external_lex_state = 1}, + [20592] = {.lex_state = 547, .external_lex_state = 1}, + [20593] = {.lex_state = 0, .external_lex_state = 1}, + [20594] = {.lex_state = 0, .external_lex_state = 1}, + [20595] = {.lex_state = 125, .external_lex_state = 1}, + [20596] = {.lex_state = 0, .external_lex_state = 1}, + [20597] = {.lex_state = 0, .external_lex_state = 1}, + [20598] = {.lex_state = 0, .external_lex_state = 1}, + [20599] = {.lex_state = 0, .external_lex_state = 1}, + [20600] = {.lex_state = 0, .external_lex_state = 1}, + [20601] = {.lex_state = 0, .external_lex_state = 1}, + [20602] = {.lex_state = 0, .external_lex_state = 1}, + [20603] = {.lex_state = 0, .external_lex_state = 1}, + [20604] = {.lex_state = 0, .external_lex_state = 1}, + [20605] = {.lex_state = 547, .external_lex_state = 1}, + [20606] = {.lex_state = 547, .external_lex_state = 1}, + [20607] = {.lex_state = 0, .external_lex_state = 1}, + [20608] = {.lex_state = 0, .external_lex_state = 1}, + [20609] = {.lex_state = 0, .external_lex_state = 1}, + [20610] = {.lex_state = 0, .external_lex_state = 1}, + [20611] = {.lex_state = 0, .external_lex_state = 1}, + [20612] = {.lex_state = 0, .external_lex_state = 1}, + [20613] = {.lex_state = 0, .external_lex_state = 1}, + [20614] = {.lex_state = 0, .external_lex_state = 1}, + [20615] = {.lex_state = 0, .external_lex_state = 1}, + [20616] = {.lex_state = 0, .external_lex_state = 1}, + [20617] = {.lex_state = 547, .external_lex_state = 1}, + [20618] = {.lex_state = 0, .external_lex_state = 1}, + [20619] = {.lex_state = 0, .external_lex_state = 1}, + [20620] = {.lex_state = 0, .external_lex_state = 1}, + [20621] = {.lex_state = 547, .external_lex_state = 1}, + [20622] = {.lex_state = 0, .external_lex_state = 1}, + [20623] = {.lex_state = 0, .external_lex_state = 1}, + [20624] = {.lex_state = 0, .external_lex_state = 1}, + [20625] = {.lex_state = 0, .external_lex_state = 1}, + [20626] = {.lex_state = 0, .external_lex_state = 1}, + [20627] = {.lex_state = 547, .external_lex_state = 1}, + [20628] = {.lex_state = 0, .external_lex_state = 1}, + [20629] = {.lex_state = 0, .external_lex_state = 1}, + [20630] = {.lex_state = 0, .external_lex_state = 1}, + [20631] = {.lex_state = 0, .external_lex_state = 1}, + [20632] = {.lex_state = 0, .external_lex_state = 1}, + [20633] = {.lex_state = 0, .external_lex_state = 1}, + [20634] = {.lex_state = 547, .external_lex_state = 1}, + [20635] = {.lex_state = 0, .external_lex_state = 1}, + [20636] = {.lex_state = 0, .external_lex_state = 1}, + [20637] = {.lex_state = 0, .external_lex_state = 1}, + [20638] = {.lex_state = 0, .external_lex_state = 1}, + [20639] = {.lex_state = 0, .external_lex_state = 1}, + [20640] = {.lex_state = 0, .external_lex_state = 1}, + [20641] = {.lex_state = 0, .external_lex_state = 1}, + [20642] = {.lex_state = 0, .external_lex_state = 1}, + [20643] = {.lex_state = 547, .external_lex_state = 1}, + [20644] = {.lex_state = 0, .external_lex_state = 1}, + [20645] = {.lex_state = 0, .external_lex_state = 1}, + [20646] = {.lex_state = 0, .external_lex_state = 1}, + [20647] = {.lex_state = 0, .external_lex_state = 1}, + [20648] = {.lex_state = 0, .external_lex_state = 1}, + [20649] = {.lex_state = 0, .external_lex_state = 1}, + [20650] = {.lex_state = 547, .external_lex_state = 1}, + [20651] = {.lex_state = 0, .external_lex_state = 1}, + [20652] = {.lex_state = 0, .external_lex_state = 1}, + [20653] = {.lex_state = 0, .external_lex_state = 1}, + [20654] = {.lex_state = 0, .external_lex_state = 1}, + [20655] = {.lex_state = 547, .external_lex_state = 1}, + [20656] = {.lex_state = 0, .external_lex_state = 1}, + [20657] = {.lex_state = 0, .external_lex_state = 1}, + [20658] = {.lex_state = 0, .external_lex_state = 1}, + [20659] = {.lex_state = 0, .external_lex_state = 1}, + [20660] = {.lex_state = 125, .external_lex_state = 1}, + [20661] = {.lex_state = 0, .external_lex_state = 1}, + [20662] = {.lex_state = 547, .external_lex_state = 1}, + [20663] = {.lex_state = 0, .external_lex_state = 1}, + [20664] = {.lex_state = 0, .external_lex_state = 1}, + [20665] = {.lex_state = 0, .external_lex_state = 1}, + [20666] = {.lex_state = 0, .external_lex_state = 1}, + [20667] = {.lex_state = 125, .external_lex_state = 1}, + [20668] = {.lex_state = 0, .external_lex_state = 1}, + [20669] = {.lex_state = 0, .external_lex_state = 1}, + [20670] = {.lex_state = 125, .external_lex_state = 1}, + [20671] = {.lex_state = 0, .external_lex_state = 1}, + [20672] = {.lex_state = 0, .external_lex_state = 1}, + [20673] = {.lex_state = 547, .external_lex_state = 1}, + [20674] = {.lex_state = 0, .external_lex_state = 1}, + [20675] = {.lex_state = 0, .external_lex_state = 1}, + [20676] = {.lex_state = 125, .external_lex_state = 1}, + [20677] = {.lex_state = 0, .external_lex_state = 1}, + [20678] = {.lex_state = 0, .external_lex_state = 1}, + [20679] = {.lex_state = 0, .external_lex_state = 1}, + [20680] = {.lex_state = 0, .external_lex_state = 1}, + [20681] = {.lex_state = 0, .external_lex_state = 1}, + [20682] = {.lex_state = 0, .external_lex_state = 1}, + [20683] = {.lex_state = 0, .external_lex_state = 1}, + [20684] = {.lex_state = 0, .external_lex_state = 1}, + [20685] = {.lex_state = 0, .external_lex_state = 1}, + [20686] = {.lex_state = 547, .external_lex_state = 1}, + [20687] = {.lex_state = 124, .external_lex_state = 1}, + [20688] = {.lex_state = 0, .external_lex_state = 1}, + [20689] = {.lex_state = 0, .external_lex_state = 1}, + [20690] = {.lex_state = 0, .external_lex_state = 1}, + [20691] = {.lex_state = 0, .external_lex_state = 1}, + [20692] = {.lex_state = 0, .external_lex_state = 1}, + [20693] = {.lex_state = 0, .external_lex_state = 1}, + [20694] = {.lex_state = 0, .external_lex_state = 1}, + [20695] = {.lex_state = 0, .external_lex_state = 1}, + [20696] = {.lex_state = 547, .external_lex_state = 1}, + [20697] = {.lex_state = 0, .external_lex_state = 1}, + [20698] = {.lex_state = 0, .external_lex_state = 1}, + [20699] = {.lex_state = 0, .external_lex_state = 1}, + [20700] = {.lex_state = 0, .external_lex_state = 1}, + [20701] = {.lex_state = 0, .external_lex_state = 1}, + [20702] = {.lex_state = 0, .external_lex_state = 1}, + [20703] = {.lex_state = 0, .external_lex_state = 1}, + [20704] = {.lex_state = 125, .external_lex_state = 1}, + [20705] = {.lex_state = 547, .external_lex_state = 1}, + [20706] = {.lex_state = 0, .external_lex_state = 1}, + [20707] = {.lex_state = 0, .external_lex_state = 1}, + [20708] = {.lex_state = 0, .external_lex_state = 1}, + [20709] = {.lex_state = 0, .external_lex_state = 1}, + [20710] = {.lex_state = 0, .external_lex_state = 1}, + [20711] = {.lex_state = 0, .external_lex_state = 1}, + [20712] = {.lex_state = 0, .external_lex_state = 1}, + [20713] = {.lex_state = 0, .external_lex_state = 1}, + [20714] = {.lex_state = 125, .external_lex_state = 1}, + [20715] = {.lex_state = 547, .external_lex_state = 1}, + [20716] = {.lex_state = 0, .external_lex_state = 1}, + [20717] = {.lex_state = 0, .external_lex_state = 1}, + [20718] = {.lex_state = 131, .external_lex_state = 1}, + [20719] = {.lex_state = 0, .external_lex_state = 1}, + [20720] = {.lex_state = 0, .external_lex_state = 1}, + [20721] = {.lex_state = 0, .external_lex_state = 1}, + [20722] = {.lex_state = 547, .external_lex_state = 1}, + [20723] = {.lex_state = 0, .external_lex_state = 1}, + [20724] = {.lex_state = 0, .external_lex_state = 1}, + [20725] = {.lex_state = 547, .external_lex_state = 1}, + [20726] = {.lex_state = 0, .external_lex_state = 1}, + [20727] = {.lex_state = 131, .external_lex_state = 1}, + [20728] = {.lex_state = 0, .external_lex_state = 1}, + [20729] = {.lex_state = 131, .external_lex_state = 1}, + [20730] = {.lex_state = 0, .external_lex_state = 1}, + [20731] = {.lex_state = 0, .external_lex_state = 1}, + [20732] = {.lex_state = 0, .external_lex_state = 1}, + [20733] = {.lex_state = 125, .external_lex_state = 1}, + [20734] = {.lex_state = 125, .external_lex_state = 1}, + [20735] = {.lex_state = 0, .external_lex_state = 1}, + [20736] = {.lex_state = 0, .external_lex_state = 1}, + [20737] = {.lex_state = 0, .external_lex_state = 1}, + [20738] = {.lex_state = 0, .external_lex_state = 1}, + [20739] = {.lex_state = 0, .external_lex_state = 1}, + [20740] = {.lex_state = 0, .external_lex_state = 1}, + [20741] = {.lex_state = 0, .external_lex_state = 1}, + [20742] = {.lex_state = 0, .external_lex_state = 1}, + [20743] = {.lex_state = 0, .external_lex_state = 1}, + [20744] = {.lex_state = 0, .external_lex_state = 1}, + [20745] = {.lex_state = 0, .external_lex_state = 1}, + [20746] = {.lex_state = 0, .external_lex_state = 1}, + [20747] = {.lex_state = 0, .external_lex_state = 1}, + [20748] = {.lex_state = 0, .external_lex_state = 1}, + [20749] = {.lex_state = 0, .external_lex_state = 1}, + [20750] = {.lex_state = 0, .external_lex_state = 1}, + [20751] = {.lex_state = 0, .external_lex_state = 1}, + [20752] = {.lex_state = 0, .external_lex_state = 1}, + [20753] = {.lex_state = 0, .external_lex_state = 1}, + [20754] = {.lex_state = 0, .external_lex_state = 1}, + [20755] = {.lex_state = 0, .external_lex_state = 1}, + [20756] = {.lex_state = 0, .external_lex_state = 1}, + [20757] = {.lex_state = 0, .external_lex_state = 1}, + [20758] = {.lex_state = 0, .external_lex_state = 1}, + [20759] = {.lex_state = 0, .external_lex_state = 1}, + [20760] = {.lex_state = 0, .external_lex_state = 1}, + [20761] = {.lex_state = 0, .external_lex_state = 1}, + [20762] = {.lex_state = 0, .external_lex_state = 1}, + [20763] = {.lex_state = 0, .external_lex_state = 1}, + [20764] = {.lex_state = 0, .external_lex_state = 1}, + [20765] = {.lex_state = 0, .external_lex_state = 1}, + [20766] = {.lex_state = 0, .external_lex_state = 1}, + [20767] = {.lex_state = 125, .external_lex_state = 1}, + [20768] = {.lex_state = 0, .external_lex_state = 1}, + [20769] = {.lex_state = 0, .external_lex_state = 1}, + [20770] = {.lex_state = 125, .external_lex_state = 1}, + [20771] = {.lex_state = 0, .external_lex_state = 1}, + [20772] = {.lex_state = 0, .external_lex_state = 1}, + [20773] = {.lex_state = 0, .external_lex_state = 1}, + [20774] = {.lex_state = 0, .external_lex_state = 1}, + [20775] = {.lex_state = 0, .external_lex_state = 1}, + [20776] = {.lex_state = 0, .external_lex_state = 1}, + [20777] = {.lex_state = 0, .external_lex_state = 1}, + [20778] = {.lex_state = 0, .external_lex_state = 1}, + [20779] = {.lex_state = 0, .external_lex_state = 1}, + [20780] = {.lex_state = 125, .external_lex_state = 1}, + [20781] = {.lex_state = 0, .external_lex_state = 1}, + [20782] = {.lex_state = 0, .external_lex_state = 1}, + [20783] = {.lex_state = 125, .external_lex_state = 1}, + [20784] = {.lex_state = 0, .external_lex_state = 1}, + [20785] = {.lex_state = 0, .external_lex_state = 1}, + [20786] = {.lex_state = 0, .external_lex_state = 1}, + [20787] = {.lex_state = 0, .external_lex_state = 1}, + [20788] = {.lex_state = 0, .external_lex_state = 1}, + [20789] = {.lex_state = 0, .external_lex_state = 1}, + [20790] = {.lex_state = 0, .external_lex_state = 1}, + [20791] = {.lex_state = 0, .external_lex_state = 1}, + [20792] = {.lex_state = 0, .external_lex_state = 1}, + [20793] = {.lex_state = 0, .external_lex_state = 1}, + [20794] = {.lex_state = 0, .external_lex_state = 1}, + [20795] = {.lex_state = 0, .external_lex_state = 1}, + [20796] = {.lex_state = 0, .external_lex_state = 1}, + [20797] = {.lex_state = 0, .external_lex_state = 1}, + [20798] = {.lex_state = 0, .external_lex_state = 1}, + [20799] = {.lex_state = 0, .external_lex_state = 1}, + [20800] = {.lex_state = 125, .external_lex_state = 1}, + [20801] = {.lex_state = 0, .external_lex_state = 1}, + [20802] = {.lex_state = 0, .external_lex_state = 1}, + [20803] = {.lex_state = 0, .external_lex_state = 1}, + [20804] = {.lex_state = 0, .external_lex_state = 1}, + [20805] = {.lex_state = 0, .external_lex_state = 1}, + [20806] = {.lex_state = 0, .external_lex_state = 1}, + [20807] = {.lex_state = 0, .external_lex_state = 1}, + [20808] = {.lex_state = 0, .external_lex_state = 1}, + [20809] = {.lex_state = 0, .external_lex_state = 1}, + [20810] = {.lex_state = 0, .external_lex_state = 1}, + [20811] = {.lex_state = 0, .external_lex_state = 1}, + [20812] = {.lex_state = 0, .external_lex_state = 1}, + [20813] = {.lex_state = 0, .external_lex_state = 1}, + [20814] = {.lex_state = 0, .external_lex_state = 1}, + [20815] = {.lex_state = 0, .external_lex_state = 1}, + [20816] = {.lex_state = 0, .external_lex_state = 1}, + [20817] = {.lex_state = 0, .external_lex_state = 1}, + [20818] = {.lex_state = 0, .external_lex_state = 1}, + [20819] = {.lex_state = 0, .external_lex_state = 1}, + [20820] = {.lex_state = 0, .external_lex_state = 1}, + [20821] = {.lex_state = 0, .external_lex_state = 1}, + [20822] = {.lex_state = 0, .external_lex_state = 1}, + [20823] = {.lex_state = 0, .external_lex_state = 1}, + [20824] = {.lex_state = 0, .external_lex_state = 1}, + [20825] = {.lex_state = 0, .external_lex_state = 1}, + [20826] = {.lex_state = 0, .external_lex_state = 1}, + [20827] = {.lex_state = 0, .external_lex_state = 1}, + [20828] = {.lex_state = 0, .external_lex_state = 1}, + [20829] = {.lex_state = 0, .external_lex_state = 1}, + [20830] = {.lex_state = 0, .external_lex_state = 1}, + [20831] = {.lex_state = 0, .external_lex_state = 1}, + [20832] = {.lex_state = 0, .external_lex_state = 1}, + [20833] = {.lex_state = 0, .external_lex_state = 1}, + [20834] = {.lex_state = 0, .external_lex_state = 1}, + [20835] = {.lex_state = 0, .external_lex_state = 1}, + [20836] = {.lex_state = 0, .external_lex_state = 1}, + [20837] = {.lex_state = 0, .external_lex_state = 1}, + [20838] = {.lex_state = 0, .external_lex_state = 1}, + [20839] = {.lex_state = 0, .external_lex_state = 1}, + [20840] = {.lex_state = 0, .external_lex_state = 1}, + [20841] = {.lex_state = 0, .external_lex_state = 1}, + [20842] = {.lex_state = 0, .external_lex_state = 1}, + [20843] = {.lex_state = 0, .external_lex_state = 1}, + [20844] = {.lex_state = 0, .external_lex_state = 1}, + [20845] = {.lex_state = 0, .external_lex_state = 1}, + [20846] = {.lex_state = 0, .external_lex_state = 1}, + [20847] = {.lex_state = 0, .external_lex_state = 1}, + [20848] = {.lex_state = 0, .external_lex_state = 1}, + [20849] = {.lex_state = 0, .external_lex_state = 1}, + [20850] = {.lex_state = 0, .external_lex_state = 1}, + [20851] = {.lex_state = 0, .external_lex_state = 1}, + [20852] = {.lex_state = 0, .external_lex_state = 1}, + [20853] = {.lex_state = 0, .external_lex_state = 1}, + [20854] = {.lex_state = 0, .external_lex_state = 1}, + [20855] = {.lex_state = 0, .external_lex_state = 1}, + [20856] = {.lex_state = 0, .external_lex_state = 1}, + [20857] = {.lex_state = 125, .external_lex_state = 1}, + [20858] = {.lex_state = 125, .external_lex_state = 1}, + [20859] = {.lex_state = 125, .external_lex_state = 1}, + [20860] = {.lex_state = 0, .external_lex_state = 1}, + [20861] = {.lex_state = 0, .external_lex_state = 1}, + [20862] = {.lex_state = 0, .external_lex_state = 1}, + [20863] = {.lex_state = 0, .external_lex_state = 1}, + [20864] = {.lex_state = 0, .external_lex_state = 1}, + [20865] = {.lex_state = 0, .external_lex_state = 1}, + [20866] = {.lex_state = 0, .external_lex_state = 1}, + [20867] = {.lex_state = 0, .external_lex_state = 1}, + [20868] = {.lex_state = 0, .external_lex_state = 1}, + [20869] = {.lex_state = 0, .external_lex_state = 1}, + [20870] = {.lex_state = 0, .external_lex_state = 1}, + [20871] = {.lex_state = 0, .external_lex_state = 1}, + [20872] = {.lex_state = 0, .external_lex_state = 1}, + [20873] = {.lex_state = 0, .external_lex_state = 1}, + [20874] = {.lex_state = 0, .external_lex_state = 1}, + [20875] = {.lex_state = 0, .external_lex_state = 1}, + [20876] = {.lex_state = 0, .external_lex_state = 1}, + [20877] = {.lex_state = 0, .external_lex_state = 1}, + [20878] = {.lex_state = 125, .external_lex_state = 1}, + [20879] = {.lex_state = 0, .external_lex_state = 1}, + [20880] = {.lex_state = 0, .external_lex_state = 1}, + [20881] = {.lex_state = 0, .external_lex_state = 1}, + [20882] = {.lex_state = 0, .external_lex_state = 1}, + [20883] = {.lex_state = 0, .external_lex_state = 1}, + [20884] = {.lex_state = 0, .external_lex_state = 1}, + [20885] = {.lex_state = 0, .external_lex_state = 1}, + [20886] = {.lex_state = 0, .external_lex_state = 1}, + [20887] = {.lex_state = 0, .external_lex_state = 1}, + [20888] = {.lex_state = 0, .external_lex_state = 1}, + [20889] = {.lex_state = 0, .external_lex_state = 1}, + [20890] = {.lex_state = 0, .external_lex_state = 1}, + [20891] = {.lex_state = 0, .external_lex_state = 1}, + [20892] = {.lex_state = 0, .external_lex_state = 1}, + [20893] = {.lex_state = 0, .external_lex_state = 1}, + [20894] = {.lex_state = 0, .external_lex_state = 1}, + [20895] = {.lex_state = 0, .external_lex_state = 1}, + [20896] = {.lex_state = 0, .external_lex_state = 1}, + [20897] = {.lex_state = 0, .external_lex_state = 1}, + [20898] = {.lex_state = 0, .external_lex_state = 1}, + [20899] = {.lex_state = 0, .external_lex_state = 1}, + [20900] = {.lex_state = 0, .external_lex_state = 1}, + [20901] = {.lex_state = 0, .external_lex_state = 1}, + [20902] = {.lex_state = 0, .external_lex_state = 1}, + [20903] = {.lex_state = 0, .external_lex_state = 1}, + [20904] = {.lex_state = 0, .external_lex_state = 1}, + [20905] = {.lex_state = 0, .external_lex_state = 1}, + [20906] = {.lex_state = 0, .external_lex_state = 1}, + [20907] = {.lex_state = 0, .external_lex_state = 1}, + [20908] = {.lex_state = 0, .external_lex_state = 1}, + [20909] = {.lex_state = 0, .external_lex_state = 1}, + [20910] = {.lex_state = 0, .external_lex_state = 1}, + [20911] = {.lex_state = 0, .external_lex_state = 1}, + [20912] = {.lex_state = 0, .external_lex_state = 1}, + [20913] = {.lex_state = 0, .external_lex_state = 1}, + [20914] = {.lex_state = 0, .external_lex_state = 1}, + [20915] = {.lex_state = 0, .external_lex_state = 1}, + [20916] = {.lex_state = 0, .external_lex_state = 1}, + [20917] = {.lex_state = 0, .external_lex_state = 1}, + [20918] = {.lex_state = 0, .external_lex_state = 1}, + [20919] = {.lex_state = 0, .external_lex_state = 1}, + [20920] = {.lex_state = 0, .external_lex_state = 1}, + [20921] = {.lex_state = 0, .external_lex_state = 1}, + [20922] = {.lex_state = 122, .external_lex_state = 1}, + [20923] = {.lex_state = 125, .external_lex_state = 1}, + [20924] = {.lex_state = 0, .external_lex_state = 1}, + [20925] = {.lex_state = 0, .external_lex_state = 1}, + [20926] = {.lex_state = 0, .external_lex_state = 1}, + [20927] = {.lex_state = 0, .external_lex_state = 1}, + [20928] = {.lex_state = 0, .external_lex_state = 1}, + [20929] = {.lex_state = 0, .external_lex_state = 1}, + [20930] = {.lex_state = 0, .external_lex_state = 1}, + [20931] = {.lex_state = 0, .external_lex_state = 1}, + [20932] = {.lex_state = 0, .external_lex_state = 1}, + [20933] = {.lex_state = 0, .external_lex_state = 1}, + [20934] = {.lex_state = 0, .external_lex_state = 1}, + [20935] = {.lex_state = 0, .external_lex_state = 1}, + [20936] = {.lex_state = 0, .external_lex_state = 1}, + [20937] = {.lex_state = 0, .external_lex_state = 1}, + [20938] = {.lex_state = 0, .external_lex_state = 1}, + [20939] = {.lex_state = 0, .external_lex_state = 1}, + [20940] = {.lex_state = 0, .external_lex_state = 1}, + [20941] = {.lex_state = 0, .external_lex_state = 1}, + [20942] = {.lex_state = 0, .external_lex_state = 1}, + [20943] = {.lex_state = 0, .external_lex_state = 1}, + [20944] = {.lex_state = 0, .external_lex_state = 1}, + [20945] = {.lex_state = 0, .external_lex_state = 1}, + [20946] = {.lex_state = 0, .external_lex_state = 1}, + [20947] = {.lex_state = 0, .external_lex_state = 1}, + [20948] = {.lex_state = 0, .external_lex_state = 1}, + [20949] = {.lex_state = 130, .external_lex_state = 1}, + [20950] = {.lex_state = 0, .external_lex_state = 1}, + [20951] = {.lex_state = 0, .external_lex_state = 1}, + [20952] = {.lex_state = 0, .external_lex_state = 1}, + [20953] = {.lex_state = 0, .external_lex_state = 1}, + [20954] = {.lex_state = 0, .external_lex_state = 1}, + [20955] = {.lex_state = 0, .external_lex_state = 1}, + [20956] = {.lex_state = 0, .external_lex_state = 1}, + [20957] = {.lex_state = 0, .external_lex_state = 1}, + [20958] = {.lex_state = 0, .external_lex_state = 1}, + [20959] = {.lex_state = 0, .external_lex_state = 1}, + [20960] = {.lex_state = 0, .external_lex_state = 1}, + [20961] = {.lex_state = 0, .external_lex_state = 1}, + [20962] = {.lex_state = 0, .external_lex_state = 1}, + [20963] = {.lex_state = 0, .external_lex_state = 1}, + [20964] = {.lex_state = 125, .external_lex_state = 1}, + [20965] = {.lex_state = 0, .external_lex_state = 1}, + [20966] = {.lex_state = 125, .external_lex_state = 1}, + [20967] = {.lex_state = 0, .external_lex_state = 1}, + [20968] = {.lex_state = 0, .external_lex_state = 1}, + [20969] = {.lex_state = 125, .external_lex_state = 1}, + [20970] = {.lex_state = 0, .external_lex_state = 1}, + [20971] = {.lex_state = 0, .external_lex_state = 1}, + [20972] = {.lex_state = 0, .external_lex_state = 1}, + [20973] = {.lex_state = 0, .external_lex_state = 1}, + [20974] = {.lex_state = 0, .external_lex_state = 1}, + [20975] = {.lex_state = 0, .external_lex_state = 1}, + [20976] = {.lex_state = 0, .external_lex_state = 1}, + [20977] = {.lex_state = 0, .external_lex_state = 1}, + [20978] = {.lex_state = 0, .external_lex_state = 1}, + [20979] = {.lex_state = 0, .external_lex_state = 1}, + [20980] = {.lex_state = 0, .external_lex_state = 1}, + [20981] = {.lex_state = 0, .external_lex_state = 1}, + [20982] = {.lex_state = 0, .external_lex_state = 1}, + [20983] = {.lex_state = 0, .external_lex_state = 1}, + [20984] = {.lex_state = 0, .external_lex_state = 1}, + [20985] = {.lex_state = 0, .external_lex_state = 1}, + [20986] = {.lex_state = 0, .external_lex_state = 1}, + [20987] = {.lex_state = 0, .external_lex_state = 1}, + [20988] = {.lex_state = 0, .external_lex_state = 1}, + [20989] = {.lex_state = 0, .external_lex_state = 1}, + [20990] = {.lex_state = 0, .external_lex_state = 1}, + [20991] = {.lex_state = 125, .external_lex_state = 1}, + [20992] = {.lex_state = 0, .external_lex_state = 1}, + [20993] = {.lex_state = 0, .external_lex_state = 1}, + [20994] = {.lex_state = 0, .external_lex_state = 1}, + [20995] = {.lex_state = 0, .external_lex_state = 1}, + [20996] = {.lex_state = 0, .external_lex_state = 1}, + [20997] = {.lex_state = 0, .external_lex_state = 1}, + [20998] = {.lex_state = 0, .external_lex_state = 1}, + [20999] = {.lex_state = 0, .external_lex_state = 1}, + [21000] = {.lex_state = 0, .external_lex_state = 1}, + [21001] = {.lex_state = 0, .external_lex_state = 1}, + [21002] = {.lex_state = 0, .external_lex_state = 1}, + [21003] = {.lex_state = 0, .external_lex_state = 1}, + [21004] = {.lex_state = 0, .external_lex_state = 1}, + [21005] = {.lex_state = 0, .external_lex_state = 1}, + [21006] = {.lex_state = 0, .external_lex_state = 1}, + [21007] = {.lex_state = 0, .external_lex_state = 1}, + [21008] = {.lex_state = 0, .external_lex_state = 1}, + [21009] = {.lex_state = 0, .external_lex_state = 1}, + [21010] = {.lex_state = 125, .external_lex_state = 1}, + [21011] = {.lex_state = 0, .external_lex_state = 1}, + [21012] = {.lex_state = 0, .external_lex_state = 1}, + [21013] = {.lex_state = 0, .external_lex_state = 1}, + [21014] = {.lex_state = 0, .external_lex_state = 1}, + [21015] = {.lex_state = 0, .external_lex_state = 1}, + [21016] = {.lex_state = 0, .external_lex_state = 1}, + [21017] = {.lex_state = 0, .external_lex_state = 1}, + [21018] = {.lex_state = 0, .external_lex_state = 1}, + [21019] = {.lex_state = 0, .external_lex_state = 1}, + [21020] = {.lex_state = 0, .external_lex_state = 1}, + [21021] = {.lex_state = 0, .external_lex_state = 1}, + [21022] = {.lex_state = 0, .external_lex_state = 1}, + [21023] = {.lex_state = 0, .external_lex_state = 1}, + [21024] = {.lex_state = 0, .external_lex_state = 1}, + [21025] = {.lex_state = 0, .external_lex_state = 1}, + [21026] = {.lex_state = 0, .external_lex_state = 1}, + [21027] = {.lex_state = 0, .external_lex_state = 1}, + [21028] = {.lex_state = 124, .external_lex_state = 1}, + [21029] = {.lex_state = 0, .external_lex_state = 1}, + [21030] = {.lex_state = 0, .external_lex_state = 1}, + [21031] = {.lex_state = 0, .external_lex_state = 1}, + [21032] = {.lex_state = 0, .external_lex_state = 1}, + [21033] = {.lex_state = 0, .external_lex_state = 1}, + [21034] = {.lex_state = 0, .external_lex_state = 1}, + [21035] = {.lex_state = 0, .external_lex_state = 1}, + [21036] = {.lex_state = 0, .external_lex_state = 1}, + [21037] = {.lex_state = 0, .external_lex_state = 1}, + [21038] = {.lex_state = 0, .external_lex_state = 1}, + [21039] = {.lex_state = 0, .external_lex_state = 1}, + [21040] = {.lex_state = 0, .external_lex_state = 1}, + [21041] = {.lex_state = 0, .external_lex_state = 1}, + [21042] = {.lex_state = 0, .external_lex_state = 1}, + [21043] = {.lex_state = 0, .external_lex_state = 1}, + [21044] = {.lex_state = 0, .external_lex_state = 1}, + [21045] = {.lex_state = 0, .external_lex_state = 1}, + [21046] = {.lex_state = 0, .external_lex_state = 1}, + [21047] = {.lex_state = 0, .external_lex_state = 1}, + [21048] = {.lex_state = 0, .external_lex_state = 1}, + [21049] = {.lex_state = 125, .external_lex_state = 1}, + [21050] = {.lex_state = 0, .external_lex_state = 1}, + [21051] = {.lex_state = 0, .external_lex_state = 1}, + [21052] = {.lex_state = 0, .external_lex_state = 1}, + [21053] = {.lex_state = 0, .external_lex_state = 1}, + [21054] = {.lex_state = 0, .external_lex_state = 1}, + [21055] = {.lex_state = 0, .external_lex_state = 1}, + [21056] = {.lex_state = 0, .external_lex_state = 1}, + [21057] = {.lex_state = 0, .external_lex_state = 1}, + [21058] = {.lex_state = 0, .external_lex_state = 1}, + [21059] = {.lex_state = 125, .external_lex_state = 1}, + [21060] = {.lex_state = 0, .external_lex_state = 1}, + [21061] = {.lex_state = 0, .external_lex_state = 1}, + [21062] = {.lex_state = 0, .external_lex_state = 1}, + [21063] = {.lex_state = 132, .external_lex_state = 1}, + [21064] = {.lex_state = 0, .external_lex_state = 1}, + [21065] = {.lex_state = 0, .external_lex_state = 1}, + [21066] = {.lex_state = 0, .external_lex_state = 1}, + [21067] = {.lex_state = 0, .external_lex_state = 1}, + [21068] = {.lex_state = 125, .external_lex_state = 1}, + [21069] = {.lex_state = 0, .external_lex_state = 1}, + [21070] = {.lex_state = 0, .external_lex_state = 1}, + [21071] = {.lex_state = 0, .external_lex_state = 1}, + [21072] = {.lex_state = 0, .external_lex_state = 1}, + [21073] = {.lex_state = 0, .external_lex_state = 1}, + [21074] = {.lex_state = 0, .external_lex_state = 1}, + [21075] = {.lex_state = 0, .external_lex_state = 1}, + [21076] = {.lex_state = 0, .external_lex_state = 1}, + [21077] = {.lex_state = 0, .external_lex_state = 1}, + [21078] = {.lex_state = 0, .external_lex_state = 1}, + [21079] = {.lex_state = 0, .external_lex_state = 1}, + [21080] = {.lex_state = 125, .external_lex_state = 1}, + [21081] = {.lex_state = 0, .external_lex_state = 1}, + [21082] = {.lex_state = 0, .external_lex_state = 1}, + [21083] = {.lex_state = 0, .external_lex_state = 1}, + [21084] = {.lex_state = 0, .external_lex_state = 1}, + [21085] = {.lex_state = 0, .external_lex_state = 1}, + [21086] = {.lex_state = 0, .external_lex_state = 1}, + [21087] = {.lex_state = 0, .external_lex_state = 1}, + [21088] = {.lex_state = 0, .external_lex_state = 1}, + [21089] = {.lex_state = 0, .external_lex_state = 1}, + [21090] = {.lex_state = 132, .external_lex_state = 1}, + [21091] = {.lex_state = 0, .external_lex_state = 1}, + [21092] = {.lex_state = 0, .external_lex_state = 1}, + [21093] = {.lex_state = 0, .external_lex_state = 1}, + [21094] = {.lex_state = 0, .external_lex_state = 1}, + [21095] = {.lex_state = 0, .external_lex_state = 1}, + [21096] = {.lex_state = 0, .external_lex_state = 1}, + [21097] = {.lex_state = 0, .external_lex_state = 1}, + [21098] = {.lex_state = 0, .external_lex_state = 1}, + [21099] = {.lex_state = 0, .external_lex_state = 1}, + [21100] = {.lex_state = 0, .external_lex_state = 1}, + [21101] = {.lex_state = 0, .external_lex_state = 1}, + [21102] = {.lex_state = 0, .external_lex_state = 1}, + [21103] = {.lex_state = 0, .external_lex_state = 1}, + [21104] = {.lex_state = 0, .external_lex_state = 1}, + [21105] = {.lex_state = 0, .external_lex_state = 1}, + [21106] = {.lex_state = 0, .external_lex_state = 1}, + [21107] = {.lex_state = 0, .external_lex_state = 1}, + [21108] = {.lex_state = 0, .external_lex_state = 1}, + [21109] = {.lex_state = 547, .external_lex_state = 1}, + [21110] = {.lex_state = 125, .external_lex_state = 1}, + [21111] = {.lex_state = 0, .external_lex_state = 1}, + [21112] = {.lex_state = 0, .external_lex_state = 1}, + [21113] = {.lex_state = 0, .external_lex_state = 1}, + [21114] = {.lex_state = 0, .external_lex_state = 1}, + [21115] = {.lex_state = 0, .external_lex_state = 1}, + [21116] = {.lex_state = 0, .external_lex_state = 1}, + [21117] = {.lex_state = 0, .external_lex_state = 1}, + [21118] = {.lex_state = 0, .external_lex_state = 1}, + [21119] = {.lex_state = 0, .external_lex_state = 1}, + [21120] = {.lex_state = 0, .external_lex_state = 1}, + [21121] = {.lex_state = 0, .external_lex_state = 1}, + [21122] = {.lex_state = 0, .external_lex_state = 1}, + [21123] = {.lex_state = 0, .external_lex_state = 1}, + [21124] = {.lex_state = 0, .external_lex_state = 1}, + [21125] = {.lex_state = 0, .external_lex_state = 1}, + [21126] = {.lex_state = 0, .external_lex_state = 1}, + [21127] = {.lex_state = 0, .external_lex_state = 1}, + [21128] = {.lex_state = 0, .external_lex_state = 1}, + [21129] = {.lex_state = 0, .external_lex_state = 1}, + [21130] = {.lex_state = 0, .external_lex_state = 1}, + [21131] = {.lex_state = 0, .external_lex_state = 1}, + [21132] = {.lex_state = 0, .external_lex_state = 1}, + [21133] = {.lex_state = 0, .external_lex_state = 1}, + [21134] = {.lex_state = 302, .external_lex_state = 1}, + [21135] = {.lex_state = 0, .external_lex_state = 1}, + [21136] = {.lex_state = 0, .external_lex_state = 1}, + [21137] = {.lex_state = 0, .external_lex_state = 1}, + [21138] = {.lex_state = 0, .external_lex_state = 1}, + [21139] = {.lex_state = 548, .external_lex_state = 1}, + [21140] = {.lex_state = 125, .external_lex_state = 1}, + [21141] = {.lex_state = 0, .external_lex_state = 1}, + [21142] = {.lex_state = 0, .external_lex_state = 1}, + [21143] = {.lex_state = 0, .external_lex_state = 1}, + [21144] = {.lex_state = 0, .external_lex_state = 1}, + [21145] = {.lex_state = 0, .external_lex_state = 1}, + [21146] = {.lex_state = 0, .external_lex_state = 1}, + [21147] = {.lex_state = 0, .external_lex_state = 1}, + [21148] = {.lex_state = 0, .external_lex_state = 1}, + [21149] = {.lex_state = 0, .external_lex_state = 1}, + [21150] = {.lex_state = 0, .external_lex_state = 1}, + [21151] = {.lex_state = 0, .external_lex_state = 1}, + [21152] = {.lex_state = 0, .external_lex_state = 1}, + [21153] = {.lex_state = 0, .external_lex_state = 1}, + [21154] = {.lex_state = 0, .external_lex_state = 1}, + [21155] = {.lex_state = 0, .external_lex_state = 1}, + [21156] = {.lex_state = 0, .external_lex_state = 1}, + [21157] = {.lex_state = 0, .external_lex_state = 1}, + [21158] = {.lex_state = 0, .external_lex_state = 1}, + [21159] = {.lex_state = 0, .external_lex_state = 1}, + [21160] = {.lex_state = 0, .external_lex_state = 1}, + [21161] = {.lex_state = 0, .external_lex_state = 1}, + [21162] = {.lex_state = 0, .external_lex_state = 1}, + [21163] = {.lex_state = 548, .external_lex_state = 1}, + [21164] = {.lex_state = 0, .external_lex_state = 1}, + [21165] = {.lex_state = 0, .external_lex_state = 1}, + [21166] = {.lex_state = 0, .external_lex_state = 1}, + [21167] = {.lex_state = 0, .external_lex_state = 1}, + [21168] = {.lex_state = 0, .external_lex_state = 1}, + [21169] = {.lex_state = 0, .external_lex_state = 1}, + [21170] = {.lex_state = 0, .external_lex_state = 1}, + [21171] = {.lex_state = 0, .external_lex_state = 1}, + [21172] = {.lex_state = 0, .external_lex_state = 1}, + [21173] = {.lex_state = 0, .external_lex_state = 1}, + [21174] = {.lex_state = 0, .external_lex_state = 1}, + [21175] = {.lex_state = 0, .external_lex_state = 1}, + [21176] = {.lex_state = 0, .external_lex_state = 1}, + [21177] = {.lex_state = 0, .external_lex_state = 1}, + [21178] = {.lex_state = 0, .external_lex_state = 1}, + [21179] = {.lex_state = 0, .external_lex_state = 1}, + [21180] = {.lex_state = 124, .external_lex_state = 1}, + [21181] = {.lex_state = 0, .external_lex_state = 1}, + [21182] = {.lex_state = 0, .external_lex_state = 1}, + [21183] = {.lex_state = 125, .external_lex_state = 1}, + [21184] = {.lex_state = 0, .external_lex_state = 1}, + [21185] = {.lex_state = 0, .external_lex_state = 1}, + [21186] = {.lex_state = 0, .external_lex_state = 1}, + [21187] = {.lex_state = 0, .external_lex_state = 1}, + [21188] = {.lex_state = 0, .external_lex_state = 1}, + [21189] = {.lex_state = 0, .external_lex_state = 1}, + [21190] = {.lex_state = 0, .external_lex_state = 1}, + [21191] = {.lex_state = 0, .external_lex_state = 1}, + [21192] = {.lex_state = 0, .external_lex_state = 1}, + [21193] = {.lex_state = 0, .external_lex_state = 1}, + [21194] = {.lex_state = 0, .external_lex_state = 1}, + [21195] = {.lex_state = 124, .external_lex_state = 1}, + [21196] = {.lex_state = 0, .external_lex_state = 1}, + [21197] = {.lex_state = 0, .external_lex_state = 1}, + [21198] = {.lex_state = 0, .external_lex_state = 1}, + [21199] = {.lex_state = 0, .external_lex_state = 1}, + [21200] = {.lex_state = 125, .external_lex_state = 1}, + [21201] = {.lex_state = 0, .external_lex_state = 1}, + [21202] = {.lex_state = 0, .external_lex_state = 1}, + [21203] = {.lex_state = 125, .external_lex_state = 1}, + [21204] = {.lex_state = 0, .external_lex_state = 1}, + [21205] = {.lex_state = 0, .external_lex_state = 1}, + [21206] = {.lex_state = 0, .external_lex_state = 1}, + [21207] = {.lex_state = 0, .external_lex_state = 1}, + [21208] = {.lex_state = 0, .external_lex_state = 1}, + [21209] = {.lex_state = 0, .external_lex_state = 1}, + [21210] = {.lex_state = 0, .external_lex_state = 1}, + [21211] = {.lex_state = 0, .external_lex_state = 1}, + [21212] = {.lex_state = 0, .external_lex_state = 1}, + [21213] = {.lex_state = 0, .external_lex_state = 1}, + [21214] = {.lex_state = 0, .external_lex_state = 1}, + [21215] = {.lex_state = 0, .external_lex_state = 1}, + [21216] = {.lex_state = 0, .external_lex_state = 1}, + [21217] = {.lex_state = 0, .external_lex_state = 1}, + [21218] = {.lex_state = 0, .external_lex_state = 1}, + [21219] = {.lex_state = 0, .external_lex_state = 1}, + [21220] = {.lex_state = 0, .external_lex_state = 1}, + [21221] = {.lex_state = 0, .external_lex_state = 1}, + [21222] = {.lex_state = 0, .external_lex_state = 1}, + [21223] = {.lex_state = 122, .external_lex_state = 1}, + [21224] = {.lex_state = 0, .external_lex_state = 1}, + [21225] = {.lex_state = 0, .external_lex_state = 1}, + [21226] = {.lex_state = 0, .external_lex_state = 1}, + [21227] = {.lex_state = 122, .external_lex_state = 1}, + [21228] = {.lex_state = 0, .external_lex_state = 1}, + [21229] = {.lex_state = 122, .external_lex_state = 1}, + [21230] = {.lex_state = 0, .external_lex_state = 1}, + [21231] = {.lex_state = 0, .external_lex_state = 1}, + [21232] = {.lex_state = 0, .external_lex_state = 1}, + [21233] = {.lex_state = 0, .external_lex_state = 1}, + [21234] = {.lex_state = 0, .external_lex_state = 1}, + [21235] = {.lex_state = 0, .external_lex_state = 1}, + [21236] = {.lex_state = 0, .external_lex_state = 1}, + [21237] = {.lex_state = 0, .external_lex_state = 1}, + [21238] = {.lex_state = 0, .external_lex_state = 1}, + [21239] = {.lex_state = 0, .external_lex_state = 1}, + [21240] = {.lex_state = 0, .external_lex_state = 1}, + [21241] = {.lex_state = 0, .external_lex_state = 1}, + [21242] = {.lex_state = 0, .external_lex_state = 1}, + [21243] = {.lex_state = 0, .external_lex_state = 1}, + [21244] = {.lex_state = 0, .external_lex_state = 1}, + [21245] = {.lex_state = 0, .external_lex_state = 1}, + [21246] = {.lex_state = 0, .external_lex_state = 1}, + [21247] = {.lex_state = 0, .external_lex_state = 1}, + [21248] = {.lex_state = 0, .external_lex_state = 1}, + [21249] = {.lex_state = 0, .external_lex_state = 1}, + [21250] = {.lex_state = 0, .external_lex_state = 1}, + [21251] = {.lex_state = 0, .external_lex_state = 1}, + [21252] = {.lex_state = 0, .external_lex_state = 1}, + [21253] = {.lex_state = 0, .external_lex_state = 1}, + [21254] = {.lex_state = 0, .external_lex_state = 1}, + [21255] = {.lex_state = 0, .external_lex_state = 1}, + [21256] = {.lex_state = 0, .external_lex_state = 1}, + [21257] = {.lex_state = 0, .external_lex_state = 1}, + [21258] = {.lex_state = 0, .external_lex_state = 1}, + [21259] = {.lex_state = 0, .external_lex_state = 1}, + [21260] = {.lex_state = 0, .external_lex_state = 1}, + [21261] = {.lex_state = 0, .external_lex_state = 1}, + [21262] = {.lex_state = 0, .external_lex_state = 1}, + [21263] = {.lex_state = 0, .external_lex_state = 1}, + [21264] = {.lex_state = 0, .external_lex_state = 1}, + [21265] = {.lex_state = 0, .external_lex_state = 1}, + [21266] = {.lex_state = 0, .external_lex_state = 1}, + [21267] = {.lex_state = 0, .external_lex_state = 1}, + [21268] = {.lex_state = 0, .external_lex_state = 1}, + [21269] = {.lex_state = 0, .external_lex_state = 1}, + [21270] = {.lex_state = 122, .external_lex_state = 1}, + [21271] = {.lex_state = 0, .external_lex_state = 1}, + [21272] = {.lex_state = 0, .external_lex_state = 1}, + [21273] = {.lex_state = 125, .external_lex_state = 1}, + [21274] = {.lex_state = 0, .external_lex_state = 1}, + [21275] = {.lex_state = 0, .external_lex_state = 1}, + [21276] = {.lex_state = 0, .external_lex_state = 1}, + [21277] = {.lex_state = 125, .external_lex_state = 1}, + [21278] = {.lex_state = 0, .external_lex_state = 1}, + [21279] = {.lex_state = 0, .external_lex_state = 1}, + [21280] = {.lex_state = 0, .external_lex_state = 1}, + [21281] = {.lex_state = 0, .external_lex_state = 1}, + [21282] = {.lex_state = 125, .external_lex_state = 1}, + [21283] = {.lex_state = 0, .external_lex_state = 1}, + [21284] = {.lex_state = 0, .external_lex_state = 1}, + [21285] = {.lex_state = 0, .external_lex_state = 1}, + [21286] = {.lex_state = 0, .external_lex_state = 1}, + [21287] = {.lex_state = 0, .external_lex_state = 1}, + [21288] = {.lex_state = 0, .external_lex_state = 1}, + [21289] = {.lex_state = 0, .external_lex_state = 1}, + [21290] = {.lex_state = 0, .external_lex_state = 1}, + [21291] = {.lex_state = 0, .external_lex_state = 1}, + [21292] = {.lex_state = 0, .external_lex_state = 1}, + [21293] = {.lex_state = 0, .external_lex_state = 1}, + [21294] = {.lex_state = 0, .external_lex_state = 1}, + [21295] = {.lex_state = 0, .external_lex_state = 1}, + [21296] = {.lex_state = 0, .external_lex_state = 1}, + [21297] = {.lex_state = 0, .external_lex_state = 1}, + [21298] = {.lex_state = 0, .external_lex_state = 1}, + [21299] = {.lex_state = 0, .external_lex_state = 1}, + [21300] = {.lex_state = 0, .external_lex_state = 1}, + [21301] = {.lex_state = 0, .external_lex_state = 1}, + [21302] = {.lex_state = 0, .external_lex_state = 1}, + [21303] = {.lex_state = 0, .external_lex_state = 1}, + [21304] = {.lex_state = 0, .external_lex_state = 1}, + [21305] = {.lex_state = 0, .external_lex_state = 1}, + [21306] = {.lex_state = 0, .external_lex_state = 1}, + [21307] = {.lex_state = 0, .external_lex_state = 1}, + [21308] = {.lex_state = 0, .external_lex_state = 1}, + [21309] = {.lex_state = 0, .external_lex_state = 1}, + [21310] = {.lex_state = 0, .external_lex_state = 1}, + [21311] = {.lex_state = 0, .external_lex_state = 1}, + [21312] = {.lex_state = 0, .external_lex_state = 1}, + [21313] = {.lex_state = 0, .external_lex_state = 1}, + [21314] = {.lex_state = 0, .external_lex_state = 1}, + [21315] = {.lex_state = 0, .external_lex_state = 1}, + [21316] = {.lex_state = 125, .external_lex_state = 1}, + [21317] = {.lex_state = 122, .external_lex_state = 1}, + [21318] = {.lex_state = 546, .external_lex_state = 1}, + [21319] = {.lex_state = 0, .external_lex_state = 1}, + [21320] = {.lex_state = 0, .external_lex_state = 1}, + [21321] = {.lex_state = 0, .external_lex_state = 1}, + [21322] = {.lex_state = 0, .external_lex_state = 1}, + [21323] = {.lex_state = 0, .external_lex_state = 1}, + [21324] = {.lex_state = 0, .external_lex_state = 1}, + [21325] = {.lex_state = 0, .external_lex_state = 1}, + [21326] = {.lex_state = 0, .external_lex_state = 1}, + [21327] = {.lex_state = 0, .external_lex_state = 1}, + [21328] = {.lex_state = 0, .external_lex_state = 1}, + [21329] = {.lex_state = 0, .external_lex_state = 1}, + [21330] = {.lex_state = 0, .external_lex_state = 1}, + [21331] = {.lex_state = 546, .external_lex_state = 1}, + [21332] = {.lex_state = 0, .external_lex_state = 1}, + [21333] = {.lex_state = 0, .external_lex_state = 1}, + [21334] = {.lex_state = 0, .external_lex_state = 1}, + [21335] = {.lex_state = 0, .external_lex_state = 1}, + [21336] = {.lex_state = 0, .external_lex_state = 1}, + [21337] = {.lex_state = 0, .external_lex_state = 1}, + [21338] = {.lex_state = 122, .external_lex_state = 1}, + [21339] = {.lex_state = 122, .external_lex_state = 1}, + [21340] = {.lex_state = 0, .external_lex_state = 1}, + [21341] = {.lex_state = 0, .external_lex_state = 1}, + [21342] = {.lex_state = 122, .external_lex_state = 1}, + [21343] = {.lex_state = 122, .external_lex_state = 1}, + [21344] = {.lex_state = 0, .external_lex_state = 1}, + [21345] = {.lex_state = 0, .external_lex_state = 1}, + [21346] = {.lex_state = 0, .external_lex_state = 1}, + [21347] = {.lex_state = 0, .external_lex_state = 1}, + [21348] = {.lex_state = 0, .external_lex_state = 1}, + [21349] = {.lex_state = 0, .external_lex_state = 1}, + [21350] = {.lex_state = 0, .external_lex_state = 1}, + [21351] = {.lex_state = 0, .external_lex_state = 1}, + [21352] = {.lex_state = 0, .external_lex_state = 1}, + [21353] = {.lex_state = 0, .external_lex_state = 1}, + [21354] = {.lex_state = 0, .external_lex_state = 1}, + [21355] = {.lex_state = 0, .external_lex_state = 1}, + [21356] = {.lex_state = 125, .external_lex_state = 1}, + [21357] = {.lex_state = 0, .external_lex_state = 1}, + [21358] = {.lex_state = 0, .external_lex_state = 1}, + [21359] = {.lex_state = 0, .external_lex_state = 1}, + [21360] = {.lex_state = 0, .external_lex_state = 1}, + [21361] = {.lex_state = 0, .external_lex_state = 1}, + [21362] = {.lex_state = 125, .external_lex_state = 1}, + [21363] = {.lex_state = 0, .external_lex_state = 1}, + [21364] = {.lex_state = 125, .external_lex_state = 1}, + [21365] = {.lex_state = 0, .external_lex_state = 1}, + [21366] = {.lex_state = 0, .external_lex_state = 1}, + [21367] = {.lex_state = 0, .external_lex_state = 1}, + [21368] = {.lex_state = 0, .external_lex_state = 1}, + [21369] = {.lex_state = 0, .external_lex_state = 1}, + [21370] = {.lex_state = 0, .external_lex_state = 1}, + [21371] = {.lex_state = 0, .external_lex_state = 1}, + [21372] = {.lex_state = 0, .external_lex_state = 1}, + [21373] = {.lex_state = 0, .external_lex_state = 1}, + [21374] = {.lex_state = 125, .external_lex_state = 1}, + [21375] = {.lex_state = 0, .external_lex_state = 1}, + [21376] = {.lex_state = 0, .external_lex_state = 1}, + [21377] = {.lex_state = 0, .external_lex_state = 1}, + [21378] = {.lex_state = 0, .external_lex_state = 1}, + [21379] = {.lex_state = 0, .external_lex_state = 1}, + [21380] = {.lex_state = 0, .external_lex_state = 1}, + [21381] = {.lex_state = 0, .external_lex_state = 1}, + [21382] = {.lex_state = 0, .external_lex_state = 1}, + [21383] = {.lex_state = 0, .external_lex_state = 1}, + [21384] = {.lex_state = 0, .external_lex_state = 1}, + [21385] = {.lex_state = 0, .external_lex_state = 1}, + [21386] = {.lex_state = 0, .external_lex_state = 1}, + [21387] = {.lex_state = 0, .external_lex_state = 1}, + [21388] = {.lex_state = 0, .external_lex_state = 1}, + [21389] = {.lex_state = 0, .external_lex_state = 1}, + [21390] = {.lex_state = 0, .external_lex_state = 1}, + [21391] = {.lex_state = 0, .external_lex_state = 1}, + [21392] = {.lex_state = 0, .external_lex_state = 1}, + [21393] = {.lex_state = 0, .external_lex_state = 1}, + [21394] = {.lex_state = 0, .external_lex_state = 1}, + [21395] = {.lex_state = 0, .external_lex_state = 1}, + [21396] = {.lex_state = 0, .external_lex_state = 1}, + [21397] = {.lex_state = 0, .external_lex_state = 1}, + [21398] = {.lex_state = 0, .external_lex_state = 1}, + [21399] = {.lex_state = 0, .external_lex_state = 1}, + [21400] = {.lex_state = 0, .external_lex_state = 1}, + [21401] = {.lex_state = 0, .external_lex_state = 1}, + [21402] = {.lex_state = 0, .external_lex_state = 1}, + [21403] = {.lex_state = 0, .external_lex_state = 1}, + [21404] = {.lex_state = 0, .external_lex_state = 1}, + [21405] = {.lex_state = 0, .external_lex_state = 1}, + [21406] = {.lex_state = 0, .external_lex_state = 1}, + [21407] = {.lex_state = 0, .external_lex_state = 1}, + [21408] = {.lex_state = 0, .external_lex_state = 1}, + [21409] = {.lex_state = 0, .external_lex_state = 1}, + [21410] = {.lex_state = 0, .external_lex_state = 1}, + [21411] = {.lex_state = 0, .external_lex_state = 1}, + [21412] = {.lex_state = 0, .external_lex_state = 1}, + [21413] = {.lex_state = 0, .external_lex_state = 1}, + [21414] = {.lex_state = 0, .external_lex_state = 1}, + [21415] = {.lex_state = 0, .external_lex_state = 1}, + [21416] = {.lex_state = 0, .external_lex_state = 1}, + [21417] = {.lex_state = 0, .external_lex_state = 1}, + [21418] = {.lex_state = 0, .external_lex_state = 1}, + [21419] = {.lex_state = 0, .external_lex_state = 1}, + [21420] = {.lex_state = 0, .external_lex_state = 1}, + [21421] = {.lex_state = 0, .external_lex_state = 1}, + [21422] = {.lex_state = 0, .external_lex_state = 1}, + [21423] = {.lex_state = 0, .external_lex_state = 1}, + [21424] = {.lex_state = 0, .external_lex_state = 1}, + [21425] = {.lex_state = 0, .external_lex_state = 1}, + [21426] = {.lex_state = 0, .external_lex_state = 1}, + [21427] = {.lex_state = 0, .external_lex_state = 1}, + [21428] = {.lex_state = 0, .external_lex_state = 1}, + [21429] = {.lex_state = 0, .external_lex_state = 1}, + [21430] = {.lex_state = 0, .external_lex_state = 1}, + [21431] = {.lex_state = 0, .external_lex_state = 1}, + [21432] = {.lex_state = 0, .external_lex_state = 1}, + [21433] = {.lex_state = 0, .external_lex_state = 1}, + [21434] = {.lex_state = 0, .external_lex_state = 1}, + [21435] = {.lex_state = 0, .external_lex_state = 1}, + [21436] = {.lex_state = 0, .external_lex_state = 1}, + [21437] = {.lex_state = 0, .external_lex_state = 1}, + [21438] = {.lex_state = 0, .external_lex_state = 1}, + [21439] = {.lex_state = 0, .external_lex_state = 1}, + [21440] = {.lex_state = 0, .external_lex_state = 1}, + [21441] = {.lex_state = 0, .external_lex_state = 1}, + [21442] = {.lex_state = 0, .external_lex_state = 1}, + [21443] = {.lex_state = 0, .external_lex_state = 1}, + [21444] = {.lex_state = 0, .external_lex_state = 1}, + [21445] = {.lex_state = 0, .external_lex_state = 1}, + [21446] = {.lex_state = 0, .external_lex_state = 1}, + [21447] = {.lex_state = 0, .external_lex_state = 1}, + [21448] = {.lex_state = 0, .external_lex_state = 1}, + [21449] = {.lex_state = 0, .external_lex_state = 1}, + [21450] = {.lex_state = 0, .external_lex_state = 1}, + [21451] = {.lex_state = 0, .external_lex_state = 1}, + [21452] = {.lex_state = 0, .external_lex_state = 1}, + [21453] = {.lex_state = 0, .external_lex_state = 1}, + [21454] = {.lex_state = 0, .external_lex_state = 1}, + [21455] = {.lex_state = 0, .external_lex_state = 1}, + [21456] = {.lex_state = 0, .external_lex_state = 1}, + [21457] = {.lex_state = 0, .external_lex_state = 1}, + [21458] = {.lex_state = 0, .external_lex_state = 1}, + [21459] = {.lex_state = 0, .external_lex_state = 1}, + [21460] = {.lex_state = 0, .external_lex_state = 1}, + [21461] = {.lex_state = 0, .external_lex_state = 1}, + [21462] = {.lex_state = 0, .external_lex_state = 1}, + [21463] = {.lex_state = 0, .external_lex_state = 1}, + [21464] = {.lex_state = 0, .external_lex_state = 1}, + [21465] = {.lex_state = 0, .external_lex_state = 1}, + [21466] = {.lex_state = 0, .external_lex_state = 1}, + [21467] = {.lex_state = 0, .external_lex_state = 1}, + [21468] = {.lex_state = 0, .external_lex_state = 1}, + [21469] = {.lex_state = 0, .external_lex_state = 1}, + [21470] = {.lex_state = 0, .external_lex_state = 1}, + [21471] = {.lex_state = 0, .external_lex_state = 1}, + [21472] = {.lex_state = 0, .external_lex_state = 1}, + [21473] = {.lex_state = 0, .external_lex_state = 1}, + [21474] = {.lex_state = 0, .external_lex_state = 1}, + [21475] = {.lex_state = 0, .external_lex_state = 1}, + [21476] = {.lex_state = 0, .external_lex_state = 1}, + [21477] = {.lex_state = 0, .external_lex_state = 1}, + [21478] = {.lex_state = 0, .external_lex_state = 1}, + [21479] = {.lex_state = 0, .external_lex_state = 1}, + [21480] = {.lex_state = 0, .external_lex_state = 1}, + [21481] = {.lex_state = 0, .external_lex_state = 1}, + [21482] = {.lex_state = 0, .external_lex_state = 1}, + [21483] = {.lex_state = 0, .external_lex_state = 1}, + [21484] = {.lex_state = 0, .external_lex_state = 1}, + [21485] = {.lex_state = 0, .external_lex_state = 1}, + [21486] = {.lex_state = 0, .external_lex_state = 1}, + [21487] = {.lex_state = 0, .external_lex_state = 1}, + [21488] = {.lex_state = 0, .external_lex_state = 1}, + [21489] = {.lex_state = 0, .external_lex_state = 1}, + [21490] = {.lex_state = 0, .external_lex_state = 1}, + [21491] = {.lex_state = 0, .external_lex_state = 1}, + [21492] = {.lex_state = 0, .external_lex_state = 1}, + [21493] = {.lex_state = 0, .external_lex_state = 1}, + [21494] = {.lex_state = 0, .external_lex_state = 1}, + [21495] = {.lex_state = 0, .external_lex_state = 1}, + [21496] = {.lex_state = 0, .external_lex_state = 1}, + [21497] = {.lex_state = 0, .external_lex_state = 1}, + [21498] = {.lex_state = 0, .external_lex_state = 1}, + [21499] = {.lex_state = 0, .external_lex_state = 1}, + [21500] = {.lex_state = 0, .external_lex_state = 1}, + [21501] = {.lex_state = 0, .external_lex_state = 1}, + [21502] = {.lex_state = 0, .external_lex_state = 1}, + [21503] = {.lex_state = 0, .external_lex_state = 1}, + [21504] = {.lex_state = 0, .external_lex_state = 1}, + [21505] = {.lex_state = 0, .external_lex_state = 1}, + [21506] = {.lex_state = 0, .external_lex_state = 1}, + [21507] = {.lex_state = 0, .external_lex_state = 1}, + [21508] = {.lex_state = 0, .external_lex_state = 1}, + [21509] = {.lex_state = 0, .external_lex_state = 1}, + [21510] = {.lex_state = 0, .external_lex_state = 1}, + [21511] = {.lex_state = 0, .external_lex_state = 1}, + [21512] = {.lex_state = 0, .external_lex_state = 1}, + [21513] = {.lex_state = 0, .external_lex_state = 1}, + [21514] = {.lex_state = 0, .external_lex_state = 1}, + [21515] = {.lex_state = 0, .external_lex_state = 1}, + [21516] = {.lex_state = 0, .external_lex_state = 1}, + [21517] = {.lex_state = 0, .external_lex_state = 1}, + [21518] = {.lex_state = 0, .external_lex_state = 1}, + [21519] = {.lex_state = 0, .external_lex_state = 1}, + [21520] = {.lex_state = 0, .external_lex_state = 1}, + [21521] = {.lex_state = 0, .external_lex_state = 1}, + [21522] = {.lex_state = 0, .external_lex_state = 1}, + [21523] = {.lex_state = 0, .external_lex_state = 1}, + [21524] = {.lex_state = 0, .external_lex_state = 1}, + [21525] = {.lex_state = 0, .external_lex_state = 1}, + [21526] = {.lex_state = 0, .external_lex_state = 1}, + [21527] = {.lex_state = 0, .external_lex_state = 1}, + [21528] = {.lex_state = 0, .external_lex_state = 1}, + [21529] = {.lex_state = 0, .external_lex_state = 1}, + [21530] = {.lex_state = 0, .external_lex_state = 1}, + [21531] = {.lex_state = 0, .external_lex_state = 1}, + [21532] = {.lex_state = 0, .external_lex_state = 1}, + [21533] = {.lex_state = 0, .external_lex_state = 1}, + [21534] = {.lex_state = 0, .external_lex_state = 1}, + [21535] = {.lex_state = 0, .external_lex_state = 1}, + [21536] = {.lex_state = 0, .external_lex_state = 1}, + [21537] = {.lex_state = 0, .external_lex_state = 1}, + [21538] = {.lex_state = 0, .external_lex_state = 1}, + [21539] = {.lex_state = 0, .external_lex_state = 1}, + [21540] = {.lex_state = 0, .external_lex_state = 1}, + [21541] = {.lex_state = 0, .external_lex_state = 1}, + [21542] = {.lex_state = 0, .external_lex_state = 1}, + [21543] = {.lex_state = 0, .external_lex_state = 1}, + [21544] = {.lex_state = 0, .external_lex_state = 1}, + [21545] = {.lex_state = 0, .external_lex_state = 1}, + [21546] = {.lex_state = 0, .external_lex_state = 1}, + [21547] = {.lex_state = 0, .external_lex_state = 1}, + [21548] = {.lex_state = 0, .external_lex_state = 1}, + [21549] = {.lex_state = 0, .external_lex_state = 1}, + [21550] = {.lex_state = 0, .external_lex_state = 1}, + [21551] = {.lex_state = 0, .external_lex_state = 1}, + [21552] = {.lex_state = 0, .external_lex_state = 1}, + [21553] = {.lex_state = 0, .external_lex_state = 1}, + [21554] = {.lex_state = 0, .external_lex_state = 1}, + [21555] = {.lex_state = 0, .external_lex_state = 1}, + [21556] = {.lex_state = 0, .external_lex_state = 1}, + [21557] = {.lex_state = 0, .external_lex_state = 1}, + [21558] = {.lex_state = 0, .external_lex_state = 1}, + [21559] = {.lex_state = 0, .external_lex_state = 1}, + [21560] = {.lex_state = 0, .external_lex_state = 1}, + [21561] = {.lex_state = 0, .external_lex_state = 1}, + [21562] = {.lex_state = 0, .external_lex_state = 1}, + [21563] = {.lex_state = 0, .external_lex_state = 1}, + [21564] = {.lex_state = 0, .external_lex_state = 1}, + [21565] = {.lex_state = 0, .external_lex_state = 1}, + [21566] = {.lex_state = 0, .external_lex_state = 1}, + [21567] = {.lex_state = 0, .external_lex_state = 1}, + [21568] = {.lex_state = 0, .external_lex_state = 1}, + [21569] = {.lex_state = 0, .external_lex_state = 1}, + [21570] = {.lex_state = 0, .external_lex_state = 1}, + [21571] = {.lex_state = 0, .external_lex_state = 1}, + [21572] = {.lex_state = 0, .external_lex_state = 1}, + [21573] = {.lex_state = 0, .external_lex_state = 1}, + [21574] = {.lex_state = 0, .external_lex_state = 1}, + [21575] = {.lex_state = 0, .external_lex_state = 1}, + [21576] = {.lex_state = 0, .external_lex_state = 1}, + [21577] = {.lex_state = 0, .external_lex_state = 1}, + [21578] = {.lex_state = 0, .external_lex_state = 1}, + [21579] = {.lex_state = 0, .external_lex_state = 1}, + [21580] = {.lex_state = 0, .external_lex_state = 1}, + [21581] = {.lex_state = 0, .external_lex_state = 1}, + [21582] = {.lex_state = 0, .external_lex_state = 1}, + [21583] = {.lex_state = 0, .external_lex_state = 1}, + [21584] = {.lex_state = 0, .external_lex_state = 1}, + [21585] = {.lex_state = 0, .external_lex_state = 1}, + [21586] = {.lex_state = 0, .external_lex_state = 1}, + [21587] = {.lex_state = 0, .external_lex_state = 1}, + [21588] = {.lex_state = 0, .external_lex_state = 1}, + [21589] = {.lex_state = 0, .external_lex_state = 1}, + [21590] = {.lex_state = 0, .external_lex_state = 1}, + [21591] = {.lex_state = 0, .external_lex_state = 1}, + [21592] = {.lex_state = 0, .external_lex_state = 1}, + [21593] = {.lex_state = 0, .external_lex_state = 1}, + [21594] = {.lex_state = 132, .external_lex_state = 1}, + [21595] = {.lex_state = 0, .external_lex_state = 1}, + [21596] = {.lex_state = 0, .external_lex_state = 1}, + [21597] = {.lex_state = 0, .external_lex_state = 1}, + [21598] = {.lex_state = 0, .external_lex_state = 1}, + [21599] = {.lex_state = 0, .external_lex_state = 1}, + [21600] = {.lex_state = 0, .external_lex_state = 1}, + [21601] = {.lex_state = 0, .external_lex_state = 1}, + [21602] = {.lex_state = 0, .external_lex_state = 1}, + [21603] = {.lex_state = 0, .external_lex_state = 1}, + [21604] = {.lex_state = 548, .external_lex_state = 1}, + [21605] = {.lex_state = 0, .external_lex_state = 1}, + [21606] = {.lex_state = 0, .external_lex_state = 1}, + [21607] = {.lex_state = 0, .external_lex_state = 1}, + [21608] = {.lex_state = 0, .external_lex_state = 1}, + [21609] = {.lex_state = 0, .external_lex_state = 1}, + [21610] = {.lex_state = 0, .external_lex_state = 1}, + [21611] = {.lex_state = 0, .external_lex_state = 1}, + [21612] = {.lex_state = 0, .external_lex_state = 1}, + [21613] = {.lex_state = 0, .external_lex_state = 1}, + [21614] = {.lex_state = 548, .external_lex_state = 1}, + [21615] = {.lex_state = 0, .external_lex_state = 1}, + [21616] = {.lex_state = 0, .external_lex_state = 1}, + [21617] = {.lex_state = 0, .external_lex_state = 1}, + [21618] = {.lex_state = 0, .external_lex_state = 1}, + [21619] = {.lex_state = 0, .external_lex_state = 1}, + [21620] = {.lex_state = 0, .external_lex_state = 1}, + [21621] = {.lex_state = 0, .external_lex_state = 1}, + [21622] = {.lex_state = 0, .external_lex_state = 1}, + [21623] = {.lex_state = 0, .external_lex_state = 1}, + [21624] = {.lex_state = 0, .external_lex_state = 1}, + [21625] = {.lex_state = 0, .external_lex_state = 1}, + [21626] = {.lex_state = 0, .external_lex_state = 1}, + [21627] = {.lex_state = 0, .external_lex_state = 1}, + [21628] = {.lex_state = 0, .external_lex_state = 1}, + [21629] = {.lex_state = 0, .external_lex_state = 1}, + [21630] = {.lex_state = 0, .external_lex_state = 1}, + [21631] = {.lex_state = 0, .external_lex_state = 1}, + [21632] = {.lex_state = 0, .external_lex_state = 1}, + [21633] = {.lex_state = 0, .external_lex_state = 1}, + [21634] = {.lex_state = 0, .external_lex_state = 1}, + [21635] = {.lex_state = 0, .external_lex_state = 1}, + [21636] = {.lex_state = 0, .external_lex_state = 1}, + [21637] = {.lex_state = 0, .external_lex_state = 1}, + [21638] = {.lex_state = 0, .external_lex_state = 1}, + [21639] = {.lex_state = 0, .external_lex_state = 1}, + [21640] = {.lex_state = 0, .external_lex_state = 1}, + [21641] = {.lex_state = 0, .external_lex_state = 1}, + [21642] = {.lex_state = 0, .external_lex_state = 1}, + [21643] = {.lex_state = 0, .external_lex_state = 1}, + [21644] = {.lex_state = 0, .external_lex_state = 1}, + [21645] = {.lex_state = 0, .external_lex_state = 1}, + [21646] = {.lex_state = 0, .external_lex_state = 1}, + [21647] = {.lex_state = 0, .external_lex_state = 1}, + [21648] = {.lex_state = 0, .external_lex_state = 1}, + [21649] = {.lex_state = 0, .external_lex_state = 1}, + [21650] = {.lex_state = 0, .external_lex_state = 1}, + [21651] = {.lex_state = 0, .external_lex_state = 1}, + [21652] = {.lex_state = 122, .external_lex_state = 1}, + [21653] = {.lex_state = 0, .external_lex_state = 1}, + [21654] = {.lex_state = 0, .external_lex_state = 1}, + [21655] = {.lex_state = 0, .external_lex_state = 1}, + [21656] = {.lex_state = 0, .external_lex_state = 1}, + [21657] = {.lex_state = 0, .external_lex_state = 1}, + [21658] = {.lex_state = 0, .external_lex_state = 1}, + [21659] = {.lex_state = 0, .external_lex_state = 1}, + [21660] = {.lex_state = 0, .external_lex_state = 1}, + [21661] = {.lex_state = 0, .external_lex_state = 1}, + [21662] = {.lex_state = 0, .external_lex_state = 1}, + [21663] = {.lex_state = 0, .external_lex_state = 1}, + [21664] = {.lex_state = 0, .external_lex_state = 1}, + [21665] = {.lex_state = 0, .external_lex_state = 1}, + [21666] = {.lex_state = 0, .external_lex_state = 1}, + [21667] = {.lex_state = 0, .external_lex_state = 1}, + [21668] = {.lex_state = 0, .external_lex_state = 1}, + [21669] = {.lex_state = 0, .external_lex_state = 1}, + [21670] = {.lex_state = 0, .external_lex_state = 1}, + [21671] = {.lex_state = 0, .external_lex_state = 1}, + [21672] = {.lex_state = 0, .external_lex_state = 1}, + [21673] = {.lex_state = 0, .external_lex_state = 1}, + [21674] = {.lex_state = 0, .external_lex_state = 1}, + [21675] = {.lex_state = 0, .external_lex_state = 1}, + [21676] = {.lex_state = 0, .external_lex_state = 1}, + [21677] = {.lex_state = 0, .external_lex_state = 1}, + [21678] = {.lex_state = 0, .external_lex_state = 1}, + [21679] = {.lex_state = 0, .external_lex_state = 1}, + [21680] = {.lex_state = 0, .external_lex_state = 1}, + [21681] = {.lex_state = 0, .external_lex_state = 1}, + [21682] = {.lex_state = 125, .external_lex_state = 1}, + [21683] = {.lex_state = 0, .external_lex_state = 1}, + [21684] = {.lex_state = 0, .external_lex_state = 1}, + [21685] = {.lex_state = 0, .external_lex_state = 1}, + [21686] = {.lex_state = 0, .external_lex_state = 1}, + [21687] = {.lex_state = 0, .external_lex_state = 1}, + [21688] = {.lex_state = 125, .external_lex_state = 1}, + [21689] = {.lex_state = 0, .external_lex_state = 1}, + [21690] = {.lex_state = 0, .external_lex_state = 1}, + [21691] = {.lex_state = 0, .external_lex_state = 1}, + [21692] = {.lex_state = 0, .external_lex_state = 1}, + [21693] = {.lex_state = 0, .external_lex_state = 1}, + [21694] = {.lex_state = 0, .external_lex_state = 1}, + [21695] = {.lex_state = 0, .external_lex_state = 1}, + [21696] = {.lex_state = 0, .external_lex_state = 1}, + [21697] = {.lex_state = 0, .external_lex_state = 1}, + [21698] = {.lex_state = 0, .external_lex_state = 1}, + [21699] = {.lex_state = 0, .external_lex_state = 1}, + [21700] = {.lex_state = 0, .external_lex_state = 1}, + [21701] = {.lex_state = 0, .external_lex_state = 1}, + [21702] = {.lex_state = 0, .external_lex_state = 1}, + [21703] = {.lex_state = 0, .external_lex_state = 1}, + [21704] = {.lex_state = 0, .external_lex_state = 1}, + [21705] = {.lex_state = 0, .external_lex_state = 1}, + [21706] = {.lex_state = 0, .external_lex_state = 1}, + [21707] = {.lex_state = 0, .external_lex_state = 1}, + [21708] = {.lex_state = 0, .external_lex_state = 1}, + [21709] = {.lex_state = 0, .external_lex_state = 1}, + [21710] = {.lex_state = 0, .external_lex_state = 1}, + [21711] = {.lex_state = 0, .external_lex_state = 1}, + [21712] = {.lex_state = 0, .external_lex_state = 1}, + [21713] = {.lex_state = 0, .external_lex_state = 1}, + [21714] = {.lex_state = 0, .external_lex_state = 1}, + [21715] = {.lex_state = 0, .external_lex_state = 1}, + [21716] = {.lex_state = 0, .external_lex_state = 1}, + [21717] = {.lex_state = 0, .external_lex_state = 1}, + [21718] = {.lex_state = 0, .external_lex_state = 1}, + [21719] = {.lex_state = 0, .external_lex_state = 1}, + [21720] = {.lex_state = 0, .external_lex_state = 1}, + [21721] = {.lex_state = 0, .external_lex_state = 1}, + [21722] = {.lex_state = 125, .external_lex_state = 1}, + [21723] = {.lex_state = 0, .external_lex_state = 1}, + [21724] = {.lex_state = 0, .external_lex_state = 1}, + [21725] = {.lex_state = 0, .external_lex_state = 1}, + [21726] = {.lex_state = 0, .external_lex_state = 1}, + [21727] = {.lex_state = 0, .external_lex_state = 1}, + [21728] = {.lex_state = 0, .external_lex_state = 1}, + [21729] = {.lex_state = 0, .external_lex_state = 1}, + [21730] = {.lex_state = 0, .external_lex_state = 1}, + [21731] = {.lex_state = 0, .external_lex_state = 1}, + [21732] = {.lex_state = 0, .external_lex_state = 1}, + [21733] = {.lex_state = 0, .external_lex_state = 1}, + [21734] = {.lex_state = 0, .external_lex_state = 1}, + [21735] = {.lex_state = 0, .external_lex_state = 1}, + [21736] = {.lex_state = 0, .external_lex_state = 1}, + [21737] = {.lex_state = 0, .external_lex_state = 1}, + [21738] = {.lex_state = 0, .external_lex_state = 1}, + [21739] = {.lex_state = 0, .external_lex_state = 1}, + [21740] = {.lex_state = 0, .external_lex_state = 1}, + [21741] = {.lex_state = 0, .external_lex_state = 1}, + [21742] = {.lex_state = 0, .external_lex_state = 1}, + [21743] = {.lex_state = 0, .external_lex_state = 1}, + [21744] = {.lex_state = 0, .external_lex_state = 1}, + [21745] = {.lex_state = 0, .external_lex_state = 1}, + [21746] = {.lex_state = 0, .external_lex_state = 1}, + [21747] = {.lex_state = 0, .external_lex_state = 1}, + [21748] = {.lex_state = 0, .external_lex_state = 1}, + [21749] = {.lex_state = 0, .external_lex_state = 1}, + [21750] = {.lex_state = 0, .external_lex_state = 1}, + [21751] = {.lex_state = 0, .external_lex_state = 1}, + [21752] = {.lex_state = 0, .external_lex_state = 1}, + [21753] = {.lex_state = 0, .external_lex_state = 1}, + [21754] = {.lex_state = 0, .external_lex_state = 1}, + [21755] = {.lex_state = 0, .external_lex_state = 1}, + [21756] = {.lex_state = 0, .external_lex_state = 1}, + [21757] = {.lex_state = 122, .external_lex_state = 1}, + [21758] = {.lex_state = 0, .external_lex_state = 1}, + [21759] = {.lex_state = 0, .external_lex_state = 1}, + [21760] = {.lex_state = 0, .external_lex_state = 1}, + [21761] = {.lex_state = 0, .external_lex_state = 1}, + [21762] = {.lex_state = 0, .external_lex_state = 1}, + [21763] = {.lex_state = 0, .external_lex_state = 1}, + [21764] = {.lex_state = 0, .external_lex_state = 1}, + [21765] = {.lex_state = 0, .external_lex_state = 1}, + [21766] = {.lex_state = 0, .external_lex_state = 1}, + [21767] = {.lex_state = 0, .external_lex_state = 1}, + [21768] = {.lex_state = 0, .external_lex_state = 1}, + [21769] = {.lex_state = 0, .external_lex_state = 1}, + [21770] = {.lex_state = 0, .external_lex_state = 1}, + [21771] = {.lex_state = 0, .external_lex_state = 1}, + [21772] = {.lex_state = 0, .external_lex_state = 1}, + [21773] = {.lex_state = 0, .external_lex_state = 1}, + [21774] = {.lex_state = 0, .external_lex_state = 1}, + [21775] = {.lex_state = 0, .external_lex_state = 1}, + [21776] = {.lex_state = 0, .external_lex_state = 1}, + [21777] = {.lex_state = 0, .external_lex_state = 1}, + [21778] = {.lex_state = 0, .external_lex_state = 1}, + [21779] = {.lex_state = 0, .external_lex_state = 1}, + [21780] = {.lex_state = 0, .external_lex_state = 1}, + [21781] = {.lex_state = 0, .external_lex_state = 1}, + [21782] = {.lex_state = 0, .external_lex_state = 1}, + [21783] = {.lex_state = 0, .external_lex_state = 1}, + [21784] = {.lex_state = 0, .external_lex_state = 1}, + [21785] = {.lex_state = 0, .external_lex_state = 1}, + [21786] = {.lex_state = 0, .external_lex_state = 1}, + [21787] = {.lex_state = 125, .external_lex_state = 1}, + [21788] = {.lex_state = 0, .external_lex_state = 1}, + [21789] = {.lex_state = 0, .external_lex_state = 1}, + [21790] = {.lex_state = 0, .external_lex_state = 1}, + [21791] = {.lex_state = 0, .external_lex_state = 1}, + [21792] = {.lex_state = 125, .external_lex_state = 1}, + [21793] = {.lex_state = 0, .external_lex_state = 1}, + [21794] = {.lex_state = 0, .external_lex_state = 1}, + [21795] = {.lex_state = 0, .external_lex_state = 1}, + [21796] = {.lex_state = 0, .external_lex_state = 1}, + [21797] = {.lex_state = 0, .external_lex_state = 1}, + [21798] = {.lex_state = 0, .external_lex_state = 1}, + [21799] = {.lex_state = 0, .external_lex_state = 1}, + [21800] = {.lex_state = 0, .external_lex_state = 1}, + [21801] = {.lex_state = 0, .external_lex_state = 1}, + [21802] = {.lex_state = 0, .external_lex_state = 1}, + [21803] = {.lex_state = 0, .external_lex_state = 1}, + [21804] = {.lex_state = 125, .external_lex_state = 1}, + [21805] = {.lex_state = 0, .external_lex_state = 1}, + [21806] = {.lex_state = 0, .external_lex_state = 1}, + [21807] = {.lex_state = 0, .external_lex_state = 1}, + [21808] = {.lex_state = 0, .external_lex_state = 1}, + [21809] = {.lex_state = 0, .external_lex_state = 1}, + [21810] = {.lex_state = 0, .external_lex_state = 1}, + [21811] = {.lex_state = 0, .external_lex_state = 1}, + [21812] = {.lex_state = 0, .external_lex_state = 1}, + [21813] = {.lex_state = 0, .external_lex_state = 1}, + [21814] = {.lex_state = 0, .external_lex_state = 1}, + [21815] = {.lex_state = 0, .external_lex_state = 1}, + [21816] = {.lex_state = 0, .external_lex_state = 1}, + [21817] = {.lex_state = 0, .external_lex_state = 1}, + [21818] = {.lex_state = 0, .external_lex_state = 1}, + [21819] = {.lex_state = 0, .external_lex_state = 1}, + [21820] = {.lex_state = 0, .external_lex_state = 1}, + [21821] = {.lex_state = 0, .external_lex_state = 1}, + [21822] = {.lex_state = 0, .external_lex_state = 1}, + [21823] = {.lex_state = 0, .external_lex_state = 1}, + [21824] = {.lex_state = 0, .external_lex_state = 1}, + [21825] = {.lex_state = 0, .external_lex_state = 1}, + [21826] = {.lex_state = 0, .external_lex_state = 1}, + [21827] = {.lex_state = 0, .external_lex_state = 1}, + [21828] = {.lex_state = 0, .external_lex_state = 1}, + [21829] = {.lex_state = 0, .external_lex_state = 1}, + [21830] = {.lex_state = 0, .external_lex_state = 1}, + [21831] = {.lex_state = 125, .external_lex_state = 1}, + [21832] = {.lex_state = 0, .external_lex_state = 1}, + [21833] = {.lex_state = 0, .external_lex_state = 1}, + [21834] = {.lex_state = 0, .external_lex_state = 1}, + [21835] = {.lex_state = 0, .external_lex_state = 1}, + [21836] = {.lex_state = 0, .external_lex_state = 1}, + [21837] = {.lex_state = 0, .external_lex_state = 1}, + [21838] = {.lex_state = 0, .external_lex_state = 1}, + [21839] = {.lex_state = 0, .external_lex_state = 1}, + [21840] = {.lex_state = 0, .external_lex_state = 1}, + [21841] = {.lex_state = 0, .external_lex_state = 1}, + [21842] = {.lex_state = 0, .external_lex_state = 1}, + [21843] = {.lex_state = 0, .external_lex_state = 1}, + [21844] = {.lex_state = 0, .external_lex_state = 1}, + [21845] = {.lex_state = 0, .external_lex_state = 1}, + [21846] = {.lex_state = 0, .external_lex_state = 1}, + [21847] = {.lex_state = 0, .external_lex_state = 1}, + [21848] = {.lex_state = 0, .external_lex_state = 1}, + [21849] = {.lex_state = 0, .external_lex_state = 1}, + [21850] = {.lex_state = 0, .external_lex_state = 1}, + [21851] = {.lex_state = 0, .external_lex_state = 1}, + [21852] = {.lex_state = 0, .external_lex_state = 1}, + [21853] = {.lex_state = 0, .external_lex_state = 1}, + [21854] = {.lex_state = 0, .external_lex_state = 1}, + [21855] = {.lex_state = 0, .external_lex_state = 1}, + [21856] = {.lex_state = 0, .external_lex_state = 1}, + [21857] = {.lex_state = 0, .external_lex_state = 1}, + [21858] = {.lex_state = 0, .external_lex_state = 1}, + [21859] = {.lex_state = 0, .external_lex_state = 1}, + [21860] = {.lex_state = 0, .external_lex_state = 1}, + [21861] = {.lex_state = 0, .external_lex_state = 1}, + [21862] = {.lex_state = 0, .external_lex_state = 1}, + [21863] = {.lex_state = 0, .external_lex_state = 1}, + [21864] = {.lex_state = 0, .external_lex_state = 1}, + [21865] = {.lex_state = 0, .external_lex_state = 1}, + [21866] = {.lex_state = 0, .external_lex_state = 1}, + [21867] = {.lex_state = 0, .external_lex_state = 1}, + [21868] = {.lex_state = 0, .external_lex_state = 1}, + [21869] = {.lex_state = 0, .external_lex_state = 1}, + [21870] = {.lex_state = 0, .external_lex_state = 1}, + [21871] = {.lex_state = 0, .external_lex_state = 1}, + [21872] = {.lex_state = 0, .external_lex_state = 1}, + [21873] = {.lex_state = 0, .external_lex_state = 1}, + [21874] = {.lex_state = 0, .external_lex_state = 1}, + [21875] = {.lex_state = 0, .external_lex_state = 1}, + [21876] = {.lex_state = 0, .external_lex_state = 1}, + [21877] = {.lex_state = 0, .external_lex_state = 1}, + [21878] = {.lex_state = 0, .external_lex_state = 1}, + [21879] = {.lex_state = 0, .external_lex_state = 1}, + [21880] = {.lex_state = 0, .external_lex_state = 1}, + [21881] = {.lex_state = 125, .external_lex_state = 1}, + [21882] = {.lex_state = 0, .external_lex_state = 1}, + [21883] = {.lex_state = 0, .external_lex_state = 1}, + [21884] = {.lex_state = 0, .external_lex_state = 1}, + [21885] = {.lex_state = 0, .external_lex_state = 1}, + [21886] = {.lex_state = 125, .external_lex_state = 1}, + [21887] = {.lex_state = 0, .external_lex_state = 1}, + [21888] = {.lex_state = 0, .external_lex_state = 1}, + [21889] = {.lex_state = 0, .external_lex_state = 1}, + [21890] = {.lex_state = 0, .external_lex_state = 1}, + [21891] = {.lex_state = 0, .external_lex_state = 1}, + [21892] = {.lex_state = 0, .external_lex_state = 1}, + [21893] = {.lex_state = 0, .external_lex_state = 1}, + [21894] = {.lex_state = 0, .external_lex_state = 1}, + [21895] = {.lex_state = 0, .external_lex_state = 1}, + [21896] = {.lex_state = 0, .external_lex_state = 1}, + [21897] = {.lex_state = 0, .external_lex_state = 1}, + [21898] = {.lex_state = 0, .external_lex_state = 1}, + [21899] = {.lex_state = 0, .external_lex_state = 1}, + [21900] = {.lex_state = 0, .external_lex_state = 1}, + [21901] = {.lex_state = 0, .external_lex_state = 1}, + [21902] = {.lex_state = 0, .external_lex_state = 1}, + [21903] = {.lex_state = 0, .external_lex_state = 1}, + [21904] = {.lex_state = 0, .external_lex_state = 1}, + [21905] = {.lex_state = 0, .external_lex_state = 1}, + [21906] = {.lex_state = 0, .external_lex_state = 1}, + [21907] = {.lex_state = 0, .external_lex_state = 1}, + [21908] = {.lex_state = 0, .external_lex_state = 1}, + [21909] = {.lex_state = 0, .external_lex_state = 1}, + [21910] = {.lex_state = 0, .external_lex_state = 1}, + [21911] = {.lex_state = 0, .external_lex_state = 1}, + [21912] = {.lex_state = 0, .external_lex_state = 1}, + [21913] = {.lex_state = 0, .external_lex_state = 1}, + [21914] = {.lex_state = 0, .external_lex_state = 1}, + [21915] = {.lex_state = 0, .external_lex_state = 1}, + [21916] = {.lex_state = 0, .external_lex_state = 1}, + [21917] = {.lex_state = 0, .external_lex_state = 1}, + [21918] = {.lex_state = 0, .external_lex_state = 1}, + [21919] = {.lex_state = 0, .external_lex_state = 1}, + [21920] = {.lex_state = 0, .external_lex_state = 1}, + [21921] = {.lex_state = 0, .external_lex_state = 1}, + [21922] = {.lex_state = 0, .external_lex_state = 1}, + [21923] = {.lex_state = 0, .external_lex_state = 1}, + [21924] = {.lex_state = 0, .external_lex_state = 1}, + [21925] = {.lex_state = 0, .external_lex_state = 1}, + [21926] = {.lex_state = 0, .external_lex_state = 1}, + [21927] = {.lex_state = 0, .external_lex_state = 1}, + [21928] = {.lex_state = 0, .external_lex_state = 1}, + [21929] = {.lex_state = 0, .external_lex_state = 1}, + [21930] = {.lex_state = 0, .external_lex_state = 1}, + [21931] = {.lex_state = 0, .external_lex_state = 1}, + [21932] = {.lex_state = 0, .external_lex_state = 1}, + [21933] = {.lex_state = 0, .external_lex_state = 1}, + [21934] = {.lex_state = 0, .external_lex_state = 1}, + [21935] = {.lex_state = 0, .external_lex_state = 1}, + [21936] = {.lex_state = 0, .external_lex_state = 1}, + [21937] = {.lex_state = 0, .external_lex_state = 1}, + [21938] = {.lex_state = 0, .external_lex_state = 1}, + [21939] = {.lex_state = 0, .external_lex_state = 1}, + [21940] = {.lex_state = 0, .external_lex_state = 1}, + [21941] = {.lex_state = 0, .external_lex_state = 1}, + [21942] = {.lex_state = 125, .external_lex_state = 1}, + [21943] = {.lex_state = 0, .external_lex_state = 1}, + [21944] = {.lex_state = 0, .external_lex_state = 1}, + [21945] = {.lex_state = 0, .external_lex_state = 1}, + [21946] = {.lex_state = 0, .external_lex_state = 1}, + [21947] = {.lex_state = 0, .external_lex_state = 1}, + [21948] = {.lex_state = 0, .external_lex_state = 1}, + [21949] = {.lex_state = 0, .external_lex_state = 1}, + [21950] = {.lex_state = 0, .external_lex_state = 1}, + [21951] = {.lex_state = 0, .external_lex_state = 1}, + [21952] = {.lex_state = 0, .external_lex_state = 1}, + [21953] = {.lex_state = 0, .external_lex_state = 1}, + [21954] = {.lex_state = 0, .external_lex_state = 1}, + [21955] = {.lex_state = 0, .external_lex_state = 1}, + [21956] = {.lex_state = 0, .external_lex_state = 1}, + [21957] = {.lex_state = 0, .external_lex_state = 1}, + [21958] = {.lex_state = 0, .external_lex_state = 1}, + [21959] = {.lex_state = 0, .external_lex_state = 1}, + [21960] = {.lex_state = 0, .external_lex_state = 1}, + [21961] = {.lex_state = 0, .external_lex_state = 1}, + [21962] = {.lex_state = 0, .external_lex_state = 1}, + [21963] = {.lex_state = 0, .external_lex_state = 1}, + [21964] = {.lex_state = 0, .external_lex_state = 1}, + [21965] = {.lex_state = 0, .external_lex_state = 1}, + [21966] = {.lex_state = 0, .external_lex_state = 1}, + [21967] = {.lex_state = 125, .external_lex_state = 1}, + [21968] = {.lex_state = 0, .external_lex_state = 1}, + [21969] = {.lex_state = 0, .external_lex_state = 1}, + [21970] = {.lex_state = 0, .external_lex_state = 1}, + [21971] = {.lex_state = 0, .external_lex_state = 1}, + [21972] = {.lex_state = 0, .external_lex_state = 1}, + [21973] = {.lex_state = 0, .external_lex_state = 1}, + [21974] = {.lex_state = 0, .external_lex_state = 1}, + [21975] = {.lex_state = 0, .external_lex_state = 1}, + [21976] = {.lex_state = 0, .external_lex_state = 1}, + [21977] = {.lex_state = 125, .external_lex_state = 1}, + [21978] = {.lex_state = 0, .external_lex_state = 1}, + [21979] = {.lex_state = 0, .external_lex_state = 1}, + [21980] = {.lex_state = 0, .external_lex_state = 1}, + [21981] = {.lex_state = 0, .external_lex_state = 1}, + [21982] = {.lex_state = 125, .external_lex_state = 1}, + [21983] = {.lex_state = 0, .external_lex_state = 1}, + [21984] = {.lex_state = 0, .external_lex_state = 1}, + [21985] = {.lex_state = 0, .external_lex_state = 1}, + [21986] = {.lex_state = 0, .external_lex_state = 1}, + [21987] = {.lex_state = 0, .external_lex_state = 1}, + [21988] = {.lex_state = 0, .external_lex_state = 1}, + [21989] = {.lex_state = 0, .external_lex_state = 1}, + [21990] = {.lex_state = 0, .external_lex_state = 1}, + [21991] = {.lex_state = 0, .external_lex_state = 1}, + [21992] = {.lex_state = 0, .external_lex_state = 1}, + [21993] = {.lex_state = 0, .external_lex_state = 1}, + [21994] = {.lex_state = 0, .external_lex_state = 1}, + [21995] = {.lex_state = 0, .external_lex_state = 1}, + [21996] = {.lex_state = 0, .external_lex_state = 1}, + [21997] = {.lex_state = 0, .external_lex_state = 1}, + [21998] = {.lex_state = 0, .external_lex_state = 1}, + [21999] = {.lex_state = 0, .external_lex_state = 1}, + [22000] = {.lex_state = 0, .external_lex_state = 1}, + [22001] = {.lex_state = 125, .external_lex_state = 1}, + [22002] = {.lex_state = 0, .external_lex_state = 1}, + [22003] = {.lex_state = 0, .external_lex_state = 1}, + [22004] = {.lex_state = 0, .external_lex_state = 1}, + [22005] = {.lex_state = 0, .external_lex_state = 1}, + [22006] = {.lex_state = 0, .external_lex_state = 1}, + [22007] = {.lex_state = 0, .external_lex_state = 1}, + [22008] = {.lex_state = 0, .external_lex_state = 1}, + [22009] = {.lex_state = 0, .external_lex_state = 1}, + [22010] = {.lex_state = 0, .external_lex_state = 1}, + [22011] = {.lex_state = 0, .external_lex_state = 1}, + [22012] = {.lex_state = 0, .external_lex_state = 1}, + [22013] = {.lex_state = 0, .external_lex_state = 1}, + [22014] = {.lex_state = 0, .external_lex_state = 1}, + [22015] = {.lex_state = 0, .external_lex_state = 1}, + [22016] = {.lex_state = 0, .external_lex_state = 1}, + [22017] = {.lex_state = 0, .external_lex_state = 1}, + [22018] = {.lex_state = 0, .external_lex_state = 1}, + [22019] = {.lex_state = 0, .external_lex_state = 1}, + [22020] = {.lex_state = 0, .external_lex_state = 1}, + [22021] = {.lex_state = 0, .external_lex_state = 1}, + [22022] = {.lex_state = 0, .external_lex_state = 1}, + [22023] = {.lex_state = 0, .external_lex_state = 1}, + [22024] = {.lex_state = 0, .external_lex_state = 1}, + [22025] = {.lex_state = 0, .external_lex_state = 1}, + [22026] = {.lex_state = 0, .external_lex_state = 1}, + [22027] = {.lex_state = 0, .external_lex_state = 1}, + [22028] = {.lex_state = 0, .external_lex_state = 1}, + [22029] = {.lex_state = 0, .external_lex_state = 1}, + [22030] = {.lex_state = 0, .external_lex_state = 1}, + [22031] = {.lex_state = 0, .external_lex_state = 1}, + [22032] = {.lex_state = 0, .external_lex_state = 1}, + [22033] = {.lex_state = 0, .external_lex_state = 1}, + [22034] = {.lex_state = 0, .external_lex_state = 1}, + [22035] = {.lex_state = 0, .external_lex_state = 1}, + [22036] = {.lex_state = 0, .external_lex_state = 1}, + [22037] = {.lex_state = 0, .external_lex_state = 1}, + [22038] = {.lex_state = 0, .external_lex_state = 1}, + [22039] = {.lex_state = 0, .external_lex_state = 1}, + [22040] = {.lex_state = 0, .external_lex_state = 1}, + [22041] = {.lex_state = 0, .external_lex_state = 1}, + [22042] = {.lex_state = 0, .external_lex_state = 1}, + [22043] = {.lex_state = 0, .external_lex_state = 1}, + [22044] = {.lex_state = 0, .external_lex_state = 1}, + [22045] = {.lex_state = 0, .external_lex_state = 1}, + [22046] = {.lex_state = 0, .external_lex_state = 1}, + [22047] = {.lex_state = 0, .external_lex_state = 1}, + [22048] = {.lex_state = 0, .external_lex_state = 1}, + [22049] = {.lex_state = 0, .external_lex_state = 1}, + [22050] = {.lex_state = 0, .external_lex_state = 1}, + [22051] = {.lex_state = 0, .external_lex_state = 1}, + [22052] = {.lex_state = 0, .external_lex_state = 1}, + [22053] = {.lex_state = 0, .external_lex_state = 1}, + [22054] = {.lex_state = 0, .external_lex_state = 1}, + [22055] = {.lex_state = 0, .external_lex_state = 1}, + [22056] = {.lex_state = 0, .external_lex_state = 1}, + [22057] = {.lex_state = 0, .external_lex_state = 1}, + [22058] = {.lex_state = 0, .external_lex_state = 1}, + [22059] = {.lex_state = 0, .external_lex_state = 1}, + [22060] = {.lex_state = 0, .external_lex_state = 1}, + [22061] = {.lex_state = 0, .external_lex_state = 1}, + [22062] = {.lex_state = 0, .external_lex_state = 1}, + [22063] = {.lex_state = 0, .external_lex_state = 1}, + [22064] = {.lex_state = 0, .external_lex_state = 1}, + [22065] = {.lex_state = 0, .external_lex_state = 1}, + [22066] = {.lex_state = 0, .external_lex_state = 1}, + [22067] = {.lex_state = 0, .external_lex_state = 1}, + [22068] = {.lex_state = 0, .external_lex_state = 1}, + [22069] = {.lex_state = 0, .external_lex_state = 1}, + [22070] = {.lex_state = 0, .external_lex_state = 1}, + [22071] = {.lex_state = 0, .external_lex_state = 1}, + [22072] = {.lex_state = 0, .external_lex_state = 1}, + [22073] = {.lex_state = 0, .external_lex_state = 1}, + [22074] = {.lex_state = 0, .external_lex_state = 1}, + [22075] = {.lex_state = 0, .external_lex_state = 1}, + [22076] = {.lex_state = 0, .external_lex_state = 1}, + [22077] = {.lex_state = 0, .external_lex_state = 1}, + [22078] = {.lex_state = 0, .external_lex_state = 1}, + [22079] = {.lex_state = 0, .external_lex_state = 1}, + [22080] = {.lex_state = 0, .external_lex_state = 1}, + [22081] = {.lex_state = 0, .external_lex_state = 1}, + [22082] = {.lex_state = 0, .external_lex_state = 1}, + [22083] = {.lex_state = 0, .external_lex_state = 1}, + [22084] = {.lex_state = 0, .external_lex_state = 1}, + [22085] = {.lex_state = 0, .external_lex_state = 1}, + [22086] = {.lex_state = 0, .external_lex_state = 1}, + [22087] = {.lex_state = 0, .external_lex_state = 1}, + [22088] = {.lex_state = 0, .external_lex_state = 1}, + [22089] = {.lex_state = 0, .external_lex_state = 1}, + [22090] = {.lex_state = 0, .external_lex_state = 1}, + [22091] = {.lex_state = 0, .external_lex_state = 1}, + [22092] = {.lex_state = 0, .external_lex_state = 1}, + [22093] = {.lex_state = 0, .external_lex_state = 1}, + [22094] = {.lex_state = 0, .external_lex_state = 1}, + [22095] = {.lex_state = 0, .external_lex_state = 1}, + [22096] = {.lex_state = 0, .external_lex_state = 1}, + [22097] = {.lex_state = 0, .external_lex_state = 1}, + [22098] = {.lex_state = 0, .external_lex_state = 1}, + [22099] = {.lex_state = 0, .external_lex_state = 1}, + [22100] = {.lex_state = 0, .external_lex_state = 1}, + [22101] = {.lex_state = 0, .external_lex_state = 1}, + [22102] = {.lex_state = 0, .external_lex_state = 1}, + [22103] = {.lex_state = 0, .external_lex_state = 1}, + [22104] = {.lex_state = 0, .external_lex_state = 1}, + [22105] = {.lex_state = 0, .external_lex_state = 1}, + [22106] = {.lex_state = 0, .external_lex_state = 1}, + [22107] = {.lex_state = 0, .external_lex_state = 1}, + [22108] = {.lex_state = 0, .external_lex_state = 1}, + [22109] = {.lex_state = 0, .external_lex_state = 1}, + [22110] = {.lex_state = 0, .external_lex_state = 1}, + [22111] = {.lex_state = 0, .external_lex_state = 1}, + [22112] = {.lex_state = 0, .external_lex_state = 1}, + [22113] = {.lex_state = 0, .external_lex_state = 1}, + [22114] = {.lex_state = 0, .external_lex_state = 1}, + [22115] = {.lex_state = 0, .external_lex_state = 1}, + [22116] = {.lex_state = 0, .external_lex_state = 1}, + [22117] = {.lex_state = 0, .external_lex_state = 1}, + [22118] = {.lex_state = 0, .external_lex_state = 1}, + [22119] = {.lex_state = 0, .external_lex_state = 1}, + [22120] = {.lex_state = 0, .external_lex_state = 1}, + [22121] = {.lex_state = 0, .external_lex_state = 1}, + [22122] = {.lex_state = 0, .external_lex_state = 1}, + [22123] = {.lex_state = 0, .external_lex_state = 1}, + [22124] = {.lex_state = 125, .external_lex_state = 1}, + [22125] = {.lex_state = 0, .external_lex_state = 1}, + [22126] = {.lex_state = 0, .external_lex_state = 1}, + [22127] = {.lex_state = 0, .external_lex_state = 1}, + [22128] = {.lex_state = 0, .external_lex_state = 1}, + [22129] = {.lex_state = 0, .external_lex_state = 1}, + [22130] = {.lex_state = 0, .external_lex_state = 1}, + [22131] = {.lex_state = 0, .external_lex_state = 1}, + [22132] = {.lex_state = 0, .external_lex_state = 1}, + [22133] = {.lex_state = 0, .external_lex_state = 1}, + [22134] = {.lex_state = 0, .external_lex_state = 1}, + [22135] = {.lex_state = 0, .external_lex_state = 1}, + [22136] = {.lex_state = 0, .external_lex_state = 1}, + [22137] = {.lex_state = 0, .external_lex_state = 1}, + [22138] = {.lex_state = 0, .external_lex_state = 1}, + [22139] = {.lex_state = 0, .external_lex_state = 1}, + [22140] = {.lex_state = 0, .external_lex_state = 1}, + [22141] = {.lex_state = 0, .external_lex_state = 1}, + [22142] = {.lex_state = 0, .external_lex_state = 1}, + [22143] = {.lex_state = 0, .external_lex_state = 1}, + [22144] = {.lex_state = 0, .external_lex_state = 1}, + [22145] = {.lex_state = 0, .external_lex_state = 1}, + [22146] = {.lex_state = 0, .external_lex_state = 1}, + [22147] = {.lex_state = 0, .external_lex_state = 1}, + [22148] = {.lex_state = 0, .external_lex_state = 1}, + [22149] = {.lex_state = 0, .external_lex_state = 1}, + [22150] = {.lex_state = 0, .external_lex_state = 1}, + [22151] = {.lex_state = 0, .external_lex_state = 1}, + [22152] = {.lex_state = 0, .external_lex_state = 1}, + [22153] = {.lex_state = 0, .external_lex_state = 1}, + [22154] = {.lex_state = 0, .external_lex_state = 1}, + [22155] = {.lex_state = 0, .external_lex_state = 1}, + [22156] = {.lex_state = 0, .external_lex_state = 1}, + [22157] = {.lex_state = 0, .external_lex_state = 1}, + [22158] = {.lex_state = 0, .external_lex_state = 1}, + [22159] = {.lex_state = 0, .external_lex_state = 1}, + [22160] = {.lex_state = 0, .external_lex_state = 1}, + [22161] = {.lex_state = 0, .external_lex_state = 1}, + [22162] = {.lex_state = 0, .external_lex_state = 1}, + [22163] = {.lex_state = 0, .external_lex_state = 1}, + [22164] = {.lex_state = 0, .external_lex_state = 1}, + [22165] = {.lex_state = 0, .external_lex_state = 1}, + [22166] = {.lex_state = 0, .external_lex_state = 1}, + [22167] = {.lex_state = 0, .external_lex_state = 1}, + [22168] = {.lex_state = 0, .external_lex_state = 1}, + [22169] = {.lex_state = 0, .external_lex_state = 1}, + [22170] = {.lex_state = 0, .external_lex_state = 1}, + [22171] = {.lex_state = 0, .external_lex_state = 1}, + [22172] = {.lex_state = 0, .external_lex_state = 1}, + [22173] = {.lex_state = 0, .external_lex_state = 1}, + [22174] = {.lex_state = 0, .external_lex_state = 1}, + [22175] = {.lex_state = 0, .external_lex_state = 1}, + [22176] = {.lex_state = 0, .external_lex_state = 1}, + [22177] = {.lex_state = 0, .external_lex_state = 1}, + [22178] = {.lex_state = 0, .external_lex_state = 1}, + [22179] = {.lex_state = 0, .external_lex_state = 1}, + [22180] = {.lex_state = 0, .external_lex_state = 1}, + [22181] = {.lex_state = 0, .external_lex_state = 1}, + [22182] = {.lex_state = 0, .external_lex_state = 1}, + [22183] = {.lex_state = 0, .external_lex_state = 1}, + [22184] = {.lex_state = 0, .external_lex_state = 1}, + [22185] = {.lex_state = 0, .external_lex_state = 1}, + [22186] = {.lex_state = 0, .external_lex_state = 1}, + [22187] = {.lex_state = 0, .external_lex_state = 1}, + [22188] = {.lex_state = 0, .external_lex_state = 1}, + [22189] = {.lex_state = 0, .external_lex_state = 1}, + [22190] = {.lex_state = 0, .external_lex_state = 1}, + [22191] = {.lex_state = 0, .external_lex_state = 1}, + [22192] = {.lex_state = 0, .external_lex_state = 1}, + [22193] = {.lex_state = 0, .external_lex_state = 1}, + [22194] = {.lex_state = 0, .external_lex_state = 1}, + [22195] = {.lex_state = 0, .external_lex_state = 1}, + [22196] = {.lex_state = 0, .external_lex_state = 1}, + [22197] = {.lex_state = 0, .external_lex_state = 1}, + [22198] = {.lex_state = 0, .external_lex_state = 1}, + [22199] = {.lex_state = 0, .external_lex_state = 1}, + [22200] = {.lex_state = 0, .external_lex_state = 1}, + [22201] = {.lex_state = 0, .external_lex_state = 1}, + [22202] = {.lex_state = 0, .external_lex_state = 1}, + [22203] = {.lex_state = 0, .external_lex_state = 1}, + [22204] = {.lex_state = 0, .external_lex_state = 1}, + [22205] = {.lex_state = 0, .external_lex_state = 1}, + [22206] = {.lex_state = 0, .external_lex_state = 1}, + [22207] = {.lex_state = 0, .external_lex_state = 1}, + [22208] = {.lex_state = 0, .external_lex_state = 1}, + [22209] = {.lex_state = 0, .external_lex_state = 1}, + [22210] = {.lex_state = 0, .external_lex_state = 1}, + [22211] = {.lex_state = 0, .external_lex_state = 1}, + [22212] = {.lex_state = 0, .external_lex_state = 1}, + [22213] = {.lex_state = 0, .external_lex_state = 1}, + [22214] = {.lex_state = 0, .external_lex_state = 1}, + [22215] = {.lex_state = 0, .external_lex_state = 1}, + [22216] = {.lex_state = 0, .external_lex_state = 1}, + [22217] = {.lex_state = 0, .external_lex_state = 1}, + [22218] = {.lex_state = 0, .external_lex_state = 1}, + [22219] = {.lex_state = 0, .external_lex_state = 1}, + [22220] = {.lex_state = 0, .external_lex_state = 1}, + [22221] = {.lex_state = 0, .external_lex_state = 1}, + [22222] = {.lex_state = 0, .external_lex_state = 1}, + [22223] = {.lex_state = 0, .external_lex_state = 1}, + [22224] = {.lex_state = 0, .external_lex_state = 1}, + [22225] = {.lex_state = 0, .external_lex_state = 1}, + [22226] = {.lex_state = 0, .external_lex_state = 1}, + [22227] = {.lex_state = 0, .external_lex_state = 1}, + [22228] = {.lex_state = 0, .external_lex_state = 1}, + [22229] = {.lex_state = 0, .external_lex_state = 1}, + [22230] = {.lex_state = 0, .external_lex_state = 1}, + [22231] = {.lex_state = 0, .external_lex_state = 1}, + [22232] = {.lex_state = 0, .external_lex_state = 1}, + [22233] = {.lex_state = 0, .external_lex_state = 1}, + [22234] = {.lex_state = 0, .external_lex_state = 1}, + [22235] = {.lex_state = 0, .external_lex_state = 1}, + [22236] = {.lex_state = 0, .external_lex_state = 1}, + [22237] = {.lex_state = 0, .external_lex_state = 1}, + [22238] = {.lex_state = 0, .external_lex_state = 1}, + [22239] = {.lex_state = 0, .external_lex_state = 1}, + [22240] = {.lex_state = 0, .external_lex_state = 1}, + [22241] = {.lex_state = 0, .external_lex_state = 1}, + [22242] = {.lex_state = 0, .external_lex_state = 1}, + [22243] = {.lex_state = 0, .external_lex_state = 1}, + [22244] = {.lex_state = 0, .external_lex_state = 1}, + [22245] = {.lex_state = 0, .external_lex_state = 1}, + [22246] = {.lex_state = 0, .external_lex_state = 1}, + [22247] = {.lex_state = 0, .external_lex_state = 1}, + [22248] = {.lex_state = 0, .external_lex_state = 1}, + [22249] = {.lex_state = 0, .external_lex_state = 1}, + [22250] = {.lex_state = 0, .external_lex_state = 1}, + [22251] = {.lex_state = 0, .external_lex_state = 1}, + [22252] = {.lex_state = 0, .external_lex_state = 1}, + [22253] = {.lex_state = 0, .external_lex_state = 1}, + [22254] = {.lex_state = 0, .external_lex_state = 1}, + [22255] = {.lex_state = 0, .external_lex_state = 1}, + [22256] = {.lex_state = 0, .external_lex_state = 1}, + [22257] = {.lex_state = 0, .external_lex_state = 1}, + [22258] = {.lex_state = 0, .external_lex_state = 1}, + [22259] = {.lex_state = 0, .external_lex_state = 1}, + [22260] = {.lex_state = 0, .external_lex_state = 1}, + [22261] = {.lex_state = 0, .external_lex_state = 1}, + [22262] = {.lex_state = 0, .external_lex_state = 1}, + [22263] = {.lex_state = 0, .external_lex_state = 1}, + [22264] = {.lex_state = 0, .external_lex_state = 1}, + [22265] = {.lex_state = 0, .external_lex_state = 1}, + [22266] = {.lex_state = 0, .external_lex_state = 1}, + [22267] = {.lex_state = 0, .external_lex_state = 1}, + [22268] = {.lex_state = 0, .external_lex_state = 1}, + [22269] = {.lex_state = 0, .external_lex_state = 1}, + [22270] = {.lex_state = 0, .external_lex_state = 1}, + [22271] = {.lex_state = 0, .external_lex_state = 1}, + [22272] = {.lex_state = 0, .external_lex_state = 1}, + [22273] = {.lex_state = 0, .external_lex_state = 1}, + [22274] = {.lex_state = 0, .external_lex_state = 1}, + [22275] = {.lex_state = 0, .external_lex_state = 1}, + [22276] = {.lex_state = 0, .external_lex_state = 1}, + [22277] = {.lex_state = 0, .external_lex_state = 1}, + [22278] = {.lex_state = 0, .external_lex_state = 1}, + [22279] = {.lex_state = 0, .external_lex_state = 1}, + [22280] = {.lex_state = 0, .external_lex_state = 1}, + [22281] = {.lex_state = 0, .external_lex_state = 1}, + [22282] = {.lex_state = 0, .external_lex_state = 1}, + [22283] = {.lex_state = 0, .external_lex_state = 1}, + [22284] = {.lex_state = 0, .external_lex_state = 1}, + [22285] = {.lex_state = 0, .external_lex_state = 1}, + [22286] = {.lex_state = 0, .external_lex_state = 1}, + [22287] = {.lex_state = 0, .external_lex_state = 1}, + [22288] = {.lex_state = 0, .external_lex_state = 1}, + [22289] = {.lex_state = 0, .external_lex_state = 1}, + [22290] = {.lex_state = 0, .external_lex_state = 1}, + [22291] = {.lex_state = 0, .external_lex_state = 1}, + [22292] = {.lex_state = 0, .external_lex_state = 1}, + [22293] = {.lex_state = 0, .external_lex_state = 1}, + [22294] = {.lex_state = 547, .external_lex_state = 1}, + [22295] = {.lex_state = 0, .external_lex_state = 1}, + [22296] = {.lex_state = 0, .external_lex_state = 1}, + [22297] = {.lex_state = 0, .external_lex_state = 1}, + [22298] = {.lex_state = 0, .external_lex_state = 1}, + [22299] = {.lex_state = 0, .external_lex_state = 1}, + [22300] = {.lex_state = 0, .external_lex_state = 1}, + [22301] = {.lex_state = 0, .external_lex_state = 1}, + [22302] = {.lex_state = 0, .external_lex_state = 1}, + [22303] = {.lex_state = 0, .external_lex_state = 1}, + [22304] = {.lex_state = 0, .external_lex_state = 1}, + [22305] = {.lex_state = 0, .external_lex_state = 1}, + [22306] = {.lex_state = 0, .external_lex_state = 1}, + [22307] = {.lex_state = 0, .external_lex_state = 1}, + [22308] = {.lex_state = 0, .external_lex_state = 1}, + [22309] = {.lex_state = 0, .external_lex_state = 1}, + [22310] = {.lex_state = 0, .external_lex_state = 1}, + [22311] = {.lex_state = 0, .external_lex_state = 1}, + [22312] = {.lex_state = 0, .external_lex_state = 1}, + [22313] = {.lex_state = 0, .external_lex_state = 1}, + [22314] = {.lex_state = 0, .external_lex_state = 1}, + [22315] = {.lex_state = 0, .external_lex_state = 1}, + [22316] = {.lex_state = 0, .external_lex_state = 1}, + [22317] = {.lex_state = 0, .external_lex_state = 1}, + [22318] = {.lex_state = 0, .external_lex_state = 1}, + [22319] = {.lex_state = 125, .external_lex_state = 1}, + [22320] = {.lex_state = 0, .external_lex_state = 1}, + [22321] = {.lex_state = 0, .external_lex_state = 1}, + [22322] = {.lex_state = 0, .external_lex_state = 1}, + [22323] = {.lex_state = 0, .external_lex_state = 1}, + [22324] = {.lex_state = 0, .external_lex_state = 1}, + [22325] = {.lex_state = 0, .external_lex_state = 1}, + [22326] = {.lex_state = 0, .external_lex_state = 1}, + [22327] = {.lex_state = 0, .external_lex_state = 1}, + [22328] = {.lex_state = 0, .external_lex_state = 1}, + [22329] = {.lex_state = 0, .external_lex_state = 1}, + [22330] = {.lex_state = 0, .external_lex_state = 1}, + [22331] = {.lex_state = 0, .external_lex_state = 1}, + [22332] = {.lex_state = 0, .external_lex_state = 1}, + [22333] = {.lex_state = 0, .external_lex_state = 1}, + [22334] = {.lex_state = 0, .external_lex_state = 1}, + [22335] = {.lex_state = 0, .external_lex_state = 1}, + [22336] = {.lex_state = 0, .external_lex_state = 1}, + [22337] = {.lex_state = 0, .external_lex_state = 1}, + [22338] = {.lex_state = 0, .external_lex_state = 1}, + [22339] = {.lex_state = 0, .external_lex_state = 1}, + [22340] = {.lex_state = 0, .external_lex_state = 1}, + [22341] = {.lex_state = 0, .external_lex_state = 1}, + [22342] = {.lex_state = 0, .external_lex_state = 1}, + [22343] = {.lex_state = 0, .external_lex_state = 1}, + [22344] = {.lex_state = 0, .external_lex_state = 1}, + [22345] = {.lex_state = 0, .external_lex_state = 1}, + [22346] = {.lex_state = 0, .external_lex_state = 1}, + [22347] = {.lex_state = 0, .external_lex_state = 1}, + [22348] = {.lex_state = 0, .external_lex_state = 1}, + [22349] = {.lex_state = 0, .external_lex_state = 1}, + [22350] = {.lex_state = 0, .external_lex_state = 1}, + [22351] = {.lex_state = 0, .external_lex_state = 1}, + [22352] = {.lex_state = 0, .external_lex_state = 1}, + [22353] = {.lex_state = 0, .external_lex_state = 1}, + [22354] = {.lex_state = 0, .external_lex_state = 1}, + [22355] = {.lex_state = 0, .external_lex_state = 1}, + [22356] = {.lex_state = 0, .external_lex_state = 1}, + [22357] = {.lex_state = 0, .external_lex_state = 1}, + [22358] = {.lex_state = 0, .external_lex_state = 1}, + [22359] = {.lex_state = 0, .external_lex_state = 1}, + [22360] = {.lex_state = 0, .external_lex_state = 1}, + [22361] = {.lex_state = 0, .external_lex_state = 1}, + [22362] = {.lex_state = 0, .external_lex_state = 1}, + [22363] = {.lex_state = 0, .external_lex_state = 1}, + [22364] = {.lex_state = 0, .external_lex_state = 1}, + [22365] = {.lex_state = 0, .external_lex_state = 1}, + [22366] = {.lex_state = 0, .external_lex_state = 1}, + [22367] = {.lex_state = 0, .external_lex_state = 1}, + [22368] = {.lex_state = 0, .external_lex_state = 1}, + [22369] = {.lex_state = 0, .external_lex_state = 1}, + [22370] = {.lex_state = 0, .external_lex_state = 1}, + [22371] = {.lex_state = 0, .external_lex_state = 1}, + [22372] = {.lex_state = 0, .external_lex_state = 1}, + [22373] = {.lex_state = 0, .external_lex_state = 1}, + [22374] = {.lex_state = 0, .external_lex_state = 1}, + [22375] = {.lex_state = 0, .external_lex_state = 1}, + [22376] = {.lex_state = 0, .external_lex_state = 1}, + [22377] = {.lex_state = 0, .external_lex_state = 1}, + [22378] = {.lex_state = 0, .external_lex_state = 1}, + [22379] = {.lex_state = 0, .external_lex_state = 1}, + [22380] = {.lex_state = 0, .external_lex_state = 1}, + [22381] = {.lex_state = 0, .external_lex_state = 1}, + [22382] = {.lex_state = 0, .external_lex_state = 1}, + [22383] = {.lex_state = 0, .external_lex_state = 1}, + [22384] = {.lex_state = 0, .external_lex_state = 1}, + [22385] = {.lex_state = 0, .external_lex_state = 1}, + [22386] = {.lex_state = 0, .external_lex_state = 1}, + [22387] = {.lex_state = 0, .external_lex_state = 1}, + [22388] = {.lex_state = 0, .external_lex_state = 1}, + [22389] = {.lex_state = 0, .external_lex_state = 1}, + [22390] = {.lex_state = 0, .external_lex_state = 1}, + [22391] = {.lex_state = 0, .external_lex_state = 1}, + [22392] = {.lex_state = 0, .external_lex_state = 1}, + [22393] = {.lex_state = 0, .external_lex_state = 1}, + [22394] = {.lex_state = 0, .external_lex_state = 1}, + [22395] = {.lex_state = 0, .external_lex_state = 1}, + [22396] = {.lex_state = 0, .external_lex_state = 1}, + [22397] = {.lex_state = 0, .external_lex_state = 1}, + [22398] = {.lex_state = 0, .external_lex_state = 1}, + [22399] = {.lex_state = 0, .external_lex_state = 1}, + [22400] = {.lex_state = 0, .external_lex_state = 1}, + [22401] = {.lex_state = 0, .external_lex_state = 1}, + [22402] = {.lex_state = 0, .external_lex_state = 1}, + [22403] = {.lex_state = 0, .external_lex_state = 1}, + [22404] = {.lex_state = 0, .external_lex_state = 1}, + [22405] = {.lex_state = 0, .external_lex_state = 1}, + [22406] = {.lex_state = 0, .external_lex_state = 1}, + [22407] = {.lex_state = 0, .external_lex_state = 1}, + [22408] = {.lex_state = 0, .external_lex_state = 1}, + [22409] = {.lex_state = 0, .external_lex_state = 1}, + [22410] = {.lex_state = 0, .external_lex_state = 1}, + [22411] = {.lex_state = 0, .external_lex_state = 1}, + [22412] = {.lex_state = 0, .external_lex_state = 1}, + [22413] = {.lex_state = 0, .external_lex_state = 1}, + [22414] = {.lex_state = 0, .external_lex_state = 1}, + [22415] = {.lex_state = 0, .external_lex_state = 1}, + [22416] = {.lex_state = 0, .external_lex_state = 1}, + [22417] = {.lex_state = 0, .external_lex_state = 1}, + [22418] = {.lex_state = 0, .external_lex_state = 1}, + [22419] = {.lex_state = 0, .external_lex_state = 1}, + [22420] = {.lex_state = 0, .external_lex_state = 1}, + [22421] = {.lex_state = 0, .external_lex_state = 1}, + [22422] = {.lex_state = 0, .external_lex_state = 1}, + [22423] = {.lex_state = 0, .external_lex_state = 1}, + [22424] = {.lex_state = 0, .external_lex_state = 1}, + [22425] = {.lex_state = 0, .external_lex_state = 1}, + [22426] = {.lex_state = 0, .external_lex_state = 1}, + [22427] = {.lex_state = 0, .external_lex_state = 1}, + [22428] = {.lex_state = 0, .external_lex_state = 1}, + [22429] = {.lex_state = 0, .external_lex_state = 1}, + [22430] = {.lex_state = 0, .external_lex_state = 1}, + [22431] = {.lex_state = 0, .external_lex_state = 1}, + [22432] = {.lex_state = 0, .external_lex_state = 1}, + [22433] = {.lex_state = 0, .external_lex_state = 1}, + [22434] = {.lex_state = 0, .external_lex_state = 1}, + [22435] = {.lex_state = 0, .external_lex_state = 1}, + [22436] = {.lex_state = 0, .external_lex_state = 1}, + [22437] = {.lex_state = 0, .external_lex_state = 1}, + [22438] = {.lex_state = 0, .external_lex_state = 1}, + [22439] = {.lex_state = 0, .external_lex_state = 1}, + [22440] = {.lex_state = 0, .external_lex_state = 1}, + [22441] = {.lex_state = 0, .external_lex_state = 1}, + [22442] = {.lex_state = 0, .external_lex_state = 1}, + [22443] = {.lex_state = 0, .external_lex_state = 1}, + [22444] = {.lex_state = 0, .external_lex_state = 1}, + [22445] = {.lex_state = 0, .external_lex_state = 1}, + [22446] = {.lex_state = 0, .external_lex_state = 1}, + [22447] = {.lex_state = 0, .external_lex_state = 1}, + [22448] = {.lex_state = 0, .external_lex_state = 1}, + [22449] = {.lex_state = 0, .external_lex_state = 1}, + [22450] = {.lex_state = 0, .external_lex_state = 1}, + [22451] = {.lex_state = 0, .external_lex_state = 1}, + [22452] = {.lex_state = 0, .external_lex_state = 1}, + [22453] = {.lex_state = 0, .external_lex_state = 1}, + [22454] = {.lex_state = 0, .external_lex_state = 1}, + [22455] = {.lex_state = 0, .external_lex_state = 1}, + [22456] = {.lex_state = 0, .external_lex_state = 1}, + [22457] = {.lex_state = 0, .external_lex_state = 1}, + [22458] = {.lex_state = 0, .external_lex_state = 1}, + [22459] = {.lex_state = 0, .external_lex_state = 1}, + [22460] = {.lex_state = 0, .external_lex_state = 1}, + [22461] = {.lex_state = 0, .external_lex_state = 1}, + [22462] = {.lex_state = 0, .external_lex_state = 1}, + [22463] = {.lex_state = 0, .external_lex_state = 1}, + [22464] = {.lex_state = 0, .external_lex_state = 1}, + [22465] = {.lex_state = 0, .external_lex_state = 1}, + [22466] = {.lex_state = 0, .external_lex_state = 1}, + [22467] = {.lex_state = 0, .external_lex_state = 1}, + [22468] = {.lex_state = 0, .external_lex_state = 1}, + [22469] = {.lex_state = 0, .external_lex_state = 1}, + [22470] = {.lex_state = 0, .external_lex_state = 1}, + [22471] = {.lex_state = 0, .external_lex_state = 1}, + [22472] = {.lex_state = 0, .external_lex_state = 1}, + [22473] = {.lex_state = 0, .external_lex_state = 1}, + [22474] = {.lex_state = 0, .external_lex_state = 1}, + [22475] = {.lex_state = 0, .external_lex_state = 1}, + [22476] = {.lex_state = 0, .external_lex_state = 1}, + [22477] = {.lex_state = 0, .external_lex_state = 1}, + [22478] = {.lex_state = 0, .external_lex_state = 1}, + [22479] = {.lex_state = 0, .external_lex_state = 1}, + [22480] = {.lex_state = 0, .external_lex_state = 1}, + [22481] = {.lex_state = 0, .external_lex_state = 1}, + [22482] = {.lex_state = 0, .external_lex_state = 1}, + [22483] = {.lex_state = 0, .external_lex_state = 1}, + [22484] = {.lex_state = 0, .external_lex_state = 1}, + [22485] = {.lex_state = 0, .external_lex_state = 1}, + [22486] = {.lex_state = 0, .external_lex_state = 1}, + [22487] = {.lex_state = 0, .external_lex_state = 1}, + [22488] = {.lex_state = 0, .external_lex_state = 1}, + [22489] = {.lex_state = 0, .external_lex_state = 1}, + [22490] = {.lex_state = 0, .external_lex_state = 1}, + [22491] = {.lex_state = 0, .external_lex_state = 1}, + [22492] = {.lex_state = 0, .external_lex_state = 1}, + [22493] = {.lex_state = 0, .external_lex_state = 1}, + [22494] = {.lex_state = 0, .external_lex_state = 1}, + [22495] = {.lex_state = 0, .external_lex_state = 1}, + [22496] = {.lex_state = 0, .external_lex_state = 1}, + [22497] = {.lex_state = 0, .external_lex_state = 1}, + [22498] = {.lex_state = 0, .external_lex_state = 1}, + [22499] = {.lex_state = 0, .external_lex_state = 1}, + [22500] = {.lex_state = 0, .external_lex_state = 1}, + [22501] = {.lex_state = 0, .external_lex_state = 1}, + [22502] = {.lex_state = 0, .external_lex_state = 1}, + [22503] = {.lex_state = 0, .external_lex_state = 1}, + [22504] = {.lex_state = 0, .external_lex_state = 1}, + [22505] = {.lex_state = 0, .external_lex_state = 1}, + [22506] = {.lex_state = 0, .external_lex_state = 1}, + [22507] = {.lex_state = 0, .external_lex_state = 1}, + [22508] = {.lex_state = 0, .external_lex_state = 1}, + [22509] = {.lex_state = 0, .external_lex_state = 1}, + [22510] = {.lex_state = 125, .external_lex_state = 1}, + [22511] = {.lex_state = 0, .external_lex_state = 1}, + [22512] = {.lex_state = 0, .external_lex_state = 1}, + [22513] = {.lex_state = 0, .external_lex_state = 1}, + [22514] = {.lex_state = 0, .external_lex_state = 1}, + [22515] = {.lex_state = 0, .external_lex_state = 1}, + [22516] = {.lex_state = 0, .external_lex_state = 1}, + [22517] = {.lex_state = 0, .external_lex_state = 1}, + [22518] = {.lex_state = 0, .external_lex_state = 1}, + [22519] = {.lex_state = 0, .external_lex_state = 1}, + [22520] = {.lex_state = 0, .external_lex_state = 1}, + [22521] = {.lex_state = 0, .external_lex_state = 1}, + [22522] = {.lex_state = 0, .external_lex_state = 1}, + [22523] = {.lex_state = 0, .external_lex_state = 1}, + [22524] = {.lex_state = 0, .external_lex_state = 1}, + [22525] = {.lex_state = 0, .external_lex_state = 1}, + [22526] = {.lex_state = 0, .external_lex_state = 1}, + [22527] = {.lex_state = 0, .external_lex_state = 1}, + [22528] = {.lex_state = 0, .external_lex_state = 1}, + [22529] = {.lex_state = 0, .external_lex_state = 1}, + [22530] = {.lex_state = 0, .external_lex_state = 1}, + [22531] = {.lex_state = 0, .external_lex_state = 1}, + [22532] = {.lex_state = 0, .external_lex_state = 1}, + [22533] = {.lex_state = 0, .external_lex_state = 1}, + [22534] = {.lex_state = 0, .external_lex_state = 1}, + [22535] = {.lex_state = 0, .external_lex_state = 1}, + [22536] = {.lex_state = 0, .external_lex_state = 1}, + [22537] = {.lex_state = 0, .external_lex_state = 1}, + [22538] = {.lex_state = 0, .external_lex_state = 1}, + [22539] = {.lex_state = 0, .external_lex_state = 1}, + [22540] = {.lex_state = 0, .external_lex_state = 1}, + [22541] = {.lex_state = 0, .external_lex_state = 1}, + [22542] = {.lex_state = 0, .external_lex_state = 1}, + [22543] = {.lex_state = 0, .external_lex_state = 1}, + [22544] = {.lex_state = 0, .external_lex_state = 1}, + [22545] = {.lex_state = 0, .external_lex_state = 1}, + [22546] = {.lex_state = 0, .external_lex_state = 1}, + [22547] = {.lex_state = 0, .external_lex_state = 1}, + [22548] = {.lex_state = 0, .external_lex_state = 1}, + [22549] = {.lex_state = 0, .external_lex_state = 1}, + [22550] = {.lex_state = 0, .external_lex_state = 1}, + [22551] = {.lex_state = 0, .external_lex_state = 1}, + [22552] = {.lex_state = 0, .external_lex_state = 1}, + [22553] = {.lex_state = 122, .external_lex_state = 1}, + [22554] = {.lex_state = 0, .external_lex_state = 1}, + [22555] = {.lex_state = 0, .external_lex_state = 1}, + [22556] = {.lex_state = 0, .external_lex_state = 1}, + [22557] = {.lex_state = 0, .external_lex_state = 1}, + [22558] = {.lex_state = 0, .external_lex_state = 1}, + [22559] = {.lex_state = 0, .external_lex_state = 1}, + [22560] = {.lex_state = 0, .external_lex_state = 1}, + [22561] = {.lex_state = 0, .external_lex_state = 1}, + [22562] = {.lex_state = 0, .external_lex_state = 1}, + [22563] = {.lex_state = 0, .external_lex_state = 1}, + [22564] = {.lex_state = 0, .external_lex_state = 1}, + [22565] = {.lex_state = 0, .external_lex_state = 1}, + [22566] = {.lex_state = 122, .external_lex_state = 1}, + [22567] = {.lex_state = 0, .external_lex_state = 1}, + [22568] = {.lex_state = 0, .external_lex_state = 1}, + [22569] = {.lex_state = 0, .external_lex_state = 1}, + [22570] = {.lex_state = 132, .external_lex_state = 1}, + [22571] = {.lex_state = 0, .external_lex_state = 1}, + [22572] = {.lex_state = 0, .external_lex_state = 1}, + [22573] = {.lex_state = 0, .external_lex_state = 1}, + [22574] = {.lex_state = 0, .external_lex_state = 1}, + [22575] = {.lex_state = 0, .external_lex_state = 1}, + [22576] = {.lex_state = 0, .external_lex_state = 1}, + [22577] = {.lex_state = 0, .external_lex_state = 1}, + [22578] = {.lex_state = 0, .external_lex_state = 1}, + [22579] = {.lex_state = 0, .external_lex_state = 1}, + [22580] = {.lex_state = 0, .external_lex_state = 1}, + [22581] = {.lex_state = 0, .external_lex_state = 1}, + [22582] = {.lex_state = 0, .external_lex_state = 1}, + [22583] = {.lex_state = 0, .external_lex_state = 1}, + [22584] = {.lex_state = 0, .external_lex_state = 1}, + [22585] = {.lex_state = 0, .external_lex_state = 1}, + [22586] = {.lex_state = 0, .external_lex_state = 1}, + [22587] = {.lex_state = 0, .external_lex_state = 1}, + [22588] = {.lex_state = 0, .external_lex_state = 1}, + [22589] = {.lex_state = 0, .external_lex_state = 1}, + [22590] = {.lex_state = 0, .external_lex_state = 1}, + [22591] = {.lex_state = 0, .external_lex_state = 1}, + [22592] = {.lex_state = 0, .external_lex_state = 1}, + [22593] = {.lex_state = 0, .external_lex_state = 1}, + [22594] = {.lex_state = 0, .external_lex_state = 1}, + [22595] = {.lex_state = 0, .external_lex_state = 1}, + [22596] = {.lex_state = 0, .external_lex_state = 1}, + [22597] = {.lex_state = 0, .external_lex_state = 1}, + [22598] = {.lex_state = 0, .external_lex_state = 1}, + [22599] = {.lex_state = 0, .external_lex_state = 1}, + [22600] = {.lex_state = 0, .external_lex_state = 1}, + [22601] = {.lex_state = 0, .external_lex_state = 1}, + [22602] = {.lex_state = 0, .external_lex_state = 1}, + [22603] = {.lex_state = 0, .external_lex_state = 1}, + [22604] = {.lex_state = 0, .external_lex_state = 1}, + [22605] = {.lex_state = 0, .external_lex_state = 1}, + [22606] = {.lex_state = 0, .external_lex_state = 1}, + [22607] = {.lex_state = 0, .external_lex_state = 1}, + [22608] = {.lex_state = 0, .external_lex_state = 1}, + [22609] = {.lex_state = 0, .external_lex_state = 1}, + [22610] = {.lex_state = 0, .external_lex_state = 1}, + [22611] = {.lex_state = 0, .external_lex_state = 1}, + [22612] = {.lex_state = 0, .external_lex_state = 1}, + [22613] = {.lex_state = 0, .external_lex_state = 1}, + [22614] = {.lex_state = 0, .external_lex_state = 1}, + [22615] = {.lex_state = 0, .external_lex_state = 1}, + [22616] = {.lex_state = 0, .external_lex_state = 1}, + [22617] = {.lex_state = 0, .external_lex_state = 1}, + [22618] = {.lex_state = 0, .external_lex_state = 1}, + [22619] = {.lex_state = 0, .external_lex_state = 1}, + [22620] = {.lex_state = 0, .external_lex_state = 1}, + [22621] = {.lex_state = 132, .external_lex_state = 1}, + [22622] = {.lex_state = 0, .external_lex_state = 1}, + [22623] = {.lex_state = 0, .external_lex_state = 1}, + [22624] = {.lex_state = 0, .external_lex_state = 1}, + [22625] = {.lex_state = 0, .external_lex_state = 1}, + [22626] = {.lex_state = 0, .external_lex_state = 1}, + [22627] = {.lex_state = 0, .external_lex_state = 1}, + [22628] = {.lex_state = 0, .external_lex_state = 1}, + [22629] = {.lex_state = 0, .external_lex_state = 1}, + [22630] = {.lex_state = 0, .external_lex_state = 1}, + [22631] = {.lex_state = 0, .external_lex_state = 1}, + [22632] = {.lex_state = 0, .external_lex_state = 1}, + [22633] = {.lex_state = 0, .external_lex_state = 1}, + [22634] = {.lex_state = 0, .external_lex_state = 1}, + [22635] = {.lex_state = 0, .external_lex_state = 1}, + [22636] = {.lex_state = 0, .external_lex_state = 1}, + [22637] = {.lex_state = 0, .external_lex_state = 1}, + [22638] = {.lex_state = 0, .external_lex_state = 1}, + [22639] = {.lex_state = 0, .external_lex_state = 1}, + [22640] = {.lex_state = 0, .external_lex_state = 1}, + [22641] = {.lex_state = 0, .external_lex_state = 1}, + [22642] = {.lex_state = 0, .external_lex_state = 1}, + [22643] = {.lex_state = 0, .external_lex_state = 1}, + [22644] = {.lex_state = 0, .external_lex_state = 1}, + [22645] = {.lex_state = 0, .external_lex_state = 1}, + [22646] = {.lex_state = 0, .external_lex_state = 1}, + [22647] = {.lex_state = 0, .external_lex_state = 1}, + [22648] = {.lex_state = 0, .external_lex_state = 1}, + [22649] = {.lex_state = 0, .external_lex_state = 1}, + [22650] = {.lex_state = 0, .external_lex_state = 1}, + [22651] = {.lex_state = 0, .external_lex_state = 1}, + [22652] = {.lex_state = 0, .external_lex_state = 1}, + [22653] = {.lex_state = 0, .external_lex_state = 1}, + [22654] = {.lex_state = 0, .external_lex_state = 1}, + [22655] = {.lex_state = 0, .external_lex_state = 1}, + [22656] = {.lex_state = 0, .external_lex_state = 1}, + [22657] = {.lex_state = 0, .external_lex_state = 1}, + [22658] = {.lex_state = 0, .external_lex_state = 1}, + [22659] = {.lex_state = 0, .external_lex_state = 1}, + [22660] = {.lex_state = 0, .external_lex_state = 1}, + [22661] = {.lex_state = 0, .external_lex_state = 1}, + [22662] = {.lex_state = 0, .external_lex_state = 1}, + [22663] = {.lex_state = 0, .external_lex_state = 1}, + [22664] = {.lex_state = 0, .external_lex_state = 1}, + [22665] = {.lex_state = 0, .external_lex_state = 1}, + [22666] = {.lex_state = 0, .external_lex_state = 1}, + [22667] = {.lex_state = 0, .external_lex_state = 1}, + [22668] = {.lex_state = 0, .external_lex_state = 1}, + [22669] = {.lex_state = 0, .external_lex_state = 1}, + [22670] = {.lex_state = 0, .external_lex_state = 1}, + [22671] = {.lex_state = 0, .external_lex_state = 1}, + [22672] = {.lex_state = 0, .external_lex_state = 1}, + [22673] = {.lex_state = 0, .external_lex_state = 1}, + [22674] = {.lex_state = 0, .external_lex_state = 1}, + [22675] = {.lex_state = 0, .external_lex_state = 1}, + [22676] = {.lex_state = 0, .external_lex_state = 1}, + [22677] = {.lex_state = 0, .external_lex_state = 1}, + [22678] = {.lex_state = 0, .external_lex_state = 1}, + [22679] = {.lex_state = 0, .external_lex_state = 1}, + [22680] = {.lex_state = 0, .external_lex_state = 1}, + [22681] = {.lex_state = 0, .external_lex_state = 1}, + [22682] = {.lex_state = 0, .external_lex_state = 1}, + [22683] = {.lex_state = 0, .external_lex_state = 1}, + [22684] = {.lex_state = 0, .external_lex_state = 1}, + [22685] = {.lex_state = 0, .external_lex_state = 1}, + [22686] = {.lex_state = 0, .external_lex_state = 1}, + [22687] = {.lex_state = 0, .external_lex_state = 1}, + [22688] = {.lex_state = 0, .external_lex_state = 1}, + [22689] = {.lex_state = 0, .external_lex_state = 1}, + [22690] = {.lex_state = 0, .external_lex_state = 1}, + [22691] = {.lex_state = 0, .external_lex_state = 1}, + [22692] = {.lex_state = 0, .external_lex_state = 1}, + [22693] = {.lex_state = 0, .external_lex_state = 1}, + [22694] = {.lex_state = 0, .external_lex_state = 1}, + [22695] = {.lex_state = 0, .external_lex_state = 1}, + [22696] = {.lex_state = 0, .external_lex_state = 1}, + [22697] = {.lex_state = 0, .external_lex_state = 1}, + [22698] = {.lex_state = 0, .external_lex_state = 1}, + [22699] = {.lex_state = 0, .external_lex_state = 1}, + [22700] = {.lex_state = 0, .external_lex_state = 1}, + [22701] = {.lex_state = 0, .external_lex_state = 1}, + [22702] = {.lex_state = 0, .external_lex_state = 1}, + [22703] = {.lex_state = 0, .external_lex_state = 1}, + [22704] = {.lex_state = 0, .external_lex_state = 1}, + [22705] = {.lex_state = 0, .external_lex_state = 1}, + [22706] = {.lex_state = 0, .external_lex_state = 1}, + [22707] = {.lex_state = 0, .external_lex_state = 1}, + [22708] = {.lex_state = 0, .external_lex_state = 1}, + [22709] = {.lex_state = 0, .external_lex_state = 1}, + [22710] = {.lex_state = 0, .external_lex_state = 1}, + [22711] = {.lex_state = 0, .external_lex_state = 1}, + [22712] = {.lex_state = 0, .external_lex_state = 1}, + [22713] = {.lex_state = 0, .external_lex_state = 1}, + [22714] = {.lex_state = 0, .external_lex_state = 1}, + [22715] = {.lex_state = 0, .external_lex_state = 1}, + [22716] = {.lex_state = 0, .external_lex_state = 1}, + [22717] = {.lex_state = 0, .external_lex_state = 1}, + [22718] = {.lex_state = 0, .external_lex_state = 1}, + [22719] = {.lex_state = 0, .external_lex_state = 1}, + [22720] = {.lex_state = 0, .external_lex_state = 1}, + [22721] = {.lex_state = 0, .external_lex_state = 1}, + [22722] = {.lex_state = 0, .external_lex_state = 1}, + [22723] = {.lex_state = 0, .external_lex_state = 1}, + [22724] = {.lex_state = 0, .external_lex_state = 1}, + [22725] = {.lex_state = 0, .external_lex_state = 1}, + [22726] = {.lex_state = 0, .external_lex_state = 1}, + [22727] = {.lex_state = 0, .external_lex_state = 1}, + [22728] = {.lex_state = 0, .external_lex_state = 1}, + [22729] = {.lex_state = 0, .external_lex_state = 1}, + [22730] = {.lex_state = 0, .external_lex_state = 1}, + [22731] = {.lex_state = 0, .external_lex_state = 1}, + [22732] = {.lex_state = 0, .external_lex_state = 1}, + [22733] = {.lex_state = 0, .external_lex_state = 1}, + [22734] = {.lex_state = 0, .external_lex_state = 1}, + [22735] = {.lex_state = 132, .external_lex_state = 1}, + [22736] = {.lex_state = 0, .external_lex_state = 1}, + [22737] = {.lex_state = 0, .external_lex_state = 1}, + [22738] = {.lex_state = 0, .external_lex_state = 1}, + [22739] = {.lex_state = 0, .external_lex_state = 1}, + [22740] = {.lex_state = 0, .external_lex_state = 1}, + [22741] = {.lex_state = 0, .external_lex_state = 1}, + [22742] = {.lex_state = 122, .external_lex_state = 1}, + [22743] = {.lex_state = 0, .external_lex_state = 1}, + [22744] = {.lex_state = 0, .external_lex_state = 1}, + [22745] = {.lex_state = 0, .external_lex_state = 1}, + [22746] = {.lex_state = 0, .external_lex_state = 1}, + [22747] = {.lex_state = 0, .external_lex_state = 1}, + [22748] = {.lex_state = 0, .external_lex_state = 1}, + [22749] = {.lex_state = 0, .external_lex_state = 1}, + [22750] = {.lex_state = 0, .external_lex_state = 1}, + [22751] = {.lex_state = 0, .external_lex_state = 1}, + [22752] = {.lex_state = 0, .external_lex_state = 1}, + [22753] = {.lex_state = 0, .external_lex_state = 1}, + [22754] = {.lex_state = 0, .external_lex_state = 1}, + [22755] = {.lex_state = 0, .external_lex_state = 1}, + [22756] = {.lex_state = 0, .external_lex_state = 1}, + [22757] = {.lex_state = 0, .external_lex_state = 1}, + [22758] = {.lex_state = 0, .external_lex_state = 1}, + [22759] = {.lex_state = 0, .external_lex_state = 1}, + [22760] = {.lex_state = 0, .external_lex_state = 1}, + [22761] = {.lex_state = 0, .external_lex_state = 1}, + [22762] = {.lex_state = 0, .external_lex_state = 1}, + [22763] = {.lex_state = 125, .external_lex_state = 1}, + [22764] = {.lex_state = 0, .external_lex_state = 1}, + [22765] = {.lex_state = 0, .external_lex_state = 1}, + [22766] = {.lex_state = 0, .external_lex_state = 1}, + [22767] = {.lex_state = 0, .external_lex_state = 1}, + [22768] = {.lex_state = 0, .external_lex_state = 1}, + [22769] = {.lex_state = 0, .external_lex_state = 1}, + [22770] = {.lex_state = 0, .external_lex_state = 1}, + [22771] = {.lex_state = 0, .external_lex_state = 1}, + [22772] = {.lex_state = 0, .external_lex_state = 1}, + [22773] = {.lex_state = 0, .external_lex_state = 1}, + [22774] = {.lex_state = 0, .external_lex_state = 1}, + [22775] = {.lex_state = 0, .external_lex_state = 1}, + [22776] = {.lex_state = 0, .external_lex_state = 1}, + [22777] = {.lex_state = 0, .external_lex_state = 1}, + [22778] = {.lex_state = 0, .external_lex_state = 1}, + [22779] = {.lex_state = 0, .external_lex_state = 1}, + [22780] = {.lex_state = 0, .external_lex_state = 1}, + [22781] = {.lex_state = 0, .external_lex_state = 1}, + [22782] = {.lex_state = 0, .external_lex_state = 1}, + [22783] = {.lex_state = 0, .external_lex_state = 1}, + [22784] = {.lex_state = 0, .external_lex_state = 1}, + [22785] = {.lex_state = 0, .external_lex_state = 1}, + [22786] = {.lex_state = 0, .external_lex_state = 1}, + [22787] = {.lex_state = 0, .external_lex_state = 1}, + [22788] = {.lex_state = 0, .external_lex_state = 1}, + [22789] = {.lex_state = 0, .external_lex_state = 1}, + [22790] = {.lex_state = 0, .external_lex_state = 1}, + [22791] = {.lex_state = 0, .external_lex_state = 1}, + [22792] = {.lex_state = 0, .external_lex_state = 1}, + [22793] = {.lex_state = 0, .external_lex_state = 1}, + [22794] = {.lex_state = 0, .external_lex_state = 1}, + [22795] = {.lex_state = 0, .external_lex_state = 1}, + [22796] = {.lex_state = 0, .external_lex_state = 1}, + [22797] = {.lex_state = 0, .external_lex_state = 1}, + [22798] = {.lex_state = 0, .external_lex_state = 1}, + [22799] = {.lex_state = 0, .external_lex_state = 1}, + [22800] = {.lex_state = 0, .external_lex_state = 1}, + [22801] = {.lex_state = 0, .external_lex_state = 1}, + [22802] = {.lex_state = 0, .external_lex_state = 1}, + [22803] = {.lex_state = 0, .external_lex_state = 1}, + [22804] = {.lex_state = 0, .external_lex_state = 1}, + [22805] = {.lex_state = 0, .external_lex_state = 1}, + [22806] = {.lex_state = 0, .external_lex_state = 1}, + [22807] = {.lex_state = 0, .external_lex_state = 1}, + [22808] = {.lex_state = 0, .external_lex_state = 1}, + [22809] = {.lex_state = 0, .external_lex_state = 1}, + [22810] = {.lex_state = 0, .external_lex_state = 1}, + [22811] = {.lex_state = 0, .external_lex_state = 1}, + [22812] = {.lex_state = 0, .external_lex_state = 1}, + [22813] = {.lex_state = 0, .external_lex_state = 1}, + [22814] = {.lex_state = 0, .external_lex_state = 1}, + [22815] = {.lex_state = 0, .external_lex_state = 1}, + [22816] = {.lex_state = 0, .external_lex_state = 1}, + [22817] = {.lex_state = 0, .external_lex_state = 1}, + [22818] = {.lex_state = 0, .external_lex_state = 1}, + [22819] = {.lex_state = 0, .external_lex_state = 1}, + [22820] = {.lex_state = 0, .external_lex_state = 1}, + [22821] = {.lex_state = 0, .external_lex_state = 1}, + [22822] = {.lex_state = 0, .external_lex_state = 1}, + [22823] = {.lex_state = 0, .external_lex_state = 1}, + [22824] = {.lex_state = 0, .external_lex_state = 1}, + [22825] = {.lex_state = 0, .external_lex_state = 1}, + [22826] = {.lex_state = 0, .external_lex_state = 1}, + [22827] = {.lex_state = 0, .external_lex_state = 1}, + [22828] = {.lex_state = 0, .external_lex_state = 1}, + [22829] = {.lex_state = 0, .external_lex_state = 1}, + [22830] = {.lex_state = 0, .external_lex_state = 1}, + [22831] = {.lex_state = 0, .external_lex_state = 1}, + [22832] = {.lex_state = 0, .external_lex_state = 1}, + [22833] = {.lex_state = 0, .external_lex_state = 1}, + [22834] = {.lex_state = 0, .external_lex_state = 1}, + [22835] = {.lex_state = 0, .external_lex_state = 1}, + [22836] = {.lex_state = 0, .external_lex_state = 1}, + [22837] = {.lex_state = 0, .external_lex_state = 1}, + [22838] = {.lex_state = 0, .external_lex_state = 1}, + [22839] = {.lex_state = 0, .external_lex_state = 1}, + [22840] = {.lex_state = 0, .external_lex_state = 1}, + [22841] = {.lex_state = 0, .external_lex_state = 1}, + [22842] = {.lex_state = 0, .external_lex_state = 1}, + [22843] = {.lex_state = 0, .external_lex_state = 1}, + [22844] = {.lex_state = 0, .external_lex_state = 1}, + [22845] = {.lex_state = 0, .external_lex_state = 1}, + [22846] = {.lex_state = 0, .external_lex_state = 1}, + [22847] = {.lex_state = 0, .external_lex_state = 1}, + [22848] = {.lex_state = 0, .external_lex_state = 1}, + [22849] = {.lex_state = 0, .external_lex_state = 1}, + [22850] = {.lex_state = 0, .external_lex_state = 1}, + [22851] = {.lex_state = 0, .external_lex_state = 1}, + [22852] = {.lex_state = 0, .external_lex_state = 1}, + [22853] = {.lex_state = 0, .external_lex_state = 1}, + [22854] = {.lex_state = 0, .external_lex_state = 1}, + [22855] = {.lex_state = 0, .external_lex_state = 1}, + [22856] = {.lex_state = 0, .external_lex_state = 1}, + [22857] = {.lex_state = 0, .external_lex_state = 1}, + [22858] = {.lex_state = 0, .external_lex_state = 1}, + [22859] = {.lex_state = 0, .external_lex_state = 1}, + [22860] = {.lex_state = 0, .external_lex_state = 1}, + [22861] = {.lex_state = 0, .external_lex_state = 1}, + [22862] = {.lex_state = 0, .external_lex_state = 1}, + [22863] = {.lex_state = 0, .external_lex_state = 1}, + [22864] = {.lex_state = 0, .external_lex_state = 1}, + [22865] = {.lex_state = 0, .external_lex_state = 1}, + [22866] = {.lex_state = 0, .external_lex_state = 1}, + [22867] = {.lex_state = 0, .external_lex_state = 1}, + [22868] = {.lex_state = 0, .external_lex_state = 1}, + [22869] = {.lex_state = 0, .external_lex_state = 1}, + [22870] = {.lex_state = 0, .external_lex_state = 1}, + [22871] = {.lex_state = 125, .external_lex_state = 1}, + [22872] = {.lex_state = 0, .external_lex_state = 1}, + [22873] = {.lex_state = 0, .external_lex_state = 1}, + [22874] = {.lex_state = 0, .external_lex_state = 1}, + [22875] = {.lex_state = 0, .external_lex_state = 1}, + [22876] = {.lex_state = 0, .external_lex_state = 1}, + [22877] = {.lex_state = 0, .external_lex_state = 1}, + [22878] = {.lex_state = 0, .external_lex_state = 1}, + [22879] = {.lex_state = 0, .external_lex_state = 1}, + [22880] = {.lex_state = 0, .external_lex_state = 1}, + [22881] = {.lex_state = 0, .external_lex_state = 1}, + [22882] = {.lex_state = 0, .external_lex_state = 1}, + [22883] = {.lex_state = 0, .external_lex_state = 1}, + [22884] = {.lex_state = 0, .external_lex_state = 1}, + [22885] = {.lex_state = 0, .external_lex_state = 1}, + [22886] = {.lex_state = 0, .external_lex_state = 1}, + [22887] = {.lex_state = 0, .external_lex_state = 1}, + [22888] = {.lex_state = 0, .external_lex_state = 1}, + [22889] = {.lex_state = 0, .external_lex_state = 1}, + [22890] = {.lex_state = 0, .external_lex_state = 1}, + [22891] = {.lex_state = 0, .external_lex_state = 1}, + [22892] = {.lex_state = 0, .external_lex_state = 1}, + [22893] = {.lex_state = 0, .external_lex_state = 1}, + [22894] = {.lex_state = 0, .external_lex_state = 1}, + [22895] = {.lex_state = 0, .external_lex_state = 1}, + [22896] = {.lex_state = 0, .external_lex_state = 1}, + [22897] = {.lex_state = 0, .external_lex_state = 1}, + [22898] = {.lex_state = 0, .external_lex_state = 1}, + [22899] = {.lex_state = 0, .external_lex_state = 1}, + [22900] = {.lex_state = 0, .external_lex_state = 1}, + [22901] = {.lex_state = 0, .external_lex_state = 1}, + [22902] = {.lex_state = 0, .external_lex_state = 1}, + [22903] = {.lex_state = 0, .external_lex_state = 1}, + [22904] = {.lex_state = 0, .external_lex_state = 1}, + [22905] = {.lex_state = 0, .external_lex_state = 1}, + [22906] = {.lex_state = 0, .external_lex_state = 1}, + [22907] = {.lex_state = 0, .external_lex_state = 1}, + [22908] = {.lex_state = 0, .external_lex_state = 1}, + [22909] = {.lex_state = 0, .external_lex_state = 1}, + [22910] = {.lex_state = 0, .external_lex_state = 1}, + [22911] = {.lex_state = 0, .external_lex_state = 1}, + [22912] = {.lex_state = 0, .external_lex_state = 1}, + [22913] = {.lex_state = 0, .external_lex_state = 1}, + [22914] = {.lex_state = 0, .external_lex_state = 1}, + [22915] = {.lex_state = 0, .external_lex_state = 1}, + [22916] = {.lex_state = 0, .external_lex_state = 1}, + [22917] = {.lex_state = 0, .external_lex_state = 1}, + [22918] = {.lex_state = 0, .external_lex_state = 1}, + [22919] = {.lex_state = 0, .external_lex_state = 1}, + [22920] = {.lex_state = 0, .external_lex_state = 1}, + [22921] = {.lex_state = 0, .external_lex_state = 1}, + [22922] = {.lex_state = 0, .external_lex_state = 1}, + [22923] = {.lex_state = 0, .external_lex_state = 1}, + [22924] = {.lex_state = 0, .external_lex_state = 1}, + [22925] = {.lex_state = 0, .external_lex_state = 1}, + [22926] = {.lex_state = 0, .external_lex_state = 1}, + [22927] = {.lex_state = 0, .external_lex_state = 1}, + [22928] = {.lex_state = 0, .external_lex_state = 1}, + [22929] = {.lex_state = 0, .external_lex_state = 1}, + [22930] = {.lex_state = 0, .external_lex_state = 1}, + [22931] = {.lex_state = 0, .external_lex_state = 1}, + [22932] = {.lex_state = 0, .external_lex_state = 1}, + [22933] = {.lex_state = 0, .external_lex_state = 1}, + [22934] = {.lex_state = 0, .external_lex_state = 1}, + [22935] = {.lex_state = 0, .external_lex_state = 1}, + [22936] = {.lex_state = 0, .external_lex_state = 1}, + [22937] = {.lex_state = 0, .external_lex_state = 1}, + [22938] = {.lex_state = 0, .external_lex_state = 1}, + [22939] = {.lex_state = 0, .external_lex_state = 1}, + [22940] = {.lex_state = 125, .external_lex_state = 1}, + [22941] = {.lex_state = 0, .external_lex_state = 1}, + [22942] = {.lex_state = 0, .external_lex_state = 1}, + [22943] = {.lex_state = 0, .external_lex_state = 1}, + [22944] = {.lex_state = 0, .external_lex_state = 1}, + [22945] = {.lex_state = 0, .external_lex_state = 1}, + [22946] = {.lex_state = 0, .external_lex_state = 1}, + [22947] = {.lex_state = 0, .external_lex_state = 1}, + [22948] = {.lex_state = 0, .external_lex_state = 1}, + [22949] = {.lex_state = 0, .external_lex_state = 1}, + [22950] = {.lex_state = 0, .external_lex_state = 1}, + [22951] = {.lex_state = 0, .external_lex_state = 1}, + [22952] = {.lex_state = 0, .external_lex_state = 1}, + [22953] = {.lex_state = 0, .external_lex_state = 1}, + [22954] = {.lex_state = 0, .external_lex_state = 1}, + [22955] = {.lex_state = 0, .external_lex_state = 1}, + [22956] = {.lex_state = 0, .external_lex_state = 1}, + [22957] = {.lex_state = 0, .external_lex_state = 1}, + [22958] = {.lex_state = 0, .external_lex_state = 1}, + [22959] = {.lex_state = 0, .external_lex_state = 1}, + [22960] = {.lex_state = 0, .external_lex_state = 1}, + [22961] = {.lex_state = 0, .external_lex_state = 1}, + [22962] = {.lex_state = 0, .external_lex_state = 1}, + [22963] = {.lex_state = 0, .external_lex_state = 1}, + [22964] = {.lex_state = 0, .external_lex_state = 1}, + [22965] = {.lex_state = 0, .external_lex_state = 1}, + [22966] = {.lex_state = 0, .external_lex_state = 1}, + [22967] = {.lex_state = 0, .external_lex_state = 1}, + [22968] = {.lex_state = 0, .external_lex_state = 1}, + [22969] = {.lex_state = 242, .external_lex_state = 1}, + [22970] = {.lex_state = 0, .external_lex_state = 1}, + [22971] = {.lex_state = 0, .external_lex_state = 1}, + [22972] = {.lex_state = 0, .external_lex_state = 1}, + [22973] = {.lex_state = 0, .external_lex_state = 1}, + [22974] = {.lex_state = 0, .external_lex_state = 1}, + [22975] = {.lex_state = 0, .external_lex_state = 1}, + [22976] = {.lex_state = 0, .external_lex_state = 1}, + [22977] = {.lex_state = 0, .external_lex_state = 1}, + [22978] = {.lex_state = 0, .external_lex_state = 1}, + [22979] = {.lex_state = 0, .external_lex_state = 1}, + [22980] = {.lex_state = 0, .external_lex_state = 1}, + [22981] = {.lex_state = 0, .external_lex_state = 1}, + [22982] = {.lex_state = 0, .external_lex_state = 1}, + [22983] = {.lex_state = 0, .external_lex_state = 1}, + [22984] = {.lex_state = 0, .external_lex_state = 1}, + [22985] = {.lex_state = 0, .external_lex_state = 1}, + [22986] = {.lex_state = 0, .external_lex_state = 1}, + [22987] = {.lex_state = 0, .external_lex_state = 1}, + [22988] = {.lex_state = 0, .external_lex_state = 1}, + [22989] = {.lex_state = 0, .external_lex_state = 1}, + [22990] = {.lex_state = 0, .external_lex_state = 1}, + [22991] = {.lex_state = 0, .external_lex_state = 1}, + [22992] = {.lex_state = 0, .external_lex_state = 1}, + [22993] = {.lex_state = 0, .external_lex_state = 1}, + [22994] = {.lex_state = 0, .external_lex_state = 1}, + [22995] = {.lex_state = 0, .external_lex_state = 1}, + [22996] = {.lex_state = 0, .external_lex_state = 1}, + [22997] = {.lex_state = 0, .external_lex_state = 1}, + [22998] = {.lex_state = 0, .external_lex_state = 1}, + [22999] = {.lex_state = 0, .external_lex_state = 1}, + [23000] = {.lex_state = 0, .external_lex_state = 1}, + [23001] = {.lex_state = 0, .external_lex_state = 1}, + [23002] = {.lex_state = 0, .external_lex_state = 1}, + [23003] = {.lex_state = 0, .external_lex_state = 1}, + [23004] = {.lex_state = 0, .external_lex_state = 1}, + [23005] = {.lex_state = 0, .external_lex_state = 1}, + [23006] = {.lex_state = 0, .external_lex_state = 1}, + [23007] = {.lex_state = 0, .external_lex_state = 1}, + [23008] = {.lex_state = 0, .external_lex_state = 1}, + [23009] = {.lex_state = 0, .external_lex_state = 1}, + [23010] = {.lex_state = 0, .external_lex_state = 1}, + [23011] = {.lex_state = 0, .external_lex_state = 1}, + [23012] = {.lex_state = 0, .external_lex_state = 1}, + [23013] = {.lex_state = 0, .external_lex_state = 1}, + [23014] = {.lex_state = 0, .external_lex_state = 1}, + [23015] = {.lex_state = 0, .external_lex_state = 1}, + [23016] = {.lex_state = 0, .external_lex_state = 1}, + [23017] = {.lex_state = 0, .external_lex_state = 1}, + [23018] = {.lex_state = 0, .external_lex_state = 1}, + [23019] = {.lex_state = 0, .external_lex_state = 1}, + [23020] = {.lex_state = 0, .external_lex_state = 1}, + [23021] = {.lex_state = 0, .external_lex_state = 1}, + [23022] = {.lex_state = 0, .external_lex_state = 1}, + [23023] = {.lex_state = 0, .external_lex_state = 1}, + [23024] = {.lex_state = 0, .external_lex_state = 1}, + [23025] = {.lex_state = 0, .external_lex_state = 1}, + [23026] = {.lex_state = 0, .external_lex_state = 1}, + [23027] = {.lex_state = 0, .external_lex_state = 1}, + [23028] = {.lex_state = 0, .external_lex_state = 1}, + [23029] = {.lex_state = 0, .external_lex_state = 1}, + [23030] = {.lex_state = 0, .external_lex_state = 1}, + [23031] = {.lex_state = 0, .external_lex_state = 1}, + [23032] = {.lex_state = 0, .external_lex_state = 1}, + [23033] = {.lex_state = 0, .external_lex_state = 1}, + [23034] = {.lex_state = 0, .external_lex_state = 1}, + [23035] = {.lex_state = 0, .external_lex_state = 1}, + [23036] = {.lex_state = 0, .external_lex_state = 1}, + [23037] = {.lex_state = 0, .external_lex_state = 1}, + [23038] = {.lex_state = 0, .external_lex_state = 1}, + [23039] = {.lex_state = 0, .external_lex_state = 1}, + [23040] = {.lex_state = 0, .external_lex_state = 1}, + [23041] = {.lex_state = 0, .external_lex_state = 1}, + [23042] = {.lex_state = 0, .external_lex_state = 1}, + [23043] = {.lex_state = 0, .external_lex_state = 1}, + [23044] = {.lex_state = 0, .external_lex_state = 1}, + [23045] = {.lex_state = 125, .external_lex_state = 1}, + [23046] = {.lex_state = 0, .external_lex_state = 1}, + [23047] = {.lex_state = 0, .external_lex_state = 1}, + [23048] = {.lex_state = 0, .external_lex_state = 1}, + [23049] = {.lex_state = 0, .external_lex_state = 1}, + [23050] = {.lex_state = 0, .external_lex_state = 1}, + [23051] = {.lex_state = 0, .external_lex_state = 1}, + [23052] = {.lex_state = 0, .external_lex_state = 1}, + [23053] = {.lex_state = 0, .external_lex_state = 1}, + [23054] = {.lex_state = 0, .external_lex_state = 1}, + [23055] = {.lex_state = 0, .external_lex_state = 1}, + [23056] = {.lex_state = 0, .external_lex_state = 1}, + [23057] = {.lex_state = 0, .external_lex_state = 1}, + [23058] = {.lex_state = 0, .external_lex_state = 1}, + [23059] = {.lex_state = 0, .external_lex_state = 1}, + [23060] = {.lex_state = 0, .external_lex_state = 1}, + [23061] = {.lex_state = 0, .external_lex_state = 1}, + [23062] = {.lex_state = 0, .external_lex_state = 1}, + [23063] = {.lex_state = 0, .external_lex_state = 1}, + [23064] = {.lex_state = 122, .external_lex_state = 1}, + [23065] = {.lex_state = 0, .external_lex_state = 1}, + [23066] = {.lex_state = 0, .external_lex_state = 1}, + [23067] = {.lex_state = 0, .external_lex_state = 1}, + [23068] = {.lex_state = 0, .external_lex_state = 1}, + [23069] = {.lex_state = 0, .external_lex_state = 1}, + [23070] = {.lex_state = 0, .external_lex_state = 1}, + [23071] = {.lex_state = 0, .external_lex_state = 1}, + [23072] = {.lex_state = 0, .external_lex_state = 1}, + [23073] = {.lex_state = 0, .external_lex_state = 1}, + [23074] = {.lex_state = 0, .external_lex_state = 1}, + [23075] = {.lex_state = 0, .external_lex_state = 1}, + [23076] = {.lex_state = 0, .external_lex_state = 1}, + [23077] = {.lex_state = 0, .external_lex_state = 1}, + [23078] = {.lex_state = 0, .external_lex_state = 1}, + [23079] = {.lex_state = 0, .external_lex_state = 1}, + [23080] = {.lex_state = 0, .external_lex_state = 1}, + [23081] = {.lex_state = 0, .external_lex_state = 1}, + [23082] = {.lex_state = 0, .external_lex_state = 1}, + [23083] = {.lex_state = 0, .external_lex_state = 1}, + [23084] = {.lex_state = 0, .external_lex_state = 1}, + [23085] = {.lex_state = 0, .external_lex_state = 1}, + [23086] = {.lex_state = 0, .external_lex_state = 1}, + [23087] = {.lex_state = 0, .external_lex_state = 1}, + [23088] = {.lex_state = 0, .external_lex_state = 1}, + [23089] = {.lex_state = 0, .external_lex_state = 1}, + [23090] = {.lex_state = 0, .external_lex_state = 1}, + [23091] = {.lex_state = 0, .external_lex_state = 1}, + [23092] = {.lex_state = 0, .external_lex_state = 1}, + [23093] = {.lex_state = 0, .external_lex_state = 1}, + [23094] = {.lex_state = 0, .external_lex_state = 1}, + [23095] = {.lex_state = 0, .external_lex_state = 1}, + [23096] = {.lex_state = 0, .external_lex_state = 1}, + [23097] = {.lex_state = 0, .external_lex_state = 1}, + [23098] = {.lex_state = 0, .external_lex_state = 1}, + [23099] = {.lex_state = 0, .external_lex_state = 1}, + [23100] = {.lex_state = 0, .external_lex_state = 1}, + [23101] = {.lex_state = 0, .external_lex_state = 1}, + [23102] = {.lex_state = 0, .external_lex_state = 1}, + [23103] = {.lex_state = 0, .external_lex_state = 1}, + [23104] = {.lex_state = 0, .external_lex_state = 1}, + [23105] = {.lex_state = 0, .external_lex_state = 1}, + [23106] = {.lex_state = 0, .external_lex_state = 1}, + [23107] = {.lex_state = 0, .external_lex_state = 1}, + [23108] = {.lex_state = 0, .external_lex_state = 1}, + [23109] = {.lex_state = 0, .external_lex_state = 1}, + [23110] = {.lex_state = 0, .external_lex_state = 1}, + [23111] = {.lex_state = 0, .external_lex_state = 1}, + [23112] = {.lex_state = 0, .external_lex_state = 1}, + [23113] = {.lex_state = 0, .external_lex_state = 1}, + [23114] = {.lex_state = 0, .external_lex_state = 1}, + [23115] = {.lex_state = 0, .external_lex_state = 1}, + [23116] = {.lex_state = 0, .external_lex_state = 1}, + [23117] = {.lex_state = 0, .external_lex_state = 1}, + [23118] = {.lex_state = 0, .external_lex_state = 1}, + [23119] = {.lex_state = 0, .external_lex_state = 1}, + [23120] = {.lex_state = 0, .external_lex_state = 1}, + [23121] = {.lex_state = 0, .external_lex_state = 1}, + [23122] = {.lex_state = 0, .external_lex_state = 1}, + [23123] = {.lex_state = 0, .external_lex_state = 1}, + [23124] = {.lex_state = 0, .external_lex_state = 1}, + [23125] = {.lex_state = 0, .external_lex_state = 1}, + [23126] = {.lex_state = 0, .external_lex_state = 1}, + [23127] = {.lex_state = 0, .external_lex_state = 1}, + [23128] = {.lex_state = 0, .external_lex_state = 1}, + [23129] = {.lex_state = 0, .external_lex_state = 1}, + [23130] = {.lex_state = 0, .external_lex_state = 1}, + [23131] = {.lex_state = 0, .external_lex_state = 1}, + [23132] = {.lex_state = 0, .external_lex_state = 1}, + [23133] = {.lex_state = 0, .external_lex_state = 1}, + [23134] = {.lex_state = 0, .external_lex_state = 1}, + [23135] = {.lex_state = 0, .external_lex_state = 1}, + [23136] = {.lex_state = 0, .external_lex_state = 1}, + [23137] = {.lex_state = 0, .external_lex_state = 1}, + [23138] = {.lex_state = 0, .external_lex_state = 1}, + [23139] = {.lex_state = 0, .external_lex_state = 1}, + [23140] = {.lex_state = 0, .external_lex_state = 1}, + [23141] = {.lex_state = 0, .external_lex_state = 1}, + [23142] = {.lex_state = 0, .external_lex_state = 1}, + [23143] = {.lex_state = 0, .external_lex_state = 1}, + [23144] = {.lex_state = 0, .external_lex_state = 1}, + [23145] = {.lex_state = 0, .external_lex_state = 1}, + [23146] = {.lex_state = 0, .external_lex_state = 1}, + [23147] = {.lex_state = 0, .external_lex_state = 1}, + [23148] = {.lex_state = 0, .external_lex_state = 1}, + [23149] = {.lex_state = 0, .external_lex_state = 1}, + [23150] = {.lex_state = 0, .external_lex_state = 1}, + [23151] = {.lex_state = 0, .external_lex_state = 1}, + [23152] = {.lex_state = 0, .external_lex_state = 1}, + [23153] = {.lex_state = 0, .external_lex_state = 1}, + [23154] = {.lex_state = 0, .external_lex_state = 1}, + [23155] = {.lex_state = 0, .external_lex_state = 1}, + [23156] = {.lex_state = 0, .external_lex_state = 1}, + [23157] = {.lex_state = 0, .external_lex_state = 1}, + [23158] = {.lex_state = 0, .external_lex_state = 1}, + [23159] = {.lex_state = 0, .external_lex_state = 1}, + [23160] = {.lex_state = 0, .external_lex_state = 1}, + [23161] = {.lex_state = 0, .external_lex_state = 1}, + [23162] = {.lex_state = 0, .external_lex_state = 1}, + [23163] = {.lex_state = 0, .external_lex_state = 1}, + [23164] = {.lex_state = 0, .external_lex_state = 1}, + [23165] = {.lex_state = 0, .external_lex_state = 1}, + [23166] = {.lex_state = 0, .external_lex_state = 1}, + [23167] = {.lex_state = 0, .external_lex_state = 1}, + [23168] = {.lex_state = 0, .external_lex_state = 1}, + [23169] = {.lex_state = 0, .external_lex_state = 1}, + [23170] = {.lex_state = 0, .external_lex_state = 1}, + [23171] = {.lex_state = 0, .external_lex_state = 1}, + [23172] = {.lex_state = 0, .external_lex_state = 1}, + [23173] = {.lex_state = 0, .external_lex_state = 1}, + [23174] = {.lex_state = 0, .external_lex_state = 1}, + [23175] = {.lex_state = 0, .external_lex_state = 1}, + [23176] = {.lex_state = 0, .external_lex_state = 1}, + [23177] = {.lex_state = 0, .external_lex_state = 1}, + [23178] = {.lex_state = 0, .external_lex_state = 1}, + [23179] = {.lex_state = 0, .external_lex_state = 1}, + [23180] = {.lex_state = 0, .external_lex_state = 1}, + [23181] = {.lex_state = 0, .external_lex_state = 1}, + [23182] = {.lex_state = 0, .external_lex_state = 1}, + [23183] = {.lex_state = 0, .external_lex_state = 1}, + [23184] = {.lex_state = 0, .external_lex_state = 1}, + [23185] = {.lex_state = 0, .external_lex_state = 1}, + [23186] = {.lex_state = 0, .external_lex_state = 1}, + [23187] = {.lex_state = 0, .external_lex_state = 1}, + [23188] = {.lex_state = 0, .external_lex_state = 1}, + [23189] = {.lex_state = 0, .external_lex_state = 1}, + [23190] = {.lex_state = 0, .external_lex_state = 1}, + [23191] = {.lex_state = 0, .external_lex_state = 1}, + [23192] = {.lex_state = 0, .external_lex_state = 1}, + [23193] = {.lex_state = 0, .external_lex_state = 1}, + [23194] = {.lex_state = 0, .external_lex_state = 1}, + [23195] = {.lex_state = 0, .external_lex_state = 1}, + [23196] = {.lex_state = 0, .external_lex_state = 1}, + [23197] = {.lex_state = 0, .external_lex_state = 1}, + [23198] = {.lex_state = 0, .external_lex_state = 1}, + [23199] = {.lex_state = 0, .external_lex_state = 1}, + [23200] = {.lex_state = 0, .external_lex_state = 1}, + [23201] = {.lex_state = 0, .external_lex_state = 1}, + [23202] = {.lex_state = 0, .external_lex_state = 1}, + [23203] = {.lex_state = 0, .external_lex_state = 1}, + [23204] = {.lex_state = 0, .external_lex_state = 1}, + [23205] = {.lex_state = 0, .external_lex_state = 1}, + [23206] = {.lex_state = 0, .external_lex_state = 1}, + [23207] = {.lex_state = 0, .external_lex_state = 1}, + [23208] = {.lex_state = 0, .external_lex_state = 1}, + [23209] = {.lex_state = 0, .external_lex_state = 1}, + [23210] = {.lex_state = 0, .external_lex_state = 1}, + [23211] = {.lex_state = 0, .external_lex_state = 1}, + [23212] = {.lex_state = 0, .external_lex_state = 1}, + [23213] = {.lex_state = 0, .external_lex_state = 1}, + [23214] = {.lex_state = 0, .external_lex_state = 1}, + [23215] = {.lex_state = 0, .external_lex_state = 1}, + [23216] = {.lex_state = 0, .external_lex_state = 1}, + [23217] = {.lex_state = 0, .external_lex_state = 1}, + [23218] = {.lex_state = 0, .external_lex_state = 1}, + [23219] = {.lex_state = 0, .external_lex_state = 1}, + [23220] = {.lex_state = 0, .external_lex_state = 1}, + [23221] = {.lex_state = 0, .external_lex_state = 1}, + [23222] = {.lex_state = 0, .external_lex_state = 1}, + [23223] = {.lex_state = 0, .external_lex_state = 1}, + [23224] = {.lex_state = 0, .external_lex_state = 1}, + [23225] = {.lex_state = 0, .external_lex_state = 1}, + [23226] = {.lex_state = 0, .external_lex_state = 1}, + [23227] = {.lex_state = 0, .external_lex_state = 1}, + [23228] = {.lex_state = 0, .external_lex_state = 1}, + [23229] = {.lex_state = 0, .external_lex_state = 1}, + [23230] = {.lex_state = 0, .external_lex_state = 1}, + [23231] = {.lex_state = 0, .external_lex_state = 1}, + [23232] = {.lex_state = 0, .external_lex_state = 1}, + [23233] = {.lex_state = 0, .external_lex_state = 1}, + [23234] = {.lex_state = 0, .external_lex_state = 1}, + [23235] = {.lex_state = 0, .external_lex_state = 1}, + [23236] = {.lex_state = 0, .external_lex_state = 1}, + [23237] = {.lex_state = 0, .external_lex_state = 1}, + [23238] = {.lex_state = 0, .external_lex_state = 1}, + [23239] = {.lex_state = 0, .external_lex_state = 1}, + [23240] = {.lex_state = 0, .external_lex_state = 1}, + [23241] = {.lex_state = 0, .external_lex_state = 1}, + [23242] = {.lex_state = 0, .external_lex_state = 1}, + [23243] = {.lex_state = 0, .external_lex_state = 1}, + [23244] = {.lex_state = 0, .external_lex_state = 1}, + [23245] = {.lex_state = 0, .external_lex_state = 1}, + [23246] = {.lex_state = 0, .external_lex_state = 1}, + [23247] = {.lex_state = 0, .external_lex_state = 1}, + [23248] = {.lex_state = 0, .external_lex_state = 1}, + [23249] = {.lex_state = 0, .external_lex_state = 1}, + [23250] = {.lex_state = 0, .external_lex_state = 1}, + [23251] = {.lex_state = 0, .external_lex_state = 1}, + [23252] = {.lex_state = 0, .external_lex_state = 1}, + [23253] = {.lex_state = 0, .external_lex_state = 1}, + [23254] = {.lex_state = 0, .external_lex_state = 1}, + [23255] = {.lex_state = 0, .external_lex_state = 1}, + [23256] = {.lex_state = 0, .external_lex_state = 1}, + [23257] = {.lex_state = 0, .external_lex_state = 1}, + [23258] = {.lex_state = 0, .external_lex_state = 1}, + [23259] = {.lex_state = 0, .external_lex_state = 1}, + [23260] = {.lex_state = 0, .external_lex_state = 1}, + [23261] = {.lex_state = 0, .external_lex_state = 1}, + [23262] = {.lex_state = 0, .external_lex_state = 1}, + [23263] = {.lex_state = 0, .external_lex_state = 1}, + [23264] = {.lex_state = 0, .external_lex_state = 1}, + [23265] = {.lex_state = 0, .external_lex_state = 1}, + [23266] = {.lex_state = 0, .external_lex_state = 1}, + [23267] = {.lex_state = 0, .external_lex_state = 1}, + [23268] = {.lex_state = 0, .external_lex_state = 1}, + [23269] = {.lex_state = 0, .external_lex_state = 1}, + [23270] = {.lex_state = 0, .external_lex_state = 1}, + [23271] = {.lex_state = 0, .external_lex_state = 1}, + [23272] = {.lex_state = 0, .external_lex_state = 1}, + [23273] = {.lex_state = 0, .external_lex_state = 1}, + [23274] = {.lex_state = 0, .external_lex_state = 1}, + [23275] = {.lex_state = 0, .external_lex_state = 1}, + [23276] = {.lex_state = 125, .external_lex_state = 1}, + [23277] = {.lex_state = 0, .external_lex_state = 1}, + [23278] = {.lex_state = 0, .external_lex_state = 1}, + [23279] = {.lex_state = 0, .external_lex_state = 1}, + [23280] = {.lex_state = 0, .external_lex_state = 1}, + [23281] = {.lex_state = 0, .external_lex_state = 1}, + [23282] = {.lex_state = 0, .external_lex_state = 1}, + [23283] = {.lex_state = 0, .external_lex_state = 1}, + [23284] = {.lex_state = 0, .external_lex_state = 1}, + [23285] = {.lex_state = 0, .external_lex_state = 1}, + [23286] = {.lex_state = 0, .external_lex_state = 1}, + [23287] = {.lex_state = 0, .external_lex_state = 1}, + [23288] = {.lex_state = 0, .external_lex_state = 1}, + [23289] = {.lex_state = 0, .external_lex_state = 1}, + [23290] = {.lex_state = 0, .external_lex_state = 1}, + [23291] = {.lex_state = 0, .external_lex_state = 1}, + [23292] = {.lex_state = 0, .external_lex_state = 1}, + [23293] = {.lex_state = 0, .external_lex_state = 1}, + [23294] = {.lex_state = 0, .external_lex_state = 1}, + [23295] = {.lex_state = 0, .external_lex_state = 1}, + [23296] = {.lex_state = 0, .external_lex_state = 1}, + [23297] = {.lex_state = 0, .external_lex_state = 1}, + [23298] = {.lex_state = 0, .external_lex_state = 1}, + [23299] = {.lex_state = 0, .external_lex_state = 1}, + [23300] = {.lex_state = 0, .external_lex_state = 1}, + [23301] = {.lex_state = 0, .external_lex_state = 1}, + [23302] = {.lex_state = 0, .external_lex_state = 1}, + [23303] = {.lex_state = 0, .external_lex_state = 1}, + [23304] = {.lex_state = 0, .external_lex_state = 1}, + [23305] = {.lex_state = 0, .external_lex_state = 1}, + [23306] = {.lex_state = 0, .external_lex_state = 1}, + [23307] = {.lex_state = 0, .external_lex_state = 1}, + [23308] = {.lex_state = 0, .external_lex_state = 1}, + [23309] = {.lex_state = 0, .external_lex_state = 1}, + [23310] = {.lex_state = 0, .external_lex_state = 1}, + [23311] = {.lex_state = 0, .external_lex_state = 1}, + [23312] = {.lex_state = 0, .external_lex_state = 1}, + [23313] = {.lex_state = 0, .external_lex_state = 1}, + [23314] = {.lex_state = 0, .external_lex_state = 1}, + [23315] = {.lex_state = 122, .external_lex_state = 1}, + [23316] = {.lex_state = 0, .external_lex_state = 1}, + [23317] = {.lex_state = 0, .external_lex_state = 1}, + [23318] = {.lex_state = 0, .external_lex_state = 1}, + [23319] = {.lex_state = 0, .external_lex_state = 1}, + [23320] = {.lex_state = 0, .external_lex_state = 1}, + [23321] = {.lex_state = 0, .external_lex_state = 1}, + [23322] = {.lex_state = 0, .external_lex_state = 1}, + [23323] = {.lex_state = 0, .external_lex_state = 1}, + [23324] = {.lex_state = 0, .external_lex_state = 1}, + [23325] = {.lex_state = 0, .external_lex_state = 1}, + [23326] = {.lex_state = 0, .external_lex_state = 1}, + [23327] = {.lex_state = 0, .external_lex_state = 1}, + [23328] = {.lex_state = 0, .external_lex_state = 1}, + [23329] = {.lex_state = 0, .external_lex_state = 1}, + [23330] = {.lex_state = 0, .external_lex_state = 1}, + [23331] = {.lex_state = 0, .external_lex_state = 1}, + [23332] = {.lex_state = 0, .external_lex_state = 1}, + [23333] = {.lex_state = 0, .external_lex_state = 1}, + [23334] = {.lex_state = 0, .external_lex_state = 1}, + [23335] = {.lex_state = 0, .external_lex_state = 1}, + [23336] = {.lex_state = 0, .external_lex_state = 1}, + [23337] = {.lex_state = 0, .external_lex_state = 1}, + [23338] = {.lex_state = 0, .external_lex_state = 1}, + [23339] = {.lex_state = 0, .external_lex_state = 1}, + [23340] = {.lex_state = 0, .external_lex_state = 1}, + [23341] = {.lex_state = 0, .external_lex_state = 1}, + [23342] = {.lex_state = 0, .external_lex_state = 1}, + [23343] = {.lex_state = 0, .external_lex_state = 1}, + [23344] = {.lex_state = 0, .external_lex_state = 1}, + [23345] = {.lex_state = 0, .external_lex_state = 1}, + [23346] = {.lex_state = 0, .external_lex_state = 1}, + [23347] = {.lex_state = 0, .external_lex_state = 1}, + [23348] = {.lex_state = 0, .external_lex_state = 1}, + [23349] = {.lex_state = 0, .external_lex_state = 1}, + [23350] = {.lex_state = 0, .external_lex_state = 1}, + [23351] = {.lex_state = 0, .external_lex_state = 1}, + [23352] = {.lex_state = 0, .external_lex_state = 1}, + [23353] = {.lex_state = 0, .external_lex_state = 1}, + [23354] = {.lex_state = 0, .external_lex_state = 1}, + [23355] = {.lex_state = 0, .external_lex_state = 1}, + [23356] = {.lex_state = 0, .external_lex_state = 1}, + [23357] = {.lex_state = 0, .external_lex_state = 1}, + [23358] = {.lex_state = 0, .external_lex_state = 1}, + [23359] = {.lex_state = 0, .external_lex_state = 1}, + [23360] = {.lex_state = 0, .external_lex_state = 1}, + [23361] = {.lex_state = 0, .external_lex_state = 1}, + [23362] = {.lex_state = 0, .external_lex_state = 1}, + [23363] = {.lex_state = 0, .external_lex_state = 1}, + [23364] = {.lex_state = 0, .external_lex_state = 1}, + [23365] = {.lex_state = 0, .external_lex_state = 1}, + [23366] = {.lex_state = 0, .external_lex_state = 1}, + [23367] = {.lex_state = 0, .external_lex_state = 1}, + [23368] = {.lex_state = 0, .external_lex_state = 1}, + [23369] = {.lex_state = 0, .external_lex_state = 1}, + [23370] = {.lex_state = 0, .external_lex_state = 1}, + [23371] = {.lex_state = 0, .external_lex_state = 1}, + [23372] = {.lex_state = 0, .external_lex_state = 1}, + [23373] = {.lex_state = 0, .external_lex_state = 1}, + [23374] = {.lex_state = 0, .external_lex_state = 1}, + [23375] = {.lex_state = 0, .external_lex_state = 1}, + [23376] = {.lex_state = 0, .external_lex_state = 1}, + [23377] = {.lex_state = 0, .external_lex_state = 1}, + [23378] = {.lex_state = 0, .external_lex_state = 1}, + [23379] = {.lex_state = 0, .external_lex_state = 1}, + [23380] = {.lex_state = 0, .external_lex_state = 1}, + [23381] = {.lex_state = 0, .external_lex_state = 1}, + [23382] = {.lex_state = 0, .external_lex_state = 1}, + [23383] = {.lex_state = 0, .external_lex_state = 1}, + [23384] = {.lex_state = 0, .external_lex_state = 1}, + [23385] = {.lex_state = 0, .external_lex_state = 1}, + [23386] = {.lex_state = 0, .external_lex_state = 1}, + [23387] = {.lex_state = 0, .external_lex_state = 1}, + [23388] = {.lex_state = 0, .external_lex_state = 1}, + [23389] = {.lex_state = 0, .external_lex_state = 1}, + [23390] = {.lex_state = 0, .external_lex_state = 1}, + [23391] = {.lex_state = 0, .external_lex_state = 1}, + [23392] = {.lex_state = 0, .external_lex_state = 1}, + [23393] = {.lex_state = 0, .external_lex_state = 1}, + [23394] = {.lex_state = 0, .external_lex_state = 1}, + [23395] = {.lex_state = 0, .external_lex_state = 1}, + [23396] = {.lex_state = 0, .external_lex_state = 1}, + [23397] = {.lex_state = 0, .external_lex_state = 1}, + [23398] = {.lex_state = 0, .external_lex_state = 1}, + [23399] = {.lex_state = 0, .external_lex_state = 1}, + [23400] = {.lex_state = 0, .external_lex_state = 1}, + [23401] = {.lex_state = 0, .external_lex_state = 1}, + [23402] = {.lex_state = 0, .external_lex_state = 1}, + [23403] = {.lex_state = 0, .external_lex_state = 1}, + [23404] = {.lex_state = 0, .external_lex_state = 1}, + [23405] = {.lex_state = 0, .external_lex_state = 1}, + [23406] = {.lex_state = 0, .external_lex_state = 1}, + [23407] = {.lex_state = 0, .external_lex_state = 1}, + [23408] = {.lex_state = 0, .external_lex_state = 1}, + [23409] = {.lex_state = 0, .external_lex_state = 1}, + [23410] = {.lex_state = 0, .external_lex_state = 1}, + [23411] = {.lex_state = 0, .external_lex_state = 1}, + [23412] = {.lex_state = 0, .external_lex_state = 1}, + [23413] = {.lex_state = 0, .external_lex_state = 1}, + [23414] = {.lex_state = 0, .external_lex_state = 1}, + [23415] = {.lex_state = 0, .external_lex_state = 1}, + [23416] = {.lex_state = 0, .external_lex_state = 1}, + [23417] = {.lex_state = 0, .external_lex_state = 1}, + [23418] = {.lex_state = 0, .external_lex_state = 1}, + [23419] = {.lex_state = 0, .external_lex_state = 1}, + [23420] = {.lex_state = 0, .external_lex_state = 1}, + [23421] = {.lex_state = 0, .external_lex_state = 1}, + [23422] = {.lex_state = 0, .external_lex_state = 1}, + [23423] = {.lex_state = 0, .external_lex_state = 1}, + [23424] = {.lex_state = 0, .external_lex_state = 1}, + [23425] = {.lex_state = 0, .external_lex_state = 1}, + [23426] = {.lex_state = 0, .external_lex_state = 1}, + [23427] = {.lex_state = 0, .external_lex_state = 1}, + [23428] = {.lex_state = 0, .external_lex_state = 1}, + [23429] = {.lex_state = 0, .external_lex_state = 1}, + [23430] = {.lex_state = 0, .external_lex_state = 1}, + [23431] = {.lex_state = 0, .external_lex_state = 1}, + [23432] = {.lex_state = 0, .external_lex_state = 1}, + [23433] = {.lex_state = 0, .external_lex_state = 1}, + [23434] = {.lex_state = 0, .external_lex_state = 1}, + [23435] = {.lex_state = 0, .external_lex_state = 1}, + [23436] = {.lex_state = 0, .external_lex_state = 1}, + [23437] = {.lex_state = 0, .external_lex_state = 1}, + [23438] = {.lex_state = 0, .external_lex_state = 1}, + [23439] = {.lex_state = 0, .external_lex_state = 1}, + [23440] = {.lex_state = 0, .external_lex_state = 1}, + [23441] = {.lex_state = 0, .external_lex_state = 1}, + [23442] = {.lex_state = 0, .external_lex_state = 1}, + [23443] = {.lex_state = 0, .external_lex_state = 1}, + [23444] = {.lex_state = 0, .external_lex_state = 1}, + [23445] = {.lex_state = 0, .external_lex_state = 1}, + [23446] = {.lex_state = 0, .external_lex_state = 1}, + [23447] = {.lex_state = 0, .external_lex_state = 1}, + [23448] = {.lex_state = 0, .external_lex_state = 1}, + [23449] = {.lex_state = 0, .external_lex_state = 1}, + [23450] = {.lex_state = 0, .external_lex_state = 1}, + [23451] = {.lex_state = 0, .external_lex_state = 1}, + [23452] = {.lex_state = 0, .external_lex_state = 1}, + [23453] = {.lex_state = 0, .external_lex_state = 1}, + [23454] = {.lex_state = 0, .external_lex_state = 1}, + [23455] = {.lex_state = 0, .external_lex_state = 1}, + [23456] = {.lex_state = 0, .external_lex_state = 1}, + [23457] = {.lex_state = 0, .external_lex_state = 1}, + [23458] = {.lex_state = 0, .external_lex_state = 1}, + [23459] = {.lex_state = 0, .external_lex_state = 1}, + [23460] = {.lex_state = 0, .external_lex_state = 1}, + [23461] = {.lex_state = 0, .external_lex_state = 1}, + [23462] = {.lex_state = 0, .external_lex_state = 1}, + [23463] = {.lex_state = 0, .external_lex_state = 1}, + [23464] = {.lex_state = 0, .external_lex_state = 1}, + [23465] = {.lex_state = 0, .external_lex_state = 1}, + [23466] = {.lex_state = 0, .external_lex_state = 1}, + [23467] = {.lex_state = 0, .external_lex_state = 1}, + [23468] = {.lex_state = 0, .external_lex_state = 1}, + [23469] = {.lex_state = 0, .external_lex_state = 1}, + [23470] = {.lex_state = 0, .external_lex_state = 1}, + [23471] = {.lex_state = 0, .external_lex_state = 1}, + [23472] = {.lex_state = 0, .external_lex_state = 1}, + [23473] = {.lex_state = 0, .external_lex_state = 1}, + [23474] = {.lex_state = 0, .external_lex_state = 1}, + [23475] = {.lex_state = 0, .external_lex_state = 1}, + [23476] = {.lex_state = 0, .external_lex_state = 1}, + [23477] = {.lex_state = 0, .external_lex_state = 1}, + [23478] = {.lex_state = 0, .external_lex_state = 1}, + [23479] = {.lex_state = 0, .external_lex_state = 1}, + [23480] = {.lex_state = 0, .external_lex_state = 1}, + [23481] = {.lex_state = 0, .external_lex_state = 1}, + [23482] = {.lex_state = 0, .external_lex_state = 1}, + [23483] = {.lex_state = 0, .external_lex_state = 1}, + [23484] = {.lex_state = 0, .external_lex_state = 1}, + [23485] = {.lex_state = 0, .external_lex_state = 1}, + [23486] = {.lex_state = 0, .external_lex_state = 1}, + [23487] = {.lex_state = 0, .external_lex_state = 1}, + [23488] = {.lex_state = 0, .external_lex_state = 1}, + [23489] = {.lex_state = 0, .external_lex_state = 1}, + [23490] = {.lex_state = 0, .external_lex_state = 1}, + [23491] = {.lex_state = 0, .external_lex_state = 1}, + [23492] = {.lex_state = 0, .external_lex_state = 1}, + [23493] = {.lex_state = 0, .external_lex_state = 1}, + [23494] = {.lex_state = 0, .external_lex_state = 1}, + [23495] = {.lex_state = 0, .external_lex_state = 1}, + [23496] = {.lex_state = 0, .external_lex_state = 1}, + [23497] = {.lex_state = 0, .external_lex_state = 1}, + [23498] = {.lex_state = 0, .external_lex_state = 1}, + [23499] = {.lex_state = 0, .external_lex_state = 1}, + [23500] = {.lex_state = 0, .external_lex_state = 1}, + [23501] = {.lex_state = 0, .external_lex_state = 1}, + [23502] = {.lex_state = 0, .external_lex_state = 1}, + [23503] = {.lex_state = 0, .external_lex_state = 1}, + [23504] = {.lex_state = 0, .external_lex_state = 1}, + [23505] = {.lex_state = 0, .external_lex_state = 1}, + [23506] = {.lex_state = 0, .external_lex_state = 1}, + [23507] = {.lex_state = 0, .external_lex_state = 1}, + [23508] = {.lex_state = 0, .external_lex_state = 1}, + [23509] = {.lex_state = 0, .external_lex_state = 1}, + [23510] = {.lex_state = 0, .external_lex_state = 1}, + [23511] = {.lex_state = 0, .external_lex_state = 1}, + [23512] = {.lex_state = 0, .external_lex_state = 1}, + [23513] = {.lex_state = 0, .external_lex_state = 1}, + [23514] = {.lex_state = 0, .external_lex_state = 1}, + [23515] = {.lex_state = 0, .external_lex_state = 1}, + [23516] = {.lex_state = 0, .external_lex_state = 1}, + [23517] = {.lex_state = 0, .external_lex_state = 1}, + [23518] = {.lex_state = 0, .external_lex_state = 1}, + [23519] = {.lex_state = 0, .external_lex_state = 1}, + [23520] = {.lex_state = 0, .external_lex_state = 1}, + [23521] = {.lex_state = 0, .external_lex_state = 1}, + [23522] = {.lex_state = 0, .external_lex_state = 1}, + [23523] = {.lex_state = 0, .external_lex_state = 1}, + [23524] = {.lex_state = 0, .external_lex_state = 1}, + [23525] = {.lex_state = 0, .external_lex_state = 1}, + [23526] = {.lex_state = 0, .external_lex_state = 1}, + [23527] = {.lex_state = 0, .external_lex_state = 1}, + [23528] = {.lex_state = 0, .external_lex_state = 1}, + [23529] = {.lex_state = 0, .external_lex_state = 1}, + [23530] = {.lex_state = 0, .external_lex_state = 1}, + [23531] = {.lex_state = 0, .external_lex_state = 1}, + [23532] = {.lex_state = 0, .external_lex_state = 1}, + [23533] = {.lex_state = 0, .external_lex_state = 1}, + [23534] = {.lex_state = 0, .external_lex_state = 1}, + [23535] = {.lex_state = 0, .external_lex_state = 1}, + [23536] = {.lex_state = 0, .external_lex_state = 1}, + [23537] = {.lex_state = 0, .external_lex_state = 1}, + [23538] = {.lex_state = 0, .external_lex_state = 1}, + [23539] = {.lex_state = 0, .external_lex_state = 1}, + [23540] = {.lex_state = 0, .external_lex_state = 1}, + [23541] = {.lex_state = 0, .external_lex_state = 1}, + [23542] = {.lex_state = 0, .external_lex_state = 1}, + [23543] = {.lex_state = 0, .external_lex_state = 1}, + [23544] = {.lex_state = 0, .external_lex_state = 1}, + [23545] = {.lex_state = 0, .external_lex_state = 1}, + [23546] = {.lex_state = 0, .external_lex_state = 1}, + [23547] = {.lex_state = 0, .external_lex_state = 1}, + [23548] = {.lex_state = 125, .external_lex_state = 1}, + [23549] = {.lex_state = 548, .external_lex_state = 1}, + [23550] = {.lex_state = 125, .external_lex_state = 1}, + [23551] = {.lex_state = 0, .external_lex_state = 1}, + [23552] = {.lex_state = 0, .external_lex_state = 1}, + [23553] = {.lex_state = 0, .external_lex_state = 1}, + [23554] = {.lex_state = 0, .external_lex_state = 1}, + [23555] = {.lex_state = 0, .external_lex_state = 1}, + [23556] = {.lex_state = 0, .external_lex_state = 1}, + [23557] = {.lex_state = 0, .external_lex_state = 1}, + [23558] = {.lex_state = 0, .external_lex_state = 1}, + [23559] = {.lex_state = 0, .external_lex_state = 1}, + [23560] = {.lex_state = 125, .external_lex_state = 1}, + [23561] = {.lex_state = 0, .external_lex_state = 1}, + [23562] = {.lex_state = 0, .external_lex_state = 1}, + [23563] = {.lex_state = 0, .external_lex_state = 1}, + [23564] = {.lex_state = 0, .external_lex_state = 1}, + [23565] = {.lex_state = 0, .external_lex_state = 1}, + [23566] = {.lex_state = 0, .external_lex_state = 1}, + [23567] = {.lex_state = 0, .external_lex_state = 1}, + [23568] = {.lex_state = 0, .external_lex_state = 1}, + [23569] = {.lex_state = 0, .external_lex_state = 1}, + [23570] = {.lex_state = 0, .external_lex_state = 1}, + [23571] = {.lex_state = 0, .external_lex_state = 1}, + [23572] = {.lex_state = 0, .external_lex_state = 1}, + [23573] = {.lex_state = 125, .external_lex_state = 1}, + [23574] = {.lex_state = 0, .external_lex_state = 1}, + [23575] = {.lex_state = 0, .external_lex_state = 1}, + [23576] = {.lex_state = 0, .external_lex_state = 1}, + [23577] = {.lex_state = 0, .external_lex_state = 1}, + [23578] = {.lex_state = 0, .external_lex_state = 1}, + [23579] = {.lex_state = 0, .external_lex_state = 1}, + [23580] = {.lex_state = 0, .external_lex_state = 1}, + [23581] = {.lex_state = 0, .external_lex_state = 1}, + [23582] = {.lex_state = 0, .external_lex_state = 1}, + [23583] = {.lex_state = 0, .external_lex_state = 1}, + [23584] = {.lex_state = 0, .external_lex_state = 1}, + [23585] = {.lex_state = 0, .external_lex_state = 1}, + [23586] = {.lex_state = 0, .external_lex_state = 1}, + [23587] = {.lex_state = 0, .external_lex_state = 1}, + [23588] = {.lex_state = 0, .external_lex_state = 1}, + [23589] = {.lex_state = 0, .external_lex_state = 1}, + [23590] = {.lex_state = 0, .external_lex_state = 1}, + [23591] = {.lex_state = 0, .external_lex_state = 1}, + [23592] = {.lex_state = 0, .external_lex_state = 1}, + [23593] = {.lex_state = 132, .external_lex_state = 1}, + [23594] = {.lex_state = 0, .external_lex_state = 1}, + [23595] = {.lex_state = 0, .external_lex_state = 1}, + [23596] = {.lex_state = 0, .external_lex_state = 1}, + [23597] = {.lex_state = 0, .external_lex_state = 1}, + [23598] = {.lex_state = 0, .external_lex_state = 1}, + [23599] = {.lex_state = 0, .external_lex_state = 1}, + [23600] = {.lex_state = 0, .external_lex_state = 1}, + [23601] = {.lex_state = 0, .external_lex_state = 1}, + [23602] = {.lex_state = 0, .external_lex_state = 1}, + [23603] = {.lex_state = 0, .external_lex_state = 1}, + [23604] = {.lex_state = 0, .external_lex_state = 1}, + [23605] = {.lex_state = 0, .external_lex_state = 1}, + [23606] = {.lex_state = 0, .external_lex_state = 1}, + [23607] = {.lex_state = 0, .external_lex_state = 1}, + [23608] = {.lex_state = 0, .external_lex_state = 1}, + [23609] = {.lex_state = 0, .external_lex_state = 1}, + [23610] = {.lex_state = 0, .external_lex_state = 1}, + [23611] = {.lex_state = 0, .external_lex_state = 1}, + [23612] = {.lex_state = 0, .external_lex_state = 1}, + [23613] = {.lex_state = 0, .external_lex_state = 1}, + [23614] = {.lex_state = 0, .external_lex_state = 1}, + [23615] = {.lex_state = 0, .external_lex_state = 1}, + [23616] = {.lex_state = 0, .external_lex_state = 1}, + [23617] = {.lex_state = 0, .external_lex_state = 1}, + [23618] = {.lex_state = 0, .external_lex_state = 1}, + [23619] = {.lex_state = 0, .external_lex_state = 1}, + [23620] = {.lex_state = 0, .external_lex_state = 1}, + [23621] = {.lex_state = 0, .external_lex_state = 1}, + [23622] = {.lex_state = 0, .external_lex_state = 1}, + [23623] = {.lex_state = 0, .external_lex_state = 1}, + [23624] = {.lex_state = 0, .external_lex_state = 1}, + [23625] = {.lex_state = 0, .external_lex_state = 1}, + [23626] = {.lex_state = 0, .external_lex_state = 1}, + [23627] = {.lex_state = 0, .external_lex_state = 1}, + [23628] = {.lex_state = 0, .external_lex_state = 1}, + [23629] = {.lex_state = 0, .external_lex_state = 1}, + [23630] = {.lex_state = 0, .external_lex_state = 1}, + [23631] = {.lex_state = 0, .external_lex_state = 1}, + [23632] = {.lex_state = 0, .external_lex_state = 1}, + [23633] = {.lex_state = 0, .external_lex_state = 1}, + [23634] = {.lex_state = 0, .external_lex_state = 1}, + [23635] = {.lex_state = 0, .external_lex_state = 1}, + [23636] = {.lex_state = 0, .external_lex_state = 1}, + [23637] = {.lex_state = 0, .external_lex_state = 1}, + [23638] = {.lex_state = 0, .external_lex_state = 1}, + [23639] = {.lex_state = 132, .external_lex_state = 1}, + [23640] = {.lex_state = 0, .external_lex_state = 1}, + [23641] = {.lex_state = 0, .external_lex_state = 1}, + [23642] = {.lex_state = 0, .external_lex_state = 1}, + [23643] = {.lex_state = 0, .external_lex_state = 1}, + [23644] = {.lex_state = 0, .external_lex_state = 1}, + [23645] = {.lex_state = 0, .external_lex_state = 1}, + [23646] = {.lex_state = 0, .external_lex_state = 1}, + [23647] = {.lex_state = 0, .external_lex_state = 1}, + [23648] = {.lex_state = 0, .external_lex_state = 1}, + [23649] = {.lex_state = 0, .external_lex_state = 1}, + [23650] = {.lex_state = 0, .external_lex_state = 1}, + [23651] = {.lex_state = 0, .external_lex_state = 1}, + [23652] = {.lex_state = 0, .external_lex_state = 1}, + [23653] = {.lex_state = 0, .external_lex_state = 1}, + [23654] = {.lex_state = 0, .external_lex_state = 1}, + [23655] = {.lex_state = 0, .external_lex_state = 1}, + [23656] = {.lex_state = 0, .external_lex_state = 1}, + [23657] = {.lex_state = 0, .external_lex_state = 1}, + [23658] = {.lex_state = 0, .external_lex_state = 1}, + [23659] = {.lex_state = 0, .external_lex_state = 1}, + [23660] = {.lex_state = 0, .external_lex_state = 1}, + [23661] = {.lex_state = 0, .external_lex_state = 1}, + [23662] = {.lex_state = 0, .external_lex_state = 1}, + [23663] = {.lex_state = 0, .external_lex_state = 1}, + [23664] = {.lex_state = 0, .external_lex_state = 1}, + [23665] = {.lex_state = 0, .external_lex_state = 1}, + [23666] = {.lex_state = 0, .external_lex_state = 1}, + [23667] = {.lex_state = 0, .external_lex_state = 1}, + [23668] = {.lex_state = 125, .external_lex_state = 1}, + [23669] = {.lex_state = 0, .external_lex_state = 1}, + [23670] = {.lex_state = 0, .external_lex_state = 1}, + [23671] = {.lex_state = 0, .external_lex_state = 1}, + [23672] = {.lex_state = 0, .external_lex_state = 1}, + [23673] = {.lex_state = 0, .external_lex_state = 1}, + [23674] = {.lex_state = 0, .external_lex_state = 1}, + [23675] = {.lex_state = 0, .external_lex_state = 1}, + [23676] = {.lex_state = 0, .external_lex_state = 1}, + [23677] = {.lex_state = 0, .external_lex_state = 1}, + [23678] = {.lex_state = 0, .external_lex_state = 1}, + [23679] = {.lex_state = 125, .external_lex_state = 1}, + [23680] = {.lex_state = 0, .external_lex_state = 1}, + [23681] = {.lex_state = 125, .external_lex_state = 1}, + [23682] = {.lex_state = 0, .external_lex_state = 1}, + [23683] = {.lex_state = 0, .external_lex_state = 1}, + [23684] = {.lex_state = 0, .external_lex_state = 1}, + [23685] = {.lex_state = 0, .external_lex_state = 1}, + [23686] = {.lex_state = 0, .external_lex_state = 1}, + [23687] = {.lex_state = 0, .external_lex_state = 1}, + [23688] = {.lex_state = 0, .external_lex_state = 1}, + [23689] = {.lex_state = 0, .external_lex_state = 1}, + [23690] = {.lex_state = 0, .external_lex_state = 1}, + [23691] = {.lex_state = 0, .external_lex_state = 1}, + [23692] = {.lex_state = 0, .external_lex_state = 1}, + [23693] = {.lex_state = 0, .external_lex_state = 1}, + [23694] = {.lex_state = 0, .external_lex_state = 1}, + [23695] = {.lex_state = 0, .external_lex_state = 1}, + [23696] = {.lex_state = 0, .external_lex_state = 1}, + [23697] = {.lex_state = 0, .external_lex_state = 1}, + [23698] = {.lex_state = 0, .external_lex_state = 1}, + [23699] = {.lex_state = 0, .external_lex_state = 1}, + [23700] = {.lex_state = 0, .external_lex_state = 1}, + [23701] = {.lex_state = 0, .external_lex_state = 1}, + [23702] = {.lex_state = 0, .external_lex_state = 1}, + [23703] = {.lex_state = 0, .external_lex_state = 1}, + [23704] = {.lex_state = 0, .external_lex_state = 1}, + [23705] = {.lex_state = 0, .external_lex_state = 1}, + [23706] = {.lex_state = 0, .external_lex_state = 1}, + [23707] = {.lex_state = 0, .external_lex_state = 1}, + [23708] = {.lex_state = 122, .external_lex_state = 1}, + [23709] = {.lex_state = 0, .external_lex_state = 1}, + [23710] = {.lex_state = 0, .external_lex_state = 1}, + [23711] = {.lex_state = 0, .external_lex_state = 1}, + [23712] = {.lex_state = 0, .external_lex_state = 1}, + [23713] = {.lex_state = 0, .external_lex_state = 1}, + [23714] = {.lex_state = 0, .external_lex_state = 1}, + [23715] = {.lex_state = 0, .external_lex_state = 1}, + [23716] = {.lex_state = 0, .external_lex_state = 1}, + [23717] = {.lex_state = 124, .external_lex_state = 1}, + [23718] = {.lex_state = 0, .external_lex_state = 1}, + [23719] = {.lex_state = 0, .external_lex_state = 1}, + [23720] = {.lex_state = 0, .external_lex_state = 1}, + [23721] = {.lex_state = 0, .external_lex_state = 1}, + [23722] = {.lex_state = 0, .external_lex_state = 1}, + [23723] = {.lex_state = 0, .external_lex_state = 1}, + [23724] = {.lex_state = 0, .external_lex_state = 1}, + [23725] = {.lex_state = 0, .external_lex_state = 1}, + [23726] = {.lex_state = 0, .external_lex_state = 1}, + [23727] = {.lex_state = 0, .external_lex_state = 1}, + [23728] = {.lex_state = 0, .external_lex_state = 1}, + [23729] = {.lex_state = 0, .external_lex_state = 1}, + [23730] = {.lex_state = 0, .external_lex_state = 1}, + [23731] = {.lex_state = 0, .external_lex_state = 1}, + [23732] = {.lex_state = 0, .external_lex_state = 1}, + [23733] = {.lex_state = 0, .external_lex_state = 1}, + [23734] = {.lex_state = 0, .external_lex_state = 1}, + [23735] = {.lex_state = 0, .external_lex_state = 1}, + [23736] = {.lex_state = 0, .external_lex_state = 1}, + [23737] = {.lex_state = 125, .external_lex_state = 1}, + [23738] = {.lex_state = 0, .external_lex_state = 1}, + [23739] = {.lex_state = 0, .external_lex_state = 1}, + [23740] = {.lex_state = 0, .external_lex_state = 1}, + [23741] = {.lex_state = 0, .external_lex_state = 1}, + [23742] = {.lex_state = 125, .external_lex_state = 1}, + [23743] = {.lex_state = 0, .external_lex_state = 1}, + [23744] = {.lex_state = 125, .external_lex_state = 1}, + [23745] = {.lex_state = 0, .external_lex_state = 1}, + [23746] = {.lex_state = 0, .external_lex_state = 1}, + [23747] = {.lex_state = 0, .external_lex_state = 1}, + [23748] = {.lex_state = 0, .external_lex_state = 1}, + [23749] = {.lex_state = 0, .external_lex_state = 1}, + [23750] = {.lex_state = 0, .external_lex_state = 1}, + [23751] = {.lex_state = 0, .external_lex_state = 1}, + [23752] = {.lex_state = 0, .external_lex_state = 1}, + [23753] = {.lex_state = 0, .external_lex_state = 1}, + [23754] = {.lex_state = 0, .external_lex_state = 1}, + [23755] = {.lex_state = 0, .external_lex_state = 1}, + [23756] = {.lex_state = 0, .external_lex_state = 1}, + [23757] = {.lex_state = 0, .external_lex_state = 1}, + [23758] = {.lex_state = 0, .external_lex_state = 1}, + [23759] = {.lex_state = 0, .external_lex_state = 1}, + [23760] = {.lex_state = 0, .external_lex_state = 1}, + [23761] = {.lex_state = 0, .external_lex_state = 1}, + [23762] = {.lex_state = 0, .external_lex_state = 1}, + [23763] = {.lex_state = 0, .external_lex_state = 1}, + [23764] = {.lex_state = 0, .external_lex_state = 1}, + [23765] = {.lex_state = 0, .external_lex_state = 1}, + [23766] = {.lex_state = 0, .external_lex_state = 1}, + [23767] = {.lex_state = 0, .external_lex_state = 1}, + [23768] = {.lex_state = 0, .external_lex_state = 1}, + [23769] = {.lex_state = 0, .external_lex_state = 1}, + [23770] = {.lex_state = 0, .external_lex_state = 1}, + [23771] = {.lex_state = 0, .external_lex_state = 1}, + [23772] = {.lex_state = 0, .external_lex_state = 1}, + [23773] = {.lex_state = 0, .external_lex_state = 1}, + [23774] = {.lex_state = 0, .external_lex_state = 1}, + [23775] = {.lex_state = 0, .external_lex_state = 1}, + [23776] = {.lex_state = 0, .external_lex_state = 1}, + [23777] = {.lex_state = 125, .external_lex_state = 1}, + [23778] = {.lex_state = 0, .external_lex_state = 1}, + [23779] = {.lex_state = 0, .external_lex_state = 1}, + [23780] = {.lex_state = 0, .external_lex_state = 1}, + [23781] = {.lex_state = 0, .external_lex_state = 1}, + [23782] = {.lex_state = 0, .external_lex_state = 1}, + [23783] = {.lex_state = 0, .external_lex_state = 1}, + [23784] = {.lex_state = 0, .external_lex_state = 1}, + [23785] = {.lex_state = 0, .external_lex_state = 1}, + [23786] = {.lex_state = 0, .external_lex_state = 1}, + [23787] = {.lex_state = 0, .external_lex_state = 1}, + [23788] = {.lex_state = 0, .external_lex_state = 1}, + [23789] = {.lex_state = 0, .external_lex_state = 1}, + [23790] = {.lex_state = 0, .external_lex_state = 1}, + [23791] = {.lex_state = 132, .external_lex_state = 1}, + [23792] = {.lex_state = 0, .external_lex_state = 1}, + [23793] = {.lex_state = 0, .external_lex_state = 1}, + [23794] = {.lex_state = 0, .external_lex_state = 1}, + [23795] = {.lex_state = 0, .external_lex_state = 1}, + [23796] = {.lex_state = 0, .external_lex_state = 1}, + [23797] = {.lex_state = 0, .external_lex_state = 1}, + [23798] = {.lex_state = 125, .external_lex_state = 1}, + [23799] = {.lex_state = 125, .external_lex_state = 1}, + [23800] = {.lex_state = 0, .external_lex_state = 1}, + [23801] = {.lex_state = 0, .external_lex_state = 1}, + [23802] = {.lex_state = 0, .external_lex_state = 1}, + [23803] = {.lex_state = 0, .external_lex_state = 1}, + [23804] = {.lex_state = 0, .external_lex_state = 1}, + [23805] = {.lex_state = 0, .external_lex_state = 1}, + [23806] = {.lex_state = 0, .external_lex_state = 1}, + [23807] = {.lex_state = 0, .external_lex_state = 1}, + [23808] = {.lex_state = 0, .external_lex_state = 1}, + [23809] = {.lex_state = 0, .external_lex_state = 1}, + [23810] = {.lex_state = 0, .external_lex_state = 1}, + [23811] = {.lex_state = 0, .external_lex_state = 1}, + [23812] = {.lex_state = 0, .external_lex_state = 1}, + [23813] = {.lex_state = 0, .external_lex_state = 1}, + [23814] = {.lex_state = 0, .external_lex_state = 1}, + [23815] = {.lex_state = 0, .external_lex_state = 1}, + [23816] = {.lex_state = 0, .external_lex_state = 1}, + [23817] = {.lex_state = 0, .external_lex_state = 1}, + [23818] = {.lex_state = 0, .external_lex_state = 1}, + [23819] = {.lex_state = 0, .external_lex_state = 1}, + [23820] = {.lex_state = 0, .external_lex_state = 1}, + [23821] = {.lex_state = 125, .external_lex_state = 1}, + [23822] = {.lex_state = 0, .external_lex_state = 1}, + [23823] = {.lex_state = 0, .external_lex_state = 1}, + [23824] = {.lex_state = 0, .external_lex_state = 1}, + [23825] = {.lex_state = 0, .external_lex_state = 1}, + [23826] = {.lex_state = 0, .external_lex_state = 1}, + [23827] = {.lex_state = 0, .external_lex_state = 1}, + [23828] = {.lex_state = 0, .external_lex_state = 1}, + [23829] = {.lex_state = 0, .external_lex_state = 1}, + [23830] = {.lex_state = 0, .external_lex_state = 1}, + [23831] = {.lex_state = 0, .external_lex_state = 1}, + [23832] = {.lex_state = 0, .external_lex_state = 1}, + [23833] = {.lex_state = 0, .external_lex_state = 1}, + [23834] = {.lex_state = 0, .external_lex_state = 1}, + [23835] = {.lex_state = 0, .external_lex_state = 1}, + [23836] = {.lex_state = 0, .external_lex_state = 1}, + [23837] = {.lex_state = 0, .external_lex_state = 1}, + [23838] = {.lex_state = 0, .external_lex_state = 1}, + [23839] = {.lex_state = 0, .external_lex_state = 1}, + [23840] = {.lex_state = 0, .external_lex_state = 1}, + [23841] = {.lex_state = 0, .external_lex_state = 1}, + [23842] = {.lex_state = 0, .external_lex_state = 1}, + [23843] = {.lex_state = 0, .external_lex_state = 1}, + [23844] = {.lex_state = 0, .external_lex_state = 1}, + [23845] = {.lex_state = 0, .external_lex_state = 1}, + [23846] = {.lex_state = 0, .external_lex_state = 1}, + [23847] = {.lex_state = 0, .external_lex_state = 1}, + [23848] = {.lex_state = 0, .external_lex_state = 1}, + [23849] = {.lex_state = 0, .external_lex_state = 1}, + [23850] = {.lex_state = 0, .external_lex_state = 1}, + [23851] = {.lex_state = 0, .external_lex_state = 1}, + [23852] = {.lex_state = 0, .external_lex_state = 1}, + [23853] = {.lex_state = 0, .external_lex_state = 1}, + [23854] = {.lex_state = 0, .external_lex_state = 1}, + [23855] = {.lex_state = 0, .external_lex_state = 1}, + [23856] = {.lex_state = 0, .external_lex_state = 1}, + [23857] = {.lex_state = 125, .external_lex_state = 1}, + [23858] = {.lex_state = 125, .external_lex_state = 1}, + [23859] = {.lex_state = 0, .external_lex_state = 1}, + [23860] = {.lex_state = 0, .external_lex_state = 1}, + [23861] = {.lex_state = 0, .external_lex_state = 1}, + [23862] = {.lex_state = 0, .external_lex_state = 1}, + [23863] = {.lex_state = 0, .external_lex_state = 1}, + [23864] = {.lex_state = 0, .external_lex_state = 1}, + [23865] = {.lex_state = 0, .external_lex_state = 1}, + [23866] = {.lex_state = 0, .external_lex_state = 1}, + [23867] = {.lex_state = 0, .external_lex_state = 1}, + [23868] = {.lex_state = 0, .external_lex_state = 1}, + [23869] = {.lex_state = 0, .external_lex_state = 1}, + [23870] = {.lex_state = 0, .external_lex_state = 1}, + [23871] = {.lex_state = 0, .external_lex_state = 1}, + [23872] = {.lex_state = 0, .external_lex_state = 1}, + [23873] = {.lex_state = 0, .external_lex_state = 1}, + [23874] = {.lex_state = 0, .external_lex_state = 1}, + [23875] = {.lex_state = 0, .external_lex_state = 1}, + [23876] = {.lex_state = 0, .external_lex_state = 1}, + [23877] = {.lex_state = 0, .external_lex_state = 1}, + [23878] = {.lex_state = 0, .external_lex_state = 1}, + [23879] = {.lex_state = 0, .external_lex_state = 1}, + [23880] = {.lex_state = 0, .external_lex_state = 1}, + [23881] = {.lex_state = 0, .external_lex_state = 1}, + [23882] = {.lex_state = 0, .external_lex_state = 1}, + [23883] = {.lex_state = 0, .external_lex_state = 1}, + [23884] = {.lex_state = 0, .external_lex_state = 1}, + [23885] = {.lex_state = 0, .external_lex_state = 1}, + [23886] = {.lex_state = 125, .external_lex_state = 1}, + [23887] = {.lex_state = 0, .external_lex_state = 1}, + [23888] = {.lex_state = 0, .external_lex_state = 1}, + [23889] = {.lex_state = 0, .external_lex_state = 1}, + [23890] = {.lex_state = 0, .external_lex_state = 1}, + [23891] = {.lex_state = 0, .external_lex_state = 1}, + [23892] = {.lex_state = 0, .external_lex_state = 1}, + [23893] = {.lex_state = 125, .external_lex_state = 1}, + [23894] = {.lex_state = 0, .external_lex_state = 1}, + [23895] = {.lex_state = 0, .external_lex_state = 1}, + [23896] = {.lex_state = 0, .external_lex_state = 1}, + [23897] = {.lex_state = 0, .external_lex_state = 1}, + [23898] = {.lex_state = 0, .external_lex_state = 1}, + [23899] = {.lex_state = 0, .external_lex_state = 1}, + [23900] = {.lex_state = 0, .external_lex_state = 1}, + [23901] = {.lex_state = 0, .external_lex_state = 1}, + [23902] = {.lex_state = 0, .external_lex_state = 1}, + [23903] = {.lex_state = 0, .external_lex_state = 1}, + [23904] = {.lex_state = 0, .external_lex_state = 1}, + [23905] = {.lex_state = 0, .external_lex_state = 1}, + [23906] = {.lex_state = 0, .external_lex_state = 1}, + [23907] = {.lex_state = 0, .external_lex_state = 1}, + [23908] = {.lex_state = 0, .external_lex_state = 1}, + [23909] = {.lex_state = 0, .external_lex_state = 1}, + [23910] = {.lex_state = 0, .external_lex_state = 1}, + [23911] = {.lex_state = 0, .external_lex_state = 1}, + [23912] = {.lex_state = 0, .external_lex_state = 1}, + [23913] = {.lex_state = 0, .external_lex_state = 1}, + [23914] = {.lex_state = 0, .external_lex_state = 1}, + [23915] = {.lex_state = 0, .external_lex_state = 1}, + [23916] = {.lex_state = 0, .external_lex_state = 1}, + [23917] = {.lex_state = 0, .external_lex_state = 1}, + [23918] = {.lex_state = 0, .external_lex_state = 1}, + [23919] = {.lex_state = 0, .external_lex_state = 1}, + [23920] = {.lex_state = 125, .external_lex_state = 1}, + [23921] = {.lex_state = 0, .external_lex_state = 1}, + [23922] = {.lex_state = 0, .external_lex_state = 1}, + [23923] = {.lex_state = 0, .external_lex_state = 1}, + [23924] = {.lex_state = 0, .external_lex_state = 1}, + [23925] = {.lex_state = 0, .external_lex_state = 1}, + [23926] = {.lex_state = 0, .external_lex_state = 1}, + [23927] = {.lex_state = 0, .external_lex_state = 1}, + [23928] = {.lex_state = 0, .external_lex_state = 1}, + [23929] = {.lex_state = 0, .external_lex_state = 1}, + [23930] = {.lex_state = 0, .external_lex_state = 1}, + [23931] = {.lex_state = 0, .external_lex_state = 1}, + [23932] = {.lex_state = 0, .external_lex_state = 1}, + [23933] = {.lex_state = 0, .external_lex_state = 1}, + [23934] = {.lex_state = 0, .external_lex_state = 1}, + [23935] = {.lex_state = 0, .external_lex_state = 1}, + [23936] = {.lex_state = 0, .external_lex_state = 1}, + [23937] = {.lex_state = 0, .external_lex_state = 1}, + [23938] = {.lex_state = 0, .external_lex_state = 1}, + [23939] = {.lex_state = 0, .external_lex_state = 1}, + [23940] = {.lex_state = 0, .external_lex_state = 1}, + [23941] = {.lex_state = 0, .external_lex_state = 1}, + [23942] = {.lex_state = 0, .external_lex_state = 1}, + [23943] = {.lex_state = 0, .external_lex_state = 1}, + [23944] = {.lex_state = 0, .external_lex_state = 1}, + [23945] = {.lex_state = 0, .external_lex_state = 1}, + [23946] = {.lex_state = 0, .external_lex_state = 1}, + [23947] = {.lex_state = 125, .external_lex_state = 1}, + [23948] = {.lex_state = 0, .external_lex_state = 1}, + [23949] = {.lex_state = 0, .external_lex_state = 1}, + [23950] = {.lex_state = 0, .external_lex_state = 1}, + [23951] = {.lex_state = 0, .external_lex_state = 1}, + [23952] = {.lex_state = 0, .external_lex_state = 1}, + [23953] = {.lex_state = 0, .external_lex_state = 1}, + [23954] = {.lex_state = 0, .external_lex_state = 1}, + [23955] = {.lex_state = 0, .external_lex_state = 1}, + [23956] = {.lex_state = 0, .external_lex_state = 1}, + [23957] = {.lex_state = 0, .external_lex_state = 1}, + [23958] = {.lex_state = 0, .external_lex_state = 1}, + [23959] = {.lex_state = 0, .external_lex_state = 1}, + [23960] = {.lex_state = 0, .external_lex_state = 1}, + [23961] = {.lex_state = 0, .external_lex_state = 1}, + [23962] = {.lex_state = 0, .external_lex_state = 1}, + [23963] = {.lex_state = 0, .external_lex_state = 1}, + [23964] = {.lex_state = 0, .external_lex_state = 1}, + [23965] = {.lex_state = 0, .external_lex_state = 1}, + [23966] = {.lex_state = 125, .external_lex_state = 1}, + [23967] = {.lex_state = 0, .external_lex_state = 1}, + [23968] = {.lex_state = 0, .external_lex_state = 1}, + [23969] = {.lex_state = 0, .external_lex_state = 1}, + [23970] = {.lex_state = 0, .external_lex_state = 1}, + [23971] = {.lex_state = 0, .external_lex_state = 1}, + [23972] = {.lex_state = 0, .external_lex_state = 1}, + [23973] = {.lex_state = 0, .external_lex_state = 1}, + [23974] = {.lex_state = 0, .external_lex_state = 1}, + [23975] = {.lex_state = 0, .external_lex_state = 1}, + [23976] = {.lex_state = 0, .external_lex_state = 1}, + [23977] = {.lex_state = 0, .external_lex_state = 1}, + [23978] = {.lex_state = 0, .external_lex_state = 1}, + [23979] = {.lex_state = 0, .external_lex_state = 1}, + [23980] = {.lex_state = 0, .external_lex_state = 1}, + [23981] = {.lex_state = 0, .external_lex_state = 1}, + [23982] = {.lex_state = 0, .external_lex_state = 1}, + [23983] = {.lex_state = 0, .external_lex_state = 1}, + [23984] = {.lex_state = 0, .external_lex_state = 1}, + [23985] = {.lex_state = 0, .external_lex_state = 1}, + [23986] = {.lex_state = 0, .external_lex_state = 1}, + [23987] = {.lex_state = 546, .external_lex_state = 1}, + [23988] = {.lex_state = 0, .external_lex_state = 1}, + [23989] = {.lex_state = 0, .external_lex_state = 1}, + [23990] = {.lex_state = 0, .external_lex_state = 1}, + [23991] = {.lex_state = 0, .external_lex_state = 1}, + [23992] = {.lex_state = 0, .external_lex_state = 1}, + [23993] = {.lex_state = 0, .external_lex_state = 1}, + [23994] = {.lex_state = 0, .external_lex_state = 1}, + [23995] = {.lex_state = 0, .external_lex_state = 1}, + [23996] = {.lex_state = 0, .external_lex_state = 1}, + [23997] = {.lex_state = 0, .external_lex_state = 1}, + [23998] = {.lex_state = 0, .external_lex_state = 1}, + [23999] = {.lex_state = 0, .external_lex_state = 1}, + [24000] = {.lex_state = 0, .external_lex_state = 1}, + [24001] = {.lex_state = 0, .external_lex_state = 1}, + [24002] = {.lex_state = 0, .external_lex_state = 1}, + [24003] = {.lex_state = 0, .external_lex_state = 1}, + [24004] = {.lex_state = 0, .external_lex_state = 1}, + [24005] = {.lex_state = 0, .external_lex_state = 1}, + [24006] = {.lex_state = 0, .external_lex_state = 1}, + [24007] = {.lex_state = 0, .external_lex_state = 1}, + [24008] = {.lex_state = 0, .external_lex_state = 1}, + [24009] = {.lex_state = 0, .external_lex_state = 1}, + [24010] = {.lex_state = 0, .external_lex_state = 1}, + [24011] = {.lex_state = 0, .external_lex_state = 1}, + [24012] = {.lex_state = 0, .external_lex_state = 1}, + [24013] = {.lex_state = 0, .external_lex_state = 1}, + [24014] = {.lex_state = 0, .external_lex_state = 1}, + [24015] = {.lex_state = 0, .external_lex_state = 1}, + [24016] = {.lex_state = 0, .external_lex_state = 1}, + [24017] = {.lex_state = 0, .external_lex_state = 1}, + [24018] = {.lex_state = 0, .external_lex_state = 1}, + [24019] = {.lex_state = 0, .external_lex_state = 1}, + [24020] = {.lex_state = 0, .external_lex_state = 1}, + [24021] = {.lex_state = 0, .external_lex_state = 1}, + [24022] = {.lex_state = 0, .external_lex_state = 1}, + [24023] = {.lex_state = 0, .external_lex_state = 1}, + [24024] = {.lex_state = 0, .external_lex_state = 1}, + [24025] = {.lex_state = 0, .external_lex_state = 1}, + [24026] = {.lex_state = 0, .external_lex_state = 1}, + [24027] = {.lex_state = 0, .external_lex_state = 1}, + [24028] = {.lex_state = 0, .external_lex_state = 1}, + [24029] = {.lex_state = 0, .external_lex_state = 1}, + [24030] = {.lex_state = 0, .external_lex_state = 1}, + [24031] = {.lex_state = 125, .external_lex_state = 1}, + [24032] = {.lex_state = 0, .external_lex_state = 1}, + [24033] = {.lex_state = 0, .external_lex_state = 1}, + [24034] = {.lex_state = 0, .external_lex_state = 1}, + [24035] = {.lex_state = 0, .external_lex_state = 1}, + [24036] = {.lex_state = 0, .external_lex_state = 1}, + [24037] = {.lex_state = 0, .external_lex_state = 1}, + [24038] = {.lex_state = 0, .external_lex_state = 1}, + [24039] = {.lex_state = 0, .external_lex_state = 1}, + [24040] = {.lex_state = 0, .external_lex_state = 1}, + [24041] = {.lex_state = 132, .external_lex_state = 1}, + [24042] = {.lex_state = 0, .external_lex_state = 1}, + [24043] = {.lex_state = 0, .external_lex_state = 1}, + [24044] = {.lex_state = 0, .external_lex_state = 1}, + [24045] = {.lex_state = 0, .external_lex_state = 1}, + [24046] = {.lex_state = 0, .external_lex_state = 1}, + [24047] = {.lex_state = 0, .external_lex_state = 1}, + [24048] = {.lex_state = 0, .external_lex_state = 1}, + [24049] = {.lex_state = 0, .external_lex_state = 1}, + [24050] = {.lex_state = 0, .external_lex_state = 1}, + [24051] = {.lex_state = 547, .external_lex_state = 1}, + [24052] = {.lex_state = 0, .external_lex_state = 1}, + [24053] = {.lex_state = 0, .external_lex_state = 1}, + [24054] = {.lex_state = 0, .external_lex_state = 1}, + [24055] = {.lex_state = 0, .external_lex_state = 1}, + [24056] = {.lex_state = 0, .external_lex_state = 1}, + [24057] = {.lex_state = 0, .external_lex_state = 1}, + [24058] = {.lex_state = 0, .external_lex_state = 1}, + [24059] = {.lex_state = 0, .external_lex_state = 1}, + [24060] = {.lex_state = 0, .external_lex_state = 1}, + [24061] = {.lex_state = 0, .external_lex_state = 1}, + [24062] = {.lex_state = 0, .external_lex_state = 1}, + [24063] = {.lex_state = 0, .external_lex_state = 1}, + [24064] = {.lex_state = 0, .external_lex_state = 1}, + [24065] = {.lex_state = 0, .external_lex_state = 1}, + [24066] = {.lex_state = 0, .external_lex_state = 1}, + [24067] = {.lex_state = 0, .external_lex_state = 1}, + [24068] = {.lex_state = 0, .external_lex_state = 1}, + [24069] = {.lex_state = 0, .external_lex_state = 1}, + [24070] = {.lex_state = 0, .external_lex_state = 1}, + [24071] = {.lex_state = 0, .external_lex_state = 1}, + [24072] = {.lex_state = 0, .external_lex_state = 1}, + [24073] = {.lex_state = 0, .external_lex_state = 1}, + [24074] = {.lex_state = 0, .external_lex_state = 1}, + [24075] = {.lex_state = 0, .external_lex_state = 1}, + [24076] = {.lex_state = 0, .external_lex_state = 1}, + [24077] = {.lex_state = 0, .external_lex_state = 1}, + [24078] = {.lex_state = 0, .external_lex_state = 1}, + [24079] = {.lex_state = 0, .external_lex_state = 1}, + [24080] = {.lex_state = 0, .external_lex_state = 1}, + [24081] = {.lex_state = 0, .external_lex_state = 1}, + [24082] = {.lex_state = 0, .external_lex_state = 1}, + [24083] = {.lex_state = 0, .external_lex_state = 1}, + [24084] = {.lex_state = 0, .external_lex_state = 1}, + [24085] = {.lex_state = 0, .external_lex_state = 1}, + [24086] = {.lex_state = 0, .external_lex_state = 1}, + [24087] = {.lex_state = 0, .external_lex_state = 1}, + [24088] = {.lex_state = 0, .external_lex_state = 1}, + [24089] = {.lex_state = 0, .external_lex_state = 1}, + [24090] = {.lex_state = 0, .external_lex_state = 1}, + [24091] = {.lex_state = 0, .external_lex_state = 1}, + [24092] = {.lex_state = 0, .external_lex_state = 1}, + [24093] = {.lex_state = 0, .external_lex_state = 1}, + [24094] = {.lex_state = 0, .external_lex_state = 1}, + [24095] = {.lex_state = 0, .external_lex_state = 1}, + [24096] = {.lex_state = 0, .external_lex_state = 1}, + [24097] = {.lex_state = 0, .external_lex_state = 1}, + [24098] = {.lex_state = 0, .external_lex_state = 1}, + [24099] = {.lex_state = 0, .external_lex_state = 1}, + [24100] = {.lex_state = 0, .external_lex_state = 1}, + [24101] = {.lex_state = 0, .external_lex_state = 1}, + [24102] = {.lex_state = 0, .external_lex_state = 1}, + [24103] = {.lex_state = 0, .external_lex_state = 1}, + [24104] = {.lex_state = 0, .external_lex_state = 1}, + [24105] = {.lex_state = 0, .external_lex_state = 1}, + [24106] = {.lex_state = 0, .external_lex_state = 1}, + [24107] = {.lex_state = 0, .external_lex_state = 1}, + [24108] = {.lex_state = 0, .external_lex_state = 1}, + [24109] = {.lex_state = 0, .external_lex_state = 1}, + [24110] = {.lex_state = 0, .external_lex_state = 1}, + [24111] = {.lex_state = 0, .external_lex_state = 1}, + [24112] = {.lex_state = 0, .external_lex_state = 1}, + [24113] = {.lex_state = 0, .external_lex_state = 1}, + [24114] = {.lex_state = 0, .external_lex_state = 1}, + [24115] = {.lex_state = 0, .external_lex_state = 1}, + [24116] = {.lex_state = 0, .external_lex_state = 1}, + [24117] = {.lex_state = 0, .external_lex_state = 1}, + [24118] = {.lex_state = 0, .external_lex_state = 1}, + [24119] = {.lex_state = 124, .external_lex_state = 1}, + [24120] = {.lex_state = 0, .external_lex_state = 1}, + [24121] = {.lex_state = 0, .external_lex_state = 1}, + [24122] = {.lex_state = 0, .external_lex_state = 1}, + [24123] = {.lex_state = 0, .external_lex_state = 1}, + [24124] = {.lex_state = 0, .external_lex_state = 1}, + [24125] = {.lex_state = 0, .external_lex_state = 1}, + [24126] = {.lex_state = 0, .external_lex_state = 1}, + [24127] = {.lex_state = 0, .external_lex_state = 1}, + [24128] = {.lex_state = 0, .external_lex_state = 1}, + [24129] = {.lex_state = 0, .external_lex_state = 1}, + [24130] = {.lex_state = 0, .external_lex_state = 1}, + [24131] = {.lex_state = 0, .external_lex_state = 1}, + [24132] = {.lex_state = 0, .external_lex_state = 1}, + [24133] = {.lex_state = 0, .external_lex_state = 1}, + [24134] = {.lex_state = 0, .external_lex_state = 1}, + [24135] = {.lex_state = 0, .external_lex_state = 1}, + [24136] = {.lex_state = 0, .external_lex_state = 1}, + [24137] = {.lex_state = 0, .external_lex_state = 1}, + [24138] = {.lex_state = 0, .external_lex_state = 1}, + [24139] = {.lex_state = 0, .external_lex_state = 1}, + [24140] = {.lex_state = 0, .external_lex_state = 1}, + [24141] = {.lex_state = 0, .external_lex_state = 1}, + [24142] = {.lex_state = 0, .external_lex_state = 1}, + [24143] = {.lex_state = 0, .external_lex_state = 1}, + [24144] = {.lex_state = 0, .external_lex_state = 1}, + [24145] = {.lex_state = 0, .external_lex_state = 1}, + [24146] = {.lex_state = 0, .external_lex_state = 1}, + [24147] = {.lex_state = 0, .external_lex_state = 1}, + [24148] = {.lex_state = 0, .external_lex_state = 1}, + [24149] = {.lex_state = 0, .external_lex_state = 1}, + [24150] = {.lex_state = 0, .external_lex_state = 1}, + [24151] = {.lex_state = 0, .external_lex_state = 1}, + [24152] = {.lex_state = 0, .external_lex_state = 1}, + [24153] = {.lex_state = 0, .external_lex_state = 1}, + [24154] = {.lex_state = 0, .external_lex_state = 1}, + [24155] = {.lex_state = 0, .external_lex_state = 1}, + [24156] = {.lex_state = 0, .external_lex_state = 1}, + [24157] = {.lex_state = 0, .external_lex_state = 1}, + [24158] = {.lex_state = 0, .external_lex_state = 1}, + [24159] = {.lex_state = 0, .external_lex_state = 1}, + [24160] = {.lex_state = 0, .external_lex_state = 1}, + [24161] = {.lex_state = 0, .external_lex_state = 1}, + [24162] = {.lex_state = 0, .external_lex_state = 1}, + [24163] = {.lex_state = 0, .external_lex_state = 1}, + [24164] = {.lex_state = 0, .external_lex_state = 1}, + [24165] = {.lex_state = 0, .external_lex_state = 1}, + [24166] = {.lex_state = 0, .external_lex_state = 1}, + [24167] = {.lex_state = 0, .external_lex_state = 1}, + [24168] = {.lex_state = 0, .external_lex_state = 1}, + [24169] = {.lex_state = 0, .external_lex_state = 1}, + [24170] = {.lex_state = 0, .external_lex_state = 1}, + [24171] = {.lex_state = 0, .external_lex_state = 1}, + [24172] = {.lex_state = 0, .external_lex_state = 1}, + [24173] = {.lex_state = 0, .external_lex_state = 1}, + [24174] = {.lex_state = 0, .external_lex_state = 1}, + [24175] = {.lex_state = 0, .external_lex_state = 1}, + [24176] = {.lex_state = 0, .external_lex_state = 1}, + [24177] = {.lex_state = 0, .external_lex_state = 1}, + [24178] = {.lex_state = 0, .external_lex_state = 1}, + [24179] = {.lex_state = 0, .external_lex_state = 1}, + [24180] = {.lex_state = 0, .external_lex_state = 1}, + [24181] = {.lex_state = 0, .external_lex_state = 1}, + [24182] = {.lex_state = 0, .external_lex_state = 1}, + [24183] = {.lex_state = 0, .external_lex_state = 1}, + [24184] = {.lex_state = 0, .external_lex_state = 1}, + [24185] = {.lex_state = 0, .external_lex_state = 1}, + [24186] = {.lex_state = 0, .external_lex_state = 1}, + [24187] = {.lex_state = 0, .external_lex_state = 1}, + [24188] = {.lex_state = 0, .external_lex_state = 1}, + [24189] = {.lex_state = 0, .external_lex_state = 1}, + [24190] = {.lex_state = 0, .external_lex_state = 1}, + [24191] = {.lex_state = 0, .external_lex_state = 1}, + [24192] = {.lex_state = 0, .external_lex_state = 1}, + [24193] = {.lex_state = 0, .external_lex_state = 1}, + [24194] = {.lex_state = 0, .external_lex_state = 1}, + [24195] = {.lex_state = 0, .external_lex_state = 1}, + [24196] = {.lex_state = 0, .external_lex_state = 1}, + [24197] = {.lex_state = 0, .external_lex_state = 1}, + [24198] = {.lex_state = 0, .external_lex_state = 1}, + [24199] = {.lex_state = 0, .external_lex_state = 1}, + [24200] = {.lex_state = 0, .external_lex_state = 1}, + [24201] = {.lex_state = 0, .external_lex_state = 1}, + [24202] = {.lex_state = 0, .external_lex_state = 1}, + [24203] = {.lex_state = 0, .external_lex_state = 1}, + [24204] = {.lex_state = 0, .external_lex_state = 1}, + [24205] = {.lex_state = 0, .external_lex_state = 1}, + [24206] = {.lex_state = 0, .external_lex_state = 1}, + [24207] = {.lex_state = 0, .external_lex_state = 1}, + [24208] = {.lex_state = 0, .external_lex_state = 1}, + [24209] = {.lex_state = 0, .external_lex_state = 1}, + [24210] = {.lex_state = 0, .external_lex_state = 1}, + [24211] = {.lex_state = 0, .external_lex_state = 1}, + [24212] = {.lex_state = 0, .external_lex_state = 1}, + [24213] = {.lex_state = 0, .external_lex_state = 1}, + [24214] = {.lex_state = 0, .external_lex_state = 1}, + [24215] = {.lex_state = 0, .external_lex_state = 1}, + [24216] = {.lex_state = 0, .external_lex_state = 1}, + [24217] = {.lex_state = 0, .external_lex_state = 1}, + [24218] = {.lex_state = 0, .external_lex_state = 1}, + [24219] = {.lex_state = 0, .external_lex_state = 1}, + [24220] = {.lex_state = 0, .external_lex_state = 1}, + [24221] = {.lex_state = 0, .external_lex_state = 1}, + [24222] = {.lex_state = 0, .external_lex_state = 1}, + [24223] = {.lex_state = 0, .external_lex_state = 1}, + [24224] = {.lex_state = 0, .external_lex_state = 1}, + [24225] = {.lex_state = 0, .external_lex_state = 1}, + [24226] = {.lex_state = 0, .external_lex_state = 1}, + [24227] = {.lex_state = 0, .external_lex_state = 1}, + [24228] = {.lex_state = 548, .external_lex_state = 1}, + [24229] = {.lex_state = 0, .external_lex_state = 1}, + [24230] = {.lex_state = 0, .external_lex_state = 1}, + [24231] = {.lex_state = 0, .external_lex_state = 1}, + [24232] = {.lex_state = 0, .external_lex_state = 1}, + [24233] = {.lex_state = 0, .external_lex_state = 1}, + [24234] = {.lex_state = 0, .external_lex_state = 1}, + [24235] = {.lex_state = 0, .external_lex_state = 1}, + [24236] = {.lex_state = 0, .external_lex_state = 1}, + [24237] = {.lex_state = 0, .external_lex_state = 1}, + [24238] = {.lex_state = 0, .external_lex_state = 1}, + [24239] = {.lex_state = 0, .external_lex_state = 1}, + [24240] = {.lex_state = 0, .external_lex_state = 1}, + [24241] = {.lex_state = 0, .external_lex_state = 1}, + [24242] = {.lex_state = 0, .external_lex_state = 1}, + [24243] = {.lex_state = 0, .external_lex_state = 1}, + [24244] = {.lex_state = 0, .external_lex_state = 1}, + [24245] = {.lex_state = 0, .external_lex_state = 1}, + [24246] = {.lex_state = 0, .external_lex_state = 1}, + [24247] = {.lex_state = 0, .external_lex_state = 1}, + [24248] = {.lex_state = 0, .external_lex_state = 1}, + [24249] = {.lex_state = 0, .external_lex_state = 1}, + [24250] = {.lex_state = 0, .external_lex_state = 1}, + [24251] = {.lex_state = 0, .external_lex_state = 1}, + [24252] = {.lex_state = 0, .external_lex_state = 1}, + [24253] = {.lex_state = 0, .external_lex_state = 1}, + [24254] = {.lex_state = 0, .external_lex_state = 1}, + [24255] = {.lex_state = 0, .external_lex_state = 1}, + [24256] = {.lex_state = 0, .external_lex_state = 1}, + [24257] = {.lex_state = 0, .external_lex_state = 1}, + [24258] = {.lex_state = 0, .external_lex_state = 1}, + [24259] = {.lex_state = 0, .external_lex_state = 1}, + [24260] = {.lex_state = 0, .external_lex_state = 1}, + [24261] = {.lex_state = 0, .external_lex_state = 1}, + [24262] = {.lex_state = 0, .external_lex_state = 1}, + [24263] = {.lex_state = 0, .external_lex_state = 1}, + [24264] = {.lex_state = 0, .external_lex_state = 1}, + [24265] = {.lex_state = 0, .external_lex_state = 1}, + [24266] = {.lex_state = 0, .external_lex_state = 1}, + [24267] = {.lex_state = 0, .external_lex_state = 1}, + [24268] = {.lex_state = 0, .external_lex_state = 1}, + [24269] = {.lex_state = 0, .external_lex_state = 1}, + [24270] = {.lex_state = 0, .external_lex_state = 1}, + [24271] = {.lex_state = 0, .external_lex_state = 1}, + [24272] = {.lex_state = 0, .external_lex_state = 1}, + [24273] = {.lex_state = 0, .external_lex_state = 1}, + [24274] = {.lex_state = 0, .external_lex_state = 1}, + [24275] = {.lex_state = 0, .external_lex_state = 1}, + [24276] = {.lex_state = 0, .external_lex_state = 1}, + [24277] = {.lex_state = 0, .external_lex_state = 1}, + [24278] = {.lex_state = 0, .external_lex_state = 1}, + [24279] = {.lex_state = 0, .external_lex_state = 1}, + [24280] = {.lex_state = 0, .external_lex_state = 1}, + [24281] = {.lex_state = 0, .external_lex_state = 1}, + [24282] = {.lex_state = 0, .external_lex_state = 1}, + [24283] = {.lex_state = 0, .external_lex_state = 1}, + [24284] = {.lex_state = 0, .external_lex_state = 1}, + [24285] = {.lex_state = 0, .external_lex_state = 1}, + [24286] = {.lex_state = 0, .external_lex_state = 1}, + [24287] = {.lex_state = 0, .external_lex_state = 1}, + [24288] = {.lex_state = 0, .external_lex_state = 1}, + [24289] = {.lex_state = 0, .external_lex_state = 1}, + [24290] = {.lex_state = 0, .external_lex_state = 1}, + [24291] = {.lex_state = 0, .external_lex_state = 1}, + [24292] = {.lex_state = 0, .external_lex_state = 1}, + [24293] = {.lex_state = 0, .external_lex_state = 1}, + [24294] = {.lex_state = 0, .external_lex_state = 1}, + [24295] = {.lex_state = 0, .external_lex_state = 1}, + [24296] = {.lex_state = 0, .external_lex_state = 1}, + [24297] = {.lex_state = 0, .external_lex_state = 1}, + [24298] = {.lex_state = 0, .external_lex_state = 1}, + [24299] = {.lex_state = 0, .external_lex_state = 1}, + [24300] = {.lex_state = 0, .external_lex_state = 1}, + [24301] = {.lex_state = 0, .external_lex_state = 1}, + [24302] = {.lex_state = 0, .external_lex_state = 1}, + [24303] = {.lex_state = 0, .external_lex_state = 1}, + [24304] = {.lex_state = 0, .external_lex_state = 1}, + [24305] = {.lex_state = 0, .external_lex_state = 1}, + [24306] = {.lex_state = 0, .external_lex_state = 1}, + [24307] = {.lex_state = 0, .external_lex_state = 1}, + [24308] = {.lex_state = 0, .external_lex_state = 1}, + [24309] = {.lex_state = 0, .external_lex_state = 1}, + [24310] = {.lex_state = 0, .external_lex_state = 1}, + [24311] = {.lex_state = 0, .external_lex_state = 1}, + [24312] = {.lex_state = 0, .external_lex_state = 1}, + [24313] = {.lex_state = 0, .external_lex_state = 1}, + [24314] = {.lex_state = 0, .external_lex_state = 1}, + [24315] = {.lex_state = 0, .external_lex_state = 1}, + [24316] = {.lex_state = 0, .external_lex_state = 1}, + [24317] = {.lex_state = 0, .external_lex_state = 1}, + [24318] = {.lex_state = 0, .external_lex_state = 1}, + [24319] = {.lex_state = 0, .external_lex_state = 1}, + [24320] = {.lex_state = 0, .external_lex_state = 1}, + [24321] = {.lex_state = 0, .external_lex_state = 1}, + [24322] = {.lex_state = 0, .external_lex_state = 1}, + [24323] = {.lex_state = 0, .external_lex_state = 1}, + [24324] = {.lex_state = 0, .external_lex_state = 1}, + [24325] = {.lex_state = 546, .external_lex_state = 1}, + [24326] = {.lex_state = 0, .external_lex_state = 1}, + [24327] = {.lex_state = 0, .external_lex_state = 1}, + [24328] = {.lex_state = 132, .external_lex_state = 1}, + [24329] = {.lex_state = 0, .external_lex_state = 1}, + [24330] = {.lex_state = 0, .external_lex_state = 1}, + [24331] = {.lex_state = 0, .external_lex_state = 1}, + [24332] = {.lex_state = 0, .external_lex_state = 1}, + [24333] = {.lex_state = 0, .external_lex_state = 1}, + [24334] = {.lex_state = 0, .external_lex_state = 1}, + [24335] = {.lex_state = 0, .external_lex_state = 1}, + [24336] = {.lex_state = 0, .external_lex_state = 1}, + [24337] = {.lex_state = 0, .external_lex_state = 1}, + [24338] = {.lex_state = 0, .external_lex_state = 1}, + [24339] = {.lex_state = 0, .external_lex_state = 1}, + [24340] = {.lex_state = 0, .external_lex_state = 1}, + [24341] = {.lex_state = 0, .external_lex_state = 1}, + [24342] = {.lex_state = 0, .external_lex_state = 1}, + [24343] = {.lex_state = 0, .external_lex_state = 1}, + [24344] = {.lex_state = 0, .external_lex_state = 1}, + [24345] = {.lex_state = 0, .external_lex_state = 1}, + [24346] = {.lex_state = 0, .external_lex_state = 1}, + [24347] = {.lex_state = 0, .external_lex_state = 1}, + [24348] = {.lex_state = 0, .external_lex_state = 1}, + [24349] = {.lex_state = 0, .external_lex_state = 1}, + [24350] = {.lex_state = 0, .external_lex_state = 1}, + [24351] = {.lex_state = 0, .external_lex_state = 1}, + [24352] = {.lex_state = 0, .external_lex_state = 1}, + [24353] = {.lex_state = 0, .external_lex_state = 1}, + [24354] = {.lex_state = 0, .external_lex_state = 1}, + [24355] = {.lex_state = 0, .external_lex_state = 1}, + [24356] = {.lex_state = 0, .external_lex_state = 1}, + [24357] = {.lex_state = 0, .external_lex_state = 1}, + [24358] = {.lex_state = 0, .external_lex_state = 1}, + [24359] = {.lex_state = 0, .external_lex_state = 1}, + [24360] = {.lex_state = 0, .external_lex_state = 1}, + [24361] = {.lex_state = 0, .external_lex_state = 1}, + [24362] = {.lex_state = 0, .external_lex_state = 1}, + [24363] = {.lex_state = 0, .external_lex_state = 1}, + [24364] = {.lex_state = 0, .external_lex_state = 1}, + [24365] = {.lex_state = 0, .external_lex_state = 1}, + [24366] = {.lex_state = 0, .external_lex_state = 1}, + [24367] = {.lex_state = 0, .external_lex_state = 1}, + [24368] = {.lex_state = 0, .external_lex_state = 1}, + [24369] = {.lex_state = 0, .external_lex_state = 1}, + [24370] = {.lex_state = 0, .external_lex_state = 1}, + [24371] = {.lex_state = 0, .external_lex_state = 1}, + [24372] = {.lex_state = 0, .external_lex_state = 1}, + [24373] = {.lex_state = 0, .external_lex_state = 1}, + [24374] = {.lex_state = 0, .external_lex_state = 1}, + [24375] = {.lex_state = 0, .external_lex_state = 1}, + [24376] = {.lex_state = 0, .external_lex_state = 1}, + [24377] = {.lex_state = 0, .external_lex_state = 1}, + [24378] = {.lex_state = 0, .external_lex_state = 1}, + [24379] = {.lex_state = 0, .external_lex_state = 1}, + [24380] = {.lex_state = 125, .external_lex_state = 1}, + [24381] = {.lex_state = 0, .external_lex_state = 1}, + [24382] = {.lex_state = 0, .external_lex_state = 1}, + [24383] = {.lex_state = 0, .external_lex_state = 1}, + [24384] = {.lex_state = 0, .external_lex_state = 1}, + [24385] = {.lex_state = 0, .external_lex_state = 1}, + [24386] = {.lex_state = 0, .external_lex_state = 1}, + [24387] = {.lex_state = 0, .external_lex_state = 1}, + [24388] = {.lex_state = 0, .external_lex_state = 1}, + [24389] = {.lex_state = 0, .external_lex_state = 1}, + [24390] = {.lex_state = 0, .external_lex_state = 1}, + [24391] = {.lex_state = 0, .external_lex_state = 1}, + [24392] = {.lex_state = 0, .external_lex_state = 1}, + [24393] = {.lex_state = 0, .external_lex_state = 1}, + [24394] = {.lex_state = 0, .external_lex_state = 1}, + [24395] = {.lex_state = 0, .external_lex_state = 1}, + [24396] = {.lex_state = 0, .external_lex_state = 1}, + [24397] = {.lex_state = 0, .external_lex_state = 1}, + [24398] = {.lex_state = 0, .external_lex_state = 1}, + [24399] = {.lex_state = 0, .external_lex_state = 1}, + [24400] = {.lex_state = 0, .external_lex_state = 1}, + [24401] = {.lex_state = 0, .external_lex_state = 1}, + [24402] = {.lex_state = 0, .external_lex_state = 1}, + [24403] = {.lex_state = 0, .external_lex_state = 1}, + [24404] = {.lex_state = 0, .external_lex_state = 1}, + [24405] = {.lex_state = 0, .external_lex_state = 1}, + [24406] = {.lex_state = 0, .external_lex_state = 1}, + [24407] = {.lex_state = 0, .external_lex_state = 1}, + [24408] = {.lex_state = 0, .external_lex_state = 1}, + [24409] = {.lex_state = 0, .external_lex_state = 1}, + [24410] = {.lex_state = 0, .external_lex_state = 1}, + [24411] = {.lex_state = 0, .external_lex_state = 1}, + [24412] = {.lex_state = 0, .external_lex_state = 1}, + [24413] = {.lex_state = 0, .external_lex_state = 1}, + [24414] = {.lex_state = 0, .external_lex_state = 1}, + [24415] = {.lex_state = 0, .external_lex_state = 1}, + [24416] = {.lex_state = 0, .external_lex_state = 1}, + [24417] = {.lex_state = 125, .external_lex_state = 1}, + [24418] = {.lex_state = 0, .external_lex_state = 1}, + [24419] = {.lex_state = 0, .external_lex_state = 1}, + [24420] = {.lex_state = 0, .external_lex_state = 1}, + [24421] = {.lex_state = 0, .external_lex_state = 1}, + [24422] = {.lex_state = 0, .external_lex_state = 1}, + [24423] = {.lex_state = 0, .external_lex_state = 1}, + [24424] = {.lex_state = 0, .external_lex_state = 1}, + [24425] = {.lex_state = 0, .external_lex_state = 1}, + [24426] = {.lex_state = 0, .external_lex_state = 1}, + [24427] = {.lex_state = 0, .external_lex_state = 1}, + [24428] = {.lex_state = 0, .external_lex_state = 1}, + [24429] = {.lex_state = 0, .external_lex_state = 1}, + [24430] = {.lex_state = 0, .external_lex_state = 1}, + [24431] = {.lex_state = 0, .external_lex_state = 1}, + [24432] = {.lex_state = 0, .external_lex_state = 1}, + [24433] = {.lex_state = 0, .external_lex_state = 1}, + [24434] = {.lex_state = 0, .external_lex_state = 1}, + [24435] = {.lex_state = 0, .external_lex_state = 1}, + [24436] = {.lex_state = 0, .external_lex_state = 1}, + [24437] = {.lex_state = 0, .external_lex_state = 1}, + [24438] = {.lex_state = 0, .external_lex_state = 1}, + [24439] = {.lex_state = 0, .external_lex_state = 1}, + [24440] = {.lex_state = 0, .external_lex_state = 1}, + [24441] = {.lex_state = 0, .external_lex_state = 1}, + [24442] = {.lex_state = 0, .external_lex_state = 1}, + [24443] = {.lex_state = 0, .external_lex_state = 1}, + [24444] = {.lex_state = 125, .external_lex_state = 1}, + [24445] = {.lex_state = 0, .external_lex_state = 1}, + [24446] = {.lex_state = 0, .external_lex_state = 1}, + [24447] = {.lex_state = 0, .external_lex_state = 1}, + [24448] = {.lex_state = 0, .external_lex_state = 1}, + [24449] = {.lex_state = 0, .external_lex_state = 1}, + [24450] = {.lex_state = 0, .external_lex_state = 1}, + [24451] = {.lex_state = 0, .external_lex_state = 1}, + [24452] = {.lex_state = 0, .external_lex_state = 1}, + [24453] = {.lex_state = 0, .external_lex_state = 1}, + [24454] = {.lex_state = 0, .external_lex_state = 1}, + [24455] = {.lex_state = 0, .external_lex_state = 1}, + [24456] = {.lex_state = 0, .external_lex_state = 1}, + [24457] = {.lex_state = 546, .external_lex_state = 1}, + [24458] = {.lex_state = 0, .external_lex_state = 1}, + [24459] = {.lex_state = 0, .external_lex_state = 1}, + [24460] = {.lex_state = 122, .external_lex_state = 1}, + [24461] = {.lex_state = 0, .external_lex_state = 1}, + [24462] = {.lex_state = 0, .external_lex_state = 1}, + [24463] = {.lex_state = 0, .external_lex_state = 1}, + [24464] = {.lex_state = 0, .external_lex_state = 1}, + [24465] = {.lex_state = 0, .external_lex_state = 1}, + [24466] = {.lex_state = 0, .external_lex_state = 1}, + [24467] = {.lex_state = 0, .external_lex_state = 1}, + [24468] = {.lex_state = 0, .external_lex_state = 1}, + [24469] = {.lex_state = 0, .external_lex_state = 1}, + [24470] = {.lex_state = 0, .external_lex_state = 1}, + [24471] = {.lex_state = 125, .external_lex_state = 1}, + [24472] = {.lex_state = 0, .external_lex_state = 1}, + [24473] = {.lex_state = 0, .external_lex_state = 1}, + [24474] = {.lex_state = 0, .external_lex_state = 1}, + [24475] = {.lex_state = 125, .external_lex_state = 1}, + [24476] = {.lex_state = 0, .external_lex_state = 1}, + [24477] = {.lex_state = 0, .external_lex_state = 1}, + [24478] = {.lex_state = 0, .external_lex_state = 1}, + [24479] = {.lex_state = 0, .external_lex_state = 1}, + [24480] = {.lex_state = 0, .external_lex_state = 1}, + [24481] = {.lex_state = 0, .external_lex_state = 1}, + [24482] = {.lex_state = 0, .external_lex_state = 1}, + [24483] = {.lex_state = 0, .external_lex_state = 1}, + [24484] = {.lex_state = 0, .external_lex_state = 1}, + [24485] = {.lex_state = 0, .external_lex_state = 1}, + [24486] = {.lex_state = 0, .external_lex_state = 1}, + [24487] = {.lex_state = 0, .external_lex_state = 1}, + [24488] = {.lex_state = 0, .external_lex_state = 1}, + [24489] = {.lex_state = 0, .external_lex_state = 1}, + [24490] = {.lex_state = 0, .external_lex_state = 1}, + [24491] = {.lex_state = 0, .external_lex_state = 1}, + [24492] = {.lex_state = 0, .external_lex_state = 1}, + [24493] = {.lex_state = 0, .external_lex_state = 1}, + [24494] = {.lex_state = 0, .external_lex_state = 1}, + [24495] = {.lex_state = 0, .external_lex_state = 1}, + [24496] = {.lex_state = 0, .external_lex_state = 1}, + [24497] = {.lex_state = 0, .external_lex_state = 1}, + [24498] = {.lex_state = 0, .external_lex_state = 1}, + [24499] = {.lex_state = 125, .external_lex_state = 1}, + [24500] = {.lex_state = 0, .external_lex_state = 1}, + [24501] = {.lex_state = 0, .external_lex_state = 1}, + [24502] = {.lex_state = 0, .external_lex_state = 1}, + [24503] = {.lex_state = 0, .external_lex_state = 1}, + [24504] = {.lex_state = 0, .external_lex_state = 1}, + [24505] = {.lex_state = 0, .external_lex_state = 1}, + [24506] = {.lex_state = 0, .external_lex_state = 1}, + [24507] = {.lex_state = 0, .external_lex_state = 1}, + [24508] = {.lex_state = 0, .external_lex_state = 1}, + [24509] = {.lex_state = 0, .external_lex_state = 1}, + [24510] = {.lex_state = 0, .external_lex_state = 1}, + [24511] = {.lex_state = 0, .external_lex_state = 1}, + [24512] = {.lex_state = 0, .external_lex_state = 1}, + [24513] = {.lex_state = 0, .external_lex_state = 1}, + [24514] = {.lex_state = 0, .external_lex_state = 1}, + [24515] = {.lex_state = 0, .external_lex_state = 1}, + [24516] = {.lex_state = 0, .external_lex_state = 1}, + [24517] = {.lex_state = 0, .external_lex_state = 1}, + [24518] = {.lex_state = 0, .external_lex_state = 1}, + [24519] = {.lex_state = 0, .external_lex_state = 1}, + [24520] = {.lex_state = 0, .external_lex_state = 1}, + [24521] = {.lex_state = 0, .external_lex_state = 1}, + [24522] = {.lex_state = 0, .external_lex_state = 1}, + [24523] = {.lex_state = 0, .external_lex_state = 1}, + [24524] = {.lex_state = 0, .external_lex_state = 1}, + [24525] = {.lex_state = 0, .external_lex_state = 1}, + [24526] = {.lex_state = 0, .external_lex_state = 1}, + [24527] = {.lex_state = 0, .external_lex_state = 1}, + [24528] = {.lex_state = 0, .external_lex_state = 1}, + [24529] = {.lex_state = 0, .external_lex_state = 1}, + [24530] = {.lex_state = 0, .external_lex_state = 1}, + [24531] = {.lex_state = 0, .external_lex_state = 1}, + [24532] = {.lex_state = 0, .external_lex_state = 1}, + [24533] = {.lex_state = 0, .external_lex_state = 1}, + [24534] = {.lex_state = 0, .external_lex_state = 1}, + [24535] = {.lex_state = 0, .external_lex_state = 1}, + [24536] = {.lex_state = 0, .external_lex_state = 1}, + [24537] = {.lex_state = 0, .external_lex_state = 1}, + [24538] = {.lex_state = 0, .external_lex_state = 1}, + [24539] = {.lex_state = 0, .external_lex_state = 1}, + [24540] = {.lex_state = 0, .external_lex_state = 1}, + [24541] = {.lex_state = 0, .external_lex_state = 1}, + [24542] = {.lex_state = 0, .external_lex_state = 1}, + [24543] = {.lex_state = 0, .external_lex_state = 1}, + [24544] = {.lex_state = 0, .external_lex_state = 1}, + [24545] = {.lex_state = 0, .external_lex_state = 1}, + [24546] = {.lex_state = 0, .external_lex_state = 1}, + [24547] = {.lex_state = 0, .external_lex_state = 1}, + [24548] = {.lex_state = 0, .external_lex_state = 1}, + [24549] = {.lex_state = 0, .external_lex_state = 1}, + [24550] = {.lex_state = 0, .external_lex_state = 1}, + [24551] = {.lex_state = 0, .external_lex_state = 1}, + [24552] = {.lex_state = 0, .external_lex_state = 1}, + [24553] = {.lex_state = 0, .external_lex_state = 1}, + [24554] = {.lex_state = 0, .external_lex_state = 1}, + [24555] = {.lex_state = 0, .external_lex_state = 1}, + [24556] = {.lex_state = 0, .external_lex_state = 1}, + [24557] = {.lex_state = 0, .external_lex_state = 1}, + [24558] = {.lex_state = 0, .external_lex_state = 1}, + [24559] = {.lex_state = 0, .external_lex_state = 1}, + [24560] = {.lex_state = 0, .external_lex_state = 1}, + [24561] = {.lex_state = 0, .external_lex_state = 1}, + [24562] = {.lex_state = 0, .external_lex_state = 1}, + [24563] = {.lex_state = 0, .external_lex_state = 1}, + [24564] = {.lex_state = 0, .external_lex_state = 1}, + [24565] = {.lex_state = 0, .external_lex_state = 1}, + [24566] = {.lex_state = 0, .external_lex_state = 1}, + [24567] = {.lex_state = 0, .external_lex_state = 1}, + [24568] = {.lex_state = 0, .external_lex_state = 1}, + [24569] = {.lex_state = 0, .external_lex_state = 1}, + [24570] = {.lex_state = 0, .external_lex_state = 1}, + [24571] = {.lex_state = 0, .external_lex_state = 1}, + [24572] = {.lex_state = 0, .external_lex_state = 1}, + [24573] = {.lex_state = 546, .external_lex_state = 1}, + [24574] = {.lex_state = 0, .external_lex_state = 1}, + [24575] = {.lex_state = 0, .external_lex_state = 1}, + [24576] = {.lex_state = 0, .external_lex_state = 1}, + [24577] = {.lex_state = 0, .external_lex_state = 1}, + [24578] = {.lex_state = 0, .external_lex_state = 1}, + [24579] = {.lex_state = 0, .external_lex_state = 1}, + [24580] = {.lex_state = 0, .external_lex_state = 1}, + [24581] = {.lex_state = 0, .external_lex_state = 1}, + [24582] = {.lex_state = 0, .external_lex_state = 1}, + [24583] = {.lex_state = 0, .external_lex_state = 1}, + [24584] = {.lex_state = 0, .external_lex_state = 1}, + [24585] = {.lex_state = 0, .external_lex_state = 1}, + [24586] = {.lex_state = 0, .external_lex_state = 1}, + [24587] = {.lex_state = 0, .external_lex_state = 1}, + [24588] = {.lex_state = 0, .external_lex_state = 1}, + [24589] = {.lex_state = 0, .external_lex_state = 1}, + [24590] = {.lex_state = 0, .external_lex_state = 1}, + [24591] = {.lex_state = 0, .external_lex_state = 1}, + [24592] = {.lex_state = 0, .external_lex_state = 1}, + [24593] = {.lex_state = 0, .external_lex_state = 1}, + [24594] = {.lex_state = 0, .external_lex_state = 1}, + [24595] = {.lex_state = 0, .external_lex_state = 1}, + [24596] = {.lex_state = 0, .external_lex_state = 1}, + [24597] = {.lex_state = 0, .external_lex_state = 1}, + [24598] = {.lex_state = 0, .external_lex_state = 1}, + [24599] = {.lex_state = 0, .external_lex_state = 1}, + [24600] = {.lex_state = 0, .external_lex_state = 1}, + [24601] = {.lex_state = 0, .external_lex_state = 1}, + [24602] = {.lex_state = 0, .external_lex_state = 1}, + [24603] = {.lex_state = 0, .external_lex_state = 1}, + [24604] = {.lex_state = 0, .external_lex_state = 1}, + [24605] = {.lex_state = 547, .external_lex_state = 1}, + [24606] = {.lex_state = 0, .external_lex_state = 1}, + [24607] = {.lex_state = 0, .external_lex_state = 1}, + [24608] = {.lex_state = 0, .external_lex_state = 1}, + [24609] = {.lex_state = 0, .external_lex_state = 1}, + [24610] = {.lex_state = 125, .external_lex_state = 1}, + [24611] = {.lex_state = 0, .external_lex_state = 1}, + [24612] = {.lex_state = 0, .external_lex_state = 1}, + [24613] = {.lex_state = 0, .external_lex_state = 1}, + [24614] = {.lex_state = 0, .external_lex_state = 1}, + [24615] = {.lex_state = 0, .external_lex_state = 1}, + [24616] = {.lex_state = 125, .external_lex_state = 1}, + [24617] = {.lex_state = 0, .external_lex_state = 1}, + [24618] = {.lex_state = 0, .external_lex_state = 1}, + [24619] = {.lex_state = 0, .external_lex_state = 1}, + [24620] = {.lex_state = 0, .external_lex_state = 1}, + [24621] = {.lex_state = 0, .external_lex_state = 1}, + [24622] = {.lex_state = 0, .external_lex_state = 1}, + [24623] = {.lex_state = 0, .external_lex_state = 1}, + [24624] = {.lex_state = 0, .external_lex_state = 1}, + [24625] = {.lex_state = 0, .external_lex_state = 1}, + [24626] = {.lex_state = 0, .external_lex_state = 1}, + [24627] = {.lex_state = 0, .external_lex_state = 1}, + [24628] = {.lex_state = 0, .external_lex_state = 1}, + [24629] = {.lex_state = 0, .external_lex_state = 1}, + [24630] = {.lex_state = 0, .external_lex_state = 1}, + [24631] = {.lex_state = 0, .external_lex_state = 1}, + [24632] = {.lex_state = 0, .external_lex_state = 1}, + [24633] = {.lex_state = 0, .external_lex_state = 1}, + [24634] = {.lex_state = 0, .external_lex_state = 1}, + [24635] = {.lex_state = 0, .external_lex_state = 1}, + [24636] = {.lex_state = 0, .external_lex_state = 1}, + [24637] = {.lex_state = 0, .external_lex_state = 1}, + [24638] = {.lex_state = 0, .external_lex_state = 1}, + [24639] = {.lex_state = 0, .external_lex_state = 1}, + [24640] = {.lex_state = 0, .external_lex_state = 1}, + [24641] = {.lex_state = 0, .external_lex_state = 1}, + [24642] = {.lex_state = 0, .external_lex_state = 1}, + [24643] = {.lex_state = 0, .external_lex_state = 1}, + [24644] = {.lex_state = 0, .external_lex_state = 1}, + [24645] = {.lex_state = 0, .external_lex_state = 1}, + [24646] = {.lex_state = 0, .external_lex_state = 1}, + [24647] = {.lex_state = 0, .external_lex_state = 1}, + [24648] = {.lex_state = 0, .external_lex_state = 1}, + [24649] = {.lex_state = 0, .external_lex_state = 1}, + [24650] = {.lex_state = 0, .external_lex_state = 1}, + [24651] = {.lex_state = 0, .external_lex_state = 1}, + [24652] = {.lex_state = 0, .external_lex_state = 1}, + [24653] = {.lex_state = 0, .external_lex_state = 1}, + [24654] = {.lex_state = 0, .external_lex_state = 1}, + [24655] = {.lex_state = 0, .external_lex_state = 1}, + [24656] = {.lex_state = 0, .external_lex_state = 1}, + [24657] = {.lex_state = 0, .external_lex_state = 1}, + [24658] = {.lex_state = 0, .external_lex_state = 1}, + [24659] = {.lex_state = 0, .external_lex_state = 1}, + [24660] = {.lex_state = 0, .external_lex_state = 1}, + [24661] = {.lex_state = 0, .external_lex_state = 1}, + [24662] = {.lex_state = 0, .external_lex_state = 1}, + [24663] = {.lex_state = 0, .external_lex_state = 1}, + [24664] = {.lex_state = 0, .external_lex_state = 1}, + [24665] = {.lex_state = 0, .external_lex_state = 1}, + [24666] = {.lex_state = 0, .external_lex_state = 1}, + [24667] = {.lex_state = 0, .external_lex_state = 1}, + [24668] = {.lex_state = 0, .external_lex_state = 1}, + [24669] = {.lex_state = 0, .external_lex_state = 1}, + [24670] = {.lex_state = 0, .external_lex_state = 1}, + [24671] = {.lex_state = 0, .external_lex_state = 1}, + [24672] = {.lex_state = 0, .external_lex_state = 1}, + [24673] = {.lex_state = 0, .external_lex_state = 1}, + [24674] = {.lex_state = 0, .external_lex_state = 1}, + [24675] = {.lex_state = 0, .external_lex_state = 1}, + [24676] = {.lex_state = 0, .external_lex_state = 1}, + [24677] = {.lex_state = 0, .external_lex_state = 1}, + [24678] = {.lex_state = 0, .external_lex_state = 1}, + [24679] = {.lex_state = 0, .external_lex_state = 1}, + [24680] = {.lex_state = 0, .external_lex_state = 1}, + [24681] = {.lex_state = 0, .external_lex_state = 1}, + [24682] = {.lex_state = 0, .external_lex_state = 1}, + [24683] = {.lex_state = 0, .external_lex_state = 1}, + [24684] = {.lex_state = 0, .external_lex_state = 1}, + [24685] = {.lex_state = 0, .external_lex_state = 1}, + [24686] = {.lex_state = 0, .external_lex_state = 1}, + [24687] = {.lex_state = 0, .external_lex_state = 1}, + [24688] = {.lex_state = 0, .external_lex_state = 1}, + [24689] = {.lex_state = 0, .external_lex_state = 1}, + [24690] = {.lex_state = 0, .external_lex_state = 1}, + [24691] = {.lex_state = 0, .external_lex_state = 1}, + [24692] = {.lex_state = 0, .external_lex_state = 1}, + [24693] = {.lex_state = 0, .external_lex_state = 1}, + [24694] = {.lex_state = 0, .external_lex_state = 1}, + [24695] = {.lex_state = 0, .external_lex_state = 1}, + [24696] = {.lex_state = 0, .external_lex_state = 1}, + [24697] = {.lex_state = 0, .external_lex_state = 1}, + [24698] = {.lex_state = 0, .external_lex_state = 1}, + [24699] = {.lex_state = 0, .external_lex_state = 1}, + [24700] = {.lex_state = 0, .external_lex_state = 1}, + [24701] = {.lex_state = 0, .external_lex_state = 1}, + [24702] = {.lex_state = 0, .external_lex_state = 1}, + [24703] = {.lex_state = 0, .external_lex_state = 1}, + [24704] = {.lex_state = 0, .external_lex_state = 1}, + [24705] = {.lex_state = 0, .external_lex_state = 1}, + [24706] = {.lex_state = 0, .external_lex_state = 1}, + [24707] = {.lex_state = 0, .external_lex_state = 1}, + [24708] = {.lex_state = 0, .external_lex_state = 1}, + [24709] = {.lex_state = 0, .external_lex_state = 1}, + [24710] = {.lex_state = 0, .external_lex_state = 1}, + [24711] = {.lex_state = 0, .external_lex_state = 1}, + [24712] = {.lex_state = 0, .external_lex_state = 1}, + [24713] = {.lex_state = 0, .external_lex_state = 1}, + [24714] = {.lex_state = 0, .external_lex_state = 1}, + [24715] = {.lex_state = 125, .external_lex_state = 1}, + [24716] = {.lex_state = 0, .external_lex_state = 1}, + [24717] = {.lex_state = 0, .external_lex_state = 1}, + [24718] = {.lex_state = 0, .external_lex_state = 1}, + [24719] = {.lex_state = 0, .external_lex_state = 1}, + [24720] = {.lex_state = 0, .external_lex_state = 1}, + [24721] = {.lex_state = 132, .external_lex_state = 1}, + [24722] = {.lex_state = 0, .external_lex_state = 1}, + [24723] = {.lex_state = 0, .external_lex_state = 1}, + [24724] = {.lex_state = 0, .external_lex_state = 1}, + [24725] = {.lex_state = 0, .external_lex_state = 1}, + [24726] = {.lex_state = 132, .external_lex_state = 1}, + [24727] = {.lex_state = 0, .external_lex_state = 1}, + [24728] = {.lex_state = 0, .external_lex_state = 1}, + [24729] = {.lex_state = 0, .external_lex_state = 1}, + [24730] = {.lex_state = 0, .external_lex_state = 1}, + [24731] = {.lex_state = 125, .external_lex_state = 1}, + [24732] = {.lex_state = 0, .external_lex_state = 1}, + [24733] = {.lex_state = 125, .external_lex_state = 1}, + [24734] = {.lex_state = 0, .external_lex_state = 1}, + [24735] = {.lex_state = 0, .external_lex_state = 1}, + [24736] = {.lex_state = 0, .external_lex_state = 1}, + [24737] = {.lex_state = 0, .external_lex_state = 1}, + [24738] = {.lex_state = 0, .external_lex_state = 1}, + [24739] = {.lex_state = 0, .external_lex_state = 1}, + [24740] = {.lex_state = 131, .external_lex_state = 1}, + [24741] = {.lex_state = 0, .external_lex_state = 1}, + [24742] = {.lex_state = 131, .external_lex_state = 1}, + [24743] = {.lex_state = 125, .external_lex_state = 1}, + [24744] = {.lex_state = 125, .external_lex_state = 1}, + [24745] = {.lex_state = 546, .external_lex_state = 1}, + [24746] = {.lex_state = 0, .external_lex_state = 1}, + [24747] = {.lex_state = 125, .external_lex_state = 1}, + [24748] = {.lex_state = 125, .external_lex_state = 1}, + [24749] = {.lex_state = 0, .external_lex_state = 1}, + [24750] = {.lex_state = 122, .external_lex_state = 1}, + [24751] = {.lex_state = 548, .external_lex_state = 1}, + [24752] = {.lex_state = 131, .external_lex_state = 1}, + [24753] = {.lex_state = 125, .external_lex_state = 1}, + [24754] = {.lex_state = 125, .external_lex_state = 1}, + [24755] = {.lex_state = 125, .external_lex_state = 1}, + [24756] = {.lex_state = 533, .external_lex_state = 1}, + [24757] = {.lex_state = 546, .external_lex_state = 1}, + [24758] = {.lex_state = 125, .external_lex_state = 1}, + [24759] = {.lex_state = 125, .external_lex_state = 1}, + [24760] = {.lex_state = 0, .external_lex_state = 1}, + [24761] = {.lex_state = 131, .external_lex_state = 1}, + [24762] = {.lex_state = 125, .external_lex_state = 1}, + [24763] = {.lex_state = 125, .external_lex_state = 1}, + [24764] = {.lex_state = 0, .external_lex_state = 1}, + [24765] = {.lex_state = 131, .external_lex_state = 1}, + [24766] = {.lex_state = 125, .external_lex_state = 1}, + [24767] = {.lex_state = 125, .external_lex_state = 1}, + [24768] = {.lex_state = 125, .external_lex_state = 1}, + [24769] = {.lex_state = 131, .external_lex_state = 1}, + [24770] = {.lex_state = 131, .external_lex_state = 1}, + [24771] = {.lex_state = 131, .external_lex_state = 1}, + [24772] = {.lex_state = 125, .external_lex_state = 1}, + [24773] = {.lex_state = 125, .external_lex_state = 1}, + [24774] = {.lex_state = 0, .external_lex_state = 1}, + [24775] = {.lex_state = 125, .external_lex_state = 1}, + [24776] = {.lex_state = 125, .external_lex_state = 1}, + [24777] = {.lex_state = 0, .external_lex_state = 1}, + [24778] = {.lex_state = 131, .external_lex_state = 1}, + [24779] = {.lex_state = 131, .external_lex_state = 1}, + [24780] = {.lex_state = 131, .external_lex_state = 1}, + [24781] = {.lex_state = 125, .external_lex_state = 1}, + [24782] = {.lex_state = 0, .external_lex_state = 1}, + [24783] = {.lex_state = 131, .external_lex_state = 1}, + [24784] = {.lex_state = 125, .external_lex_state = 1}, + [24785] = {.lex_state = 131, .external_lex_state = 1}, + [24786] = {.lex_state = 131, .external_lex_state = 1}, + [24787] = {.lex_state = 125, .external_lex_state = 1}, + [24788] = {.lex_state = 131, .external_lex_state = 1}, + [24789] = {.lex_state = 125, .external_lex_state = 1}, + [24790] = {.lex_state = 131, .external_lex_state = 1}, + [24791] = {.lex_state = 131, .external_lex_state = 1}, + [24792] = {.lex_state = 548, .external_lex_state = 1}, + [24793] = {.lex_state = 131, .external_lex_state = 1}, + [24794] = {.lex_state = 131, .external_lex_state = 1}, + [24795] = {.lex_state = 546, .external_lex_state = 1}, + [24796] = {.lex_state = 0, .external_lex_state = 1}, + [24797] = {.lex_state = 131, .external_lex_state = 1}, + [24798] = {.lex_state = 125, .external_lex_state = 1}, + [24799] = {.lex_state = 131, .external_lex_state = 1}, + [24800] = {.lex_state = 0, .external_lex_state = 1}, + [24801] = {.lex_state = 0, .external_lex_state = 1}, + [24802] = {.lex_state = 131, .external_lex_state = 1}, + [24803] = {.lex_state = 132, .external_lex_state = 1}, + [24804] = {.lex_state = 125, .external_lex_state = 1}, + [24805] = {.lex_state = 125, .external_lex_state = 1}, + [24806] = {.lex_state = 131, .external_lex_state = 1}, + [24807] = {.lex_state = 124, .external_lex_state = 1}, + [24808] = {.lex_state = 547, .external_lex_state = 1}, + [24809] = {.lex_state = 546, .external_lex_state = 1}, + [24810] = {.lex_state = 125, .external_lex_state = 1}, + [24811] = {.lex_state = 125, .external_lex_state = 1}, + [24812] = {.lex_state = 125, .external_lex_state = 1}, + [24813] = {.lex_state = 131, .external_lex_state = 1}, + [24814] = {.lex_state = 131, .external_lex_state = 1}, + [24815] = {.lex_state = 125, .external_lex_state = 1}, + [24816] = {.lex_state = 125, .external_lex_state = 1}, + [24817] = {.lex_state = 131, .external_lex_state = 1}, + [24818] = {.lex_state = 131, .external_lex_state = 1}, + [24819] = {.lex_state = 125, .external_lex_state = 1}, + [24820] = {.lex_state = 131, .external_lex_state = 1}, + [24821] = {.lex_state = 131, .external_lex_state = 1}, + [24822] = {.lex_state = 131, .external_lex_state = 1}, + [24823] = {.lex_state = 131, .external_lex_state = 1}, + [24824] = {.lex_state = 131, .external_lex_state = 1}, + [24825] = {.lex_state = 131, .external_lex_state = 1}, + [24826] = {.lex_state = 125, .external_lex_state = 1}, + [24827] = {.lex_state = 0, .external_lex_state = 1}, + [24828] = {.lex_state = 546, .external_lex_state = 1}, + [24829] = {.lex_state = 131, .external_lex_state = 1}, + [24830] = {.lex_state = 125, .external_lex_state = 1}, + [24831] = {.lex_state = 0, .external_lex_state = 1}, + [24832] = {.lex_state = 125, .external_lex_state = 1}, + [24833] = {.lex_state = 0, .external_lex_state = 1}, + [24834] = {.lex_state = 125, .external_lex_state = 1}, + [24835] = {.lex_state = 131, .external_lex_state = 1}, + [24836] = {.lex_state = 125, .external_lex_state = 1}, + [24837] = {.lex_state = 533, .external_lex_state = 1}, + [24838] = {.lex_state = 125, .external_lex_state = 1}, + [24839] = {.lex_state = 0, .external_lex_state = 1}, + [24840] = {.lex_state = 125, .external_lex_state = 1}, + [24841] = {.lex_state = 546, .external_lex_state = 1}, + [24842] = {.lex_state = 546, .external_lex_state = 1}, + [24843] = {.lex_state = 0, .external_lex_state = 1}, + [24844] = {.lex_state = 125, .external_lex_state = 1}, + [24845] = {.lex_state = 131, .external_lex_state = 1}, + [24846] = {.lex_state = 0, .external_lex_state = 1}, + [24847] = {.lex_state = 131, .external_lex_state = 1}, + [24848] = {.lex_state = 0, .external_lex_state = 1}, + [24849] = {.lex_state = 0, .external_lex_state = 1}, + [24850] = {.lex_state = 122, .external_lex_state = 1}, + [24851] = {.lex_state = 547, .external_lex_state = 1}, + [24852] = {.lex_state = 132, .external_lex_state = 1}, + [24853] = {.lex_state = 125, .external_lex_state = 1}, + [24854] = {.lex_state = 547, .external_lex_state = 1}, + [24855] = {.lex_state = 0, .external_lex_state = 1}, + [24856] = {.lex_state = 132, .external_lex_state = 1}, + [24857] = {.lex_state = 132, .external_lex_state = 1}, + [24858] = {.lex_state = 132, .external_lex_state = 1}, + [24859] = {.lex_state = 132, .external_lex_state = 1}, + [24860] = {.lex_state = 0, .external_lex_state = 1}, + [24861] = {.lex_state = 132, .external_lex_state = 1}, + [24862] = {.lex_state = 132, .external_lex_state = 1}, + [24863] = {.lex_state = 0, .external_lex_state = 1}, + [24864] = {.lex_state = 125, .external_lex_state = 1}, + [24865] = {.lex_state = 132, .external_lex_state = 1}, + [24866] = {.lex_state = 132, .external_lex_state = 1}, + [24867] = {.lex_state = 125, .external_lex_state = 1}, + [24868] = {.lex_state = 0, .external_lex_state = 1}, + [24869] = {.lex_state = 132, .external_lex_state = 1}, + [24870] = {.lex_state = 132, .external_lex_state = 1}, + [24871] = {.lex_state = 547, .external_lex_state = 1}, + [24872] = {.lex_state = 132, .external_lex_state = 1}, + [24873] = {.lex_state = 0, .external_lex_state = 1}, + [24874] = {.lex_state = 0, .external_lex_state = 1}, + [24875] = {.lex_state = 547, .external_lex_state = 1}, + [24876] = {.lex_state = 132, .external_lex_state = 1}, + [24877] = {.lex_state = 132, .external_lex_state = 1}, + [24878] = {.lex_state = 132, .external_lex_state = 1}, + [24879] = {.lex_state = 0, .external_lex_state = 1}, + [24880] = {.lex_state = 132, .external_lex_state = 1}, + [24881] = {.lex_state = 132, .external_lex_state = 1}, + [24882] = {.lex_state = 132, .external_lex_state = 1}, + [24883] = {.lex_state = 0, .external_lex_state = 1}, + [24884] = {.lex_state = 132, .external_lex_state = 1}, + [24885] = {.lex_state = 548, .external_lex_state = 1}, + [24886] = {.lex_state = 132, .external_lex_state = 1}, + [24887] = {.lex_state = 132, .external_lex_state = 1}, + [24888] = {.lex_state = 547, .external_lex_state = 1}, + [24889] = {.lex_state = 132, .external_lex_state = 1}, + [24890] = {.lex_state = 132, .external_lex_state = 1}, + [24891] = {.lex_state = 132, .external_lex_state = 1}, + [24892] = {.lex_state = 547, .external_lex_state = 1}, + [24893] = {.lex_state = 132, .external_lex_state = 1}, + [24894] = {.lex_state = 132, .external_lex_state = 1}, + [24895] = {.lex_state = 132, .external_lex_state = 1}, + [24896] = {.lex_state = 0, .external_lex_state = 1}, + [24897] = {.lex_state = 0, .external_lex_state = 1}, + [24898] = {.lex_state = 0, .external_lex_state = 1}, + [24899] = {.lex_state = 132, .external_lex_state = 1}, + [24900] = {.lex_state = 132, .external_lex_state = 1}, + [24901] = {.lex_state = 132, .external_lex_state = 1}, + [24902] = {.lex_state = 132, .external_lex_state = 1}, + [24903] = {.lex_state = 132, .external_lex_state = 1}, + [24904] = {.lex_state = 132, .external_lex_state = 1}, + [24905] = {.lex_state = 0, .external_lex_state = 1}, + [24906] = {.lex_state = 547, .external_lex_state = 1}, + [24907] = {.lex_state = 132, .external_lex_state = 1}, + [24908] = {.lex_state = 132, .external_lex_state = 1}, + [24909] = {.lex_state = 132, .external_lex_state = 1}, + [24910] = {.lex_state = 132, .external_lex_state = 1}, + [24911] = {.lex_state = 0, .external_lex_state = 1}, + [24912] = {.lex_state = 0, .external_lex_state = 1}, + [24913] = {.lex_state = 132, .external_lex_state = 1}, + [24914] = {.lex_state = 132, .external_lex_state = 1}, + [24915] = {.lex_state = 0, .external_lex_state = 1}, + [24916] = {.lex_state = 132, .external_lex_state = 1}, + [24917] = {.lex_state = 132, .external_lex_state = 1}, + [24918] = {.lex_state = 0, .external_lex_state = 1}, + [24919] = {.lex_state = 132, .external_lex_state = 1}, + [24920] = {.lex_state = 0, .external_lex_state = 1}, + [24921] = {.lex_state = 132, .external_lex_state = 1}, + [24922] = {.lex_state = 132, .external_lex_state = 1}, + [24923] = {.lex_state = 132, .external_lex_state = 1}, + [24924] = {.lex_state = 132, .external_lex_state = 1}, + [24925] = {.lex_state = 132, .external_lex_state = 1}, + [24926] = {.lex_state = 132, .external_lex_state = 1}, + [24927] = {.lex_state = 132, .external_lex_state = 1}, + [24928] = {.lex_state = 132, .external_lex_state = 1}, + [24929] = {.lex_state = 0, .external_lex_state = 1}, + [24930] = {.lex_state = 132, .external_lex_state = 1}, + [24931] = {.lex_state = 132, .external_lex_state = 1}, + [24932] = {.lex_state = 132, .external_lex_state = 1}, + [24933] = {.lex_state = 132, .external_lex_state = 1}, + [24934] = {.lex_state = 533, .external_lex_state = 1}, + [24935] = {.lex_state = 132, .external_lex_state = 1}, + [24936] = {.lex_state = 0, .external_lex_state = 1}, + [24937] = {.lex_state = 132, .external_lex_state = 1}, + [24938] = {.lex_state = 132, .external_lex_state = 1}, + [24939] = {.lex_state = 132, .external_lex_state = 1}, + [24940] = {.lex_state = 547, .external_lex_state = 1}, + [24941] = {.lex_state = 132, .external_lex_state = 1}, + [24942] = {.lex_state = 132, .external_lex_state = 1}, + [24943] = {.lex_state = 547, .external_lex_state = 1}, + [24944] = {.lex_state = 0, .external_lex_state = 1}, + [24945] = {.lex_state = 132, .external_lex_state = 1}, + [24946] = {.lex_state = 132, .external_lex_state = 1}, + [24947] = {.lex_state = 0, .external_lex_state = 1}, + [24948] = {.lex_state = 0, .external_lex_state = 1}, + [24949] = {.lex_state = 132, .external_lex_state = 1}, + [24950] = {.lex_state = 132, .external_lex_state = 1}, + [24951] = {.lex_state = 132, .external_lex_state = 1}, + [24952] = {.lex_state = 547, .external_lex_state = 1}, + [24953] = {.lex_state = 132, .external_lex_state = 1}, + [24954] = {.lex_state = 0, .external_lex_state = 1}, + [24955] = {.lex_state = 132, .external_lex_state = 1}, + [24956] = {.lex_state = 0, .external_lex_state = 1}, + [24957] = {.lex_state = 132, .external_lex_state = 1}, + [24958] = {.lex_state = 132, .external_lex_state = 1}, + [24959] = {.lex_state = 132, .external_lex_state = 1}, + [24960] = {.lex_state = 547, .external_lex_state = 1}, + [24961] = {.lex_state = 547, .external_lex_state = 1}, + [24962] = {.lex_state = 132, .external_lex_state = 1}, + [24963] = {.lex_state = 125, .external_lex_state = 1}, + [24964] = {.lex_state = 132, .external_lex_state = 1}, + [24965] = {.lex_state = 0, .external_lex_state = 1}, + [24966] = {.lex_state = 132, .external_lex_state = 1}, + [24967] = {.lex_state = 0, .external_lex_state = 1}, + [24968] = {.lex_state = 132, .external_lex_state = 1}, + [24969] = {.lex_state = 132, .external_lex_state = 1}, + [24970] = {.lex_state = 547, .external_lex_state = 1}, + [24971] = {.lex_state = 132, .external_lex_state = 1}, + [24972] = {.lex_state = 132, .external_lex_state = 1}, + [24973] = {.lex_state = 132, .external_lex_state = 1}, + [24974] = {.lex_state = 132, .external_lex_state = 1}, + [24975] = {.lex_state = 132, .external_lex_state = 1}, + [24976] = {.lex_state = 132, .external_lex_state = 1}, + [24977] = {.lex_state = 132, .external_lex_state = 1}, + [24978] = {.lex_state = 547, .external_lex_state = 1}, + [24979] = {.lex_state = 0, .external_lex_state = 1}, + [24980] = {.lex_state = 0, .external_lex_state = 1}, + [24981] = {.lex_state = 132, .external_lex_state = 1}, + [24982] = {.lex_state = 132, .external_lex_state = 1}, + [24983] = {.lex_state = 547, .external_lex_state = 1}, + [24984] = {.lex_state = 548, .external_lex_state = 1}, + [24985] = {.lex_state = 132, .external_lex_state = 1}, + [24986] = {.lex_state = 547, .external_lex_state = 1}, + [24987] = {.lex_state = 0, .external_lex_state = 1}, + [24988] = {.lex_state = 547, .external_lex_state = 1}, + [24989] = {.lex_state = 132, .external_lex_state = 1}, + [24990] = {.lex_state = 132, .external_lex_state = 1}, + [24991] = {.lex_state = 0, .external_lex_state = 1}, + [24992] = {.lex_state = 132, .external_lex_state = 1}, + [24993] = {.lex_state = 132, .external_lex_state = 1}, + [24994] = {.lex_state = 132, .external_lex_state = 1}, + [24995] = {.lex_state = 132, .external_lex_state = 1}, + [24996] = {.lex_state = 547, .external_lex_state = 1}, + [24997] = {.lex_state = 132, .external_lex_state = 1}, + [24998] = {.lex_state = 0, .external_lex_state = 1}, + [24999] = {.lex_state = 132, .external_lex_state = 1}, + [25000] = {.lex_state = 0, .external_lex_state = 1}, + [25001] = {.lex_state = 122, .external_lex_state = 1}, + [25002] = {.lex_state = 132, .external_lex_state = 1}, + [25003] = {.lex_state = 547, .external_lex_state = 1}, + [25004] = {.lex_state = 132, .external_lex_state = 1}, + [25005] = {.lex_state = 0, .external_lex_state = 1}, + [25006] = {.lex_state = 132, .external_lex_state = 1}, + [25007] = {.lex_state = 0, .external_lex_state = 1}, + [25008] = {.lex_state = 132, .external_lex_state = 1}, + [25009] = {.lex_state = 132, .external_lex_state = 1}, + [25010] = {.lex_state = 0, .external_lex_state = 1}, + [25011] = {.lex_state = 132, .external_lex_state = 1}, + [25012] = {.lex_state = 132, .external_lex_state = 1}, + [25013] = {.lex_state = 132, .external_lex_state = 1}, + [25014] = {.lex_state = 132, .external_lex_state = 1}, + [25015] = {.lex_state = 0, .external_lex_state = 1}, + [25016] = {.lex_state = 547, .external_lex_state = 1}, + [25017] = {.lex_state = 0, .external_lex_state = 1}, + [25018] = {.lex_state = 132, .external_lex_state = 1}, + [25019] = {.lex_state = 547, .external_lex_state = 1}, + [25020] = {.lex_state = 0, .external_lex_state = 1}, + [25021] = {.lex_state = 132, .external_lex_state = 1}, + [25022] = {.lex_state = 547, .external_lex_state = 1}, + [25023] = {.lex_state = 132, .external_lex_state = 1}, + [25024] = {.lex_state = 132, .external_lex_state = 1}, + [25025] = {.lex_state = 132, .external_lex_state = 1}, + [25026] = {.lex_state = 0, .external_lex_state = 1}, + [25027] = {.lex_state = 132, .external_lex_state = 1}, + [25028] = {.lex_state = 132, .external_lex_state = 1}, + [25029] = {.lex_state = 0, .external_lex_state = 1}, + [25030] = {.lex_state = 0, .external_lex_state = 1}, + [25031] = {.lex_state = 132, .external_lex_state = 1}, + [25032] = {.lex_state = 132, .external_lex_state = 1}, + [25033] = {.lex_state = 132, .external_lex_state = 1}, + [25034] = {.lex_state = 547, .external_lex_state = 1}, + [25035] = {.lex_state = 132, .external_lex_state = 1}, + [25036] = {.lex_state = 0, .external_lex_state = 1}, + [25037] = {.lex_state = 132, .external_lex_state = 1}, + [25038] = {.lex_state = 132, .external_lex_state = 1}, + [25039] = {.lex_state = 132, .external_lex_state = 1}, + [25040] = {.lex_state = 132, .external_lex_state = 1}, + [25041] = {.lex_state = 132, .external_lex_state = 1}, + [25042] = {.lex_state = 132, .external_lex_state = 1}, + [25043] = {.lex_state = 0, .external_lex_state = 1}, + [25044] = {.lex_state = 0, .external_lex_state = 1}, + [25045] = {.lex_state = 132, .external_lex_state = 1}, + [25046] = {.lex_state = 132, .external_lex_state = 1}, + [25047] = {.lex_state = 132, .external_lex_state = 1}, + [25048] = {.lex_state = 132, .external_lex_state = 1}, + [25049] = {.lex_state = 132, .external_lex_state = 1}, + [25050] = {.lex_state = 0, .external_lex_state = 1}, + [25051] = {.lex_state = 0, .external_lex_state = 1}, + [25052] = {.lex_state = 132, .external_lex_state = 1}, + [25053] = {.lex_state = 132, .external_lex_state = 1}, + [25054] = {.lex_state = 0, .external_lex_state = 1}, + [25055] = {.lex_state = 0, .external_lex_state = 1}, + [25056] = {.lex_state = 0, .external_lex_state = 1}, + [25057] = {.lex_state = 0, .external_lex_state = 1}, + [25058] = {.lex_state = 132, .external_lex_state = 1}, + [25059] = {.lex_state = 132, .external_lex_state = 1}, + [25060] = {.lex_state = 132, .external_lex_state = 1}, + [25061] = {.lex_state = 132, .external_lex_state = 1}, + [25062] = {.lex_state = 132, .external_lex_state = 1}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_string_scon] = ACTIONS(1), + [sym_char_scon] = ACTIONS(1), + [sym__primeAlphaNumeric_ident] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [aux_sym_lab_token1] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_POUND_LBRACK] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_let] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_end] = ACTIONS(1), + [anon_sym_andalso] = ACTIONS(1), + [anon_sym_handle] = ACTIONS(1), + [anon_sym_raise] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_then] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_of] = ACTIONS(1), + [anon_sym_fn] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_val] = ACTIONS(1), + [anon_sym_rec] = ACTIONS(1), + [anon_sym_and] = ACTIONS(1), + [anon_sym_fun] = ACTIONS(1), + [anon_sym_type] = ACTIONS(1), + [anon_sym_datatype] = ACTIONS(1), + [anon_sym_withtype] = ACTIONS(1), + [anon_sym_abstype] = ACTIONS(1), + [anon_sym_with] = ACTIONS(1), + [anon_sym_exception] = ACTIONS(1), + [anon_sym_local] = ACTIONS(1), + [anon_sym_infix] = ACTIONS(1), + [aux_sym_infix_dec_token1] = ACTIONS(1), + [anon_sym_infixr] = ACTIONS(1), + [anon_sym_nonfix] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_COLON_GT] = ACTIONS(1), + [anon_sym_structure] = ACTIONS(1), + [anon_sym_sig] = ACTIONS(1), + [anon_sym_where] = ACTIONS(1), + [anon_sym_signature] = ACTIONS(1), + [anon_sym_eqtype] = ACTIONS(1), + [anon_sym_sharing] = ACTIONS(1), + [anon_sym_functor] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_u201c] = ACTIONS(1), + [anon_sym_u201d] = ACTIONS(1), + [anon_sym_u2018] = ACTIONS(1), + [anon_sym_u2019] = ACTIONS(1), + [anon_sym_BQUOTE] = ACTIONS(1), + [anon_sym_Definition] = ACTIONS(1), + [anon_sym_End] = ACTIONS(1), + [anon_sym_Termination] = ACTIONS(1), + [anon_sym_Datatype_COLON] = ACTIONS(1), + [anon_sym_Proof] = ACTIONS(1), + [anon_sym_QED] = ACTIONS(1), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1), + [anon_sym_u2227] = ACTIONS(1), + [anon_sym_SLASH_BSLASH] = ACTIONS(1), + [anon_sym_COLON_COLON] = ACTIONS(1), + [anon_sym_OLEAST] = ACTIONS(1), + [anon_sym_LEAST] = ACTIONS(1), + [anon_sym_some] = ACTIONS(1), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(1), + [anon_sym_u2203_BANG] = ACTIONS(1), + [anon_sym_QMARK_BANG] = ACTIONS(1), + [anon_sym_u2203] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_u2200] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_u03bb] = ACTIONS(1), + [anon_sym_BSLASH] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_u00ac] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_u21ce] = ACTIONS(1), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(1), + [anon_sym_LT_EQ_GT] = ACTIONS(1), + [anon_sym_u21d4] = ACTIONS(1), + [anon_sym_EQ_EQ_GT] = ACTIONS(1), + [anon_sym_u21d2] = ACTIONS(1), + [anon_sym_BSLASH_SLASH] = ACTIONS(1), + [anon_sym_u2228] = ACTIONS(1), + [anon_sym_u2209] = ACTIONS(1), + [anon_sym_NOTIN] = ACTIONS(1), + [anon_sym_u2208] = ACTIONS(1), + [anon_sym_IN] = ACTIONS(1), + [anon_sym_u227c] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_PERMUTES] = ACTIONS(1), + [anon_sym_HAS_SIZE] = ACTIONS(1), + [anon_sym_u2282] = ACTIONS(1), + [anon_sym_PSUBSET] = ACTIONS(1), + [anon_sym_u2286] = ACTIONS(1), + [anon_sym_u2265] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_u2264] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_u2286u1d63] = ACTIONS(1), + [anon_sym_RSUBSET] = ACTIONS(1), + [anon_sym_u2260] = ACTIONS(1), + [anon_sym_LT_GT] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_INSERT] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_o] = ACTIONS(1), + [anon_sym_list] = ACTIONS(1), + [anon_sym_num] = ACTIONS(1), + [anon_sym_string] = ACTIONS(1), + [aux_sym_hol_atomic_type_token1] = ACTIONS(1), + [sym_hol_true] = ACTIONS(1), + [sym_hol_false] = ACTIONS(1), + [sym_hol_number] = ACTIONS(1), + [sym_hol_string] = ACTIONS(1), + [sym_hol_character] = ACTIONS(1), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [1] = { + [sym_source_file] = STATE(24879), + [sym__scon] = STATE(11359), + [sym_vid] = STATE(10287), + [sym_longvid] = STATE(11478), + [sym__atexp] = STATE(4230), + [sym_scon_exp] = STATE(4230), + [sym_vid_exp] = STATE(4230), + [sym_record_exp] = STATE(4230), + [sym_recordsel_exp] = STATE(4230), + [sym_unit_exp] = STATE(4230), + [sym_tuple_exp] = STATE(4230), + [sym_list_exp] = STATE(4230), + [sym_vec_exp] = STATE(4230), + [sym_sequence_exp] = STATE(4230), + [sym_let_exp] = STATE(4230), + [sym_paren_exp] = STATE(4230), + [sym__exp] = STATE(18666), + [sym_app_exp] = STATE(7191), + [sym_typed_exp] = STATE(7191), + [sym_conj_exp] = STATE(7191), + [sym_disj_exp] = STATE(7191), + [sym_handle_exp] = STATE(7191), + [sym_raise_exp] = STATE(7191), + [sym_cond_exp] = STATE(7191), + [sym_iter_exp] = STATE(7191), + [sym_case_exp] = STATE(7191), + [sym_fn_exp] = STATE(7191), + [sym__dec_no_local] = STATE(13093), + [sym_do_dec] = STATE(13093), + [sym_val_dec] = STATE(13093), + [sym_fun_dec] = STATE(13093), + [sym_type_dec] = STATE(13093), + [sym_datatype_dec] = STATE(13093), + [sym_datarepl_dec] = STATE(13093), + [sym_abstype_dec] = STATE(13093), + [sym_exception_dec] = STATE(13093), + [sym_open_dec] = STATE(13093), + [sym_infix_dec] = STATE(13093), + [sym_infixr_dec] = STATE(13093), + [sym_nonfix_dec] = STATE(13093), + [sym_strid] = STATE(24934), + [sym__strdec] = STATE(13230), + [sym_structure_strdec] = STATE(13093), + [sym_local_strdec] = STATE(13093), + [sym__sigdec] = STATE(13230), + [sym_signature_sigdec] = STATE(13136), + [sym__fctdec] = STATE(13230), + [sym_functor_fctdec] = STATE(13192), + [sym__topdec] = STATE(4118), + [sym__program] = STATE(24918), + [sym_quoted_term] = STATE(4230), + [sym_quoted_type] = STATE(4230), + [sym_backquote] = STATE(4230), + [sym_hol_definition] = STATE(13230), + [sym_hol_definition_with_proof] = STATE(13230), + [sym_hol_datatype] = STATE(13230), + [sym_hol_theorem_with_proof] = STATE(13230), + [aux_sym_longvid_repeat1] = STATE(18882), + [aux_sym__program_repeat1] = STATE(4118), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_integer_scon] = ACTIONS(7), + [sym_word_scon] = ACTIONS(9), + [sym_real_scon] = ACTIONS(9), + [sym_string_scon] = ACTIONS(9), + [sym_char_scon] = ACTIONS(9), + [sym__alphaAlphaNumeric_ident] = ACTIONS(11), + [sym__symbolic_ident] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_op] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_POUND_LBRACK] = ACTIONS(25), + [anon_sym_let] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_case] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(39), + [anon_sym_val] = ACTIONS(41), + [anon_sym_fun] = ACTIONS(43), + [anon_sym_type] = ACTIONS(45), + [anon_sym_datatype] = ACTIONS(47), + [anon_sym_abstype] = ACTIONS(49), + [anon_sym_exception] = ACTIONS(51), + [anon_sym_local] = ACTIONS(53), + [anon_sym_open] = ACTIONS(55), + [anon_sym_infix] = ACTIONS(57), + [anon_sym_infixr] = ACTIONS(59), + [anon_sym_nonfix] = ACTIONS(61), + [anon_sym_structure] = ACTIONS(63), + [anon_sym_signature] = ACTIONS(65), + [anon_sym_functor] = ACTIONS(67), + [anon_sym_u201c] = ACTIONS(69), + [anon_sym_u2018] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [anon_sym_Definition] = ACTIONS(75), + [anon_sym_Datatype_COLON] = ACTIONS(77), + [anon_sym_Theorem] = ACTIONS(79), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [2] = { + [sym__scon] = STATE(11359), + [sym_vid] = STATE(10287), + [sym_longvid] = STATE(11478), + [sym__atexp] = STATE(4230), + [sym_scon_exp] = STATE(4230), + [sym_vid_exp] = STATE(4230), + [sym_record_exp] = STATE(4230), + [sym_recordsel_exp] = STATE(4230), + [sym_unit_exp] = STATE(4230), + [sym_tuple_exp] = STATE(4230), + [sym_list_exp] = STATE(4230), + [sym_vec_exp] = STATE(4230), + [sym_sequence_exp] = STATE(4230), + [sym_let_exp] = STATE(4230), + [sym_paren_exp] = STATE(4230), + [sym__exp] = STATE(18666), + [sym_app_exp] = STATE(7191), + [sym_typed_exp] = STATE(7191), + [sym_conj_exp] = STATE(7191), + [sym_disj_exp] = STATE(7191), + [sym_handle_exp] = STATE(7191), + [sym_raise_exp] = STATE(7191), + [sym_cond_exp] = STATE(7191), + [sym_iter_exp] = STATE(7191), + [sym_case_exp] = STATE(7191), + [sym_fn_exp] = STATE(7191), + [sym__dec_no_local] = STATE(13093), + [sym_do_dec] = STATE(13093), + [sym_val_dec] = STATE(13093), + [sym_fun_dec] = STATE(13093), + [sym_type_dec] = STATE(13093), + [sym_datatype_dec] = STATE(13093), + [sym_datarepl_dec] = STATE(13093), + [sym_abstype_dec] = STATE(13093), + [sym_exception_dec] = STATE(13093), + [sym_open_dec] = STATE(13093), + [sym_infix_dec] = STATE(13093), + [sym_infixr_dec] = STATE(13093), + [sym_nonfix_dec] = STATE(13093), + [sym_strid] = STATE(24934), + [sym__strdec] = STATE(13230), + [sym_structure_strdec] = STATE(13093), + [sym_local_strdec] = STATE(13093), + [sym__sigdec] = STATE(13230), + [sym_signature_sigdec] = STATE(13136), + [sym__fctdec] = STATE(13230), + [sym_functor_fctdec] = STATE(13192), + [sym__topdec] = STATE(4118), + [sym__program] = STATE(24868), + [sym_quoted_term] = STATE(4230), + [sym_quoted_type] = STATE(4230), + [sym_backquote] = STATE(4230), + [sym_hol_definition] = STATE(13230), + [sym_hol_definition_with_proof] = STATE(13230), + [sym_hol_datatype] = STATE(13230), + [sym_hol_theorem_with_proof] = STATE(13230), + [aux_sym_longvid_repeat1] = STATE(18882), + [aux_sym__program_repeat1] = STATE(4118), + [ts_builtin_sym_end] = ACTIONS(81), + [sym_integer_scon] = ACTIONS(7), + [sym_word_scon] = ACTIONS(9), + [sym_real_scon] = ACTIONS(9), + [sym_string_scon] = ACTIONS(9), + [sym_char_scon] = ACTIONS(9), + [sym__alphaAlphaNumeric_ident] = ACTIONS(11), + [sym__symbolic_ident] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_op] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_POUND] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(23), + [anon_sym_POUND_LBRACK] = ACTIONS(25), + [anon_sym_let] = ACTIONS(27), + [anon_sym_raise] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_while] = ACTIONS(33), + [anon_sym_do] = ACTIONS(35), + [anon_sym_case] = ACTIONS(37), + [anon_sym_fn] = ACTIONS(39), + [anon_sym_val] = ACTIONS(41), + [anon_sym_fun] = ACTIONS(43), + [anon_sym_type] = ACTIONS(45), + [anon_sym_datatype] = ACTIONS(47), + [anon_sym_abstype] = ACTIONS(49), + [anon_sym_exception] = ACTIONS(51), + [anon_sym_local] = ACTIONS(53), + [anon_sym_open] = ACTIONS(55), + [anon_sym_infix] = ACTIONS(57), + [anon_sym_infixr] = ACTIONS(59), + [anon_sym_nonfix] = ACTIONS(61), + [anon_sym_structure] = ACTIONS(63), + [anon_sym_signature] = ACTIONS(65), + [anon_sym_functor] = ACTIONS(67), + [anon_sym_u201c] = ACTIONS(69), + [anon_sym_u2018] = ACTIONS(71), + [anon_sym_BQUOTE] = ACTIONS(73), + [anon_sym_Definition] = ACTIONS(75), + [anon_sym_Datatype_COLON] = ACTIONS(77), + [anon_sym_Theorem] = ACTIONS(79), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [3] = { + [sym_hol_identifier] = STATE(4), + [sym__hol_term] = STATE(48), + [sym__hol_application_lhs] = STATE(4), + [sym_hol_application] = STATE(4), + [sym_hol_cond] = STATE(52), + [sym_hol_case] = STATE(52), + [sym_hol_binder] = STATE(52), + [sym_hol_left_unary_term] = STATE(52), + [sym_hol_binary_term] = STATE(52), + [sym_hol_annotated] = STATE(52), + [sym_hol_tuple] = STATE(52), + [sym_hol_list] = STATE(52), + [sym_hol_set] = STATE(52), + [sym__hol_literal] = STATE(52), + [anon_sym_LPAREN] = ACTIONS(83), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(85), + [anon_sym_if] = ACTIONS(93), + [anon_sym_case] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_u201d] = ACTIONS(85), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(97), + [sym__hol_symbolic] = ACTIONS(97), + [anon_sym_OLEAST] = ACTIONS(99), + [anon_sym_LEAST] = ACTIONS(99), + [anon_sym_some] = ACTIONS(99), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(99), + [anon_sym_u2203_BANG] = ACTIONS(101), + [anon_sym_QMARK_BANG] = ACTIONS(99), + [anon_sym_u2203] = ACTIONS(99), + [anon_sym_QMARK] = ACTIONS(99), + [anon_sym_u2200] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_AT] = ACTIONS(99), + [anon_sym_u03bb] = ACTIONS(101), + [anon_sym_BSLASH] = ACTIONS(99), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_u00ac] = ACTIONS(105), + [anon_sym_TILDE] = ACTIONS(105), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(107), + [sym_hol_false] = ACTIONS(107), + [sym_hol_number] = ACTIONS(109), + [sym_hol_string] = ACTIONS(109), + [sym_hol_character] = ACTIONS(109), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [4] = { + [sym_hol_identifier] = STATE(4), + [sym__hol_term] = STATE(48), + [sym__hol_application_lhs] = STATE(4), + [sym_hol_application] = STATE(4), + [sym_hol_cond] = STATE(52), + [sym_hol_case] = STATE(52), + [sym_hol_binder] = STATE(52), + [sym_hol_left_unary_term] = STATE(52), + [sym_hol_binary_term] = STATE(52), + [sym_hol_annotated] = STATE(52), + [sym_hol_tuple] = STATE(52), + [sym_hol_list] = STATE(52), + [sym_hol_set] = STATE(52), + [sym__hol_literal] = STATE(52), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_COMMA] = ACTIONS(111), + [anon_sym_RPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_RBRACK] = ACTIONS(111), + [anon_sym_SEMI] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_u201d] = ACTIONS(111), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [5] = { + [sym_hol_identifier] = STATE(5), + [sym__hol_term] = STATE(77), + [sym__hol_application_lhs] = STATE(5), + [sym_hol_application] = STATE(5), + [sym_hol_cond] = STATE(95), + [sym_hol_case] = STATE(95), + [sym_hol_binder] = STATE(95), + [sym_hol_left_unary_term] = STATE(95), + [sym_hol_binary_term] = STATE(95), + [sym_hol_annotated] = STATE(95), + [sym_hol_tuple] = STATE(95), + [sym_hol_list] = STATE(95), + [sym_hol_set] = STATE(95), + [sym__hol_literal] = STATE(95), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_COMMA] = ACTIONS(111), + [anon_sym_RPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_RBRACK] = ACTIONS(111), + [anon_sym_SEMI] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_u201d] = ACTIONS(111), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [6] = { + [sym_hol_identifier] = STATE(5), + [sym__hol_term] = STATE(77), + [sym__hol_application_lhs] = STATE(5), + [sym_hol_application] = STATE(5), + [sym_hol_cond] = STATE(95), + [sym_hol_case] = STATE(95), + [sym_hol_binder] = STATE(95), + [sym_hol_left_unary_term] = STATE(95), + [sym_hol_binary_term] = STATE(95), + [sym_hol_annotated] = STATE(95), + [sym_hol_tuple] = STATE(95), + [sym_hol_list] = STATE(95), + [sym_hol_set] = STATE(95), + [sym__hol_literal] = STATE(95), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(85), + [anon_sym_if] = ACTIONS(121), + [anon_sym_case] = ACTIONS(123), + [anon_sym_u201d] = ACTIONS(85), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(125), + [sym__hol_symbolic] = ACTIONS(125), + [anon_sym_OLEAST] = ACTIONS(127), + [anon_sym_LEAST] = ACTIONS(127), + [anon_sym_some] = ACTIONS(127), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(127), + [anon_sym_u2203_BANG] = ACTIONS(129), + [anon_sym_QMARK_BANG] = ACTIONS(127), + [anon_sym_u2203] = ACTIONS(127), + [anon_sym_QMARK] = ACTIONS(127), + [anon_sym_u2200] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_AT] = ACTIONS(127), + [anon_sym_u03bb] = ACTIONS(129), + [anon_sym_BSLASH] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_u00ac] = ACTIONS(133), + [anon_sym_TILDE] = ACTIONS(133), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(135), + [sym_hol_false] = ACTIONS(135), + [sym_hol_number] = ACTIONS(137), + [sym_hol_string] = ACTIONS(137), + [sym_hol_character] = ACTIONS(137), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [7] = { + [sym_hol_identifier] = STATE(8), + [sym__hol_term] = STATE(156), + [sym__hol_application_lhs] = STATE(8), + [sym_hol_application] = STATE(8), + [sym_hol_cond] = STATE(172), + [sym_hol_case] = STATE(172), + [sym_hol_binder] = STATE(172), + [sym_hol_left_unary_term] = STATE(172), + [sym_hol_binary_term] = STATE(172), + [sym_hol_annotated] = STATE(172), + [sym_hol_tuple] = STATE(172), + [sym_hol_list] = STATE(172), + [sym_hol_set] = STATE(172), + [sym__hol_literal] = STATE(172), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_if] = ACTIONS(145), + [anon_sym_case] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_End] = ACTIONS(89), + [anon_sym_Termination] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(149), + [sym__hol_symbolic] = ACTIONS(149), + [anon_sym_OLEAST] = ACTIONS(151), + [anon_sym_LEAST] = ACTIONS(151), + [anon_sym_some] = ACTIONS(151), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(151), + [anon_sym_u2203_BANG] = ACTIONS(153), + [anon_sym_QMARK_BANG] = ACTIONS(151), + [anon_sym_u2203] = ACTIONS(151), + [anon_sym_QMARK] = ACTIONS(151), + [anon_sym_u2200] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_AT] = ACTIONS(151), + [anon_sym_u03bb] = ACTIONS(153), + [anon_sym_BSLASH] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_u00ac] = ACTIONS(157), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(159), + [sym_hol_false] = ACTIONS(159), + [sym_hol_number] = ACTIONS(161), + [sym_hol_string] = ACTIONS(161), + [sym_hol_character] = ACTIONS(161), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [8] = { + [sym_hol_identifier] = STATE(8), + [sym__hol_term] = STATE(156), + [sym__hol_application_lhs] = STATE(8), + [sym_hol_application] = STATE(8), + [sym_hol_cond] = STATE(172), + [sym_hol_case] = STATE(172), + [sym_hol_binder] = STATE(172), + [sym_hol_left_unary_term] = STATE(172), + [sym_hol_binary_term] = STATE(172), + [sym_hol_annotated] = STATE(172), + [sym_hol_tuple] = STATE(172), + [sym_hol_list] = STATE(172), + [sym_hol_set] = STATE(172), + [sym__hol_literal] = STATE(172), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_End] = ACTIONS(113), + [anon_sym_Termination] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [9] = { + [sym_hol_identifier] = STATE(14), + [sym__hol_term] = STATE(228), + [sym__hol_application_lhs] = STATE(14), + [sym_hol_application] = STATE(14), + [sym_hol_cond] = STATE(262), + [sym_hol_case] = STATE(262), + [sym_hol_binder] = STATE(262), + [sym_hol_left_unary_term] = STATE(262), + [sym_hol_binary_term] = STATE(262), + [sym_hol_annotated] = STATE(262), + [sym_hol_tuple] = STATE(262), + [sym_hol_list] = STATE(262), + [sym_hol_set] = STATE(262), + [sym__hol_literal] = STATE(262), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(167), + [anon_sym_if] = ACTIONS(169), + [anon_sym_case] = ACTIONS(171), + [anon_sym_of] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(173), + [sym__hol_symbolic] = ACTIONS(173), + [anon_sym_OLEAST] = ACTIONS(175), + [anon_sym_LEAST] = ACTIONS(175), + [anon_sym_some] = ACTIONS(175), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(175), + [anon_sym_u2203_BANG] = ACTIONS(177), + [anon_sym_QMARK_BANG] = ACTIONS(175), + [anon_sym_u2203] = ACTIONS(175), + [anon_sym_QMARK] = ACTIONS(175), + [anon_sym_u2200] = ACTIONS(177), + [anon_sym_BANG] = ACTIONS(175), + [anon_sym_AT] = ACTIONS(175), + [anon_sym_u03bb] = ACTIONS(177), + [anon_sym_BSLASH] = ACTIONS(175), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_u00ac] = ACTIONS(181), + [anon_sym_TILDE] = ACTIONS(181), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(183), + [sym_hol_false] = ACTIONS(183), + [sym_hol_number] = ACTIONS(185), + [sym_hol_string] = ACTIONS(185), + [sym_hol_character] = ACTIONS(185), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [10] = { + [sym_hol_identifier] = STATE(10), + [sym__hol_term] = STATE(267), + [sym__hol_application_lhs] = STATE(10), + [sym_hol_application] = STATE(10), + [sym_hol_cond] = STATE(314), + [sym_hol_case] = STATE(314), + [sym_hol_binder] = STATE(314), + [sym_hol_left_unary_term] = STATE(314), + [sym_hol_binary_term] = STATE(314), + [sym_hol_annotated] = STATE(314), + [sym_hol_tuple] = STATE(314), + [sym_hol_list] = STATE(314), + [sym_hol_set] = STATE(314), + [sym__hol_literal] = STATE(314), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_else] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [11] = { + [sym_hol_identifier] = STATE(18), + [sym__hol_term] = STATE(245), + [sym__hol_application_lhs] = STATE(18), + [sym_hol_application] = STATE(18), + [sym_hol_cond] = STATE(352), + [sym_hol_case] = STATE(352), + [sym_hol_binder] = STATE(352), + [sym_hol_left_unary_term] = STATE(352), + [sym_hol_binary_term] = STATE(352), + [sym_hol_annotated] = STATE(352), + [sym_hol_tuple] = STATE(352), + [sym_hol_list] = STATE(352), + [sym_hol_set] = STATE(352), + [sym__hol_literal] = STATE(352), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(191), + [anon_sym_if] = ACTIONS(193), + [anon_sym_case] = ACTIONS(195), + [anon_sym_End] = ACTIONS(89), + [anon_sym_Termination] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(197), + [sym__hol_symbolic] = ACTIONS(197), + [anon_sym_OLEAST] = ACTIONS(199), + [anon_sym_LEAST] = ACTIONS(199), + [anon_sym_some] = ACTIONS(199), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(199), + [anon_sym_u2203_BANG] = ACTIONS(201), + [anon_sym_QMARK_BANG] = ACTIONS(199), + [anon_sym_u2203] = ACTIONS(199), + [anon_sym_QMARK] = ACTIONS(199), + [anon_sym_u2200] = ACTIONS(201), + [anon_sym_BANG] = ACTIONS(199), + [anon_sym_AT] = ACTIONS(199), + [anon_sym_u03bb] = ACTIONS(201), + [anon_sym_BSLASH] = ACTIONS(199), + [anon_sym_DASH] = ACTIONS(203), + [anon_sym_u00ac] = ACTIONS(205), + [anon_sym_TILDE] = ACTIONS(205), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(207), + [sym_hol_false] = ACTIONS(207), + [sym_hol_number] = ACTIONS(209), + [sym_hol_string] = ACTIONS(209), + [sym_hol_character] = ACTIONS(209), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [12] = { + [sym_hol_identifier] = STATE(13), + [sym__hol_term] = STATE(357), + [sym__hol_application_lhs] = STATE(13), + [sym_hol_application] = STATE(13), + [sym_hol_cond] = STATE(246), + [sym_hol_case] = STATE(246), + [sym_hol_binder] = STATE(246), + [sym_hol_left_unary_term] = STATE(246), + [sym_hol_binary_term] = STATE(246), + [sym_hol_annotated] = STATE(246), + [sym_hol_tuple] = STATE(246), + [sym_hol_list] = STATE(246), + [sym_hol_set] = STATE(246), + [sym__hol_literal] = STATE(246), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_LBRACE] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(215), + [anon_sym_if] = ACTIONS(217), + [anon_sym_then] = ACTIONS(89), + [anon_sym_case] = ACTIONS(219), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(221), + [sym__hol_symbolic] = ACTIONS(221), + [anon_sym_OLEAST] = ACTIONS(223), + [anon_sym_LEAST] = ACTIONS(223), + [anon_sym_some] = ACTIONS(223), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(223), + [anon_sym_u2203_BANG] = ACTIONS(225), + [anon_sym_QMARK_BANG] = ACTIONS(223), + [anon_sym_u2203] = ACTIONS(223), + [anon_sym_QMARK] = ACTIONS(223), + [anon_sym_u2200] = ACTIONS(225), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(223), + [anon_sym_u03bb] = ACTIONS(225), + [anon_sym_BSLASH] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(227), + [anon_sym_u00ac] = ACTIONS(229), + [anon_sym_TILDE] = ACTIONS(229), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(231), + [sym_hol_false] = ACTIONS(231), + [sym_hol_number] = ACTIONS(233), + [sym_hol_string] = ACTIONS(233), + [sym_hol_character] = ACTIONS(233), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [13] = { + [sym_hol_identifier] = STATE(13), + [sym__hol_term] = STATE(357), + [sym__hol_application_lhs] = STATE(13), + [sym_hol_application] = STATE(13), + [sym_hol_cond] = STATE(246), + [sym_hol_case] = STATE(246), + [sym_hol_binder] = STATE(246), + [sym_hol_left_unary_term] = STATE(246), + [sym_hol_binary_term] = STATE(246), + [sym_hol_annotated] = STATE(246), + [sym_hol_tuple] = STATE(246), + [sym_hol_list] = STATE(246), + [sym_hol_set] = STATE(246), + [sym__hol_literal] = STATE(246), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_then] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [14] = { + [sym_hol_identifier] = STATE(14), + [sym__hol_term] = STATE(228), + [sym__hol_application_lhs] = STATE(14), + [sym_hol_application] = STATE(14), + [sym_hol_cond] = STATE(262), + [sym_hol_case] = STATE(262), + [sym_hol_binder] = STATE(262), + [sym_hol_left_unary_term] = STATE(262), + [sym_hol_binary_term] = STATE(262), + [sym_hol_annotated] = STATE(262), + [sym_hol_tuple] = STATE(262), + [sym_hol_list] = STATE(262), + [sym_hol_set] = STATE(262), + [sym__hol_literal] = STATE(262), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_of] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [15] = { + [sym_hol_identifier] = STATE(16), + [sym__hol_term] = STATE(251), + [sym__hol_application_lhs] = STATE(16), + [sym_hol_application] = STATE(16), + [sym_hol_cond] = STATE(288), + [sym_hol_case] = STATE(288), + [sym_hol_binder] = STATE(288), + [sym_hol_left_unary_term] = STATE(288), + [sym_hol_binary_term] = STATE(288), + [sym_hol_annotated] = STATE(288), + [sym_hol_tuple] = STATE(288), + [sym_hol_list] = STATE(288), + [sym_hol_set] = STATE(288), + [sym__hol_literal] = STATE(288), + [anon_sym_LPAREN] = ACTIONS(235), + [anon_sym_LBRACE] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(239), + [anon_sym_if] = ACTIONS(241), + [anon_sym_case] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_Proof] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(245), + [sym__hol_symbolic] = ACTIONS(245), + [anon_sym_OLEAST] = ACTIONS(247), + [anon_sym_LEAST] = ACTIONS(247), + [anon_sym_some] = ACTIONS(247), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(247), + [anon_sym_u2203_BANG] = ACTIONS(249), + [anon_sym_QMARK_BANG] = ACTIONS(247), + [anon_sym_u2203] = ACTIONS(247), + [anon_sym_QMARK] = ACTIONS(247), + [anon_sym_u2200] = ACTIONS(249), + [anon_sym_BANG] = ACTIONS(247), + [anon_sym_AT] = ACTIONS(247), + [anon_sym_u03bb] = ACTIONS(249), + [anon_sym_BSLASH] = ACTIONS(247), + [anon_sym_DASH] = ACTIONS(251), + [anon_sym_u00ac] = ACTIONS(253), + [anon_sym_TILDE] = ACTIONS(253), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(255), + [sym_hol_false] = ACTIONS(255), + [sym_hol_number] = ACTIONS(257), + [sym_hol_string] = ACTIONS(257), + [sym_hol_character] = ACTIONS(257), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [16] = { + [sym_hol_identifier] = STATE(16), + [sym__hol_term] = STATE(251), + [sym__hol_application_lhs] = STATE(16), + [sym_hol_application] = STATE(16), + [sym_hol_cond] = STATE(288), + [sym_hol_case] = STATE(288), + [sym_hol_binder] = STATE(288), + [sym_hol_left_unary_term] = STATE(288), + [sym_hol_binary_term] = STATE(288), + [sym_hol_annotated] = STATE(288), + [sym_hol_tuple] = STATE(288), + [sym_hol_list] = STATE(288), + [sym_hol_set] = STATE(288), + [sym__hol_literal] = STATE(288), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_Proof] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [17] = { + [sym_hol_identifier] = STATE(10), + [sym__hol_term] = STATE(267), + [sym__hol_application_lhs] = STATE(10), + [sym_hol_application] = STATE(10), + [sym_hol_cond] = STATE(314), + [sym_hol_case] = STATE(314), + [sym_hol_binder] = STATE(314), + [sym_hol_left_unary_term] = STATE(314), + [sym_hol_binary_term] = STATE(314), + [sym_hol_annotated] = STATE(314), + [sym_hol_tuple] = STATE(314), + [sym_hol_list] = STATE(314), + [sym_hol_set] = STATE(314), + [sym__hol_literal] = STATE(314), + [anon_sym_LPAREN] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(261), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_else] = ACTIONS(89), + [anon_sym_case] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(269), + [sym__hol_symbolic] = ACTIONS(269), + [anon_sym_OLEAST] = ACTIONS(271), + [anon_sym_LEAST] = ACTIONS(271), + [anon_sym_some] = ACTIONS(271), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(271), + [anon_sym_u2203_BANG] = ACTIONS(273), + [anon_sym_QMARK_BANG] = ACTIONS(271), + [anon_sym_u2203] = ACTIONS(271), + [anon_sym_QMARK] = ACTIONS(271), + [anon_sym_u2200] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(271), + [anon_sym_u03bb] = ACTIONS(273), + [anon_sym_BSLASH] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(275), + [anon_sym_u00ac] = ACTIONS(277), + [anon_sym_TILDE] = ACTIONS(277), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(279), + [sym_hol_false] = ACTIONS(279), + [sym_hol_number] = ACTIONS(281), + [sym_hol_string] = ACTIONS(281), + [sym_hol_character] = ACTIONS(281), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [18] = { + [sym_hol_identifier] = STATE(18), + [sym__hol_term] = STATE(245), + [sym__hol_application_lhs] = STATE(18), + [sym_hol_application] = STATE(18), + [sym_hol_cond] = STATE(352), + [sym_hol_case] = STATE(352), + [sym_hol_binder] = STATE(352), + [sym_hol_left_unary_term] = STATE(352), + [sym_hol_binary_term] = STATE(352), + [sym_hol_annotated] = STATE(352), + [sym_hol_tuple] = STATE(352), + [sym_hol_list] = STATE(352), + [sym_hol_set] = STATE(352), + [sym__hol_literal] = STATE(352), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_End] = ACTIONS(113), + [anon_sym_Termination] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [19] = { + [sym_hol_identifier] = STATE(19), + [sym__hol_term] = STATE(438), + [sym__hol_application_lhs] = STATE(19), + [sym_hol_application] = STATE(19), + [sym_hol_cond] = STATE(430), + [sym_hol_case] = STATE(430), + [sym_hol_binder] = STATE(430), + [sym_hol_left_unary_term] = STATE(430), + [sym_hol_binary_term] = STATE(430), + [sym_hol_annotated] = STATE(430), + [sym_hol_tuple] = STATE(430), + [sym_hol_list] = STATE(430), + [sym_hol_set] = STATE(430), + [sym__hol_literal] = STATE(430), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_of] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [20] = { + [sym_hol_identifier] = STATE(21), + [sym__hol_term] = STATE(428), + [sym__hol_application_lhs] = STATE(21), + [sym_hol_application] = STATE(21), + [sym_hol_cond] = STATE(364), + [sym_hol_case] = STATE(364), + [sym_hol_binder] = STATE(364), + [sym_hol_left_unary_term] = STATE(364), + [sym_hol_binary_term] = STATE(364), + [sym_hol_annotated] = STATE(364), + [sym_hol_tuple] = STATE(364), + [sym_hol_list] = STATE(364), + [sym_hol_set] = STATE(364), + [sym__hol_literal] = STATE(364), + [anon_sym_LPAREN] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(287), + [anon_sym_if] = ACTIONS(289), + [anon_sym_case] = ACTIONS(291), + [anon_sym_Proof] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(293), + [sym__hol_symbolic] = ACTIONS(293), + [anon_sym_OLEAST] = ACTIONS(295), + [anon_sym_LEAST] = ACTIONS(295), + [anon_sym_some] = ACTIONS(295), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(295), + [anon_sym_u2203_BANG] = ACTIONS(297), + [anon_sym_QMARK_BANG] = ACTIONS(295), + [anon_sym_u2203] = ACTIONS(295), + [anon_sym_QMARK] = ACTIONS(295), + [anon_sym_u2200] = ACTIONS(297), + [anon_sym_BANG] = ACTIONS(295), + [anon_sym_AT] = ACTIONS(295), + [anon_sym_u03bb] = ACTIONS(297), + [anon_sym_BSLASH] = ACTIONS(295), + [anon_sym_DASH] = ACTIONS(299), + [anon_sym_u00ac] = ACTIONS(301), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(303), + [sym_hol_false] = ACTIONS(303), + [sym_hol_number] = ACTIONS(305), + [sym_hol_string] = ACTIONS(305), + [sym_hol_character] = ACTIONS(305), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [21] = { + [sym_hol_identifier] = STATE(21), + [sym__hol_term] = STATE(428), + [sym__hol_application_lhs] = STATE(21), + [sym_hol_application] = STATE(21), + [sym_hol_cond] = STATE(364), + [sym_hol_case] = STATE(364), + [sym_hol_binder] = STATE(364), + [sym_hol_left_unary_term] = STATE(364), + [sym_hol_binary_term] = STATE(364), + [sym_hol_annotated] = STATE(364), + [sym_hol_tuple] = STATE(364), + [sym_hol_list] = STATE(364), + [sym_hol_set] = STATE(364), + [sym__hol_literal] = STATE(364), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_Proof] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [22] = { + [sym_hol_identifier] = STATE(25), + [sym__hol_term] = STATE(371), + [sym__hol_application_lhs] = STATE(25), + [sym_hol_application] = STATE(25), + [sym_hol_cond] = STATE(403), + [sym_hol_case] = STATE(403), + [sym_hol_binder] = STATE(403), + [sym_hol_left_unary_term] = STATE(403), + [sym_hol_binary_term] = STATE(403), + [sym_hol_annotated] = STATE(403), + [sym_hol_tuple] = STATE(403), + [sym_hol_list] = STATE(403), + [sym_hol_set] = STATE(403), + [sym__hol_literal] = STATE(403), + [anon_sym_LPAREN] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(311), + [anon_sym_if] = ACTIONS(313), + [anon_sym_then] = ACTIONS(89), + [anon_sym_case] = ACTIONS(315), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(317), + [sym__hol_symbolic] = ACTIONS(317), + [anon_sym_OLEAST] = ACTIONS(319), + [anon_sym_LEAST] = ACTIONS(319), + [anon_sym_some] = ACTIONS(319), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(319), + [anon_sym_u2203_BANG] = ACTIONS(321), + [anon_sym_QMARK_BANG] = ACTIONS(319), + [anon_sym_u2203] = ACTIONS(319), + [anon_sym_QMARK] = ACTIONS(319), + [anon_sym_u2200] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(319), + [anon_sym_AT] = ACTIONS(319), + [anon_sym_u03bb] = ACTIONS(321), + [anon_sym_BSLASH] = ACTIONS(319), + [anon_sym_DASH] = ACTIONS(323), + [anon_sym_u00ac] = ACTIONS(325), + [anon_sym_TILDE] = ACTIONS(325), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(327), + [sym_hol_false] = ACTIONS(327), + [sym_hol_number] = ACTIONS(329), + [sym_hol_string] = ACTIONS(329), + [sym_hol_character] = ACTIONS(329), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [23] = { + [sym_hol_identifier] = STATE(24), + [sym__hol_term] = STATE(427), + [sym__hol_application_lhs] = STATE(24), + [sym_hol_application] = STATE(24), + [sym_hol_cond] = STATE(446), + [sym_hol_case] = STATE(446), + [sym_hol_binder] = STATE(446), + [sym_hol_left_unary_term] = STATE(446), + [sym_hol_binary_term] = STATE(446), + [sym_hol_annotated] = STATE(446), + [sym_hol_tuple] = STATE(446), + [sym_hol_list] = STATE(446), + [sym_hol_set] = STATE(446), + [sym__hol_literal] = STATE(446), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(335), + [anon_sym_if] = ACTIONS(337), + [anon_sym_else] = ACTIONS(89), + [anon_sym_case] = ACTIONS(339), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(341), + [sym__hol_symbolic] = ACTIONS(341), + [anon_sym_OLEAST] = ACTIONS(343), + [anon_sym_LEAST] = ACTIONS(343), + [anon_sym_some] = ACTIONS(343), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(343), + [anon_sym_u2203_BANG] = ACTIONS(345), + [anon_sym_QMARK_BANG] = ACTIONS(343), + [anon_sym_u2203] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_u2200] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(343), + [anon_sym_u03bb] = ACTIONS(345), + [anon_sym_BSLASH] = ACTIONS(343), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_u00ac] = ACTIONS(349), + [anon_sym_TILDE] = ACTIONS(349), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(351), + [sym_hol_false] = ACTIONS(351), + [sym_hol_number] = ACTIONS(353), + [sym_hol_string] = ACTIONS(353), + [sym_hol_character] = ACTIONS(353), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [24] = { + [sym_hol_identifier] = STATE(24), + [sym__hol_term] = STATE(427), + [sym__hol_application_lhs] = STATE(24), + [sym_hol_application] = STATE(24), + [sym_hol_cond] = STATE(446), + [sym_hol_case] = STATE(446), + [sym_hol_binder] = STATE(446), + [sym_hol_left_unary_term] = STATE(446), + [sym_hol_binary_term] = STATE(446), + [sym_hol_annotated] = STATE(446), + [sym_hol_tuple] = STATE(446), + [sym_hol_list] = STATE(446), + [sym_hol_set] = STATE(446), + [sym__hol_literal] = STATE(446), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_else] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [25] = { + [sym_hol_identifier] = STATE(25), + [sym__hol_term] = STATE(371), + [sym__hol_application_lhs] = STATE(25), + [sym_hol_application] = STATE(25), + [sym_hol_cond] = STATE(403), + [sym_hol_case] = STATE(403), + [sym_hol_binder] = STATE(403), + [sym_hol_left_unary_term] = STATE(403), + [sym_hol_binary_term] = STATE(403), + [sym_hol_annotated] = STATE(403), + [sym_hol_tuple] = STATE(403), + [sym_hol_list] = STATE(403), + [sym_hol_set] = STATE(403), + [sym__hol_literal] = STATE(403), + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_then] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [26] = { + [sym_hol_identifier] = STATE(19), + [sym__hol_term] = STATE(438), + [sym__hol_application_lhs] = STATE(19), + [sym_hol_application] = STATE(19), + [sym_hol_cond] = STATE(430), + [sym_hol_case] = STATE(430), + [sym_hol_binder] = STATE(430), + [sym_hol_left_unary_term] = STATE(430), + [sym_hol_binary_term] = STATE(430), + [sym_hol_annotated] = STATE(430), + [sym_hol_tuple] = STATE(430), + [sym_hol_list] = STATE(430), + [sym_hol_set] = STATE(430), + [sym__hol_literal] = STATE(430), + [anon_sym_LPAREN] = ACTIONS(355), + [anon_sym_LBRACE] = ACTIONS(357), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_case] = ACTIONS(363), + [anon_sym_of] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(365), + [sym__hol_symbolic] = ACTIONS(365), + [anon_sym_OLEAST] = ACTIONS(367), + [anon_sym_LEAST] = ACTIONS(367), + [anon_sym_some] = ACTIONS(367), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(367), + [anon_sym_u2203_BANG] = ACTIONS(369), + [anon_sym_QMARK_BANG] = ACTIONS(367), + [anon_sym_u2203] = ACTIONS(367), + [anon_sym_QMARK] = ACTIONS(367), + [anon_sym_u2200] = ACTIONS(369), + [anon_sym_BANG] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(367), + [anon_sym_u03bb] = ACTIONS(369), + [anon_sym_BSLASH] = ACTIONS(367), + [anon_sym_DASH] = ACTIONS(371), + [anon_sym_u00ac] = ACTIONS(373), + [anon_sym_TILDE] = ACTIONS(373), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(375), + [sym_hol_false] = ACTIONS(375), + [sym_hol_number] = ACTIONS(377), + [sym_hol_string] = ACTIONS(377), + [sym_hol_character] = ACTIONS(377), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [27] = { + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_RBRACK] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_if] = ACTIONS(381), + [anon_sym_case] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_u201d] = ACTIONS(379), + [anon_sym_u2227] = ACTIONS(379), + [anon_sym_SLASH_BSLASH] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(381), + [sym__hol_alphanumeric] = ACTIONS(381), + [sym__hol_symbolic] = ACTIONS(381), + [anon_sym_OLEAST] = ACTIONS(381), + [anon_sym_LEAST] = ACTIONS(381), + [anon_sym_some] = ACTIONS(381), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(381), + [anon_sym_u2203_BANG] = ACTIONS(379), + [anon_sym_QMARK_BANG] = ACTIONS(381), + [anon_sym_u2203] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u2200] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_u03bb] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_u00ac] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_u21ce] = ACTIONS(379), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(381), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_u21d4] = ACTIONS(379), + [anon_sym_EQ_EQ_GT] = ACTIONS(381), + [anon_sym_u21d2] = ACTIONS(379), + [anon_sym_BSLASH_SLASH] = ACTIONS(381), + [anon_sym_u2228] = ACTIONS(379), + [anon_sym_u2209] = ACTIONS(379), + [anon_sym_NOTIN] = ACTIONS(381), + [anon_sym_u2208] = ACTIONS(379), + [anon_sym_IN] = ACTIONS(381), + [anon_sym_u227c] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_PERMUTES] = ACTIONS(381), + [anon_sym_HAS_SIZE] = ACTIONS(381), + [anon_sym_u2282] = ACTIONS(379), + [anon_sym_PSUBSET] = ACTIONS(381), + [anon_sym_u2286] = ACTIONS(381), + [anon_sym_u2265] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_u2264] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_u2286u1d63] = ACTIONS(379), + [anon_sym_RSUBSET] = ACTIONS(381), + [anon_sym_u2260] = ACTIONS(379), + [anon_sym_LT_GT] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_INSERT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_o] = ACTIONS(381), + [anon_sym_list] = ACTIONS(381), + [sym_hol_true] = ACTIONS(381), + [sym_hol_false] = ACTIONS(381), + [sym_hol_number] = ACTIONS(379), + [sym_hol_string] = ACTIONS(379), + [sym_hol_character] = ACTIONS(379), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [28] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_RBRACK] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_DASH_GT] = ACTIONS(387), + [anon_sym_u201d] = ACTIONS(383), + [anon_sym_u2227] = ACTIONS(383), + [anon_sym_SLASH_BSLASH] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(385), + [sym__hol_alphanumeric] = ACTIONS(385), + [sym__hol_symbolic] = ACTIONS(385), + [anon_sym_OLEAST] = ACTIONS(385), + [anon_sym_LEAST] = ACTIONS(385), + [anon_sym_some] = ACTIONS(385), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(385), + [anon_sym_u2203_BANG] = ACTIONS(383), + [anon_sym_QMARK_BANG] = ACTIONS(385), + [anon_sym_u2203] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u2200] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_u03bb] = ACTIONS(383), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_u00ac] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_u21ce] = ACTIONS(383), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(385), + [anon_sym_u21d4] = ACTIONS(383), + [anon_sym_EQ_EQ_GT] = ACTIONS(385), + [anon_sym_u21d2] = ACTIONS(383), + [anon_sym_BSLASH_SLASH] = ACTIONS(385), + [anon_sym_u2228] = ACTIONS(383), + [anon_sym_u2209] = ACTIONS(383), + [anon_sym_NOTIN] = ACTIONS(385), + [anon_sym_u2208] = ACTIONS(383), + [anon_sym_IN] = ACTIONS(385), + [anon_sym_u227c] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_PERMUTES] = ACTIONS(385), + [anon_sym_HAS_SIZE] = ACTIONS(385), + [anon_sym_u2282] = ACTIONS(383), + [anon_sym_PSUBSET] = ACTIONS(385), + [anon_sym_u2286] = ACTIONS(385), + [anon_sym_u2265] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_u2264] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_u2286u1d63] = ACTIONS(383), + [anon_sym_RSUBSET] = ACTIONS(385), + [anon_sym_u2260] = ACTIONS(383), + [anon_sym_LT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_INSERT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_o] = ACTIONS(385), + [anon_sym_list] = ACTIONS(389), + [sym_hol_true] = ACTIONS(385), + [sym_hol_false] = ACTIONS(385), + [sym_hol_number] = ACTIONS(383), + [sym_hol_string] = ACTIONS(383), + [sym_hol_character] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [29] = { + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_u201d] = ACTIONS(391), + [anon_sym_u2227] = ACTIONS(391), + [anon_sym_SLASH_BSLASH] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [sym__hol_alphanumeric] = ACTIONS(393), + [sym__hol_symbolic] = ACTIONS(393), + [anon_sym_OLEAST] = ACTIONS(393), + [anon_sym_LEAST] = ACTIONS(393), + [anon_sym_some] = ACTIONS(393), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(393), + [anon_sym_u2203_BANG] = ACTIONS(391), + [anon_sym_QMARK_BANG] = ACTIONS(393), + [anon_sym_u2203] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u2200] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_u03bb] = ACTIONS(391), + [anon_sym_BSLASH] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_u00ac] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_u21ce] = ACTIONS(391), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(393), + [anon_sym_u21d4] = ACTIONS(391), + [anon_sym_EQ_EQ_GT] = ACTIONS(393), + [anon_sym_u21d2] = ACTIONS(391), + [anon_sym_BSLASH_SLASH] = ACTIONS(393), + [anon_sym_u2228] = ACTIONS(391), + [anon_sym_u2209] = ACTIONS(391), + [anon_sym_NOTIN] = ACTIONS(393), + [anon_sym_u2208] = ACTIONS(391), + [anon_sym_IN] = ACTIONS(393), + [anon_sym_u227c] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_PERMUTES] = ACTIONS(393), + [anon_sym_HAS_SIZE] = ACTIONS(393), + [anon_sym_u2282] = ACTIONS(391), + [anon_sym_PSUBSET] = ACTIONS(393), + [anon_sym_u2286] = ACTIONS(393), + [anon_sym_u2265] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_u2264] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_u2286u1d63] = ACTIONS(391), + [anon_sym_RSUBSET] = ACTIONS(393), + [anon_sym_u2260] = ACTIONS(391), + [anon_sym_LT_GT] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_INSERT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_o] = ACTIONS(393), + [anon_sym_list] = ACTIONS(393), + [sym_hol_true] = ACTIONS(393), + [sym_hol_false] = ACTIONS(393), + [sym_hol_number] = ACTIONS(391), + [sym_hol_string] = ACTIONS(391), + [sym_hol_character] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [30] = { + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(387), + [anon_sym_u201d] = ACTIONS(395), + [anon_sym_u2227] = ACTIONS(395), + [anon_sym_SLASH_BSLASH] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [sym__hol_alphanumeric] = ACTIONS(397), + [sym__hol_symbolic] = ACTIONS(397), + [anon_sym_OLEAST] = ACTIONS(397), + [anon_sym_LEAST] = ACTIONS(397), + [anon_sym_some] = ACTIONS(397), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(397), + [anon_sym_u2203_BANG] = ACTIONS(395), + [anon_sym_QMARK_BANG] = ACTIONS(397), + [anon_sym_u2203] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u2200] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_u03bb] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_u00ac] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_u21ce] = ACTIONS(395), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(397), + [anon_sym_u21d4] = ACTIONS(395), + [anon_sym_EQ_EQ_GT] = ACTIONS(397), + [anon_sym_u21d2] = ACTIONS(395), + [anon_sym_BSLASH_SLASH] = ACTIONS(397), + [anon_sym_u2228] = ACTIONS(395), + [anon_sym_u2209] = ACTIONS(395), + [anon_sym_NOTIN] = ACTIONS(397), + [anon_sym_u2208] = ACTIONS(395), + [anon_sym_IN] = ACTIONS(397), + [anon_sym_u227c] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_PERMUTES] = ACTIONS(397), + [anon_sym_HAS_SIZE] = ACTIONS(397), + [anon_sym_u2282] = ACTIONS(395), + [anon_sym_PSUBSET] = ACTIONS(397), + [anon_sym_u2286] = ACTIONS(397), + [anon_sym_u2265] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_u2264] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_u2286u1d63] = ACTIONS(395), + [anon_sym_RSUBSET] = ACTIONS(397), + [anon_sym_u2260] = ACTIONS(395), + [anon_sym_LT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_INSERT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_o] = ACTIONS(397), + [anon_sym_list] = ACTIONS(397), + [sym_hol_true] = ACTIONS(397), + [sym_hol_false] = ACTIONS(397), + [sym_hol_number] = ACTIONS(395), + [sym_hol_string] = ACTIONS(395), + [sym_hol_character] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [31] = { + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_RBRACK] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_if] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_DASH_GT] = ACTIONS(401), + [anon_sym_u201d] = ACTIONS(399), + [anon_sym_u2227] = ACTIONS(399), + [anon_sym_SLASH_BSLASH] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(401), + [sym__hol_alphanumeric] = ACTIONS(401), + [sym__hol_symbolic] = ACTIONS(401), + [anon_sym_OLEAST] = ACTIONS(401), + [anon_sym_LEAST] = ACTIONS(401), + [anon_sym_some] = ACTIONS(401), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(401), + [anon_sym_u2203_BANG] = ACTIONS(399), + [anon_sym_QMARK_BANG] = ACTIONS(401), + [anon_sym_u2203] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u2200] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_u03bb] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_u00ac] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_u21ce] = ACTIONS(399), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(401), + [anon_sym_u21d4] = ACTIONS(399), + [anon_sym_EQ_EQ_GT] = ACTIONS(401), + [anon_sym_u21d2] = ACTIONS(399), + [anon_sym_BSLASH_SLASH] = ACTIONS(401), + [anon_sym_u2228] = ACTIONS(399), + [anon_sym_u2209] = ACTIONS(399), + [anon_sym_NOTIN] = ACTIONS(401), + [anon_sym_u2208] = ACTIONS(399), + [anon_sym_IN] = ACTIONS(401), + [anon_sym_u227c] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_PERMUTES] = ACTIONS(401), + [anon_sym_HAS_SIZE] = ACTIONS(401), + [anon_sym_u2282] = ACTIONS(399), + [anon_sym_PSUBSET] = ACTIONS(401), + [anon_sym_u2286] = ACTIONS(401), + [anon_sym_u2265] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_u2264] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_u2286u1d63] = ACTIONS(399), + [anon_sym_RSUBSET] = ACTIONS(401), + [anon_sym_u2260] = ACTIONS(399), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_INSERT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_o] = ACTIONS(401), + [anon_sym_list] = ACTIONS(401), + [sym_hol_true] = ACTIONS(401), + [sym_hol_false] = ACTIONS(401), + [sym_hol_number] = ACTIONS(399), + [sym_hol_string] = ACTIONS(399), + [sym_hol_character] = ACTIONS(399), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [32] = { + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(403), + [anon_sym_u201d] = ACTIONS(395), + [anon_sym_u2227] = ACTIONS(395), + [anon_sym_SLASH_BSLASH] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [sym__hol_alphanumeric] = ACTIONS(397), + [sym__hol_symbolic] = ACTIONS(397), + [anon_sym_OLEAST] = ACTIONS(397), + [anon_sym_LEAST] = ACTIONS(397), + [anon_sym_some] = ACTIONS(397), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(397), + [anon_sym_u2203_BANG] = ACTIONS(395), + [anon_sym_QMARK_BANG] = ACTIONS(397), + [anon_sym_u2203] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u2200] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_u03bb] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_u00ac] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_u21ce] = ACTIONS(395), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(397), + [anon_sym_u21d4] = ACTIONS(395), + [anon_sym_EQ_EQ_GT] = ACTIONS(397), + [anon_sym_u21d2] = ACTIONS(395), + [anon_sym_BSLASH_SLASH] = ACTIONS(397), + [anon_sym_u2228] = ACTIONS(395), + [anon_sym_u2209] = ACTIONS(395), + [anon_sym_NOTIN] = ACTIONS(397), + [anon_sym_u2208] = ACTIONS(395), + [anon_sym_IN] = ACTIONS(397), + [anon_sym_u227c] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_PERMUTES] = ACTIONS(397), + [anon_sym_HAS_SIZE] = ACTIONS(397), + [anon_sym_u2282] = ACTIONS(395), + [anon_sym_PSUBSET] = ACTIONS(397), + [anon_sym_u2286] = ACTIONS(397), + [anon_sym_u2265] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_u2264] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_u2286u1d63] = ACTIONS(395), + [anon_sym_RSUBSET] = ACTIONS(397), + [anon_sym_u2260] = ACTIONS(395), + [anon_sym_LT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_INSERT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_o] = ACTIONS(397), + [anon_sym_list] = ACTIONS(397), + [sym_hol_true] = ACTIONS(397), + [sym_hol_false] = ACTIONS(397), + [sym_hol_number] = ACTIONS(395), + [sym_hol_string] = ACTIONS(395), + [sym_hol_character] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [33] = { + [aux_sym_hol_case_repeat1] = STATE(44), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(405), + [anon_sym_RPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_RBRACK] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_u201d] = ACTIONS(405), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [34] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_RBRACK] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_DASH_GT] = ACTIONS(403), + [anon_sym_u201d] = ACTIONS(383), + [anon_sym_u2227] = ACTIONS(383), + [anon_sym_SLASH_BSLASH] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(385), + [sym__hol_alphanumeric] = ACTIONS(385), + [sym__hol_symbolic] = ACTIONS(385), + [anon_sym_OLEAST] = ACTIONS(385), + [anon_sym_LEAST] = ACTIONS(385), + [anon_sym_some] = ACTIONS(385), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(385), + [anon_sym_u2203_BANG] = ACTIONS(383), + [anon_sym_QMARK_BANG] = ACTIONS(385), + [anon_sym_u2203] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u2200] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_u03bb] = ACTIONS(383), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_u00ac] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_u21ce] = ACTIONS(383), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(385), + [anon_sym_u21d4] = ACTIONS(383), + [anon_sym_EQ_EQ_GT] = ACTIONS(385), + [anon_sym_u21d2] = ACTIONS(383), + [anon_sym_BSLASH_SLASH] = ACTIONS(385), + [anon_sym_u2228] = ACTIONS(383), + [anon_sym_u2209] = ACTIONS(383), + [anon_sym_NOTIN] = ACTIONS(385), + [anon_sym_u2208] = ACTIONS(383), + [anon_sym_IN] = ACTIONS(385), + [anon_sym_u227c] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_PERMUTES] = ACTIONS(385), + [anon_sym_HAS_SIZE] = ACTIONS(385), + [anon_sym_u2282] = ACTIONS(383), + [anon_sym_PSUBSET] = ACTIONS(385), + [anon_sym_u2286] = ACTIONS(385), + [anon_sym_u2265] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_u2264] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_u2286u1d63] = ACTIONS(383), + [anon_sym_RSUBSET] = ACTIONS(385), + [anon_sym_u2260] = ACTIONS(383), + [anon_sym_LT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_INSERT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_o] = ACTIONS(385), + [anon_sym_list] = ACTIONS(411), + [sym_hol_true] = ACTIONS(385), + [sym_hol_false] = ACTIONS(385), + [sym_hol_number] = ACTIONS(383), + [sym_hol_string] = ACTIONS(383), + [sym_hol_character] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [35] = { + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_u201d] = ACTIONS(391), + [anon_sym_u2227] = ACTIONS(391), + [anon_sym_SLASH_BSLASH] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [sym__hol_alphanumeric] = ACTIONS(393), + [sym__hol_symbolic] = ACTIONS(393), + [anon_sym_OLEAST] = ACTIONS(393), + [anon_sym_LEAST] = ACTIONS(393), + [anon_sym_some] = ACTIONS(393), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(393), + [anon_sym_u2203_BANG] = ACTIONS(391), + [anon_sym_QMARK_BANG] = ACTIONS(393), + [anon_sym_u2203] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u2200] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_u03bb] = ACTIONS(391), + [anon_sym_BSLASH] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_u00ac] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_u21ce] = ACTIONS(391), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(393), + [anon_sym_u21d4] = ACTIONS(391), + [anon_sym_EQ_EQ_GT] = ACTIONS(393), + [anon_sym_u21d2] = ACTIONS(391), + [anon_sym_BSLASH_SLASH] = ACTIONS(393), + [anon_sym_u2228] = ACTIONS(391), + [anon_sym_u2209] = ACTIONS(391), + [anon_sym_NOTIN] = ACTIONS(393), + [anon_sym_u2208] = ACTIONS(391), + [anon_sym_IN] = ACTIONS(393), + [anon_sym_u227c] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_PERMUTES] = ACTIONS(393), + [anon_sym_HAS_SIZE] = ACTIONS(393), + [anon_sym_u2282] = ACTIONS(391), + [anon_sym_PSUBSET] = ACTIONS(393), + [anon_sym_u2286] = ACTIONS(393), + [anon_sym_u2265] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_u2264] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_u2286u1d63] = ACTIONS(391), + [anon_sym_RSUBSET] = ACTIONS(393), + [anon_sym_u2260] = ACTIONS(391), + [anon_sym_LT_GT] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_INSERT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_o] = ACTIONS(393), + [anon_sym_list] = ACTIONS(393), + [sym_hol_true] = ACTIONS(393), + [sym_hol_false] = ACTIONS(393), + [sym_hol_number] = ACTIONS(391), + [sym_hol_string] = ACTIONS(391), + [sym_hol_character] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [36] = { + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_RBRACK] = ACTIONS(399), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_if] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_DASH_GT] = ACTIONS(401), + [anon_sym_u201d] = ACTIONS(399), + [anon_sym_u2227] = ACTIONS(399), + [anon_sym_SLASH_BSLASH] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(401), + [sym__hol_alphanumeric] = ACTIONS(401), + [sym__hol_symbolic] = ACTIONS(401), + [anon_sym_OLEAST] = ACTIONS(401), + [anon_sym_LEAST] = ACTIONS(401), + [anon_sym_some] = ACTIONS(401), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(401), + [anon_sym_u2203_BANG] = ACTIONS(399), + [anon_sym_QMARK_BANG] = ACTIONS(401), + [anon_sym_u2203] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u2200] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_u03bb] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_u00ac] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_u21ce] = ACTIONS(399), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(401), + [anon_sym_u21d4] = ACTIONS(399), + [anon_sym_EQ_EQ_GT] = ACTIONS(401), + [anon_sym_u21d2] = ACTIONS(399), + [anon_sym_BSLASH_SLASH] = ACTIONS(401), + [anon_sym_u2228] = ACTIONS(399), + [anon_sym_u2209] = ACTIONS(399), + [anon_sym_NOTIN] = ACTIONS(401), + [anon_sym_u2208] = ACTIONS(399), + [anon_sym_IN] = ACTIONS(401), + [anon_sym_u227c] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_PERMUTES] = ACTIONS(401), + [anon_sym_HAS_SIZE] = ACTIONS(401), + [anon_sym_u2282] = ACTIONS(399), + [anon_sym_PSUBSET] = ACTIONS(401), + [anon_sym_u2286] = ACTIONS(401), + [anon_sym_u2265] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_u2264] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_u2286u1d63] = ACTIONS(399), + [anon_sym_RSUBSET] = ACTIONS(401), + [anon_sym_u2260] = ACTIONS(399), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_INSERT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_o] = ACTIONS(401), + [anon_sym_list] = ACTIONS(401), + [sym_hol_true] = ACTIONS(401), + [sym_hol_false] = ACTIONS(401), + [sym_hol_number] = ACTIONS(399), + [sym_hol_string] = ACTIONS(399), + [sym_hol_character] = ACTIONS(399), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [37] = { + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_RBRACK] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_if] = ACTIONS(381), + [anon_sym_case] = ACTIONS(381), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_u201d] = ACTIONS(379), + [anon_sym_u2227] = ACTIONS(379), + [anon_sym_SLASH_BSLASH] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(381), + [sym__hol_alphanumeric] = ACTIONS(381), + [sym__hol_symbolic] = ACTIONS(381), + [anon_sym_OLEAST] = ACTIONS(381), + [anon_sym_LEAST] = ACTIONS(381), + [anon_sym_some] = ACTIONS(381), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(381), + [anon_sym_u2203_BANG] = ACTIONS(379), + [anon_sym_QMARK_BANG] = ACTIONS(381), + [anon_sym_u2203] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u2200] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_u03bb] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_u00ac] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_u21ce] = ACTIONS(379), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(381), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_u21d4] = ACTIONS(379), + [anon_sym_EQ_EQ_GT] = ACTIONS(381), + [anon_sym_u21d2] = ACTIONS(379), + [anon_sym_BSLASH_SLASH] = ACTIONS(381), + [anon_sym_u2228] = ACTIONS(379), + [anon_sym_u2209] = ACTIONS(379), + [anon_sym_NOTIN] = ACTIONS(381), + [anon_sym_u2208] = ACTIONS(379), + [anon_sym_IN] = ACTIONS(381), + [anon_sym_u227c] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_PERMUTES] = ACTIONS(381), + [anon_sym_HAS_SIZE] = ACTIONS(381), + [anon_sym_u2282] = ACTIONS(379), + [anon_sym_PSUBSET] = ACTIONS(381), + [anon_sym_u2286] = ACTIONS(381), + [anon_sym_u2265] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_u2264] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_u2286u1d63] = ACTIONS(379), + [anon_sym_RSUBSET] = ACTIONS(381), + [anon_sym_u2260] = ACTIONS(379), + [anon_sym_LT_GT] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_INSERT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_o] = ACTIONS(381), + [anon_sym_list] = ACTIONS(381), + [sym_hol_true] = ACTIONS(381), + [sym_hol_false] = ACTIONS(381), + [sym_hol_number] = ACTIONS(379), + [sym_hol_string] = ACTIONS(379), + [sym_hol_character] = ACTIONS(379), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [38] = { + [aux_sym_hol_case_repeat1] = STATE(41), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(405), + [anon_sym_RPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_RBRACK] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_u201d] = ACTIONS(405), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [39] = { + [aux_sym_hol_case_repeat1] = STATE(38), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_RBRACK] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_case] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_u201d] = ACTIONS(413), + [anon_sym_u2227] = ACTIONS(413), + [anon_sym_SLASH_BSLASH] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(415), + [sym__hol_alphanumeric] = ACTIONS(415), + [sym__hol_symbolic] = ACTIONS(415), + [anon_sym_OLEAST] = ACTIONS(415), + [anon_sym_LEAST] = ACTIONS(415), + [anon_sym_some] = ACTIONS(415), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(415), + [anon_sym_u2203_BANG] = ACTIONS(413), + [anon_sym_QMARK_BANG] = ACTIONS(415), + [anon_sym_u2203] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u2200] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_u03bb] = ACTIONS(413), + [anon_sym_BSLASH] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_u00ac] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(413), + [anon_sym_u21ce] = ACTIONS(413), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(415), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_u21d4] = ACTIONS(413), + [anon_sym_EQ_EQ_GT] = ACTIONS(415), + [anon_sym_u21d2] = ACTIONS(413), + [anon_sym_BSLASH_SLASH] = ACTIONS(415), + [anon_sym_u2228] = ACTIONS(413), + [anon_sym_u2209] = ACTIONS(413), + [anon_sym_NOTIN] = ACTIONS(415), + [anon_sym_u2208] = ACTIONS(413), + [anon_sym_IN] = ACTIONS(415), + [anon_sym_u227c] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_PERMUTES] = ACTIONS(415), + [anon_sym_HAS_SIZE] = ACTIONS(415), + [anon_sym_u2282] = ACTIONS(413), + [anon_sym_PSUBSET] = ACTIONS(415), + [anon_sym_u2286] = ACTIONS(415), + [anon_sym_u2265] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_u2264] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_u2286u1d63] = ACTIONS(413), + [anon_sym_RSUBSET] = ACTIONS(415), + [anon_sym_u2260] = ACTIONS(413), + [anon_sym_LT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_INSERT] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_o] = ACTIONS(415), + [sym_hol_true] = ACTIONS(415), + [sym_hol_false] = ACTIONS(415), + [sym_hol_number] = ACTIONS(413), + [sym_hol_string] = ACTIONS(413), + [sym_hol_character] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [40] = { + [aux_sym_hol_case_repeat1] = STATE(42), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(405), + [anon_sym_RPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_RBRACK] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_u201d] = ACTIONS(405), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [41] = { + [aux_sym_hol_case_repeat1] = STATE(41), + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(417), + [anon_sym_RPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_RBRACK] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_u201d] = ACTIONS(417), + [anon_sym_u2227] = ACTIONS(417), + [anon_sym_SLASH_BSLASH] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(419), + [sym__hol_alphanumeric] = ACTIONS(419), + [sym__hol_symbolic] = ACTIONS(419), + [anon_sym_OLEAST] = ACTIONS(419), + [anon_sym_LEAST] = ACTIONS(419), + [anon_sym_some] = ACTIONS(419), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(419), + [anon_sym_u2203_BANG] = ACTIONS(417), + [anon_sym_QMARK_BANG] = ACTIONS(419), + [anon_sym_u2203] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u2200] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_u03bb] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_u00ac] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_u21ce] = ACTIONS(417), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(419), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_u21d4] = ACTIONS(417), + [anon_sym_EQ_EQ_GT] = ACTIONS(419), + [anon_sym_u21d2] = ACTIONS(417), + [anon_sym_BSLASH_SLASH] = ACTIONS(419), + [anon_sym_u2228] = ACTIONS(417), + [anon_sym_u2209] = ACTIONS(417), + [anon_sym_NOTIN] = ACTIONS(419), + [anon_sym_u2208] = ACTIONS(417), + [anon_sym_IN] = ACTIONS(419), + [anon_sym_u227c] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_PERMUTES] = ACTIONS(419), + [anon_sym_HAS_SIZE] = ACTIONS(419), + [anon_sym_u2282] = ACTIONS(417), + [anon_sym_PSUBSET] = ACTIONS(419), + [anon_sym_u2286] = ACTIONS(419), + [anon_sym_u2265] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_u2264] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_u2286u1d63] = ACTIONS(417), + [anon_sym_RSUBSET] = ACTIONS(419), + [anon_sym_u2260] = ACTIONS(417), + [anon_sym_LT_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_INSERT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_o] = ACTIONS(419), + [sym_hol_true] = ACTIONS(419), + [sym_hol_false] = ACTIONS(419), + [sym_hol_number] = ACTIONS(417), + [sym_hol_string] = ACTIONS(417), + [sym_hol_character] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [42] = { + [aux_sym_hol_case_repeat1] = STATE(41), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_COMMA] = ACTIONS(424), + [anon_sym_RPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_COLON] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_RBRACK] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_if] = ACTIONS(426), + [anon_sym_case] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_u201d] = ACTIONS(424), + [anon_sym_u2227] = ACTIONS(424), + [anon_sym_SLASH_BSLASH] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(426), + [sym__hol_alphanumeric] = ACTIONS(426), + [sym__hol_symbolic] = ACTIONS(426), + [anon_sym_OLEAST] = ACTIONS(426), + [anon_sym_LEAST] = ACTIONS(426), + [anon_sym_some] = ACTIONS(426), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(426), + [anon_sym_u2203_BANG] = ACTIONS(424), + [anon_sym_QMARK_BANG] = ACTIONS(426), + [anon_sym_u2203] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u2200] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_u03bb] = ACTIONS(424), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_u00ac] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_u21ce] = ACTIONS(424), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(426), + [anon_sym_LT_EQ_GT] = ACTIONS(426), + [anon_sym_u21d4] = ACTIONS(424), + [anon_sym_EQ_EQ_GT] = ACTIONS(426), + [anon_sym_u21d2] = ACTIONS(424), + [anon_sym_BSLASH_SLASH] = ACTIONS(426), + [anon_sym_u2228] = ACTIONS(424), + [anon_sym_u2209] = ACTIONS(424), + [anon_sym_NOTIN] = ACTIONS(426), + [anon_sym_u2208] = ACTIONS(424), + [anon_sym_IN] = ACTIONS(426), + [anon_sym_u227c] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_PERMUTES] = ACTIONS(426), + [anon_sym_HAS_SIZE] = ACTIONS(426), + [anon_sym_u2282] = ACTIONS(424), + [anon_sym_PSUBSET] = ACTIONS(426), + [anon_sym_u2286] = ACTIONS(426), + [anon_sym_u2265] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_u2264] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_u2286u1d63] = ACTIONS(424), + [anon_sym_RSUBSET] = ACTIONS(426), + [anon_sym_u2260] = ACTIONS(424), + [anon_sym_LT_GT] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(426), + [anon_sym_INSERT] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_o] = ACTIONS(426), + [sym_hol_true] = ACTIONS(426), + [sym_hol_false] = ACTIONS(426), + [sym_hol_number] = ACTIONS(424), + [sym_hol_string] = ACTIONS(424), + [sym_hol_character] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [43] = { + [aux_sym_hol_case_repeat1] = STATE(41), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(405), + [anon_sym_RPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_RBRACK] = ACTIONS(405), + [anon_sym_SEMI] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(407), + [anon_sym_u201d] = ACTIONS(405), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [44] = { + [aux_sym_hol_case_repeat1] = STATE(41), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_COMMA] = ACTIONS(424), + [anon_sym_RPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_COLON] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_RBRACK] = ACTIONS(424), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_if] = ACTIONS(426), + [anon_sym_case] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(426), + [anon_sym_u201d] = ACTIONS(424), + [anon_sym_u2227] = ACTIONS(424), + [anon_sym_SLASH_BSLASH] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(426), + [sym__hol_alphanumeric] = ACTIONS(426), + [sym__hol_symbolic] = ACTIONS(426), + [anon_sym_OLEAST] = ACTIONS(426), + [anon_sym_LEAST] = ACTIONS(426), + [anon_sym_some] = ACTIONS(426), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(426), + [anon_sym_u2203_BANG] = ACTIONS(424), + [anon_sym_QMARK_BANG] = ACTIONS(426), + [anon_sym_u2203] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u2200] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_u03bb] = ACTIONS(424), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_u00ac] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_u21ce] = ACTIONS(424), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(426), + [anon_sym_LT_EQ_GT] = ACTIONS(426), + [anon_sym_u21d4] = ACTIONS(424), + [anon_sym_EQ_EQ_GT] = ACTIONS(426), + [anon_sym_u21d2] = ACTIONS(424), + [anon_sym_BSLASH_SLASH] = ACTIONS(426), + [anon_sym_u2228] = ACTIONS(424), + [anon_sym_u2209] = ACTIONS(424), + [anon_sym_NOTIN] = ACTIONS(426), + [anon_sym_u2208] = ACTIONS(424), + [anon_sym_IN] = ACTIONS(426), + [anon_sym_u227c] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_PERMUTES] = ACTIONS(426), + [anon_sym_HAS_SIZE] = ACTIONS(426), + [anon_sym_u2282] = ACTIONS(424), + [anon_sym_PSUBSET] = ACTIONS(426), + [anon_sym_u2286] = ACTIONS(426), + [anon_sym_u2265] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_u2264] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_u2286u1d63] = ACTIONS(424), + [anon_sym_RSUBSET] = ACTIONS(426), + [anon_sym_u2260] = ACTIONS(424), + [anon_sym_LT_GT] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(426), + [anon_sym_INSERT] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_o] = ACTIONS(426), + [sym_hol_true] = ACTIONS(426), + [sym_hol_false] = ACTIONS(426), + [sym_hol_number] = ACTIONS(424), + [sym_hol_string] = ACTIONS(424), + [sym_hol_character] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [45] = { + [aux_sym_hol_case_repeat1] = STATE(43), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(413), + [anon_sym_RPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_RBRACK] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_case] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_u201d] = ACTIONS(413), + [anon_sym_u2227] = ACTIONS(413), + [anon_sym_SLASH_BSLASH] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(415), + [sym__hol_alphanumeric] = ACTIONS(415), + [sym__hol_symbolic] = ACTIONS(415), + [anon_sym_OLEAST] = ACTIONS(415), + [anon_sym_LEAST] = ACTIONS(415), + [anon_sym_some] = ACTIONS(415), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(415), + [anon_sym_u2203_BANG] = ACTIONS(413), + [anon_sym_QMARK_BANG] = ACTIONS(415), + [anon_sym_u2203] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u2200] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_u03bb] = ACTIONS(413), + [anon_sym_BSLASH] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_u00ac] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(413), + [anon_sym_u21ce] = ACTIONS(413), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(415), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_u21d4] = ACTIONS(413), + [anon_sym_EQ_EQ_GT] = ACTIONS(415), + [anon_sym_u21d2] = ACTIONS(413), + [anon_sym_BSLASH_SLASH] = ACTIONS(415), + [anon_sym_u2228] = ACTIONS(413), + [anon_sym_u2209] = ACTIONS(413), + [anon_sym_NOTIN] = ACTIONS(415), + [anon_sym_u2208] = ACTIONS(413), + [anon_sym_IN] = ACTIONS(415), + [anon_sym_u227c] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_PERMUTES] = ACTIONS(415), + [anon_sym_HAS_SIZE] = ACTIONS(415), + [anon_sym_u2282] = ACTIONS(413), + [anon_sym_PSUBSET] = ACTIONS(415), + [anon_sym_u2286] = ACTIONS(415), + [anon_sym_u2265] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_u2264] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_u2286u1d63] = ACTIONS(413), + [anon_sym_RSUBSET] = ACTIONS(415), + [anon_sym_u2260] = ACTIONS(413), + [anon_sym_LT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_INSERT] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_o] = ACTIONS(415), + [sym_hol_true] = ACTIONS(415), + [sym_hol_false] = ACTIONS(415), + [sym_hol_number] = ACTIONS(413), + [sym_hol_string] = ACTIONS(413), + [sym_hol_character] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [46] = { + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_COMMA] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_RBRACE] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_RBRACK] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_if] = ACTIONS(430), + [anon_sym_case] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_u201d] = ACTIONS(428), + [anon_sym_u2227] = ACTIONS(428), + [anon_sym_SLASH_BSLASH] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(430), + [sym__hol_alphanumeric] = ACTIONS(430), + [sym__hol_symbolic] = ACTIONS(430), + [anon_sym_OLEAST] = ACTIONS(430), + [anon_sym_LEAST] = ACTIONS(430), + [anon_sym_some] = ACTIONS(430), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(430), + [anon_sym_u2203_BANG] = ACTIONS(428), + [anon_sym_QMARK_BANG] = ACTIONS(430), + [anon_sym_u2203] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u2200] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_u03bb] = ACTIONS(428), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_u00ac] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_u21ce] = ACTIONS(428), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(430), + [anon_sym_LT_EQ_GT] = ACTIONS(430), + [anon_sym_u21d4] = ACTIONS(428), + [anon_sym_EQ_EQ_GT] = ACTIONS(430), + [anon_sym_u21d2] = ACTIONS(428), + [anon_sym_BSLASH_SLASH] = ACTIONS(430), + [anon_sym_u2228] = ACTIONS(428), + [anon_sym_u2209] = ACTIONS(428), + [anon_sym_NOTIN] = ACTIONS(430), + [anon_sym_u2208] = ACTIONS(428), + [anon_sym_IN] = ACTIONS(430), + [anon_sym_u227c] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_PERMUTES] = ACTIONS(430), + [anon_sym_HAS_SIZE] = ACTIONS(430), + [anon_sym_u2282] = ACTIONS(428), + [anon_sym_PSUBSET] = ACTIONS(430), + [anon_sym_u2286] = ACTIONS(430), + [anon_sym_u2265] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_u2264] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_u2286u1d63] = ACTIONS(428), + [anon_sym_RSUBSET] = ACTIONS(430), + [anon_sym_u2260] = ACTIONS(428), + [anon_sym_LT_GT] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(430), + [anon_sym_INSERT] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_o] = ACTIONS(430), + [sym_hol_true] = ACTIONS(430), + [sym_hol_false] = ACTIONS(430), + [sym_hol_number] = ACTIONS(428), + [sym_hol_string] = ACTIONS(428), + [sym_hol_character] = ACTIONS(428), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [47] = { + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(432), + [anon_sym_RPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_COLON] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_RBRACK] = ACTIONS(432), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_u201d] = ACTIONS(432), + [anon_sym_u2227] = ACTIONS(440), + [anon_sym_SLASH_BSLASH] = ACTIONS(442), + [anon_sym_COLON_COLON] = ACTIONS(444), + [sym__hol_alphanumeric] = ACTIONS(438), + [sym__hol_symbolic] = ACTIONS(438), + [anon_sym_OLEAST] = ACTIONS(438), + [anon_sym_LEAST] = ACTIONS(438), + [anon_sym_some] = ACTIONS(438), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(438), + [anon_sym_u2203_BANG] = ACTIONS(432), + [anon_sym_QMARK_BANG] = ACTIONS(438), + [anon_sym_u2203] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_u2200] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_u03bb] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_u00ac] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_u21ce] = ACTIONS(446), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(448), + [anon_sym_LT_EQ_GT] = ACTIONS(448), + [anon_sym_u21d4] = ACTIONS(446), + [anon_sym_EQ_EQ_GT] = ACTIONS(450), + [anon_sym_u21d2] = ACTIONS(452), + [anon_sym_BSLASH_SLASH] = ACTIONS(454), + [anon_sym_u2228] = ACTIONS(456), + [anon_sym_u2209] = ACTIONS(458), + [anon_sym_NOTIN] = ACTIONS(460), + [anon_sym_u2208] = ACTIONS(458), + [anon_sym_IN] = ACTIONS(460), + [anon_sym_u227c] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(434), + [anon_sym_PERMUTES] = ACTIONS(434), + [anon_sym_HAS_SIZE] = ACTIONS(434), + [anon_sym_u2282] = ACTIONS(462), + [anon_sym_PSUBSET] = ACTIONS(434), + [anon_sym_u2286] = ACTIONS(434), + [anon_sym_u2265] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_u2264] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_u2286u1d63] = ACTIONS(462), + [anon_sym_RSUBSET] = ACTIONS(434), + [anon_sym_u2260] = ACTIONS(462), + [anon_sym_LT_GT] = ACTIONS(434), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_INSERT] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_o] = ACTIONS(468), + [sym_hol_true] = ACTIONS(438), + [sym_hol_false] = ACTIONS(438), + [sym_hol_number] = ACTIONS(432), + [sym_hol_string] = ACTIONS(432), + [sym_hol_character] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [48] = { + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_COMMA] = ACTIONS(111), + [anon_sym_RPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_RBRACK] = ACTIONS(111), + [anon_sym_SEMI] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_u201d] = ACTIONS(111), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [49] = { + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_COMMA] = ACTIONS(470), + [anon_sym_RPAREN] = ACTIONS(470), + [anon_sym_LBRACE] = ACTIONS(470), + [anon_sym_RBRACE] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_COLON] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_RBRACK] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(470), + [anon_sym_if] = ACTIONS(472), + [anon_sym_case] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_u201d] = ACTIONS(470), + [anon_sym_u2227] = ACTIONS(440), + [anon_sym_SLASH_BSLASH] = ACTIONS(442), + [anon_sym_COLON_COLON] = ACTIONS(444), + [sym__hol_alphanumeric] = ACTIONS(472), + [sym__hol_symbolic] = ACTIONS(472), + [anon_sym_OLEAST] = ACTIONS(472), + [anon_sym_LEAST] = ACTIONS(472), + [anon_sym_some] = ACTIONS(472), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(472), + [anon_sym_u2203_BANG] = ACTIONS(470), + [anon_sym_QMARK_BANG] = ACTIONS(472), + [anon_sym_u2203] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_u2200] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_AT] = ACTIONS(472), + [anon_sym_u03bb] = ACTIONS(470), + [anon_sym_BSLASH] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_u00ac] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(470), + [anon_sym_u21ce] = ACTIONS(446), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(448), + [anon_sym_LT_EQ_GT] = ACTIONS(448), + [anon_sym_u21d4] = ACTIONS(446), + [anon_sym_EQ_EQ_GT] = ACTIONS(450), + [anon_sym_u21d2] = ACTIONS(452), + [anon_sym_BSLASH_SLASH] = ACTIONS(454), + [anon_sym_u2228] = ACTIONS(456), + [anon_sym_u2209] = ACTIONS(458), + [anon_sym_NOTIN] = ACTIONS(460), + [anon_sym_u2208] = ACTIONS(458), + [anon_sym_IN] = ACTIONS(460), + [anon_sym_u227c] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(434), + [anon_sym_PERMUTES] = ACTIONS(434), + [anon_sym_HAS_SIZE] = ACTIONS(434), + [anon_sym_u2282] = ACTIONS(462), + [anon_sym_PSUBSET] = ACTIONS(434), + [anon_sym_u2286] = ACTIONS(434), + [anon_sym_u2265] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_u2264] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_u2286u1d63] = ACTIONS(462), + [anon_sym_RSUBSET] = ACTIONS(434), + [anon_sym_u2260] = ACTIONS(462), + [anon_sym_LT_GT] = ACTIONS(434), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_INSERT] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_o] = ACTIONS(468), + [sym_hol_true] = ACTIONS(472), + [sym_hol_false] = ACTIONS(472), + [sym_hol_number] = ACTIONS(470), + [sym_hol_string] = ACTIONS(470), + [sym_hol_character] = ACTIONS(470), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [50] = { + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_RBRACK] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_u201d] = ACTIONS(474), + [anon_sym_u2227] = ACTIONS(474), + [anon_sym_SLASH_BSLASH] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(476), + [sym__hol_alphanumeric] = ACTIONS(476), + [sym__hol_symbolic] = ACTIONS(476), + [anon_sym_OLEAST] = ACTIONS(476), + [anon_sym_LEAST] = ACTIONS(476), + [anon_sym_some] = ACTIONS(476), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(476), + [anon_sym_u2203_BANG] = ACTIONS(474), + [anon_sym_QMARK_BANG] = ACTIONS(476), + [anon_sym_u2203] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u2200] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_u03bb] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_u00ac] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_u21ce] = ACTIONS(474), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(476), + [anon_sym_LT_EQ_GT] = ACTIONS(476), + [anon_sym_u21d4] = ACTIONS(474), + [anon_sym_EQ_EQ_GT] = ACTIONS(476), + [anon_sym_u21d2] = ACTIONS(474), + [anon_sym_BSLASH_SLASH] = ACTIONS(476), + [anon_sym_u2228] = ACTIONS(474), + [anon_sym_u2209] = ACTIONS(474), + [anon_sym_NOTIN] = ACTIONS(476), + [anon_sym_u2208] = ACTIONS(474), + [anon_sym_IN] = ACTIONS(476), + [anon_sym_u227c] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_PERMUTES] = ACTIONS(476), + [anon_sym_HAS_SIZE] = ACTIONS(476), + [anon_sym_u2282] = ACTIONS(474), + [anon_sym_PSUBSET] = ACTIONS(476), + [anon_sym_u2286] = ACTIONS(476), + [anon_sym_u2265] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_u2264] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_u2286u1d63] = ACTIONS(474), + [anon_sym_RSUBSET] = ACTIONS(476), + [anon_sym_u2260] = ACTIONS(474), + [anon_sym_LT_GT] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_INSERT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_o] = ACTIONS(476), + [sym_hol_true] = ACTIONS(476), + [sym_hol_false] = ACTIONS(476), + [sym_hol_number] = ACTIONS(474), + [sym_hol_string] = ACTIONS(474), + [sym_hol_character] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [51] = { + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(417), + [anon_sym_RPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_RBRACK] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_u201d] = ACTIONS(417), + [anon_sym_u2227] = ACTIONS(417), + [anon_sym_SLASH_BSLASH] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(419), + [sym__hol_alphanumeric] = ACTIONS(419), + [sym__hol_symbolic] = ACTIONS(419), + [anon_sym_OLEAST] = ACTIONS(419), + [anon_sym_LEAST] = ACTIONS(419), + [anon_sym_some] = ACTIONS(419), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(419), + [anon_sym_u2203_BANG] = ACTIONS(417), + [anon_sym_QMARK_BANG] = ACTIONS(419), + [anon_sym_u2203] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u2200] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_u03bb] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_u00ac] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_u21ce] = ACTIONS(417), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(419), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_u21d4] = ACTIONS(417), + [anon_sym_EQ_EQ_GT] = ACTIONS(419), + [anon_sym_u21d2] = ACTIONS(417), + [anon_sym_BSLASH_SLASH] = ACTIONS(419), + [anon_sym_u2228] = ACTIONS(417), + [anon_sym_u2209] = ACTIONS(417), + [anon_sym_NOTIN] = ACTIONS(419), + [anon_sym_u2208] = ACTIONS(417), + [anon_sym_IN] = ACTIONS(419), + [anon_sym_u227c] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_PERMUTES] = ACTIONS(419), + [anon_sym_HAS_SIZE] = ACTIONS(419), + [anon_sym_u2282] = ACTIONS(417), + [anon_sym_PSUBSET] = ACTIONS(419), + [anon_sym_u2286] = ACTIONS(419), + [anon_sym_u2265] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_u2264] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_u2286u1d63] = ACTIONS(417), + [anon_sym_RSUBSET] = ACTIONS(419), + [anon_sym_u2260] = ACTIONS(417), + [anon_sym_LT_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_INSERT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_o] = ACTIONS(419), + [sym_hol_true] = ACTIONS(419), + [sym_hol_false] = ACTIONS(419), + [sym_hol_number] = ACTIONS(417), + [sym_hol_string] = ACTIONS(417), + [sym_hol_character] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [52] = { + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(85), + [anon_sym_if] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_u201d] = ACTIONS(85), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(89), + [sym__hol_symbolic] = ACTIONS(89), + [anon_sym_OLEAST] = ACTIONS(89), + [anon_sym_LEAST] = ACTIONS(89), + [anon_sym_some] = ACTIONS(89), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(89), + [anon_sym_u2203_BANG] = ACTIONS(85), + [anon_sym_QMARK_BANG] = ACTIONS(89), + [anon_sym_u2203] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(89), + [anon_sym_u2200] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_u03bb] = ACTIONS(85), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_u00ac] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(89), + [sym_hol_false] = ACTIONS(89), + [sym_hol_number] = ACTIONS(85), + [sym_hol_string] = ACTIONS(85), + [sym_hol_character] = ACTIONS(85), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [53] = { + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_RBRACK] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_if] = ACTIONS(480), + [anon_sym_case] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_u201d] = ACTIONS(478), + [anon_sym_u2227] = ACTIONS(478), + [anon_sym_SLASH_BSLASH] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(480), + [sym__hol_alphanumeric] = ACTIONS(480), + [sym__hol_symbolic] = ACTIONS(480), + [anon_sym_OLEAST] = ACTIONS(480), + [anon_sym_LEAST] = ACTIONS(480), + [anon_sym_some] = ACTIONS(480), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(480), + [anon_sym_u2203_BANG] = ACTIONS(478), + [anon_sym_QMARK_BANG] = ACTIONS(480), + [anon_sym_u2203] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u2200] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_u03bb] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_u00ac] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_u21ce] = ACTIONS(478), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(480), + [anon_sym_LT_EQ_GT] = ACTIONS(480), + [anon_sym_u21d4] = ACTIONS(478), + [anon_sym_EQ_EQ_GT] = ACTIONS(480), + [anon_sym_u21d2] = ACTIONS(478), + [anon_sym_BSLASH_SLASH] = ACTIONS(480), + [anon_sym_u2228] = ACTIONS(478), + [anon_sym_u2209] = ACTIONS(478), + [anon_sym_NOTIN] = ACTIONS(480), + [anon_sym_u2208] = ACTIONS(478), + [anon_sym_IN] = ACTIONS(480), + [anon_sym_u227c] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_PERMUTES] = ACTIONS(480), + [anon_sym_HAS_SIZE] = ACTIONS(480), + [anon_sym_u2282] = ACTIONS(478), + [anon_sym_PSUBSET] = ACTIONS(480), + [anon_sym_u2286] = ACTIONS(480), + [anon_sym_u2265] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_u2264] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_u2286u1d63] = ACTIONS(478), + [anon_sym_RSUBSET] = ACTIONS(480), + [anon_sym_u2260] = ACTIONS(478), + [anon_sym_LT_GT] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_INSERT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_o] = ACTIONS(480), + [sym_hol_true] = ACTIONS(480), + [sym_hol_false] = ACTIONS(480), + [sym_hol_number] = ACTIONS(478), + [sym_hol_string] = ACTIONS(478), + [sym_hol_character] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [54] = { + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_if] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_u201d] = ACTIONS(482), + [anon_sym_u2227] = ACTIONS(482), + [anon_sym_SLASH_BSLASH] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(484), + [sym__hol_alphanumeric] = ACTIONS(484), + [sym__hol_symbolic] = ACTIONS(484), + [anon_sym_OLEAST] = ACTIONS(484), + [anon_sym_LEAST] = ACTIONS(484), + [anon_sym_some] = ACTIONS(484), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(484), + [anon_sym_u2203_BANG] = ACTIONS(482), + [anon_sym_QMARK_BANG] = ACTIONS(484), + [anon_sym_u2203] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u2200] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_u03bb] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_u00ac] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_u21ce] = ACTIONS(482), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(484), + [anon_sym_LT_EQ_GT] = ACTIONS(484), + [anon_sym_u21d4] = ACTIONS(482), + [anon_sym_EQ_EQ_GT] = ACTIONS(484), + [anon_sym_u21d2] = ACTIONS(482), + [anon_sym_BSLASH_SLASH] = ACTIONS(484), + [anon_sym_u2228] = ACTIONS(482), + [anon_sym_u2209] = ACTIONS(482), + [anon_sym_NOTIN] = ACTIONS(484), + [anon_sym_u2208] = ACTIONS(482), + [anon_sym_IN] = ACTIONS(484), + [anon_sym_u227c] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_PERMUTES] = ACTIONS(484), + [anon_sym_HAS_SIZE] = ACTIONS(484), + [anon_sym_u2282] = ACTIONS(482), + [anon_sym_PSUBSET] = ACTIONS(484), + [anon_sym_u2286] = ACTIONS(484), + [anon_sym_u2265] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_u2264] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_u2286u1d63] = ACTIONS(482), + [anon_sym_RSUBSET] = ACTIONS(484), + [anon_sym_u2260] = ACTIONS(482), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_INSERT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_o] = ACTIONS(484), + [sym_hol_true] = ACTIONS(484), + [sym_hol_false] = ACTIONS(484), + [sym_hol_number] = ACTIONS(482), + [sym_hol_string] = ACTIONS(482), + [sym_hol_character] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [55] = { + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(486), + [anon_sym_RPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_RBRACK] = ACTIONS(486), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_if] = ACTIONS(488), + [anon_sym_case] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_u201d] = ACTIONS(486), + [anon_sym_u2227] = ACTIONS(486), + [anon_sym_SLASH_BSLASH] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(488), + [sym__hol_alphanumeric] = ACTIONS(488), + [sym__hol_symbolic] = ACTIONS(488), + [anon_sym_OLEAST] = ACTIONS(488), + [anon_sym_LEAST] = ACTIONS(488), + [anon_sym_some] = ACTIONS(488), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(488), + [anon_sym_u2203_BANG] = ACTIONS(486), + [anon_sym_QMARK_BANG] = ACTIONS(488), + [anon_sym_u2203] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u2200] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_u03bb] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_u00ac] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_u21ce] = ACTIONS(486), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(488), + [anon_sym_LT_EQ_GT] = ACTIONS(488), + [anon_sym_u21d4] = ACTIONS(486), + [anon_sym_EQ_EQ_GT] = ACTIONS(488), + [anon_sym_u21d2] = ACTIONS(486), + [anon_sym_BSLASH_SLASH] = ACTIONS(488), + [anon_sym_u2228] = ACTIONS(486), + [anon_sym_u2209] = ACTIONS(486), + [anon_sym_NOTIN] = ACTIONS(488), + [anon_sym_u2208] = ACTIONS(486), + [anon_sym_IN] = ACTIONS(488), + [anon_sym_u227c] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_PERMUTES] = ACTIONS(488), + [anon_sym_HAS_SIZE] = ACTIONS(488), + [anon_sym_u2282] = ACTIONS(486), + [anon_sym_PSUBSET] = ACTIONS(488), + [anon_sym_u2286] = ACTIONS(488), + [anon_sym_u2265] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_u2264] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_u2286u1d63] = ACTIONS(486), + [anon_sym_RSUBSET] = ACTIONS(488), + [anon_sym_u2260] = ACTIONS(486), + [anon_sym_LT_GT] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_INSERT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_o] = ACTIONS(488), + [sym_hol_true] = ACTIONS(488), + [sym_hol_false] = ACTIONS(488), + [sym_hol_number] = ACTIONS(486), + [sym_hol_string] = ACTIONS(486), + [sym_hol_character] = ACTIONS(486), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [56] = { + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(490), + [anon_sym_RPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_RBRACK] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_if] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_u201d] = ACTIONS(490), + [anon_sym_u2227] = ACTIONS(490), + [anon_sym_SLASH_BSLASH] = ACTIONS(492), + [anon_sym_COLON_COLON] = ACTIONS(492), + [sym__hol_alphanumeric] = ACTIONS(492), + [sym__hol_symbolic] = ACTIONS(492), + [anon_sym_OLEAST] = ACTIONS(492), + [anon_sym_LEAST] = ACTIONS(492), + [anon_sym_some] = ACTIONS(492), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(492), + [anon_sym_u2203_BANG] = ACTIONS(490), + [anon_sym_QMARK_BANG] = ACTIONS(492), + [anon_sym_u2203] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u2200] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_u03bb] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_u00ac] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_u21ce] = ACTIONS(490), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(492), + [anon_sym_LT_EQ_GT] = ACTIONS(492), + [anon_sym_u21d4] = ACTIONS(490), + [anon_sym_EQ_EQ_GT] = ACTIONS(492), + [anon_sym_u21d2] = ACTIONS(490), + [anon_sym_BSLASH_SLASH] = ACTIONS(492), + [anon_sym_u2228] = ACTIONS(490), + [anon_sym_u2209] = ACTIONS(490), + [anon_sym_NOTIN] = ACTIONS(492), + [anon_sym_u2208] = ACTIONS(490), + [anon_sym_IN] = ACTIONS(492), + [anon_sym_u227c] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_PERMUTES] = ACTIONS(492), + [anon_sym_HAS_SIZE] = ACTIONS(492), + [anon_sym_u2282] = ACTIONS(490), + [anon_sym_PSUBSET] = ACTIONS(492), + [anon_sym_u2286] = ACTIONS(492), + [anon_sym_u2265] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_u2264] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_u2286u1d63] = ACTIONS(490), + [anon_sym_RSUBSET] = ACTIONS(492), + [anon_sym_u2260] = ACTIONS(490), + [anon_sym_LT_GT] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_INSERT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_o] = ACTIONS(492), + [sym_hol_true] = ACTIONS(492), + [sym_hol_false] = ACTIONS(492), + [sym_hol_number] = ACTIONS(490), + [sym_hol_string] = ACTIONS(490), + [sym_hol_character] = ACTIONS(490), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [57] = { + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_COMMA] = ACTIONS(494), + [anon_sym_RPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_RBRACK] = ACTIONS(494), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym_if] = ACTIONS(496), + [anon_sym_case] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(496), + [anon_sym_u201d] = ACTIONS(494), + [anon_sym_u2227] = ACTIONS(494), + [anon_sym_SLASH_BSLASH] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(496), + [sym__hol_alphanumeric] = ACTIONS(496), + [sym__hol_symbolic] = ACTIONS(496), + [anon_sym_OLEAST] = ACTIONS(496), + [anon_sym_LEAST] = ACTIONS(496), + [anon_sym_some] = ACTIONS(496), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(496), + [anon_sym_u2203_BANG] = ACTIONS(494), + [anon_sym_QMARK_BANG] = ACTIONS(496), + [anon_sym_u2203] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u2200] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_u03bb] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_u00ac] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_u21ce] = ACTIONS(494), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(496), + [anon_sym_LT_EQ_GT] = ACTIONS(496), + [anon_sym_u21d4] = ACTIONS(494), + [anon_sym_EQ_EQ_GT] = ACTIONS(496), + [anon_sym_u21d2] = ACTIONS(494), + [anon_sym_BSLASH_SLASH] = ACTIONS(496), + [anon_sym_u2228] = ACTIONS(494), + [anon_sym_u2209] = ACTIONS(494), + [anon_sym_NOTIN] = ACTIONS(496), + [anon_sym_u2208] = ACTIONS(494), + [anon_sym_IN] = ACTIONS(496), + [anon_sym_u227c] = ACTIONS(494), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_PERMUTES] = ACTIONS(496), + [anon_sym_HAS_SIZE] = ACTIONS(496), + [anon_sym_u2282] = ACTIONS(494), + [anon_sym_PSUBSET] = ACTIONS(496), + [anon_sym_u2286] = ACTIONS(496), + [anon_sym_u2265] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_u2264] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_u2286u1d63] = ACTIONS(494), + [anon_sym_RSUBSET] = ACTIONS(496), + [anon_sym_u2260] = ACTIONS(494), + [anon_sym_LT_GT] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(496), + [anon_sym_INSERT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_o] = ACTIONS(496), + [sym_hol_true] = ACTIONS(496), + [sym_hol_false] = ACTIONS(496), + [sym_hol_number] = ACTIONS(494), + [sym_hol_string] = ACTIONS(494), + [sym_hol_character] = ACTIONS(494), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [58] = { + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(498), + [anon_sym_RPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_RBRACK] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_u201d] = ACTIONS(498), + [anon_sym_u2227] = ACTIONS(498), + [anon_sym_SLASH_BSLASH] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(500), + [sym__hol_alphanumeric] = ACTIONS(500), + [sym__hol_symbolic] = ACTIONS(500), + [anon_sym_OLEAST] = ACTIONS(500), + [anon_sym_LEAST] = ACTIONS(500), + [anon_sym_some] = ACTIONS(500), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(500), + [anon_sym_u2203_BANG] = ACTIONS(498), + [anon_sym_QMARK_BANG] = ACTIONS(500), + [anon_sym_u2203] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u2200] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_u03bb] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_u00ac] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_u21ce] = ACTIONS(498), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(500), + [anon_sym_LT_EQ_GT] = ACTIONS(500), + [anon_sym_u21d4] = ACTIONS(498), + [anon_sym_EQ_EQ_GT] = ACTIONS(500), + [anon_sym_u21d2] = ACTIONS(498), + [anon_sym_BSLASH_SLASH] = ACTIONS(500), + [anon_sym_u2228] = ACTIONS(498), + [anon_sym_u2209] = ACTIONS(498), + [anon_sym_NOTIN] = ACTIONS(500), + [anon_sym_u2208] = ACTIONS(498), + [anon_sym_IN] = ACTIONS(500), + [anon_sym_u227c] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_PERMUTES] = ACTIONS(500), + [anon_sym_HAS_SIZE] = ACTIONS(500), + [anon_sym_u2282] = ACTIONS(498), + [anon_sym_PSUBSET] = ACTIONS(500), + [anon_sym_u2286] = ACTIONS(500), + [anon_sym_u2265] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_u2264] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_u2286u1d63] = ACTIONS(498), + [anon_sym_RSUBSET] = ACTIONS(500), + [anon_sym_u2260] = ACTIONS(498), + [anon_sym_LT_GT] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_INSERT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_o] = ACTIONS(500), + [sym_hol_true] = ACTIONS(500), + [sym_hol_false] = ACTIONS(500), + [sym_hol_number] = ACTIONS(498), + [sym_hol_string] = ACTIONS(498), + [sym_hol_character] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [59] = { + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_COMMA] = ACTIONS(502), + [anon_sym_RPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_COLON] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_RBRACK] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(504), + [anon_sym_u201d] = ACTIONS(502), + [anon_sym_u2227] = ACTIONS(502), + [anon_sym_SLASH_BSLASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(504), + [sym__hol_alphanumeric] = ACTIONS(504), + [sym__hol_symbolic] = ACTIONS(504), + [anon_sym_OLEAST] = ACTIONS(504), + [anon_sym_LEAST] = ACTIONS(504), + [anon_sym_some] = ACTIONS(504), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(504), + [anon_sym_u2203_BANG] = ACTIONS(502), + [anon_sym_QMARK_BANG] = ACTIONS(504), + [anon_sym_u2203] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u2200] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_u03bb] = ACTIONS(502), + [anon_sym_BSLASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_u00ac] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_u21ce] = ACTIONS(502), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(504), + [anon_sym_LT_EQ_GT] = ACTIONS(504), + [anon_sym_u21d4] = ACTIONS(502), + [anon_sym_EQ_EQ_GT] = ACTIONS(504), + [anon_sym_u21d2] = ACTIONS(502), + [anon_sym_BSLASH_SLASH] = ACTIONS(504), + [anon_sym_u2228] = ACTIONS(502), + [anon_sym_u2209] = ACTIONS(502), + [anon_sym_NOTIN] = ACTIONS(504), + [anon_sym_u2208] = ACTIONS(502), + [anon_sym_IN] = ACTIONS(504), + [anon_sym_u227c] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_PERMUTES] = ACTIONS(504), + [anon_sym_HAS_SIZE] = ACTIONS(504), + [anon_sym_u2282] = ACTIONS(502), + [anon_sym_PSUBSET] = ACTIONS(504), + [anon_sym_u2286] = ACTIONS(504), + [anon_sym_u2265] = ACTIONS(502), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_u2264] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_u2286u1d63] = ACTIONS(502), + [anon_sym_RSUBSET] = ACTIONS(504), + [anon_sym_u2260] = ACTIONS(502), + [anon_sym_LT_GT] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(504), + [anon_sym_INSERT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_o] = ACTIONS(504), + [sym_hol_true] = ACTIONS(504), + [sym_hol_false] = ACTIONS(504), + [sym_hol_number] = ACTIONS(502), + [sym_hol_string] = ACTIONS(502), + [sym_hol_character] = ACTIONS(502), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [60] = { + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_RPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_RBRACK] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(508), + [anon_sym_u201d] = ACTIONS(506), + [anon_sym_u2227] = ACTIONS(506), + [anon_sym_SLASH_BSLASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(508), + [sym__hol_alphanumeric] = ACTIONS(508), + [sym__hol_symbolic] = ACTIONS(508), + [anon_sym_OLEAST] = ACTIONS(508), + [anon_sym_LEAST] = ACTIONS(508), + [anon_sym_some] = ACTIONS(508), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(508), + [anon_sym_u2203_BANG] = ACTIONS(506), + [anon_sym_QMARK_BANG] = ACTIONS(508), + [anon_sym_u2203] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u2200] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_u03bb] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_u00ac] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_u21ce] = ACTIONS(506), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(508), + [anon_sym_LT_EQ_GT] = ACTIONS(508), + [anon_sym_u21d4] = ACTIONS(506), + [anon_sym_EQ_EQ_GT] = ACTIONS(508), + [anon_sym_u21d2] = ACTIONS(506), + [anon_sym_BSLASH_SLASH] = ACTIONS(508), + [anon_sym_u2228] = ACTIONS(506), + [anon_sym_u2209] = ACTIONS(506), + [anon_sym_NOTIN] = ACTIONS(508), + [anon_sym_u2208] = ACTIONS(506), + [anon_sym_IN] = ACTIONS(508), + [anon_sym_u227c] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_PERMUTES] = ACTIONS(508), + [anon_sym_HAS_SIZE] = ACTIONS(508), + [anon_sym_u2282] = ACTIONS(506), + [anon_sym_PSUBSET] = ACTIONS(508), + [anon_sym_u2286] = ACTIONS(508), + [anon_sym_u2265] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_u2264] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_u2286u1d63] = ACTIONS(506), + [anon_sym_RSUBSET] = ACTIONS(508), + [anon_sym_u2260] = ACTIONS(506), + [anon_sym_LT_GT] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(508), + [anon_sym_INSERT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_o] = ACTIONS(508), + [sym_hol_true] = ACTIONS(508), + [sym_hol_false] = ACTIONS(508), + [sym_hol_number] = ACTIONS(506), + [sym_hol_string] = ACTIONS(506), + [sym_hol_character] = ACTIONS(506), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [61] = { + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(510), + [anon_sym_RPAREN] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_RBRACE] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_RBRACK] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_u201d] = ACTIONS(510), + [anon_sym_u2227] = ACTIONS(510), + [anon_sym_SLASH_BSLASH] = ACTIONS(512), + [anon_sym_COLON_COLON] = ACTIONS(512), + [sym__hol_alphanumeric] = ACTIONS(512), + [sym__hol_symbolic] = ACTIONS(512), + [anon_sym_OLEAST] = ACTIONS(512), + [anon_sym_LEAST] = ACTIONS(512), + [anon_sym_some] = ACTIONS(512), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(512), + [anon_sym_u2203_BANG] = ACTIONS(510), + [anon_sym_QMARK_BANG] = ACTIONS(512), + [anon_sym_u2203] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u2200] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_u03bb] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_u00ac] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_u21ce] = ACTIONS(510), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(512), + [anon_sym_LT_EQ_GT] = ACTIONS(512), + [anon_sym_u21d4] = ACTIONS(510), + [anon_sym_EQ_EQ_GT] = ACTIONS(512), + [anon_sym_u21d2] = ACTIONS(510), + [anon_sym_BSLASH_SLASH] = ACTIONS(512), + [anon_sym_u2228] = ACTIONS(510), + [anon_sym_u2209] = ACTIONS(510), + [anon_sym_NOTIN] = ACTIONS(512), + [anon_sym_u2208] = ACTIONS(510), + [anon_sym_IN] = ACTIONS(512), + [anon_sym_u227c] = ACTIONS(510), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_PERMUTES] = ACTIONS(512), + [anon_sym_HAS_SIZE] = ACTIONS(512), + [anon_sym_u2282] = ACTIONS(510), + [anon_sym_PSUBSET] = ACTIONS(512), + [anon_sym_u2286] = ACTIONS(512), + [anon_sym_u2265] = ACTIONS(510), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_u2264] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_u2286u1d63] = ACTIONS(510), + [anon_sym_RSUBSET] = ACTIONS(512), + [anon_sym_u2260] = ACTIONS(510), + [anon_sym_LT_GT] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_INSERT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_o] = ACTIONS(512), + [sym_hol_true] = ACTIONS(512), + [sym_hol_false] = ACTIONS(512), + [sym_hol_number] = ACTIONS(510), + [sym_hol_string] = ACTIONS(510), + [sym_hol_character] = ACTIONS(510), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [62] = { + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_RPAREN] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_RBRACK] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_u201d] = ACTIONS(514), + [anon_sym_u2227] = ACTIONS(514), + [anon_sym_SLASH_BSLASH] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(516), + [sym__hol_alphanumeric] = ACTIONS(516), + [sym__hol_symbolic] = ACTIONS(516), + [anon_sym_OLEAST] = ACTIONS(516), + [anon_sym_LEAST] = ACTIONS(516), + [anon_sym_some] = ACTIONS(516), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(516), + [anon_sym_u2203_BANG] = ACTIONS(514), + [anon_sym_QMARK_BANG] = ACTIONS(516), + [anon_sym_u2203] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_u2200] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_u03bb] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_u00ac] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_u21ce] = ACTIONS(514), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(516), + [anon_sym_LT_EQ_GT] = ACTIONS(516), + [anon_sym_u21d4] = ACTIONS(514), + [anon_sym_EQ_EQ_GT] = ACTIONS(516), + [anon_sym_u21d2] = ACTIONS(514), + [anon_sym_BSLASH_SLASH] = ACTIONS(516), + [anon_sym_u2228] = ACTIONS(514), + [anon_sym_u2209] = ACTIONS(514), + [anon_sym_NOTIN] = ACTIONS(516), + [anon_sym_u2208] = ACTIONS(514), + [anon_sym_IN] = ACTIONS(516), + [anon_sym_u227c] = ACTIONS(514), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_PERMUTES] = ACTIONS(516), + [anon_sym_HAS_SIZE] = ACTIONS(516), + [anon_sym_u2282] = ACTIONS(514), + [anon_sym_PSUBSET] = ACTIONS(516), + [anon_sym_u2286] = ACTIONS(516), + [anon_sym_u2265] = ACTIONS(514), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_u2264] = ACTIONS(514), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_u2286u1d63] = ACTIONS(514), + [anon_sym_RSUBSET] = ACTIONS(516), + [anon_sym_u2260] = ACTIONS(514), + [anon_sym_LT_GT] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_INSERT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_o] = ACTIONS(516), + [sym_hol_true] = ACTIONS(516), + [sym_hol_false] = ACTIONS(516), + [sym_hol_number] = ACTIONS(514), + [sym_hol_string] = ACTIONS(514), + [sym_hol_character] = ACTIONS(514), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [63] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(444), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_INSERT] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_o] = ACTIONS(468), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [64] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_COLON] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(440), + [anon_sym_SLASH_BSLASH] = ACTIONS(442), + [anon_sym_COLON_COLON] = ACTIONS(444), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(458), + [anon_sym_NOTIN] = ACTIONS(460), + [anon_sym_u2208] = ACTIONS(458), + [anon_sym_IN] = ACTIONS(460), + [anon_sym_u227c] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(434), + [anon_sym_PERMUTES] = ACTIONS(434), + [anon_sym_HAS_SIZE] = ACTIONS(434), + [anon_sym_u2282] = ACTIONS(462), + [anon_sym_PSUBSET] = ACTIONS(434), + [anon_sym_u2286] = ACTIONS(434), + [anon_sym_u2265] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_u2264] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_u2286u1d63] = ACTIONS(462), + [anon_sym_RSUBSET] = ACTIONS(434), + [anon_sym_u2260] = ACTIONS(462), + [anon_sym_LT_GT] = ACTIONS(434), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_INSERT] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_o] = ACTIONS(468), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [65] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(444), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_o] = ACTIONS(468), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [66] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_COLON] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(440), + [anon_sym_SLASH_BSLASH] = ACTIONS(442), + [anon_sym_COLON_COLON] = ACTIONS(444), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(450), + [anon_sym_u21d2] = ACTIONS(452), + [anon_sym_BSLASH_SLASH] = ACTIONS(454), + [anon_sym_u2228] = ACTIONS(456), + [anon_sym_u2209] = ACTIONS(458), + [anon_sym_NOTIN] = ACTIONS(460), + [anon_sym_u2208] = ACTIONS(458), + [anon_sym_IN] = ACTIONS(460), + [anon_sym_u227c] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(434), + [anon_sym_PERMUTES] = ACTIONS(434), + [anon_sym_HAS_SIZE] = ACTIONS(434), + [anon_sym_u2282] = ACTIONS(462), + [anon_sym_PSUBSET] = ACTIONS(434), + [anon_sym_u2286] = ACTIONS(434), + [anon_sym_u2265] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_u2264] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_u2286u1d63] = ACTIONS(462), + [anon_sym_RSUBSET] = ACTIONS(434), + [anon_sym_u2260] = ACTIONS(462), + [anon_sym_LT_GT] = ACTIONS(434), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_INSERT] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_o] = ACTIONS(468), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [67] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_COLON] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(440), + [anon_sym_SLASH_BSLASH] = ACTIONS(442), + [anon_sym_COLON_COLON] = ACTIONS(444), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(454), + [anon_sym_u2228] = ACTIONS(456), + [anon_sym_u2209] = ACTIONS(458), + [anon_sym_NOTIN] = ACTIONS(460), + [anon_sym_u2208] = ACTIONS(458), + [anon_sym_IN] = ACTIONS(460), + [anon_sym_u227c] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(434), + [anon_sym_PERMUTES] = ACTIONS(434), + [anon_sym_HAS_SIZE] = ACTIONS(434), + [anon_sym_u2282] = ACTIONS(462), + [anon_sym_PSUBSET] = ACTIONS(434), + [anon_sym_u2286] = ACTIONS(434), + [anon_sym_u2265] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_u2264] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_u2286u1d63] = ACTIONS(462), + [anon_sym_RSUBSET] = ACTIONS(434), + [anon_sym_u2260] = ACTIONS(462), + [anon_sym_LT_GT] = ACTIONS(434), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_INSERT] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_o] = ACTIONS(468), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [68] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_COLON] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(440), + [anon_sym_SLASH_BSLASH] = ACTIONS(442), + [anon_sym_COLON_COLON] = ACTIONS(444), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(454), + [anon_sym_u2228] = ACTIONS(456), + [anon_sym_u2209] = ACTIONS(458), + [anon_sym_NOTIN] = ACTIONS(460), + [anon_sym_u2208] = ACTIONS(458), + [anon_sym_IN] = ACTIONS(460), + [anon_sym_u227c] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(434), + [anon_sym_PERMUTES] = ACTIONS(434), + [anon_sym_HAS_SIZE] = ACTIONS(434), + [anon_sym_u2282] = ACTIONS(462), + [anon_sym_PSUBSET] = ACTIONS(434), + [anon_sym_u2286] = ACTIONS(434), + [anon_sym_u2265] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_u2264] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_u2286u1d63] = ACTIONS(462), + [anon_sym_RSUBSET] = ACTIONS(434), + [anon_sym_u2260] = ACTIONS(462), + [anon_sym_LT_GT] = ACTIONS(434), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_INSERT] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_o] = ACTIONS(468), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [69] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_COLON] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(444), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(434), + [anon_sym_PERMUTES] = ACTIONS(434), + [anon_sym_HAS_SIZE] = ACTIONS(434), + [anon_sym_u2282] = ACTIONS(462), + [anon_sym_PSUBSET] = ACTIONS(434), + [anon_sym_u2286] = ACTIONS(434), + [anon_sym_u2265] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_u2264] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_u2286u1d63] = ACTIONS(462), + [anon_sym_RSUBSET] = ACTIONS(434), + [anon_sym_u2260] = ACTIONS(462), + [anon_sym_LT_GT] = ACTIONS(434), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_INSERT] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_o] = ACTIONS(468), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [70] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(444), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_INSERT] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_o] = ACTIONS(468), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [71] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(468), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [72] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(468), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [73] = { + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_RPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(434), + [anon_sym_COLON] = ACTIONS(436), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_RBRACK] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_u201d] = ACTIONS(522), + [anon_sym_u2227] = ACTIONS(440), + [anon_sym_SLASH_BSLASH] = ACTIONS(442), + [anon_sym_COLON_COLON] = ACTIONS(444), + [sym__hol_alphanumeric] = ACTIONS(524), + [sym__hol_symbolic] = ACTIONS(524), + [anon_sym_OLEAST] = ACTIONS(524), + [anon_sym_LEAST] = ACTIONS(524), + [anon_sym_some] = ACTIONS(524), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(524), + [anon_sym_u2203_BANG] = ACTIONS(522), + [anon_sym_QMARK_BANG] = ACTIONS(524), + [anon_sym_u2203] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u2200] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_u03bb] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_u00ac] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_u21ce] = ACTIONS(446), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(448), + [anon_sym_LT_EQ_GT] = ACTIONS(448), + [anon_sym_u21d4] = ACTIONS(446), + [anon_sym_EQ_EQ_GT] = ACTIONS(450), + [anon_sym_u21d2] = ACTIONS(452), + [anon_sym_BSLASH_SLASH] = ACTIONS(454), + [anon_sym_u2228] = ACTIONS(456), + [anon_sym_u2209] = ACTIONS(458), + [anon_sym_NOTIN] = ACTIONS(460), + [anon_sym_u2208] = ACTIONS(458), + [anon_sym_IN] = ACTIONS(460), + [anon_sym_u227c] = ACTIONS(462), + [anon_sym_LT_LT_EQ] = ACTIONS(434), + [anon_sym_PERMUTES] = ACTIONS(434), + [anon_sym_HAS_SIZE] = ACTIONS(434), + [anon_sym_u2282] = ACTIONS(462), + [anon_sym_PSUBSET] = ACTIONS(434), + [anon_sym_u2286] = ACTIONS(434), + [anon_sym_u2265] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(434), + [anon_sym_u2264] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(434), + [anon_sym_GT] = ACTIONS(434), + [anon_sym_LT] = ACTIONS(434), + [anon_sym_u2286u1d63] = ACTIONS(462), + [anon_sym_RSUBSET] = ACTIONS(434), + [anon_sym_u2260] = ACTIONS(462), + [anon_sym_LT_GT] = ACTIONS(434), + [anon_sym_DOLLAR] = ACTIONS(464), + [anon_sym_INSERT] = ACTIONS(444), + [anon_sym_PLUS] = ACTIONS(466), + [anon_sym_o] = ACTIONS(468), + [sym_hol_true] = ACTIONS(524), + [sym_hol_false] = ACTIONS(524), + [sym_hol_number] = ACTIONS(522), + [sym_hol_string] = ACTIONS(522), + [sym_hol_character] = ACTIONS(522), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [74] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_COLON] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(530), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(532), + [anon_sym_LT_LT_EQ] = ACTIONS(526), + [anon_sym_PERMUTES] = ACTIONS(526), + [anon_sym_HAS_SIZE] = ACTIONS(526), + [anon_sym_u2282] = ACTIONS(532), + [anon_sym_PSUBSET] = ACTIONS(526), + [anon_sym_u2286] = ACTIONS(526), + [anon_sym_u2265] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_u2264] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_u2286u1d63] = ACTIONS(532), + [anon_sym_RSUBSET] = ACTIONS(526), + [anon_sym_u2260] = ACTIONS(532), + [anon_sym_LT_GT] = ACTIONS(526), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_INSERT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_o] = ACTIONS(538), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [75] = { + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_RPAREN] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_RBRACK] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_u201d] = ACTIONS(514), + [anon_sym_u2227] = ACTIONS(514), + [anon_sym_SLASH_BSLASH] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(516), + [sym__hol_alphanumeric] = ACTIONS(516), + [sym__hol_symbolic] = ACTIONS(516), + [anon_sym_OLEAST] = ACTIONS(516), + [anon_sym_LEAST] = ACTIONS(516), + [anon_sym_some] = ACTIONS(516), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(516), + [anon_sym_u2203_BANG] = ACTIONS(514), + [anon_sym_QMARK_BANG] = ACTIONS(516), + [anon_sym_u2203] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_u2200] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_u03bb] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_u00ac] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_u21ce] = ACTIONS(514), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(516), + [anon_sym_LT_EQ_GT] = ACTIONS(516), + [anon_sym_u21d4] = ACTIONS(514), + [anon_sym_EQ_EQ_GT] = ACTIONS(516), + [anon_sym_u21d2] = ACTIONS(514), + [anon_sym_BSLASH_SLASH] = ACTIONS(516), + [anon_sym_u2228] = ACTIONS(514), + [anon_sym_u2209] = ACTIONS(514), + [anon_sym_NOTIN] = ACTIONS(516), + [anon_sym_u2208] = ACTIONS(514), + [anon_sym_IN] = ACTIONS(516), + [anon_sym_u227c] = ACTIONS(514), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_PERMUTES] = ACTIONS(516), + [anon_sym_HAS_SIZE] = ACTIONS(516), + [anon_sym_u2282] = ACTIONS(514), + [anon_sym_PSUBSET] = ACTIONS(516), + [anon_sym_u2286] = ACTIONS(516), + [anon_sym_u2265] = ACTIONS(514), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_u2264] = ACTIONS(514), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_u2286u1d63] = ACTIONS(514), + [anon_sym_RSUBSET] = ACTIONS(516), + [anon_sym_u2260] = ACTIONS(514), + [anon_sym_LT_GT] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_INSERT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_o] = ACTIONS(516), + [sym_hol_true] = ACTIONS(516), + [sym_hol_false] = ACTIONS(516), + [sym_hol_number] = ACTIONS(514), + [sym_hol_string] = ACTIONS(514), + [sym_hol_character] = ACTIONS(514), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [76] = { + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_COMMA] = ACTIONS(474), + [anon_sym_RPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_RBRACE] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_RBRACK] = ACTIONS(474), + [anon_sym_SEMI] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_u201d] = ACTIONS(474), + [anon_sym_u2227] = ACTIONS(474), + [anon_sym_SLASH_BSLASH] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(476), + [sym__hol_alphanumeric] = ACTIONS(476), + [sym__hol_symbolic] = ACTIONS(476), + [anon_sym_OLEAST] = ACTIONS(476), + [anon_sym_LEAST] = ACTIONS(476), + [anon_sym_some] = ACTIONS(476), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(476), + [anon_sym_u2203_BANG] = ACTIONS(474), + [anon_sym_QMARK_BANG] = ACTIONS(476), + [anon_sym_u2203] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u2200] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_u03bb] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_u00ac] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_u21ce] = ACTIONS(474), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(476), + [anon_sym_LT_EQ_GT] = ACTIONS(476), + [anon_sym_u21d4] = ACTIONS(474), + [anon_sym_EQ_EQ_GT] = ACTIONS(476), + [anon_sym_u21d2] = ACTIONS(474), + [anon_sym_BSLASH_SLASH] = ACTIONS(476), + [anon_sym_u2228] = ACTIONS(474), + [anon_sym_u2209] = ACTIONS(474), + [anon_sym_NOTIN] = ACTIONS(476), + [anon_sym_u2208] = ACTIONS(474), + [anon_sym_IN] = ACTIONS(476), + [anon_sym_u227c] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_PERMUTES] = ACTIONS(476), + [anon_sym_HAS_SIZE] = ACTIONS(476), + [anon_sym_u2282] = ACTIONS(474), + [anon_sym_PSUBSET] = ACTIONS(476), + [anon_sym_u2286] = ACTIONS(476), + [anon_sym_u2265] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_u2264] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_u2286u1d63] = ACTIONS(474), + [anon_sym_RSUBSET] = ACTIONS(476), + [anon_sym_u2260] = ACTIONS(474), + [anon_sym_LT_GT] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_INSERT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_o] = ACTIONS(476), + [sym_hol_true] = ACTIONS(476), + [sym_hol_false] = ACTIONS(476), + [sym_hol_number] = ACTIONS(474), + [sym_hol_string] = ACTIONS(474), + [sym_hol_character] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [77] = { + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_COMMA] = ACTIONS(111), + [anon_sym_RPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_RBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_RBRACK] = ACTIONS(111), + [anon_sym_SEMI] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_u201d] = ACTIONS(111), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [78] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_COLON] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(540), + [anon_sym_SLASH_BSLASH] = ACTIONS(542), + [anon_sym_COLON_COLON] = ACTIONS(530), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(544), + [anon_sym_NOTIN] = ACTIONS(546), + [anon_sym_u2208] = ACTIONS(544), + [anon_sym_IN] = ACTIONS(546), + [anon_sym_u227c] = ACTIONS(532), + [anon_sym_LT_LT_EQ] = ACTIONS(526), + [anon_sym_PERMUTES] = ACTIONS(526), + [anon_sym_HAS_SIZE] = ACTIONS(526), + [anon_sym_u2282] = ACTIONS(532), + [anon_sym_PSUBSET] = ACTIONS(526), + [anon_sym_u2286] = ACTIONS(526), + [anon_sym_u2265] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_u2264] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_u2286u1d63] = ACTIONS(532), + [anon_sym_RSUBSET] = ACTIONS(526), + [anon_sym_u2260] = ACTIONS(532), + [anon_sym_LT_GT] = ACTIONS(526), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_INSERT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_o] = ACTIONS(538), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [79] = { + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_COMMA] = ACTIONS(494), + [anon_sym_RPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_RBRACK] = ACTIONS(494), + [anon_sym_SEMI] = ACTIONS(494), + [anon_sym_if] = ACTIONS(496), + [anon_sym_case] = ACTIONS(496), + [anon_sym_u201d] = ACTIONS(494), + [anon_sym_u2227] = ACTIONS(494), + [anon_sym_SLASH_BSLASH] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(496), + [sym__hol_alphanumeric] = ACTIONS(496), + [sym__hol_symbolic] = ACTIONS(496), + [anon_sym_OLEAST] = ACTIONS(496), + [anon_sym_LEAST] = ACTIONS(496), + [anon_sym_some] = ACTIONS(496), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(496), + [anon_sym_u2203_BANG] = ACTIONS(494), + [anon_sym_QMARK_BANG] = ACTIONS(496), + [anon_sym_u2203] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u2200] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_u03bb] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_u00ac] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_u21ce] = ACTIONS(494), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(496), + [anon_sym_LT_EQ_GT] = ACTIONS(496), + [anon_sym_u21d4] = ACTIONS(494), + [anon_sym_EQ_EQ_GT] = ACTIONS(496), + [anon_sym_u21d2] = ACTIONS(494), + [anon_sym_BSLASH_SLASH] = ACTIONS(496), + [anon_sym_u2228] = ACTIONS(494), + [anon_sym_u2209] = ACTIONS(494), + [anon_sym_NOTIN] = ACTIONS(496), + [anon_sym_u2208] = ACTIONS(494), + [anon_sym_IN] = ACTIONS(496), + [anon_sym_u227c] = ACTIONS(494), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_PERMUTES] = ACTIONS(496), + [anon_sym_HAS_SIZE] = ACTIONS(496), + [anon_sym_u2282] = ACTIONS(494), + [anon_sym_PSUBSET] = ACTIONS(496), + [anon_sym_u2286] = ACTIONS(496), + [anon_sym_u2265] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_u2264] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_u2286u1d63] = ACTIONS(494), + [anon_sym_RSUBSET] = ACTIONS(496), + [anon_sym_u2260] = ACTIONS(494), + [anon_sym_LT_GT] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(496), + [anon_sym_INSERT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_o] = ACTIONS(496), + [sym_hol_true] = ACTIONS(496), + [sym_hol_false] = ACTIONS(496), + [sym_hol_number] = ACTIONS(494), + [sym_hol_string] = ACTIONS(494), + [sym_hol_character] = ACTIONS(494), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [80] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(530), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_o] = ACTIONS(538), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [81] = { + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_COMMA] = ACTIONS(506), + [anon_sym_RPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_RBRACK] = ACTIONS(506), + [anon_sym_SEMI] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_u201d] = ACTIONS(506), + [anon_sym_u2227] = ACTIONS(506), + [anon_sym_SLASH_BSLASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(508), + [sym__hol_alphanumeric] = ACTIONS(508), + [sym__hol_symbolic] = ACTIONS(508), + [anon_sym_OLEAST] = ACTIONS(508), + [anon_sym_LEAST] = ACTIONS(508), + [anon_sym_some] = ACTIONS(508), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(508), + [anon_sym_u2203_BANG] = ACTIONS(506), + [anon_sym_QMARK_BANG] = ACTIONS(508), + [anon_sym_u2203] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u2200] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_u03bb] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_u00ac] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_u21ce] = ACTIONS(506), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(508), + [anon_sym_LT_EQ_GT] = ACTIONS(508), + [anon_sym_u21d4] = ACTIONS(506), + [anon_sym_EQ_EQ_GT] = ACTIONS(508), + [anon_sym_u21d2] = ACTIONS(506), + [anon_sym_BSLASH_SLASH] = ACTIONS(508), + [anon_sym_u2228] = ACTIONS(506), + [anon_sym_u2209] = ACTIONS(506), + [anon_sym_NOTIN] = ACTIONS(508), + [anon_sym_u2208] = ACTIONS(506), + [anon_sym_IN] = ACTIONS(508), + [anon_sym_u227c] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_PERMUTES] = ACTIONS(508), + [anon_sym_HAS_SIZE] = ACTIONS(508), + [anon_sym_u2282] = ACTIONS(506), + [anon_sym_PSUBSET] = ACTIONS(508), + [anon_sym_u2286] = ACTIONS(508), + [anon_sym_u2265] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_u2264] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_u2286u1d63] = ACTIONS(506), + [anon_sym_RSUBSET] = ACTIONS(508), + [anon_sym_u2260] = ACTIONS(506), + [anon_sym_LT_GT] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(508), + [anon_sym_INSERT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_o] = ACTIONS(508), + [sym_hol_true] = ACTIONS(508), + [sym_hol_false] = ACTIONS(508), + [sym_hol_number] = ACTIONS(506), + [sym_hol_string] = ACTIONS(506), + [sym_hol_character] = ACTIONS(506), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [82] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_COLON] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(540), + [anon_sym_SLASH_BSLASH] = ACTIONS(542), + [anon_sym_COLON_COLON] = ACTIONS(530), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(548), + [anon_sym_u21d2] = ACTIONS(550), + [anon_sym_BSLASH_SLASH] = ACTIONS(552), + [anon_sym_u2228] = ACTIONS(554), + [anon_sym_u2209] = ACTIONS(544), + [anon_sym_NOTIN] = ACTIONS(546), + [anon_sym_u2208] = ACTIONS(544), + [anon_sym_IN] = ACTIONS(546), + [anon_sym_u227c] = ACTIONS(532), + [anon_sym_LT_LT_EQ] = ACTIONS(526), + [anon_sym_PERMUTES] = ACTIONS(526), + [anon_sym_HAS_SIZE] = ACTIONS(526), + [anon_sym_u2282] = ACTIONS(532), + [anon_sym_PSUBSET] = ACTIONS(526), + [anon_sym_u2286] = ACTIONS(526), + [anon_sym_u2265] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_u2264] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_u2286u1d63] = ACTIONS(532), + [anon_sym_RSUBSET] = ACTIONS(526), + [anon_sym_u2260] = ACTIONS(532), + [anon_sym_LT_GT] = ACTIONS(526), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_INSERT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_o] = ACTIONS(538), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [83] = { + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_COMMA] = ACTIONS(428), + [anon_sym_RPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_RBRACE] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_RBRACK] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(428), + [anon_sym_if] = ACTIONS(430), + [anon_sym_case] = ACTIONS(430), + [anon_sym_u201d] = ACTIONS(428), + [anon_sym_u2227] = ACTIONS(428), + [anon_sym_SLASH_BSLASH] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(430), + [sym__hol_alphanumeric] = ACTIONS(430), + [sym__hol_symbolic] = ACTIONS(430), + [anon_sym_OLEAST] = ACTIONS(430), + [anon_sym_LEAST] = ACTIONS(430), + [anon_sym_some] = ACTIONS(430), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(430), + [anon_sym_u2203_BANG] = ACTIONS(428), + [anon_sym_QMARK_BANG] = ACTIONS(430), + [anon_sym_u2203] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u2200] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_u03bb] = ACTIONS(428), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_u00ac] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_u21ce] = ACTIONS(428), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(430), + [anon_sym_LT_EQ_GT] = ACTIONS(430), + [anon_sym_u21d4] = ACTIONS(428), + [anon_sym_EQ_EQ_GT] = ACTIONS(430), + [anon_sym_u21d2] = ACTIONS(428), + [anon_sym_BSLASH_SLASH] = ACTIONS(430), + [anon_sym_u2228] = ACTIONS(428), + [anon_sym_u2209] = ACTIONS(428), + [anon_sym_NOTIN] = ACTIONS(430), + [anon_sym_u2208] = ACTIONS(428), + [anon_sym_IN] = ACTIONS(430), + [anon_sym_u227c] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_PERMUTES] = ACTIONS(430), + [anon_sym_HAS_SIZE] = ACTIONS(430), + [anon_sym_u2282] = ACTIONS(428), + [anon_sym_PSUBSET] = ACTIONS(430), + [anon_sym_u2286] = ACTIONS(430), + [anon_sym_u2265] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_u2264] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_u2286u1d63] = ACTIONS(428), + [anon_sym_RSUBSET] = ACTIONS(430), + [anon_sym_u2260] = ACTIONS(428), + [anon_sym_LT_GT] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(430), + [anon_sym_INSERT] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_o] = ACTIONS(430), + [sym_hol_true] = ACTIONS(430), + [sym_hol_false] = ACTIONS(430), + [sym_hol_number] = ACTIONS(428), + [sym_hol_string] = ACTIONS(428), + [sym_hol_character] = ACTIONS(428), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [84] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(530), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_INSERT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_o] = ACTIONS(538), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [85] = { + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_COMMA] = ACTIONS(502), + [anon_sym_RPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_COLON] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_RBRACK] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_u201d] = ACTIONS(502), + [anon_sym_u2227] = ACTIONS(502), + [anon_sym_SLASH_BSLASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(504), + [sym__hol_alphanumeric] = ACTIONS(504), + [sym__hol_symbolic] = ACTIONS(504), + [anon_sym_OLEAST] = ACTIONS(504), + [anon_sym_LEAST] = ACTIONS(504), + [anon_sym_some] = ACTIONS(504), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(504), + [anon_sym_u2203_BANG] = ACTIONS(502), + [anon_sym_QMARK_BANG] = ACTIONS(504), + [anon_sym_u2203] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u2200] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_u03bb] = ACTIONS(502), + [anon_sym_BSLASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_u00ac] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_u21ce] = ACTIONS(502), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(504), + [anon_sym_LT_EQ_GT] = ACTIONS(504), + [anon_sym_u21d4] = ACTIONS(502), + [anon_sym_EQ_EQ_GT] = ACTIONS(504), + [anon_sym_u21d2] = ACTIONS(502), + [anon_sym_BSLASH_SLASH] = ACTIONS(504), + [anon_sym_u2228] = ACTIONS(502), + [anon_sym_u2209] = ACTIONS(502), + [anon_sym_NOTIN] = ACTIONS(504), + [anon_sym_u2208] = ACTIONS(502), + [anon_sym_IN] = ACTIONS(504), + [anon_sym_u227c] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_PERMUTES] = ACTIONS(504), + [anon_sym_HAS_SIZE] = ACTIONS(504), + [anon_sym_u2282] = ACTIONS(502), + [anon_sym_PSUBSET] = ACTIONS(504), + [anon_sym_u2286] = ACTIONS(504), + [anon_sym_u2265] = ACTIONS(502), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_u2264] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_u2286u1d63] = ACTIONS(502), + [anon_sym_RSUBSET] = ACTIONS(504), + [anon_sym_u2260] = ACTIONS(502), + [anon_sym_LT_GT] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(504), + [anon_sym_INSERT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_o] = ACTIONS(504), + [sym_hol_true] = ACTIONS(504), + [sym_hol_false] = ACTIONS(504), + [sym_hol_number] = ACTIONS(502), + [sym_hol_string] = ACTIONS(502), + [sym_hol_character] = ACTIONS(502), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [86] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_COLON] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(540), + [anon_sym_SLASH_BSLASH] = ACTIONS(542), + [anon_sym_COLON_COLON] = ACTIONS(530), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(552), + [anon_sym_u2228] = ACTIONS(554), + [anon_sym_u2209] = ACTIONS(544), + [anon_sym_NOTIN] = ACTIONS(546), + [anon_sym_u2208] = ACTIONS(544), + [anon_sym_IN] = ACTIONS(546), + [anon_sym_u227c] = ACTIONS(532), + [anon_sym_LT_LT_EQ] = ACTIONS(526), + [anon_sym_PERMUTES] = ACTIONS(526), + [anon_sym_HAS_SIZE] = ACTIONS(526), + [anon_sym_u2282] = ACTIONS(532), + [anon_sym_PSUBSET] = ACTIONS(526), + [anon_sym_u2286] = ACTIONS(526), + [anon_sym_u2265] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_u2264] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_u2286u1d63] = ACTIONS(532), + [anon_sym_RSUBSET] = ACTIONS(526), + [anon_sym_u2260] = ACTIONS(532), + [anon_sym_LT_GT] = ACTIONS(526), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_INSERT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_o] = ACTIONS(538), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [87] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(530), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_INSERT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_o] = ACTIONS(538), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [88] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_COLON] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(540), + [anon_sym_SLASH_BSLASH] = ACTIONS(542), + [anon_sym_COLON_COLON] = ACTIONS(530), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(552), + [anon_sym_u2228] = ACTIONS(554), + [anon_sym_u2209] = ACTIONS(544), + [anon_sym_NOTIN] = ACTIONS(546), + [anon_sym_u2208] = ACTIONS(544), + [anon_sym_IN] = ACTIONS(546), + [anon_sym_u227c] = ACTIONS(532), + [anon_sym_LT_LT_EQ] = ACTIONS(526), + [anon_sym_PERMUTES] = ACTIONS(526), + [anon_sym_HAS_SIZE] = ACTIONS(526), + [anon_sym_u2282] = ACTIONS(532), + [anon_sym_PSUBSET] = ACTIONS(526), + [anon_sym_u2286] = ACTIONS(526), + [anon_sym_u2265] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_u2264] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_u2286u1d63] = ACTIONS(532), + [anon_sym_RSUBSET] = ACTIONS(526), + [anon_sym_u2260] = ACTIONS(532), + [anon_sym_LT_GT] = ACTIONS(526), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_INSERT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_o] = ACTIONS(538), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [89] = { + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(486), + [anon_sym_RPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_RBRACK] = ACTIONS(486), + [anon_sym_SEMI] = ACTIONS(486), + [anon_sym_if] = ACTIONS(488), + [anon_sym_case] = ACTIONS(488), + [anon_sym_u201d] = ACTIONS(486), + [anon_sym_u2227] = ACTIONS(486), + [anon_sym_SLASH_BSLASH] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(488), + [sym__hol_alphanumeric] = ACTIONS(488), + [sym__hol_symbolic] = ACTIONS(488), + [anon_sym_OLEAST] = ACTIONS(488), + [anon_sym_LEAST] = ACTIONS(488), + [anon_sym_some] = ACTIONS(488), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(488), + [anon_sym_u2203_BANG] = ACTIONS(486), + [anon_sym_QMARK_BANG] = ACTIONS(488), + [anon_sym_u2203] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u2200] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_u03bb] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_u00ac] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_u21ce] = ACTIONS(486), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(488), + [anon_sym_LT_EQ_GT] = ACTIONS(488), + [anon_sym_u21d4] = ACTIONS(486), + [anon_sym_EQ_EQ_GT] = ACTIONS(488), + [anon_sym_u21d2] = ACTIONS(486), + [anon_sym_BSLASH_SLASH] = ACTIONS(488), + [anon_sym_u2228] = ACTIONS(486), + [anon_sym_u2209] = ACTIONS(486), + [anon_sym_NOTIN] = ACTIONS(488), + [anon_sym_u2208] = ACTIONS(486), + [anon_sym_IN] = ACTIONS(488), + [anon_sym_u227c] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_PERMUTES] = ACTIONS(488), + [anon_sym_HAS_SIZE] = ACTIONS(488), + [anon_sym_u2282] = ACTIONS(486), + [anon_sym_PSUBSET] = ACTIONS(488), + [anon_sym_u2286] = ACTIONS(488), + [anon_sym_u2265] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_u2264] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_u2286u1d63] = ACTIONS(486), + [anon_sym_RSUBSET] = ACTIONS(488), + [anon_sym_u2260] = ACTIONS(486), + [anon_sym_LT_GT] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_INSERT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_o] = ACTIONS(488), + [sym_hol_true] = ACTIONS(488), + [sym_hol_false] = ACTIONS(488), + [sym_hol_number] = ACTIONS(486), + [sym_hol_string] = ACTIONS(486), + [sym_hol_character] = ACTIONS(486), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [90] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(538), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [91] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_RBRACK] = ACTIONS(518), + [anon_sym_SEMI] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u201d] = ACTIONS(518), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(538), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [92] = { + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(510), + [anon_sym_RPAREN] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_RBRACE] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_RBRACK] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_u201d] = ACTIONS(510), + [anon_sym_u2227] = ACTIONS(510), + [anon_sym_SLASH_BSLASH] = ACTIONS(512), + [anon_sym_COLON_COLON] = ACTIONS(512), + [sym__hol_alphanumeric] = ACTIONS(512), + [sym__hol_symbolic] = ACTIONS(512), + [anon_sym_OLEAST] = ACTIONS(512), + [anon_sym_LEAST] = ACTIONS(512), + [anon_sym_some] = ACTIONS(512), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(512), + [anon_sym_u2203_BANG] = ACTIONS(510), + [anon_sym_QMARK_BANG] = ACTIONS(512), + [anon_sym_u2203] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u2200] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_u03bb] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_u00ac] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_u21ce] = ACTIONS(510), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(512), + [anon_sym_LT_EQ_GT] = ACTIONS(512), + [anon_sym_u21d4] = ACTIONS(510), + [anon_sym_EQ_EQ_GT] = ACTIONS(512), + [anon_sym_u21d2] = ACTIONS(510), + [anon_sym_BSLASH_SLASH] = ACTIONS(512), + [anon_sym_u2228] = ACTIONS(510), + [anon_sym_u2209] = ACTIONS(510), + [anon_sym_NOTIN] = ACTIONS(512), + [anon_sym_u2208] = ACTIONS(510), + [anon_sym_IN] = ACTIONS(512), + [anon_sym_u227c] = ACTIONS(510), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_PERMUTES] = ACTIONS(512), + [anon_sym_HAS_SIZE] = ACTIONS(512), + [anon_sym_u2282] = ACTIONS(510), + [anon_sym_PSUBSET] = ACTIONS(512), + [anon_sym_u2286] = ACTIONS(512), + [anon_sym_u2265] = ACTIONS(510), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_u2264] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_u2286u1d63] = ACTIONS(510), + [anon_sym_RSUBSET] = ACTIONS(512), + [anon_sym_u2260] = ACTIONS(510), + [anon_sym_LT_GT] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_INSERT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_o] = ACTIONS(512), + [sym_hol_true] = ACTIONS(512), + [sym_hol_false] = ACTIONS(512), + [sym_hol_number] = ACTIONS(510), + [sym_hol_string] = ACTIONS(510), + [sym_hol_character] = ACTIONS(510), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [93] = { + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_RPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_COLON] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_RBRACK] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_u201d] = ACTIONS(522), + [anon_sym_u2227] = ACTIONS(540), + [anon_sym_SLASH_BSLASH] = ACTIONS(542), + [anon_sym_COLON_COLON] = ACTIONS(530), + [sym__hol_alphanumeric] = ACTIONS(524), + [sym__hol_symbolic] = ACTIONS(524), + [anon_sym_OLEAST] = ACTIONS(524), + [anon_sym_LEAST] = ACTIONS(524), + [anon_sym_some] = ACTIONS(524), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(524), + [anon_sym_u2203_BANG] = ACTIONS(522), + [anon_sym_QMARK_BANG] = ACTIONS(524), + [anon_sym_u2203] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u2200] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_u03bb] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_u00ac] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_u21ce] = ACTIONS(556), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(558), + [anon_sym_LT_EQ_GT] = ACTIONS(558), + [anon_sym_u21d4] = ACTIONS(556), + [anon_sym_EQ_EQ_GT] = ACTIONS(548), + [anon_sym_u21d2] = ACTIONS(550), + [anon_sym_BSLASH_SLASH] = ACTIONS(552), + [anon_sym_u2228] = ACTIONS(554), + [anon_sym_u2209] = ACTIONS(544), + [anon_sym_NOTIN] = ACTIONS(546), + [anon_sym_u2208] = ACTIONS(544), + [anon_sym_IN] = ACTIONS(546), + [anon_sym_u227c] = ACTIONS(532), + [anon_sym_LT_LT_EQ] = ACTIONS(526), + [anon_sym_PERMUTES] = ACTIONS(526), + [anon_sym_HAS_SIZE] = ACTIONS(526), + [anon_sym_u2282] = ACTIONS(532), + [anon_sym_PSUBSET] = ACTIONS(526), + [anon_sym_u2286] = ACTIONS(526), + [anon_sym_u2265] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_u2264] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_u2286u1d63] = ACTIONS(532), + [anon_sym_RSUBSET] = ACTIONS(526), + [anon_sym_u2260] = ACTIONS(532), + [anon_sym_LT_GT] = ACTIONS(526), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_INSERT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_o] = ACTIONS(538), + [sym_hol_true] = ACTIONS(524), + [sym_hol_false] = ACTIONS(524), + [sym_hol_number] = ACTIONS(522), + [sym_hol_string] = ACTIONS(522), + [sym_hol_character] = ACTIONS(522), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [94] = { + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_COMMA] = ACTIONS(432), + [anon_sym_RPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(526), + [anon_sym_COLON] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_RBRACK] = ACTIONS(432), + [anon_sym_SEMI] = ACTIONS(432), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(438), + [anon_sym_u201d] = ACTIONS(432), + [anon_sym_u2227] = ACTIONS(540), + [anon_sym_SLASH_BSLASH] = ACTIONS(542), + [anon_sym_COLON_COLON] = ACTIONS(530), + [sym__hol_alphanumeric] = ACTIONS(438), + [sym__hol_symbolic] = ACTIONS(438), + [anon_sym_OLEAST] = ACTIONS(438), + [anon_sym_LEAST] = ACTIONS(438), + [anon_sym_some] = ACTIONS(438), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(438), + [anon_sym_u2203_BANG] = ACTIONS(432), + [anon_sym_QMARK_BANG] = ACTIONS(438), + [anon_sym_u2203] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_u2200] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_u03bb] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_u00ac] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_u21ce] = ACTIONS(556), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(558), + [anon_sym_LT_EQ_GT] = ACTIONS(558), + [anon_sym_u21d4] = ACTIONS(556), + [anon_sym_EQ_EQ_GT] = ACTIONS(548), + [anon_sym_u21d2] = ACTIONS(550), + [anon_sym_BSLASH_SLASH] = ACTIONS(552), + [anon_sym_u2228] = ACTIONS(554), + [anon_sym_u2209] = ACTIONS(544), + [anon_sym_NOTIN] = ACTIONS(546), + [anon_sym_u2208] = ACTIONS(544), + [anon_sym_IN] = ACTIONS(546), + [anon_sym_u227c] = ACTIONS(532), + [anon_sym_LT_LT_EQ] = ACTIONS(526), + [anon_sym_PERMUTES] = ACTIONS(526), + [anon_sym_HAS_SIZE] = ACTIONS(526), + [anon_sym_u2282] = ACTIONS(532), + [anon_sym_PSUBSET] = ACTIONS(526), + [anon_sym_u2286] = ACTIONS(526), + [anon_sym_u2265] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_u2264] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(526), + [anon_sym_u2286u1d63] = ACTIONS(532), + [anon_sym_RSUBSET] = ACTIONS(526), + [anon_sym_u2260] = ACTIONS(532), + [anon_sym_LT_GT] = ACTIONS(526), + [anon_sym_DOLLAR] = ACTIONS(534), + [anon_sym_INSERT] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(536), + [anon_sym_o] = ACTIONS(538), + [sym_hol_true] = ACTIONS(438), + [sym_hol_false] = ACTIONS(438), + [sym_hol_number] = ACTIONS(432), + [sym_hol_string] = ACTIONS(432), + [sym_hol_character] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [95] = { + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_RBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(85), + [anon_sym_if] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_u201d] = ACTIONS(85), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(89), + [sym__hol_symbolic] = ACTIONS(89), + [anon_sym_OLEAST] = ACTIONS(89), + [anon_sym_LEAST] = ACTIONS(89), + [anon_sym_some] = ACTIONS(89), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(89), + [anon_sym_u2203_BANG] = ACTIONS(85), + [anon_sym_QMARK_BANG] = ACTIONS(89), + [anon_sym_u2203] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(89), + [anon_sym_u2200] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_u03bb] = ACTIONS(85), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_u00ac] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(89), + [sym_hol_false] = ACTIONS(89), + [sym_hol_number] = ACTIONS(85), + [sym_hol_string] = ACTIONS(85), + [sym_hol_character] = ACTIONS(85), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [96] = { + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_COMMA] = ACTIONS(478), + [anon_sym_RPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_RBRACK] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(478), + [anon_sym_if] = ACTIONS(480), + [anon_sym_case] = ACTIONS(480), + [anon_sym_u201d] = ACTIONS(478), + [anon_sym_u2227] = ACTIONS(478), + [anon_sym_SLASH_BSLASH] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(480), + [sym__hol_alphanumeric] = ACTIONS(480), + [sym__hol_symbolic] = ACTIONS(480), + [anon_sym_OLEAST] = ACTIONS(480), + [anon_sym_LEAST] = ACTIONS(480), + [anon_sym_some] = ACTIONS(480), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(480), + [anon_sym_u2203_BANG] = ACTIONS(478), + [anon_sym_QMARK_BANG] = ACTIONS(480), + [anon_sym_u2203] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u2200] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_u03bb] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_u00ac] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_u21ce] = ACTIONS(478), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(480), + [anon_sym_LT_EQ_GT] = ACTIONS(480), + [anon_sym_u21d4] = ACTIONS(478), + [anon_sym_EQ_EQ_GT] = ACTIONS(480), + [anon_sym_u21d2] = ACTIONS(478), + [anon_sym_BSLASH_SLASH] = ACTIONS(480), + [anon_sym_u2228] = ACTIONS(478), + [anon_sym_u2209] = ACTIONS(478), + [anon_sym_NOTIN] = ACTIONS(480), + [anon_sym_u2208] = ACTIONS(478), + [anon_sym_IN] = ACTIONS(480), + [anon_sym_u227c] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_PERMUTES] = ACTIONS(480), + [anon_sym_HAS_SIZE] = ACTIONS(480), + [anon_sym_u2282] = ACTIONS(478), + [anon_sym_PSUBSET] = ACTIONS(480), + [anon_sym_u2286] = ACTIONS(480), + [anon_sym_u2265] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_u2264] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_u2286u1d63] = ACTIONS(478), + [anon_sym_RSUBSET] = ACTIONS(480), + [anon_sym_u2260] = ACTIONS(478), + [anon_sym_LT_GT] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_INSERT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_o] = ACTIONS(480), + [sym_hol_true] = ACTIONS(480), + [sym_hol_false] = ACTIONS(480), + [sym_hol_number] = ACTIONS(478), + [sym_hol_string] = ACTIONS(478), + [sym_hol_character] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [97] = { + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(498), + [anon_sym_RPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_RBRACK] = ACTIONS(498), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_u201d] = ACTIONS(498), + [anon_sym_u2227] = ACTIONS(498), + [anon_sym_SLASH_BSLASH] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(500), + [sym__hol_alphanumeric] = ACTIONS(500), + [sym__hol_symbolic] = ACTIONS(500), + [anon_sym_OLEAST] = ACTIONS(500), + [anon_sym_LEAST] = ACTIONS(500), + [anon_sym_some] = ACTIONS(500), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(500), + [anon_sym_u2203_BANG] = ACTIONS(498), + [anon_sym_QMARK_BANG] = ACTIONS(500), + [anon_sym_u2203] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u2200] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_u03bb] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_u00ac] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_u21ce] = ACTIONS(498), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(500), + [anon_sym_LT_EQ_GT] = ACTIONS(500), + [anon_sym_u21d4] = ACTIONS(498), + [anon_sym_EQ_EQ_GT] = ACTIONS(500), + [anon_sym_u21d2] = ACTIONS(498), + [anon_sym_BSLASH_SLASH] = ACTIONS(500), + [anon_sym_u2228] = ACTIONS(498), + [anon_sym_u2209] = ACTIONS(498), + [anon_sym_NOTIN] = ACTIONS(500), + [anon_sym_u2208] = ACTIONS(498), + [anon_sym_IN] = ACTIONS(500), + [anon_sym_u227c] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_PERMUTES] = ACTIONS(500), + [anon_sym_HAS_SIZE] = ACTIONS(500), + [anon_sym_u2282] = ACTIONS(498), + [anon_sym_PSUBSET] = ACTIONS(500), + [anon_sym_u2286] = ACTIONS(500), + [anon_sym_u2265] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_u2264] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_u2286u1d63] = ACTIONS(498), + [anon_sym_RSUBSET] = ACTIONS(500), + [anon_sym_u2260] = ACTIONS(498), + [anon_sym_LT_GT] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_INSERT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_o] = ACTIONS(500), + [sym_hol_true] = ACTIONS(500), + [sym_hol_false] = ACTIONS(500), + [sym_hol_number] = ACTIONS(498), + [sym_hol_string] = ACTIONS(498), + [sym_hol_character] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [98] = { + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_COMMA] = ACTIONS(490), + [anon_sym_RPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_RBRACK] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(490), + [anon_sym_if] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_u201d] = ACTIONS(490), + [anon_sym_u2227] = ACTIONS(490), + [anon_sym_SLASH_BSLASH] = ACTIONS(492), + [anon_sym_COLON_COLON] = ACTIONS(492), + [sym__hol_alphanumeric] = ACTIONS(492), + [sym__hol_symbolic] = ACTIONS(492), + [anon_sym_OLEAST] = ACTIONS(492), + [anon_sym_LEAST] = ACTIONS(492), + [anon_sym_some] = ACTIONS(492), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(492), + [anon_sym_u2203_BANG] = ACTIONS(490), + [anon_sym_QMARK_BANG] = ACTIONS(492), + [anon_sym_u2203] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u2200] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_u03bb] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_u00ac] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_u21ce] = ACTIONS(490), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(492), + [anon_sym_LT_EQ_GT] = ACTIONS(492), + [anon_sym_u21d4] = ACTIONS(490), + [anon_sym_EQ_EQ_GT] = ACTIONS(492), + [anon_sym_u21d2] = ACTIONS(490), + [anon_sym_BSLASH_SLASH] = ACTIONS(492), + [anon_sym_u2228] = ACTIONS(490), + [anon_sym_u2209] = ACTIONS(490), + [anon_sym_NOTIN] = ACTIONS(492), + [anon_sym_u2208] = ACTIONS(490), + [anon_sym_IN] = ACTIONS(492), + [anon_sym_u227c] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_PERMUTES] = ACTIONS(492), + [anon_sym_HAS_SIZE] = ACTIONS(492), + [anon_sym_u2282] = ACTIONS(490), + [anon_sym_PSUBSET] = ACTIONS(492), + [anon_sym_u2286] = ACTIONS(492), + [anon_sym_u2265] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_u2264] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_u2286u1d63] = ACTIONS(490), + [anon_sym_RSUBSET] = ACTIONS(492), + [anon_sym_u2260] = ACTIONS(490), + [anon_sym_LT_GT] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_INSERT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_o] = ACTIONS(492), + [sym_hol_true] = ACTIONS(492), + [sym_hol_false] = ACTIONS(492), + [sym_hol_number] = ACTIONS(490), + [sym_hol_string] = ACTIONS(490), + [sym_hol_character] = ACTIONS(490), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [99] = { + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_RPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_RBRACK] = ACTIONS(482), + [anon_sym_SEMI] = ACTIONS(482), + [anon_sym_if] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_u201d] = ACTIONS(482), + [anon_sym_u2227] = ACTIONS(482), + [anon_sym_SLASH_BSLASH] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(484), + [sym__hol_alphanumeric] = ACTIONS(484), + [sym__hol_symbolic] = ACTIONS(484), + [anon_sym_OLEAST] = ACTIONS(484), + [anon_sym_LEAST] = ACTIONS(484), + [anon_sym_some] = ACTIONS(484), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(484), + [anon_sym_u2203_BANG] = ACTIONS(482), + [anon_sym_QMARK_BANG] = ACTIONS(484), + [anon_sym_u2203] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u2200] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_u03bb] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_u00ac] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_u21ce] = ACTIONS(482), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(484), + [anon_sym_LT_EQ_GT] = ACTIONS(484), + [anon_sym_u21d4] = ACTIONS(482), + [anon_sym_EQ_EQ_GT] = ACTIONS(484), + [anon_sym_u21d2] = ACTIONS(482), + [anon_sym_BSLASH_SLASH] = ACTIONS(484), + [anon_sym_u2228] = ACTIONS(482), + [anon_sym_u2209] = ACTIONS(482), + [anon_sym_NOTIN] = ACTIONS(484), + [anon_sym_u2208] = ACTIONS(482), + [anon_sym_IN] = ACTIONS(484), + [anon_sym_u227c] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_PERMUTES] = ACTIONS(484), + [anon_sym_HAS_SIZE] = ACTIONS(484), + [anon_sym_u2282] = ACTIONS(482), + [anon_sym_PSUBSET] = ACTIONS(484), + [anon_sym_u2286] = ACTIONS(484), + [anon_sym_u2265] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_u2264] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_u2286u1d63] = ACTIONS(482), + [anon_sym_RSUBSET] = ACTIONS(484), + [anon_sym_u2260] = ACTIONS(482), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_INSERT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_o] = ACTIONS(484), + [sym_hol_true] = ACTIONS(484), + [sym_hol_false] = ACTIONS(484), + [sym_hol_number] = ACTIONS(482), + [sym_hol_string] = ACTIONS(482), + [sym_hol_character] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [100] = { + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_if] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_DASH_GT] = ACTIONS(401), + [anon_sym_End] = ACTIONS(401), + [anon_sym_Termination] = ACTIONS(401), + [anon_sym_u2227] = ACTIONS(399), + [anon_sym_SLASH_BSLASH] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(401), + [sym__hol_alphanumeric] = ACTIONS(401), + [sym__hol_symbolic] = ACTIONS(401), + [anon_sym_OLEAST] = ACTIONS(401), + [anon_sym_LEAST] = ACTIONS(401), + [anon_sym_some] = ACTIONS(401), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(401), + [anon_sym_u2203_BANG] = ACTIONS(399), + [anon_sym_QMARK_BANG] = ACTIONS(401), + [anon_sym_u2203] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u2200] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_u03bb] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_u00ac] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_u21ce] = ACTIONS(399), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(401), + [anon_sym_u21d4] = ACTIONS(399), + [anon_sym_EQ_EQ_GT] = ACTIONS(401), + [anon_sym_u21d2] = ACTIONS(399), + [anon_sym_BSLASH_SLASH] = ACTIONS(401), + [anon_sym_u2228] = ACTIONS(399), + [anon_sym_u2209] = ACTIONS(399), + [anon_sym_NOTIN] = ACTIONS(401), + [anon_sym_u2208] = ACTIONS(399), + [anon_sym_IN] = ACTIONS(401), + [anon_sym_u227c] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_PERMUTES] = ACTIONS(401), + [anon_sym_HAS_SIZE] = ACTIONS(401), + [anon_sym_u2282] = ACTIONS(399), + [anon_sym_PSUBSET] = ACTIONS(401), + [anon_sym_u2286] = ACTIONS(401), + [anon_sym_u2265] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_u2264] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_u2286u1d63] = ACTIONS(399), + [anon_sym_RSUBSET] = ACTIONS(401), + [anon_sym_u2260] = ACTIONS(399), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_INSERT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_o] = ACTIONS(401), + [anon_sym_list] = ACTIONS(401), + [sym_hol_true] = ACTIONS(401), + [sym_hol_false] = ACTIONS(401), + [sym_hol_number] = ACTIONS(399), + [sym_hol_string] = ACTIONS(399), + [sym_hol_character] = ACTIONS(399), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [101] = { + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_End] = ACTIONS(393), + [anon_sym_Termination] = ACTIONS(393), + [anon_sym_u2227] = ACTIONS(391), + [anon_sym_SLASH_BSLASH] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [sym__hol_alphanumeric] = ACTIONS(393), + [sym__hol_symbolic] = ACTIONS(393), + [anon_sym_OLEAST] = ACTIONS(393), + [anon_sym_LEAST] = ACTIONS(393), + [anon_sym_some] = ACTIONS(393), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(393), + [anon_sym_u2203_BANG] = ACTIONS(391), + [anon_sym_QMARK_BANG] = ACTIONS(393), + [anon_sym_u2203] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u2200] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_u03bb] = ACTIONS(391), + [anon_sym_BSLASH] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_u00ac] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_u21ce] = ACTIONS(391), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(393), + [anon_sym_u21d4] = ACTIONS(391), + [anon_sym_EQ_EQ_GT] = ACTIONS(393), + [anon_sym_u21d2] = ACTIONS(391), + [anon_sym_BSLASH_SLASH] = ACTIONS(393), + [anon_sym_u2228] = ACTIONS(391), + [anon_sym_u2209] = ACTIONS(391), + [anon_sym_NOTIN] = ACTIONS(393), + [anon_sym_u2208] = ACTIONS(391), + [anon_sym_IN] = ACTIONS(393), + [anon_sym_u227c] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_PERMUTES] = ACTIONS(393), + [anon_sym_HAS_SIZE] = ACTIONS(393), + [anon_sym_u2282] = ACTIONS(391), + [anon_sym_PSUBSET] = ACTIONS(393), + [anon_sym_u2286] = ACTIONS(393), + [anon_sym_u2265] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_u2264] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_u2286u1d63] = ACTIONS(391), + [anon_sym_RSUBSET] = ACTIONS(393), + [anon_sym_u2260] = ACTIONS(391), + [anon_sym_LT_GT] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_INSERT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_o] = ACTIONS(393), + [anon_sym_list] = ACTIONS(393), + [sym_hol_true] = ACTIONS(393), + [sym_hol_false] = ACTIONS(393), + [sym_hol_number] = ACTIONS(391), + [sym_hol_string] = ACTIONS(391), + [sym_hol_character] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [102] = { + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_if] = ACTIONS(381), + [anon_sym_case] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_End] = ACTIONS(381), + [anon_sym_Termination] = ACTIONS(381), + [anon_sym_u2227] = ACTIONS(379), + [anon_sym_SLASH_BSLASH] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(381), + [sym__hol_alphanumeric] = ACTIONS(381), + [sym__hol_symbolic] = ACTIONS(381), + [anon_sym_OLEAST] = ACTIONS(381), + [anon_sym_LEAST] = ACTIONS(381), + [anon_sym_some] = ACTIONS(381), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(381), + [anon_sym_u2203_BANG] = ACTIONS(379), + [anon_sym_QMARK_BANG] = ACTIONS(381), + [anon_sym_u2203] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u2200] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_u03bb] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_u00ac] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_u21ce] = ACTIONS(379), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(381), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_u21d4] = ACTIONS(379), + [anon_sym_EQ_EQ_GT] = ACTIONS(381), + [anon_sym_u21d2] = ACTIONS(379), + [anon_sym_BSLASH_SLASH] = ACTIONS(381), + [anon_sym_u2228] = ACTIONS(379), + [anon_sym_u2209] = ACTIONS(379), + [anon_sym_NOTIN] = ACTIONS(381), + [anon_sym_u2208] = ACTIONS(379), + [anon_sym_IN] = ACTIONS(381), + [anon_sym_u227c] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_PERMUTES] = ACTIONS(381), + [anon_sym_HAS_SIZE] = ACTIONS(381), + [anon_sym_u2282] = ACTIONS(379), + [anon_sym_PSUBSET] = ACTIONS(381), + [anon_sym_u2286] = ACTIONS(381), + [anon_sym_u2265] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_u2264] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_u2286u1d63] = ACTIONS(379), + [anon_sym_RSUBSET] = ACTIONS(381), + [anon_sym_u2260] = ACTIONS(379), + [anon_sym_LT_GT] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_INSERT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_o] = ACTIONS(381), + [anon_sym_list] = ACTIONS(381), + [sym_hol_true] = ACTIONS(381), + [sym_hol_false] = ACTIONS(381), + [sym_hol_number] = ACTIONS(379), + [sym_hol_string] = ACTIONS(379), + [sym_hol_character] = ACTIONS(379), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [103] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_DASH_GT] = ACTIONS(560), + [anon_sym_End] = ACTIONS(385), + [anon_sym_Termination] = ACTIONS(385), + [anon_sym_u2227] = ACTIONS(383), + [anon_sym_SLASH_BSLASH] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(385), + [sym__hol_alphanumeric] = ACTIONS(385), + [sym__hol_symbolic] = ACTIONS(385), + [anon_sym_OLEAST] = ACTIONS(385), + [anon_sym_LEAST] = ACTIONS(385), + [anon_sym_some] = ACTIONS(385), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(385), + [anon_sym_u2203_BANG] = ACTIONS(383), + [anon_sym_QMARK_BANG] = ACTIONS(385), + [anon_sym_u2203] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u2200] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_u03bb] = ACTIONS(383), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_u00ac] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_u21ce] = ACTIONS(383), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(385), + [anon_sym_u21d4] = ACTIONS(383), + [anon_sym_EQ_EQ_GT] = ACTIONS(385), + [anon_sym_u21d2] = ACTIONS(383), + [anon_sym_BSLASH_SLASH] = ACTIONS(385), + [anon_sym_u2228] = ACTIONS(383), + [anon_sym_u2209] = ACTIONS(383), + [anon_sym_NOTIN] = ACTIONS(385), + [anon_sym_u2208] = ACTIONS(383), + [anon_sym_IN] = ACTIONS(385), + [anon_sym_u227c] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_PERMUTES] = ACTIONS(385), + [anon_sym_HAS_SIZE] = ACTIONS(385), + [anon_sym_u2282] = ACTIONS(383), + [anon_sym_PSUBSET] = ACTIONS(385), + [anon_sym_u2286] = ACTIONS(385), + [anon_sym_u2265] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_u2264] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_u2286u1d63] = ACTIONS(383), + [anon_sym_RSUBSET] = ACTIONS(385), + [anon_sym_u2260] = ACTIONS(383), + [anon_sym_LT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_INSERT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_o] = ACTIONS(385), + [anon_sym_list] = ACTIONS(562), + [sym_hol_true] = ACTIONS(385), + [sym_hol_false] = ACTIONS(385), + [sym_hol_number] = ACTIONS(383), + [sym_hol_string] = ACTIONS(383), + [sym_hol_character] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [104] = { + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(560), + [anon_sym_End] = ACTIONS(397), + [anon_sym_Termination] = ACTIONS(397), + [anon_sym_u2227] = ACTIONS(395), + [anon_sym_SLASH_BSLASH] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [sym__hol_alphanumeric] = ACTIONS(397), + [sym__hol_symbolic] = ACTIONS(397), + [anon_sym_OLEAST] = ACTIONS(397), + [anon_sym_LEAST] = ACTIONS(397), + [anon_sym_some] = ACTIONS(397), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(397), + [anon_sym_u2203_BANG] = ACTIONS(395), + [anon_sym_QMARK_BANG] = ACTIONS(397), + [anon_sym_u2203] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u2200] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_u03bb] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_u00ac] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_u21ce] = ACTIONS(395), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(397), + [anon_sym_u21d4] = ACTIONS(395), + [anon_sym_EQ_EQ_GT] = ACTIONS(397), + [anon_sym_u21d2] = ACTIONS(395), + [anon_sym_BSLASH_SLASH] = ACTIONS(397), + [anon_sym_u2228] = ACTIONS(395), + [anon_sym_u2209] = ACTIONS(395), + [anon_sym_NOTIN] = ACTIONS(397), + [anon_sym_u2208] = ACTIONS(395), + [anon_sym_IN] = ACTIONS(397), + [anon_sym_u227c] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_PERMUTES] = ACTIONS(397), + [anon_sym_HAS_SIZE] = ACTIONS(397), + [anon_sym_u2282] = ACTIONS(395), + [anon_sym_PSUBSET] = ACTIONS(397), + [anon_sym_u2286] = ACTIONS(397), + [anon_sym_u2265] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_u2264] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_u2286u1d63] = ACTIONS(395), + [anon_sym_RSUBSET] = ACTIONS(397), + [anon_sym_u2260] = ACTIONS(395), + [anon_sym_LT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_INSERT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_o] = ACTIONS(397), + [anon_sym_list] = ACTIONS(397), + [sym_hol_true] = ACTIONS(397), + [sym_hol_false] = ACTIONS(397), + [sym_hol_number] = ACTIONS(395), + [sym_hol_string] = ACTIONS(395), + [sym_hol_character] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [105] = { + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_if] = ACTIONS(401), + [anon_sym_then] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_DASH_GT] = ACTIONS(401), + [anon_sym_u2227] = ACTIONS(399), + [anon_sym_SLASH_BSLASH] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(401), + [sym__hol_alphanumeric] = ACTIONS(401), + [sym__hol_symbolic] = ACTIONS(401), + [anon_sym_OLEAST] = ACTIONS(401), + [anon_sym_LEAST] = ACTIONS(401), + [anon_sym_some] = ACTIONS(401), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(401), + [anon_sym_u2203_BANG] = ACTIONS(399), + [anon_sym_QMARK_BANG] = ACTIONS(401), + [anon_sym_u2203] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u2200] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_u03bb] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_u00ac] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_u21ce] = ACTIONS(399), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(401), + [anon_sym_u21d4] = ACTIONS(399), + [anon_sym_EQ_EQ_GT] = ACTIONS(401), + [anon_sym_u21d2] = ACTIONS(399), + [anon_sym_BSLASH_SLASH] = ACTIONS(401), + [anon_sym_u2228] = ACTIONS(399), + [anon_sym_u2209] = ACTIONS(399), + [anon_sym_NOTIN] = ACTIONS(401), + [anon_sym_u2208] = ACTIONS(399), + [anon_sym_IN] = ACTIONS(401), + [anon_sym_u227c] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_PERMUTES] = ACTIONS(401), + [anon_sym_HAS_SIZE] = ACTIONS(401), + [anon_sym_u2282] = ACTIONS(399), + [anon_sym_PSUBSET] = ACTIONS(401), + [anon_sym_u2286] = ACTIONS(401), + [anon_sym_u2265] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_u2264] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_u2286u1d63] = ACTIONS(399), + [anon_sym_RSUBSET] = ACTIONS(401), + [anon_sym_u2260] = ACTIONS(399), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_INSERT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_o] = ACTIONS(401), + [anon_sym_list] = ACTIONS(401), + [sym_hol_true] = ACTIONS(401), + [sym_hol_false] = ACTIONS(401), + [sym_hol_number] = ACTIONS(399), + [sym_hol_string] = ACTIONS(399), + [sym_hol_character] = ACTIONS(399), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [106] = { + [aux_sym_hol_case_repeat1] = STATE(135), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_End] = ACTIONS(407), + [anon_sym_Termination] = ACTIONS(407), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [107] = { + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_if] = ACTIONS(381), + [anon_sym_case] = ACTIONS(381), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_End] = ACTIONS(381), + [anon_sym_Termination] = ACTIONS(381), + [anon_sym_u2227] = ACTIONS(379), + [anon_sym_SLASH_BSLASH] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(381), + [sym__hol_alphanumeric] = ACTIONS(381), + [sym__hol_symbolic] = ACTIONS(381), + [anon_sym_OLEAST] = ACTIONS(381), + [anon_sym_LEAST] = ACTIONS(381), + [anon_sym_some] = ACTIONS(381), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(381), + [anon_sym_u2203_BANG] = ACTIONS(379), + [anon_sym_QMARK_BANG] = ACTIONS(381), + [anon_sym_u2203] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u2200] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_u03bb] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_u00ac] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_u21ce] = ACTIONS(379), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(381), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_u21d4] = ACTIONS(379), + [anon_sym_EQ_EQ_GT] = ACTIONS(381), + [anon_sym_u21d2] = ACTIONS(379), + [anon_sym_BSLASH_SLASH] = ACTIONS(381), + [anon_sym_u2228] = ACTIONS(379), + [anon_sym_u2209] = ACTIONS(379), + [anon_sym_NOTIN] = ACTIONS(381), + [anon_sym_u2208] = ACTIONS(379), + [anon_sym_IN] = ACTIONS(381), + [anon_sym_u227c] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_PERMUTES] = ACTIONS(381), + [anon_sym_HAS_SIZE] = ACTIONS(381), + [anon_sym_u2282] = ACTIONS(379), + [anon_sym_PSUBSET] = ACTIONS(381), + [anon_sym_u2286] = ACTIONS(381), + [anon_sym_u2265] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_u2264] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_u2286u1d63] = ACTIONS(379), + [anon_sym_RSUBSET] = ACTIONS(381), + [anon_sym_u2260] = ACTIONS(379), + [anon_sym_LT_GT] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_INSERT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_o] = ACTIONS(381), + [anon_sym_list] = ACTIONS(381), + [sym_hol_true] = ACTIONS(381), + [sym_hol_false] = ACTIONS(381), + [sym_hol_number] = ACTIONS(379), + [sym_hol_string] = ACTIONS(379), + [sym_hol_character] = ACTIONS(379), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [108] = { + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(566), + [anon_sym_End] = ACTIONS(397), + [anon_sym_Termination] = ACTIONS(397), + [anon_sym_u2227] = ACTIONS(395), + [anon_sym_SLASH_BSLASH] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [sym__hol_alphanumeric] = ACTIONS(397), + [sym__hol_symbolic] = ACTIONS(397), + [anon_sym_OLEAST] = ACTIONS(397), + [anon_sym_LEAST] = ACTIONS(397), + [anon_sym_some] = ACTIONS(397), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(397), + [anon_sym_u2203_BANG] = ACTIONS(395), + [anon_sym_QMARK_BANG] = ACTIONS(397), + [anon_sym_u2203] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u2200] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_u03bb] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_u00ac] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_u21ce] = ACTIONS(395), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(397), + [anon_sym_u21d4] = ACTIONS(395), + [anon_sym_EQ_EQ_GT] = ACTIONS(397), + [anon_sym_u21d2] = ACTIONS(395), + [anon_sym_BSLASH_SLASH] = ACTIONS(397), + [anon_sym_u2228] = ACTIONS(395), + [anon_sym_u2209] = ACTIONS(395), + [anon_sym_NOTIN] = ACTIONS(397), + [anon_sym_u2208] = ACTIONS(395), + [anon_sym_IN] = ACTIONS(397), + [anon_sym_u227c] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_PERMUTES] = ACTIONS(397), + [anon_sym_HAS_SIZE] = ACTIONS(397), + [anon_sym_u2282] = ACTIONS(395), + [anon_sym_PSUBSET] = ACTIONS(397), + [anon_sym_u2286] = ACTIONS(397), + [anon_sym_u2265] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_u2264] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_u2286u1d63] = ACTIONS(395), + [anon_sym_RSUBSET] = ACTIONS(397), + [anon_sym_u2260] = ACTIONS(395), + [anon_sym_LT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_INSERT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_o] = ACTIONS(397), + [anon_sym_list] = ACTIONS(397), + [sym_hol_true] = ACTIONS(397), + [sym_hol_false] = ACTIONS(397), + [sym_hol_number] = ACTIONS(395), + [sym_hol_string] = ACTIONS(395), + [sym_hol_character] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [109] = { + [aux_sym_hol_case_repeat1] = STATE(136), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_End] = ACTIONS(407), + [anon_sym_Termination] = ACTIONS(407), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [110] = { + [aux_sym_hol_case_repeat1] = STATE(136), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_COLON] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_if] = ACTIONS(426), + [anon_sym_case] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_End] = ACTIONS(426), + [anon_sym_Termination] = ACTIONS(426), + [anon_sym_u2227] = ACTIONS(424), + [anon_sym_SLASH_BSLASH] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(426), + [sym__hol_alphanumeric] = ACTIONS(426), + [sym__hol_symbolic] = ACTIONS(426), + [anon_sym_OLEAST] = ACTIONS(426), + [anon_sym_LEAST] = ACTIONS(426), + [anon_sym_some] = ACTIONS(426), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(426), + [anon_sym_u2203_BANG] = ACTIONS(424), + [anon_sym_QMARK_BANG] = ACTIONS(426), + [anon_sym_u2203] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u2200] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_u03bb] = ACTIONS(424), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_u00ac] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_u21ce] = ACTIONS(424), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(426), + [anon_sym_LT_EQ_GT] = ACTIONS(426), + [anon_sym_u21d4] = ACTIONS(424), + [anon_sym_EQ_EQ_GT] = ACTIONS(426), + [anon_sym_u21d2] = ACTIONS(424), + [anon_sym_BSLASH_SLASH] = ACTIONS(426), + [anon_sym_u2228] = ACTIONS(424), + [anon_sym_u2209] = ACTIONS(424), + [anon_sym_NOTIN] = ACTIONS(426), + [anon_sym_u2208] = ACTIONS(424), + [anon_sym_IN] = ACTIONS(426), + [anon_sym_u227c] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_PERMUTES] = ACTIONS(426), + [anon_sym_HAS_SIZE] = ACTIONS(426), + [anon_sym_u2282] = ACTIONS(424), + [anon_sym_PSUBSET] = ACTIONS(426), + [anon_sym_u2286] = ACTIONS(426), + [anon_sym_u2265] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_u2264] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_u2286u1d63] = ACTIONS(424), + [anon_sym_RSUBSET] = ACTIONS(426), + [anon_sym_u2260] = ACTIONS(424), + [anon_sym_LT_GT] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(426), + [anon_sym_INSERT] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_o] = ACTIONS(426), + [sym_hol_true] = ACTIONS(426), + [sym_hol_false] = ACTIONS(426), + [sym_hol_number] = ACTIONS(424), + [sym_hol_string] = ACTIONS(424), + [sym_hol_character] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [111] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_then] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_DASH_GT] = ACTIONS(568), + [anon_sym_u2227] = ACTIONS(383), + [anon_sym_SLASH_BSLASH] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(385), + [sym__hol_alphanumeric] = ACTIONS(385), + [sym__hol_symbolic] = ACTIONS(385), + [anon_sym_OLEAST] = ACTIONS(385), + [anon_sym_LEAST] = ACTIONS(385), + [anon_sym_some] = ACTIONS(385), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(385), + [anon_sym_u2203_BANG] = ACTIONS(383), + [anon_sym_QMARK_BANG] = ACTIONS(385), + [anon_sym_u2203] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u2200] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_u03bb] = ACTIONS(383), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_u00ac] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_u21ce] = ACTIONS(383), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(385), + [anon_sym_u21d4] = ACTIONS(383), + [anon_sym_EQ_EQ_GT] = ACTIONS(385), + [anon_sym_u21d2] = ACTIONS(383), + [anon_sym_BSLASH_SLASH] = ACTIONS(385), + [anon_sym_u2228] = ACTIONS(383), + [anon_sym_u2209] = ACTIONS(383), + [anon_sym_NOTIN] = ACTIONS(385), + [anon_sym_u2208] = ACTIONS(383), + [anon_sym_IN] = ACTIONS(385), + [anon_sym_u227c] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_PERMUTES] = ACTIONS(385), + [anon_sym_HAS_SIZE] = ACTIONS(385), + [anon_sym_u2282] = ACTIONS(383), + [anon_sym_PSUBSET] = ACTIONS(385), + [anon_sym_u2286] = ACTIONS(385), + [anon_sym_u2265] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_u2264] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_u2286u1d63] = ACTIONS(383), + [anon_sym_RSUBSET] = ACTIONS(385), + [anon_sym_u2260] = ACTIONS(383), + [anon_sym_LT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_INSERT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_o] = ACTIONS(385), + [anon_sym_list] = ACTIONS(570), + [sym_hol_true] = ACTIONS(385), + [sym_hol_false] = ACTIONS(385), + [sym_hol_number] = ACTIONS(383), + [sym_hol_string] = ACTIONS(383), + [sym_hol_character] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [112] = { + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_then] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_u2227] = ACTIONS(391), + [anon_sym_SLASH_BSLASH] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [sym__hol_alphanumeric] = ACTIONS(393), + [sym__hol_symbolic] = ACTIONS(393), + [anon_sym_OLEAST] = ACTIONS(393), + [anon_sym_LEAST] = ACTIONS(393), + [anon_sym_some] = ACTIONS(393), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(393), + [anon_sym_u2203_BANG] = ACTIONS(391), + [anon_sym_QMARK_BANG] = ACTIONS(393), + [anon_sym_u2203] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u2200] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_u03bb] = ACTIONS(391), + [anon_sym_BSLASH] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_u00ac] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_u21ce] = ACTIONS(391), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(393), + [anon_sym_u21d4] = ACTIONS(391), + [anon_sym_EQ_EQ_GT] = ACTIONS(393), + [anon_sym_u21d2] = ACTIONS(391), + [anon_sym_BSLASH_SLASH] = ACTIONS(393), + [anon_sym_u2228] = ACTIONS(391), + [anon_sym_u2209] = ACTIONS(391), + [anon_sym_NOTIN] = ACTIONS(393), + [anon_sym_u2208] = ACTIONS(391), + [anon_sym_IN] = ACTIONS(393), + [anon_sym_u227c] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_PERMUTES] = ACTIONS(393), + [anon_sym_HAS_SIZE] = ACTIONS(393), + [anon_sym_u2282] = ACTIONS(391), + [anon_sym_PSUBSET] = ACTIONS(393), + [anon_sym_u2286] = ACTIONS(393), + [anon_sym_u2265] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_u2264] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_u2286u1d63] = ACTIONS(391), + [anon_sym_RSUBSET] = ACTIONS(393), + [anon_sym_u2260] = ACTIONS(391), + [anon_sym_LT_GT] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_INSERT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_o] = ACTIONS(393), + [anon_sym_list] = ACTIONS(393), + [sym_hol_true] = ACTIONS(393), + [sym_hol_false] = ACTIONS(393), + [sym_hol_number] = ACTIONS(391), + [sym_hol_string] = ACTIONS(391), + [sym_hol_character] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [113] = { + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_if] = ACTIONS(381), + [anon_sym_then] = ACTIONS(381), + [anon_sym_case] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_u2227] = ACTIONS(379), + [anon_sym_SLASH_BSLASH] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(381), + [sym__hol_alphanumeric] = ACTIONS(381), + [sym__hol_symbolic] = ACTIONS(381), + [anon_sym_OLEAST] = ACTIONS(381), + [anon_sym_LEAST] = ACTIONS(381), + [anon_sym_some] = ACTIONS(381), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(381), + [anon_sym_u2203_BANG] = ACTIONS(379), + [anon_sym_QMARK_BANG] = ACTIONS(381), + [anon_sym_u2203] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u2200] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_u03bb] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_u00ac] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_u21ce] = ACTIONS(379), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(381), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_u21d4] = ACTIONS(379), + [anon_sym_EQ_EQ_GT] = ACTIONS(381), + [anon_sym_u21d2] = ACTIONS(379), + [anon_sym_BSLASH_SLASH] = ACTIONS(381), + [anon_sym_u2228] = ACTIONS(379), + [anon_sym_u2209] = ACTIONS(379), + [anon_sym_NOTIN] = ACTIONS(381), + [anon_sym_u2208] = ACTIONS(379), + [anon_sym_IN] = ACTIONS(381), + [anon_sym_u227c] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_PERMUTES] = ACTIONS(381), + [anon_sym_HAS_SIZE] = ACTIONS(381), + [anon_sym_u2282] = ACTIONS(379), + [anon_sym_PSUBSET] = ACTIONS(381), + [anon_sym_u2286] = ACTIONS(381), + [anon_sym_u2265] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_u2264] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_u2286u1d63] = ACTIONS(379), + [anon_sym_RSUBSET] = ACTIONS(381), + [anon_sym_u2260] = ACTIONS(379), + [anon_sym_LT_GT] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_INSERT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_o] = ACTIONS(381), + [anon_sym_list] = ACTIONS(381), + [sym_hol_true] = ACTIONS(381), + [sym_hol_false] = ACTIONS(381), + [sym_hol_number] = ACTIONS(379), + [sym_hol_string] = ACTIONS(379), + [sym_hol_character] = ACTIONS(379), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [114] = { + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_if] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_of] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_DASH_GT] = ACTIONS(401), + [anon_sym_u2227] = ACTIONS(399), + [anon_sym_SLASH_BSLASH] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(401), + [sym__hol_alphanumeric] = ACTIONS(401), + [sym__hol_symbolic] = ACTIONS(401), + [anon_sym_OLEAST] = ACTIONS(401), + [anon_sym_LEAST] = ACTIONS(401), + [anon_sym_some] = ACTIONS(401), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(401), + [anon_sym_u2203_BANG] = ACTIONS(399), + [anon_sym_QMARK_BANG] = ACTIONS(401), + [anon_sym_u2203] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u2200] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_u03bb] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_u00ac] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_u21ce] = ACTIONS(399), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(401), + [anon_sym_u21d4] = ACTIONS(399), + [anon_sym_EQ_EQ_GT] = ACTIONS(401), + [anon_sym_u21d2] = ACTIONS(399), + [anon_sym_BSLASH_SLASH] = ACTIONS(401), + [anon_sym_u2228] = ACTIONS(399), + [anon_sym_u2209] = ACTIONS(399), + [anon_sym_NOTIN] = ACTIONS(401), + [anon_sym_u2208] = ACTIONS(399), + [anon_sym_IN] = ACTIONS(401), + [anon_sym_u227c] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_PERMUTES] = ACTIONS(401), + [anon_sym_HAS_SIZE] = ACTIONS(401), + [anon_sym_u2282] = ACTIONS(399), + [anon_sym_PSUBSET] = ACTIONS(401), + [anon_sym_u2286] = ACTIONS(401), + [anon_sym_u2265] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_u2264] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_u2286u1d63] = ACTIONS(399), + [anon_sym_RSUBSET] = ACTIONS(401), + [anon_sym_u2260] = ACTIONS(399), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_INSERT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_o] = ACTIONS(401), + [anon_sym_list] = ACTIONS(401), + [sym_hol_true] = ACTIONS(401), + [sym_hol_false] = ACTIONS(401), + [sym_hol_number] = ACTIONS(399), + [sym_hol_string] = ACTIONS(399), + [sym_hol_character] = ACTIONS(399), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [115] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_of] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_u2227] = ACTIONS(383), + [anon_sym_SLASH_BSLASH] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(385), + [sym__hol_alphanumeric] = ACTIONS(385), + [sym__hol_symbolic] = ACTIONS(385), + [anon_sym_OLEAST] = ACTIONS(385), + [anon_sym_LEAST] = ACTIONS(385), + [anon_sym_some] = ACTIONS(385), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(385), + [anon_sym_u2203_BANG] = ACTIONS(383), + [anon_sym_QMARK_BANG] = ACTIONS(385), + [anon_sym_u2203] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u2200] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_u03bb] = ACTIONS(383), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_u00ac] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_u21ce] = ACTIONS(383), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(385), + [anon_sym_u21d4] = ACTIONS(383), + [anon_sym_EQ_EQ_GT] = ACTIONS(385), + [anon_sym_u21d2] = ACTIONS(383), + [anon_sym_BSLASH_SLASH] = ACTIONS(385), + [anon_sym_u2228] = ACTIONS(383), + [anon_sym_u2209] = ACTIONS(383), + [anon_sym_NOTIN] = ACTIONS(385), + [anon_sym_u2208] = ACTIONS(383), + [anon_sym_IN] = ACTIONS(385), + [anon_sym_u227c] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_PERMUTES] = ACTIONS(385), + [anon_sym_HAS_SIZE] = ACTIONS(385), + [anon_sym_u2282] = ACTIONS(383), + [anon_sym_PSUBSET] = ACTIONS(385), + [anon_sym_u2286] = ACTIONS(385), + [anon_sym_u2265] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_u2264] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_u2286u1d63] = ACTIONS(383), + [anon_sym_RSUBSET] = ACTIONS(385), + [anon_sym_u2260] = ACTIONS(383), + [anon_sym_LT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_INSERT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_o] = ACTIONS(385), + [anon_sym_list] = ACTIONS(574), + [sym_hol_true] = ACTIONS(385), + [sym_hol_false] = ACTIONS(385), + [sym_hol_number] = ACTIONS(383), + [sym_hol_string] = ACTIONS(383), + [sym_hol_character] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [116] = { + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_of] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_u2227] = ACTIONS(391), + [anon_sym_SLASH_BSLASH] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [sym__hol_alphanumeric] = ACTIONS(393), + [sym__hol_symbolic] = ACTIONS(393), + [anon_sym_OLEAST] = ACTIONS(393), + [anon_sym_LEAST] = ACTIONS(393), + [anon_sym_some] = ACTIONS(393), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(393), + [anon_sym_u2203_BANG] = ACTIONS(391), + [anon_sym_QMARK_BANG] = ACTIONS(393), + [anon_sym_u2203] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u2200] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_u03bb] = ACTIONS(391), + [anon_sym_BSLASH] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_u00ac] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_u21ce] = ACTIONS(391), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(393), + [anon_sym_u21d4] = ACTIONS(391), + [anon_sym_EQ_EQ_GT] = ACTIONS(393), + [anon_sym_u21d2] = ACTIONS(391), + [anon_sym_BSLASH_SLASH] = ACTIONS(393), + [anon_sym_u2228] = ACTIONS(391), + [anon_sym_u2209] = ACTIONS(391), + [anon_sym_NOTIN] = ACTIONS(393), + [anon_sym_u2208] = ACTIONS(391), + [anon_sym_IN] = ACTIONS(393), + [anon_sym_u227c] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_PERMUTES] = ACTIONS(393), + [anon_sym_HAS_SIZE] = ACTIONS(393), + [anon_sym_u2282] = ACTIONS(391), + [anon_sym_PSUBSET] = ACTIONS(393), + [anon_sym_u2286] = ACTIONS(393), + [anon_sym_u2265] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_u2264] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_u2286u1d63] = ACTIONS(391), + [anon_sym_RSUBSET] = ACTIONS(393), + [anon_sym_u2260] = ACTIONS(391), + [anon_sym_LT_GT] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_INSERT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_o] = ACTIONS(393), + [anon_sym_list] = ACTIONS(393), + [sym_hol_true] = ACTIONS(393), + [sym_hol_false] = ACTIONS(393), + [sym_hol_number] = ACTIONS(391), + [sym_hol_string] = ACTIONS(391), + [sym_hol_character] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [117] = { + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_then] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(568), + [anon_sym_u2227] = ACTIONS(395), + [anon_sym_SLASH_BSLASH] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [sym__hol_alphanumeric] = ACTIONS(397), + [sym__hol_symbolic] = ACTIONS(397), + [anon_sym_OLEAST] = ACTIONS(397), + [anon_sym_LEAST] = ACTIONS(397), + [anon_sym_some] = ACTIONS(397), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(397), + [anon_sym_u2203_BANG] = ACTIONS(395), + [anon_sym_QMARK_BANG] = ACTIONS(397), + [anon_sym_u2203] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u2200] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_u03bb] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_u00ac] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_u21ce] = ACTIONS(395), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(397), + [anon_sym_u21d4] = ACTIONS(395), + [anon_sym_EQ_EQ_GT] = ACTIONS(397), + [anon_sym_u21d2] = ACTIONS(395), + [anon_sym_BSLASH_SLASH] = ACTIONS(397), + [anon_sym_u2228] = ACTIONS(395), + [anon_sym_u2209] = ACTIONS(395), + [anon_sym_NOTIN] = ACTIONS(397), + [anon_sym_u2208] = ACTIONS(395), + [anon_sym_IN] = ACTIONS(397), + [anon_sym_u227c] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_PERMUTES] = ACTIONS(397), + [anon_sym_HAS_SIZE] = ACTIONS(397), + [anon_sym_u2282] = ACTIONS(395), + [anon_sym_PSUBSET] = ACTIONS(397), + [anon_sym_u2286] = ACTIONS(397), + [anon_sym_u2265] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_u2264] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_u2286u1d63] = ACTIONS(395), + [anon_sym_RSUBSET] = ACTIONS(397), + [anon_sym_u2260] = ACTIONS(395), + [anon_sym_LT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_INSERT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_o] = ACTIONS(397), + [anon_sym_list] = ACTIONS(397), + [sym_hol_true] = ACTIONS(397), + [sym_hol_false] = ACTIONS(397), + [sym_hol_number] = ACTIONS(395), + [sym_hol_string] = ACTIONS(395), + [sym_hol_character] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [118] = { + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_if] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_DASH_GT] = ACTIONS(401), + [anon_sym_End] = ACTIONS(401), + [anon_sym_Termination] = ACTIONS(401), + [anon_sym_u2227] = ACTIONS(399), + [anon_sym_SLASH_BSLASH] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(401), + [sym__hol_alphanumeric] = ACTIONS(401), + [sym__hol_symbolic] = ACTIONS(401), + [anon_sym_OLEAST] = ACTIONS(401), + [anon_sym_LEAST] = ACTIONS(401), + [anon_sym_some] = ACTIONS(401), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(401), + [anon_sym_u2203_BANG] = ACTIONS(399), + [anon_sym_QMARK_BANG] = ACTIONS(401), + [anon_sym_u2203] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u2200] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_u03bb] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_u00ac] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_u21ce] = ACTIONS(399), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(401), + [anon_sym_u21d4] = ACTIONS(399), + [anon_sym_EQ_EQ_GT] = ACTIONS(401), + [anon_sym_u21d2] = ACTIONS(399), + [anon_sym_BSLASH_SLASH] = ACTIONS(401), + [anon_sym_u2228] = ACTIONS(399), + [anon_sym_u2209] = ACTIONS(399), + [anon_sym_NOTIN] = ACTIONS(401), + [anon_sym_u2208] = ACTIONS(399), + [anon_sym_IN] = ACTIONS(401), + [anon_sym_u227c] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_PERMUTES] = ACTIONS(401), + [anon_sym_HAS_SIZE] = ACTIONS(401), + [anon_sym_u2282] = ACTIONS(399), + [anon_sym_PSUBSET] = ACTIONS(401), + [anon_sym_u2286] = ACTIONS(401), + [anon_sym_u2265] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_u2264] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_u2286u1d63] = ACTIONS(399), + [anon_sym_RSUBSET] = ACTIONS(401), + [anon_sym_u2260] = ACTIONS(399), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_INSERT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_o] = ACTIONS(401), + [anon_sym_list] = ACTIONS(401), + [sym_hol_true] = ACTIONS(401), + [sym_hol_false] = ACTIONS(401), + [sym_hol_number] = ACTIONS(399), + [sym_hol_string] = ACTIONS(399), + [sym_hol_character] = ACTIONS(399), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [119] = { + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_if] = ACTIONS(381), + [anon_sym_case] = ACTIONS(381), + [anon_sym_of] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_u2227] = ACTIONS(379), + [anon_sym_SLASH_BSLASH] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(381), + [sym__hol_alphanumeric] = ACTIONS(381), + [sym__hol_symbolic] = ACTIONS(381), + [anon_sym_OLEAST] = ACTIONS(381), + [anon_sym_LEAST] = ACTIONS(381), + [anon_sym_some] = ACTIONS(381), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(381), + [anon_sym_u2203_BANG] = ACTIONS(379), + [anon_sym_QMARK_BANG] = ACTIONS(381), + [anon_sym_u2203] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u2200] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_u03bb] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_u00ac] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_u21ce] = ACTIONS(379), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(381), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_u21d4] = ACTIONS(379), + [anon_sym_EQ_EQ_GT] = ACTIONS(381), + [anon_sym_u21d2] = ACTIONS(379), + [anon_sym_BSLASH_SLASH] = ACTIONS(381), + [anon_sym_u2228] = ACTIONS(379), + [anon_sym_u2209] = ACTIONS(379), + [anon_sym_NOTIN] = ACTIONS(381), + [anon_sym_u2208] = ACTIONS(379), + [anon_sym_IN] = ACTIONS(381), + [anon_sym_u227c] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_PERMUTES] = ACTIONS(381), + [anon_sym_HAS_SIZE] = ACTIONS(381), + [anon_sym_u2282] = ACTIONS(379), + [anon_sym_PSUBSET] = ACTIONS(381), + [anon_sym_u2286] = ACTIONS(381), + [anon_sym_u2265] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_u2264] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_u2286u1d63] = ACTIONS(379), + [anon_sym_RSUBSET] = ACTIONS(381), + [anon_sym_u2260] = ACTIONS(379), + [anon_sym_LT_GT] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_INSERT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_o] = ACTIONS(381), + [anon_sym_list] = ACTIONS(381), + [sym_hol_true] = ACTIONS(381), + [sym_hol_false] = ACTIONS(381), + [sym_hol_number] = ACTIONS(379), + [sym_hol_string] = ACTIONS(379), + [sym_hol_character] = ACTIONS(379), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [120] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_DASH_GT] = ACTIONS(566), + [anon_sym_End] = ACTIONS(385), + [anon_sym_Termination] = ACTIONS(385), + [anon_sym_u2227] = ACTIONS(383), + [anon_sym_SLASH_BSLASH] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(385), + [sym__hol_alphanumeric] = ACTIONS(385), + [sym__hol_symbolic] = ACTIONS(385), + [anon_sym_OLEAST] = ACTIONS(385), + [anon_sym_LEAST] = ACTIONS(385), + [anon_sym_some] = ACTIONS(385), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(385), + [anon_sym_u2203_BANG] = ACTIONS(383), + [anon_sym_QMARK_BANG] = ACTIONS(385), + [anon_sym_u2203] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u2200] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_u03bb] = ACTIONS(383), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_u00ac] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_u21ce] = ACTIONS(383), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(385), + [anon_sym_u21d4] = ACTIONS(383), + [anon_sym_EQ_EQ_GT] = ACTIONS(385), + [anon_sym_u21d2] = ACTIONS(383), + [anon_sym_BSLASH_SLASH] = ACTIONS(385), + [anon_sym_u2228] = ACTIONS(383), + [anon_sym_u2209] = ACTIONS(383), + [anon_sym_NOTIN] = ACTIONS(385), + [anon_sym_u2208] = ACTIONS(383), + [anon_sym_IN] = ACTIONS(385), + [anon_sym_u227c] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_PERMUTES] = ACTIONS(385), + [anon_sym_HAS_SIZE] = ACTIONS(385), + [anon_sym_u2282] = ACTIONS(383), + [anon_sym_PSUBSET] = ACTIONS(385), + [anon_sym_u2286] = ACTIONS(385), + [anon_sym_u2265] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_u2264] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_u2286u1d63] = ACTIONS(383), + [anon_sym_RSUBSET] = ACTIONS(385), + [anon_sym_u2260] = ACTIONS(383), + [anon_sym_LT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_INSERT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_o] = ACTIONS(385), + [anon_sym_list] = ACTIONS(576), + [sym_hol_true] = ACTIONS(385), + [sym_hol_false] = ACTIONS(385), + [sym_hol_number] = ACTIONS(383), + [sym_hol_string] = ACTIONS(383), + [sym_hol_character] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [121] = { + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_if] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_DASH_GT] = ACTIONS(401), + [anon_sym_Proof] = ACTIONS(401), + [anon_sym_u2227] = ACTIONS(399), + [anon_sym_SLASH_BSLASH] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(401), + [sym__hol_alphanumeric] = ACTIONS(401), + [sym__hol_symbolic] = ACTIONS(401), + [anon_sym_OLEAST] = ACTIONS(401), + [anon_sym_LEAST] = ACTIONS(401), + [anon_sym_some] = ACTIONS(401), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(401), + [anon_sym_u2203_BANG] = ACTIONS(399), + [anon_sym_QMARK_BANG] = ACTIONS(401), + [anon_sym_u2203] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u2200] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_u03bb] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_u00ac] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_u21ce] = ACTIONS(399), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(401), + [anon_sym_u21d4] = ACTIONS(399), + [anon_sym_EQ_EQ_GT] = ACTIONS(401), + [anon_sym_u21d2] = ACTIONS(399), + [anon_sym_BSLASH_SLASH] = ACTIONS(401), + [anon_sym_u2228] = ACTIONS(399), + [anon_sym_u2209] = ACTIONS(399), + [anon_sym_NOTIN] = ACTIONS(401), + [anon_sym_u2208] = ACTIONS(399), + [anon_sym_IN] = ACTIONS(401), + [anon_sym_u227c] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_PERMUTES] = ACTIONS(401), + [anon_sym_HAS_SIZE] = ACTIONS(401), + [anon_sym_u2282] = ACTIONS(399), + [anon_sym_PSUBSET] = ACTIONS(401), + [anon_sym_u2286] = ACTIONS(401), + [anon_sym_u2265] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_u2264] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_u2286u1d63] = ACTIONS(399), + [anon_sym_RSUBSET] = ACTIONS(401), + [anon_sym_u2260] = ACTIONS(399), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_INSERT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_o] = ACTIONS(401), + [anon_sym_list] = ACTIONS(401), + [sym_hol_true] = ACTIONS(401), + [sym_hol_false] = ACTIONS(401), + [sym_hol_number] = ACTIONS(399), + [sym_hol_string] = ACTIONS(399), + [sym_hol_character] = ACTIONS(399), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [122] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_DASH_GT] = ACTIONS(578), + [anon_sym_Proof] = ACTIONS(385), + [anon_sym_u2227] = ACTIONS(383), + [anon_sym_SLASH_BSLASH] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(385), + [sym__hol_alphanumeric] = ACTIONS(385), + [sym__hol_symbolic] = ACTIONS(385), + [anon_sym_OLEAST] = ACTIONS(385), + [anon_sym_LEAST] = ACTIONS(385), + [anon_sym_some] = ACTIONS(385), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(385), + [anon_sym_u2203_BANG] = ACTIONS(383), + [anon_sym_QMARK_BANG] = ACTIONS(385), + [anon_sym_u2203] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u2200] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_u03bb] = ACTIONS(383), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_u00ac] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_u21ce] = ACTIONS(383), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(385), + [anon_sym_u21d4] = ACTIONS(383), + [anon_sym_EQ_EQ_GT] = ACTIONS(385), + [anon_sym_u21d2] = ACTIONS(383), + [anon_sym_BSLASH_SLASH] = ACTIONS(385), + [anon_sym_u2228] = ACTIONS(383), + [anon_sym_u2209] = ACTIONS(383), + [anon_sym_NOTIN] = ACTIONS(385), + [anon_sym_u2208] = ACTIONS(383), + [anon_sym_IN] = ACTIONS(385), + [anon_sym_u227c] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_PERMUTES] = ACTIONS(385), + [anon_sym_HAS_SIZE] = ACTIONS(385), + [anon_sym_u2282] = ACTIONS(383), + [anon_sym_PSUBSET] = ACTIONS(385), + [anon_sym_u2286] = ACTIONS(385), + [anon_sym_u2265] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_u2264] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_u2286u1d63] = ACTIONS(383), + [anon_sym_RSUBSET] = ACTIONS(385), + [anon_sym_u2260] = ACTIONS(383), + [anon_sym_LT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_INSERT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_o] = ACTIONS(385), + [anon_sym_list] = ACTIONS(580), + [sym_hol_true] = ACTIONS(385), + [sym_hol_false] = ACTIONS(385), + [sym_hol_number] = ACTIONS(383), + [sym_hol_string] = ACTIONS(383), + [sym_hol_character] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [123] = { + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_Proof] = ACTIONS(393), + [anon_sym_u2227] = ACTIONS(391), + [anon_sym_SLASH_BSLASH] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [sym__hol_alphanumeric] = ACTIONS(393), + [sym__hol_symbolic] = ACTIONS(393), + [anon_sym_OLEAST] = ACTIONS(393), + [anon_sym_LEAST] = ACTIONS(393), + [anon_sym_some] = ACTIONS(393), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(393), + [anon_sym_u2203_BANG] = ACTIONS(391), + [anon_sym_QMARK_BANG] = ACTIONS(393), + [anon_sym_u2203] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u2200] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_u03bb] = ACTIONS(391), + [anon_sym_BSLASH] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_u00ac] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_u21ce] = ACTIONS(391), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(393), + [anon_sym_u21d4] = ACTIONS(391), + [anon_sym_EQ_EQ_GT] = ACTIONS(393), + [anon_sym_u21d2] = ACTIONS(391), + [anon_sym_BSLASH_SLASH] = ACTIONS(393), + [anon_sym_u2228] = ACTIONS(391), + [anon_sym_u2209] = ACTIONS(391), + [anon_sym_NOTIN] = ACTIONS(393), + [anon_sym_u2208] = ACTIONS(391), + [anon_sym_IN] = ACTIONS(393), + [anon_sym_u227c] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_PERMUTES] = ACTIONS(393), + [anon_sym_HAS_SIZE] = ACTIONS(393), + [anon_sym_u2282] = ACTIONS(391), + [anon_sym_PSUBSET] = ACTIONS(393), + [anon_sym_u2286] = ACTIONS(393), + [anon_sym_u2265] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_u2264] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_u2286u1d63] = ACTIONS(391), + [anon_sym_RSUBSET] = ACTIONS(393), + [anon_sym_u2260] = ACTIONS(391), + [anon_sym_LT_GT] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_INSERT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_o] = ACTIONS(393), + [anon_sym_list] = ACTIONS(393), + [sym_hol_true] = ACTIONS(393), + [sym_hol_false] = ACTIONS(393), + [sym_hol_number] = ACTIONS(391), + [sym_hol_string] = ACTIONS(391), + [sym_hol_character] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [124] = { + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_of] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(572), + [anon_sym_u2227] = ACTIONS(395), + [anon_sym_SLASH_BSLASH] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [sym__hol_alphanumeric] = ACTIONS(397), + [sym__hol_symbolic] = ACTIONS(397), + [anon_sym_OLEAST] = ACTIONS(397), + [anon_sym_LEAST] = ACTIONS(397), + [anon_sym_some] = ACTIONS(397), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(397), + [anon_sym_u2203_BANG] = ACTIONS(395), + [anon_sym_QMARK_BANG] = ACTIONS(397), + [anon_sym_u2203] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u2200] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_u03bb] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_u00ac] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_u21ce] = ACTIONS(395), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(397), + [anon_sym_u21d4] = ACTIONS(395), + [anon_sym_EQ_EQ_GT] = ACTIONS(397), + [anon_sym_u21d2] = ACTIONS(395), + [anon_sym_BSLASH_SLASH] = ACTIONS(397), + [anon_sym_u2228] = ACTIONS(395), + [anon_sym_u2209] = ACTIONS(395), + [anon_sym_NOTIN] = ACTIONS(397), + [anon_sym_u2208] = ACTIONS(395), + [anon_sym_IN] = ACTIONS(397), + [anon_sym_u227c] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_PERMUTES] = ACTIONS(397), + [anon_sym_HAS_SIZE] = ACTIONS(397), + [anon_sym_u2282] = ACTIONS(395), + [anon_sym_PSUBSET] = ACTIONS(397), + [anon_sym_u2286] = ACTIONS(397), + [anon_sym_u2265] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_u2264] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_u2286u1d63] = ACTIONS(395), + [anon_sym_RSUBSET] = ACTIONS(397), + [anon_sym_u2260] = ACTIONS(395), + [anon_sym_LT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_INSERT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_o] = ACTIONS(397), + [anon_sym_list] = ACTIONS(397), + [sym_hol_true] = ACTIONS(397), + [sym_hol_false] = ACTIONS(397), + [sym_hol_number] = ACTIONS(395), + [sym_hol_string] = ACTIONS(395), + [sym_hol_character] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [125] = { + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_if] = ACTIONS(401), + [anon_sym_else] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_DASH_GT] = ACTIONS(401), + [anon_sym_u2227] = ACTIONS(399), + [anon_sym_SLASH_BSLASH] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(401), + [sym__hol_alphanumeric] = ACTIONS(401), + [sym__hol_symbolic] = ACTIONS(401), + [anon_sym_OLEAST] = ACTIONS(401), + [anon_sym_LEAST] = ACTIONS(401), + [anon_sym_some] = ACTIONS(401), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(401), + [anon_sym_u2203_BANG] = ACTIONS(399), + [anon_sym_QMARK_BANG] = ACTIONS(401), + [anon_sym_u2203] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u2200] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_u03bb] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_u00ac] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_u21ce] = ACTIONS(399), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(401), + [anon_sym_u21d4] = ACTIONS(399), + [anon_sym_EQ_EQ_GT] = ACTIONS(401), + [anon_sym_u21d2] = ACTIONS(399), + [anon_sym_BSLASH_SLASH] = ACTIONS(401), + [anon_sym_u2228] = ACTIONS(399), + [anon_sym_u2209] = ACTIONS(399), + [anon_sym_NOTIN] = ACTIONS(401), + [anon_sym_u2208] = ACTIONS(399), + [anon_sym_IN] = ACTIONS(401), + [anon_sym_u227c] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_PERMUTES] = ACTIONS(401), + [anon_sym_HAS_SIZE] = ACTIONS(401), + [anon_sym_u2282] = ACTIONS(399), + [anon_sym_PSUBSET] = ACTIONS(401), + [anon_sym_u2286] = ACTIONS(401), + [anon_sym_u2265] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_u2264] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_u2286u1d63] = ACTIONS(399), + [anon_sym_RSUBSET] = ACTIONS(401), + [anon_sym_u2260] = ACTIONS(399), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_INSERT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_o] = ACTIONS(401), + [anon_sym_list] = ACTIONS(401), + [sym_hol_true] = ACTIONS(401), + [sym_hol_false] = ACTIONS(401), + [sym_hol_number] = ACTIONS(399), + [sym_hol_string] = ACTIONS(399), + [sym_hol_character] = ACTIONS(399), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [126] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_DASH_GT] = ACTIONS(582), + [anon_sym_u2227] = ACTIONS(383), + [anon_sym_SLASH_BSLASH] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(385), + [sym__hol_alphanumeric] = ACTIONS(385), + [sym__hol_symbolic] = ACTIONS(385), + [anon_sym_OLEAST] = ACTIONS(385), + [anon_sym_LEAST] = ACTIONS(385), + [anon_sym_some] = ACTIONS(385), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(385), + [anon_sym_u2203_BANG] = ACTIONS(383), + [anon_sym_QMARK_BANG] = ACTIONS(385), + [anon_sym_u2203] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u2200] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_u03bb] = ACTIONS(383), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_u00ac] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_u21ce] = ACTIONS(383), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(385), + [anon_sym_u21d4] = ACTIONS(383), + [anon_sym_EQ_EQ_GT] = ACTIONS(385), + [anon_sym_u21d2] = ACTIONS(383), + [anon_sym_BSLASH_SLASH] = ACTIONS(385), + [anon_sym_u2228] = ACTIONS(383), + [anon_sym_u2209] = ACTIONS(383), + [anon_sym_NOTIN] = ACTIONS(385), + [anon_sym_u2208] = ACTIONS(383), + [anon_sym_IN] = ACTIONS(385), + [anon_sym_u227c] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_PERMUTES] = ACTIONS(385), + [anon_sym_HAS_SIZE] = ACTIONS(385), + [anon_sym_u2282] = ACTIONS(383), + [anon_sym_PSUBSET] = ACTIONS(385), + [anon_sym_u2286] = ACTIONS(385), + [anon_sym_u2265] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_u2264] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_u2286u1d63] = ACTIONS(383), + [anon_sym_RSUBSET] = ACTIONS(385), + [anon_sym_u2260] = ACTIONS(383), + [anon_sym_LT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_INSERT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_o] = ACTIONS(385), + [anon_sym_list] = ACTIONS(584), + [sym_hol_true] = ACTIONS(385), + [sym_hol_false] = ACTIONS(385), + [sym_hol_number] = ACTIONS(383), + [sym_hol_string] = ACTIONS(383), + [sym_hol_character] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [127] = { + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_else] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_u2227] = ACTIONS(391), + [anon_sym_SLASH_BSLASH] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [sym__hol_alphanumeric] = ACTIONS(393), + [sym__hol_symbolic] = ACTIONS(393), + [anon_sym_OLEAST] = ACTIONS(393), + [anon_sym_LEAST] = ACTIONS(393), + [anon_sym_some] = ACTIONS(393), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(393), + [anon_sym_u2203_BANG] = ACTIONS(391), + [anon_sym_QMARK_BANG] = ACTIONS(393), + [anon_sym_u2203] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u2200] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_u03bb] = ACTIONS(391), + [anon_sym_BSLASH] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_u00ac] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_u21ce] = ACTIONS(391), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(393), + [anon_sym_u21d4] = ACTIONS(391), + [anon_sym_EQ_EQ_GT] = ACTIONS(393), + [anon_sym_u21d2] = ACTIONS(391), + [anon_sym_BSLASH_SLASH] = ACTIONS(393), + [anon_sym_u2228] = ACTIONS(391), + [anon_sym_u2209] = ACTIONS(391), + [anon_sym_NOTIN] = ACTIONS(393), + [anon_sym_u2208] = ACTIONS(391), + [anon_sym_IN] = ACTIONS(393), + [anon_sym_u227c] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_PERMUTES] = ACTIONS(393), + [anon_sym_HAS_SIZE] = ACTIONS(393), + [anon_sym_u2282] = ACTIONS(391), + [anon_sym_PSUBSET] = ACTIONS(393), + [anon_sym_u2286] = ACTIONS(393), + [anon_sym_u2265] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_u2264] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_u2286u1d63] = ACTIONS(391), + [anon_sym_RSUBSET] = ACTIONS(393), + [anon_sym_u2260] = ACTIONS(391), + [anon_sym_LT_GT] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_INSERT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_o] = ACTIONS(393), + [anon_sym_list] = ACTIONS(393), + [sym_hol_true] = ACTIONS(393), + [sym_hol_false] = ACTIONS(393), + [sym_hol_number] = ACTIONS(391), + [sym_hol_string] = ACTIONS(391), + [sym_hol_character] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [128] = { + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(578), + [anon_sym_Proof] = ACTIONS(397), + [anon_sym_u2227] = ACTIONS(395), + [anon_sym_SLASH_BSLASH] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [sym__hol_alphanumeric] = ACTIONS(397), + [sym__hol_symbolic] = ACTIONS(397), + [anon_sym_OLEAST] = ACTIONS(397), + [anon_sym_LEAST] = ACTIONS(397), + [anon_sym_some] = ACTIONS(397), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(397), + [anon_sym_u2203_BANG] = ACTIONS(395), + [anon_sym_QMARK_BANG] = ACTIONS(397), + [anon_sym_u2203] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u2200] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_u03bb] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_u00ac] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_u21ce] = ACTIONS(395), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(397), + [anon_sym_u21d4] = ACTIONS(395), + [anon_sym_EQ_EQ_GT] = ACTIONS(397), + [anon_sym_u21d2] = ACTIONS(395), + [anon_sym_BSLASH_SLASH] = ACTIONS(397), + [anon_sym_u2228] = ACTIONS(395), + [anon_sym_u2209] = ACTIONS(395), + [anon_sym_NOTIN] = ACTIONS(397), + [anon_sym_u2208] = ACTIONS(395), + [anon_sym_IN] = ACTIONS(397), + [anon_sym_u227c] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_PERMUTES] = ACTIONS(397), + [anon_sym_HAS_SIZE] = ACTIONS(397), + [anon_sym_u2282] = ACTIONS(395), + [anon_sym_PSUBSET] = ACTIONS(397), + [anon_sym_u2286] = ACTIONS(397), + [anon_sym_u2265] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_u2264] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_u2286u1d63] = ACTIONS(395), + [anon_sym_RSUBSET] = ACTIONS(397), + [anon_sym_u2260] = ACTIONS(395), + [anon_sym_LT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_INSERT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_o] = ACTIONS(397), + [anon_sym_list] = ACTIONS(397), + [sym_hol_true] = ACTIONS(397), + [sym_hol_false] = ACTIONS(397), + [sym_hol_number] = ACTIONS(395), + [sym_hol_string] = ACTIONS(395), + [sym_hol_character] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [129] = { + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_if] = ACTIONS(381), + [anon_sym_else] = ACTIONS(381), + [anon_sym_case] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_u2227] = ACTIONS(379), + [anon_sym_SLASH_BSLASH] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(381), + [sym__hol_alphanumeric] = ACTIONS(381), + [sym__hol_symbolic] = ACTIONS(381), + [anon_sym_OLEAST] = ACTIONS(381), + [anon_sym_LEAST] = ACTIONS(381), + [anon_sym_some] = ACTIONS(381), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(381), + [anon_sym_u2203_BANG] = ACTIONS(379), + [anon_sym_QMARK_BANG] = ACTIONS(381), + [anon_sym_u2203] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u2200] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_u03bb] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_u00ac] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_u21ce] = ACTIONS(379), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(381), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_u21d4] = ACTIONS(379), + [anon_sym_EQ_EQ_GT] = ACTIONS(381), + [anon_sym_u21d2] = ACTIONS(379), + [anon_sym_BSLASH_SLASH] = ACTIONS(381), + [anon_sym_u2228] = ACTIONS(379), + [anon_sym_u2209] = ACTIONS(379), + [anon_sym_NOTIN] = ACTIONS(381), + [anon_sym_u2208] = ACTIONS(379), + [anon_sym_IN] = ACTIONS(381), + [anon_sym_u227c] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_PERMUTES] = ACTIONS(381), + [anon_sym_HAS_SIZE] = ACTIONS(381), + [anon_sym_u2282] = ACTIONS(379), + [anon_sym_PSUBSET] = ACTIONS(381), + [anon_sym_u2286] = ACTIONS(381), + [anon_sym_u2265] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_u2264] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_u2286u1d63] = ACTIONS(379), + [anon_sym_RSUBSET] = ACTIONS(381), + [anon_sym_u2260] = ACTIONS(379), + [anon_sym_LT_GT] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_INSERT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_o] = ACTIONS(381), + [anon_sym_list] = ACTIONS(381), + [sym_hol_true] = ACTIONS(381), + [sym_hol_false] = ACTIONS(381), + [sym_hol_number] = ACTIONS(379), + [sym_hol_string] = ACTIONS(379), + [sym_hol_character] = ACTIONS(379), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [130] = { + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_End] = ACTIONS(393), + [anon_sym_Termination] = ACTIONS(393), + [anon_sym_u2227] = ACTIONS(391), + [anon_sym_SLASH_BSLASH] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [sym__hol_alphanumeric] = ACTIONS(393), + [sym__hol_symbolic] = ACTIONS(393), + [anon_sym_OLEAST] = ACTIONS(393), + [anon_sym_LEAST] = ACTIONS(393), + [anon_sym_some] = ACTIONS(393), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(393), + [anon_sym_u2203_BANG] = ACTIONS(391), + [anon_sym_QMARK_BANG] = ACTIONS(393), + [anon_sym_u2203] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u2200] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_u03bb] = ACTIONS(391), + [anon_sym_BSLASH] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_u00ac] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_u21ce] = ACTIONS(391), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(393), + [anon_sym_u21d4] = ACTIONS(391), + [anon_sym_EQ_EQ_GT] = ACTIONS(393), + [anon_sym_u21d2] = ACTIONS(391), + [anon_sym_BSLASH_SLASH] = ACTIONS(393), + [anon_sym_u2228] = ACTIONS(391), + [anon_sym_u2209] = ACTIONS(391), + [anon_sym_NOTIN] = ACTIONS(393), + [anon_sym_u2208] = ACTIONS(391), + [anon_sym_IN] = ACTIONS(393), + [anon_sym_u227c] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_PERMUTES] = ACTIONS(393), + [anon_sym_HAS_SIZE] = ACTIONS(393), + [anon_sym_u2282] = ACTIONS(391), + [anon_sym_PSUBSET] = ACTIONS(393), + [anon_sym_u2286] = ACTIONS(393), + [anon_sym_u2265] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_u2264] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_u2286u1d63] = ACTIONS(391), + [anon_sym_RSUBSET] = ACTIONS(393), + [anon_sym_u2260] = ACTIONS(391), + [anon_sym_LT_GT] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_INSERT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_o] = ACTIONS(393), + [anon_sym_list] = ACTIONS(393), + [sym_hol_true] = ACTIONS(393), + [sym_hol_false] = ACTIONS(393), + [sym_hol_number] = ACTIONS(391), + [sym_hol_string] = ACTIONS(391), + [sym_hol_character] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [131] = { + [aux_sym_hol_case_repeat1] = STATE(109), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_case] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_End] = ACTIONS(415), + [anon_sym_Termination] = ACTIONS(415), + [anon_sym_u2227] = ACTIONS(413), + [anon_sym_SLASH_BSLASH] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(415), + [sym__hol_alphanumeric] = ACTIONS(415), + [sym__hol_symbolic] = ACTIONS(415), + [anon_sym_OLEAST] = ACTIONS(415), + [anon_sym_LEAST] = ACTIONS(415), + [anon_sym_some] = ACTIONS(415), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(415), + [anon_sym_u2203_BANG] = ACTIONS(413), + [anon_sym_QMARK_BANG] = ACTIONS(415), + [anon_sym_u2203] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u2200] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_u03bb] = ACTIONS(413), + [anon_sym_BSLASH] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_u00ac] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(413), + [anon_sym_u21ce] = ACTIONS(413), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(415), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_u21d4] = ACTIONS(413), + [anon_sym_EQ_EQ_GT] = ACTIONS(415), + [anon_sym_u21d2] = ACTIONS(413), + [anon_sym_BSLASH_SLASH] = ACTIONS(415), + [anon_sym_u2228] = ACTIONS(413), + [anon_sym_u2209] = ACTIONS(413), + [anon_sym_NOTIN] = ACTIONS(415), + [anon_sym_u2208] = ACTIONS(413), + [anon_sym_IN] = ACTIONS(415), + [anon_sym_u227c] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_PERMUTES] = ACTIONS(415), + [anon_sym_HAS_SIZE] = ACTIONS(415), + [anon_sym_u2282] = ACTIONS(413), + [anon_sym_PSUBSET] = ACTIONS(415), + [anon_sym_u2286] = ACTIONS(415), + [anon_sym_u2265] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_u2264] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_u2286u1d63] = ACTIONS(413), + [anon_sym_RSUBSET] = ACTIONS(415), + [anon_sym_u2260] = ACTIONS(413), + [anon_sym_LT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_INSERT] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_o] = ACTIONS(415), + [sym_hol_true] = ACTIONS(415), + [sym_hol_false] = ACTIONS(415), + [sym_hol_number] = ACTIONS(413), + [sym_hol_string] = ACTIONS(413), + [sym_hol_character] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [132] = { + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(582), + [anon_sym_u2227] = ACTIONS(395), + [anon_sym_SLASH_BSLASH] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [sym__hol_alphanumeric] = ACTIONS(397), + [sym__hol_symbolic] = ACTIONS(397), + [anon_sym_OLEAST] = ACTIONS(397), + [anon_sym_LEAST] = ACTIONS(397), + [anon_sym_some] = ACTIONS(397), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(397), + [anon_sym_u2203_BANG] = ACTIONS(395), + [anon_sym_QMARK_BANG] = ACTIONS(397), + [anon_sym_u2203] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u2200] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_u03bb] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_u00ac] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_u21ce] = ACTIONS(395), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(397), + [anon_sym_u21d4] = ACTIONS(395), + [anon_sym_EQ_EQ_GT] = ACTIONS(397), + [anon_sym_u21d2] = ACTIONS(395), + [anon_sym_BSLASH_SLASH] = ACTIONS(397), + [anon_sym_u2228] = ACTIONS(395), + [anon_sym_u2209] = ACTIONS(395), + [anon_sym_NOTIN] = ACTIONS(397), + [anon_sym_u2208] = ACTIONS(395), + [anon_sym_IN] = ACTIONS(397), + [anon_sym_u227c] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_PERMUTES] = ACTIONS(397), + [anon_sym_HAS_SIZE] = ACTIONS(397), + [anon_sym_u2282] = ACTIONS(395), + [anon_sym_PSUBSET] = ACTIONS(397), + [anon_sym_u2286] = ACTIONS(397), + [anon_sym_u2265] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_u2264] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_u2286u1d63] = ACTIONS(395), + [anon_sym_RSUBSET] = ACTIONS(397), + [anon_sym_u2260] = ACTIONS(395), + [anon_sym_LT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_INSERT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_o] = ACTIONS(397), + [anon_sym_list] = ACTIONS(397), + [sym_hol_true] = ACTIONS(397), + [sym_hol_false] = ACTIONS(397), + [sym_hol_number] = ACTIONS(395), + [sym_hol_string] = ACTIONS(395), + [sym_hol_character] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [133] = { + [aux_sym_hol_case_repeat1] = STATE(110), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_End] = ACTIONS(407), + [anon_sym_Termination] = ACTIONS(407), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [134] = { + [aux_sym_hol_case_repeat1] = STATE(136), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(407), + [anon_sym_End] = ACTIONS(407), + [anon_sym_Termination] = ACTIONS(407), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [135] = { + [aux_sym_hol_case_repeat1] = STATE(136), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_COLON] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_if] = ACTIONS(426), + [anon_sym_case] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(426), + [anon_sym_End] = ACTIONS(426), + [anon_sym_Termination] = ACTIONS(426), + [anon_sym_u2227] = ACTIONS(424), + [anon_sym_SLASH_BSLASH] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(426), + [sym__hol_alphanumeric] = ACTIONS(426), + [sym__hol_symbolic] = ACTIONS(426), + [anon_sym_OLEAST] = ACTIONS(426), + [anon_sym_LEAST] = ACTIONS(426), + [anon_sym_some] = ACTIONS(426), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(426), + [anon_sym_u2203_BANG] = ACTIONS(424), + [anon_sym_QMARK_BANG] = ACTIONS(426), + [anon_sym_u2203] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u2200] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_u03bb] = ACTIONS(424), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_u00ac] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_u21ce] = ACTIONS(424), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(426), + [anon_sym_LT_EQ_GT] = ACTIONS(426), + [anon_sym_u21d4] = ACTIONS(424), + [anon_sym_EQ_EQ_GT] = ACTIONS(426), + [anon_sym_u21d2] = ACTIONS(424), + [anon_sym_BSLASH_SLASH] = ACTIONS(426), + [anon_sym_u2228] = ACTIONS(424), + [anon_sym_u2209] = ACTIONS(424), + [anon_sym_NOTIN] = ACTIONS(426), + [anon_sym_u2208] = ACTIONS(424), + [anon_sym_IN] = ACTIONS(426), + [anon_sym_u227c] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_PERMUTES] = ACTIONS(426), + [anon_sym_HAS_SIZE] = ACTIONS(426), + [anon_sym_u2282] = ACTIONS(424), + [anon_sym_PSUBSET] = ACTIONS(426), + [anon_sym_u2286] = ACTIONS(426), + [anon_sym_u2265] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_u2264] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_u2286u1d63] = ACTIONS(424), + [anon_sym_RSUBSET] = ACTIONS(426), + [anon_sym_u2260] = ACTIONS(424), + [anon_sym_LT_GT] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(426), + [anon_sym_INSERT] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_o] = ACTIONS(426), + [sym_hol_true] = ACTIONS(426), + [sym_hol_false] = ACTIONS(426), + [sym_hol_number] = ACTIONS(424), + [sym_hol_string] = ACTIONS(424), + [sym_hol_character] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [136] = { + [aux_sym_hol_case_repeat1] = STATE(136), + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_End] = ACTIONS(419), + [anon_sym_Termination] = ACTIONS(419), + [anon_sym_u2227] = ACTIONS(417), + [anon_sym_SLASH_BSLASH] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(419), + [sym__hol_alphanumeric] = ACTIONS(419), + [sym__hol_symbolic] = ACTIONS(419), + [anon_sym_OLEAST] = ACTIONS(419), + [anon_sym_LEAST] = ACTIONS(419), + [anon_sym_some] = ACTIONS(419), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(419), + [anon_sym_u2203_BANG] = ACTIONS(417), + [anon_sym_QMARK_BANG] = ACTIONS(419), + [anon_sym_u2203] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u2200] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_u03bb] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_u00ac] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_u21ce] = ACTIONS(417), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(419), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_u21d4] = ACTIONS(417), + [anon_sym_EQ_EQ_GT] = ACTIONS(419), + [anon_sym_u21d2] = ACTIONS(417), + [anon_sym_BSLASH_SLASH] = ACTIONS(419), + [anon_sym_u2228] = ACTIONS(417), + [anon_sym_u2209] = ACTIONS(417), + [anon_sym_NOTIN] = ACTIONS(419), + [anon_sym_u2208] = ACTIONS(417), + [anon_sym_IN] = ACTIONS(419), + [anon_sym_u227c] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_PERMUTES] = ACTIONS(419), + [anon_sym_HAS_SIZE] = ACTIONS(419), + [anon_sym_u2282] = ACTIONS(417), + [anon_sym_PSUBSET] = ACTIONS(419), + [anon_sym_u2286] = ACTIONS(419), + [anon_sym_u2265] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_u2264] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_u2286u1d63] = ACTIONS(417), + [anon_sym_RSUBSET] = ACTIONS(419), + [anon_sym_u2260] = ACTIONS(417), + [anon_sym_LT_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_INSERT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_o] = ACTIONS(419), + [sym_hol_true] = ACTIONS(419), + [sym_hol_false] = ACTIONS(419), + [sym_hol_number] = ACTIONS(417), + [sym_hol_string] = ACTIONS(417), + [sym_hol_character] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [137] = { + [aux_sym_hol_case_repeat1] = STATE(134), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_case] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_End] = ACTIONS(415), + [anon_sym_Termination] = ACTIONS(415), + [anon_sym_u2227] = ACTIONS(413), + [anon_sym_SLASH_BSLASH] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(415), + [sym__hol_alphanumeric] = ACTIONS(415), + [sym__hol_symbolic] = ACTIONS(415), + [anon_sym_OLEAST] = ACTIONS(415), + [anon_sym_LEAST] = ACTIONS(415), + [anon_sym_some] = ACTIONS(415), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(415), + [anon_sym_u2203_BANG] = ACTIONS(413), + [anon_sym_QMARK_BANG] = ACTIONS(415), + [anon_sym_u2203] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u2200] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_u03bb] = ACTIONS(413), + [anon_sym_BSLASH] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_u00ac] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(413), + [anon_sym_u21ce] = ACTIONS(413), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(415), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_u21d4] = ACTIONS(413), + [anon_sym_EQ_EQ_GT] = ACTIONS(415), + [anon_sym_u21d2] = ACTIONS(413), + [anon_sym_BSLASH_SLASH] = ACTIONS(415), + [anon_sym_u2228] = ACTIONS(413), + [anon_sym_u2209] = ACTIONS(413), + [anon_sym_NOTIN] = ACTIONS(415), + [anon_sym_u2208] = ACTIONS(413), + [anon_sym_IN] = ACTIONS(415), + [anon_sym_u227c] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_PERMUTES] = ACTIONS(415), + [anon_sym_HAS_SIZE] = ACTIONS(415), + [anon_sym_u2282] = ACTIONS(413), + [anon_sym_PSUBSET] = ACTIONS(415), + [anon_sym_u2286] = ACTIONS(415), + [anon_sym_u2265] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_u2264] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_u2286u1d63] = ACTIONS(413), + [anon_sym_RSUBSET] = ACTIONS(415), + [anon_sym_u2260] = ACTIONS(413), + [anon_sym_LT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_INSERT] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_o] = ACTIONS(415), + [sym_hol_true] = ACTIONS(415), + [sym_hol_false] = ACTIONS(415), + [sym_hol_number] = ACTIONS(413), + [sym_hol_string] = ACTIONS(413), + [sym_hol_character] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [138] = { + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_if] = ACTIONS(381), + [anon_sym_case] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_Proof] = ACTIONS(381), + [anon_sym_u2227] = ACTIONS(379), + [anon_sym_SLASH_BSLASH] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(381), + [sym__hol_alphanumeric] = ACTIONS(381), + [sym__hol_symbolic] = ACTIONS(381), + [anon_sym_OLEAST] = ACTIONS(381), + [anon_sym_LEAST] = ACTIONS(381), + [anon_sym_some] = ACTIONS(381), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(381), + [anon_sym_u2203_BANG] = ACTIONS(379), + [anon_sym_QMARK_BANG] = ACTIONS(381), + [anon_sym_u2203] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u2200] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_u03bb] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_u00ac] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_u21ce] = ACTIONS(379), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(381), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_u21d4] = ACTIONS(379), + [anon_sym_EQ_EQ_GT] = ACTIONS(381), + [anon_sym_u21d2] = ACTIONS(379), + [anon_sym_BSLASH_SLASH] = ACTIONS(381), + [anon_sym_u2228] = ACTIONS(379), + [anon_sym_u2209] = ACTIONS(379), + [anon_sym_NOTIN] = ACTIONS(381), + [anon_sym_u2208] = ACTIONS(379), + [anon_sym_IN] = ACTIONS(381), + [anon_sym_u227c] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_PERMUTES] = ACTIONS(381), + [anon_sym_HAS_SIZE] = ACTIONS(381), + [anon_sym_u2282] = ACTIONS(379), + [anon_sym_PSUBSET] = ACTIONS(381), + [anon_sym_u2286] = ACTIONS(381), + [anon_sym_u2265] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_u2264] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_u2286u1d63] = ACTIONS(379), + [anon_sym_RSUBSET] = ACTIONS(381), + [anon_sym_u2260] = ACTIONS(379), + [anon_sym_LT_GT] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_INSERT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_o] = ACTIONS(381), + [anon_sym_list] = ACTIONS(381), + [sym_hol_true] = ACTIONS(381), + [sym_hol_false] = ACTIONS(381), + [sym_hol_number] = ACTIONS(379), + [sym_hol_string] = ACTIONS(379), + [sym_hol_character] = ACTIONS(379), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [139] = { + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_else] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(589), + [anon_sym_u2227] = ACTIONS(395), + [anon_sym_SLASH_BSLASH] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [sym__hol_alphanumeric] = ACTIONS(397), + [sym__hol_symbolic] = ACTIONS(397), + [anon_sym_OLEAST] = ACTIONS(397), + [anon_sym_LEAST] = ACTIONS(397), + [anon_sym_some] = ACTIONS(397), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(397), + [anon_sym_u2203_BANG] = ACTIONS(395), + [anon_sym_QMARK_BANG] = ACTIONS(397), + [anon_sym_u2203] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u2200] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_u03bb] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_u00ac] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_u21ce] = ACTIONS(395), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(397), + [anon_sym_u21d4] = ACTIONS(395), + [anon_sym_EQ_EQ_GT] = ACTIONS(397), + [anon_sym_u21d2] = ACTIONS(395), + [anon_sym_BSLASH_SLASH] = ACTIONS(397), + [anon_sym_u2228] = ACTIONS(395), + [anon_sym_u2209] = ACTIONS(395), + [anon_sym_NOTIN] = ACTIONS(397), + [anon_sym_u2208] = ACTIONS(395), + [anon_sym_IN] = ACTIONS(397), + [anon_sym_u227c] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_PERMUTES] = ACTIONS(397), + [anon_sym_HAS_SIZE] = ACTIONS(397), + [anon_sym_u2282] = ACTIONS(395), + [anon_sym_PSUBSET] = ACTIONS(397), + [anon_sym_u2286] = ACTIONS(397), + [anon_sym_u2265] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_u2264] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_u2286u1d63] = ACTIONS(395), + [anon_sym_RSUBSET] = ACTIONS(397), + [anon_sym_u2260] = ACTIONS(395), + [anon_sym_LT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_INSERT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_o] = ACTIONS(397), + [anon_sym_list] = ACTIONS(397), + [sym_hol_true] = ACTIONS(397), + [sym_hol_false] = ACTIONS(397), + [sym_hol_number] = ACTIONS(395), + [sym_hol_string] = ACTIONS(395), + [sym_hol_character] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [140] = { + [aux_sym_hol_case_repeat1] = STATE(147), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_of] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [141] = { + [aux_sym_hol_case_repeat1] = STATE(143), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_else] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [142] = { + [aux_sym_hol_case_repeat1] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_else] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [143] = { + [aux_sym_hol_case_repeat1] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_COLON] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_if] = ACTIONS(426), + [anon_sym_else] = ACTIONS(426), + [anon_sym_case] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_u2227] = ACTIONS(424), + [anon_sym_SLASH_BSLASH] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(426), + [sym__hol_alphanumeric] = ACTIONS(426), + [sym__hol_symbolic] = ACTIONS(426), + [anon_sym_OLEAST] = ACTIONS(426), + [anon_sym_LEAST] = ACTIONS(426), + [anon_sym_some] = ACTIONS(426), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(426), + [anon_sym_u2203_BANG] = ACTIONS(424), + [anon_sym_QMARK_BANG] = ACTIONS(426), + [anon_sym_u2203] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u2200] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_u03bb] = ACTIONS(424), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_u00ac] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_u21ce] = ACTIONS(424), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(426), + [anon_sym_LT_EQ_GT] = ACTIONS(426), + [anon_sym_u21d4] = ACTIONS(424), + [anon_sym_EQ_EQ_GT] = ACTIONS(426), + [anon_sym_u21d2] = ACTIONS(424), + [anon_sym_BSLASH_SLASH] = ACTIONS(426), + [anon_sym_u2228] = ACTIONS(424), + [anon_sym_u2209] = ACTIONS(424), + [anon_sym_NOTIN] = ACTIONS(426), + [anon_sym_u2208] = ACTIONS(424), + [anon_sym_IN] = ACTIONS(426), + [anon_sym_u227c] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_PERMUTES] = ACTIONS(426), + [anon_sym_HAS_SIZE] = ACTIONS(426), + [anon_sym_u2282] = ACTIONS(424), + [anon_sym_PSUBSET] = ACTIONS(426), + [anon_sym_u2286] = ACTIONS(426), + [anon_sym_u2265] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_u2264] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_u2286u1d63] = ACTIONS(424), + [anon_sym_RSUBSET] = ACTIONS(426), + [anon_sym_u2260] = ACTIONS(424), + [anon_sym_LT_GT] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(426), + [anon_sym_INSERT] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_o] = ACTIONS(426), + [sym_hol_true] = ACTIONS(426), + [sym_hol_false] = ACTIONS(426), + [sym_hol_number] = ACTIONS(424), + [sym_hol_string] = ACTIONS(424), + [sym_hol_character] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [144] = { + [aux_sym_hol_case_repeat1] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_else] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(595), + [anon_sym_u2227] = ACTIONS(417), + [anon_sym_SLASH_BSLASH] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(419), + [sym__hol_alphanumeric] = ACTIONS(419), + [sym__hol_symbolic] = ACTIONS(419), + [anon_sym_OLEAST] = ACTIONS(419), + [anon_sym_LEAST] = ACTIONS(419), + [anon_sym_some] = ACTIONS(419), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(419), + [anon_sym_u2203_BANG] = ACTIONS(417), + [anon_sym_QMARK_BANG] = ACTIONS(419), + [anon_sym_u2203] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u2200] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_u03bb] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_u00ac] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_u21ce] = ACTIONS(417), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(419), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_u21d4] = ACTIONS(417), + [anon_sym_EQ_EQ_GT] = ACTIONS(419), + [anon_sym_u21d2] = ACTIONS(417), + [anon_sym_BSLASH_SLASH] = ACTIONS(419), + [anon_sym_u2228] = ACTIONS(417), + [anon_sym_u2209] = ACTIONS(417), + [anon_sym_NOTIN] = ACTIONS(419), + [anon_sym_u2208] = ACTIONS(417), + [anon_sym_IN] = ACTIONS(419), + [anon_sym_u227c] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_PERMUTES] = ACTIONS(419), + [anon_sym_HAS_SIZE] = ACTIONS(419), + [anon_sym_u2282] = ACTIONS(417), + [anon_sym_PSUBSET] = ACTIONS(419), + [anon_sym_u2286] = ACTIONS(419), + [anon_sym_u2265] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_u2264] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_u2286u1d63] = ACTIONS(417), + [anon_sym_RSUBSET] = ACTIONS(419), + [anon_sym_u2260] = ACTIONS(417), + [anon_sym_LT_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_INSERT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_o] = ACTIONS(419), + [sym_hol_true] = ACTIONS(419), + [sym_hol_false] = ACTIONS(419), + [sym_hol_number] = ACTIONS(417), + [sym_hol_string] = ACTIONS(417), + [sym_hol_character] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [145] = { + [aux_sym_hol_case_repeat1] = STATE(147), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_COLON] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_if] = ACTIONS(426), + [anon_sym_case] = ACTIONS(426), + [anon_sym_of] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_u2227] = ACTIONS(424), + [anon_sym_SLASH_BSLASH] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(426), + [sym__hol_alphanumeric] = ACTIONS(426), + [sym__hol_symbolic] = ACTIONS(426), + [anon_sym_OLEAST] = ACTIONS(426), + [anon_sym_LEAST] = ACTIONS(426), + [anon_sym_some] = ACTIONS(426), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(426), + [anon_sym_u2203_BANG] = ACTIONS(424), + [anon_sym_QMARK_BANG] = ACTIONS(426), + [anon_sym_u2203] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u2200] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_u03bb] = ACTIONS(424), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_u00ac] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_u21ce] = ACTIONS(424), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(426), + [anon_sym_LT_EQ_GT] = ACTIONS(426), + [anon_sym_u21d4] = ACTIONS(424), + [anon_sym_EQ_EQ_GT] = ACTIONS(426), + [anon_sym_u21d2] = ACTIONS(424), + [anon_sym_BSLASH_SLASH] = ACTIONS(426), + [anon_sym_u2228] = ACTIONS(424), + [anon_sym_u2209] = ACTIONS(424), + [anon_sym_NOTIN] = ACTIONS(426), + [anon_sym_u2208] = ACTIONS(424), + [anon_sym_IN] = ACTIONS(426), + [anon_sym_u227c] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_PERMUTES] = ACTIONS(426), + [anon_sym_HAS_SIZE] = ACTIONS(426), + [anon_sym_u2282] = ACTIONS(424), + [anon_sym_PSUBSET] = ACTIONS(426), + [anon_sym_u2286] = ACTIONS(426), + [anon_sym_u2265] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_u2264] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_u2286u1d63] = ACTIONS(424), + [anon_sym_RSUBSET] = ACTIONS(426), + [anon_sym_u2260] = ACTIONS(424), + [anon_sym_LT_GT] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(426), + [anon_sym_INSERT] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_o] = ACTIONS(426), + [sym_hol_true] = ACTIONS(426), + [sym_hol_false] = ACTIONS(426), + [sym_hol_number] = ACTIONS(424), + [sym_hol_string] = ACTIONS(424), + [sym_hol_character] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [146] = { + [aux_sym_hol_case_repeat1] = STATE(146), + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_then] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_u2227] = ACTIONS(417), + [anon_sym_SLASH_BSLASH] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(419), + [sym__hol_alphanumeric] = ACTIONS(419), + [sym__hol_symbolic] = ACTIONS(419), + [anon_sym_OLEAST] = ACTIONS(419), + [anon_sym_LEAST] = ACTIONS(419), + [anon_sym_some] = ACTIONS(419), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(419), + [anon_sym_u2203_BANG] = ACTIONS(417), + [anon_sym_QMARK_BANG] = ACTIONS(419), + [anon_sym_u2203] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u2200] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_u03bb] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_u00ac] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_u21ce] = ACTIONS(417), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(419), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_u21d4] = ACTIONS(417), + [anon_sym_EQ_EQ_GT] = ACTIONS(419), + [anon_sym_u21d2] = ACTIONS(417), + [anon_sym_BSLASH_SLASH] = ACTIONS(419), + [anon_sym_u2228] = ACTIONS(417), + [anon_sym_u2209] = ACTIONS(417), + [anon_sym_NOTIN] = ACTIONS(419), + [anon_sym_u2208] = ACTIONS(417), + [anon_sym_IN] = ACTIONS(419), + [anon_sym_u227c] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_PERMUTES] = ACTIONS(419), + [anon_sym_HAS_SIZE] = ACTIONS(419), + [anon_sym_u2282] = ACTIONS(417), + [anon_sym_PSUBSET] = ACTIONS(419), + [anon_sym_u2286] = ACTIONS(419), + [anon_sym_u2265] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_u2264] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_u2286u1d63] = ACTIONS(417), + [anon_sym_RSUBSET] = ACTIONS(419), + [anon_sym_u2260] = ACTIONS(417), + [anon_sym_LT_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_INSERT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_o] = ACTIONS(419), + [sym_hol_true] = ACTIONS(419), + [sym_hol_false] = ACTIONS(419), + [sym_hol_number] = ACTIONS(417), + [sym_hol_string] = ACTIONS(417), + [sym_hol_character] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [147] = { + [aux_sym_hol_case_repeat1] = STATE(147), + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_of] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_u2227] = ACTIONS(417), + [anon_sym_SLASH_BSLASH] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(419), + [sym__hol_alphanumeric] = ACTIONS(419), + [sym__hol_symbolic] = ACTIONS(419), + [anon_sym_OLEAST] = ACTIONS(419), + [anon_sym_LEAST] = ACTIONS(419), + [anon_sym_some] = ACTIONS(419), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(419), + [anon_sym_u2203_BANG] = ACTIONS(417), + [anon_sym_QMARK_BANG] = ACTIONS(419), + [anon_sym_u2203] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u2200] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_u03bb] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_u00ac] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_u21ce] = ACTIONS(417), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(419), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_u21d4] = ACTIONS(417), + [anon_sym_EQ_EQ_GT] = ACTIONS(419), + [anon_sym_u21d2] = ACTIONS(417), + [anon_sym_BSLASH_SLASH] = ACTIONS(419), + [anon_sym_u2228] = ACTIONS(417), + [anon_sym_u2209] = ACTIONS(417), + [anon_sym_NOTIN] = ACTIONS(419), + [anon_sym_u2208] = ACTIONS(417), + [anon_sym_IN] = ACTIONS(419), + [anon_sym_u227c] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_PERMUTES] = ACTIONS(419), + [anon_sym_HAS_SIZE] = ACTIONS(419), + [anon_sym_u2282] = ACTIONS(417), + [anon_sym_PSUBSET] = ACTIONS(419), + [anon_sym_u2286] = ACTIONS(419), + [anon_sym_u2265] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_u2264] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_u2286u1d63] = ACTIONS(417), + [anon_sym_RSUBSET] = ACTIONS(419), + [anon_sym_u2260] = ACTIONS(417), + [anon_sym_LT_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_INSERT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_o] = ACTIONS(419), + [sym_hol_true] = ACTIONS(419), + [sym_hol_false] = ACTIONS(419), + [sym_hol_number] = ACTIONS(417), + [sym_hol_string] = ACTIONS(417), + [sym_hol_character] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [148] = { + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_if] = ACTIONS(401), + [anon_sym_then] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_DASH_GT] = ACTIONS(401), + [anon_sym_u2227] = ACTIONS(399), + [anon_sym_SLASH_BSLASH] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(401), + [sym__hol_alphanumeric] = ACTIONS(401), + [sym__hol_symbolic] = ACTIONS(401), + [anon_sym_OLEAST] = ACTIONS(401), + [anon_sym_LEAST] = ACTIONS(401), + [anon_sym_some] = ACTIONS(401), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(401), + [anon_sym_u2203_BANG] = ACTIONS(399), + [anon_sym_QMARK_BANG] = ACTIONS(401), + [anon_sym_u2203] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u2200] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_u03bb] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_u00ac] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_u21ce] = ACTIONS(399), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(401), + [anon_sym_u21d4] = ACTIONS(399), + [anon_sym_EQ_EQ_GT] = ACTIONS(401), + [anon_sym_u21d2] = ACTIONS(399), + [anon_sym_BSLASH_SLASH] = ACTIONS(401), + [anon_sym_u2228] = ACTIONS(399), + [anon_sym_u2209] = ACTIONS(399), + [anon_sym_NOTIN] = ACTIONS(401), + [anon_sym_u2208] = ACTIONS(399), + [anon_sym_IN] = ACTIONS(401), + [anon_sym_u227c] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_PERMUTES] = ACTIONS(401), + [anon_sym_HAS_SIZE] = ACTIONS(401), + [anon_sym_u2282] = ACTIONS(399), + [anon_sym_PSUBSET] = ACTIONS(401), + [anon_sym_u2286] = ACTIONS(401), + [anon_sym_u2265] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_u2264] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_u2286u1d63] = ACTIONS(399), + [anon_sym_RSUBSET] = ACTIONS(401), + [anon_sym_u2260] = ACTIONS(399), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_INSERT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_o] = ACTIONS(401), + [anon_sym_list] = ACTIONS(401), + [sym_hol_true] = ACTIONS(401), + [sym_hol_false] = ACTIONS(401), + [sym_hol_number] = ACTIONS(399), + [sym_hol_string] = ACTIONS(399), + [sym_hol_character] = ACTIONS(399), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [149] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_then] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_DASH_GT] = ACTIONS(604), + [anon_sym_u2227] = ACTIONS(383), + [anon_sym_SLASH_BSLASH] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(385), + [sym__hol_alphanumeric] = ACTIONS(385), + [sym__hol_symbolic] = ACTIONS(385), + [anon_sym_OLEAST] = ACTIONS(385), + [anon_sym_LEAST] = ACTIONS(385), + [anon_sym_some] = ACTIONS(385), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(385), + [anon_sym_u2203_BANG] = ACTIONS(383), + [anon_sym_QMARK_BANG] = ACTIONS(385), + [anon_sym_u2203] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u2200] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_u03bb] = ACTIONS(383), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_u00ac] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_u21ce] = ACTIONS(383), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(385), + [anon_sym_u21d4] = ACTIONS(383), + [anon_sym_EQ_EQ_GT] = ACTIONS(385), + [anon_sym_u21d2] = ACTIONS(383), + [anon_sym_BSLASH_SLASH] = ACTIONS(385), + [anon_sym_u2228] = ACTIONS(383), + [anon_sym_u2209] = ACTIONS(383), + [anon_sym_NOTIN] = ACTIONS(385), + [anon_sym_u2208] = ACTIONS(383), + [anon_sym_IN] = ACTIONS(385), + [anon_sym_u227c] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_PERMUTES] = ACTIONS(385), + [anon_sym_HAS_SIZE] = ACTIONS(385), + [anon_sym_u2282] = ACTIONS(383), + [anon_sym_PSUBSET] = ACTIONS(385), + [anon_sym_u2286] = ACTIONS(385), + [anon_sym_u2265] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_u2264] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_u2286u1d63] = ACTIONS(383), + [anon_sym_RSUBSET] = ACTIONS(385), + [anon_sym_u2260] = ACTIONS(383), + [anon_sym_LT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_INSERT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_o] = ACTIONS(385), + [anon_sym_list] = ACTIONS(606), + [sym_hol_true] = ACTIONS(385), + [sym_hol_false] = ACTIONS(385), + [sym_hol_number] = ACTIONS(383), + [sym_hol_string] = ACTIONS(383), + [sym_hol_character] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [150] = { + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_if] = ACTIONS(381), + [anon_sym_case] = ACTIONS(381), + [anon_sym_of] = ACTIONS(381), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_u2227] = ACTIONS(379), + [anon_sym_SLASH_BSLASH] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(381), + [sym__hol_alphanumeric] = ACTIONS(381), + [sym__hol_symbolic] = ACTIONS(381), + [anon_sym_OLEAST] = ACTIONS(381), + [anon_sym_LEAST] = ACTIONS(381), + [anon_sym_some] = ACTIONS(381), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(381), + [anon_sym_u2203_BANG] = ACTIONS(379), + [anon_sym_QMARK_BANG] = ACTIONS(381), + [anon_sym_u2203] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u2200] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_u03bb] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_u00ac] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_u21ce] = ACTIONS(379), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(381), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_u21d4] = ACTIONS(379), + [anon_sym_EQ_EQ_GT] = ACTIONS(381), + [anon_sym_u21d2] = ACTIONS(379), + [anon_sym_BSLASH_SLASH] = ACTIONS(381), + [anon_sym_u2228] = ACTIONS(379), + [anon_sym_u2209] = ACTIONS(379), + [anon_sym_NOTIN] = ACTIONS(381), + [anon_sym_u2208] = ACTIONS(379), + [anon_sym_IN] = ACTIONS(381), + [anon_sym_u227c] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_PERMUTES] = ACTIONS(381), + [anon_sym_HAS_SIZE] = ACTIONS(381), + [anon_sym_u2282] = ACTIONS(379), + [anon_sym_PSUBSET] = ACTIONS(381), + [anon_sym_u2286] = ACTIONS(381), + [anon_sym_u2265] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_u2264] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_u2286u1d63] = ACTIONS(379), + [anon_sym_RSUBSET] = ACTIONS(381), + [anon_sym_u2260] = ACTIONS(379), + [anon_sym_LT_GT] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_INSERT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_o] = ACTIONS(381), + [anon_sym_list] = ACTIONS(381), + [sym_hol_true] = ACTIONS(381), + [sym_hol_false] = ACTIONS(381), + [sym_hol_number] = ACTIONS(379), + [sym_hol_string] = ACTIONS(379), + [sym_hol_character] = ACTIONS(379), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [151] = { + [aux_sym_hol_case_repeat1] = STATE(207), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_then] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [152] = { + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_if] = ACTIONS(381), + [anon_sym_else] = ACTIONS(381), + [anon_sym_case] = ACTIONS(381), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_u2227] = ACTIONS(379), + [anon_sym_SLASH_BSLASH] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(381), + [sym__hol_alphanumeric] = ACTIONS(381), + [sym__hol_symbolic] = ACTIONS(381), + [anon_sym_OLEAST] = ACTIONS(381), + [anon_sym_LEAST] = ACTIONS(381), + [anon_sym_some] = ACTIONS(381), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(381), + [anon_sym_u2203_BANG] = ACTIONS(379), + [anon_sym_QMARK_BANG] = ACTIONS(381), + [anon_sym_u2203] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u2200] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_u03bb] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_u00ac] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_u21ce] = ACTIONS(379), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(381), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_u21d4] = ACTIONS(379), + [anon_sym_EQ_EQ_GT] = ACTIONS(381), + [anon_sym_u21d2] = ACTIONS(379), + [anon_sym_BSLASH_SLASH] = ACTIONS(381), + [anon_sym_u2228] = ACTIONS(379), + [anon_sym_u2209] = ACTIONS(379), + [anon_sym_NOTIN] = ACTIONS(381), + [anon_sym_u2208] = ACTIONS(379), + [anon_sym_IN] = ACTIONS(381), + [anon_sym_u227c] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_PERMUTES] = ACTIONS(381), + [anon_sym_HAS_SIZE] = ACTIONS(381), + [anon_sym_u2282] = ACTIONS(379), + [anon_sym_PSUBSET] = ACTIONS(381), + [anon_sym_u2286] = ACTIONS(381), + [anon_sym_u2265] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_u2264] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_u2286u1d63] = ACTIONS(379), + [anon_sym_RSUBSET] = ACTIONS(381), + [anon_sym_u2260] = ACTIONS(379), + [anon_sym_LT_GT] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_INSERT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_o] = ACTIONS(381), + [anon_sym_list] = ACTIONS(381), + [sym_hol_true] = ACTIONS(381), + [sym_hol_false] = ACTIONS(381), + [sym_hol_number] = ACTIONS(379), + [sym_hol_string] = ACTIONS(379), + [sym_hol_character] = ACTIONS(379), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [153] = { + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_if] = ACTIONS(381), + [anon_sym_then] = ACTIONS(381), + [anon_sym_case] = ACTIONS(381), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_u2227] = ACTIONS(379), + [anon_sym_SLASH_BSLASH] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(381), + [sym__hol_alphanumeric] = ACTIONS(381), + [sym__hol_symbolic] = ACTIONS(381), + [anon_sym_OLEAST] = ACTIONS(381), + [anon_sym_LEAST] = ACTIONS(381), + [anon_sym_some] = ACTIONS(381), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(381), + [anon_sym_u2203_BANG] = ACTIONS(379), + [anon_sym_QMARK_BANG] = ACTIONS(381), + [anon_sym_u2203] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u2200] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_u03bb] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_u00ac] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_u21ce] = ACTIONS(379), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(381), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_u21d4] = ACTIONS(379), + [anon_sym_EQ_EQ_GT] = ACTIONS(381), + [anon_sym_u21d2] = ACTIONS(379), + [anon_sym_BSLASH_SLASH] = ACTIONS(381), + [anon_sym_u2228] = ACTIONS(379), + [anon_sym_u2209] = ACTIONS(379), + [anon_sym_NOTIN] = ACTIONS(381), + [anon_sym_u2208] = ACTIONS(379), + [anon_sym_IN] = ACTIONS(381), + [anon_sym_u227c] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_PERMUTES] = ACTIONS(381), + [anon_sym_HAS_SIZE] = ACTIONS(381), + [anon_sym_u2282] = ACTIONS(379), + [anon_sym_PSUBSET] = ACTIONS(381), + [anon_sym_u2286] = ACTIONS(381), + [anon_sym_u2265] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_u2264] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_u2286u1d63] = ACTIONS(379), + [anon_sym_RSUBSET] = ACTIONS(381), + [anon_sym_u2260] = ACTIONS(379), + [anon_sym_LT_GT] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_INSERT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_o] = ACTIONS(381), + [anon_sym_list] = ACTIONS(381), + [sym_hol_true] = ACTIONS(381), + [sym_hol_false] = ACTIONS(381), + [sym_hol_number] = ACTIONS(379), + [sym_hol_string] = ACTIONS(379), + [sym_hol_character] = ACTIONS(379), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [154] = { + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_if] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_DASH_GT] = ACTIONS(401), + [anon_sym_Proof] = ACTIONS(401), + [anon_sym_u2227] = ACTIONS(399), + [anon_sym_SLASH_BSLASH] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(401), + [sym__hol_alphanumeric] = ACTIONS(401), + [sym__hol_symbolic] = ACTIONS(401), + [anon_sym_OLEAST] = ACTIONS(401), + [anon_sym_LEAST] = ACTIONS(401), + [anon_sym_some] = ACTIONS(401), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(401), + [anon_sym_u2203_BANG] = ACTIONS(399), + [anon_sym_QMARK_BANG] = ACTIONS(401), + [anon_sym_u2203] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u2200] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_u03bb] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_u00ac] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_u21ce] = ACTIONS(399), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(401), + [anon_sym_u21d4] = ACTIONS(399), + [anon_sym_EQ_EQ_GT] = ACTIONS(401), + [anon_sym_u21d2] = ACTIONS(399), + [anon_sym_BSLASH_SLASH] = ACTIONS(401), + [anon_sym_u2228] = ACTIONS(399), + [anon_sym_u2209] = ACTIONS(399), + [anon_sym_NOTIN] = ACTIONS(401), + [anon_sym_u2208] = ACTIONS(399), + [anon_sym_IN] = ACTIONS(401), + [anon_sym_u227c] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_PERMUTES] = ACTIONS(401), + [anon_sym_HAS_SIZE] = ACTIONS(401), + [anon_sym_u2282] = ACTIONS(399), + [anon_sym_PSUBSET] = ACTIONS(401), + [anon_sym_u2286] = ACTIONS(401), + [anon_sym_u2265] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_u2264] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_u2286u1d63] = ACTIONS(399), + [anon_sym_RSUBSET] = ACTIONS(401), + [anon_sym_u2260] = ACTIONS(399), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_INSERT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_o] = ACTIONS(401), + [anon_sym_list] = ACTIONS(401), + [sym_hol_true] = ACTIONS(401), + [sym_hol_false] = ACTIONS(401), + [sym_hol_number] = ACTIONS(399), + [sym_hol_string] = ACTIONS(399), + [sym_hol_character] = ACTIONS(399), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [155] = { + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_of] = ACTIONS(393), + [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_u2227] = ACTIONS(391), + [anon_sym_SLASH_BSLASH] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [sym__hol_alphanumeric] = ACTIONS(393), + [sym__hol_symbolic] = ACTIONS(393), + [anon_sym_OLEAST] = ACTIONS(393), + [anon_sym_LEAST] = ACTIONS(393), + [anon_sym_some] = ACTIONS(393), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(393), + [anon_sym_u2203_BANG] = ACTIONS(391), + [anon_sym_QMARK_BANG] = ACTIONS(393), + [anon_sym_u2203] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u2200] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_u03bb] = ACTIONS(391), + [anon_sym_BSLASH] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_u00ac] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_u21ce] = ACTIONS(391), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(393), + [anon_sym_u21d4] = ACTIONS(391), + [anon_sym_EQ_EQ_GT] = ACTIONS(393), + [anon_sym_u21d2] = ACTIONS(391), + [anon_sym_BSLASH_SLASH] = ACTIONS(393), + [anon_sym_u2228] = ACTIONS(391), + [anon_sym_u2209] = ACTIONS(391), + [anon_sym_NOTIN] = ACTIONS(393), + [anon_sym_u2208] = ACTIONS(391), + [anon_sym_IN] = ACTIONS(393), + [anon_sym_u227c] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_PERMUTES] = ACTIONS(393), + [anon_sym_HAS_SIZE] = ACTIONS(393), + [anon_sym_u2282] = ACTIONS(391), + [anon_sym_PSUBSET] = ACTIONS(393), + [anon_sym_u2286] = ACTIONS(393), + [anon_sym_u2265] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_u2264] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_u2286u1d63] = ACTIONS(391), + [anon_sym_RSUBSET] = ACTIONS(393), + [anon_sym_u2260] = ACTIONS(391), + [anon_sym_LT_GT] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_INSERT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_o] = ACTIONS(393), + [anon_sym_list] = ACTIONS(393), + [sym_hol_true] = ACTIONS(393), + [sym_hol_false] = ACTIONS(393), + [sym_hol_number] = ACTIONS(391), + [sym_hol_string] = ACTIONS(391), + [sym_hol_character] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [156] = { + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_End] = ACTIONS(113), + [anon_sym_Termination] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [157] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_DASH_GT] = ACTIONS(610), + [anon_sym_Proof] = ACTIONS(385), + [anon_sym_u2227] = ACTIONS(383), + [anon_sym_SLASH_BSLASH] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(385), + [sym__hol_alphanumeric] = ACTIONS(385), + [sym__hol_symbolic] = ACTIONS(385), + [anon_sym_OLEAST] = ACTIONS(385), + [anon_sym_LEAST] = ACTIONS(385), + [anon_sym_some] = ACTIONS(385), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(385), + [anon_sym_u2203_BANG] = ACTIONS(383), + [anon_sym_QMARK_BANG] = ACTIONS(385), + [anon_sym_u2203] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u2200] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_u03bb] = ACTIONS(383), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_u00ac] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_u21ce] = ACTIONS(383), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(385), + [anon_sym_u21d4] = ACTIONS(383), + [anon_sym_EQ_EQ_GT] = ACTIONS(385), + [anon_sym_u21d2] = ACTIONS(383), + [anon_sym_BSLASH_SLASH] = ACTIONS(385), + [anon_sym_u2228] = ACTIONS(383), + [anon_sym_u2209] = ACTIONS(383), + [anon_sym_NOTIN] = ACTIONS(385), + [anon_sym_u2208] = ACTIONS(383), + [anon_sym_IN] = ACTIONS(385), + [anon_sym_u227c] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_PERMUTES] = ACTIONS(385), + [anon_sym_HAS_SIZE] = ACTIONS(385), + [anon_sym_u2282] = ACTIONS(383), + [anon_sym_PSUBSET] = ACTIONS(385), + [anon_sym_u2286] = ACTIONS(385), + [anon_sym_u2265] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_u2264] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_u2286u1d63] = ACTIONS(383), + [anon_sym_RSUBSET] = ACTIONS(385), + [anon_sym_u2260] = ACTIONS(383), + [anon_sym_LT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_INSERT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_o] = ACTIONS(385), + [anon_sym_list] = ACTIONS(612), + [sym_hol_true] = ACTIONS(385), + [sym_hol_false] = ACTIONS(385), + [sym_hol_number] = ACTIONS(383), + [sym_hol_string] = ACTIONS(383), + [sym_hol_character] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [158] = { + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_Proof] = ACTIONS(393), + [anon_sym_u2227] = ACTIONS(391), + [anon_sym_SLASH_BSLASH] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [sym__hol_alphanumeric] = ACTIONS(393), + [sym__hol_symbolic] = ACTIONS(393), + [anon_sym_OLEAST] = ACTIONS(393), + [anon_sym_LEAST] = ACTIONS(393), + [anon_sym_some] = ACTIONS(393), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(393), + [anon_sym_u2203_BANG] = ACTIONS(391), + [anon_sym_QMARK_BANG] = ACTIONS(393), + [anon_sym_u2203] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u2200] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_u03bb] = ACTIONS(391), + [anon_sym_BSLASH] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_u00ac] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_u21ce] = ACTIONS(391), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(393), + [anon_sym_u21d4] = ACTIONS(391), + [anon_sym_EQ_EQ_GT] = ACTIONS(393), + [anon_sym_u21d2] = ACTIONS(391), + [anon_sym_BSLASH_SLASH] = ACTIONS(393), + [anon_sym_u2228] = ACTIONS(391), + [anon_sym_u2209] = ACTIONS(391), + [anon_sym_NOTIN] = ACTIONS(393), + [anon_sym_u2208] = ACTIONS(391), + [anon_sym_IN] = ACTIONS(393), + [anon_sym_u227c] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_PERMUTES] = ACTIONS(393), + [anon_sym_HAS_SIZE] = ACTIONS(393), + [anon_sym_u2282] = ACTIONS(391), + [anon_sym_PSUBSET] = ACTIONS(393), + [anon_sym_u2286] = ACTIONS(393), + [anon_sym_u2265] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_u2264] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_u2286u1d63] = ACTIONS(391), + [anon_sym_RSUBSET] = ACTIONS(393), + [anon_sym_u2260] = ACTIONS(391), + [anon_sym_LT_GT] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_INSERT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_o] = ACTIONS(393), + [anon_sym_list] = ACTIONS(393), + [sym_hol_true] = ACTIONS(393), + [sym_hol_false] = ACTIONS(393), + [sym_hol_number] = ACTIONS(391), + [sym_hol_string] = ACTIONS(391), + [sym_hol_character] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [159] = { + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_then] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(604), + [anon_sym_u2227] = ACTIONS(395), + [anon_sym_SLASH_BSLASH] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [sym__hol_alphanumeric] = ACTIONS(397), + [sym__hol_symbolic] = ACTIONS(397), + [anon_sym_OLEAST] = ACTIONS(397), + [anon_sym_LEAST] = ACTIONS(397), + [anon_sym_some] = ACTIONS(397), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(397), + [anon_sym_u2203_BANG] = ACTIONS(395), + [anon_sym_QMARK_BANG] = ACTIONS(397), + [anon_sym_u2203] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u2200] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_u03bb] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_u00ac] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_u21ce] = ACTIONS(395), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(397), + [anon_sym_u21d4] = ACTIONS(395), + [anon_sym_EQ_EQ_GT] = ACTIONS(397), + [anon_sym_u21d2] = ACTIONS(395), + [anon_sym_BSLASH_SLASH] = ACTIONS(397), + [anon_sym_u2228] = ACTIONS(395), + [anon_sym_u2209] = ACTIONS(395), + [anon_sym_NOTIN] = ACTIONS(397), + [anon_sym_u2208] = ACTIONS(395), + [anon_sym_IN] = ACTIONS(397), + [anon_sym_u227c] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_PERMUTES] = ACTIONS(397), + [anon_sym_HAS_SIZE] = ACTIONS(397), + [anon_sym_u2282] = ACTIONS(395), + [anon_sym_PSUBSET] = ACTIONS(397), + [anon_sym_u2286] = ACTIONS(397), + [anon_sym_u2265] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_u2264] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_u2286u1d63] = ACTIONS(395), + [anon_sym_RSUBSET] = ACTIONS(397), + [anon_sym_u2260] = ACTIONS(395), + [anon_sym_LT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_INSERT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_o] = ACTIONS(397), + [anon_sym_list] = ACTIONS(397), + [sym_hol_true] = ACTIONS(397), + [sym_hol_false] = ACTIONS(397), + [sym_hol_number] = ACTIONS(395), + [sym_hol_string] = ACTIONS(395), + [sym_hol_character] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [160] = { + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_of] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(614), + [anon_sym_u2227] = ACTIONS(395), + [anon_sym_SLASH_BSLASH] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [sym__hol_alphanumeric] = ACTIONS(397), + [sym__hol_symbolic] = ACTIONS(397), + [anon_sym_OLEAST] = ACTIONS(397), + [anon_sym_LEAST] = ACTIONS(397), + [anon_sym_some] = ACTIONS(397), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(397), + [anon_sym_u2203_BANG] = ACTIONS(395), + [anon_sym_QMARK_BANG] = ACTIONS(397), + [anon_sym_u2203] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u2200] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_u03bb] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_u00ac] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_u21ce] = ACTIONS(395), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(397), + [anon_sym_u21d4] = ACTIONS(395), + [anon_sym_EQ_EQ_GT] = ACTIONS(397), + [anon_sym_u21d2] = ACTIONS(395), + [anon_sym_BSLASH_SLASH] = ACTIONS(397), + [anon_sym_u2228] = ACTIONS(395), + [anon_sym_u2209] = ACTIONS(395), + [anon_sym_NOTIN] = ACTIONS(397), + [anon_sym_u2208] = ACTIONS(395), + [anon_sym_IN] = ACTIONS(397), + [anon_sym_u227c] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_PERMUTES] = ACTIONS(397), + [anon_sym_HAS_SIZE] = ACTIONS(397), + [anon_sym_u2282] = ACTIONS(395), + [anon_sym_PSUBSET] = ACTIONS(397), + [anon_sym_u2286] = ACTIONS(397), + [anon_sym_u2265] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_u2264] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_u2286u1d63] = ACTIONS(395), + [anon_sym_RSUBSET] = ACTIONS(397), + [anon_sym_u2260] = ACTIONS(395), + [anon_sym_LT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_INSERT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_o] = ACTIONS(397), + [anon_sym_list] = ACTIONS(397), + [sym_hol_true] = ACTIONS(397), + [sym_hol_false] = ACTIONS(397), + [sym_hol_number] = ACTIONS(395), + [sym_hol_string] = ACTIONS(395), + [sym_hol_character] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [161] = { + [aux_sym_hol_case_repeat1] = STATE(140), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_case] = ACTIONS(415), + [anon_sym_of] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_u2227] = ACTIONS(413), + [anon_sym_SLASH_BSLASH] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(415), + [sym__hol_alphanumeric] = ACTIONS(415), + [sym__hol_symbolic] = ACTIONS(415), + [anon_sym_OLEAST] = ACTIONS(415), + [anon_sym_LEAST] = ACTIONS(415), + [anon_sym_some] = ACTIONS(415), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(415), + [anon_sym_u2203_BANG] = ACTIONS(413), + [anon_sym_QMARK_BANG] = ACTIONS(415), + [anon_sym_u2203] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u2200] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_u03bb] = ACTIONS(413), + [anon_sym_BSLASH] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_u00ac] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(413), + [anon_sym_u21ce] = ACTIONS(413), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(415), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_u21d4] = ACTIONS(413), + [anon_sym_EQ_EQ_GT] = ACTIONS(415), + [anon_sym_u21d2] = ACTIONS(413), + [anon_sym_BSLASH_SLASH] = ACTIONS(415), + [anon_sym_u2228] = ACTIONS(413), + [anon_sym_u2209] = ACTIONS(413), + [anon_sym_NOTIN] = ACTIONS(415), + [anon_sym_u2208] = ACTIONS(413), + [anon_sym_IN] = ACTIONS(415), + [anon_sym_u227c] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_PERMUTES] = ACTIONS(415), + [anon_sym_HAS_SIZE] = ACTIONS(415), + [anon_sym_u2282] = ACTIONS(413), + [anon_sym_PSUBSET] = ACTIONS(415), + [anon_sym_u2286] = ACTIONS(415), + [anon_sym_u2265] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_u2264] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_u2286u1d63] = ACTIONS(413), + [anon_sym_RSUBSET] = ACTIONS(415), + [anon_sym_u2260] = ACTIONS(413), + [anon_sym_LT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_INSERT] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_o] = ACTIONS(415), + [sym_hol_true] = ACTIONS(415), + [sym_hol_false] = ACTIONS(415), + [sym_hol_number] = ACTIONS(413), + [sym_hol_string] = ACTIONS(413), + [sym_hol_character] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [162] = { + [aux_sym_hol_case_repeat1] = STATE(146), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_then] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(407), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [163] = { + [aux_sym_hol_case_repeat1] = STATE(146), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_COLON] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_if] = ACTIONS(426), + [anon_sym_then] = ACTIONS(426), + [anon_sym_case] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(426), + [anon_sym_u2227] = ACTIONS(424), + [anon_sym_SLASH_BSLASH] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(426), + [sym__hol_alphanumeric] = ACTIONS(426), + [sym__hol_symbolic] = ACTIONS(426), + [anon_sym_OLEAST] = ACTIONS(426), + [anon_sym_LEAST] = ACTIONS(426), + [anon_sym_some] = ACTIONS(426), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(426), + [anon_sym_u2203_BANG] = ACTIONS(424), + [anon_sym_QMARK_BANG] = ACTIONS(426), + [anon_sym_u2203] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u2200] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_u03bb] = ACTIONS(424), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_u00ac] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_u21ce] = ACTIONS(424), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(426), + [anon_sym_LT_EQ_GT] = ACTIONS(426), + [anon_sym_u21d4] = ACTIONS(424), + [anon_sym_EQ_EQ_GT] = ACTIONS(426), + [anon_sym_u21d2] = ACTIONS(424), + [anon_sym_BSLASH_SLASH] = ACTIONS(426), + [anon_sym_u2228] = ACTIONS(424), + [anon_sym_u2209] = ACTIONS(424), + [anon_sym_NOTIN] = ACTIONS(426), + [anon_sym_u2208] = ACTIONS(424), + [anon_sym_IN] = ACTIONS(426), + [anon_sym_u227c] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_PERMUTES] = ACTIONS(426), + [anon_sym_HAS_SIZE] = ACTIONS(426), + [anon_sym_u2282] = ACTIONS(424), + [anon_sym_PSUBSET] = ACTIONS(426), + [anon_sym_u2286] = ACTIONS(426), + [anon_sym_u2265] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_u2264] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_u2286u1d63] = ACTIONS(424), + [anon_sym_RSUBSET] = ACTIONS(426), + [anon_sym_u2260] = ACTIONS(424), + [anon_sym_LT_GT] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(426), + [anon_sym_INSERT] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_o] = ACTIONS(426), + [sym_hol_true] = ACTIONS(426), + [sym_hol_false] = ACTIONS(426), + [sym_hol_number] = ACTIONS(424), + [sym_hol_string] = ACTIONS(424), + [sym_hol_character] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [164] = { + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_End] = ACTIONS(476), + [anon_sym_Termination] = ACTIONS(476), + [anon_sym_u2227] = ACTIONS(474), + [anon_sym_SLASH_BSLASH] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(476), + [sym__hol_alphanumeric] = ACTIONS(476), + [sym__hol_symbolic] = ACTIONS(476), + [anon_sym_OLEAST] = ACTIONS(476), + [anon_sym_LEAST] = ACTIONS(476), + [anon_sym_some] = ACTIONS(476), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(476), + [anon_sym_u2203_BANG] = ACTIONS(474), + [anon_sym_QMARK_BANG] = ACTIONS(476), + [anon_sym_u2203] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u2200] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_u03bb] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_u00ac] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_u21ce] = ACTIONS(474), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(476), + [anon_sym_LT_EQ_GT] = ACTIONS(476), + [anon_sym_u21d4] = ACTIONS(474), + [anon_sym_EQ_EQ_GT] = ACTIONS(476), + [anon_sym_u21d2] = ACTIONS(474), + [anon_sym_BSLASH_SLASH] = ACTIONS(476), + [anon_sym_u2228] = ACTIONS(474), + [anon_sym_u2209] = ACTIONS(474), + [anon_sym_NOTIN] = ACTIONS(476), + [anon_sym_u2208] = ACTIONS(474), + [anon_sym_IN] = ACTIONS(476), + [anon_sym_u227c] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_PERMUTES] = ACTIONS(476), + [anon_sym_HAS_SIZE] = ACTIONS(476), + [anon_sym_u2282] = ACTIONS(474), + [anon_sym_PSUBSET] = ACTIONS(476), + [anon_sym_u2286] = ACTIONS(476), + [anon_sym_u2265] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_u2264] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_u2286u1d63] = ACTIONS(474), + [anon_sym_RSUBSET] = ACTIONS(476), + [anon_sym_u2260] = ACTIONS(474), + [anon_sym_LT_GT] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_INSERT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_o] = ACTIONS(476), + [sym_hol_true] = ACTIONS(476), + [sym_hol_false] = ACTIONS(476), + [sym_hol_number] = ACTIONS(474), + [sym_hol_string] = ACTIONS(474), + [sym_hol_character] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [165] = { + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_if] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_of] = ACTIONS(401), + [anon_sym_DASH_GT] = ACTIONS(401), + [anon_sym_u2227] = ACTIONS(399), + [anon_sym_SLASH_BSLASH] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(401), + [sym__hol_alphanumeric] = ACTIONS(401), + [sym__hol_symbolic] = ACTIONS(401), + [anon_sym_OLEAST] = ACTIONS(401), + [anon_sym_LEAST] = ACTIONS(401), + [anon_sym_some] = ACTIONS(401), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(401), + [anon_sym_u2203_BANG] = ACTIONS(399), + [anon_sym_QMARK_BANG] = ACTIONS(401), + [anon_sym_u2203] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u2200] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_u03bb] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_u00ac] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_u21ce] = ACTIONS(399), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(401), + [anon_sym_u21d4] = ACTIONS(399), + [anon_sym_EQ_EQ_GT] = ACTIONS(401), + [anon_sym_u21d2] = ACTIONS(399), + [anon_sym_BSLASH_SLASH] = ACTIONS(401), + [anon_sym_u2228] = ACTIONS(399), + [anon_sym_u2209] = ACTIONS(399), + [anon_sym_NOTIN] = ACTIONS(401), + [anon_sym_u2208] = ACTIONS(399), + [anon_sym_IN] = ACTIONS(401), + [anon_sym_u227c] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_PERMUTES] = ACTIONS(401), + [anon_sym_HAS_SIZE] = ACTIONS(401), + [anon_sym_u2282] = ACTIONS(399), + [anon_sym_PSUBSET] = ACTIONS(401), + [anon_sym_u2286] = ACTIONS(401), + [anon_sym_u2265] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_u2264] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_u2286u1d63] = ACTIONS(399), + [anon_sym_RSUBSET] = ACTIONS(401), + [anon_sym_u2260] = ACTIONS(399), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_INSERT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_o] = ACTIONS(401), + [anon_sym_list] = ACTIONS(401), + [sym_hol_true] = ACTIONS(401), + [sym_hol_false] = ACTIONS(401), + [sym_hol_number] = ACTIONS(399), + [sym_hol_string] = ACTIONS(399), + [sym_hol_character] = ACTIONS(399), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [166] = { + [aux_sym_hol_case_repeat1] = STATE(168), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_case] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_Proof] = ACTIONS(415), + [anon_sym_u2227] = ACTIONS(413), + [anon_sym_SLASH_BSLASH] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(415), + [sym__hol_alphanumeric] = ACTIONS(415), + [sym__hol_symbolic] = ACTIONS(415), + [anon_sym_OLEAST] = ACTIONS(415), + [anon_sym_LEAST] = ACTIONS(415), + [anon_sym_some] = ACTIONS(415), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(415), + [anon_sym_u2203_BANG] = ACTIONS(413), + [anon_sym_QMARK_BANG] = ACTIONS(415), + [anon_sym_u2203] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u2200] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_u03bb] = ACTIONS(413), + [anon_sym_BSLASH] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_u00ac] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(413), + [anon_sym_u21ce] = ACTIONS(413), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(415), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_u21d4] = ACTIONS(413), + [anon_sym_EQ_EQ_GT] = ACTIONS(415), + [anon_sym_u21d2] = ACTIONS(413), + [anon_sym_BSLASH_SLASH] = ACTIONS(415), + [anon_sym_u2228] = ACTIONS(413), + [anon_sym_u2209] = ACTIONS(413), + [anon_sym_NOTIN] = ACTIONS(415), + [anon_sym_u2208] = ACTIONS(413), + [anon_sym_IN] = ACTIONS(415), + [anon_sym_u227c] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_PERMUTES] = ACTIONS(415), + [anon_sym_HAS_SIZE] = ACTIONS(415), + [anon_sym_u2282] = ACTIONS(413), + [anon_sym_PSUBSET] = ACTIONS(415), + [anon_sym_u2286] = ACTIONS(415), + [anon_sym_u2265] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_u2264] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_u2286u1d63] = ACTIONS(413), + [anon_sym_RSUBSET] = ACTIONS(415), + [anon_sym_u2260] = ACTIONS(413), + [anon_sym_LT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_INSERT] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_o] = ACTIONS(415), + [sym_hol_true] = ACTIONS(415), + [sym_hol_false] = ACTIONS(415), + [sym_hol_number] = ACTIONS(413), + [sym_hol_string] = ACTIONS(413), + [sym_hol_character] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [167] = { + [aux_sym_hol_case_repeat1] = STATE(169), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_Proof] = ACTIONS(407), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [168] = { + [aux_sym_hol_case_repeat1] = STATE(175), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_Proof] = ACTIONS(407), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [169] = { + [aux_sym_hol_case_repeat1] = STATE(175), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_COLON] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_if] = ACTIONS(426), + [anon_sym_case] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_Proof] = ACTIONS(426), + [anon_sym_u2227] = ACTIONS(424), + [anon_sym_SLASH_BSLASH] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(426), + [sym__hol_alphanumeric] = ACTIONS(426), + [sym__hol_symbolic] = ACTIONS(426), + [anon_sym_OLEAST] = ACTIONS(426), + [anon_sym_LEAST] = ACTIONS(426), + [anon_sym_some] = ACTIONS(426), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(426), + [anon_sym_u2203_BANG] = ACTIONS(424), + [anon_sym_QMARK_BANG] = ACTIONS(426), + [anon_sym_u2203] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u2200] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_u03bb] = ACTIONS(424), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_u00ac] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_u21ce] = ACTIONS(424), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(426), + [anon_sym_LT_EQ_GT] = ACTIONS(426), + [anon_sym_u21d4] = ACTIONS(424), + [anon_sym_EQ_EQ_GT] = ACTIONS(426), + [anon_sym_u21d2] = ACTIONS(424), + [anon_sym_BSLASH_SLASH] = ACTIONS(426), + [anon_sym_u2228] = ACTIONS(424), + [anon_sym_u2209] = ACTIONS(424), + [anon_sym_NOTIN] = ACTIONS(426), + [anon_sym_u2208] = ACTIONS(424), + [anon_sym_IN] = ACTIONS(426), + [anon_sym_u227c] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_PERMUTES] = ACTIONS(426), + [anon_sym_HAS_SIZE] = ACTIONS(426), + [anon_sym_u2282] = ACTIONS(424), + [anon_sym_PSUBSET] = ACTIONS(426), + [anon_sym_u2286] = ACTIONS(426), + [anon_sym_u2265] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_u2264] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_u2286u1d63] = ACTIONS(424), + [anon_sym_RSUBSET] = ACTIONS(426), + [anon_sym_u2260] = ACTIONS(424), + [anon_sym_LT_GT] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(426), + [anon_sym_INSERT] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_o] = ACTIONS(426), + [sym_hol_true] = ACTIONS(426), + [sym_hol_false] = ACTIONS(426), + [sym_hol_number] = ACTIONS(424), + [sym_hol_string] = ACTIONS(424), + [sym_hol_character] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [170] = { + [aux_sym_hol_case_repeat1] = STATE(147), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_of] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(407), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [171] = { + [aux_sym_hol_case_repeat1] = STATE(147), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_COLON] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_if] = ACTIONS(426), + [anon_sym_case] = ACTIONS(426), + [anon_sym_of] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(426), + [anon_sym_u2227] = ACTIONS(424), + [anon_sym_SLASH_BSLASH] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(426), + [sym__hol_alphanumeric] = ACTIONS(426), + [sym__hol_symbolic] = ACTIONS(426), + [anon_sym_OLEAST] = ACTIONS(426), + [anon_sym_LEAST] = ACTIONS(426), + [anon_sym_some] = ACTIONS(426), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(426), + [anon_sym_u2203_BANG] = ACTIONS(424), + [anon_sym_QMARK_BANG] = ACTIONS(426), + [anon_sym_u2203] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u2200] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_u03bb] = ACTIONS(424), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_u00ac] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_u21ce] = ACTIONS(424), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(426), + [anon_sym_LT_EQ_GT] = ACTIONS(426), + [anon_sym_u21d4] = ACTIONS(424), + [anon_sym_EQ_EQ_GT] = ACTIONS(426), + [anon_sym_u21d2] = ACTIONS(424), + [anon_sym_BSLASH_SLASH] = ACTIONS(426), + [anon_sym_u2228] = ACTIONS(424), + [anon_sym_u2209] = ACTIONS(424), + [anon_sym_NOTIN] = ACTIONS(426), + [anon_sym_u2208] = ACTIONS(424), + [anon_sym_IN] = ACTIONS(426), + [anon_sym_u227c] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_PERMUTES] = ACTIONS(426), + [anon_sym_HAS_SIZE] = ACTIONS(426), + [anon_sym_u2282] = ACTIONS(424), + [anon_sym_PSUBSET] = ACTIONS(426), + [anon_sym_u2286] = ACTIONS(426), + [anon_sym_u2265] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_u2264] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_u2286u1d63] = ACTIONS(424), + [anon_sym_RSUBSET] = ACTIONS(426), + [anon_sym_u2260] = ACTIONS(424), + [anon_sym_LT_GT] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(426), + [anon_sym_INSERT] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_o] = ACTIONS(426), + [sym_hol_true] = ACTIONS(426), + [sym_hol_false] = ACTIONS(426), + [sym_hol_number] = ACTIONS(424), + [sym_hol_string] = ACTIONS(424), + [sym_hol_character] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [172] = { + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_if] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_End] = ACTIONS(89), + [anon_sym_Termination] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(89), + [sym__hol_symbolic] = ACTIONS(89), + [anon_sym_OLEAST] = ACTIONS(89), + [anon_sym_LEAST] = ACTIONS(89), + [anon_sym_some] = ACTIONS(89), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(89), + [anon_sym_u2203_BANG] = ACTIONS(85), + [anon_sym_QMARK_BANG] = ACTIONS(89), + [anon_sym_u2203] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(89), + [anon_sym_u2200] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_u03bb] = ACTIONS(85), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_u00ac] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(89), + [sym_hol_false] = ACTIONS(89), + [sym_hol_number] = ACTIONS(85), + [sym_hol_string] = ACTIONS(85), + [sym_hol_character] = ACTIONS(85), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [173] = { + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_if] = ACTIONS(480), + [anon_sym_case] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_End] = ACTIONS(480), + [anon_sym_Termination] = ACTIONS(480), + [anon_sym_u2227] = ACTIONS(478), + [anon_sym_SLASH_BSLASH] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(480), + [sym__hol_alphanumeric] = ACTIONS(480), + [sym__hol_symbolic] = ACTIONS(480), + [anon_sym_OLEAST] = ACTIONS(480), + [anon_sym_LEAST] = ACTIONS(480), + [anon_sym_some] = ACTIONS(480), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(480), + [anon_sym_u2203_BANG] = ACTIONS(478), + [anon_sym_QMARK_BANG] = ACTIONS(480), + [anon_sym_u2203] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u2200] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_u03bb] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_u00ac] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_u21ce] = ACTIONS(478), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(480), + [anon_sym_LT_EQ_GT] = ACTIONS(480), + [anon_sym_u21d4] = ACTIONS(478), + [anon_sym_EQ_EQ_GT] = ACTIONS(480), + [anon_sym_u21d2] = ACTIONS(478), + [anon_sym_BSLASH_SLASH] = ACTIONS(480), + [anon_sym_u2228] = ACTIONS(478), + [anon_sym_u2209] = ACTIONS(478), + [anon_sym_NOTIN] = ACTIONS(480), + [anon_sym_u2208] = ACTIONS(478), + [anon_sym_IN] = ACTIONS(480), + [anon_sym_u227c] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_PERMUTES] = ACTIONS(480), + [anon_sym_HAS_SIZE] = ACTIONS(480), + [anon_sym_u2282] = ACTIONS(478), + [anon_sym_PSUBSET] = ACTIONS(480), + [anon_sym_u2286] = ACTIONS(480), + [anon_sym_u2265] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_u2264] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_u2286u1d63] = ACTIONS(478), + [anon_sym_RSUBSET] = ACTIONS(480), + [anon_sym_u2260] = ACTIONS(478), + [anon_sym_LT_GT] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_INSERT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_o] = ACTIONS(480), + [sym_hol_true] = ACTIONS(480), + [sym_hol_false] = ACTIONS(480), + [sym_hol_number] = ACTIONS(478), + [sym_hol_string] = ACTIONS(478), + [sym_hol_character] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [174] = { + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_if] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_End] = ACTIONS(484), + [anon_sym_Termination] = ACTIONS(484), + [anon_sym_u2227] = ACTIONS(482), + [anon_sym_SLASH_BSLASH] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(484), + [sym__hol_alphanumeric] = ACTIONS(484), + [sym__hol_symbolic] = ACTIONS(484), + [anon_sym_OLEAST] = ACTIONS(484), + [anon_sym_LEAST] = ACTIONS(484), + [anon_sym_some] = ACTIONS(484), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(484), + [anon_sym_u2203_BANG] = ACTIONS(482), + [anon_sym_QMARK_BANG] = ACTIONS(484), + [anon_sym_u2203] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u2200] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_u03bb] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_u00ac] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_u21ce] = ACTIONS(482), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(484), + [anon_sym_LT_EQ_GT] = ACTIONS(484), + [anon_sym_u21d4] = ACTIONS(482), + [anon_sym_EQ_EQ_GT] = ACTIONS(484), + [anon_sym_u21d2] = ACTIONS(482), + [anon_sym_BSLASH_SLASH] = ACTIONS(484), + [anon_sym_u2228] = ACTIONS(482), + [anon_sym_u2209] = ACTIONS(482), + [anon_sym_NOTIN] = ACTIONS(484), + [anon_sym_u2208] = ACTIONS(482), + [anon_sym_IN] = ACTIONS(484), + [anon_sym_u227c] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_PERMUTES] = ACTIONS(484), + [anon_sym_HAS_SIZE] = ACTIONS(484), + [anon_sym_u2282] = ACTIONS(482), + [anon_sym_PSUBSET] = ACTIONS(484), + [anon_sym_u2286] = ACTIONS(484), + [anon_sym_u2265] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_u2264] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_u2286u1d63] = ACTIONS(482), + [anon_sym_RSUBSET] = ACTIONS(484), + [anon_sym_u2260] = ACTIONS(482), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_INSERT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_o] = ACTIONS(484), + [sym_hol_true] = ACTIONS(484), + [sym_hol_false] = ACTIONS(484), + [sym_hol_number] = ACTIONS(482), + [sym_hol_string] = ACTIONS(482), + [sym_hol_character] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [175] = { + [aux_sym_hol_case_repeat1] = STATE(175), + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(618), + [anon_sym_Proof] = ACTIONS(419), + [anon_sym_u2227] = ACTIONS(417), + [anon_sym_SLASH_BSLASH] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(419), + [sym__hol_alphanumeric] = ACTIONS(419), + [sym__hol_symbolic] = ACTIONS(419), + [anon_sym_OLEAST] = ACTIONS(419), + [anon_sym_LEAST] = ACTIONS(419), + [anon_sym_some] = ACTIONS(419), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(419), + [anon_sym_u2203_BANG] = ACTIONS(417), + [anon_sym_QMARK_BANG] = ACTIONS(419), + [anon_sym_u2203] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u2200] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_u03bb] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_u00ac] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_u21ce] = ACTIONS(417), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(419), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_u21d4] = ACTIONS(417), + [anon_sym_EQ_EQ_GT] = ACTIONS(419), + [anon_sym_u21d2] = ACTIONS(417), + [anon_sym_BSLASH_SLASH] = ACTIONS(419), + [anon_sym_u2228] = ACTIONS(417), + [anon_sym_u2209] = ACTIONS(417), + [anon_sym_NOTIN] = ACTIONS(419), + [anon_sym_u2208] = ACTIONS(417), + [anon_sym_IN] = ACTIONS(419), + [anon_sym_u227c] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_PERMUTES] = ACTIONS(419), + [anon_sym_HAS_SIZE] = ACTIONS(419), + [anon_sym_u2282] = ACTIONS(417), + [anon_sym_PSUBSET] = ACTIONS(419), + [anon_sym_u2286] = ACTIONS(419), + [anon_sym_u2265] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_u2264] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_u2286u1d63] = ACTIONS(417), + [anon_sym_RSUBSET] = ACTIONS(419), + [anon_sym_u2260] = ACTIONS(417), + [anon_sym_LT_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_INSERT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_o] = ACTIONS(419), + [sym_hol_true] = ACTIONS(419), + [sym_hol_false] = ACTIONS(419), + [sym_hol_number] = ACTIONS(417), + [sym_hol_string] = ACTIONS(417), + [sym_hol_character] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [176] = { + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_if] = ACTIONS(488), + [anon_sym_case] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_End] = ACTIONS(488), + [anon_sym_Termination] = ACTIONS(488), + [anon_sym_u2227] = ACTIONS(486), + [anon_sym_SLASH_BSLASH] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(488), + [sym__hol_alphanumeric] = ACTIONS(488), + [sym__hol_symbolic] = ACTIONS(488), + [anon_sym_OLEAST] = ACTIONS(488), + [anon_sym_LEAST] = ACTIONS(488), + [anon_sym_some] = ACTIONS(488), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(488), + [anon_sym_u2203_BANG] = ACTIONS(486), + [anon_sym_QMARK_BANG] = ACTIONS(488), + [anon_sym_u2203] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u2200] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_u03bb] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_u00ac] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_u21ce] = ACTIONS(486), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(488), + [anon_sym_LT_EQ_GT] = ACTIONS(488), + [anon_sym_u21d4] = ACTIONS(486), + [anon_sym_EQ_EQ_GT] = ACTIONS(488), + [anon_sym_u21d2] = ACTIONS(486), + [anon_sym_BSLASH_SLASH] = ACTIONS(488), + [anon_sym_u2228] = ACTIONS(486), + [anon_sym_u2209] = ACTIONS(486), + [anon_sym_NOTIN] = ACTIONS(488), + [anon_sym_u2208] = ACTIONS(486), + [anon_sym_IN] = ACTIONS(488), + [anon_sym_u227c] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_PERMUTES] = ACTIONS(488), + [anon_sym_HAS_SIZE] = ACTIONS(488), + [anon_sym_u2282] = ACTIONS(486), + [anon_sym_PSUBSET] = ACTIONS(488), + [anon_sym_u2286] = ACTIONS(488), + [anon_sym_u2265] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_u2264] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_u2286u1d63] = ACTIONS(486), + [anon_sym_RSUBSET] = ACTIONS(488), + [anon_sym_u2260] = ACTIONS(486), + [anon_sym_LT_GT] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_INSERT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_o] = ACTIONS(488), + [sym_hol_true] = ACTIONS(488), + [sym_hol_false] = ACTIONS(488), + [sym_hol_number] = ACTIONS(486), + [sym_hol_string] = ACTIONS(486), + [sym_hol_character] = ACTIONS(486), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [177] = { + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_if] = ACTIONS(430), + [anon_sym_case] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_End] = ACTIONS(430), + [anon_sym_Termination] = ACTIONS(430), + [anon_sym_u2227] = ACTIONS(428), + [anon_sym_SLASH_BSLASH] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(430), + [sym__hol_alphanumeric] = ACTIONS(430), + [sym__hol_symbolic] = ACTIONS(430), + [anon_sym_OLEAST] = ACTIONS(430), + [anon_sym_LEAST] = ACTIONS(430), + [anon_sym_some] = ACTIONS(430), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(430), + [anon_sym_u2203_BANG] = ACTIONS(428), + [anon_sym_QMARK_BANG] = ACTIONS(430), + [anon_sym_u2203] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u2200] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_u03bb] = ACTIONS(428), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_u00ac] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_u21ce] = ACTIONS(428), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(430), + [anon_sym_LT_EQ_GT] = ACTIONS(430), + [anon_sym_u21d4] = ACTIONS(428), + [anon_sym_EQ_EQ_GT] = ACTIONS(430), + [anon_sym_u21d2] = ACTIONS(428), + [anon_sym_BSLASH_SLASH] = ACTIONS(430), + [anon_sym_u2228] = ACTIONS(428), + [anon_sym_u2209] = ACTIONS(428), + [anon_sym_NOTIN] = ACTIONS(430), + [anon_sym_u2208] = ACTIONS(428), + [anon_sym_IN] = ACTIONS(430), + [anon_sym_u227c] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_PERMUTES] = ACTIONS(430), + [anon_sym_HAS_SIZE] = ACTIONS(430), + [anon_sym_u2282] = ACTIONS(428), + [anon_sym_PSUBSET] = ACTIONS(430), + [anon_sym_u2286] = ACTIONS(430), + [anon_sym_u2265] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_u2264] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_u2286u1d63] = ACTIONS(428), + [anon_sym_RSUBSET] = ACTIONS(430), + [anon_sym_u2260] = ACTIONS(428), + [anon_sym_LT_GT] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(430), + [anon_sym_INSERT] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_o] = ACTIONS(430), + [sym_hol_true] = ACTIONS(430), + [sym_hol_false] = ACTIONS(430), + [sym_hol_number] = ACTIONS(428), + [sym_hol_string] = ACTIONS(428), + [sym_hol_character] = ACTIONS(428), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [178] = { + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_if] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_End] = ACTIONS(492), + [anon_sym_Termination] = ACTIONS(492), + [anon_sym_u2227] = ACTIONS(490), + [anon_sym_SLASH_BSLASH] = ACTIONS(492), + [anon_sym_COLON_COLON] = ACTIONS(492), + [sym__hol_alphanumeric] = ACTIONS(492), + [sym__hol_symbolic] = ACTIONS(492), + [anon_sym_OLEAST] = ACTIONS(492), + [anon_sym_LEAST] = ACTIONS(492), + [anon_sym_some] = ACTIONS(492), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(492), + [anon_sym_u2203_BANG] = ACTIONS(490), + [anon_sym_QMARK_BANG] = ACTIONS(492), + [anon_sym_u2203] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u2200] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_u03bb] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_u00ac] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_u21ce] = ACTIONS(490), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(492), + [anon_sym_LT_EQ_GT] = ACTIONS(492), + [anon_sym_u21d4] = ACTIONS(490), + [anon_sym_EQ_EQ_GT] = ACTIONS(492), + [anon_sym_u21d2] = ACTIONS(490), + [anon_sym_BSLASH_SLASH] = ACTIONS(492), + [anon_sym_u2228] = ACTIONS(490), + [anon_sym_u2209] = ACTIONS(490), + [anon_sym_NOTIN] = ACTIONS(492), + [anon_sym_u2208] = ACTIONS(490), + [anon_sym_IN] = ACTIONS(492), + [anon_sym_u227c] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_PERMUTES] = ACTIONS(492), + [anon_sym_HAS_SIZE] = ACTIONS(492), + [anon_sym_u2282] = ACTIONS(490), + [anon_sym_PSUBSET] = ACTIONS(492), + [anon_sym_u2286] = ACTIONS(492), + [anon_sym_u2265] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_u2264] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_u2286u1d63] = ACTIONS(490), + [anon_sym_RSUBSET] = ACTIONS(492), + [anon_sym_u2260] = ACTIONS(490), + [anon_sym_LT_GT] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_INSERT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_o] = ACTIONS(492), + [sym_hol_true] = ACTIONS(492), + [sym_hol_false] = ACTIONS(492), + [sym_hol_number] = ACTIONS(490), + [sym_hol_string] = ACTIONS(490), + [sym_hol_character] = ACTIONS(490), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [179] = { + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_if] = ACTIONS(496), + [anon_sym_case] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(496), + [anon_sym_End] = ACTIONS(496), + [anon_sym_Termination] = ACTIONS(496), + [anon_sym_u2227] = ACTIONS(494), + [anon_sym_SLASH_BSLASH] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(496), + [sym__hol_alphanumeric] = ACTIONS(496), + [sym__hol_symbolic] = ACTIONS(496), + [anon_sym_OLEAST] = ACTIONS(496), + [anon_sym_LEAST] = ACTIONS(496), + [anon_sym_some] = ACTIONS(496), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(496), + [anon_sym_u2203_BANG] = ACTIONS(494), + [anon_sym_QMARK_BANG] = ACTIONS(496), + [anon_sym_u2203] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u2200] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_u03bb] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_u00ac] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_u21ce] = ACTIONS(494), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(496), + [anon_sym_LT_EQ_GT] = ACTIONS(496), + [anon_sym_u21d4] = ACTIONS(494), + [anon_sym_EQ_EQ_GT] = ACTIONS(496), + [anon_sym_u21d2] = ACTIONS(494), + [anon_sym_BSLASH_SLASH] = ACTIONS(496), + [anon_sym_u2228] = ACTIONS(494), + [anon_sym_u2209] = ACTIONS(494), + [anon_sym_NOTIN] = ACTIONS(496), + [anon_sym_u2208] = ACTIONS(494), + [anon_sym_IN] = ACTIONS(496), + [anon_sym_u227c] = ACTIONS(494), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_PERMUTES] = ACTIONS(496), + [anon_sym_HAS_SIZE] = ACTIONS(496), + [anon_sym_u2282] = ACTIONS(494), + [anon_sym_PSUBSET] = ACTIONS(496), + [anon_sym_u2286] = ACTIONS(496), + [anon_sym_u2265] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_u2264] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_u2286u1d63] = ACTIONS(494), + [anon_sym_RSUBSET] = ACTIONS(496), + [anon_sym_u2260] = ACTIONS(494), + [anon_sym_LT_GT] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(496), + [anon_sym_INSERT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_o] = ACTIONS(496), + [sym_hol_true] = ACTIONS(496), + [sym_hol_false] = ACTIONS(496), + [sym_hol_number] = ACTIONS(494), + [sym_hol_string] = ACTIONS(494), + [sym_hol_character] = ACTIONS(494), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [180] = { + [aux_sym_hol_case_repeat1] = STATE(145), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_of] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [181] = { + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_End] = ACTIONS(500), + [anon_sym_Termination] = ACTIONS(500), + [anon_sym_u2227] = ACTIONS(498), + [anon_sym_SLASH_BSLASH] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(500), + [sym__hol_alphanumeric] = ACTIONS(500), + [sym__hol_symbolic] = ACTIONS(500), + [anon_sym_OLEAST] = ACTIONS(500), + [anon_sym_LEAST] = ACTIONS(500), + [anon_sym_some] = ACTIONS(500), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(500), + [anon_sym_u2203_BANG] = ACTIONS(498), + [anon_sym_QMARK_BANG] = ACTIONS(500), + [anon_sym_u2203] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u2200] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_u03bb] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_u00ac] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_u21ce] = ACTIONS(498), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(500), + [anon_sym_LT_EQ_GT] = ACTIONS(500), + [anon_sym_u21d4] = ACTIONS(498), + [anon_sym_EQ_EQ_GT] = ACTIONS(500), + [anon_sym_u21d2] = ACTIONS(498), + [anon_sym_BSLASH_SLASH] = ACTIONS(500), + [anon_sym_u2228] = ACTIONS(498), + [anon_sym_u2209] = ACTIONS(498), + [anon_sym_NOTIN] = ACTIONS(500), + [anon_sym_u2208] = ACTIONS(498), + [anon_sym_IN] = ACTIONS(500), + [anon_sym_u227c] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_PERMUTES] = ACTIONS(500), + [anon_sym_HAS_SIZE] = ACTIONS(500), + [anon_sym_u2282] = ACTIONS(498), + [anon_sym_PSUBSET] = ACTIONS(500), + [anon_sym_u2286] = ACTIONS(500), + [anon_sym_u2265] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_u2264] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_u2286u1d63] = ACTIONS(498), + [anon_sym_RSUBSET] = ACTIONS(500), + [anon_sym_u2260] = ACTIONS(498), + [anon_sym_LT_GT] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_INSERT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_o] = ACTIONS(500), + [sym_hol_true] = ACTIONS(500), + [sym_hol_false] = ACTIONS(500), + [sym_hol_number] = ACTIONS(498), + [sym_hol_string] = ACTIONS(498), + [sym_hol_character] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [182] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_of] = ACTIONS(385), + [anon_sym_DASH_GT] = ACTIONS(614), + [anon_sym_u2227] = ACTIONS(383), + [anon_sym_SLASH_BSLASH] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(385), + [sym__hol_alphanumeric] = ACTIONS(385), + [sym__hol_symbolic] = ACTIONS(385), + [anon_sym_OLEAST] = ACTIONS(385), + [anon_sym_LEAST] = ACTIONS(385), + [anon_sym_some] = ACTIONS(385), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(385), + [anon_sym_u2203_BANG] = ACTIONS(383), + [anon_sym_QMARK_BANG] = ACTIONS(385), + [anon_sym_u2203] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u2200] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_u03bb] = ACTIONS(383), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_u00ac] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_u21ce] = ACTIONS(383), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(385), + [anon_sym_u21d4] = ACTIONS(383), + [anon_sym_EQ_EQ_GT] = ACTIONS(385), + [anon_sym_u21d2] = ACTIONS(383), + [anon_sym_BSLASH_SLASH] = ACTIONS(385), + [anon_sym_u2228] = ACTIONS(383), + [anon_sym_u2209] = ACTIONS(383), + [anon_sym_NOTIN] = ACTIONS(385), + [anon_sym_u2208] = ACTIONS(383), + [anon_sym_IN] = ACTIONS(385), + [anon_sym_u227c] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_PERMUTES] = ACTIONS(385), + [anon_sym_HAS_SIZE] = ACTIONS(385), + [anon_sym_u2282] = ACTIONS(383), + [anon_sym_PSUBSET] = ACTIONS(385), + [anon_sym_u2286] = ACTIONS(385), + [anon_sym_u2265] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_u2264] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_u2286u1d63] = ACTIONS(383), + [anon_sym_RSUBSET] = ACTIONS(385), + [anon_sym_u2260] = ACTIONS(383), + [anon_sym_LT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_INSERT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_o] = ACTIONS(385), + [anon_sym_list] = ACTIONS(621), + [sym_hol_true] = ACTIONS(385), + [sym_hol_false] = ACTIONS(385), + [sym_hol_number] = ACTIONS(383), + [sym_hol_string] = ACTIONS(383), + [sym_hol_character] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [183] = { + [aux_sym_hol_case_repeat1] = STATE(142), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_else] = ACTIONS(415), + [anon_sym_case] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_u2227] = ACTIONS(413), + [anon_sym_SLASH_BSLASH] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(415), + [sym__hol_alphanumeric] = ACTIONS(415), + [sym__hol_symbolic] = ACTIONS(415), + [anon_sym_OLEAST] = ACTIONS(415), + [anon_sym_LEAST] = ACTIONS(415), + [anon_sym_some] = ACTIONS(415), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(415), + [anon_sym_u2203_BANG] = ACTIONS(413), + [anon_sym_QMARK_BANG] = ACTIONS(415), + [anon_sym_u2203] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u2200] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_u03bb] = ACTIONS(413), + [anon_sym_BSLASH] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_u00ac] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(413), + [anon_sym_u21ce] = ACTIONS(413), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(415), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_u21d4] = ACTIONS(413), + [anon_sym_EQ_EQ_GT] = ACTIONS(415), + [anon_sym_u21d2] = ACTIONS(413), + [anon_sym_BSLASH_SLASH] = ACTIONS(415), + [anon_sym_u2228] = ACTIONS(413), + [anon_sym_u2209] = ACTIONS(413), + [anon_sym_NOTIN] = ACTIONS(415), + [anon_sym_u2208] = ACTIONS(413), + [anon_sym_IN] = ACTIONS(415), + [anon_sym_u227c] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_PERMUTES] = ACTIONS(415), + [anon_sym_HAS_SIZE] = ACTIONS(415), + [anon_sym_u2282] = ACTIONS(413), + [anon_sym_PSUBSET] = ACTIONS(415), + [anon_sym_u2286] = ACTIONS(415), + [anon_sym_u2265] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_u2264] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_u2286u1d63] = ACTIONS(413), + [anon_sym_RSUBSET] = ACTIONS(415), + [anon_sym_u2260] = ACTIONS(413), + [anon_sym_LT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_INSERT] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_o] = ACTIONS(415), + [sym_hol_true] = ACTIONS(415), + [sym_hol_false] = ACTIONS(415), + [sym_hol_number] = ACTIONS(413), + [sym_hol_string] = ACTIONS(413), + [sym_hol_character] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [184] = { + [aux_sym_hol_case_repeat1] = STATE(146), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_then] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [185] = { + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_COLON] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_if] = ACTIONS(381), + [anon_sym_case] = ACTIONS(381), + [anon_sym_DASH_GT] = ACTIONS(381), + [anon_sym_Proof] = ACTIONS(381), + [anon_sym_u2227] = ACTIONS(379), + [anon_sym_SLASH_BSLASH] = ACTIONS(381), + [anon_sym_COLON_COLON] = ACTIONS(381), + [sym__hol_alphanumeric] = ACTIONS(381), + [sym__hol_symbolic] = ACTIONS(381), + [anon_sym_OLEAST] = ACTIONS(381), + [anon_sym_LEAST] = ACTIONS(381), + [anon_sym_some] = ACTIONS(381), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(381), + [anon_sym_u2203_BANG] = ACTIONS(379), + [anon_sym_QMARK_BANG] = ACTIONS(381), + [anon_sym_u2203] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_u2200] = ACTIONS(379), + [anon_sym_BANG] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(381), + [anon_sym_u03bb] = ACTIONS(379), + [anon_sym_BSLASH] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_u00ac] = ACTIONS(379), + [anon_sym_TILDE] = ACTIONS(379), + [anon_sym_u21ce] = ACTIONS(379), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(381), + [anon_sym_LT_EQ_GT] = ACTIONS(381), + [anon_sym_u21d4] = ACTIONS(379), + [anon_sym_EQ_EQ_GT] = ACTIONS(381), + [anon_sym_u21d2] = ACTIONS(379), + [anon_sym_BSLASH_SLASH] = ACTIONS(381), + [anon_sym_u2228] = ACTIONS(379), + [anon_sym_u2209] = ACTIONS(379), + [anon_sym_NOTIN] = ACTIONS(381), + [anon_sym_u2208] = ACTIONS(379), + [anon_sym_IN] = ACTIONS(381), + [anon_sym_u227c] = ACTIONS(379), + [anon_sym_LT_LT_EQ] = ACTIONS(381), + [anon_sym_PERMUTES] = ACTIONS(381), + [anon_sym_HAS_SIZE] = ACTIONS(381), + [anon_sym_u2282] = ACTIONS(379), + [anon_sym_PSUBSET] = ACTIONS(381), + [anon_sym_u2286] = ACTIONS(381), + [anon_sym_u2265] = ACTIONS(379), + [anon_sym_GT_EQ] = ACTIONS(381), + [anon_sym_u2264] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(381), + [anon_sym_GT] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(381), + [anon_sym_u2286u1d63] = ACTIONS(379), + [anon_sym_RSUBSET] = ACTIONS(381), + [anon_sym_u2260] = ACTIONS(379), + [anon_sym_LT_GT] = ACTIONS(381), + [anon_sym_DOLLAR] = ACTIONS(381), + [anon_sym_INSERT] = ACTIONS(381), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_o] = ACTIONS(381), + [anon_sym_list] = ACTIONS(381), + [sym_hol_true] = ACTIONS(381), + [sym_hol_false] = ACTIONS(381), + [sym_hol_number] = ACTIONS(379), + [sym_hol_string] = ACTIONS(379), + [sym_hol_character] = ACTIONS(379), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [186] = { + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(508), + [anon_sym_End] = ACTIONS(508), + [anon_sym_Termination] = ACTIONS(508), + [anon_sym_u2227] = ACTIONS(506), + [anon_sym_SLASH_BSLASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(508), + [sym__hol_alphanumeric] = ACTIONS(508), + [sym__hol_symbolic] = ACTIONS(508), + [anon_sym_OLEAST] = ACTIONS(508), + [anon_sym_LEAST] = ACTIONS(508), + [anon_sym_some] = ACTIONS(508), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(508), + [anon_sym_u2203_BANG] = ACTIONS(506), + [anon_sym_QMARK_BANG] = ACTIONS(508), + [anon_sym_u2203] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u2200] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_u03bb] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_u00ac] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_u21ce] = ACTIONS(506), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(508), + [anon_sym_LT_EQ_GT] = ACTIONS(508), + [anon_sym_u21d4] = ACTIONS(506), + [anon_sym_EQ_EQ_GT] = ACTIONS(508), + [anon_sym_u21d2] = ACTIONS(506), + [anon_sym_BSLASH_SLASH] = ACTIONS(508), + [anon_sym_u2228] = ACTIONS(506), + [anon_sym_u2209] = ACTIONS(506), + [anon_sym_NOTIN] = ACTIONS(508), + [anon_sym_u2208] = ACTIONS(506), + [anon_sym_IN] = ACTIONS(508), + [anon_sym_u227c] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_PERMUTES] = ACTIONS(508), + [anon_sym_HAS_SIZE] = ACTIONS(508), + [anon_sym_u2282] = ACTIONS(506), + [anon_sym_PSUBSET] = ACTIONS(508), + [anon_sym_u2286] = ACTIONS(508), + [anon_sym_u2265] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_u2264] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_u2286u1d63] = ACTIONS(506), + [anon_sym_RSUBSET] = ACTIONS(508), + [anon_sym_u2260] = ACTIONS(506), + [anon_sym_LT_GT] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(508), + [anon_sym_INSERT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_o] = ACTIONS(508), + [sym_hol_true] = ACTIONS(508), + [sym_hol_false] = ACTIONS(508), + [sym_hol_number] = ACTIONS(506), + [sym_hol_string] = ACTIONS(506), + [sym_hol_character] = ACTIONS(506), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [187] = { + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_End] = ACTIONS(512), + [anon_sym_Termination] = ACTIONS(512), + [anon_sym_u2227] = ACTIONS(510), + [anon_sym_SLASH_BSLASH] = ACTIONS(512), + [anon_sym_COLON_COLON] = ACTIONS(512), + [sym__hol_alphanumeric] = ACTIONS(512), + [sym__hol_symbolic] = ACTIONS(512), + [anon_sym_OLEAST] = ACTIONS(512), + [anon_sym_LEAST] = ACTIONS(512), + [anon_sym_some] = ACTIONS(512), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(512), + [anon_sym_u2203_BANG] = ACTIONS(510), + [anon_sym_QMARK_BANG] = ACTIONS(512), + [anon_sym_u2203] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u2200] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_u03bb] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_u00ac] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_u21ce] = ACTIONS(510), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(512), + [anon_sym_LT_EQ_GT] = ACTIONS(512), + [anon_sym_u21d4] = ACTIONS(510), + [anon_sym_EQ_EQ_GT] = ACTIONS(512), + [anon_sym_u21d2] = ACTIONS(510), + [anon_sym_BSLASH_SLASH] = ACTIONS(512), + [anon_sym_u2228] = ACTIONS(510), + [anon_sym_u2209] = ACTIONS(510), + [anon_sym_NOTIN] = ACTIONS(512), + [anon_sym_u2208] = ACTIONS(510), + [anon_sym_IN] = ACTIONS(512), + [anon_sym_u227c] = ACTIONS(510), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_PERMUTES] = ACTIONS(512), + [anon_sym_HAS_SIZE] = ACTIONS(512), + [anon_sym_u2282] = ACTIONS(510), + [anon_sym_PSUBSET] = ACTIONS(512), + [anon_sym_u2286] = ACTIONS(512), + [anon_sym_u2265] = ACTIONS(510), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_u2264] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_u2286u1d63] = ACTIONS(510), + [anon_sym_RSUBSET] = ACTIONS(512), + [anon_sym_u2260] = ACTIONS(510), + [anon_sym_LT_GT] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_INSERT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_o] = ACTIONS(512), + [sym_hol_true] = ACTIONS(512), + [sym_hol_false] = ACTIONS(512), + [sym_hol_number] = ACTIONS(510), + [sym_hol_string] = ACTIONS(510), + [sym_hol_character] = ACTIONS(510), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [188] = { + [aux_sym_hol_case_repeat1] = STATE(175), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(407), + [anon_sym_Proof] = ACTIONS(407), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [189] = { + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_End] = ACTIONS(516), + [anon_sym_Termination] = ACTIONS(516), + [anon_sym_u2227] = ACTIONS(514), + [anon_sym_SLASH_BSLASH] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(516), + [sym__hol_alphanumeric] = ACTIONS(516), + [sym__hol_symbolic] = ACTIONS(516), + [anon_sym_OLEAST] = ACTIONS(516), + [anon_sym_LEAST] = ACTIONS(516), + [anon_sym_some] = ACTIONS(516), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(516), + [anon_sym_u2203_BANG] = ACTIONS(514), + [anon_sym_QMARK_BANG] = ACTIONS(516), + [anon_sym_u2203] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_u2200] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_u03bb] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_u00ac] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_u21ce] = ACTIONS(514), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(516), + [anon_sym_LT_EQ_GT] = ACTIONS(516), + [anon_sym_u21d4] = ACTIONS(514), + [anon_sym_EQ_EQ_GT] = ACTIONS(516), + [anon_sym_u21d2] = ACTIONS(514), + [anon_sym_BSLASH_SLASH] = ACTIONS(516), + [anon_sym_u2228] = ACTIONS(514), + [anon_sym_u2209] = ACTIONS(514), + [anon_sym_NOTIN] = ACTIONS(516), + [anon_sym_u2208] = ACTIONS(514), + [anon_sym_IN] = ACTIONS(516), + [anon_sym_u227c] = ACTIONS(514), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_PERMUTES] = ACTIONS(516), + [anon_sym_HAS_SIZE] = ACTIONS(516), + [anon_sym_u2282] = ACTIONS(514), + [anon_sym_PSUBSET] = ACTIONS(516), + [anon_sym_u2286] = ACTIONS(516), + [anon_sym_u2265] = ACTIONS(514), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_u2264] = ACTIONS(514), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_u2286u1d63] = ACTIONS(514), + [anon_sym_RSUBSET] = ACTIONS(516), + [anon_sym_u2260] = ACTIONS(514), + [anon_sym_LT_GT] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_INSERT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_o] = ACTIONS(516), + [sym_hol_true] = ACTIONS(516), + [sym_hol_false] = ACTIONS(516), + [sym_hol_number] = ACTIONS(514), + [sym_hol_string] = ACTIONS(514), + [sym_hol_character] = ACTIONS(514), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [190] = { + [aux_sym_hol_case_repeat1] = STATE(175), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_COLON] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_if] = ACTIONS(426), + [anon_sym_case] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(426), + [anon_sym_Proof] = ACTIONS(426), + [anon_sym_u2227] = ACTIONS(424), + [anon_sym_SLASH_BSLASH] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(426), + [sym__hol_alphanumeric] = ACTIONS(426), + [sym__hol_symbolic] = ACTIONS(426), + [anon_sym_OLEAST] = ACTIONS(426), + [anon_sym_LEAST] = ACTIONS(426), + [anon_sym_some] = ACTIONS(426), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(426), + [anon_sym_u2203_BANG] = ACTIONS(424), + [anon_sym_QMARK_BANG] = ACTIONS(426), + [anon_sym_u2203] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u2200] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_u03bb] = ACTIONS(424), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_u00ac] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_u21ce] = ACTIONS(424), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(426), + [anon_sym_LT_EQ_GT] = ACTIONS(426), + [anon_sym_u21d4] = ACTIONS(424), + [anon_sym_EQ_EQ_GT] = ACTIONS(426), + [anon_sym_u21d2] = ACTIONS(424), + [anon_sym_BSLASH_SLASH] = ACTIONS(426), + [anon_sym_u2228] = ACTIONS(424), + [anon_sym_u2209] = ACTIONS(424), + [anon_sym_NOTIN] = ACTIONS(426), + [anon_sym_u2208] = ACTIONS(424), + [anon_sym_IN] = ACTIONS(426), + [anon_sym_u227c] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_PERMUTES] = ACTIONS(426), + [anon_sym_HAS_SIZE] = ACTIONS(426), + [anon_sym_u2282] = ACTIONS(424), + [anon_sym_PSUBSET] = ACTIONS(426), + [anon_sym_u2286] = ACTIONS(426), + [anon_sym_u2265] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_u2264] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_u2286u1d63] = ACTIONS(424), + [anon_sym_RSUBSET] = ACTIONS(426), + [anon_sym_u2260] = ACTIONS(424), + [anon_sym_LT_GT] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(426), + [anon_sym_INSERT] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_o] = ACTIONS(426), + [sym_hol_true] = ACTIONS(426), + [sym_hol_false] = ACTIONS(426), + [sym_hol_number] = ACTIONS(424), + [sym_hol_string] = ACTIONS(424), + [sym_hol_character] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [191] = { + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_then] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_u2227] = ACTIONS(391), + [anon_sym_SLASH_BSLASH] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [sym__hol_alphanumeric] = ACTIONS(393), + [sym__hol_symbolic] = ACTIONS(393), + [anon_sym_OLEAST] = ACTIONS(393), + [anon_sym_LEAST] = ACTIONS(393), + [anon_sym_some] = ACTIONS(393), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(393), + [anon_sym_u2203_BANG] = ACTIONS(391), + [anon_sym_QMARK_BANG] = ACTIONS(393), + [anon_sym_u2203] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u2200] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_u03bb] = ACTIONS(391), + [anon_sym_BSLASH] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_u00ac] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_u21ce] = ACTIONS(391), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(393), + [anon_sym_u21d4] = ACTIONS(391), + [anon_sym_EQ_EQ_GT] = ACTIONS(393), + [anon_sym_u21d2] = ACTIONS(391), + [anon_sym_BSLASH_SLASH] = ACTIONS(393), + [anon_sym_u2228] = ACTIONS(391), + [anon_sym_u2209] = ACTIONS(391), + [anon_sym_NOTIN] = ACTIONS(393), + [anon_sym_u2208] = ACTIONS(391), + [anon_sym_IN] = ACTIONS(393), + [anon_sym_u227c] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_PERMUTES] = ACTIONS(393), + [anon_sym_HAS_SIZE] = ACTIONS(393), + [anon_sym_u2282] = ACTIONS(391), + [anon_sym_PSUBSET] = ACTIONS(393), + [anon_sym_u2286] = ACTIONS(393), + [anon_sym_u2265] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_u2264] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_u2286u1d63] = ACTIONS(391), + [anon_sym_RSUBSET] = ACTIONS(393), + [anon_sym_u2260] = ACTIONS(391), + [anon_sym_LT_GT] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_INSERT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_o] = ACTIONS(393), + [anon_sym_list] = ACTIONS(393), + [sym_hol_true] = ACTIONS(393), + [sym_hol_false] = ACTIONS(393), + [sym_hol_number] = ACTIONS(391), + [sym_hol_string] = ACTIONS(391), + [sym_hol_character] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [192] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(625), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(627), + [anon_sym_INSERT] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_o] = ACTIONS(631), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [193] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(635), + [anon_sym_SLASH_BSLASH] = ACTIONS(637), + [anon_sym_COLON_COLON] = ACTIONS(625), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(639), + [anon_sym_NOTIN] = ACTIONS(641), + [anon_sym_u2208] = ACTIONS(639), + [anon_sym_IN] = ACTIONS(641), + [anon_sym_u227c] = ACTIONS(643), + [anon_sym_LT_LT_EQ] = ACTIONS(633), + [anon_sym_PERMUTES] = ACTIONS(633), + [anon_sym_HAS_SIZE] = ACTIONS(633), + [anon_sym_u2282] = ACTIONS(643), + [anon_sym_PSUBSET] = ACTIONS(633), + [anon_sym_u2286] = ACTIONS(633), + [anon_sym_u2265] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(633), + [anon_sym_u2264] = ACTIONS(643), + [anon_sym_LT_EQ] = ACTIONS(633), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_u2286u1d63] = ACTIONS(643), + [anon_sym_RSUBSET] = ACTIONS(633), + [anon_sym_u2260] = ACTIONS(643), + [anon_sym_LT_GT] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(627), + [anon_sym_INSERT] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_o] = ACTIONS(631), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [194] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(625), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_o] = ACTIONS(631), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [195] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(635), + [anon_sym_SLASH_BSLASH] = ACTIONS(637), + [anon_sym_COLON_COLON] = ACTIONS(625), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(645), + [anon_sym_u21d2] = ACTIONS(647), + [anon_sym_BSLASH_SLASH] = ACTIONS(649), + [anon_sym_u2228] = ACTIONS(651), + [anon_sym_u2209] = ACTIONS(639), + [anon_sym_NOTIN] = ACTIONS(641), + [anon_sym_u2208] = ACTIONS(639), + [anon_sym_IN] = ACTIONS(641), + [anon_sym_u227c] = ACTIONS(643), + [anon_sym_LT_LT_EQ] = ACTIONS(633), + [anon_sym_PERMUTES] = ACTIONS(633), + [anon_sym_HAS_SIZE] = ACTIONS(633), + [anon_sym_u2282] = ACTIONS(643), + [anon_sym_PSUBSET] = ACTIONS(633), + [anon_sym_u2286] = ACTIONS(633), + [anon_sym_u2265] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(633), + [anon_sym_u2264] = ACTIONS(643), + [anon_sym_LT_EQ] = ACTIONS(633), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_u2286u1d63] = ACTIONS(643), + [anon_sym_RSUBSET] = ACTIONS(633), + [anon_sym_u2260] = ACTIONS(643), + [anon_sym_LT_GT] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(627), + [anon_sym_INSERT] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_o] = ACTIONS(631), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [196] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(635), + [anon_sym_SLASH_BSLASH] = ACTIONS(637), + [anon_sym_COLON_COLON] = ACTIONS(625), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(649), + [anon_sym_u2228] = ACTIONS(651), + [anon_sym_u2209] = ACTIONS(639), + [anon_sym_NOTIN] = ACTIONS(641), + [anon_sym_u2208] = ACTIONS(639), + [anon_sym_IN] = ACTIONS(641), + [anon_sym_u227c] = ACTIONS(643), + [anon_sym_LT_LT_EQ] = ACTIONS(633), + [anon_sym_PERMUTES] = ACTIONS(633), + [anon_sym_HAS_SIZE] = ACTIONS(633), + [anon_sym_u2282] = ACTIONS(643), + [anon_sym_PSUBSET] = ACTIONS(633), + [anon_sym_u2286] = ACTIONS(633), + [anon_sym_u2265] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(633), + [anon_sym_u2264] = ACTIONS(643), + [anon_sym_LT_EQ] = ACTIONS(633), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_u2286u1d63] = ACTIONS(643), + [anon_sym_RSUBSET] = ACTIONS(633), + [anon_sym_u2260] = ACTIONS(643), + [anon_sym_LT_GT] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(627), + [anon_sym_INSERT] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_o] = ACTIONS(631), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [197] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(635), + [anon_sym_SLASH_BSLASH] = ACTIONS(637), + [anon_sym_COLON_COLON] = ACTIONS(625), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(649), + [anon_sym_u2228] = ACTIONS(651), + [anon_sym_u2209] = ACTIONS(639), + [anon_sym_NOTIN] = ACTIONS(641), + [anon_sym_u2208] = ACTIONS(639), + [anon_sym_IN] = ACTIONS(641), + [anon_sym_u227c] = ACTIONS(643), + [anon_sym_LT_LT_EQ] = ACTIONS(633), + [anon_sym_PERMUTES] = ACTIONS(633), + [anon_sym_HAS_SIZE] = ACTIONS(633), + [anon_sym_u2282] = ACTIONS(643), + [anon_sym_PSUBSET] = ACTIONS(633), + [anon_sym_u2286] = ACTIONS(633), + [anon_sym_u2265] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(633), + [anon_sym_u2264] = ACTIONS(643), + [anon_sym_LT_EQ] = ACTIONS(633), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_u2286u1d63] = ACTIONS(643), + [anon_sym_RSUBSET] = ACTIONS(633), + [anon_sym_u2260] = ACTIONS(643), + [anon_sym_LT_GT] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(627), + [anon_sym_INSERT] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_o] = ACTIONS(631), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [198] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(625), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(643), + [anon_sym_LT_LT_EQ] = ACTIONS(633), + [anon_sym_PERMUTES] = ACTIONS(633), + [anon_sym_HAS_SIZE] = ACTIONS(633), + [anon_sym_u2282] = ACTIONS(643), + [anon_sym_PSUBSET] = ACTIONS(633), + [anon_sym_u2286] = ACTIONS(633), + [anon_sym_u2265] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(633), + [anon_sym_u2264] = ACTIONS(643), + [anon_sym_LT_EQ] = ACTIONS(633), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_u2286u1d63] = ACTIONS(643), + [anon_sym_RSUBSET] = ACTIONS(633), + [anon_sym_u2260] = ACTIONS(643), + [anon_sym_LT_GT] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(627), + [anon_sym_INSERT] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_o] = ACTIONS(631), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [199] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(625), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(627), + [anon_sym_INSERT] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_o] = ACTIONS(631), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [200] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(631), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [201] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(631), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [202] = { + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACE] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_if] = ACTIONS(472), + [anon_sym_case] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_End] = ACTIONS(472), + [anon_sym_Termination] = ACTIONS(472), + [anon_sym_u2227] = ACTIONS(635), + [anon_sym_SLASH_BSLASH] = ACTIONS(637), + [anon_sym_COLON_COLON] = ACTIONS(625), + [sym__hol_alphanumeric] = ACTIONS(472), + [sym__hol_symbolic] = ACTIONS(472), + [anon_sym_OLEAST] = ACTIONS(472), + [anon_sym_LEAST] = ACTIONS(472), + [anon_sym_some] = ACTIONS(472), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(472), + [anon_sym_u2203_BANG] = ACTIONS(470), + [anon_sym_QMARK_BANG] = ACTIONS(472), + [anon_sym_u2203] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_u2200] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_AT] = ACTIONS(472), + [anon_sym_u03bb] = ACTIONS(470), + [anon_sym_BSLASH] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_u00ac] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(470), + [anon_sym_u21ce] = ACTIONS(653), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(655), + [anon_sym_LT_EQ_GT] = ACTIONS(655), + [anon_sym_u21d4] = ACTIONS(653), + [anon_sym_EQ_EQ_GT] = ACTIONS(645), + [anon_sym_u21d2] = ACTIONS(647), + [anon_sym_BSLASH_SLASH] = ACTIONS(649), + [anon_sym_u2228] = ACTIONS(651), + [anon_sym_u2209] = ACTIONS(639), + [anon_sym_NOTIN] = ACTIONS(641), + [anon_sym_u2208] = ACTIONS(639), + [anon_sym_IN] = ACTIONS(641), + [anon_sym_u227c] = ACTIONS(643), + [anon_sym_LT_LT_EQ] = ACTIONS(633), + [anon_sym_PERMUTES] = ACTIONS(633), + [anon_sym_HAS_SIZE] = ACTIONS(633), + [anon_sym_u2282] = ACTIONS(643), + [anon_sym_PSUBSET] = ACTIONS(633), + [anon_sym_u2286] = ACTIONS(633), + [anon_sym_u2265] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(633), + [anon_sym_u2264] = ACTIONS(643), + [anon_sym_LT_EQ] = ACTIONS(633), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_u2286u1d63] = ACTIONS(643), + [anon_sym_RSUBSET] = ACTIONS(633), + [anon_sym_u2260] = ACTIONS(643), + [anon_sym_LT_GT] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(627), + [anon_sym_INSERT] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_o] = ACTIONS(631), + [sym_hol_true] = ACTIONS(472), + [sym_hol_false] = ACTIONS(472), + [sym_hol_number] = ACTIONS(470), + [sym_hol_string] = ACTIONS(470), + [sym_hol_character] = ACTIONS(470), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [203] = { + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_End] = ACTIONS(524), + [anon_sym_Termination] = ACTIONS(524), + [anon_sym_u2227] = ACTIONS(635), + [anon_sym_SLASH_BSLASH] = ACTIONS(637), + [anon_sym_COLON_COLON] = ACTIONS(625), + [sym__hol_alphanumeric] = ACTIONS(524), + [sym__hol_symbolic] = ACTIONS(524), + [anon_sym_OLEAST] = ACTIONS(524), + [anon_sym_LEAST] = ACTIONS(524), + [anon_sym_some] = ACTIONS(524), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(524), + [anon_sym_u2203_BANG] = ACTIONS(522), + [anon_sym_QMARK_BANG] = ACTIONS(524), + [anon_sym_u2203] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u2200] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_u03bb] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_u00ac] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_u21ce] = ACTIONS(653), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(655), + [anon_sym_LT_EQ_GT] = ACTIONS(655), + [anon_sym_u21d4] = ACTIONS(653), + [anon_sym_EQ_EQ_GT] = ACTIONS(645), + [anon_sym_u21d2] = ACTIONS(647), + [anon_sym_BSLASH_SLASH] = ACTIONS(649), + [anon_sym_u2228] = ACTIONS(651), + [anon_sym_u2209] = ACTIONS(639), + [anon_sym_NOTIN] = ACTIONS(641), + [anon_sym_u2208] = ACTIONS(639), + [anon_sym_IN] = ACTIONS(641), + [anon_sym_u227c] = ACTIONS(643), + [anon_sym_LT_LT_EQ] = ACTIONS(633), + [anon_sym_PERMUTES] = ACTIONS(633), + [anon_sym_HAS_SIZE] = ACTIONS(633), + [anon_sym_u2282] = ACTIONS(643), + [anon_sym_PSUBSET] = ACTIONS(633), + [anon_sym_u2286] = ACTIONS(633), + [anon_sym_u2265] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(633), + [anon_sym_u2264] = ACTIONS(643), + [anon_sym_LT_EQ] = ACTIONS(633), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_u2286u1d63] = ACTIONS(643), + [anon_sym_RSUBSET] = ACTIONS(633), + [anon_sym_u2260] = ACTIONS(643), + [anon_sym_LT_GT] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(627), + [anon_sym_INSERT] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_o] = ACTIONS(631), + [sym_hol_true] = ACTIONS(524), + [sym_hol_false] = ACTIONS(524), + [sym_hol_number] = ACTIONS(522), + [sym_hol_string] = ACTIONS(522), + [sym_hol_character] = ACTIONS(522), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [204] = { + [aux_sym_hol_case_repeat1] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_else] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(407), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [205] = { + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(633), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_End] = ACTIONS(438), + [anon_sym_Termination] = ACTIONS(438), + [anon_sym_u2227] = ACTIONS(635), + [anon_sym_SLASH_BSLASH] = ACTIONS(637), + [anon_sym_COLON_COLON] = ACTIONS(625), + [sym__hol_alphanumeric] = ACTIONS(438), + [sym__hol_symbolic] = ACTIONS(438), + [anon_sym_OLEAST] = ACTIONS(438), + [anon_sym_LEAST] = ACTIONS(438), + [anon_sym_some] = ACTIONS(438), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(438), + [anon_sym_u2203_BANG] = ACTIONS(432), + [anon_sym_QMARK_BANG] = ACTIONS(438), + [anon_sym_u2203] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_u2200] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_u03bb] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_u00ac] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_u21ce] = ACTIONS(653), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(655), + [anon_sym_LT_EQ_GT] = ACTIONS(655), + [anon_sym_u21d4] = ACTIONS(653), + [anon_sym_EQ_EQ_GT] = ACTIONS(645), + [anon_sym_u21d2] = ACTIONS(647), + [anon_sym_BSLASH_SLASH] = ACTIONS(649), + [anon_sym_u2228] = ACTIONS(651), + [anon_sym_u2209] = ACTIONS(639), + [anon_sym_NOTIN] = ACTIONS(641), + [anon_sym_u2208] = ACTIONS(639), + [anon_sym_IN] = ACTIONS(641), + [anon_sym_u227c] = ACTIONS(643), + [anon_sym_LT_LT_EQ] = ACTIONS(633), + [anon_sym_PERMUTES] = ACTIONS(633), + [anon_sym_HAS_SIZE] = ACTIONS(633), + [anon_sym_u2282] = ACTIONS(643), + [anon_sym_PSUBSET] = ACTIONS(633), + [anon_sym_u2286] = ACTIONS(633), + [anon_sym_u2265] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(633), + [anon_sym_u2264] = ACTIONS(643), + [anon_sym_LT_EQ] = ACTIONS(633), + [anon_sym_GT] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(633), + [anon_sym_u2286u1d63] = ACTIONS(643), + [anon_sym_RSUBSET] = ACTIONS(633), + [anon_sym_u2260] = ACTIONS(643), + [anon_sym_LT_GT] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(627), + [anon_sym_INSERT] = ACTIONS(625), + [anon_sym_PLUS] = ACTIONS(629), + [anon_sym_o] = ACTIONS(631), + [sym_hol_true] = ACTIONS(438), + [sym_hol_false] = ACTIONS(438), + [sym_hol_number] = ACTIONS(432), + [sym_hol_string] = ACTIONS(432), + [sym_hol_character] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [206] = { + [aux_sym_hol_case_repeat1] = STATE(144), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_COLON] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_if] = ACTIONS(426), + [anon_sym_else] = ACTIONS(426), + [anon_sym_case] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(426), + [anon_sym_u2227] = ACTIONS(424), + [anon_sym_SLASH_BSLASH] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(426), + [sym__hol_alphanumeric] = ACTIONS(426), + [sym__hol_symbolic] = ACTIONS(426), + [anon_sym_OLEAST] = ACTIONS(426), + [anon_sym_LEAST] = ACTIONS(426), + [anon_sym_some] = ACTIONS(426), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(426), + [anon_sym_u2203_BANG] = ACTIONS(424), + [anon_sym_QMARK_BANG] = ACTIONS(426), + [anon_sym_u2203] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u2200] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_u03bb] = ACTIONS(424), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_u00ac] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_u21ce] = ACTIONS(424), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(426), + [anon_sym_LT_EQ_GT] = ACTIONS(426), + [anon_sym_u21d4] = ACTIONS(424), + [anon_sym_EQ_EQ_GT] = ACTIONS(426), + [anon_sym_u21d2] = ACTIONS(424), + [anon_sym_BSLASH_SLASH] = ACTIONS(426), + [anon_sym_u2228] = ACTIONS(424), + [anon_sym_u2209] = ACTIONS(424), + [anon_sym_NOTIN] = ACTIONS(426), + [anon_sym_u2208] = ACTIONS(424), + [anon_sym_IN] = ACTIONS(426), + [anon_sym_u227c] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_PERMUTES] = ACTIONS(426), + [anon_sym_HAS_SIZE] = ACTIONS(426), + [anon_sym_u2282] = ACTIONS(424), + [anon_sym_PSUBSET] = ACTIONS(426), + [anon_sym_u2286] = ACTIONS(426), + [anon_sym_u2265] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_u2264] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_u2286u1d63] = ACTIONS(424), + [anon_sym_RSUBSET] = ACTIONS(426), + [anon_sym_u2260] = ACTIONS(424), + [anon_sym_LT_GT] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(426), + [anon_sym_INSERT] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_o] = ACTIONS(426), + [sym_hol_true] = ACTIONS(426), + [sym_hol_false] = ACTIONS(426), + [sym_hol_number] = ACTIONS(424), + [sym_hol_string] = ACTIONS(424), + [sym_hol_character] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [207] = { + [aux_sym_hol_case_repeat1] = STATE(146), + [anon_sym_LPAREN] = ACTIONS(424), + [anon_sym_LBRACE] = ACTIONS(424), + [anon_sym_EQ] = ACTIONS(426), + [anon_sym_COLON] = ACTIONS(426), + [anon_sym_LBRACK] = ACTIONS(424), + [anon_sym_if] = ACTIONS(426), + [anon_sym_then] = ACTIONS(426), + [anon_sym_case] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_u2227] = ACTIONS(424), + [anon_sym_SLASH_BSLASH] = ACTIONS(426), + [anon_sym_COLON_COLON] = ACTIONS(426), + [sym__hol_alphanumeric] = ACTIONS(426), + [sym__hol_symbolic] = ACTIONS(426), + [anon_sym_OLEAST] = ACTIONS(426), + [anon_sym_LEAST] = ACTIONS(426), + [anon_sym_some] = ACTIONS(426), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(426), + [anon_sym_u2203_BANG] = ACTIONS(424), + [anon_sym_QMARK_BANG] = ACTIONS(426), + [anon_sym_u2203] = ACTIONS(426), + [anon_sym_QMARK] = ACTIONS(426), + [anon_sym_u2200] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_u03bb] = ACTIONS(424), + [anon_sym_BSLASH] = ACTIONS(426), + [anon_sym_DASH] = ACTIONS(426), + [anon_sym_u00ac] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(424), + [anon_sym_u21ce] = ACTIONS(424), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(426), + [anon_sym_LT_EQ_GT] = ACTIONS(426), + [anon_sym_u21d4] = ACTIONS(424), + [anon_sym_EQ_EQ_GT] = ACTIONS(426), + [anon_sym_u21d2] = ACTIONS(424), + [anon_sym_BSLASH_SLASH] = ACTIONS(426), + [anon_sym_u2228] = ACTIONS(424), + [anon_sym_u2209] = ACTIONS(424), + [anon_sym_NOTIN] = ACTIONS(426), + [anon_sym_u2208] = ACTIONS(424), + [anon_sym_IN] = ACTIONS(426), + [anon_sym_u227c] = ACTIONS(424), + [anon_sym_LT_LT_EQ] = ACTIONS(426), + [anon_sym_PERMUTES] = ACTIONS(426), + [anon_sym_HAS_SIZE] = ACTIONS(426), + [anon_sym_u2282] = ACTIONS(424), + [anon_sym_PSUBSET] = ACTIONS(426), + [anon_sym_u2286] = ACTIONS(426), + [anon_sym_u2265] = ACTIONS(424), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_u2264] = ACTIONS(424), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_GT] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_u2286u1d63] = ACTIONS(424), + [anon_sym_RSUBSET] = ACTIONS(426), + [anon_sym_u2260] = ACTIONS(424), + [anon_sym_LT_GT] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(426), + [anon_sym_INSERT] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(426), + [anon_sym_o] = ACTIONS(426), + [sym_hol_true] = ACTIONS(426), + [sym_hol_false] = ACTIONS(426), + [sym_hol_number] = ACTIONS(424), + [sym_hol_string] = ACTIONS(424), + [sym_hol_character] = ACTIONS(424), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [208] = { + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COLON] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_if] = ACTIONS(401), + [anon_sym_else] = ACTIONS(401), + [anon_sym_case] = ACTIONS(401), + [anon_sym_DASH_GT] = ACTIONS(401), + [anon_sym_u2227] = ACTIONS(399), + [anon_sym_SLASH_BSLASH] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(401), + [sym__hol_alphanumeric] = ACTIONS(401), + [sym__hol_symbolic] = ACTIONS(401), + [anon_sym_OLEAST] = ACTIONS(401), + [anon_sym_LEAST] = ACTIONS(401), + [anon_sym_some] = ACTIONS(401), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(401), + [anon_sym_u2203_BANG] = ACTIONS(399), + [anon_sym_QMARK_BANG] = ACTIONS(401), + [anon_sym_u2203] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u2200] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(401), + [anon_sym_u03bb] = ACTIONS(399), + [anon_sym_BSLASH] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_u00ac] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(399), + [anon_sym_u21ce] = ACTIONS(399), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(401), + [anon_sym_LT_EQ_GT] = ACTIONS(401), + [anon_sym_u21d4] = ACTIONS(399), + [anon_sym_EQ_EQ_GT] = ACTIONS(401), + [anon_sym_u21d2] = ACTIONS(399), + [anon_sym_BSLASH_SLASH] = ACTIONS(401), + [anon_sym_u2228] = ACTIONS(399), + [anon_sym_u2209] = ACTIONS(399), + [anon_sym_NOTIN] = ACTIONS(401), + [anon_sym_u2208] = ACTIONS(399), + [anon_sym_IN] = ACTIONS(401), + [anon_sym_u227c] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_PERMUTES] = ACTIONS(401), + [anon_sym_HAS_SIZE] = ACTIONS(401), + [anon_sym_u2282] = ACTIONS(399), + [anon_sym_PSUBSET] = ACTIONS(401), + [anon_sym_u2286] = ACTIONS(401), + [anon_sym_u2265] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_u2264] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_u2286u1d63] = ACTIONS(399), + [anon_sym_RSUBSET] = ACTIONS(401), + [anon_sym_u2260] = ACTIONS(399), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_INSERT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_o] = ACTIONS(401), + [anon_sym_list] = ACTIONS(401), + [sym_hol_true] = ACTIONS(401), + [sym_hol_false] = ACTIONS(401), + [sym_hol_number] = ACTIONS(399), + [sym_hol_string] = ACTIONS(399), + [sym_hol_character] = ACTIONS(399), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [209] = { + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_End] = ACTIONS(419), + [anon_sym_Termination] = ACTIONS(419), + [anon_sym_u2227] = ACTIONS(417), + [anon_sym_SLASH_BSLASH] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(419), + [sym__hol_alphanumeric] = ACTIONS(419), + [sym__hol_symbolic] = ACTIONS(419), + [anon_sym_OLEAST] = ACTIONS(419), + [anon_sym_LEAST] = ACTIONS(419), + [anon_sym_some] = ACTIONS(419), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(419), + [anon_sym_u2203_BANG] = ACTIONS(417), + [anon_sym_QMARK_BANG] = ACTIONS(419), + [anon_sym_u2203] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u2200] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_u03bb] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_u00ac] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_u21ce] = ACTIONS(417), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(419), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_u21d4] = ACTIONS(417), + [anon_sym_EQ_EQ_GT] = ACTIONS(419), + [anon_sym_u21d2] = ACTIONS(417), + [anon_sym_BSLASH_SLASH] = ACTIONS(419), + [anon_sym_u2228] = ACTIONS(417), + [anon_sym_u2209] = ACTIONS(417), + [anon_sym_NOTIN] = ACTIONS(419), + [anon_sym_u2208] = ACTIONS(417), + [anon_sym_IN] = ACTIONS(419), + [anon_sym_u227c] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_PERMUTES] = ACTIONS(419), + [anon_sym_HAS_SIZE] = ACTIONS(419), + [anon_sym_u2282] = ACTIONS(417), + [anon_sym_PSUBSET] = ACTIONS(419), + [anon_sym_u2286] = ACTIONS(419), + [anon_sym_u2265] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_u2264] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_u2286u1d63] = ACTIONS(417), + [anon_sym_RSUBSET] = ACTIONS(419), + [anon_sym_u2260] = ACTIONS(417), + [anon_sym_LT_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_INSERT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_o] = ACTIONS(419), + [sym_hol_true] = ACTIONS(419), + [sym_hol_false] = ACTIONS(419), + [sym_hol_number] = ACTIONS(417), + [sym_hol_string] = ACTIONS(417), + [sym_hol_character] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [210] = { + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_COLON] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_if] = ACTIONS(385), + [anon_sym_else] = ACTIONS(385), + [anon_sym_case] = ACTIONS(385), + [anon_sym_DASH_GT] = ACTIONS(589), + [anon_sym_u2227] = ACTIONS(383), + [anon_sym_SLASH_BSLASH] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(385), + [sym__hol_alphanumeric] = ACTIONS(385), + [sym__hol_symbolic] = ACTIONS(385), + [anon_sym_OLEAST] = ACTIONS(385), + [anon_sym_LEAST] = ACTIONS(385), + [anon_sym_some] = ACTIONS(385), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(385), + [anon_sym_u2203_BANG] = ACTIONS(383), + [anon_sym_QMARK_BANG] = ACTIONS(385), + [anon_sym_u2203] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u2200] = ACTIONS(383), + [anon_sym_BANG] = ACTIONS(385), + [anon_sym_AT] = ACTIONS(385), + [anon_sym_u03bb] = ACTIONS(383), + [anon_sym_BSLASH] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_u00ac] = ACTIONS(383), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_u21ce] = ACTIONS(383), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(385), + [anon_sym_LT_EQ_GT] = ACTIONS(385), + [anon_sym_u21d4] = ACTIONS(383), + [anon_sym_EQ_EQ_GT] = ACTIONS(385), + [anon_sym_u21d2] = ACTIONS(383), + [anon_sym_BSLASH_SLASH] = ACTIONS(385), + [anon_sym_u2228] = ACTIONS(383), + [anon_sym_u2209] = ACTIONS(383), + [anon_sym_NOTIN] = ACTIONS(385), + [anon_sym_u2208] = ACTIONS(383), + [anon_sym_IN] = ACTIONS(385), + [anon_sym_u227c] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(385), + [anon_sym_PERMUTES] = ACTIONS(385), + [anon_sym_HAS_SIZE] = ACTIONS(385), + [anon_sym_u2282] = ACTIONS(383), + [anon_sym_PSUBSET] = ACTIONS(385), + [anon_sym_u2286] = ACTIONS(385), + [anon_sym_u2265] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_u2264] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_u2286u1d63] = ACTIONS(383), + [anon_sym_RSUBSET] = ACTIONS(385), + [anon_sym_u2260] = ACTIONS(383), + [anon_sym_LT_GT] = ACTIONS(385), + [anon_sym_DOLLAR] = ACTIONS(385), + [anon_sym_INSERT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_o] = ACTIONS(385), + [anon_sym_list] = ACTIONS(657), + [sym_hol_true] = ACTIONS(385), + [sym_hol_false] = ACTIONS(385), + [sym_hol_number] = ACTIONS(383), + [sym_hol_string] = ACTIONS(383), + [sym_hol_character] = ACTIONS(383), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [211] = { + [aux_sym_hol_case_repeat1] = STATE(162), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_then] = ACTIONS(415), + [anon_sym_case] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_u2227] = ACTIONS(413), + [anon_sym_SLASH_BSLASH] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(415), + [sym__hol_alphanumeric] = ACTIONS(415), + [sym__hol_symbolic] = ACTIONS(415), + [anon_sym_OLEAST] = ACTIONS(415), + [anon_sym_LEAST] = ACTIONS(415), + [anon_sym_some] = ACTIONS(415), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(415), + [anon_sym_u2203_BANG] = ACTIONS(413), + [anon_sym_QMARK_BANG] = ACTIONS(415), + [anon_sym_u2203] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u2200] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_u03bb] = ACTIONS(413), + [anon_sym_BSLASH] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_u00ac] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(413), + [anon_sym_u21ce] = ACTIONS(413), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(415), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_u21d4] = ACTIONS(413), + [anon_sym_EQ_EQ_GT] = ACTIONS(415), + [anon_sym_u21d2] = ACTIONS(413), + [anon_sym_BSLASH_SLASH] = ACTIONS(415), + [anon_sym_u2228] = ACTIONS(413), + [anon_sym_u2209] = ACTIONS(413), + [anon_sym_NOTIN] = ACTIONS(415), + [anon_sym_u2208] = ACTIONS(413), + [anon_sym_IN] = ACTIONS(415), + [anon_sym_u227c] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_PERMUTES] = ACTIONS(415), + [anon_sym_HAS_SIZE] = ACTIONS(415), + [anon_sym_u2282] = ACTIONS(413), + [anon_sym_PSUBSET] = ACTIONS(415), + [anon_sym_u2286] = ACTIONS(415), + [anon_sym_u2265] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_u2264] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_u2286u1d63] = ACTIONS(413), + [anon_sym_RSUBSET] = ACTIONS(415), + [anon_sym_u2260] = ACTIONS(413), + [anon_sym_LT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_INSERT] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_o] = ACTIONS(415), + [sym_hol_true] = ACTIONS(415), + [sym_hol_false] = ACTIONS(415), + [sym_hol_number] = ACTIONS(413), + [sym_hol_string] = ACTIONS(413), + [sym_hol_character] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [212] = { + [aux_sym_hol_case_repeat1] = STATE(163), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_then] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [213] = { + [aux_sym_hol_case_repeat1] = STATE(170), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_case] = ACTIONS(415), + [anon_sym_of] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_u2227] = ACTIONS(413), + [anon_sym_SLASH_BSLASH] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(415), + [sym__hol_alphanumeric] = ACTIONS(415), + [sym__hol_symbolic] = ACTIONS(415), + [anon_sym_OLEAST] = ACTIONS(415), + [anon_sym_LEAST] = ACTIONS(415), + [anon_sym_some] = ACTIONS(415), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(415), + [anon_sym_u2203_BANG] = ACTIONS(413), + [anon_sym_QMARK_BANG] = ACTIONS(415), + [anon_sym_u2203] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u2200] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_u03bb] = ACTIONS(413), + [anon_sym_BSLASH] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_u00ac] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(413), + [anon_sym_u21ce] = ACTIONS(413), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(415), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_u21d4] = ACTIONS(413), + [anon_sym_EQ_EQ_GT] = ACTIONS(415), + [anon_sym_u21d2] = ACTIONS(413), + [anon_sym_BSLASH_SLASH] = ACTIONS(415), + [anon_sym_u2228] = ACTIONS(413), + [anon_sym_u2209] = ACTIONS(413), + [anon_sym_NOTIN] = ACTIONS(415), + [anon_sym_u2208] = ACTIONS(413), + [anon_sym_IN] = ACTIONS(415), + [anon_sym_u227c] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_PERMUTES] = ACTIONS(415), + [anon_sym_HAS_SIZE] = ACTIONS(415), + [anon_sym_u2282] = ACTIONS(413), + [anon_sym_PSUBSET] = ACTIONS(415), + [anon_sym_u2286] = ACTIONS(415), + [anon_sym_u2265] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_u2264] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_u2286u1d63] = ACTIONS(413), + [anon_sym_RSUBSET] = ACTIONS(415), + [anon_sym_u2260] = ACTIONS(413), + [anon_sym_LT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_INSERT] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_o] = ACTIONS(415), + [sym_hol_true] = ACTIONS(415), + [sym_hol_false] = ACTIONS(415), + [sym_hol_number] = ACTIONS(413), + [sym_hol_string] = ACTIONS(413), + [sym_hol_character] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [214] = { + [aux_sym_hol_case_repeat1] = STATE(171), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_of] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(591), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [215] = { + [aux_sym_hol_case_repeat1] = STATE(188), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_case] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_Proof] = ACTIONS(415), + [anon_sym_u2227] = ACTIONS(413), + [anon_sym_SLASH_BSLASH] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(415), + [sym__hol_alphanumeric] = ACTIONS(415), + [sym__hol_symbolic] = ACTIONS(415), + [anon_sym_OLEAST] = ACTIONS(415), + [anon_sym_LEAST] = ACTIONS(415), + [anon_sym_some] = ACTIONS(415), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(415), + [anon_sym_u2203_BANG] = ACTIONS(413), + [anon_sym_QMARK_BANG] = ACTIONS(415), + [anon_sym_u2203] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u2200] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_u03bb] = ACTIONS(413), + [anon_sym_BSLASH] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_u00ac] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(413), + [anon_sym_u21ce] = ACTIONS(413), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(415), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_u21d4] = ACTIONS(413), + [anon_sym_EQ_EQ_GT] = ACTIONS(415), + [anon_sym_u21d2] = ACTIONS(413), + [anon_sym_BSLASH_SLASH] = ACTIONS(415), + [anon_sym_u2228] = ACTIONS(413), + [anon_sym_u2209] = ACTIONS(413), + [anon_sym_NOTIN] = ACTIONS(415), + [anon_sym_u2208] = ACTIONS(413), + [anon_sym_IN] = ACTIONS(415), + [anon_sym_u227c] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_PERMUTES] = ACTIONS(415), + [anon_sym_HAS_SIZE] = ACTIONS(415), + [anon_sym_u2282] = ACTIONS(413), + [anon_sym_PSUBSET] = ACTIONS(415), + [anon_sym_u2286] = ACTIONS(415), + [anon_sym_u2265] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_u2264] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_u2286u1d63] = ACTIONS(413), + [anon_sym_RSUBSET] = ACTIONS(415), + [anon_sym_u2260] = ACTIONS(413), + [anon_sym_LT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_INSERT] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_o] = ACTIONS(415), + [sym_hol_true] = ACTIONS(415), + [sym_hol_false] = ACTIONS(415), + [sym_hol_number] = ACTIONS(413), + [sym_hol_string] = ACTIONS(413), + [sym_hol_character] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [216] = { + [aux_sym_hol_case_repeat1] = STATE(190), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_Proof] = ACTIONS(407), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [217] = { + [aux_sym_hol_case_repeat1] = STATE(204), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_else] = ACTIONS(415), + [anon_sym_case] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_u2227] = ACTIONS(413), + [anon_sym_SLASH_BSLASH] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(415), + [sym__hol_alphanumeric] = ACTIONS(415), + [sym__hol_symbolic] = ACTIONS(415), + [anon_sym_OLEAST] = ACTIONS(415), + [anon_sym_LEAST] = ACTIONS(415), + [anon_sym_some] = ACTIONS(415), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(415), + [anon_sym_u2203_BANG] = ACTIONS(413), + [anon_sym_QMARK_BANG] = ACTIONS(415), + [anon_sym_u2203] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u2200] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_u03bb] = ACTIONS(413), + [anon_sym_BSLASH] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_u00ac] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(413), + [anon_sym_u21ce] = ACTIONS(413), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(415), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_u21d4] = ACTIONS(413), + [anon_sym_EQ_EQ_GT] = ACTIONS(415), + [anon_sym_u21d2] = ACTIONS(413), + [anon_sym_BSLASH_SLASH] = ACTIONS(415), + [anon_sym_u2228] = ACTIONS(413), + [anon_sym_u2209] = ACTIONS(413), + [anon_sym_NOTIN] = ACTIONS(415), + [anon_sym_u2208] = ACTIONS(413), + [anon_sym_IN] = ACTIONS(415), + [anon_sym_u227c] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_PERMUTES] = ACTIONS(415), + [anon_sym_HAS_SIZE] = ACTIONS(415), + [anon_sym_u2282] = ACTIONS(413), + [anon_sym_PSUBSET] = ACTIONS(415), + [anon_sym_u2286] = ACTIONS(415), + [anon_sym_u2265] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_u2264] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_u2286u1d63] = ACTIONS(413), + [anon_sym_RSUBSET] = ACTIONS(415), + [anon_sym_u2260] = ACTIONS(413), + [anon_sym_LT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_INSERT] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_o] = ACTIONS(415), + [sym_hol_true] = ACTIONS(415), + [sym_hol_false] = ACTIONS(415), + [sym_hol_number] = ACTIONS(413), + [sym_hol_string] = ACTIONS(413), + [sym_hol_character] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [218] = { + [aux_sym_hol_case_repeat1] = STATE(206), + [anon_sym_LPAREN] = ACTIONS(405), + [anon_sym_LBRACE] = ACTIONS(405), + [anon_sym_EQ] = ACTIONS(407), + [anon_sym_COLON] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(405), + [anon_sym_if] = ACTIONS(407), + [anon_sym_else] = ACTIONS(407), + [anon_sym_case] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_u2227] = ACTIONS(405), + [anon_sym_SLASH_BSLASH] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(407), + [sym__hol_alphanumeric] = ACTIONS(407), + [sym__hol_symbolic] = ACTIONS(407), + [anon_sym_OLEAST] = ACTIONS(407), + [anon_sym_LEAST] = ACTIONS(407), + [anon_sym_some] = ACTIONS(407), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(407), + [anon_sym_u2203_BANG] = ACTIONS(405), + [anon_sym_QMARK_BANG] = ACTIONS(407), + [anon_sym_u2203] = ACTIONS(407), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u2200] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(407), + [anon_sym_AT] = ACTIONS(407), + [anon_sym_u03bb] = ACTIONS(405), + [anon_sym_BSLASH] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(407), + [anon_sym_u00ac] = ACTIONS(405), + [anon_sym_TILDE] = ACTIONS(405), + [anon_sym_u21ce] = ACTIONS(405), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(407), + [anon_sym_LT_EQ_GT] = ACTIONS(407), + [anon_sym_u21d4] = ACTIONS(405), + [anon_sym_EQ_EQ_GT] = ACTIONS(407), + [anon_sym_u21d2] = ACTIONS(405), + [anon_sym_BSLASH_SLASH] = ACTIONS(407), + [anon_sym_u2228] = ACTIONS(405), + [anon_sym_u2209] = ACTIONS(405), + [anon_sym_NOTIN] = ACTIONS(407), + [anon_sym_u2208] = ACTIONS(405), + [anon_sym_IN] = ACTIONS(407), + [anon_sym_u227c] = ACTIONS(405), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_PERMUTES] = ACTIONS(407), + [anon_sym_HAS_SIZE] = ACTIONS(407), + [anon_sym_u2282] = ACTIONS(405), + [anon_sym_PSUBSET] = ACTIONS(407), + [anon_sym_u2286] = ACTIONS(407), + [anon_sym_u2265] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_u2264] = ACTIONS(405), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(407), + [anon_sym_u2286u1d63] = ACTIONS(405), + [anon_sym_RSUBSET] = ACTIONS(407), + [anon_sym_u2260] = ACTIONS(405), + [anon_sym_LT_GT] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(407), + [anon_sym_INSERT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(407), + [anon_sym_o] = ACTIONS(407), + [sym_hol_true] = ACTIONS(407), + [sym_hol_false] = ACTIONS(407), + [sym_hol_number] = ACTIONS(405), + [sym_hol_string] = ACTIONS(405), + [sym_hol_character] = ACTIONS(405), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [219] = { + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_if] = ACTIONS(393), + [anon_sym_else] = ACTIONS(393), + [anon_sym_case] = ACTIONS(393), + [anon_sym_DASH_GT] = ACTIONS(393), + [anon_sym_u2227] = ACTIONS(391), + [anon_sym_SLASH_BSLASH] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(393), + [sym__hol_alphanumeric] = ACTIONS(393), + [sym__hol_symbolic] = ACTIONS(393), + [anon_sym_OLEAST] = ACTIONS(393), + [anon_sym_LEAST] = ACTIONS(393), + [anon_sym_some] = ACTIONS(393), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(393), + [anon_sym_u2203_BANG] = ACTIONS(391), + [anon_sym_QMARK_BANG] = ACTIONS(393), + [anon_sym_u2203] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(393), + [anon_sym_u2200] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(393), + [anon_sym_u03bb] = ACTIONS(391), + [anon_sym_BSLASH] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_u00ac] = ACTIONS(391), + [anon_sym_TILDE] = ACTIONS(391), + [anon_sym_u21ce] = ACTIONS(391), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(393), + [anon_sym_LT_EQ_GT] = ACTIONS(393), + [anon_sym_u21d4] = ACTIONS(391), + [anon_sym_EQ_EQ_GT] = ACTIONS(393), + [anon_sym_u21d2] = ACTIONS(391), + [anon_sym_BSLASH_SLASH] = ACTIONS(393), + [anon_sym_u2228] = ACTIONS(391), + [anon_sym_u2209] = ACTIONS(391), + [anon_sym_NOTIN] = ACTIONS(393), + [anon_sym_u2208] = ACTIONS(391), + [anon_sym_IN] = ACTIONS(393), + [anon_sym_u227c] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(393), + [anon_sym_PERMUTES] = ACTIONS(393), + [anon_sym_HAS_SIZE] = ACTIONS(393), + [anon_sym_u2282] = ACTIONS(391), + [anon_sym_PSUBSET] = ACTIONS(393), + [anon_sym_u2286] = ACTIONS(393), + [anon_sym_u2265] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(393), + [anon_sym_u2264] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_u2286u1d63] = ACTIONS(391), + [anon_sym_RSUBSET] = ACTIONS(393), + [anon_sym_u2260] = ACTIONS(391), + [anon_sym_LT_GT] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(393), + [anon_sym_INSERT] = ACTIONS(393), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_o] = ACTIONS(393), + [anon_sym_list] = ACTIONS(393), + [sym_hol_true] = ACTIONS(393), + [sym_hol_false] = ACTIONS(393), + [sym_hol_number] = ACTIONS(391), + [sym_hol_string] = ACTIONS(391), + [sym_hol_character] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [220] = { + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_if] = ACTIONS(397), + [anon_sym_case] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(610), + [anon_sym_Proof] = ACTIONS(397), + [anon_sym_u2227] = ACTIONS(395), + [anon_sym_SLASH_BSLASH] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(397), + [sym__hol_alphanumeric] = ACTIONS(397), + [sym__hol_symbolic] = ACTIONS(397), + [anon_sym_OLEAST] = ACTIONS(397), + [anon_sym_LEAST] = ACTIONS(397), + [anon_sym_some] = ACTIONS(397), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(397), + [anon_sym_u2203_BANG] = ACTIONS(395), + [anon_sym_QMARK_BANG] = ACTIONS(397), + [anon_sym_u2203] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u2200] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_AT] = ACTIONS(397), + [anon_sym_u03bb] = ACTIONS(395), + [anon_sym_BSLASH] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_u00ac] = ACTIONS(395), + [anon_sym_TILDE] = ACTIONS(395), + [anon_sym_u21ce] = ACTIONS(395), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(397), + [anon_sym_LT_EQ_GT] = ACTIONS(397), + [anon_sym_u21d4] = ACTIONS(395), + [anon_sym_EQ_EQ_GT] = ACTIONS(397), + [anon_sym_u21d2] = ACTIONS(395), + [anon_sym_BSLASH_SLASH] = ACTIONS(397), + [anon_sym_u2228] = ACTIONS(395), + [anon_sym_u2209] = ACTIONS(395), + [anon_sym_NOTIN] = ACTIONS(397), + [anon_sym_u2208] = ACTIONS(395), + [anon_sym_IN] = ACTIONS(397), + [anon_sym_u227c] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_PERMUTES] = ACTIONS(397), + [anon_sym_HAS_SIZE] = ACTIONS(397), + [anon_sym_u2282] = ACTIONS(395), + [anon_sym_PSUBSET] = ACTIONS(397), + [anon_sym_u2286] = ACTIONS(397), + [anon_sym_u2265] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_u2264] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_u2286u1d63] = ACTIONS(395), + [anon_sym_RSUBSET] = ACTIONS(397), + [anon_sym_u2260] = ACTIONS(395), + [anon_sym_LT_GT] = ACTIONS(397), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_INSERT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_o] = ACTIONS(397), + [anon_sym_list] = ACTIONS(397), + [sym_hol_true] = ACTIONS(397), + [sym_hol_false] = ACTIONS(397), + [sym_hol_number] = ACTIONS(395), + [sym_hol_string] = ACTIONS(395), + [sym_hol_character] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [221] = { + [aux_sym_hol_case_repeat1] = STATE(184), + [anon_sym_LPAREN] = ACTIONS(413), + [anon_sym_LBRACE] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(415), + [anon_sym_COLON] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_then] = ACTIONS(415), + [anon_sym_case] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(608), + [anon_sym_u2227] = ACTIONS(413), + [anon_sym_SLASH_BSLASH] = ACTIONS(415), + [anon_sym_COLON_COLON] = ACTIONS(415), + [sym__hol_alphanumeric] = ACTIONS(415), + [sym__hol_symbolic] = ACTIONS(415), + [anon_sym_OLEAST] = ACTIONS(415), + [anon_sym_LEAST] = ACTIONS(415), + [anon_sym_some] = ACTIONS(415), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(415), + [anon_sym_u2203_BANG] = ACTIONS(413), + [anon_sym_QMARK_BANG] = ACTIONS(415), + [anon_sym_u2203] = ACTIONS(415), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u2200] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(415), + [anon_sym_u03bb] = ACTIONS(413), + [anon_sym_BSLASH] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(415), + [anon_sym_u00ac] = ACTIONS(413), + [anon_sym_TILDE] = ACTIONS(413), + [anon_sym_u21ce] = ACTIONS(413), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(415), + [anon_sym_LT_EQ_GT] = ACTIONS(415), + [anon_sym_u21d4] = ACTIONS(413), + [anon_sym_EQ_EQ_GT] = ACTIONS(415), + [anon_sym_u21d2] = ACTIONS(413), + [anon_sym_BSLASH_SLASH] = ACTIONS(415), + [anon_sym_u2228] = ACTIONS(413), + [anon_sym_u2209] = ACTIONS(413), + [anon_sym_NOTIN] = ACTIONS(415), + [anon_sym_u2208] = ACTIONS(413), + [anon_sym_IN] = ACTIONS(415), + [anon_sym_u227c] = ACTIONS(413), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_PERMUTES] = ACTIONS(415), + [anon_sym_HAS_SIZE] = ACTIONS(415), + [anon_sym_u2282] = ACTIONS(413), + [anon_sym_PSUBSET] = ACTIONS(415), + [anon_sym_u2286] = ACTIONS(415), + [anon_sym_u2265] = ACTIONS(413), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_u2264] = ACTIONS(413), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT] = ACTIONS(415), + [anon_sym_LT] = ACTIONS(415), + [anon_sym_u2286u1d63] = ACTIONS(413), + [anon_sym_RSUBSET] = ACTIONS(415), + [anon_sym_u2260] = ACTIONS(413), + [anon_sym_LT_GT] = ACTIONS(415), + [anon_sym_DOLLAR] = ACTIONS(415), + [anon_sym_INSERT] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(415), + [anon_sym_o] = ACTIONS(415), + [sym_hol_true] = ACTIONS(415), + [sym_hol_false] = ACTIONS(415), + [sym_hol_number] = ACTIONS(413), + [sym_hol_string] = ACTIONS(413), + [sym_hol_character] = ACTIONS(413), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [222] = { + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_COLON] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(504), + [anon_sym_End] = ACTIONS(504), + [anon_sym_Termination] = ACTIONS(504), + [anon_sym_u2227] = ACTIONS(502), + [anon_sym_SLASH_BSLASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(504), + [sym__hol_alphanumeric] = ACTIONS(504), + [sym__hol_symbolic] = ACTIONS(504), + [anon_sym_OLEAST] = ACTIONS(504), + [anon_sym_LEAST] = ACTIONS(504), + [anon_sym_some] = ACTIONS(504), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(504), + [anon_sym_u2203_BANG] = ACTIONS(502), + [anon_sym_QMARK_BANG] = ACTIONS(504), + [anon_sym_u2203] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u2200] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_u03bb] = ACTIONS(502), + [anon_sym_BSLASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_u00ac] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_u21ce] = ACTIONS(502), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(504), + [anon_sym_LT_EQ_GT] = ACTIONS(504), + [anon_sym_u21d4] = ACTIONS(502), + [anon_sym_EQ_EQ_GT] = ACTIONS(504), + [anon_sym_u21d2] = ACTIONS(502), + [anon_sym_BSLASH_SLASH] = ACTIONS(504), + [anon_sym_u2228] = ACTIONS(502), + [anon_sym_u2209] = ACTIONS(502), + [anon_sym_NOTIN] = ACTIONS(504), + [anon_sym_u2208] = ACTIONS(502), + [anon_sym_IN] = ACTIONS(504), + [anon_sym_u227c] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_PERMUTES] = ACTIONS(504), + [anon_sym_HAS_SIZE] = ACTIONS(504), + [anon_sym_u2282] = ACTIONS(502), + [anon_sym_PSUBSET] = ACTIONS(504), + [anon_sym_u2286] = ACTIONS(504), + [anon_sym_u2265] = ACTIONS(502), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_u2264] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_u2286u1d63] = ACTIONS(502), + [anon_sym_RSUBSET] = ACTIONS(504), + [anon_sym_u2260] = ACTIONS(502), + [anon_sym_LT_GT] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(504), + [anon_sym_INSERT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_o] = ACTIONS(504), + [sym_hol_true] = ACTIONS(504), + [sym_hol_false] = ACTIONS(504), + [sym_hol_number] = ACTIONS(502), + [sym_hol_string] = ACTIONS(502), + [sym_hol_character] = ACTIONS(502), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [223] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(661), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_INSERT] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_o] = ACTIONS(667), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [224] = { + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_End] = ACTIONS(508), + [anon_sym_Termination] = ACTIONS(508), + [anon_sym_u2227] = ACTIONS(506), + [anon_sym_SLASH_BSLASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(508), + [sym__hol_alphanumeric] = ACTIONS(508), + [sym__hol_symbolic] = ACTIONS(508), + [anon_sym_OLEAST] = ACTIONS(508), + [anon_sym_LEAST] = ACTIONS(508), + [anon_sym_some] = ACTIONS(508), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(508), + [anon_sym_u2203_BANG] = ACTIONS(506), + [anon_sym_QMARK_BANG] = ACTIONS(508), + [anon_sym_u2203] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u2200] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_u03bb] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_u00ac] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_u21ce] = ACTIONS(506), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(508), + [anon_sym_LT_EQ_GT] = ACTIONS(508), + [anon_sym_u21d4] = ACTIONS(506), + [anon_sym_EQ_EQ_GT] = ACTIONS(508), + [anon_sym_u21d2] = ACTIONS(506), + [anon_sym_BSLASH_SLASH] = ACTIONS(508), + [anon_sym_u2228] = ACTIONS(506), + [anon_sym_u2209] = ACTIONS(506), + [anon_sym_NOTIN] = ACTIONS(508), + [anon_sym_u2208] = ACTIONS(506), + [anon_sym_IN] = ACTIONS(508), + [anon_sym_u227c] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_PERMUTES] = ACTIONS(508), + [anon_sym_HAS_SIZE] = ACTIONS(508), + [anon_sym_u2282] = ACTIONS(506), + [anon_sym_PSUBSET] = ACTIONS(508), + [anon_sym_u2286] = ACTIONS(508), + [anon_sym_u2265] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_u2264] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_u2286u1d63] = ACTIONS(506), + [anon_sym_RSUBSET] = ACTIONS(508), + [anon_sym_u2260] = ACTIONS(506), + [anon_sym_LT_GT] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(508), + [anon_sym_INSERT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_o] = ACTIONS(508), + [sym_hol_true] = ACTIONS(508), + [sym_hol_false] = ACTIONS(508), + [sym_hol_number] = ACTIONS(506), + [sym_hol_string] = ACTIONS(506), + [sym_hol_character] = ACTIONS(506), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [225] = { + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_End] = ACTIONS(512), + [anon_sym_Termination] = ACTIONS(512), + [anon_sym_u2227] = ACTIONS(510), + [anon_sym_SLASH_BSLASH] = ACTIONS(512), + [anon_sym_COLON_COLON] = ACTIONS(512), + [sym__hol_alphanumeric] = ACTIONS(512), + [sym__hol_symbolic] = ACTIONS(512), + [anon_sym_OLEAST] = ACTIONS(512), + [anon_sym_LEAST] = ACTIONS(512), + [anon_sym_some] = ACTIONS(512), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(512), + [anon_sym_u2203_BANG] = ACTIONS(510), + [anon_sym_QMARK_BANG] = ACTIONS(512), + [anon_sym_u2203] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u2200] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_u03bb] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_u00ac] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_u21ce] = ACTIONS(510), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(512), + [anon_sym_LT_EQ_GT] = ACTIONS(512), + [anon_sym_u21d4] = ACTIONS(510), + [anon_sym_EQ_EQ_GT] = ACTIONS(512), + [anon_sym_u21d2] = ACTIONS(510), + [anon_sym_BSLASH_SLASH] = ACTIONS(512), + [anon_sym_u2228] = ACTIONS(510), + [anon_sym_u2209] = ACTIONS(510), + [anon_sym_NOTIN] = ACTIONS(512), + [anon_sym_u2208] = ACTIONS(510), + [anon_sym_IN] = ACTIONS(512), + [anon_sym_u227c] = ACTIONS(510), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_PERMUTES] = ACTIONS(512), + [anon_sym_HAS_SIZE] = ACTIONS(512), + [anon_sym_u2282] = ACTIONS(510), + [anon_sym_PSUBSET] = ACTIONS(512), + [anon_sym_u2286] = ACTIONS(512), + [anon_sym_u2265] = ACTIONS(510), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_u2264] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_u2286u1d63] = ACTIONS(510), + [anon_sym_RSUBSET] = ACTIONS(512), + [anon_sym_u2260] = ACTIONS(510), + [anon_sym_LT_GT] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_INSERT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_o] = ACTIONS(512), + [sym_hol_true] = ACTIONS(512), + [sym_hol_false] = ACTIONS(512), + [sym_hol_number] = ACTIONS(510), + [sym_hol_string] = ACTIONS(510), + [sym_hol_character] = ACTIONS(510), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [226] = { + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_End] = ACTIONS(516), + [anon_sym_Termination] = ACTIONS(516), + [anon_sym_u2227] = ACTIONS(514), + [anon_sym_SLASH_BSLASH] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(516), + [sym__hol_alphanumeric] = ACTIONS(516), + [sym__hol_symbolic] = ACTIONS(516), + [anon_sym_OLEAST] = ACTIONS(516), + [anon_sym_LEAST] = ACTIONS(516), + [anon_sym_some] = ACTIONS(516), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(516), + [anon_sym_u2203_BANG] = ACTIONS(514), + [anon_sym_QMARK_BANG] = ACTIONS(516), + [anon_sym_u2203] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_u2200] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_u03bb] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_u00ac] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_u21ce] = ACTIONS(514), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(516), + [anon_sym_LT_EQ_GT] = ACTIONS(516), + [anon_sym_u21d4] = ACTIONS(514), + [anon_sym_EQ_EQ_GT] = ACTIONS(516), + [anon_sym_u21d2] = ACTIONS(514), + [anon_sym_BSLASH_SLASH] = ACTIONS(516), + [anon_sym_u2228] = ACTIONS(514), + [anon_sym_u2209] = ACTIONS(514), + [anon_sym_NOTIN] = ACTIONS(516), + [anon_sym_u2208] = ACTIONS(514), + [anon_sym_IN] = ACTIONS(516), + [anon_sym_u227c] = ACTIONS(514), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_PERMUTES] = ACTIONS(516), + [anon_sym_HAS_SIZE] = ACTIONS(516), + [anon_sym_u2282] = ACTIONS(514), + [anon_sym_PSUBSET] = ACTIONS(516), + [anon_sym_u2286] = ACTIONS(516), + [anon_sym_u2265] = ACTIONS(514), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_u2264] = ACTIONS(514), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_u2286u1d63] = ACTIONS(514), + [anon_sym_RSUBSET] = ACTIONS(516), + [anon_sym_u2260] = ACTIONS(514), + [anon_sym_LT_GT] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_INSERT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_o] = ACTIONS(516), + [sym_hol_true] = ACTIONS(516), + [sym_hol_false] = ACTIONS(516), + [sym_hol_number] = ACTIONS(514), + [sym_hol_string] = ACTIONS(514), + [sym_hol_character] = ACTIONS(514), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [227] = { + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_then] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_u2227] = ACTIONS(474), + [anon_sym_SLASH_BSLASH] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(476), + [sym__hol_alphanumeric] = ACTIONS(476), + [sym__hol_symbolic] = ACTIONS(476), + [anon_sym_OLEAST] = ACTIONS(476), + [anon_sym_LEAST] = ACTIONS(476), + [anon_sym_some] = ACTIONS(476), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(476), + [anon_sym_u2203_BANG] = ACTIONS(474), + [anon_sym_QMARK_BANG] = ACTIONS(476), + [anon_sym_u2203] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u2200] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_u03bb] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_u00ac] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_u21ce] = ACTIONS(474), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(476), + [anon_sym_LT_EQ_GT] = ACTIONS(476), + [anon_sym_u21d4] = ACTIONS(474), + [anon_sym_EQ_EQ_GT] = ACTIONS(476), + [anon_sym_u21d2] = ACTIONS(474), + [anon_sym_BSLASH_SLASH] = ACTIONS(476), + [anon_sym_u2228] = ACTIONS(474), + [anon_sym_u2209] = ACTIONS(474), + [anon_sym_NOTIN] = ACTIONS(476), + [anon_sym_u2208] = ACTIONS(474), + [anon_sym_IN] = ACTIONS(476), + [anon_sym_u227c] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_PERMUTES] = ACTIONS(476), + [anon_sym_HAS_SIZE] = ACTIONS(476), + [anon_sym_u2282] = ACTIONS(474), + [anon_sym_PSUBSET] = ACTIONS(476), + [anon_sym_u2286] = ACTIONS(476), + [anon_sym_u2265] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_u2264] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_u2286u1d63] = ACTIONS(474), + [anon_sym_RSUBSET] = ACTIONS(476), + [anon_sym_u2260] = ACTIONS(474), + [anon_sym_LT_GT] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_INSERT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_o] = ACTIONS(476), + [sym_hol_true] = ACTIONS(476), + [sym_hol_false] = ACTIONS(476), + [sym_hol_number] = ACTIONS(474), + [sym_hol_string] = ACTIONS(474), + [sym_hol_character] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [228] = { + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_of] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [229] = { + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACE] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_if] = ACTIONS(472), + [anon_sym_case] = ACTIONS(472), + [anon_sym_of] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_u2227] = ACTIONS(673), + [anon_sym_SLASH_BSLASH] = ACTIONS(675), + [anon_sym_COLON_COLON] = ACTIONS(677), + [sym__hol_alphanumeric] = ACTIONS(472), + [sym__hol_symbolic] = ACTIONS(472), + [anon_sym_OLEAST] = ACTIONS(472), + [anon_sym_LEAST] = ACTIONS(472), + [anon_sym_some] = ACTIONS(472), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(472), + [anon_sym_u2203_BANG] = ACTIONS(470), + [anon_sym_QMARK_BANG] = ACTIONS(472), + [anon_sym_u2203] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_u2200] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_AT] = ACTIONS(472), + [anon_sym_u03bb] = ACTIONS(470), + [anon_sym_BSLASH] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_u00ac] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(470), + [anon_sym_u21ce] = ACTIONS(679), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(681), + [anon_sym_LT_EQ_GT] = ACTIONS(681), + [anon_sym_u21d4] = ACTIONS(679), + [anon_sym_EQ_EQ_GT] = ACTIONS(683), + [anon_sym_u21d2] = ACTIONS(685), + [anon_sym_BSLASH_SLASH] = ACTIONS(687), + [anon_sym_u2228] = ACTIONS(689), + [anon_sym_u2209] = ACTIONS(691), + [anon_sym_NOTIN] = ACTIONS(693), + [anon_sym_u2208] = ACTIONS(691), + [anon_sym_IN] = ACTIONS(693), + [anon_sym_u227c] = ACTIONS(695), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_PERMUTES] = ACTIONS(669), + [anon_sym_HAS_SIZE] = ACTIONS(669), + [anon_sym_u2282] = ACTIONS(695), + [anon_sym_PSUBSET] = ACTIONS(669), + [anon_sym_u2286] = ACTIONS(669), + [anon_sym_u2265] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(669), + [anon_sym_u2264] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_u2286u1d63] = ACTIONS(695), + [anon_sym_RSUBSET] = ACTIONS(669), + [anon_sym_u2260] = ACTIONS(695), + [anon_sym_LT_GT] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_INSERT] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_o] = ACTIONS(701), + [sym_hol_true] = ACTIONS(472), + [sym_hol_false] = ACTIONS(472), + [sym_hol_number] = ACTIONS(470), + [sym_hol_string] = ACTIONS(470), + [sym_hol_character] = ACTIONS(470), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [230] = { + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_of] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_u2227] = ACTIONS(417), + [anon_sym_SLASH_BSLASH] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(419), + [sym__hol_alphanumeric] = ACTIONS(419), + [sym__hol_symbolic] = ACTIONS(419), + [anon_sym_OLEAST] = ACTIONS(419), + [anon_sym_LEAST] = ACTIONS(419), + [anon_sym_some] = ACTIONS(419), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(419), + [anon_sym_u2203_BANG] = ACTIONS(417), + [anon_sym_QMARK_BANG] = ACTIONS(419), + [anon_sym_u2203] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u2200] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_u03bb] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_u00ac] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_u21ce] = ACTIONS(417), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(419), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_u21d4] = ACTIONS(417), + [anon_sym_EQ_EQ_GT] = ACTIONS(419), + [anon_sym_u21d2] = ACTIONS(417), + [anon_sym_BSLASH_SLASH] = ACTIONS(419), + [anon_sym_u2228] = ACTIONS(417), + [anon_sym_u2209] = ACTIONS(417), + [anon_sym_NOTIN] = ACTIONS(419), + [anon_sym_u2208] = ACTIONS(417), + [anon_sym_IN] = ACTIONS(419), + [anon_sym_u227c] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_PERMUTES] = ACTIONS(419), + [anon_sym_HAS_SIZE] = ACTIONS(419), + [anon_sym_u2282] = ACTIONS(417), + [anon_sym_PSUBSET] = ACTIONS(419), + [anon_sym_u2286] = ACTIONS(419), + [anon_sym_u2265] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_u2264] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_u2286u1d63] = ACTIONS(417), + [anon_sym_RSUBSET] = ACTIONS(419), + [anon_sym_u2260] = ACTIONS(417), + [anon_sym_LT_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_INSERT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_o] = ACTIONS(419), + [sym_hol_true] = ACTIONS(419), + [sym_hol_false] = ACTIONS(419), + [sym_hol_number] = ACTIONS(417), + [sym_hol_string] = ACTIONS(417), + [sym_hol_character] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [231] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(705), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_INSERT] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_o] = ACTIONS(711), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [232] = { + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_COLON] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_End] = ACTIONS(504), + [anon_sym_Termination] = ACTIONS(504), + [anon_sym_u2227] = ACTIONS(502), + [anon_sym_SLASH_BSLASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(504), + [sym__hol_alphanumeric] = ACTIONS(504), + [sym__hol_symbolic] = ACTIONS(504), + [anon_sym_OLEAST] = ACTIONS(504), + [anon_sym_LEAST] = ACTIONS(504), + [anon_sym_some] = ACTIONS(504), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(504), + [anon_sym_u2203_BANG] = ACTIONS(502), + [anon_sym_QMARK_BANG] = ACTIONS(504), + [anon_sym_u2203] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u2200] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_u03bb] = ACTIONS(502), + [anon_sym_BSLASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_u00ac] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_u21ce] = ACTIONS(502), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(504), + [anon_sym_LT_EQ_GT] = ACTIONS(504), + [anon_sym_u21d4] = ACTIONS(502), + [anon_sym_EQ_EQ_GT] = ACTIONS(504), + [anon_sym_u21d2] = ACTIONS(502), + [anon_sym_BSLASH_SLASH] = ACTIONS(504), + [anon_sym_u2228] = ACTIONS(502), + [anon_sym_u2209] = ACTIONS(502), + [anon_sym_NOTIN] = ACTIONS(504), + [anon_sym_u2208] = ACTIONS(502), + [anon_sym_IN] = ACTIONS(504), + [anon_sym_u227c] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_PERMUTES] = ACTIONS(504), + [anon_sym_HAS_SIZE] = ACTIONS(504), + [anon_sym_u2282] = ACTIONS(502), + [anon_sym_PSUBSET] = ACTIONS(504), + [anon_sym_u2286] = ACTIONS(504), + [anon_sym_u2265] = ACTIONS(502), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_u2264] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_u2286u1d63] = ACTIONS(502), + [anon_sym_RSUBSET] = ACTIONS(504), + [anon_sym_u2260] = ACTIONS(502), + [anon_sym_LT_GT] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(504), + [anon_sym_INSERT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_o] = ACTIONS(504), + [sym_hol_true] = ACTIONS(504), + [sym_hol_false] = ACTIONS(504), + [sym_hol_number] = ACTIONS(502), + [sym_hol_string] = ACTIONS(502), + [sym_hol_character] = ACTIONS(502), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [233] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(715), + [anon_sym_SLASH_BSLASH] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(705), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(719), + [anon_sym_NOTIN] = ACTIONS(721), + [anon_sym_u2208] = ACTIONS(719), + [anon_sym_IN] = ACTIONS(721), + [anon_sym_u227c] = ACTIONS(723), + [anon_sym_LT_LT_EQ] = ACTIONS(713), + [anon_sym_PERMUTES] = ACTIONS(713), + [anon_sym_HAS_SIZE] = ACTIONS(713), + [anon_sym_u2282] = ACTIONS(723), + [anon_sym_PSUBSET] = ACTIONS(713), + [anon_sym_u2286] = ACTIONS(713), + [anon_sym_u2265] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_u2264] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_u2286u1d63] = ACTIONS(723), + [anon_sym_RSUBSET] = ACTIONS(713), + [anon_sym_u2260] = ACTIONS(723), + [anon_sym_LT_GT] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_INSERT] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_o] = ACTIONS(711), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [234] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(705), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_o] = ACTIONS(711), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [235] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(715), + [anon_sym_SLASH_BSLASH] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(705), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(725), + [anon_sym_u21d2] = ACTIONS(727), + [anon_sym_BSLASH_SLASH] = ACTIONS(729), + [anon_sym_u2228] = ACTIONS(731), + [anon_sym_u2209] = ACTIONS(719), + [anon_sym_NOTIN] = ACTIONS(721), + [anon_sym_u2208] = ACTIONS(719), + [anon_sym_IN] = ACTIONS(721), + [anon_sym_u227c] = ACTIONS(723), + [anon_sym_LT_LT_EQ] = ACTIONS(713), + [anon_sym_PERMUTES] = ACTIONS(713), + [anon_sym_HAS_SIZE] = ACTIONS(713), + [anon_sym_u2282] = ACTIONS(723), + [anon_sym_PSUBSET] = ACTIONS(713), + [anon_sym_u2286] = ACTIONS(713), + [anon_sym_u2265] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_u2264] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_u2286u1d63] = ACTIONS(723), + [anon_sym_RSUBSET] = ACTIONS(713), + [anon_sym_u2260] = ACTIONS(723), + [anon_sym_LT_GT] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_INSERT] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_o] = ACTIONS(711), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [236] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(715), + [anon_sym_SLASH_BSLASH] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(705), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(729), + [anon_sym_u2228] = ACTIONS(731), + [anon_sym_u2209] = ACTIONS(719), + [anon_sym_NOTIN] = ACTIONS(721), + [anon_sym_u2208] = ACTIONS(719), + [anon_sym_IN] = ACTIONS(721), + [anon_sym_u227c] = ACTIONS(723), + [anon_sym_LT_LT_EQ] = ACTIONS(713), + [anon_sym_PERMUTES] = ACTIONS(713), + [anon_sym_HAS_SIZE] = ACTIONS(713), + [anon_sym_u2282] = ACTIONS(723), + [anon_sym_PSUBSET] = ACTIONS(713), + [anon_sym_u2286] = ACTIONS(713), + [anon_sym_u2265] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_u2264] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_u2286u1d63] = ACTIONS(723), + [anon_sym_RSUBSET] = ACTIONS(713), + [anon_sym_u2260] = ACTIONS(723), + [anon_sym_LT_GT] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_INSERT] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_o] = ACTIONS(711), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [237] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(715), + [anon_sym_SLASH_BSLASH] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(705), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(729), + [anon_sym_u2228] = ACTIONS(731), + [anon_sym_u2209] = ACTIONS(719), + [anon_sym_NOTIN] = ACTIONS(721), + [anon_sym_u2208] = ACTIONS(719), + [anon_sym_IN] = ACTIONS(721), + [anon_sym_u227c] = ACTIONS(723), + [anon_sym_LT_LT_EQ] = ACTIONS(713), + [anon_sym_PERMUTES] = ACTIONS(713), + [anon_sym_HAS_SIZE] = ACTIONS(713), + [anon_sym_u2282] = ACTIONS(723), + [anon_sym_PSUBSET] = ACTIONS(713), + [anon_sym_u2286] = ACTIONS(713), + [anon_sym_u2265] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_u2264] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_u2286u1d63] = ACTIONS(723), + [anon_sym_RSUBSET] = ACTIONS(713), + [anon_sym_u2260] = ACTIONS(723), + [anon_sym_LT_GT] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_INSERT] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_o] = ACTIONS(711), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [238] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(705), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(723), + [anon_sym_LT_LT_EQ] = ACTIONS(713), + [anon_sym_PERMUTES] = ACTIONS(713), + [anon_sym_HAS_SIZE] = ACTIONS(713), + [anon_sym_u2282] = ACTIONS(723), + [anon_sym_PSUBSET] = ACTIONS(713), + [anon_sym_u2286] = ACTIONS(713), + [anon_sym_u2265] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_u2264] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_u2286u1d63] = ACTIONS(723), + [anon_sym_RSUBSET] = ACTIONS(713), + [anon_sym_u2260] = ACTIONS(723), + [anon_sym_LT_GT] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_INSERT] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_o] = ACTIONS(711), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [239] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(705), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_INSERT] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_o] = ACTIONS(711), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [240] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(711), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [241] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_End] = ACTIONS(520), + [anon_sym_Termination] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(711), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [242] = { + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_End] = ACTIONS(524), + [anon_sym_Termination] = ACTIONS(524), + [anon_sym_u2227] = ACTIONS(715), + [anon_sym_SLASH_BSLASH] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(705), + [sym__hol_alphanumeric] = ACTIONS(524), + [sym__hol_symbolic] = ACTIONS(524), + [anon_sym_OLEAST] = ACTIONS(524), + [anon_sym_LEAST] = ACTIONS(524), + [anon_sym_some] = ACTIONS(524), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(524), + [anon_sym_u2203_BANG] = ACTIONS(522), + [anon_sym_QMARK_BANG] = ACTIONS(524), + [anon_sym_u2203] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u2200] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_u03bb] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_u00ac] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_u21ce] = ACTIONS(733), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(735), + [anon_sym_LT_EQ_GT] = ACTIONS(735), + [anon_sym_u21d4] = ACTIONS(733), + [anon_sym_EQ_EQ_GT] = ACTIONS(725), + [anon_sym_u21d2] = ACTIONS(727), + [anon_sym_BSLASH_SLASH] = ACTIONS(729), + [anon_sym_u2228] = ACTIONS(731), + [anon_sym_u2209] = ACTIONS(719), + [anon_sym_NOTIN] = ACTIONS(721), + [anon_sym_u2208] = ACTIONS(719), + [anon_sym_IN] = ACTIONS(721), + [anon_sym_u227c] = ACTIONS(723), + [anon_sym_LT_LT_EQ] = ACTIONS(713), + [anon_sym_PERMUTES] = ACTIONS(713), + [anon_sym_HAS_SIZE] = ACTIONS(713), + [anon_sym_u2282] = ACTIONS(723), + [anon_sym_PSUBSET] = ACTIONS(713), + [anon_sym_u2286] = ACTIONS(713), + [anon_sym_u2265] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_u2264] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_u2286u1d63] = ACTIONS(723), + [anon_sym_RSUBSET] = ACTIONS(713), + [anon_sym_u2260] = ACTIONS(723), + [anon_sym_LT_GT] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_INSERT] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_o] = ACTIONS(711), + [sym_hol_true] = ACTIONS(524), + [sym_hol_false] = ACTIONS(524), + [sym_hol_number] = ACTIONS(522), + [sym_hol_string] = ACTIONS(522), + [sym_hol_character] = ACTIONS(522), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [243] = { + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(713), + [anon_sym_COLON] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(438), + [anon_sym_End] = ACTIONS(438), + [anon_sym_Termination] = ACTIONS(438), + [anon_sym_u2227] = ACTIONS(715), + [anon_sym_SLASH_BSLASH] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(705), + [sym__hol_alphanumeric] = ACTIONS(438), + [sym__hol_symbolic] = ACTIONS(438), + [anon_sym_OLEAST] = ACTIONS(438), + [anon_sym_LEAST] = ACTIONS(438), + [anon_sym_some] = ACTIONS(438), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(438), + [anon_sym_u2203_BANG] = ACTIONS(432), + [anon_sym_QMARK_BANG] = ACTIONS(438), + [anon_sym_u2203] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_u2200] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_u03bb] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_u00ac] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_u21ce] = ACTIONS(733), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(735), + [anon_sym_LT_EQ_GT] = ACTIONS(735), + [anon_sym_u21d4] = ACTIONS(733), + [anon_sym_EQ_EQ_GT] = ACTIONS(725), + [anon_sym_u21d2] = ACTIONS(727), + [anon_sym_BSLASH_SLASH] = ACTIONS(729), + [anon_sym_u2228] = ACTIONS(731), + [anon_sym_u2209] = ACTIONS(719), + [anon_sym_NOTIN] = ACTIONS(721), + [anon_sym_u2208] = ACTIONS(719), + [anon_sym_IN] = ACTIONS(721), + [anon_sym_u227c] = ACTIONS(723), + [anon_sym_LT_LT_EQ] = ACTIONS(713), + [anon_sym_PERMUTES] = ACTIONS(713), + [anon_sym_HAS_SIZE] = ACTIONS(713), + [anon_sym_u2282] = ACTIONS(723), + [anon_sym_PSUBSET] = ACTIONS(713), + [anon_sym_u2286] = ACTIONS(713), + [anon_sym_u2265] = ACTIONS(723), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_u2264] = ACTIONS(723), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_LT] = ACTIONS(713), + [anon_sym_u2286u1d63] = ACTIONS(723), + [anon_sym_RSUBSET] = ACTIONS(713), + [anon_sym_u2260] = ACTIONS(723), + [anon_sym_LT_GT] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_INSERT] = ACTIONS(705), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_o] = ACTIONS(711), + [sym_hol_true] = ACTIONS(438), + [sym_hol_false] = ACTIONS(438), + [sym_hol_number] = ACTIONS(432), + [sym_hol_string] = ACTIONS(432), + [sym_hol_character] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [244] = { + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_of] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_u2227] = ACTIONS(474), + [anon_sym_SLASH_BSLASH] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(476), + [sym__hol_alphanumeric] = ACTIONS(476), + [sym__hol_symbolic] = ACTIONS(476), + [anon_sym_OLEAST] = ACTIONS(476), + [anon_sym_LEAST] = ACTIONS(476), + [anon_sym_some] = ACTIONS(476), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(476), + [anon_sym_u2203_BANG] = ACTIONS(474), + [anon_sym_QMARK_BANG] = ACTIONS(476), + [anon_sym_u2203] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u2200] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_u03bb] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_u00ac] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_u21ce] = ACTIONS(474), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(476), + [anon_sym_LT_EQ_GT] = ACTIONS(476), + [anon_sym_u21d4] = ACTIONS(474), + [anon_sym_EQ_EQ_GT] = ACTIONS(476), + [anon_sym_u21d2] = ACTIONS(474), + [anon_sym_BSLASH_SLASH] = ACTIONS(476), + [anon_sym_u2228] = ACTIONS(474), + [anon_sym_u2209] = ACTIONS(474), + [anon_sym_NOTIN] = ACTIONS(476), + [anon_sym_u2208] = ACTIONS(474), + [anon_sym_IN] = ACTIONS(476), + [anon_sym_u227c] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_PERMUTES] = ACTIONS(476), + [anon_sym_HAS_SIZE] = ACTIONS(476), + [anon_sym_u2282] = ACTIONS(474), + [anon_sym_PSUBSET] = ACTIONS(476), + [anon_sym_u2286] = ACTIONS(476), + [anon_sym_u2265] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_u2264] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_u2286u1d63] = ACTIONS(474), + [anon_sym_RSUBSET] = ACTIONS(476), + [anon_sym_u2260] = ACTIONS(474), + [anon_sym_LT_GT] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_INSERT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_o] = ACTIONS(476), + [sym_hol_true] = ACTIONS(476), + [sym_hol_false] = ACTIONS(476), + [sym_hol_number] = ACTIONS(474), + [sym_hol_string] = ACTIONS(474), + [sym_hol_character] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [245] = { + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_End] = ACTIONS(113), + [anon_sym_Termination] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [246] = { + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_if] = ACTIONS(89), + [anon_sym_then] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(89), + [sym__hol_symbolic] = ACTIONS(89), + [anon_sym_OLEAST] = ACTIONS(89), + [anon_sym_LEAST] = ACTIONS(89), + [anon_sym_some] = ACTIONS(89), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(89), + [anon_sym_u2203_BANG] = ACTIONS(85), + [anon_sym_QMARK_BANG] = ACTIONS(89), + [anon_sym_u2203] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(89), + [anon_sym_u2200] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_u03bb] = ACTIONS(85), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_u00ac] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(89), + [sym_hol_false] = ACTIONS(89), + [sym_hol_number] = ACTIONS(85), + [sym_hol_string] = ACTIONS(85), + [sym_hol_character] = ACTIONS(85), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [247] = { + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_if] = ACTIONS(480), + [anon_sym_then] = ACTIONS(480), + [anon_sym_case] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_u2227] = ACTIONS(478), + [anon_sym_SLASH_BSLASH] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(480), + [sym__hol_alphanumeric] = ACTIONS(480), + [sym__hol_symbolic] = ACTIONS(480), + [anon_sym_OLEAST] = ACTIONS(480), + [anon_sym_LEAST] = ACTIONS(480), + [anon_sym_some] = ACTIONS(480), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(480), + [anon_sym_u2203_BANG] = ACTIONS(478), + [anon_sym_QMARK_BANG] = ACTIONS(480), + [anon_sym_u2203] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u2200] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_u03bb] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_u00ac] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_u21ce] = ACTIONS(478), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(480), + [anon_sym_LT_EQ_GT] = ACTIONS(480), + [anon_sym_u21d4] = ACTIONS(478), + [anon_sym_EQ_EQ_GT] = ACTIONS(480), + [anon_sym_u21d2] = ACTIONS(478), + [anon_sym_BSLASH_SLASH] = ACTIONS(480), + [anon_sym_u2228] = ACTIONS(478), + [anon_sym_u2209] = ACTIONS(478), + [anon_sym_NOTIN] = ACTIONS(480), + [anon_sym_u2208] = ACTIONS(478), + [anon_sym_IN] = ACTIONS(480), + [anon_sym_u227c] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_PERMUTES] = ACTIONS(480), + [anon_sym_HAS_SIZE] = ACTIONS(480), + [anon_sym_u2282] = ACTIONS(478), + [anon_sym_PSUBSET] = ACTIONS(480), + [anon_sym_u2286] = ACTIONS(480), + [anon_sym_u2265] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_u2264] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_u2286u1d63] = ACTIONS(478), + [anon_sym_RSUBSET] = ACTIONS(480), + [anon_sym_u2260] = ACTIONS(478), + [anon_sym_LT_GT] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_INSERT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_o] = ACTIONS(480), + [sym_hol_true] = ACTIONS(480), + [sym_hol_false] = ACTIONS(480), + [sym_hol_number] = ACTIONS(478), + [sym_hol_string] = ACTIONS(478), + [sym_hol_character] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [248] = { + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_if] = ACTIONS(484), + [anon_sym_then] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_u2227] = ACTIONS(482), + [anon_sym_SLASH_BSLASH] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(484), + [sym__hol_alphanumeric] = ACTIONS(484), + [sym__hol_symbolic] = ACTIONS(484), + [anon_sym_OLEAST] = ACTIONS(484), + [anon_sym_LEAST] = ACTIONS(484), + [anon_sym_some] = ACTIONS(484), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(484), + [anon_sym_u2203_BANG] = ACTIONS(482), + [anon_sym_QMARK_BANG] = ACTIONS(484), + [anon_sym_u2203] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u2200] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_u03bb] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_u00ac] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_u21ce] = ACTIONS(482), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(484), + [anon_sym_LT_EQ_GT] = ACTIONS(484), + [anon_sym_u21d4] = ACTIONS(482), + [anon_sym_EQ_EQ_GT] = ACTIONS(484), + [anon_sym_u21d2] = ACTIONS(482), + [anon_sym_BSLASH_SLASH] = ACTIONS(484), + [anon_sym_u2228] = ACTIONS(482), + [anon_sym_u2209] = ACTIONS(482), + [anon_sym_NOTIN] = ACTIONS(484), + [anon_sym_u2208] = ACTIONS(482), + [anon_sym_IN] = ACTIONS(484), + [anon_sym_u227c] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_PERMUTES] = ACTIONS(484), + [anon_sym_HAS_SIZE] = ACTIONS(484), + [anon_sym_u2282] = ACTIONS(482), + [anon_sym_PSUBSET] = ACTIONS(484), + [anon_sym_u2286] = ACTIONS(484), + [anon_sym_u2265] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_u2264] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_u2286u1d63] = ACTIONS(482), + [anon_sym_RSUBSET] = ACTIONS(484), + [anon_sym_u2260] = ACTIONS(482), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_INSERT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_o] = ACTIONS(484), + [sym_hol_true] = ACTIONS(484), + [sym_hol_false] = ACTIONS(484), + [sym_hol_number] = ACTIONS(482), + [sym_hol_string] = ACTIONS(482), + [sym_hol_character] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [249] = { + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_if] = ACTIONS(488), + [anon_sym_then] = ACTIONS(488), + [anon_sym_case] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_u2227] = ACTIONS(486), + [anon_sym_SLASH_BSLASH] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(488), + [sym__hol_alphanumeric] = ACTIONS(488), + [sym__hol_symbolic] = ACTIONS(488), + [anon_sym_OLEAST] = ACTIONS(488), + [anon_sym_LEAST] = ACTIONS(488), + [anon_sym_some] = ACTIONS(488), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(488), + [anon_sym_u2203_BANG] = ACTIONS(486), + [anon_sym_QMARK_BANG] = ACTIONS(488), + [anon_sym_u2203] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u2200] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_u03bb] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_u00ac] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_u21ce] = ACTIONS(486), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(488), + [anon_sym_LT_EQ_GT] = ACTIONS(488), + [anon_sym_u21d4] = ACTIONS(486), + [anon_sym_EQ_EQ_GT] = ACTIONS(488), + [anon_sym_u21d2] = ACTIONS(486), + [anon_sym_BSLASH_SLASH] = ACTIONS(488), + [anon_sym_u2228] = ACTIONS(486), + [anon_sym_u2209] = ACTIONS(486), + [anon_sym_NOTIN] = ACTIONS(488), + [anon_sym_u2208] = ACTIONS(486), + [anon_sym_IN] = ACTIONS(488), + [anon_sym_u227c] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_PERMUTES] = ACTIONS(488), + [anon_sym_HAS_SIZE] = ACTIONS(488), + [anon_sym_u2282] = ACTIONS(486), + [anon_sym_PSUBSET] = ACTIONS(488), + [anon_sym_u2286] = ACTIONS(488), + [anon_sym_u2265] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_u2264] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_u2286u1d63] = ACTIONS(486), + [anon_sym_RSUBSET] = ACTIONS(488), + [anon_sym_u2260] = ACTIONS(486), + [anon_sym_LT_GT] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_INSERT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_o] = ACTIONS(488), + [sym_hol_true] = ACTIONS(488), + [sym_hol_false] = ACTIONS(488), + [sym_hol_number] = ACTIONS(486), + [sym_hol_string] = ACTIONS(486), + [sym_hol_character] = ACTIONS(486), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [250] = { + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_if] = ACTIONS(430), + [anon_sym_then] = ACTIONS(430), + [anon_sym_case] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_u2227] = ACTIONS(428), + [anon_sym_SLASH_BSLASH] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(430), + [sym__hol_alphanumeric] = ACTIONS(430), + [sym__hol_symbolic] = ACTIONS(430), + [anon_sym_OLEAST] = ACTIONS(430), + [anon_sym_LEAST] = ACTIONS(430), + [anon_sym_some] = ACTIONS(430), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(430), + [anon_sym_u2203_BANG] = ACTIONS(428), + [anon_sym_QMARK_BANG] = ACTIONS(430), + [anon_sym_u2203] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u2200] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_u03bb] = ACTIONS(428), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_u00ac] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_u21ce] = ACTIONS(428), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(430), + [anon_sym_LT_EQ_GT] = ACTIONS(430), + [anon_sym_u21d4] = ACTIONS(428), + [anon_sym_EQ_EQ_GT] = ACTIONS(430), + [anon_sym_u21d2] = ACTIONS(428), + [anon_sym_BSLASH_SLASH] = ACTIONS(430), + [anon_sym_u2228] = ACTIONS(428), + [anon_sym_u2209] = ACTIONS(428), + [anon_sym_NOTIN] = ACTIONS(430), + [anon_sym_u2208] = ACTIONS(428), + [anon_sym_IN] = ACTIONS(430), + [anon_sym_u227c] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_PERMUTES] = ACTIONS(430), + [anon_sym_HAS_SIZE] = ACTIONS(430), + [anon_sym_u2282] = ACTIONS(428), + [anon_sym_PSUBSET] = ACTIONS(430), + [anon_sym_u2286] = ACTIONS(430), + [anon_sym_u2265] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_u2264] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_u2286u1d63] = ACTIONS(428), + [anon_sym_RSUBSET] = ACTIONS(430), + [anon_sym_u2260] = ACTIONS(428), + [anon_sym_LT_GT] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(430), + [anon_sym_INSERT] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_o] = ACTIONS(430), + [sym_hol_true] = ACTIONS(430), + [sym_hol_false] = ACTIONS(430), + [sym_hol_number] = ACTIONS(428), + [sym_hol_string] = ACTIONS(428), + [sym_hol_character] = ACTIONS(428), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [251] = { + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_Proof] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [252] = { + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_if] = ACTIONS(492), + [anon_sym_then] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_u2227] = ACTIONS(490), + [anon_sym_SLASH_BSLASH] = ACTIONS(492), + [anon_sym_COLON_COLON] = ACTIONS(492), + [sym__hol_alphanumeric] = ACTIONS(492), + [sym__hol_symbolic] = ACTIONS(492), + [anon_sym_OLEAST] = ACTIONS(492), + [anon_sym_LEAST] = ACTIONS(492), + [anon_sym_some] = ACTIONS(492), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(492), + [anon_sym_u2203_BANG] = ACTIONS(490), + [anon_sym_QMARK_BANG] = ACTIONS(492), + [anon_sym_u2203] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u2200] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_u03bb] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_u00ac] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_u21ce] = ACTIONS(490), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(492), + [anon_sym_LT_EQ_GT] = ACTIONS(492), + [anon_sym_u21d4] = ACTIONS(490), + [anon_sym_EQ_EQ_GT] = ACTIONS(492), + [anon_sym_u21d2] = ACTIONS(490), + [anon_sym_BSLASH_SLASH] = ACTIONS(492), + [anon_sym_u2228] = ACTIONS(490), + [anon_sym_u2209] = ACTIONS(490), + [anon_sym_NOTIN] = ACTIONS(492), + [anon_sym_u2208] = ACTIONS(490), + [anon_sym_IN] = ACTIONS(492), + [anon_sym_u227c] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_PERMUTES] = ACTIONS(492), + [anon_sym_HAS_SIZE] = ACTIONS(492), + [anon_sym_u2282] = ACTIONS(490), + [anon_sym_PSUBSET] = ACTIONS(492), + [anon_sym_u2286] = ACTIONS(492), + [anon_sym_u2265] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_u2264] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_u2286u1d63] = ACTIONS(490), + [anon_sym_RSUBSET] = ACTIONS(492), + [anon_sym_u2260] = ACTIONS(490), + [anon_sym_LT_GT] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_INSERT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_o] = ACTIONS(492), + [sym_hol_true] = ACTIONS(492), + [sym_hol_false] = ACTIONS(492), + [sym_hol_number] = ACTIONS(490), + [sym_hol_string] = ACTIONS(490), + [sym_hol_character] = ACTIONS(490), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [253] = { + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_if] = ACTIONS(496), + [anon_sym_then] = ACTIONS(496), + [anon_sym_case] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(496), + [anon_sym_u2227] = ACTIONS(494), + [anon_sym_SLASH_BSLASH] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(496), + [sym__hol_alphanumeric] = ACTIONS(496), + [sym__hol_symbolic] = ACTIONS(496), + [anon_sym_OLEAST] = ACTIONS(496), + [anon_sym_LEAST] = ACTIONS(496), + [anon_sym_some] = ACTIONS(496), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(496), + [anon_sym_u2203_BANG] = ACTIONS(494), + [anon_sym_QMARK_BANG] = ACTIONS(496), + [anon_sym_u2203] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u2200] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_u03bb] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_u00ac] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_u21ce] = ACTIONS(494), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(496), + [anon_sym_LT_EQ_GT] = ACTIONS(496), + [anon_sym_u21d4] = ACTIONS(494), + [anon_sym_EQ_EQ_GT] = ACTIONS(496), + [anon_sym_u21d2] = ACTIONS(494), + [anon_sym_BSLASH_SLASH] = ACTIONS(496), + [anon_sym_u2228] = ACTIONS(494), + [anon_sym_u2209] = ACTIONS(494), + [anon_sym_NOTIN] = ACTIONS(496), + [anon_sym_u2208] = ACTIONS(494), + [anon_sym_IN] = ACTIONS(496), + [anon_sym_u227c] = ACTIONS(494), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_PERMUTES] = ACTIONS(496), + [anon_sym_HAS_SIZE] = ACTIONS(496), + [anon_sym_u2282] = ACTIONS(494), + [anon_sym_PSUBSET] = ACTIONS(496), + [anon_sym_u2286] = ACTIONS(496), + [anon_sym_u2265] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_u2264] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_u2286u1d63] = ACTIONS(494), + [anon_sym_RSUBSET] = ACTIONS(496), + [anon_sym_u2260] = ACTIONS(494), + [anon_sym_LT_GT] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(496), + [anon_sym_INSERT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_o] = ACTIONS(496), + [sym_hol_true] = ACTIONS(496), + [sym_hol_false] = ACTIONS(496), + [sym_hol_number] = ACTIONS(494), + [sym_hol_string] = ACTIONS(494), + [sym_hol_character] = ACTIONS(494), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [254] = { + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_then] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_u2227] = ACTIONS(498), + [anon_sym_SLASH_BSLASH] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(500), + [sym__hol_alphanumeric] = ACTIONS(500), + [sym__hol_symbolic] = ACTIONS(500), + [anon_sym_OLEAST] = ACTIONS(500), + [anon_sym_LEAST] = ACTIONS(500), + [anon_sym_some] = ACTIONS(500), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(500), + [anon_sym_u2203_BANG] = ACTIONS(498), + [anon_sym_QMARK_BANG] = ACTIONS(500), + [anon_sym_u2203] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u2200] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_u03bb] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_u00ac] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_u21ce] = ACTIONS(498), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(500), + [anon_sym_LT_EQ_GT] = ACTIONS(500), + [anon_sym_u21d4] = ACTIONS(498), + [anon_sym_EQ_EQ_GT] = ACTIONS(500), + [anon_sym_u21d2] = ACTIONS(498), + [anon_sym_BSLASH_SLASH] = ACTIONS(500), + [anon_sym_u2228] = ACTIONS(498), + [anon_sym_u2209] = ACTIONS(498), + [anon_sym_NOTIN] = ACTIONS(500), + [anon_sym_u2208] = ACTIONS(498), + [anon_sym_IN] = ACTIONS(500), + [anon_sym_u227c] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_PERMUTES] = ACTIONS(500), + [anon_sym_HAS_SIZE] = ACTIONS(500), + [anon_sym_u2282] = ACTIONS(498), + [anon_sym_PSUBSET] = ACTIONS(500), + [anon_sym_u2286] = ACTIONS(500), + [anon_sym_u2265] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_u2264] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_u2286u1d63] = ACTIONS(498), + [anon_sym_RSUBSET] = ACTIONS(500), + [anon_sym_u2260] = ACTIONS(498), + [anon_sym_LT_GT] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_INSERT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_o] = ACTIONS(500), + [sym_hol_true] = ACTIONS(500), + [sym_hol_false] = ACTIONS(500), + [sym_hol_number] = ACTIONS(498), + [sym_hol_string] = ACTIONS(498), + [sym_hol_character] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [255] = { + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_COLON] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_then] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(504), + [anon_sym_u2227] = ACTIONS(502), + [anon_sym_SLASH_BSLASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(504), + [sym__hol_alphanumeric] = ACTIONS(504), + [sym__hol_symbolic] = ACTIONS(504), + [anon_sym_OLEAST] = ACTIONS(504), + [anon_sym_LEAST] = ACTIONS(504), + [anon_sym_some] = ACTIONS(504), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(504), + [anon_sym_u2203_BANG] = ACTIONS(502), + [anon_sym_QMARK_BANG] = ACTIONS(504), + [anon_sym_u2203] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u2200] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_u03bb] = ACTIONS(502), + [anon_sym_BSLASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_u00ac] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_u21ce] = ACTIONS(502), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(504), + [anon_sym_LT_EQ_GT] = ACTIONS(504), + [anon_sym_u21d4] = ACTIONS(502), + [anon_sym_EQ_EQ_GT] = ACTIONS(504), + [anon_sym_u21d2] = ACTIONS(502), + [anon_sym_BSLASH_SLASH] = ACTIONS(504), + [anon_sym_u2228] = ACTIONS(502), + [anon_sym_u2209] = ACTIONS(502), + [anon_sym_NOTIN] = ACTIONS(504), + [anon_sym_u2208] = ACTIONS(502), + [anon_sym_IN] = ACTIONS(504), + [anon_sym_u227c] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_PERMUTES] = ACTIONS(504), + [anon_sym_HAS_SIZE] = ACTIONS(504), + [anon_sym_u2282] = ACTIONS(502), + [anon_sym_PSUBSET] = ACTIONS(504), + [anon_sym_u2286] = ACTIONS(504), + [anon_sym_u2265] = ACTIONS(502), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_u2264] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_u2286u1d63] = ACTIONS(502), + [anon_sym_RSUBSET] = ACTIONS(504), + [anon_sym_u2260] = ACTIONS(502), + [anon_sym_LT_GT] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(504), + [anon_sym_INSERT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_o] = ACTIONS(504), + [sym_hol_true] = ACTIONS(504), + [sym_hol_false] = ACTIONS(504), + [sym_hol_number] = ACTIONS(502), + [sym_hol_string] = ACTIONS(502), + [sym_hol_character] = ACTIONS(502), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [256] = { + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_then] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(508), + [anon_sym_u2227] = ACTIONS(506), + [anon_sym_SLASH_BSLASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(508), + [sym__hol_alphanumeric] = ACTIONS(508), + [sym__hol_symbolic] = ACTIONS(508), + [anon_sym_OLEAST] = ACTIONS(508), + [anon_sym_LEAST] = ACTIONS(508), + [anon_sym_some] = ACTIONS(508), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(508), + [anon_sym_u2203_BANG] = ACTIONS(506), + [anon_sym_QMARK_BANG] = ACTIONS(508), + [anon_sym_u2203] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u2200] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_u03bb] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_u00ac] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_u21ce] = ACTIONS(506), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(508), + [anon_sym_LT_EQ_GT] = ACTIONS(508), + [anon_sym_u21d4] = ACTIONS(506), + [anon_sym_EQ_EQ_GT] = ACTIONS(508), + [anon_sym_u21d2] = ACTIONS(506), + [anon_sym_BSLASH_SLASH] = ACTIONS(508), + [anon_sym_u2228] = ACTIONS(506), + [anon_sym_u2209] = ACTIONS(506), + [anon_sym_NOTIN] = ACTIONS(508), + [anon_sym_u2208] = ACTIONS(506), + [anon_sym_IN] = ACTIONS(508), + [anon_sym_u227c] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_PERMUTES] = ACTIONS(508), + [anon_sym_HAS_SIZE] = ACTIONS(508), + [anon_sym_u2282] = ACTIONS(506), + [anon_sym_PSUBSET] = ACTIONS(508), + [anon_sym_u2286] = ACTIONS(508), + [anon_sym_u2265] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_u2264] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_u2286u1d63] = ACTIONS(506), + [anon_sym_RSUBSET] = ACTIONS(508), + [anon_sym_u2260] = ACTIONS(506), + [anon_sym_LT_GT] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(508), + [anon_sym_INSERT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_o] = ACTIONS(508), + [sym_hol_true] = ACTIONS(508), + [sym_hol_false] = ACTIONS(508), + [sym_hol_number] = ACTIONS(506), + [sym_hol_string] = ACTIONS(506), + [sym_hol_character] = ACTIONS(506), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [257] = { + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_then] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_u2227] = ACTIONS(510), + [anon_sym_SLASH_BSLASH] = ACTIONS(512), + [anon_sym_COLON_COLON] = ACTIONS(512), + [sym__hol_alphanumeric] = ACTIONS(512), + [sym__hol_symbolic] = ACTIONS(512), + [anon_sym_OLEAST] = ACTIONS(512), + [anon_sym_LEAST] = ACTIONS(512), + [anon_sym_some] = ACTIONS(512), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(512), + [anon_sym_u2203_BANG] = ACTIONS(510), + [anon_sym_QMARK_BANG] = ACTIONS(512), + [anon_sym_u2203] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u2200] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_u03bb] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_u00ac] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_u21ce] = ACTIONS(510), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(512), + [anon_sym_LT_EQ_GT] = ACTIONS(512), + [anon_sym_u21d4] = ACTIONS(510), + [anon_sym_EQ_EQ_GT] = ACTIONS(512), + [anon_sym_u21d2] = ACTIONS(510), + [anon_sym_BSLASH_SLASH] = ACTIONS(512), + [anon_sym_u2228] = ACTIONS(510), + [anon_sym_u2209] = ACTIONS(510), + [anon_sym_NOTIN] = ACTIONS(512), + [anon_sym_u2208] = ACTIONS(510), + [anon_sym_IN] = ACTIONS(512), + [anon_sym_u227c] = ACTIONS(510), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_PERMUTES] = ACTIONS(512), + [anon_sym_HAS_SIZE] = ACTIONS(512), + [anon_sym_u2282] = ACTIONS(510), + [anon_sym_PSUBSET] = ACTIONS(512), + [anon_sym_u2286] = ACTIONS(512), + [anon_sym_u2265] = ACTIONS(510), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_u2264] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_u2286u1d63] = ACTIONS(510), + [anon_sym_RSUBSET] = ACTIONS(512), + [anon_sym_u2260] = ACTIONS(510), + [anon_sym_LT_GT] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_INSERT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_o] = ACTIONS(512), + [sym_hol_true] = ACTIONS(512), + [sym_hol_false] = ACTIONS(512), + [sym_hol_number] = ACTIONS(510), + [sym_hol_string] = ACTIONS(510), + [sym_hol_character] = ACTIONS(510), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [258] = { + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_then] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_u2227] = ACTIONS(514), + [anon_sym_SLASH_BSLASH] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(516), + [sym__hol_alphanumeric] = ACTIONS(516), + [sym__hol_symbolic] = ACTIONS(516), + [anon_sym_OLEAST] = ACTIONS(516), + [anon_sym_LEAST] = ACTIONS(516), + [anon_sym_some] = ACTIONS(516), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(516), + [anon_sym_u2203_BANG] = ACTIONS(514), + [anon_sym_QMARK_BANG] = ACTIONS(516), + [anon_sym_u2203] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_u2200] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_u03bb] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_u00ac] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_u21ce] = ACTIONS(514), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(516), + [anon_sym_LT_EQ_GT] = ACTIONS(516), + [anon_sym_u21d4] = ACTIONS(514), + [anon_sym_EQ_EQ_GT] = ACTIONS(516), + [anon_sym_u21d2] = ACTIONS(514), + [anon_sym_BSLASH_SLASH] = ACTIONS(516), + [anon_sym_u2228] = ACTIONS(514), + [anon_sym_u2209] = ACTIONS(514), + [anon_sym_NOTIN] = ACTIONS(516), + [anon_sym_u2208] = ACTIONS(514), + [anon_sym_IN] = ACTIONS(516), + [anon_sym_u227c] = ACTIONS(514), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_PERMUTES] = ACTIONS(516), + [anon_sym_HAS_SIZE] = ACTIONS(516), + [anon_sym_u2282] = ACTIONS(514), + [anon_sym_PSUBSET] = ACTIONS(516), + [anon_sym_u2286] = ACTIONS(516), + [anon_sym_u2265] = ACTIONS(514), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_u2264] = ACTIONS(514), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_u2286u1d63] = ACTIONS(514), + [anon_sym_RSUBSET] = ACTIONS(516), + [anon_sym_u2260] = ACTIONS(514), + [anon_sym_LT_GT] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_INSERT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_o] = ACTIONS(516), + [sym_hol_true] = ACTIONS(516), + [sym_hol_false] = ACTIONS(516), + [sym_hol_number] = ACTIONS(514), + [sym_hol_string] = ACTIONS(514), + [sym_hol_character] = ACTIONS(514), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [259] = { + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACE] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_if] = ACTIONS(472), + [anon_sym_then] = ACTIONS(472), + [anon_sym_case] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_u2227] = ACTIONS(739), + [anon_sym_SLASH_BSLASH] = ACTIONS(741), + [anon_sym_COLON_COLON] = ACTIONS(661), + [sym__hol_alphanumeric] = ACTIONS(472), + [sym__hol_symbolic] = ACTIONS(472), + [anon_sym_OLEAST] = ACTIONS(472), + [anon_sym_LEAST] = ACTIONS(472), + [anon_sym_some] = ACTIONS(472), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(472), + [anon_sym_u2203_BANG] = ACTIONS(470), + [anon_sym_QMARK_BANG] = ACTIONS(472), + [anon_sym_u2203] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_u2200] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_AT] = ACTIONS(472), + [anon_sym_u03bb] = ACTIONS(470), + [anon_sym_BSLASH] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_u00ac] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(470), + [anon_sym_u21ce] = ACTIONS(743), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(745), + [anon_sym_LT_EQ_GT] = ACTIONS(745), + [anon_sym_u21d4] = ACTIONS(743), + [anon_sym_EQ_EQ_GT] = ACTIONS(747), + [anon_sym_u21d2] = ACTIONS(749), + [anon_sym_BSLASH_SLASH] = ACTIONS(751), + [anon_sym_u2228] = ACTIONS(753), + [anon_sym_u2209] = ACTIONS(755), + [anon_sym_NOTIN] = ACTIONS(757), + [anon_sym_u2208] = ACTIONS(755), + [anon_sym_IN] = ACTIONS(757), + [anon_sym_u227c] = ACTIONS(759), + [anon_sym_LT_LT_EQ] = ACTIONS(737), + [anon_sym_PERMUTES] = ACTIONS(737), + [anon_sym_HAS_SIZE] = ACTIONS(737), + [anon_sym_u2282] = ACTIONS(759), + [anon_sym_PSUBSET] = ACTIONS(737), + [anon_sym_u2286] = ACTIONS(737), + [anon_sym_u2265] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(737), + [anon_sym_u2264] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_u2286u1d63] = ACTIONS(759), + [anon_sym_RSUBSET] = ACTIONS(737), + [anon_sym_u2260] = ACTIONS(759), + [anon_sym_LT_GT] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_INSERT] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_o] = ACTIONS(667), + [sym_hol_true] = ACTIONS(472), + [sym_hol_false] = ACTIONS(472), + [sym_hol_number] = ACTIONS(470), + [sym_hol_string] = ACTIONS(470), + [sym_hol_character] = ACTIONS(470), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [260] = { + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_Proof] = ACTIONS(476), + [anon_sym_u2227] = ACTIONS(474), + [anon_sym_SLASH_BSLASH] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(476), + [sym__hol_alphanumeric] = ACTIONS(476), + [sym__hol_symbolic] = ACTIONS(476), + [anon_sym_OLEAST] = ACTIONS(476), + [anon_sym_LEAST] = ACTIONS(476), + [anon_sym_some] = ACTIONS(476), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(476), + [anon_sym_u2203_BANG] = ACTIONS(474), + [anon_sym_QMARK_BANG] = ACTIONS(476), + [anon_sym_u2203] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u2200] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_u03bb] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_u00ac] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_u21ce] = ACTIONS(474), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(476), + [anon_sym_LT_EQ_GT] = ACTIONS(476), + [anon_sym_u21d4] = ACTIONS(474), + [anon_sym_EQ_EQ_GT] = ACTIONS(476), + [anon_sym_u21d2] = ACTIONS(474), + [anon_sym_BSLASH_SLASH] = ACTIONS(476), + [anon_sym_u2228] = ACTIONS(474), + [anon_sym_u2209] = ACTIONS(474), + [anon_sym_NOTIN] = ACTIONS(476), + [anon_sym_u2208] = ACTIONS(474), + [anon_sym_IN] = ACTIONS(476), + [anon_sym_u227c] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_PERMUTES] = ACTIONS(476), + [anon_sym_HAS_SIZE] = ACTIONS(476), + [anon_sym_u2282] = ACTIONS(474), + [anon_sym_PSUBSET] = ACTIONS(476), + [anon_sym_u2286] = ACTIONS(476), + [anon_sym_u2265] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_u2264] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_u2286u1d63] = ACTIONS(474), + [anon_sym_RSUBSET] = ACTIONS(476), + [anon_sym_u2260] = ACTIONS(474), + [anon_sym_LT_GT] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_INSERT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_o] = ACTIONS(476), + [sym_hol_true] = ACTIONS(476), + [sym_hol_false] = ACTIONS(476), + [sym_hol_number] = ACTIONS(474), + [sym_hol_string] = ACTIONS(474), + [sym_hol_character] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [261] = { + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_then] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_u2227] = ACTIONS(417), + [anon_sym_SLASH_BSLASH] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(419), + [sym__hol_alphanumeric] = ACTIONS(419), + [sym__hol_symbolic] = ACTIONS(419), + [anon_sym_OLEAST] = ACTIONS(419), + [anon_sym_LEAST] = ACTIONS(419), + [anon_sym_some] = ACTIONS(419), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(419), + [anon_sym_u2203_BANG] = ACTIONS(417), + [anon_sym_QMARK_BANG] = ACTIONS(419), + [anon_sym_u2203] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u2200] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_u03bb] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_u00ac] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_u21ce] = ACTIONS(417), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(419), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_u21d4] = ACTIONS(417), + [anon_sym_EQ_EQ_GT] = ACTIONS(419), + [anon_sym_u21d2] = ACTIONS(417), + [anon_sym_BSLASH_SLASH] = ACTIONS(419), + [anon_sym_u2228] = ACTIONS(417), + [anon_sym_u2209] = ACTIONS(417), + [anon_sym_NOTIN] = ACTIONS(419), + [anon_sym_u2208] = ACTIONS(417), + [anon_sym_IN] = ACTIONS(419), + [anon_sym_u227c] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_PERMUTES] = ACTIONS(419), + [anon_sym_HAS_SIZE] = ACTIONS(419), + [anon_sym_u2282] = ACTIONS(417), + [anon_sym_PSUBSET] = ACTIONS(419), + [anon_sym_u2286] = ACTIONS(419), + [anon_sym_u2265] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_u2264] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_u2286u1d63] = ACTIONS(417), + [anon_sym_RSUBSET] = ACTIONS(419), + [anon_sym_u2260] = ACTIONS(417), + [anon_sym_LT_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_INSERT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_o] = ACTIONS(419), + [sym_hol_true] = ACTIONS(419), + [sym_hol_false] = ACTIONS(419), + [sym_hol_number] = ACTIONS(417), + [sym_hol_string] = ACTIONS(417), + [sym_hol_character] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [262] = { + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_if] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_of] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(89), + [sym__hol_symbolic] = ACTIONS(89), + [anon_sym_OLEAST] = ACTIONS(89), + [anon_sym_LEAST] = ACTIONS(89), + [anon_sym_some] = ACTIONS(89), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(89), + [anon_sym_u2203_BANG] = ACTIONS(85), + [anon_sym_QMARK_BANG] = ACTIONS(89), + [anon_sym_u2203] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(89), + [anon_sym_u2200] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_u03bb] = ACTIONS(85), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_u00ac] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(89), + [sym_hol_false] = ACTIONS(89), + [sym_hol_number] = ACTIONS(85), + [sym_hol_string] = ACTIONS(85), + [sym_hol_character] = ACTIONS(85), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [263] = { + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_if] = ACTIONS(480), + [anon_sym_case] = ACTIONS(480), + [anon_sym_of] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_u2227] = ACTIONS(478), + [anon_sym_SLASH_BSLASH] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(480), + [sym__hol_alphanumeric] = ACTIONS(480), + [sym__hol_symbolic] = ACTIONS(480), + [anon_sym_OLEAST] = ACTIONS(480), + [anon_sym_LEAST] = ACTIONS(480), + [anon_sym_some] = ACTIONS(480), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(480), + [anon_sym_u2203_BANG] = ACTIONS(478), + [anon_sym_QMARK_BANG] = ACTIONS(480), + [anon_sym_u2203] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u2200] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_u03bb] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_u00ac] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_u21ce] = ACTIONS(478), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(480), + [anon_sym_LT_EQ_GT] = ACTIONS(480), + [anon_sym_u21d4] = ACTIONS(478), + [anon_sym_EQ_EQ_GT] = ACTIONS(480), + [anon_sym_u21d2] = ACTIONS(478), + [anon_sym_BSLASH_SLASH] = ACTIONS(480), + [anon_sym_u2228] = ACTIONS(478), + [anon_sym_u2209] = ACTIONS(478), + [anon_sym_NOTIN] = ACTIONS(480), + [anon_sym_u2208] = ACTIONS(478), + [anon_sym_IN] = ACTIONS(480), + [anon_sym_u227c] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_PERMUTES] = ACTIONS(480), + [anon_sym_HAS_SIZE] = ACTIONS(480), + [anon_sym_u2282] = ACTIONS(478), + [anon_sym_PSUBSET] = ACTIONS(480), + [anon_sym_u2286] = ACTIONS(480), + [anon_sym_u2265] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_u2264] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_u2286u1d63] = ACTIONS(478), + [anon_sym_RSUBSET] = ACTIONS(480), + [anon_sym_u2260] = ACTIONS(478), + [anon_sym_LT_GT] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_INSERT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_o] = ACTIONS(480), + [sym_hol_true] = ACTIONS(480), + [sym_hol_false] = ACTIONS(480), + [sym_hol_number] = ACTIONS(478), + [sym_hol_string] = ACTIONS(478), + [sym_hol_character] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [264] = { + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_if] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_of] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_u2227] = ACTIONS(482), + [anon_sym_SLASH_BSLASH] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(484), + [sym__hol_alphanumeric] = ACTIONS(484), + [sym__hol_symbolic] = ACTIONS(484), + [anon_sym_OLEAST] = ACTIONS(484), + [anon_sym_LEAST] = ACTIONS(484), + [anon_sym_some] = ACTIONS(484), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(484), + [anon_sym_u2203_BANG] = ACTIONS(482), + [anon_sym_QMARK_BANG] = ACTIONS(484), + [anon_sym_u2203] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u2200] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_u03bb] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_u00ac] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_u21ce] = ACTIONS(482), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(484), + [anon_sym_LT_EQ_GT] = ACTIONS(484), + [anon_sym_u21d4] = ACTIONS(482), + [anon_sym_EQ_EQ_GT] = ACTIONS(484), + [anon_sym_u21d2] = ACTIONS(482), + [anon_sym_BSLASH_SLASH] = ACTIONS(484), + [anon_sym_u2228] = ACTIONS(482), + [anon_sym_u2209] = ACTIONS(482), + [anon_sym_NOTIN] = ACTIONS(484), + [anon_sym_u2208] = ACTIONS(482), + [anon_sym_IN] = ACTIONS(484), + [anon_sym_u227c] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_PERMUTES] = ACTIONS(484), + [anon_sym_HAS_SIZE] = ACTIONS(484), + [anon_sym_u2282] = ACTIONS(482), + [anon_sym_PSUBSET] = ACTIONS(484), + [anon_sym_u2286] = ACTIONS(484), + [anon_sym_u2265] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_u2264] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_u2286u1d63] = ACTIONS(482), + [anon_sym_RSUBSET] = ACTIONS(484), + [anon_sym_u2260] = ACTIONS(482), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_INSERT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_o] = ACTIONS(484), + [sym_hol_true] = ACTIONS(484), + [sym_hol_false] = ACTIONS(484), + [sym_hol_number] = ACTIONS(482), + [sym_hol_string] = ACTIONS(482), + [sym_hol_character] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [265] = { + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_if] = ACTIONS(488), + [anon_sym_case] = ACTIONS(488), + [anon_sym_of] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_u2227] = ACTIONS(486), + [anon_sym_SLASH_BSLASH] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(488), + [sym__hol_alphanumeric] = ACTIONS(488), + [sym__hol_symbolic] = ACTIONS(488), + [anon_sym_OLEAST] = ACTIONS(488), + [anon_sym_LEAST] = ACTIONS(488), + [anon_sym_some] = ACTIONS(488), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(488), + [anon_sym_u2203_BANG] = ACTIONS(486), + [anon_sym_QMARK_BANG] = ACTIONS(488), + [anon_sym_u2203] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u2200] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_u03bb] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_u00ac] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_u21ce] = ACTIONS(486), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(488), + [anon_sym_LT_EQ_GT] = ACTIONS(488), + [anon_sym_u21d4] = ACTIONS(486), + [anon_sym_EQ_EQ_GT] = ACTIONS(488), + [anon_sym_u21d2] = ACTIONS(486), + [anon_sym_BSLASH_SLASH] = ACTIONS(488), + [anon_sym_u2228] = ACTIONS(486), + [anon_sym_u2209] = ACTIONS(486), + [anon_sym_NOTIN] = ACTIONS(488), + [anon_sym_u2208] = ACTIONS(486), + [anon_sym_IN] = ACTIONS(488), + [anon_sym_u227c] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_PERMUTES] = ACTIONS(488), + [anon_sym_HAS_SIZE] = ACTIONS(488), + [anon_sym_u2282] = ACTIONS(486), + [anon_sym_PSUBSET] = ACTIONS(488), + [anon_sym_u2286] = ACTIONS(488), + [anon_sym_u2265] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_u2264] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_u2286u1d63] = ACTIONS(486), + [anon_sym_RSUBSET] = ACTIONS(488), + [anon_sym_u2260] = ACTIONS(486), + [anon_sym_LT_GT] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_INSERT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_o] = ACTIONS(488), + [sym_hol_true] = ACTIONS(488), + [sym_hol_false] = ACTIONS(488), + [sym_hol_number] = ACTIONS(486), + [sym_hol_string] = ACTIONS(486), + [sym_hol_character] = ACTIONS(486), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [266] = { + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_if] = ACTIONS(430), + [anon_sym_case] = ACTIONS(430), + [anon_sym_of] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_u2227] = ACTIONS(428), + [anon_sym_SLASH_BSLASH] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(430), + [sym__hol_alphanumeric] = ACTIONS(430), + [sym__hol_symbolic] = ACTIONS(430), + [anon_sym_OLEAST] = ACTIONS(430), + [anon_sym_LEAST] = ACTIONS(430), + [anon_sym_some] = ACTIONS(430), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(430), + [anon_sym_u2203_BANG] = ACTIONS(428), + [anon_sym_QMARK_BANG] = ACTIONS(430), + [anon_sym_u2203] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u2200] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_u03bb] = ACTIONS(428), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_u00ac] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_u21ce] = ACTIONS(428), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(430), + [anon_sym_LT_EQ_GT] = ACTIONS(430), + [anon_sym_u21d4] = ACTIONS(428), + [anon_sym_EQ_EQ_GT] = ACTIONS(430), + [anon_sym_u21d2] = ACTIONS(428), + [anon_sym_BSLASH_SLASH] = ACTIONS(430), + [anon_sym_u2228] = ACTIONS(428), + [anon_sym_u2209] = ACTIONS(428), + [anon_sym_NOTIN] = ACTIONS(430), + [anon_sym_u2208] = ACTIONS(428), + [anon_sym_IN] = ACTIONS(430), + [anon_sym_u227c] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_PERMUTES] = ACTIONS(430), + [anon_sym_HAS_SIZE] = ACTIONS(430), + [anon_sym_u2282] = ACTIONS(428), + [anon_sym_PSUBSET] = ACTIONS(430), + [anon_sym_u2286] = ACTIONS(430), + [anon_sym_u2265] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_u2264] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_u2286u1d63] = ACTIONS(428), + [anon_sym_RSUBSET] = ACTIONS(430), + [anon_sym_u2260] = ACTIONS(428), + [anon_sym_LT_GT] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(430), + [anon_sym_INSERT] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_o] = ACTIONS(430), + [sym_hol_true] = ACTIONS(430), + [sym_hol_false] = ACTIONS(430), + [sym_hol_number] = ACTIONS(428), + [sym_hol_string] = ACTIONS(428), + [sym_hol_character] = ACTIONS(428), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [267] = { + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_else] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [268] = { + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_if] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_of] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_u2227] = ACTIONS(490), + [anon_sym_SLASH_BSLASH] = ACTIONS(492), + [anon_sym_COLON_COLON] = ACTIONS(492), + [sym__hol_alphanumeric] = ACTIONS(492), + [sym__hol_symbolic] = ACTIONS(492), + [anon_sym_OLEAST] = ACTIONS(492), + [anon_sym_LEAST] = ACTIONS(492), + [anon_sym_some] = ACTIONS(492), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(492), + [anon_sym_u2203_BANG] = ACTIONS(490), + [anon_sym_QMARK_BANG] = ACTIONS(492), + [anon_sym_u2203] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u2200] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_u03bb] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_u00ac] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_u21ce] = ACTIONS(490), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(492), + [anon_sym_LT_EQ_GT] = ACTIONS(492), + [anon_sym_u21d4] = ACTIONS(490), + [anon_sym_EQ_EQ_GT] = ACTIONS(492), + [anon_sym_u21d2] = ACTIONS(490), + [anon_sym_BSLASH_SLASH] = ACTIONS(492), + [anon_sym_u2228] = ACTIONS(490), + [anon_sym_u2209] = ACTIONS(490), + [anon_sym_NOTIN] = ACTIONS(492), + [anon_sym_u2208] = ACTIONS(490), + [anon_sym_IN] = ACTIONS(492), + [anon_sym_u227c] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_PERMUTES] = ACTIONS(492), + [anon_sym_HAS_SIZE] = ACTIONS(492), + [anon_sym_u2282] = ACTIONS(490), + [anon_sym_PSUBSET] = ACTIONS(492), + [anon_sym_u2286] = ACTIONS(492), + [anon_sym_u2265] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_u2264] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_u2286u1d63] = ACTIONS(490), + [anon_sym_RSUBSET] = ACTIONS(492), + [anon_sym_u2260] = ACTIONS(490), + [anon_sym_LT_GT] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_INSERT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_o] = ACTIONS(492), + [sym_hol_true] = ACTIONS(492), + [sym_hol_false] = ACTIONS(492), + [sym_hol_number] = ACTIONS(490), + [sym_hol_string] = ACTIONS(490), + [sym_hol_character] = ACTIONS(490), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [269] = { + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_if] = ACTIONS(496), + [anon_sym_case] = ACTIONS(496), + [anon_sym_of] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(496), + [anon_sym_u2227] = ACTIONS(494), + [anon_sym_SLASH_BSLASH] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(496), + [sym__hol_alphanumeric] = ACTIONS(496), + [sym__hol_symbolic] = ACTIONS(496), + [anon_sym_OLEAST] = ACTIONS(496), + [anon_sym_LEAST] = ACTIONS(496), + [anon_sym_some] = ACTIONS(496), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(496), + [anon_sym_u2203_BANG] = ACTIONS(494), + [anon_sym_QMARK_BANG] = ACTIONS(496), + [anon_sym_u2203] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u2200] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_u03bb] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_u00ac] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_u21ce] = ACTIONS(494), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(496), + [anon_sym_LT_EQ_GT] = ACTIONS(496), + [anon_sym_u21d4] = ACTIONS(494), + [anon_sym_EQ_EQ_GT] = ACTIONS(496), + [anon_sym_u21d2] = ACTIONS(494), + [anon_sym_BSLASH_SLASH] = ACTIONS(496), + [anon_sym_u2228] = ACTIONS(494), + [anon_sym_u2209] = ACTIONS(494), + [anon_sym_NOTIN] = ACTIONS(496), + [anon_sym_u2208] = ACTIONS(494), + [anon_sym_IN] = ACTIONS(496), + [anon_sym_u227c] = ACTIONS(494), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_PERMUTES] = ACTIONS(496), + [anon_sym_HAS_SIZE] = ACTIONS(496), + [anon_sym_u2282] = ACTIONS(494), + [anon_sym_PSUBSET] = ACTIONS(496), + [anon_sym_u2286] = ACTIONS(496), + [anon_sym_u2265] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_u2264] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_u2286u1d63] = ACTIONS(494), + [anon_sym_RSUBSET] = ACTIONS(496), + [anon_sym_u2260] = ACTIONS(494), + [anon_sym_LT_GT] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(496), + [anon_sym_INSERT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_o] = ACTIONS(496), + [sym_hol_true] = ACTIONS(496), + [sym_hol_false] = ACTIONS(496), + [sym_hol_number] = ACTIONS(494), + [sym_hol_string] = ACTIONS(494), + [sym_hol_character] = ACTIONS(494), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [270] = { + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_of] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_u2227] = ACTIONS(498), + [anon_sym_SLASH_BSLASH] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(500), + [sym__hol_alphanumeric] = ACTIONS(500), + [sym__hol_symbolic] = ACTIONS(500), + [anon_sym_OLEAST] = ACTIONS(500), + [anon_sym_LEAST] = ACTIONS(500), + [anon_sym_some] = ACTIONS(500), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(500), + [anon_sym_u2203_BANG] = ACTIONS(498), + [anon_sym_QMARK_BANG] = ACTIONS(500), + [anon_sym_u2203] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u2200] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_u03bb] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_u00ac] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_u21ce] = ACTIONS(498), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(500), + [anon_sym_LT_EQ_GT] = ACTIONS(500), + [anon_sym_u21d4] = ACTIONS(498), + [anon_sym_EQ_EQ_GT] = ACTIONS(500), + [anon_sym_u21d2] = ACTIONS(498), + [anon_sym_BSLASH_SLASH] = ACTIONS(500), + [anon_sym_u2228] = ACTIONS(498), + [anon_sym_u2209] = ACTIONS(498), + [anon_sym_NOTIN] = ACTIONS(500), + [anon_sym_u2208] = ACTIONS(498), + [anon_sym_IN] = ACTIONS(500), + [anon_sym_u227c] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_PERMUTES] = ACTIONS(500), + [anon_sym_HAS_SIZE] = ACTIONS(500), + [anon_sym_u2282] = ACTIONS(498), + [anon_sym_PSUBSET] = ACTIONS(500), + [anon_sym_u2286] = ACTIONS(500), + [anon_sym_u2265] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_u2264] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_u2286u1d63] = ACTIONS(498), + [anon_sym_RSUBSET] = ACTIONS(500), + [anon_sym_u2260] = ACTIONS(498), + [anon_sym_LT_GT] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_INSERT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_o] = ACTIONS(500), + [sym_hol_true] = ACTIONS(500), + [sym_hol_false] = ACTIONS(500), + [sym_hol_number] = ACTIONS(498), + [sym_hol_string] = ACTIONS(498), + [sym_hol_character] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [271] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(661), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_INSERT] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_o] = ACTIONS(667), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [272] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(739), + [anon_sym_SLASH_BSLASH] = ACTIONS(741), + [anon_sym_COLON_COLON] = ACTIONS(661), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(755), + [anon_sym_NOTIN] = ACTIONS(757), + [anon_sym_u2208] = ACTIONS(755), + [anon_sym_IN] = ACTIONS(757), + [anon_sym_u227c] = ACTIONS(759), + [anon_sym_LT_LT_EQ] = ACTIONS(737), + [anon_sym_PERMUTES] = ACTIONS(737), + [anon_sym_HAS_SIZE] = ACTIONS(737), + [anon_sym_u2282] = ACTIONS(759), + [anon_sym_PSUBSET] = ACTIONS(737), + [anon_sym_u2286] = ACTIONS(737), + [anon_sym_u2265] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(737), + [anon_sym_u2264] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_u2286u1d63] = ACTIONS(759), + [anon_sym_RSUBSET] = ACTIONS(737), + [anon_sym_u2260] = ACTIONS(759), + [anon_sym_LT_GT] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_INSERT] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_o] = ACTIONS(667), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [273] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(661), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_o] = ACTIONS(667), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [274] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(739), + [anon_sym_SLASH_BSLASH] = ACTIONS(741), + [anon_sym_COLON_COLON] = ACTIONS(661), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(747), + [anon_sym_u21d2] = ACTIONS(749), + [anon_sym_BSLASH_SLASH] = ACTIONS(751), + [anon_sym_u2228] = ACTIONS(753), + [anon_sym_u2209] = ACTIONS(755), + [anon_sym_NOTIN] = ACTIONS(757), + [anon_sym_u2208] = ACTIONS(755), + [anon_sym_IN] = ACTIONS(757), + [anon_sym_u227c] = ACTIONS(759), + [anon_sym_LT_LT_EQ] = ACTIONS(737), + [anon_sym_PERMUTES] = ACTIONS(737), + [anon_sym_HAS_SIZE] = ACTIONS(737), + [anon_sym_u2282] = ACTIONS(759), + [anon_sym_PSUBSET] = ACTIONS(737), + [anon_sym_u2286] = ACTIONS(737), + [anon_sym_u2265] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(737), + [anon_sym_u2264] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_u2286u1d63] = ACTIONS(759), + [anon_sym_RSUBSET] = ACTIONS(737), + [anon_sym_u2260] = ACTIONS(759), + [anon_sym_LT_GT] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_INSERT] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_o] = ACTIONS(667), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [275] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(739), + [anon_sym_SLASH_BSLASH] = ACTIONS(741), + [anon_sym_COLON_COLON] = ACTIONS(661), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(751), + [anon_sym_u2228] = ACTIONS(753), + [anon_sym_u2209] = ACTIONS(755), + [anon_sym_NOTIN] = ACTIONS(757), + [anon_sym_u2208] = ACTIONS(755), + [anon_sym_IN] = ACTIONS(757), + [anon_sym_u227c] = ACTIONS(759), + [anon_sym_LT_LT_EQ] = ACTIONS(737), + [anon_sym_PERMUTES] = ACTIONS(737), + [anon_sym_HAS_SIZE] = ACTIONS(737), + [anon_sym_u2282] = ACTIONS(759), + [anon_sym_PSUBSET] = ACTIONS(737), + [anon_sym_u2286] = ACTIONS(737), + [anon_sym_u2265] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(737), + [anon_sym_u2264] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_u2286u1d63] = ACTIONS(759), + [anon_sym_RSUBSET] = ACTIONS(737), + [anon_sym_u2260] = ACTIONS(759), + [anon_sym_LT_GT] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_INSERT] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_o] = ACTIONS(667), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [276] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(739), + [anon_sym_SLASH_BSLASH] = ACTIONS(741), + [anon_sym_COLON_COLON] = ACTIONS(661), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(751), + [anon_sym_u2228] = ACTIONS(753), + [anon_sym_u2209] = ACTIONS(755), + [anon_sym_NOTIN] = ACTIONS(757), + [anon_sym_u2208] = ACTIONS(755), + [anon_sym_IN] = ACTIONS(757), + [anon_sym_u227c] = ACTIONS(759), + [anon_sym_LT_LT_EQ] = ACTIONS(737), + [anon_sym_PERMUTES] = ACTIONS(737), + [anon_sym_HAS_SIZE] = ACTIONS(737), + [anon_sym_u2282] = ACTIONS(759), + [anon_sym_PSUBSET] = ACTIONS(737), + [anon_sym_u2286] = ACTIONS(737), + [anon_sym_u2265] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(737), + [anon_sym_u2264] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_u2286u1d63] = ACTIONS(759), + [anon_sym_RSUBSET] = ACTIONS(737), + [anon_sym_u2260] = ACTIONS(759), + [anon_sym_LT_GT] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_INSERT] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_o] = ACTIONS(667), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [277] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(661), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(759), + [anon_sym_LT_LT_EQ] = ACTIONS(737), + [anon_sym_PERMUTES] = ACTIONS(737), + [anon_sym_HAS_SIZE] = ACTIONS(737), + [anon_sym_u2282] = ACTIONS(759), + [anon_sym_PSUBSET] = ACTIONS(737), + [anon_sym_u2286] = ACTIONS(737), + [anon_sym_u2265] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(737), + [anon_sym_u2264] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_u2286u1d63] = ACTIONS(759), + [anon_sym_RSUBSET] = ACTIONS(737), + [anon_sym_u2260] = ACTIONS(759), + [anon_sym_LT_GT] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_INSERT] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_o] = ACTIONS(667), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [278] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(667), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [279] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(667), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [280] = { + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_COLON] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_of] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(504), + [anon_sym_u2227] = ACTIONS(502), + [anon_sym_SLASH_BSLASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(504), + [sym__hol_alphanumeric] = ACTIONS(504), + [sym__hol_symbolic] = ACTIONS(504), + [anon_sym_OLEAST] = ACTIONS(504), + [anon_sym_LEAST] = ACTIONS(504), + [anon_sym_some] = ACTIONS(504), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(504), + [anon_sym_u2203_BANG] = ACTIONS(502), + [anon_sym_QMARK_BANG] = ACTIONS(504), + [anon_sym_u2203] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u2200] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_u03bb] = ACTIONS(502), + [anon_sym_BSLASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_u00ac] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_u21ce] = ACTIONS(502), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(504), + [anon_sym_LT_EQ_GT] = ACTIONS(504), + [anon_sym_u21d4] = ACTIONS(502), + [anon_sym_EQ_EQ_GT] = ACTIONS(504), + [anon_sym_u21d2] = ACTIONS(502), + [anon_sym_BSLASH_SLASH] = ACTIONS(504), + [anon_sym_u2228] = ACTIONS(502), + [anon_sym_u2209] = ACTIONS(502), + [anon_sym_NOTIN] = ACTIONS(504), + [anon_sym_u2208] = ACTIONS(502), + [anon_sym_IN] = ACTIONS(504), + [anon_sym_u227c] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_PERMUTES] = ACTIONS(504), + [anon_sym_HAS_SIZE] = ACTIONS(504), + [anon_sym_u2282] = ACTIONS(502), + [anon_sym_PSUBSET] = ACTIONS(504), + [anon_sym_u2286] = ACTIONS(504), + [anon_sym_u2265] = ACTIONS(502), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_u2264] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_u2286u1d63] = ACTIONS(502), + [anon_sym_RSUBSET] = ACTIONS(504), + [anon_sym_u2260] = ACTIONS(502), + [anon_sym_LT_GT] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(504), + [anon_sym_INSERT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_o] = ACTIONS(504), + [sym_hol_true] = ACTIONS(504), + [sym_hol_false] = ACTIONS(504), + [sym_hol_number] = ACTIONS(502), + [sym_hol_string] = ACTIONS(502), + [sym_hol_character] = ACTIONS(502), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [281] = { + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_of] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(508), + [anon_sym_u2227] = ACTIONS(506), + [anon_sym_SLASH_BSLASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(508), + [sym__hol_alphanumeric] = ACTIONS(508), + [sym__hol_symbolic] = ACTIONS(508), + [anon_sym_OLEAST] = ACTIONS(508), + [anon_sym_LEAST] = ACTIONS(508), + [anon_sym_some] = ACTIONS(508), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(508), + [anon_sym_u2203_BANG] = ACTIONS(506), + [anon_sym_QMARK_BANG] = ACTIONS(508), + [anon_sym_u2203] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u2200] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_u03bb] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_u00ac] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_u21ce] = ACTIONS(506), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(508), + [anon_sym_LT_EQ_GT] = ACTIONS(508), + [anon_sym_u21d4] = ACTIONS(506), + [anon_sym_EQ_EQ_GT] = ACTIONS(508), + [anon_sym_u21d2] = ACTIONS(506), + [anon_sym_BSLASH_SLASH] = ACTIONS(508), + [anon_sym_u2228] = ACTIONS(506), + [anon_sym_u2209] = ACTIONS(506), + [anon_sym_NOTIN] = ACTIONS(508), + [anon_sym_u2208] = ACTIONS(506), + [anon_sym_IN] = ACTIONS(508), + [anon_sym_u227c] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_PERMUTES] = ACTIONS(508), + [anon_sym_HAS_SIZE] = ACTIONS(508), + [anon_sym_u2282] = ACTIONS(506), + [anon_sym_PSUBSET] = ACTIONS(508), + [anon_sym_u2286] = ACTIONS(508), + [anon_sym_u2265] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_u2264] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_u2286u1d63] = ACTIONS(506), + [anon_sym_RSUBSET] = ACTIONS(508), + [anon_sym_u2260] = ACTIONS(506), + [anon_sym_LT_GT] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(508), + [anon_sym_INSERT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_o] = ACTIONS(508), + [sym_hol_true] = ACTIONS(508), + [sym_hol_false] = ACTIONS(508), + [sym_hol_number] = ACTIONS(506), + [sym_hol_string] = ACTIONS(506), + [sym_hol_character] = ACTIONS(506), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [282] = { + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_then] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_u2227] = ACTIONS(739), + [anon_sym_SLASH_BSLASH] = ACTIONS(741), + [anon_sym_COLON_COLON] = ACTIONS(661), + [sym__hol_alphanumeric] = ACTIONS(524), + [sym__hol_symbolic] = ACTIONS(524), + [anon_sym_OLEAST] = ACTIONS(524), + [anon_sym_LEAST] = ACTIONS(524), + [anon_sym_some] = ACTIONS(524), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(524), + [anon_sym_u2203_BANG] = ACTIONS(522), + [anon_sym_QMARK_BANG] = ACTIONS(524), + [anon_sym_u2203] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u2200] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_u03bb] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_u00ac] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_u21ce] = ACTIONS(743), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(745), + [anon_sym_LT_EQ_GT] = ACTIONS(745), + [anon_sym_u21d4] = ACTIONS(743), + [anon_sym_EQ_EQ_GT] = ACTIONS(747), + [anon_sym_u21d2] = ACTIONS(749), + [anon_sym_BSLASH_SLASH] = ACTIONS(751), + [anon_sym_u2228] = ACTIONS(753), + [anon_sym_u2209] = ACTIONS(755), + [anon_sym_NOTIN] = ACTIONS(757), + [anon_sym_u2208] = ACTIONS(755), + [anon_sym_IN] = ACTIONS(757), + [anon_sym_u227c] = ACTIONS(759), + [anon_sym_LT_LT_EQ] = ACTIONS(737), + [anon_sym_PERMUTES] = ACTIONS(737), + [anon_sym_HAS_SIZE] = ACTIONS(737), + [anon_sym_u2282] = ACTIONS(759), + [anon_sym_PSUBSET] = ACTIONS(737), + [anon_sym_u2286] = ACTIONS(737), + [anon_sym_u2265] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(737), + [anon_sym_u2264] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_u2286u1d63] = ACTIONS(759), + [anon_sym_RSUBSET] = ACTIONS(737), + [anon_sym_u2260] = ACTIONS(759), + [anon_sym_LT_GT] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_INSERT] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_o] = ACTIONS(667), + [sym_hol_true] = ACTIONS(524), + [sym_hol_false] = ACTIONS(524), + [sym_hol_number] = ACTIONS(522), + [sym_hol_string] = ACTIONS(522), + [sym_hol_character] = ACTIONS(522), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [283] = { + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_of] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_u2227] = ACTIONS(510), + [anon_sym_SLASH_BSLASH] = ACTIONS(512), + [anon_sym_COLON_COLON] = ACTIONS(512), + [sym__hol_alphanumeric] = ACTIONS(512), + [sym__hol_symbolic] = ACTIONS(512), + [anon_sym_OLEAST] = ACTIONS(512), + [anon_sym_LEAST] = ACTIONS(512), + [anon_sym_some] = ACTIONS(512), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(512), + [anon_sym_u2203_BANG] = ACTIONS(510), + [anon_sym_QMARK_BANG] = ACTIONS(512), + [anon_sym_u2203] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u2200] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_u03bb] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_u00ac] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_u21ce] = ACTIONS(510), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(512), + [anon_sym_LT_EQ_GT] = ACTIONS(512), + [anon_sym_u21d4] = ACTIONS(510), + [anon_sym_EQ_EQ_GT] = ACTIONS(512), + [anon_sym_u21d2] = ACTIONS(510), + [anon_sym_BSLASH_SLASH] = ACTIONS(512), + [anon_sym_u2228] = ACTIONS(510), + [anon_sym_u2209] = ACTIONS(510), + [anon_sym_NOTIN] = ACTIONS(512), + [anon_sym_u2208] = ACTIONS(510), + [anon_sym_IN] = ACTIONS(512), + [anon_sym_u227c] = ACTIONS(510), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_PERMUTES] = ACTIONS(512), + [anon_sym_HAS_SIZE] = ACTIONS(512), + [anon_sym_u2282] = ACTIONS(510), + [anon_sym_PSUBSET] = ACTIONS(512), + [anon_sym_u2286] = ACTIONS(512), + [anon_sym_u2265] = ACTIONS(510), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_u2264] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_u2286u1d63] = ACTIONS(510), + [anon_sym_RSUBSET] = ACTIONS(512), + [anon_sym_u2260] = ACTIONS(510), + [anon_sym_LT_GT] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_INSERT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_o] = ACTIONS(512), + [sym_hol_true] = ACTIONS(512), + [sym_hol_false] = ACTIONS(512), + [sym_hol_number] = ACTIONS(510), + [sym_hol_string] = ACTIONS(510), + [sym_hol_character] = ACTIONS(510), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [284] = { + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_of] = ACTIONS(516), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_u2227] = ACTIONS(514), + [anon_sym_SLASH_BSLASH] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(516), + [sym__hol_alphanumeric] = ACTIONS(516), + [sym__hol_symbolic] = ACTIONS(516), + [anon_sym_OLEAST] = ACTIONS(516), + [anon_sym_LEAST] = ACTIONS(516), + [anon_sym_some] = ACTIONS(516), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(516), + [anon_sym_u2203_BANG] = ACTIONS(514), + [anon_sym_QMARK_BANG] = ACTIONS(516), + [anon_sym_u2203] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_u2200] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_u03bb] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_u00ac] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_u21ce] = ACTIONS(514), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(516), + [anon_sym_LT_EQ_GT] = ACTIONS(516), + [anon_sym_u21d4] = ACTIONS(514), + [anon_sym_EQ_EQ_GT] = ACTIONS(516), + [anon_sym_u21d2] = ACTIONS(514), + [anon_sym_BSLASH_SLASH] = ACTIONS(516), + [anon_sym_u2228] = ACTIONS(514), + [anon_sym_u2209] = ACTIONS(514), + [anon_sym_NOTIN] = ACTIONS(516), + [anon_sym_u2208] = ACTIONS(514), + [anon_sym_IN] = ACTIONS(516), + [anon_sym_u227c] = ACTIONS(514), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_PERMUTES] = ACTIONS(516), + [anon_sym_HAS_SIZE] = ACTIONS(516), + [anon_sym_u2282] = ACTIONS(514), + [anon_sym_PSUBSET] = ACTIONS(516), + [anon_sym_u2286] = ACTIONS(516), + [anon_sym_u2265] = ACTIONS(514), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_u2264] = ACTIONS(514), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_u2286u1d63] = ACTIONS(514), + [anon_sym_RSUBSET] = ACTIONS(516), + [anon_sym_u2260] = ACTIONS(514), + [anon_sym_LT_GT] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_INSERT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_o] = ACTIONS(516), + [sym_hol_true] = ACTIONS(516), + [sym_hol_false] = ACTIONS(516), + [sym_hol_number] = ACTIONS(514), + [sym_hol_string] = ACTIONS(514), + [sym_hol_character] = ACTIONS(514), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [285] = { + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(737), + [anon_sym_COLON] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_if] = ACTIONS(438), + [anon_sym_then] = ACTIONS(438), + [anon_sym_case] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_u2227] = ACTIONS(739), + [anon_sym_SLASH_BSLASH] = ACTIONS(741), + [anon_sym_COLON_COLON] = ACTIONS(661), + [sym__hol_alphanumeric] = ACTIONS(438), + [sym__hol_symbolic] = ACTIONS(438), + [anon_sym_OLEAST] = ACTIONS(438), + [anon_sym_LEAST] = ACTIONS(438), + [anon_sym_some] = ACTIONS(438), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(438), + [anon_sym_u2203_BANG] = ACTIONS(432), + [anon_sym_QMARK_BANG] = ACTIONS(438), + [anon_sym_u2203] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_u2200] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_u03bb] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_u00ac] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_u21ce] = ACTIONS(743), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(745), + [anon_sym_LT_EQ_GT] = ACTIONS(745), + [anon_sym_u21d4] = ACTIONS(743), + [anon_sym_EQ_EQ_GT] = ACTIONS(747), + [anon_sym_u21d2] = ACTIONS(749), + [anon_sym_BSLASH_SLASH] = ACTIONS(751), + [anon_sym_u2228] = ACTIONS(753), + [anon_sym_u2209] = ACTIONS(755), + [anon_sym_NOTIN] = ACTIONS(757), + [anon_sym_u2208] = ACTIONS(755), + [anon_sym_IN] = ACTIONS(757), + [anon_sym_u227c] = ACTIONS(759), + [anon_sym_LT_LT_EQ] = ACTIONS(737), + [anon_sym_PERMUTES] = ACTIONS(737), + [anon_sym_HAS_SIZE] = ACTIONS(737), + [anon_sym_u2282] = ACTIONS(759), + [anon_sym_PSUBSET] = ACTIONS(737), + [anon_sym_u2286] = ACTIONS(737), + [anon_sym_u2265] = ACTIONS(759), + [anon_sym_GT_EQ] = ACTIONS(737), + [anon_sym_u2264] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(737), + [anon_sym_GT] = ACTIONS(737), + [anon_sym_LT] = ACTIONS(737), + [anon_sym_u2286u1d63] = ACTIONS(759), + [anon_sym_RSUBSET] = ACTIONS(737), + [anon_sym_u2260] = ACTIONS(759), + [anon_sym_LT_GT] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_INSERT] = ACTIONS(661), + [anon_sym_PLUS] = ACTIONS(665), + [anon_sym_o] = ACTIONS(667), + [sym_hol_true] = ACTIONS(438), + [sym_hol_false] = ACTIONS(438), + [sym_hol_number] = ACTIONS(432), + [sym_hol_string] = ACTIONS(432), + [sym_hol_character] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [286] = { + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_else] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_PIPE] = ACTIONS(476), + [anon_sym_u2227] = ACTIONS(474), + [anon_sym_SLASH_BSLASH] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(476), + [sym__hol_alphanumeric] = ACTIONS(476), + [sym__hol_symbolic] = ACTIONS(476), + [anon_sym_OLEAST] = ACTIONS(476), + [anon_sym_LEAST] = ACTIONS(476), + [anon_sym_some] = ACTIONS(476), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(476), + [anon_sym_u2203_BANG] = ACTIONS(474), + [anon_sym_QMARK_BANG] = ACTIONS(476), + [anon_sym_u2203] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u2200] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_u03bb] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_u00ac] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_u21ce] = ACTIONS(474), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(476), + [anon_sym_LT_EQ_GT] = ACTIONS(476), + [anon_sym_u21d4] = ACTIONS(474), + [anon_sym_EQ_EQ_GT] = ACTIONS(476), + [anon_sym_u21d2] = ACTIONS(474), + [anon_sym_BSLASH_SLASH] = ACTIONS(476), + [anon_sym_u2228] = ACTIONS(474), + [anon_sym_u2209] = ACTIONS(474), + [anon_sym_NOTIN] = ACTIONS(476), + [anon_sym_u2208] = ACTIONS(474), + [anon_sym_IN] = ACTIONS(476), + [anon_sym_u227c] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_PERMUTES] = ACTIONS(476), + [anon_sym_HAS_SIZE] = ACTIONS(476), + [anon_sym_u2282] = ACTIONS(474), + [anon_sym_PSUBSET] = ACTIONS(476), + [anon_sym_u2286] = ACTIONS(476), + [anon_sym_u2265] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_u2264] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_u2286u1d63] = ACTIONS(474), + [anon_sym_RSUBSET] = ACTIONS(476), + [anon_sym_u2260] = ACTIONS(474), + [anon_sym_LT_GT] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_INSERT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_o] = ACTIONS(476), + [sym_hol_true] = ACTIONS(476), + [sym_hol_false] = ACTIONS(476), + [sym_hol_number] = ACTIONS(474), + [sym_hol_string] = ACTIONS(474), + [sym_hol_character] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [287] = { + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACE] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_if] = ACTIONS(472), + [anon_sym_case] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_Proof] = ACTIONS(472), + [anon_sym_u2227] = ACTIONS(765), + [anon_sym_SLASH_BSLASH] = ACTIONS(767), + [anon_sym_COLON_COLON] = ACTIONS(769), + [sym__hol_alphanumeric] = ACTIONS(472), + [sym__hol_symbolic] = ACTIONS(472), + [anon_sym_OLEAST] = ACTIONS(472), + [anon_sym_LEAST] = ACTIONS(472), + [anon_sym_some] = ACTIONS(472), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(472), + [anon_sym_u2203_BANG] = ACTIONS(470), + [anon_sym_QMARK_BANG] = ACTIONS(472), + [anon_sym_u2203] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_u2200] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_AT] = ACTIONS(472), + [anon_sym_u03bb] = ACTIONS(470), + [anon_sym_BSLASH] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_u00ac] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(470), + [anon_sym_u21ce] = ACTIONS(771), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(773), + [anon_sym_LT_EQ_GT] = ACTIONS(773), + [anon_sym_u21d4] = ACTIONS(771), + [anon_sym_EQ_EQ_GT] = ACTIONS(775), + [anon_sym_u21d2] = ACTIONS(777), + [anon_sym_BSLASH_SLASH] = ACTIONS(779), + [anon_sym_u2228] = ACTIONS(781), + [anon_sym_u2209] = ACTIONS(783), + [anon_sym_NOTIN] = ACTIONS(785), + [anon_sym_u2208] = ACTIONS(783), + [anon_sym_IN] = ACTIONS(785), + [anon_sym_u227c] = ACTIONS(787), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_PERMUTES] = ACTIONS(761), + [anon_sym_HAS_SIZE] = ACTIONS(761), + [anon_sym_u2282] = ACTIONS(787), + [anon_sym_PSUBSET] = ACTIONS(761), + [anon_sym_u2286] = ACTIONS(761), + [anon_sym_u2265] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_u2264] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_u2286u1d63] = ACTIONS(787), + [anon_sym_RSUBSET] = ACTIONS(761), + [anon_sym_u2260] = ACTIONS(787), + [anon_sym_LT_GT] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_INSERT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_o] = ACTIONS(793), + [sym_hol_true] = ACTIONS(472), + [sym_hol_false] = ACTIONS(472), + [sym_hol_number] = ACTIONS(470), + [sym_hol_string] = ACTIONS(470), + [sym_hol_character] = ACTIONS(470), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [288] = { + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_if] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_Proof] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(89), + [sym__hol_symbolic] = ACTIONS(89), + [anon_sym_OLEAST] = ACTIONS(89), + [anon_sym_LEAST] = ACTIONS(89), + [anon_sym_some] = ACTIONS(89), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(89), + [anon_sym_u2203_BANG] = ACTIONS(85), + [anon_sym_QMARK_BANG] = ACTIONS(89), + [anon_sym_u2203] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(89), + [anon_sym_u2200] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_u03bb] = ACTIONS(85), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_u00ac] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(89), + [sym_hol_false] = ACTIONS(89), + [sym_hol_number] = ACTIONS(85), + [sym_hol_string] = ACTIONS(85), + [sym_hol_character] = ACTIONS(85), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [289] = { + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_if] = ACTIONS(480), + [anon_sym_case] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_Proof] = ACTIONS(480), + [anon_sym_u2227] = ACTIONS(478), + [anon_sym_SLASH_BSLASH] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(480), + [sym__hol_alphanumeric] = ACTIONS(480), + [sym__hol_symbolic] = ACTIONS(480), + [anon_sym_OLEAST] = ACTIONS(480), + [anon_sym_LEAST] = ACTIONS(480), + [anon_sym_some] = ACTIONS(480), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(480), + [anon_sym_u2203_BANG] = ACTIONS(478), + [anon_sym_QMARK_BANG] = ACTIONS(480), + [anon_sym_u2203] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u2200] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_u03bb] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_u00ac] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_u21ce] = ACTIONS(478), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(480), + [anon_sym_LT_EQ_GT] = ACTIONS(480), + [anon_sym_u21d4] = ACTIONS(478), + [anon_sym_EQ_EQ_GT] = ACTIONS(480), + [anon_sym_u21d2] = ACTIONS(478), + [anon_sym_BSLASH_SLASH] = ACTIONS(480), + [anon_sym_u2228] = ACTIONS(478), + [anon_sym_u2209] = ACTIONS(478), + [anon_sym_NOTIN] = ACTIONS(480), + [anon_sym_u2208] = ACTIONS(478), + [anon_sym_IN] = ACTIONS(480), + [anon_sym_u227c] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_PERMUTES] = ACTIONS(480), + [anon_sym_HAS_SIZE] = ACTIONS(480), + [anon_sym_u2282] = ACTIONS(478), + [anon_sym_PSUBSET] = ACTIONS(480), + [anon_sym_u2286] = ACTIONS(480), + [anon_sym_u2265] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_u2264] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_u2286u1d63] = ACTIONS(478), + [anon_sym_RSUBSET] = ACTIONS(480), + [anon_sym_u2260] = ACTIONS(478), + [anon_sym_LT_GT] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_INSERT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_o] = ACTIONS(480), + [sym_hol_true] = ACTIONS(480), + [sym_hol_false] = ACTIONS(480), + [sym_hol_number] = ACTIONS(478), + [sym_hol_string] = ACTIONS(478), + [sym_hol_character] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [290] = { + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_if] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_Proof] = ACTIONS(484), + [anon_sym_u2227] = ACTIONS(482), + [anon_sym_SLASH_BSLASH] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(484), + [sym__hol_alphanumeric] = ACTIONS(484), + [sym__hol_symbolic] = ACTIONS(484), + [anon_sym_OLEAST] = ACTIONS(484), + [anon_sym_LEAST] = ACTIONS(484), + [anon_sym_some] = ACTIONS(484), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(484), + [anon_sym_u2203_BANG] = ACTIONS(482), + [anon_sym_QMARK_BANG] = ACTIONS(484), + [anon_sym_u2203] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u2200] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_u03bb] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_u00ac] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_u21ce] = ACTIONS(482), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(484), + [anon_sym_LT_EQ_GT] = ACTIONS(484), + [anon_sym_u21d4] = ACTIONS(482), + [anon_sym_EQ_EQ_GT] = ACTIONS(484), + [anon_sym_u21d2] = ACTIONS(482), + [anon_sym_BSLASH_SLASH] = ACTIONS(484), + [anon_sym_u2228] = ACTIONS(482), + [anon_sym_u2209] = ACTIONS(482), + [anon_sym_NOTIN] = ACTIONS(484), + [anon_sym_u2208] = ACTIONS(482), + [anon_sym_IN] = ACTIONS(484), + [anon_sym_u227c] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_PERMUTES] = ACTIONS(484), + [anon_sym_HAS_SIZE] = ACTIONS(484), + [anon_sym_u2282] = ACTIONS(482), + [anon_sym_PSUBSET] = ACTIONS(484), + [anon_sym_u2286] = ACTIONS(484), + [anon_sym_u2265] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_u2264] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_u2286u1d63] = ACTIONS(482), + [anon_sym_RSUBSET] = ACTIONS(484), + [anon_sym_u2260] = ACTIONS(482), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_INSERT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_o] = ACTIONS(484), + [sym_hol_true] = ACTIONS(484), + [sym_hol_false] = ACTIONS(484), + [sym_hol_number] = ACTIONS(482), + [sym_hol_string] = ACTIONS(482), + [sym_hol_character] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [291] = { + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_Proof] = ACTIONS(419), + [anon_sym_u2227] = ACTIONS(417), + [anon_sym_SLASH_BSLASH] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(419), + [sym__hol_alphanumeric] = ACTIONS(419), + [sym__hol_symbolic] = ACTIONS(419), + [anon_sym_OLEAST] = ACTIONS(419), + [anon_sym_LEAST] = ACTIONS(419), + [anon_sym_some] = ACTIONS(419), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(419), + [anon_sym_u2203_BANG] = ACTIONS(417), + [anon_sym_QMARK_BANG] = ACTIONS(419), + [anon_sym_u2203] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u2200] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_u03bb] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_u00ac] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_u21ce] = ACTIONS(417), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(419), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_u21d4] = ACTIONS(417), + [anon_sym_EQ_EQ_GT] = ACTIONS(419), + [anon_sym_u21d2] = ACTIONS(417), + [anon_sym_BSLASH_SLASH] = ACTIONS(419), + [anon_sym_u2228] = ACTIONS(417), + [anon_sym_u2209] = ACTIONS(417), + [anon_sym_NOTIN] = ACTIONS(419), + [anon_sym_u2208] = ACTIONS(417), + [anon_sym_IN] = ACTIONS(419), + [anon_sym_u227c] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_PERMUTES] = ACTIONS(419), + [anon_sym_HAS_SIZE] = ACTIONS(419), + [anon_sym_u2282] = ACTIONS(417), + [anon_sym_PSUBSET] = ACTIONS(419), + [anon_sym_u2286] = ACTIONS(419), + [anon_sym_u2265] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_u2264] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_u2286u1d63] = ACTIONS(417), + [anon_sym_RSUBSET] = ACTIONS(419), + [anon_sym_u2260] = ACTIONS(417), + [anon_sym_LT_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_INSERT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_o] = ACTIONS(419), + [sym_hol_true] = ACTIONS(419), + [sym_hol_false] = ACTIONS(419), + [sym_hol_number] = ACTIONS(417), + [sym_hol_string] = ACTIONS(417), + [sym_hol_character] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [292] = { + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_if] = ACTIONS(488), + [anon_sym_case] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_Proof] = ACTIONS(488), + [anon_sym_u2227] = ACTIONS(486), + [anon_sym_SLASH_BSLASH] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(488), + [sym__hol_alphanumeric] = ACTIONS(488), + [sym__hol_symbolic] = ACTIONS(488), + [anon_sym_OLEAST] = ACTIONS(488), + [anon_sym_LEAST] = ACTIONS(488), + [anon_sym_some] = ACTIONS(488), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(488), + [anon_sym_u2203_BANG] = ACTIONS(486), + [anon_sym_QMARK_BANG] = ACTIONS(488), + [anon_sym_u2203] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u2200] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_u03bb] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_u00ac] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_u21ce] = ACTIONS(486), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(488), + [anon_sym_LT_EQ_GT] = ACTIONS(488), + [anon_sym_u21d4] = ACTIONS(486), + [anon_sym_EQ_EQ_GT] = ACTIONS(488), + [anon_sym_u21d2] = ACTIONS(486), + [anon_sym_BSLASH_SLASH] = ACTIONS(488), + [anon_sym_u2228] = ACTIONS(486), + [anon_sym_u2209] = ACTIONS(486), + [anon_sym_NOTIN] = ACTIONS(488), + [anon_sym_u2208] = ACTIONS(486), + [anon_sym_IN] = ACTIONS(488), + [anon_sym_u227c] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_PERMUTES] = ACTIONS(488), + [anon_sym_HAS_SIZE] = ACTIONS(488), + [anon_sym_u2282] = ACTIONS(486), + [anon_sym_PSUBSET] = ACTIONS(488), + [anon_sym_u2286] = ACTIONS(488), + [anon_sym_u2265] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_u2264] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_u2286u1d63] = ACTIONS(486), + [anon_sym_RSUBSET] = ACTIONS(488), + [anon_sym_u2260] = ACTIONS(486), + [anon_sym_LT_GT] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_INSERT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_o] = ACTIONS(488), + [sym_hol_true] = ACTIONS(488), + [sym_hol_false] = ACTIONS(488), + [sym_hol_number] = ACTIONS(486), + [sym_hol_string] = ACTIONS(486), + [sym_hol_character] = ACTIONS(486), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [293] = { + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_if] = ACTIONS(430), + [anon_sym_case] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_Proof] = ACTIONS(430), + [anon_sym_u2227] = ACTIONS(428), + [anon_sym_SLASH_BSLASH] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(430), + [sym__hol_alphanumeric] = ACTIONS(430), + [sym__hol_symbolic] = ACTIONS(430), + [anon_sym_OLEAST] = ACTIONS(430), + [anon_sym_LEAST] = ACTIONS(430), + [anon_sym_some] = ACTIONS(430), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(430), + [anon_sym_u2203_BANG] = ACTIONS(428), + [anon_sym_QMARK_BANG] = ACTIONS(430), + [anon_sym_u2203] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u2200] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_u03bb] = ACTIONS(428), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_u00ac] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_u21ce] = ACTIONS(428), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(430), + [anon_sym_LT_EQ_GT] = ACTIONS(430), + [anon_sym_u21d4] = ACTIONS(428), + [anon_sym_EQ_EQ_GT] = ACTIONS(430), + [anon_sym_u21d2] = ACTIONS(428), + [anon_sym_BSLASH_SLASH] = ACTIONS(430), + [anon_sym_u2228] = ACTIONS(428), + [anon_sym_u2209] = ACTIONS(428), + [anon_sym_NOTIN] = ACTIONS(430), + [anon_sym_u2208] = ACTIONS(428), + [anon_sym_IN] = ACTIONS(430), + [anon_sym_u227c] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_PERMUTES] = ACTIONS(430), + [anon_sym_HAS_SIZE] = ACTIONS(430), + [anon_sym_u2282] = ACTIONS(428), + [anon_sym_PSUBSET] = ACTIONS(430), + [anon_sym_u2286] = ACTIONS(430), + [anon_sym_u2265] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_u2264] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_u2286u1d63] = ACTIONS(428), + [anon_sym_RSUBSET] = ACTIONS(430), + [anon_sym_u2260] = ACTIONS(428), + [anon_sym_LT_GT] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(430), + [anon_sym_INSERT] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_o] = ACTIONS(430), + [sym_hol_true] = ACTIONS(430), + [sym_hol_false] = ACTIONS(430), + [sym_hol_number] = ACTIONS(428), + [sym_hol_string] = ACTIONS(428), + [sym_hol_character] = ACTIONS(428), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [294] = { + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_End] = ACTIONS(476), + [anon_sym_Termination] = ACTIONS(476), + [anon_sym_u2227] = ACTIONS(474), + [anon_sym_SLASH_BSLASH] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(476), + [sym__hol_alphanumeric] = ACTIONS(476), + [sym__hol_symbolic] = ACTIONS(476), + [anon_sym_OLEAST] = ACTIONS(476), + [anon_sym_LEAST] = ACTIONS(476), + [anon_sym_some] = ACTIONS(476), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(476), + [anon_sym_u2203_BANG] = ACTIONS(474), + [anon_sym_QMARK_BANG] = ACTIONS(476), + [anon_sym_u2203] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u2200] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_u03bb] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_u00ac] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_u21ce] = ACTIONS(474), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(476), + [anon_sym_LT_EQ_GT] = ACTIONS(476), + [anon_sym_u21d4] = ACTIONS(474), + [anon_sym_EQ_EQ_GT] = ACTIONS(476), + [anon_sym_u21d2] = ACTIONS(474), + [anon_sym_BSLASH_SLASH] = ACTIONS(476), + [anon_sym_u2228] = ACTIONS(474), + [anon_sym_u2209] = ACTIONS(474), + [anon_sym_NOTIN] = ACTIONS(476), + [anon_sym_u2208] = ACTIONS(474), + [anon_sym_IN] = ACTIONS(476), + [anon_sym_u227c] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_PERMUTES] = ACTIONS(476), + [anon_sym_HAS_SIZE] = ACTIONS(476), + [anon_sym_u2282] = ACTIONS(474), + [anon_sym_PSUBSET] = ACTIONS(476), + [anon_sym_u2286] = ACTIONS(476), + [anon_sym_u2265] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_u2264] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_u2286u1d63] = ACTIONS(474), + [anon_sym_RSUBSET] = ACTIONS(476), + [anon_sym_u2260] = ACTIONS(474), + [anon_sym_LT_GT] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_INSERT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_o] = ACTIONS(476), + [sym_hol_true] = ACTIONS(476), + [sym_hol_false] = ACTIONS(476), + [sym_hol_number] = ACTIONS(474), + [sym_hol_string] = ACTIONS(474), + [sym_hol_character] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [295] = { + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_if] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_Proof] = ACTIONS(492), + [anon_sym_u2227] = ACTIONS(490), + [anon_sym_SLASH_BSLASH] = ACTIONS(492), + [anon_sym_COLON_COLON] = ACTIONS(492), + [sym__hol_alphanumeric] = ACTIONS(492), + [sym__hol_symbolic] = ACTIONS(492), + [anon_sym_OLEAST] = ACTIONS(492), + [anon_sym_LEAST] = ACTIONS(492), + [anon_sym_some] = ACTIONS(492), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(492), + [anon_sym_u2203_BANG] = ACTIONS(490), + [anon_sym_QMARK_BANG] = ACTIONS(492), + [anon_sym_u2203] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u2200] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_u03bb] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_u00ac] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_u21ce] = ACTIONS(490), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(492), + [anon_sym_LT_EQ_GT] = ACTIONS(492), + [anon_sym_u21d4] = ACTIONS(490), + [anon_sym_EQ_EQ_GT] = ACTIONS(492), + [anon_sym_u21d2] = ACTIONS(490), + [anon_sym_BSLASH_SLASH] = ACTIONS(492), + [anon_sym_u2228] = ACTIONS(490), + [anon_sym_u2209] = ACTIONS(490), + [anon_sym_NOTIN] = ACTIONS(492), + [anon_sym_u2208] = ACTIONS(490), + [anon_sym_IN] = ACTIONS(492), + [anon_sym_u227c] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_PERMUTES] = ACTIONS(492), + [anon_sym_HAS_SIZE] = ACTIONS(492), + [anon_sym_u2282] = ACTIONS(490), + [anon_sym_PSUBSET] = ACTIONS(492), + [anon_sym_u2286] = ACTIONS(492), + [anon_sym_u2265] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_u2264] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_u2286u1d63] = ACTIONS(490), + [anon_sym_RSUBSET] = ACTIONS(492), + [anon_sym_u2260] = ACTIONS(490), + [anon_sym_LT_GT] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_INSERT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_o] = ACTIONS(492), + [sym_hol_true] = ACTIONS(492), + [sym_hol_false] = ACTIONS(492), + [sym_hol_number] = ACTIONS(490), + [sym_hol_string] = ACTIONS(490), + [sym_hol_character] = ACTIONS(490), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [296] = { + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_if] = ACTIONS(496), + [anon_sym_case] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(496), + [anon_sym_Proof] = ACTIONS(496), + [anon_sym_u2227] = ACTIONS(494), + [anon_sym_SLASH_BSLASH] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(496), + [sym__hol_alphanumeric] = ACTIONS(496), + [sym__hol_symbolic] = ACTIONS(496), + [anon_sym_OLEAST] = ACTIONS(496), + [anon_sym_LEAST] = ACTIONS(496), + [anon_sym_some] = ACTIONS(496), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(496), + [anon_sym_u2203_BANG] = ACTIONS(494), + [anon_sym_QMARK_BANG] = ACTIONS(496), + [anon_sym_u2203] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u2200] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_u03bb] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_u00ac] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_u21ce] = ACTIONS(494), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(496), + [anon_sym_LT_EQ_GT] = ACTIONS(496), + [anon_sym_u21d4] = ACTIONS(494), + [anon_sym_EQ_EQ_GT] = ACTIONS(496), + [anon_sym_u21d2] = ACTIONS(494), + [anon_sym_BSLASH_SLASH] = ACTIONS(496), + [anon_sym_u2228] = ACTIONS(494), + [anon_sym_u2209] = ACTIONS(494), + [anon_sym_NOTIN] = ACTIONS(496), + [anon_sym_u2208] = ACTIONS(494), + [anon_sym_IN] = ACTIONS(496), + [anon_sym_u227c] = ACTIONS(494), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_PERMUTES] = ACTIONS(496), + [anon_sym_HAS_SIZE] = ACTIONS(496), + [anon_sym_u2282] = ACTIONS(494), + [anon_sym_PSUBSET] = ACTIONS(496), + [anon_sym_u2286] = ACTIONS(496), + [anon_sym_u2265] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_u2264] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_u2286u1d63] = ACTIONS(494), + [anon_sym_RSUBSET] = ACTIONS(496), + [anon_sym_u2260] = ACTIONS(494), + [anon_sym_LT_GT] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(496), + [anon_sym_INSERT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_o] = ACTIONS(496), + [sym_hol_true] = ACTIONS(496), + [sym_hol_false] = ACTIONS(496), + [sym_hol_number] = ACTIONS(494), + [sym_hol_string] = ACTIONS(494), + [sym_hol_character] = ACTIONS(494), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [297] = { + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_Proof] = ACTIONS(500), + [anon_sym_u2227] = ACTIONS(498), + [anon_sym_SLASH_BSLASH] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(500), + [sym__hol_alphanumeric] = ACTIONS(500), + [sym__hol_symbolic] = ACTIONS(500), + [anon_sym_OLEAST] = ACTIONS(500), + [anon_sym_LEAST] = ACTIONS(500), + [anon_sym_some] = ACTIONS(500), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(500), + [anon_sym_u2203_BANG] = ACTIONS(498), + [anon_sym_QMARK_BANG] = ACTIONS(500), + [anon_sym_u2203] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u2200] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_u03bb] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_u00ac] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_u21ce] = ACTIONS(498), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(500), + [anon_sym_LT_EQ_GT] = ACTIONS(500), + [anon_sym_u21d4] = ACTIONS(498), + [anon_sym_EQ_EQ_GT] = ACTIONS(500), + [anon_sym_u21d2] = ACTIONS(498), + [anon_sym_BSLASH_SLASH] = ACTIONS(500), + [anon_sym_u2228] = ACTIONS(498), + [anon_sym_u2209] = ACTIONS(498), + [anon_sym_NOTIN] = ACTIONS(500), + [anon_sym_u2208] = ACTIONS(498), + [anon_sym_IN] = ACTIONS(500), + [anon_sym_u227c] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_PERMUTES] = ACTIONS(500), + [anon_sym_HAS_SIZE] = ACTIONS(500), + [anon_sym_u2282] = ACTIONS(498), + [anon_sym_PSUBSET] = ACTIONS(500), + [anon_sym_u2286] = ACTIONS(500), + [anon_sym_u2265] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_u2264] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_u2286u1d63] = ACTIONS(498), + [anon_sym_RSUBSET] = ACTIONS(500), + [anon_sym_u2260] = ACTIONS(498), + [anon_sym_LT_GT] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_INSERT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_o] = ACTIONS(500), + [sym_hol_true] = ACTIONS(500), + [sym_hol_false] = ACTIONS(500), + [sym_hol_number] = ACTIONS(498), + [sym_hol_string] = ACTIONS(498), + [sym_hol_character] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [298] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(677), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_INSERT] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_o] = ACTIONS(701), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [299] = { + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_End] = ACTIONS(500), + [anon_sym_Termination] = ACTIONS(500), + [anon_sym_u2227] = ACTIONS(498), + [anon_sym_SLASH_BSLASH] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(500), + [sym__hol_alphanumeric] = ACTIONS(500), + [sym__hol_symbolic] = ACTIONS(500), + [anon_sym_OLEAST] = ACTIONS(500), + [anon_sym_LEAST] = ACTIONS(500), + [anon_sym_some] = ACTIONS(500), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(500), + [anon_sym_u2203_BANG] = ACTIONS(498), + [anon_sym_QMARK_BANG] = ACTIONS(500), + [anon_sym_u2203] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u2200] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_u03bb] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_u00ac] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_u21ce] = ACTIONS(498), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(500), + [anon_sym_LT_EQ_GT] = ACTIONS(500), + [anon_sym_u21d4] = ACTIONS(498), + [anon_sym_EQ_EQ_GT] = ACTIONS(500), + [anon_sym_u21d2] = ACTIONS(498), + [anon_sym_BSLASH_SLASH] = ACTIONS(500), + [anon_sym_u2228] = ACTIONS(498), + [anon_sym_u2209] = ACTIONS(498), + [anon_sym_NOTIN] = ACTIONS(500), + [anon_sym_u2208] = ACTIONS(498), + [anon_sym_IN] = ACTIONS(500), + [anon_sym_u227c] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_PERMUTES] = ACTIONS(500), + [anon_sym_HAS_SIZE] = ACTIONS(500), + [anon_sym_u2282] = ACTIONS(498), + [anon_sym_PSUBSET] = ACTIONS(500), + [anon_sym_u2286] = ACTIONS(500), + [anon_sym_u2265] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_u2264] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_u2286u1d63] = ACTIONS(498), + [anon_sym_RSUBSET] = ACTIONS(500), + [anon_sym_u2260] = ACTIONS(498), + [anon_sym_LT_GT] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_INSERT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_o] = ACTIONS(500), + [sym_hol_true] = ACTIONS(500), + [sym_hol_false] = ACTIONS(500), + [sym_hol_number] = ACTIONS(498), + [sym_hol_string] = ACTIONS(498), + [sym_hol_character] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [300] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(677), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_o] = ACTIONS(701), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [301] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(673), + [anon_sym_SLASH_BSLASH] = ACTIONS(675), + [anon_sym_COLON_COLON] = ACTIONS(677), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(683), + [anon_sym_u21d2] = ACTIONS(685), + [anon_sym_BSLASH_SLASH] = ACTIONS(687), + [anon_sym_u2228] = ACTIONS(689), + [anon_sym_u2209] = ACTIONS(691), + [anon_sym_NOTIN] = ACTIONS(693), + [anon_sym_u2208] = ACTIONS(691), + [anon_sym_IN] = ACTIONS(693), + [anon_sym_u227c] = ACTIONS(695), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_PERMUTES] = ACTIONS(669), + [anon_sym_HAS_SIZE] = ACTIONS(669), + [anon_sym_u2282] = ACTIONS(695), + [anon_sym_PSUBSET] = ACTIONS(669), + [anon_sym_u2286] = ACTIONS(669), + [anon_sym_u2265] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(669), + [anon_sym_u2264] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_u2286u1d63] = ACTIONS(695), + [anon_sym_RSUBSET] = ACTIONS(669), + [anon_sym_u2260] = ACTIONS(695), + [anon_sym_LT_GT] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_INSERT] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_o] = ACTIONS(701), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [302] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(673), + [anon_sym_SLASH_BSLASH] = ACTIONS(675), + [anon_sym_COLON_COLON] = ACTIONS(677), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(687), + [anon_sym_u2228] = ACTIONS(689), + [anon_sym_u2209] = ACTIONS(691), + [anon_sym_NOTIN] = ACTIONS(693), + [anon_sym_u2208] = ACTIONS(691), + [anon_sym_IN] = ACTIONS(693), + [anon_sym_u227c] = ACTIONS(695), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_PERMUTES] = ACTIONS(669), + [anon_sym_HAS_SIZE] = ACTIONS(669), + [anon_sym_u2282] = ACTIONS(695), + [anon_sym_PSUBSET] = ACTIONS(669), + [anon_sym_u2286] = ACTIONS(669), + [anon_sym_u2265] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(669), + [anon_sym_u2264] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_u2286u1d63] = ACTIONS(695), + [anon_sym_RSUBSET] = ACTIONS(669), + [anon_sym_u2260] = ACTIONS(695), + [anon_sym_LT_GT] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_INSERT] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_o] = ACTIONS(701), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [303] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(673), + [anon_sym_SLASH_BSLASH] = ACTIONS(675), + [anon_sym_COLON_COLON] = ACTIONS(677), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(687), + [anon_sym_u2228] = ACTIONS(689), + [anon_sym_u2209] = ACTIONS(691), + [anon_sym_NOTIN] = ACTIONS(693), + [anon_sym_u2208] = ACTIONS(691), + [anon_sym_IN] = ACTIONS(693), + [anon_sym_u227c] = ACTIONS(695), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_PERMUTES] = ACTIONS(669), + [anon_sym_HAS_SIZE] = ACTIONS(669), + [anon_sym_u2282] = ACTIONS(695), + [anon_sym_PSUBSET] = ACTIONS(669), + [anon_sym_u2286] = ACTIONS(669), + [anon_sym_u2265] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(669), + [anon_sym_u2264] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_u2286u1d63] = ACTIONS(695), + [anon_sym_RSUBSET] = ACTIONS(669), + [anon_sym_u2260] = ACTIONS(695), + [anon_sym_LT_GT] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_INSERT] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_o] = ACTIONS(701), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [304] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(677), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(695), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_PERMUTES] = ACTIONS(669), + [anon_sym_HAS_SIZE] = ACTIONS(669), + [anon_sym_u2282] = ACTIONS(695), + [anon_sym_PSUBSET] = ACTIONS(669), + [anon_sym_u2286] = ACTIONS(669), + [anon_sym_u2265] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(669), + [anon_sym_u2264] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_u2286u1d63] = ACTIONS(695), + [anon_sym_RSUBSET] = ACTIONS(669), + [anon_sym_u2260] = ACTIONS(695), + [anon_sym_LT_GT] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_INSERT] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_o] = ACTIONS(701), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [305] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(677), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_INSERT] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_o] = ACTIONS(701), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [306] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(701), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [307] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(701), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [308] = { + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_COLON] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(504), + [anon_sym_Proof] = ACTIONS(504), + [anon_sym_u2227] = ACTIONS(502), + [anon_sym_SLASH_BSLASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(504), + [sym__hol_alphanumeric] = ACTIONS(504), + [sym__hol_symbolic] = ACTIONS(504), + [anon_sym_OLEAST] = ACTIONS(504), + [anon_sym_LEAST] = ACTIONS(504), + [anon_sym_some] = ACTIONS(504), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(504), + [anon_sym_u2203_BANG] = ACTIONS(502), + [anon_sym_QMARK_BANG] = ACTIONS(504), + [anon_sym_u2203] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u2200] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_u03bb] = ACTIONS(502), + [anon_sym_BSLASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_u00ac] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_u21ce] = ACTIONS(502), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(504), + [anon_sym_LT_EQ_GT] = ACTIONS(504), + [anon_sym_u21d4] = ACTIONS(502), + [anon_sym_EQ_EQ_GT] = ACTIONS(504), + [anon_sym_u21d2] = ACTIONS(502), + [anon_sym_BSLASH_SLASH] = ACTIONS(504), + [anon_sym_u2228] = ACTIONS(502), + [anon_sym_u2209] = ACTIONS(502), + [anon_sym_NOTIN] = ACTIONS(504), + [anon_sym_u2208] = ACTIONS(502), + [anon_sym_IN] = ACTIONS(504), + [anon_sym_u227c] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_PERMUTES] = ACTIONS(504), + [anon_sym_HAS_SIZE] = ACTIONS(504), + [anon_sym_u2282] = ACTIONS(502), + [anon_sym_PSUBSET] = ACTIONS(504), + [anon_sym_u2286] = ACTIONS(504), + [anon_sym_u2265] = ACTIONS(502), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_u2264] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_u2286u1d63] = ACTIONS(502), + [anon_sym_RSUBSET] = ACTIONS(504), + [anon_sym_u2260] = ACTIONS(502), + [anon_sym_LT_GT] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(504), + [anon_sym_INSERT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_o] = ACTIONS(504), + [sym_hol_true] = ACTIONS(504), + [sym_hol_false] = ACTIONS(504), + [sym_hol_number] = ACTIONS(502), + [sym_hol_string] = ACTIONS(502), + [sym_hol_character] = ACTIONS(502), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [309] = { + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(508), + [anon_sym_Proof] = ACTIONS(508), + [anon_sym_u2227] = ACTIONS(506), + [anon_sym_SLASH_BSLASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(508), + [sym__hol_alphanumeric] = ACTIONS(508), + [sym__hol_symbolic] = ACTIONS(508), + [anon_sym_OLEAST] = ACTIONS(508), + [anon_sym_LEAST] = ACTIONS(508), + [anon_sym_some] = ACTIONS(508), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(508), + [anon_sym_u2203_BANG] = ACTIONS(506), + [anon_sym_QMARK_BANG] = ACTIONS(508), + [anon_sym_u2203] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u2200] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_u03bb] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_u00ac] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_u21ce] = ACTIONS(506), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(508), + [anon_sym_LT_EQ_GT] = ACTIONS(508), + [anon_sym_u21d4] = ACTIONS(506), + [anon_sym_EQ_EQ_GT] = ACTIONS(508), + [anon_sym_u21d2] = ACTIONS(506), + [anon_sym_BSLASH_SLASH] = ACTIONS(508), + [anon_sym_u2228] = ACTIONS(506), + [anon_sym_u2209] = ACTIONS(506), + [anon_sym_NOTIN] = ACTIONS(508), + [anon_sym_u2208] = ACTIONS(506), + [anon_sym_IN] = ACTIONS(508), + [anon_sym_u227c] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_PERMUTES] = ACTIONS(508), + [anon_sym_HAS_SIZE] = ACTIONS(508), + [anon_sym_u2282] = ACTIONS(506), + [anon_sym_PSUBSET] = ACTIONS(508), + [anon_sym_u2286] = ACTIONS(508), + [anon_sym_u2265] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_u2264] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_u2286u1d63] = ACTIONS(506), + [anon_sym_RSUBSET] = ACTIONS(508), + [anon_sym_u2260] = ACTIONS(506), + [anon_sym_LT_GT] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(508), + [anon_sym_INSERT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_o] = ACTIONS(508), + [sym_hol_true] = ACTIONS(508), + [sym_hol_false] = ACTIONS(508), + [sym_hol_number] = ACTIONS(506), + [sym_hol_string] = ACTIONS(506), + [sym_hol_character] = ACTIONS(506), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [310] = { + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_of] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_u2227] = ACTIONS(673), + [anon_sym_SLASH_BSLASH] = ACTIONS(675), + [anon_sym_COLON_COLON] = ACTIONS(677), + [sym__hol_alphanumeric] = ACTIONS(524), + [sym__hol_symbolic] = ACTIONS(524), + [anon_sym_OLEAST] = ACTIONS(524), + [anon_sym_LEAST] = ACTIONS(524), + [anon_sym_some] = ACTIONS(524), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(524), + [anon_sym_u2203_BANG] = ACTIONS(522), + [anon_sym_QMARK_BANG] = ACTIONS(524), + [anon_sym_u2203] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u2200] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_u03bb] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_u00ac] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_u21ce] = ACTIONS(679), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(681), + [anon_sym_LT_EQ_GT] = ACTIONS(681), + [anon_sym_u21d4] = ACTIONS(679), + [anon_sym_EQ_EQ_GT] = ACTIONS(683), + [anon_sym_u21d2] = ACTIONS(685), + [anon_sym_BSLASH_SLASH] = ACTIONS(687), + [anon_sym_u2228] = ACTIONS(689), + [anon_sym_u2209] = ACTIONS(691), + [anon_sym_NOTIN] = ACTIONS(693), + [anon_sym_u2208] = ACTIONS(691), + [anon_sym_IN] = ACTIONS(693), + [anon_sym_u227c] = ACTIONS(695), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_PERMUTES] = ACTIONS(669), + [anon_sym_HAS_SIZE] = ACTIONS(669), + [anon_sym_u2282] = ACTIONS(695), + [anon_sym_PSUBSET] = ACTIONS(669), + [anon_sym_u2286] = ACTIONS(669), + [anon_sym_u2265] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(669), + [anon_sym_u2264] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_u2286u1d63] = ACTIONS(695), + [anon_sym_RSUBSET] = ACTIONS(669), + [anon_sym_u2260] = ACTIONS(695), + [anon_sym_LT_GT] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_INSERT] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_o] = ACTIONS(701), + [sym_hol_true] = ACTIONS(524), + [sym_hol_false] = ACTIONS(524), + [sym_hol_number] = ACTIONS(522), + [sym_hol_string] = ACTIONS(522), + [sym_hol_character] = ACTIONS(522), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [311] = { + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_Proof] = ACTIONS(512), + [anon_sym_u2227] = ACTIONS(510), + [anon_sym_SLASH_BSLASH] = ACTIONS(512), + [anon_sym_COLON_COLON] = ACTIONS(512), + [sym__hol_alphanumeric] = ACTIONS(512), + [sym__hol_symbolic] = ACTIONS(512), + [anon_sym_OLEAST] = ACTIONS(512), + [anon_sym_LEAST] = ACTIONS(512), + [anon_sym_some] = ACTIONS(512), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(512), + [anon_sym_u2203_BANG] = ACTIONS(510), + [anon_sym_QMARK_BANG] = ACTIONS(512), + [anon_sym_u2203] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u2200] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_u03bb] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_u00ac] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_u21ce] = ACTIONS(510), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(512), + [anon_sym_LT_EQ_GT] = ACTIONS(512), + [anon_sym_u21d4] = ACTIONS(510), + [anon_sym_EQ_EQ_GT] = ACTIONS(512), + [anon_sym_u21d2] = ACTIONS(510), + [anon_sym_BSLASH_SLASH] = ACTIONS(512), + [anon_sym_u2228] = ACTIONS(510), + [anon_sym_u2209] = ACTIONS(510), + [anon_sym_NOTIN] = ACTIONS(512), + [anon_sym_u2208] = ACTIONS(510), + [anon_sym_IN] = ACTIONS(512), + [anon_sym_u227c] = ACTIONS(510), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_PERMUTES] = ACTIONS(512), + [anon_sym_HAS_SIZE] = ACTIONS(512), + [anon_sym_u2282] = ACTIONS(510), + [anon_sym_PSUBSET] = ACTIONS(512), + [anon_sym_u2286] = ACTIONS(512), + [anon_sym_u2265] = ACTIONS(510), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_u2264] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_u2286u1d63] = ACTIONS(510), + [anon_sym_RSUBSET] = ACTIONS(512), + [anon_sym_u2260] = ACTIONS(510), + [anon_sym_LT_GT] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_INSERT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_o] = ACTIONS(512), + [sym_hol_true] = ACTIONS(512), + [sym_hol_false] = ACTIONS(512), + [sym_hol_number] = ACTIONS(510), + [sym_hol_string] = ACTIONS(510), + [sym_hol_character] = ACTIONS(510), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [312] = { + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_Proof] = ACTIONS(516), + [anon_sym_u2227] = ACTIONS(514), + [anon_sym_SLASH_BSLASH] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(516), + [sym__hol_alphanumeric] = ACTIONS(516), + [sym__hol_symbolic] = ACTIONS(516), + [anon_sym_OLEAST] = ACTIONS(516), + [anon_sym_LEAST] = ACTIONS(516), + [anon_sym_some] = ACTIONS(516), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(516), + [anon_sym_u2203_BANG] = ACTIONS(514), + [anon_sym_QMARK_BANG] = ACTIONS(516), + [anon_sym_u2203] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_u2200] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_u03bb] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_u00ac] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_u21ce] = ACTIONS(514), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(516), + [anon_sym_LT_EQ_GT] = ACTIONS(516), + [anon_sym_u21d4] = ACTIONS(514), + [anon_sym_EQ_EQ_GT] = ACTIONS(516), + [anon_sym_u21d2] = ACTIONS(514), + [anon_sym_BSLASH_SLASH] = ACTIONS(516), + [anon_sym_u2228] = ACTIONS(514), + [anon_sym_u2209] = ACTIONS(514), + [anon_sym_NOTIN] = ACTIONS(516), + [anon_sym_u2208] = ACTIONS(514), + [anon_sym_IN] = ACTIONS(516), + [anon_sym_u227c] = ACTIONS(514), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_PERMUTES] = ACTIONS(516), + [anon_sym_HAS_SIZE] = ACTIONS(516), + [anon_sym_u2282] = ACTIONS(514), + [anon_sym_PSUBSET] = ACTIONS(516), + [anon_sym_u2286] = ACTIONS(516), + [anon_sym_u2265] = ACTIONS(514), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_u2264] = ACTIONS(514), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_u2286u1d63] = ACTIONS(514), + [anon_sym_RSUBSET] = ACTIONS(516), + [anon_sym_u2260] = ACTIONS(514), + [anon_sym_LT_GT] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_INSERT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_o] = ACTIONS(516), + [sym_hol_true] = ACTIONS(516), + [sym_hol_false] = ACTIONS(516), + [sym_hol_number] = ACTIONS(514), + [sym_hol_string] = ACTIONS(514), + [sym_hol_character] = ACTIONS(514), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [313] = { + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(438), + [anon_sym_of] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_u2227] = ACTIONS(673), + [anon_sym_SLASH_BSLASH] = ACTIONS(675), + [anon_sym_COLON_COLON] = ACTIONS(677), + [sym__hol_alphanumeric] = ACTIONS(438), + [sym__hol_symbolic] = ACTIONS(438), + [anon_sym_OLEAST] = ACTIONS(438), + [anon_sym_LEAST] = ACTIONS(438), + [anon_sym_some] = ACTIONS(438), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(438), + [anon_sym_u2203_BANG] = ACTIONS(432), + [anon_sym_QMARK_BANG] = ACTIONS(438), + [anon_sym_u2203] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_u2200] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_u03bb] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_u00ac] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_u21ce] = ACTIONS(679), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(681), + [anon_sym_LT_EQ_GT] = ACTIONS(681), + [anon_sym_u21d4] = ACTIONS(679), + [anon_sym_EQ_EQ_GT] = ACTIONS(683), + [anon_sym_u21d2] = ACTIONS(685), + [anon_sym_BSLASH_SLASH] = ACTIONS(687), + [anon_sym_u2228] = ACTIONS(689), + [anon_sym_u2209] = ACTIONS(691), + [anon_sym_NOTIN] = ACTIONS(693), + [anon_sym_u2208] = ACTIONS(691), + [anon_sym_IN] = ACTIONS(693), + [anon_sym_u227c] = ACTIONS(695), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_PERMUTES] = ACTIONS(669), + [anon_sym_HAS_SIZE] = ACTIONS(669), + [anon_sym_u2282] = ACTIONS(695), + [anon_sym_PSUBSET] = ACTIONS(669), + [anon_sym_u2286] = ACTIONS(669), + [anon_sym_u2265] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(669), + [anon_sym_u2264] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_u2286u1d63] = ACTIONS(695), + [anon_sym_RSUBSET] = ACTIONS(669), + [anon_sym_u2260] = ACTIONS(695), + [anon_sym_LT_GT] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_INSERT] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_o] = ACTIONS(701), + [sym_hol_true] = ACTIONS(438), + [sym_hol_false] = ACTIONS(438), + [sym_hol_number] = ACTIONS(432), + [sym_hol_string] = ACTIONS(432), + [sym_hol_character] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [314] = { + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(89), + [sym__hol_symbolic] = ACTIONS(89), + [anon_sym_OLEAST] = ACTIONS(89), + [anon_sym_LEAST] = ACTIONS(89), + [anon_sym_some] = ACTIONS(89), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(89), + [anon_sym_u2203_BANG] = ACTIONS(85), + [anon_sym_QMARK_BANG] = ACTIONS(89), + [anon_sym_u2203] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(89), + [anon_sym_u2200] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_u03bb] = ACTIONS(85), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_u00ac] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(89), + [sym_hol_false] = ACTIONS(89), + [sym_hol_number] = ACTIONS(85), + [sym_hol_string] = ACTIONS(85), + [sym_hol_character] = ACTIONS(85), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [315] = { + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_if] = ACTIONS(480), + [anon_sym_else] = ACTIONS(480), + [anon_sym_case] = ACTIONS(480), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_u2227] = ACTIONS(478), + [anon_sym_SLASH_BSLASH] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(480), + [sym__hol_alphanumeric] = ACTIONS(480), + [sym__hol_symbolic] = ACTIONS(480), + [anon_sym_OLEAST] = ACTIONS(480), + [anon_sym_LEAST] = ACTIONS(480), + [anon_sym_some] = ACTIONS(480), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(480), + [anon_sym_u2203_BANG] = ACTIONS(478), + [anon_sym_QMARK_BANG] = ACTIONS(480), + [anon_sym_u2203] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u2200] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_u03bb] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_u00ac] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_u21ce] = ACTIONS(478), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(480), + [anon_sym_LT_EQ_GT] = ACTIONS(480), + [anon_sym_u21d4] = ACTIONS(478), + [anon_sym_EQ_EQ_GT] = ACTIONS(480), + [anon_sym_u21d2] = ACTIONS(478), + [anon_sym_BSLASH_SLASH] = ACTIONS(480), + [anon_sym_u2228] = ACTIONS(478), + [anon_sym_u2209] = ACTIONS(478), + [anon_sym_NOTIN] = ACTIONS(480), + [anon_sym_u2208] = ACTIONS(478), + [anon_sym_IN] = ACTIONS(480), + [anon_sym_u227c] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_PERMUTES] = ACTIONS(480), + [anon_sym_HAS_SIZE] = ACTIONS(480), + [anon_sym_u2282] = ACTIONS(478), + [anon_sym_PSUBSET] = ACTIONS(480), + [anon_sym_u2286] = ACTIONS(480), + [anon_sym_u2265] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_u2264] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_u2286u1d63] = ACTIONS(478), + [anon_sym_RSUBSET] = ACTIONS(480), + [anon_sym_u2260] = ACTIONS(478), + [anon_sym_LT_GT] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_INSERT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_o] = ACTIONS(480), + [sym_hol_true] = ACTIONS(480), + [sym_hol_false] = ACTIONS(480), + [sym_hol_number] = ACTIONS(478), + [sym_hol_string] = ACTIONS(478), + [sym_hol_character] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [316] = { + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_if] = ACTIONS(484), + [anon_sym_else] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_PIPE] = ACTIONS(484), + [anon_sym_u2227] = ACTIONS(482), + [anon_sym_SLASH_BSLASH] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(484), + [sym__hol_alphanumeric] = ACTIONS(484), + [sym__hol_symbolic] = ACTIONS(484), + [anon_sym_OLEAST] = ACTIONS(484), + [anon_sym_LEAST] = ACTIONS(484), + [anon_sym_some] = ACTIONS(484), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(484), + [anon_sym_u2203_BANG] = ACTIONS(482), + [anon_sym_QMARK_BANG] = ACTIONS(484), + [anon_sym_u2203] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u2200] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_u03bb] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_u00ac] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_u21ce] = ACTIONS(482), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(484), + [anon_sym_LT_EQ_GT] = ACTIONS(484), + [anon_sym_u21d4] = ACTIONS(482), + [anon_sym_EQ_EQ_GT] = ACTIONS(484), + [anon_sym_u21d2] = ACTIONS(482), + [anon_sym_BSLASH_SLASH] = ACTIONS(484), + [anon_sym_u2228] = ACTIONS(482), + [anon_sym_u2209] = ACTIONS(482), + [anon_sym_NOTIN] = ACTIONS(484), + [anon_sym_u2208] = ACTIONS(482), + [anon_sym_IN] = ACTIONS(484), + [anon_sym_u227c] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_PERMUTES] = ACTIONS(484), + [anon_sym_HAS_SIZE] = ACTIONS(484), + [anon_sym_u2282] = ACTIONS(482), + [anon_sym_PSUBSET] = ACTIONS(484), + [anon_sym_u2286] = ACTIONS(484), + [anon_sym_u2265] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_u2264] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_u2286u1d63] = ACTIONS(482), + [anon_sym_RSUBSET] = ACTIONS(484), + [anon_sym_u2260] = ACTIONS(482), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_INSERT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_o] = ACTIONS(484), + [sym_hol_true] = ACTIONS(484), + [sym_hol_false] = ACTIONS(484), + [sym_hol_number] = ACTIONS(482), + [sym_hol_string] = ACTIONS(482), + [sym_hol_character] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [317] = { + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_if] = ACTIONS(488), + [anon_sym_else] = ACTIONS(488), + [anon_sym_case] = ACTIONS(488), + [anon_sym_PIPE] = ACTIONS(488), + [anon_sym_u2227] = ACTIONS(486), + [anon_sym_SLASH_BSLASH] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(488), + [sym__hol_alphanumeric] = ACTIONS(488), + [sym__hol_symbolic] = ACTIONS(488), + [anon_sym_OLEAST] = ACTIONS(488), + [anon_sym_LEAST] = ACTIONS(488), + [anon_sym_some] = ACTIONS(488), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(488), + [anon_sym_u2203_BANG] = ACTIONS(486), + [anon_sym_QMARK_BANG] = ACTIONS(488), + [anon_sym_u2203] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u2200] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_u03bb] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_u00ac] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_u21ce] = ACTIONS(486), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(488), + [anon_sym_LT_EQ_GT] = ACTIONS(488), + [anon_sym_u21d4] = ACTIONS(486), + [anon_sym_EQ_EQ_GT] = ACTIONS(488), + [anon_sym_u21d2] = ACTIONS(486), + [anon_sym_BSLASH_SLASH] = ACTIONS(488), + [anon_sym_u2228] = ACTIONS(486), + [anon_sym_u2209] = ACTIONS(486), + [anon_sym_NOTIN] = ACTIONS(488), + [anon_sym_u2208] = ACTIONS(486), + [anon_sym_IN] = ACTIONS(488), + [anon_sym_u227c] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_PERMUTES] = ACTIONS(488), + [anon_sym_HAS_SIZE] = ACTIONS(488), + [anon_sym_u2282] = ACTIONS(486), + [anon_sym_PSUBSET] = ACTIONS(488), + [anon_sym_u2286] = ACTIONS(488), + [anon_sym_u2265] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_u2264] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_u2286u1d63] = ACTIONS(486), + [anon_sym_RSUBSET] = ACTIONS(488), + [anon_sym_u2260] = ACTIONS(486), + [anon_sym_LT_GT] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_INSERT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_o] = ACTIONS(488), + [sym_hol_true] = ACTIONS(488), + [sym_hol_false] = ACTIONS(488), + [sym_hol_number] = ACTIONS(486), + [sym_hol_string] = ACTIONS(486), + [sym_hol_character] = ACTIONS(486), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [318] = { + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_if] = ACTIONS(430), + [anon_sym_else] = ACTIONS(430), + [anon_sym_case] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_u2227] = ACTIONS(428), + [anon_sym_SLASH_BSLASH] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(430), + [sym__hol_alphanumeric] = ACTIONS(430), + [sym__hol_symbolic] = ACTIONS(430), + [anon_sym_OLEAST] = ACTIONS(430), + [anon_sym_LEAST] = ACTIONS(430), + [anon_sym_some] = ACTIONS(430), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(430), + [anon_sym_u2203_BANG] = ACTIONS(428), + [anon_sym_QMARK_BANG] = ACTIONS(430), + [anon_sym_u2203] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u2200] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_u03bb] = ACTIONS(428), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_u00ac] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_u21ce] = ACTIONS(428), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(430), + [anon_sym_LT_EQ_GT] = ACTIONS(430), + [anon_sym_u21d4] = ACTIONS(428), + [anon_sym_EQ_EQ_GT] = ACTIONS(430), + [anon_sym_u21d2] = ACTIONS(428), + [anon_sym_BSLASH_SLASH] = ACTIONS(430), + [anon_sym_u2228] = ACTIONS(428), + [anon_sym_u2209] = ACTIONS(428), + [anon_sym_NOTIN] = ACTIONS(430), + [anon_sym_u2208] = ACTIONS(428), + [anon_sym_IN] = ACTIONS(430), + [anon_sym_u227c] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_PERMUTES] = ACTIONS(430), + [anon_sym_HAS_SIZE] = ACTIONS(430), + [anon_sym_u2282] = ACTIONS(428), + [anon_sym_PSUBSET] = ACTIONS(430), + [anon_sym_u2286] = ACTIONS(430), + [anon_sym_u2265] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_u2264] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_u2286u1d63] = ACTIONS(428), + [anon_sym_RSUBSET] = ACTIONS(430), + [anon_sym_u2260] = ACTIONS(428), + [anon_sym_LT_GT] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(430), + [anon_sym_INSERT] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_o] = ACTIONS(430), + [sym_hol_true] = ACTIONS(430), + [sym_hol_false] = ACTIONS(430), + [sym_hol_number] = ACTIONS(428), + [sym_hol_string] = ACTIONS(428), + [sym_hol_character] = ACTIONS(428), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [319] = { + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_if] = ACTIONS(492), + [anon_sym_else] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_u2227] = ACTIONS(490), + [anon_sym_SLASH_BSLASH] = ACTIONS(492), + [anon_sym_COLON_COLON] = ACTIONS(492), + [sym__hol_alphanumeric] = ACTIONS(492), + [sym__hol_symbolic] = ACTIONS(492), + [anon_sym_OLEAST] = ACTIONS(492), + [anon_sym_LEAST] = ACTIONS(492), + [anon_sym_some] = ACTIONS(492), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(492), + [anon_sym_u2203_BANG] = ACTIONS(490), + [anon_sym_QMARK_BANG] = ACTIONS(492), + [anon_sym_u2203] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u2200] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_u03bb] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_u00ac] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_u21ce] = ACTIONS(490), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(492), + [anon_sym_LT_EQ_GT] = ACTIONS(492), + [anon_sym_u21d4] = ACTIONS(490), + [anon_sym_EQ_EQ_GT] = ACTIONS(492), + [anon_sym_u21d2] = ACTIONS(490), + [anon_sym_BSLASH_SLASH] = ACTIONS(492), + [anon_sym_u2228] = ACTIONS(490), + [anon_sym_u2209] = ACTIONS(490), + [anon_sym_NOTIN] = ACTIONS(492), + [anon_sym_u2208] = ACTIONS(490), + [anon_sym_IN] = ACTIONS(492), + [anon_sym_u227c] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_PERMUTES] = ACTIONS(492), + [anon_sym_HAS_SIZE] = ACTIONS(492), + [anon_sym_u2282] = ACTIONS(490), + [anon_sym_PSUBSET] = ACTIONS(492), + [anon_sym_u2286] = ACTIONS(492), + [anon_sym_u2265] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_u2264] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_u2286u1d63] = ACTIONS(490), + [anon_sym_RSUBSET] = ACTIONS(492), + [anon_sym_u2260] = ACTIONS(490), + [anon_sym_LT_GT] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_INSERT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_o] = ACTIONS(492), + [sym_hol_true] = ACTIONS(492), + [sym_hol_false] = ACTIONS(492), + [sym_hol_number] = ACTIONS(490), + [sym_hol_string] = ACTIONS(490), + [sym_hol_character] = ACTIONS(490), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [320] = { + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_if] = ACTIONS(496), + [anon_sym_else] = ACTIONS(496), + [anon_sym_case] = ACTIONS(496), + [anon_sym_PIPE] = ACTIONS(496), + [anon_sym_u2227] = ACTIONS(494), + [anon_sym_SLASH_BSLASH] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(496), + [sym__hol_alphanumeric] = ACTIONS(496), + [sym__hol_symbolic] = ACTIONS(496), + [anon_sym_OLEAST] = ACTIONS(496), + [anon_sym_LEAST] = ACTIONS(496), + [anon_sym_some] = ACTIONS(496), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(496), + [anon_sym_u2203_BANG] = ACTIONS(494), + [anon_sym_QMARK_BANG] = ACTIONS(496), + [anon_sym_u2203] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u2200] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_u03bb] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_u00ac] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_u21ce] = ACTIONS(494), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(496), + [anon_sym_LT_EQ_GT] = ACTIONS(496), + [anon_sym_u21d4] = ACTIONS(494), + [anon_sym_EQ_EQ_GT] = ACTIONS(496), + [anon_sym_u21d2] = ACTIONS(494), + [anon_sym_BSLASH_SLASH] = ACTIONS(496), + [anon_sym_u2228] = ACTIONS(494), + [anon_sym_u2209] = ACTIONS(494), + [anon_sym_NOTIN] = ACTIONS(496), + [anon_sym_u2208] = ACTIONS(494), + [anon_sym_IN] = ACTIONS(496), + [anon_sym_u227c] = ACTIONS(494), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_PERMUTES] = ACTIONS(496), + [anon_sym_HAS_SIZE] = ACTIONS(496), + [anon_sym_u2282] = ACTIONS(494), + [anon_sym_PSUBSET] = ACTIONS(496), + [anon_sym_u2286] = ACTIONS(496), + [anon_sym_u2265] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_u2264] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_u2286u1d63] = ACTIONS(494), + [anon_sym_RSUBSET] = ACTIONS(496), + [anon_sym_u2260] = ACTIONS(494), + [anon_sym_LT_GT] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(496), + [anon_sym_INSERT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_o] = ACTIONS(496), + [sym_hol_true] = ACTIONS(496), + [sym_hol_false] = ACTIONS(496), + [sym_hol_number] = ACTIONS(494), + [sym_hol_string] = ACTIONS(494), + [sym_hol_character] = ACTIONS(494), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [321] = { + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_else] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_PIPE] = ACTIONS(500), + [anon_sym_u2227] = ACTIONS(498), + [anon_sym_SLASH_BSLASH] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(500), + [sym__hol_alphanumeric] = ACTIONS(500), + [sym__hol_symbolic] = ACTIONS(500), + [anon_sym_OLEAST] = ACTIONS(500), + [anon_sym_LEAST] = ACTIONS(500), + [anon_sym_some] = ACTIONS(500), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(500), + [anon_sym_u2203_BANG] = ACTIONS(498), + [anon_sym_QMARK_BANG] = ACTIONS(500), + [anon_sym_u2203] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u2200] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_u03bb] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_u00ac] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_u21ce] = ACTIONS(498), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(500), + [anon_sym_LT_EQ_GT] = ACTIONS(500), + [anon_sym_u21d4] = ACTIONS(498), + [anon_sym_EQ_EQ_GT] = ACTIONS(500), + [anon_sym_u21d2] = ACTIONS(498), + [anon_sym_BSLASH_SLASH] = ACTIONS(500), + [anon_sym_u2228] = ACTIONS(498), + [anon_sym_u2209] = ACTIONS(498), + [anon_sym_NOTIN] = ACTIONS(500), + [anon_sym_u2208] = ACTIONS(498), + [anon_sym_IN] = ACTIONS(500), + [anon_sym_u227c] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_PERMUTES] = ACTIONS(500), + [anon_sym_HAS_SIZE] = ACTIONS(500), + [anon_sym_u2282] = ACTIONS(498), + [anon_sym_PSUBSET] = ACTIONS(500), + [anon_sym_u2286] = ACTIONS(500), + [anon_sym_u2265] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_u2264] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_u2286u1d63] = ACTIONS(498), + [anon_sym_RSUBSET] = ACTIONS(500), + [anon_sym_u2260] = ACTIONS(498), + [anon_sym_LT_GT] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_INSERT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_o] = ACTIONS(500), + [sym_hol_true] = ACTIONS(500), + [sym_hol_false] = ACTIONS(500), + [sym_hol_number] = ACTIONS(498), + [sym_hol_string] = ACTIONS(498), + [sym_hol_character] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [322] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(769), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_INSERT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_o] = ACTIONS(793), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [323] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(765), + [anon_sym_SLASH_BSLASH] = ACTIONS(767), + [anon_sym_COLON_COLON] = ACTIONS(769), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(783), + [anon_sym_NOTIN] = ACTIONS(785), + [anon_sym_u2208] = ACTIONS(783), + [anon_sym_IN] = ACTIONS(785), + [anon_sym_u227c] = ACTIONS(787), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_PERMUTES] = ACTIONS(761), + [anon_sym_HAS_SIZE] = ACTIONS(761), + [anon_sym_u2282] = ACTIONS(787), + [anon_sym_PSUBSET] = ACTIONS(761), + [anon_sym_u2286] = ACTIONS(761), + [anon_sym_u2265] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_u2264] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_u2286u1d63] = ACTIONS(787), + [anon_sym_RSUBSET] = ACTIONS(761), + [anon_sym_u2260] = ACTIONS(787), + [anon_sym_LT_GT] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_INSERT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_o] = ACTIONS(793), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [324] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(769), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_o] = ACTIONS(793), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [325] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(765), + [anon_sym_SLASH_BSLASH] = ACTIONS(767), + [anon_sym_COLON_COLON] = ACTIONS(769), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(775), + [anon_sym_u21d2] = ACTIONS(777), + [anon_sym_BSLASH_SLASH] = ACTIONS(779), + [anon_sym_u2228] = ACTIONS(781), + [anon_sym_u2209] = ACTIONS(783), + [anon_sym_NOTIN] = ACTIONS(785), + [anon_sym_u2208] = ACTIONS(783), + [anon_sym_IN] = ACTIONS(785), + [anon_sym_u227c] = ACTIONS(787), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_PERMUTES] = ACTIONS(761), + [anon_sym_HAS_SIZE] = ACTIONS(761), + [anon_sym_u2282] = ACTIONS(787), + [anon_sym_PSUBSET] = ACTIONS(761), + [anon_sym_u2286] = ACTIONS(761), + [anon_sym_u2265] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_u2264] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_u2286u1d63] = ACTIONS(787), + [anon_sym_RSUBSET] = ACTIONS(761), + [anon_sym_u2260] = ACTIONS(787), + [anon_sym_LT_GT] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_INSERT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_o] = ACTIONS(793), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [326] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(765), + [anon_sym_SLASH_BSLASH] = ACTIONS(767), + [anon_sym_COLON_COLON] = ACTIONS(769), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(779), + [anon_sym_u2228] = ACTIONS(781), + [anon_sym_u2209] = ACTIONS(783), + [anon_sym_NOTIN] = ACTIONS(785), + [anon_sym_u2208] = ACTIONS(783), + [anon_sym_IN] = ACTIONS(785), + [anon_sym_u227c] = ACTIONS(787), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_PERMUTES] = ACTIONS(761), + [anon_sym_HAS_SIZE] = ACTIONS(761), + [anon_sym_u2282] = ACTIONS(787), + [anon_sym_PSUBSET] = ACTIONS(761), + [anon_sym_u2286] = ACTIONS(761), + [anon_sym_u2265] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_u2264] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_u2286u1d63] = ACTIONS(787), + [anon_sym_RSUBSET] = ACTIONS(761), + [anon_sym_u2260] = ACTIONS(787), + [anon_sym_LT_GT] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_INSERT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_o] = ACTIONS(793), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [327] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(765), + [anon_sym_SLASH_BSLASH] = ACTIONS(767), + [anon_sym_COLON_COLON] = ACTIONS(769), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(779), + [anon_sym_u2228] = ACTIONS(781), + [anon_sym_u2209] = ACTIONS(783), + [anon_sym_NOTIN] = ACTIONS(785), + [anon_sym_u2208] = ACTIONS(783), + [anon_sym_IN] = ACTIONS(785), + [anon_sym_u227c] = ACTIONS(787), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_PERMUTES] = ACTIONS(761), + [anon_sym_HAS_SIZE] = ACTIONS(761), + [anon_sym_u2282] = ACTIONS(787), + [anon_sym_PSUBSET] = ACTIONS(761), + [anon_sym_u2286] = ACTIONS(761), + [anon_sym_u2265] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_u2264] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_u2286u1d63] = ACTIONS(787), + [anon_sym_RSUBSET] = ACTIONS(761), + [anon_sym_u2260] = ACTIONS(787), + [anon_sym_LT_GT] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_INSERT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_o] = ACTIONS(793), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [328] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(769), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(787), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_PERMUTES] = ACTIONS(761), + [anon_sym_HAS_SIZE] = ACTIONS(761), + [anon_sym_u2282] = ACTIONS(787), + [anon_sym_PSUBSET] = ACTIONS(761), + [anon_sym_u2286] = ACTIONS(761), + [anon_sym_u2265] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_u2264] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_u2286u1d63] = ACTIONS(787), + [anon_sym_RSUBSET] = ACTIONS(761), + [anon_sym_u2260] = ACTIONS(787), + [anon_sym_LT_GT] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_INSERT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_o] = ACTIONS(793), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [329] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(769), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_INSERT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_o] = ACTIONS(793), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [330] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(793), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [331] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(793), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [332] = { + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_COLON] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_else] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(504), + [anon_sym_u2227] = ACTIONS(502), + [anon_sym_SLASH_BSLASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(504), + [sym__hol_alphanumeric] = ACTIONS(504), + [sym__hol_symbolic] = ACTIONS(504), + [anon_sym_OLEAST] = ACTIONS(504), + [anon_sym_LEAST] = ACTIONS(504), + [anon_sym_some] = ACTIONS(504), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(504), + [anon_sym_u2203_BANG] = ACTIONS(502), + [anon_sym_QMARK_BANG] = ACTIONS(504), + [anon_sym_u2203] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u2200] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_u03bb] = ACTIONS(502), + [anon_sym_BSLASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_u00ac] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_u21ce] = ACTIONS(502), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(504), + [anon_sym_LT_EQ_GT] = ACTIONS(504), + [anon_sym_u21d4] = ACTIONS(502), + [anon_sym_EQ_EQ_GT] = ACTIONS(504), + [anon_sym_u21d2] = ACTIONS(502), + [anon_sym_BSLASH_SLASH] = ACTIONS(504), + [anon_sym_u2228] = ACTIONS(502), + [anon_sym_u2209] = ACTIONS(502), + [anon_sym_NOTIN] = ACTIONS(504), + [anon_sym_u2208] = ACTIONS(502), + [anon_sym_IN] = ACTIONS(504), + [anon_sym_u227c] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_PERMUTES] = ACTIONS(504), + [anon_sym_HAS_SIZE] = ACTIONS(504), + [anon_sym_u2282] = ACTIONS(502), + [anon_sym_PSUBSET] = ACTIONS(504), + [anon_sym_u2286] = ACTIONS(504), + [anon_sym_u2265] = ACTIONS(502), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_u2264] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_u2286u1d63] = ACTIONS(502), + [anon_sym_RSUBSET] = ACTIONS(504), + [anon_sym_u2260] = ACTIONS(502), + [anon_sym_LT_GT] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(504), + [anon_sym_INSERT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_o] = ACTIONS(504), + [sym_hol_true] = ACTIONS(504), + [sym_hol_false] = ACTIONS(504), + [sym_hol_number] = ACTIONS(502), + [sym_hol_string] = ACTIONS(502), + [sym_hol_character] = ACTIONS(502), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [333] = { + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_else] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(508), + [anon_sym_u2227] = ACTIONS(506), + [anon_sym_SLASH_BSLASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(508), + [sym__hol_alphanumeric] = ACTIONS(508), + [sym__hol_symbolic] = ACTIONS(508), + [anon_sym_OLEAST] = ACTIONS(508), + [anon_sym_LEAST] = ACTIONS(508), + [anon_sym_some] = ACTIONS(508), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(508), + [anon_sym_u2203_BANG] = ACTIONS(506), + [anon_sym_QMARK_BANG] = ACTIONS(508), + [anon_sym_u2203] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u2200] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_u03bb] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_u00ac] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_u21ce] = ACTIONS(506), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(508), + [anon_sym_LT_EQ_GT] = ACTIONS(508), + [anon_sym_u21d4] = ACTIONS(506), + [anon_sym_EQ_EQ_GT] = ACTIONS(508), + [anon_sym_u21d2] = ACTIONS(506), + [anon_sym_BSLASH_SLASH] = ACTIONS(508), + [anon_sym_u2228] = ACTIONS(506), + [anon_sym_u2209] = ACTIONS(506), + [anon_sym_NOTIN] = ACTIONS(508), + [anon_sym_u2208] = ACTIONS(506), + [anon_sym_IN] = ACTIONS(508), + [anon_sym_u227c] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_PERMUTES] = ACTIONS(508), + [anon_sym_HAS_SIZE] = ACTIONS(508), + [anon_sym_u2282] = ACTIONS(506), + [anon_sym_PSUBSET] = ACTIONS(508), + [anon_sym_u2286] = ACTIONS(508), + [anon_sym_u2265] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_u2264] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_u2286u1d63] = ACTIONS(506), + [anon_sym_RSUBSET] = ACTIONS(508), + [anon_sym_u2260] = ACTIONS(506), + [anon_sym_LT_GT] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(508), + [anon_sym_INSERT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_o] = ACTIONS(508), + [sym_hol_true] = ACTIONS(508), + [sym_hol_false] = ACTIONS(508), + [sym_hol_number] = ACTIONS(506), + [sym_hol_string] = ACTIONS(506), + [sym_hol_character] = ACTIONS(506), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [334] = { + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_Proof] = ACTIONS(524), + [anon_sym_u2227] = ACTIONS(765), + [anon_sym_SLASH_BSLASH] = ACTIONS(767), + [anon_sym_COLON_COLON] = ACTIONS(769), + [sym__hol_alphanumeric] = ACTIONS(524), + [sym__hol_symbolic] = ACTIONS(524), + [anon_sym_OLEAST] = ACTIONS(524), + [anon_sym_LEAST] = ACTIONS(524), + [anon_sym_some] = ACTIONS(524), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(524), + [anon_sym_u2203_BANG] = ACTIONS(522), + [anon_sym_QMARK_BANG] = ACTIONS(524), + [anon_sym_u2203] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u2200] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_u03bb] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_u00ac] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_u21ce] = ACTIONS(771), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(773), + [anon_sym_LT_EQ_GT] = ACTIONS(773), + [anon_sym_u21d4] = ACTIONS(771), + [anon_sym_EQ_EQ_GT] = ACTIONS(775), + [anon_sym_u21d2] = ACTIONS(777), + [anon_sym_BSLASH_SLASH] = ACTIONS(779), + [anon_sym_u2228] = ACTIONS(781), + [anon_sym_u2209] = ACTIONS(783), + [anon_sym_NOTIN] = ACTIONS(785), + [anon_sym_u2208] = ACTIONS(783), + [anon_sym_IN] = ACTIONS(785), + [anon_sym_u227c] = ACTIONS(787), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_PERMUTES] = ACTIONS(761), + [anon_sym_HAS_SIZE] = ACTIONS(761), + [anon_sym_u2282] = ACTIONS(787), + [anon_sym_PSUBSET] = ACTIONS(761), + [anon_sym_u2286] = ACTIONS(761), + [anon_sym_u2265] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_u2264] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_u2286u1d63] = ACTIONS(787), + [anon_sym_RSUBSET] = ACTIONS(761), + [anon_sym_u2260] = ACTIONS(787), + [anon_sym_LT_GT] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_INSERT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_o] = ACTIONS(793), + [sym_hol_true] = ACTIONS(524), + [sym_hol_false] = ACTIONS(524), + [sym_hol_number] = ACTIONS(522), + [sym_hol_string] = ACTIONS(522), + [sym_hol_character] = ACTIONS(522), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [335] = { + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_else] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(512), + [anon_sym_u2227] = ACTIONS(510), + [anon_sym_SLASH_BSLASH] = ACTIONS(512), + [anon_sym_COLON_COLON] = ACTIONS(512), + [sym__hol_alphanumeric] = ACTIONS(512), + [sym__hol_symbolic] = ACTIONS(512), + [anon_sym_OLEAST] = ACTIONS(512), + [anon_sym_LEAST] = ACTIONS(512), + [anon_sym_some] = ACTIONS(512), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(512), + [anon_sym_u2203_BANG] = ACTIONS(510), + [anon_sym_QMARK_BANG] = ACTIONS(512), + [anon_sym_u2203] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u2200] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_u03bb] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_u00ac] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_u21ce] = ACTIONS(510), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(512), + [anon_sym_LT_EQ_GT] = ACTIONS(512), + [anon_sym_u21d4] = ACTIONS(510), + [anon_sym_EQ_EQ_GT] = ACTIONS(512), + [anon_sym_u21d2] = ACTIONS(510), + [anon_sym_BSLASH_SLASH] = ACTIONS(512), + [anon_sym_u2228] = ACTIONS(510), + [anon_sym_u2209] = ACTIONS(510), + [anon_sym_NOTIN] = ACTIONS(512), + [anon_sym_u2208] = ACTIONS(510), + [anon_sym_IN] = ACTIONS(512), + [anon_sym_u227c] = ACTIONS(510), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_PERMUTES] = ACTIONS(512), + [anon_sym_HAS_SIZE] = ACTIONS(512), + [anon_sym_u2282] = ACTIONS(510), + [anon_sym_PSUBSET] = ACTIONS(512), + [anon_sym_u2286] = ACTIONS(512), + [anon_sym_u2265] = ACTIONS(510), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_u2264] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_u2286u1d63] = ACTIONS(510), + [anon_sym_RSUBSET] = ACTIONS(512), + [anon_sym_u2260] = ACTIONS(510), + [anon_sym_LT_GT] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_INSERT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_o] = ACTIONS(512), + [sym_hol_true] = ACTIONS(512), + [sym_hol_false] = ACTIONS(512), + [sym_hol_number] = ACTIONS(510), + [sym_hol_string] = ACTIONS(510), + [sym_hol_character] = ACTIONS(510), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [336] = { + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_else] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_u2227] = ACTIONS(514), + [anon_sym_SLASH_BSLASH] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(516), + [sym__hol_alphanumeric] = ACTIONS(516), + [sym__hol_symbolic] = ACTIONS(516), + [anon_sym_OLEAST] = ACTIONS(516), + [anon_sym_LEAST] = ACTIONS(516), + [anon_sym_some] = ACTIONS(516), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(516), + [anon_sym_u2203_BANG] = ACTIONS(514), + [anon_sym_QMARK_BANG] = ACTIONS(516), + [anon_sym_u2203] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_u2200] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_u03bb] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_u00ac] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_u21ce] = ACTIONS(514), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(516), + [anon_sym_LT_EQ_GT] = ACTIONS(516), + [anon_sym_u21d4] = ACTIONS(514), + [anon_sym_EQ_EQ_GT] = ACTIONS(516), + [anon_sym_u21d2] = ACTIONS(514), + [anon_sym_BSLASH_SLASH] = ACTIONS(516), + [anon_sym_u2228] = ACTIONS(514), + [anon_sym_u2209] = ACTIONS(514), + [anon_sym_NOTIN] = ACTIONS(516), + [anon_sym_u2208] = ACTIONS(514), + [anon_sym_IN] = ACTIONS(516), + [anon_sym_u227c] = ACTIONS(514), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_PERMUTES] = ACTIONS(516), + [anon_sym_HAS_SIZE] = ACTIONS(516), + [anon_sym_u2282] = ACTIONS(514), + [anon_sym_PSUBSET] = ACTIONS(516), + [anon_sym_u2286] = ACTIONS(516), + [anon_sym_u2265] = ACTIONS(514), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_u2264] = ACTIONS(514), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_u2286u1d63] = ACTIONS(514), + [anon_sym_RSUBSET] = ACTIONS(516), + [anon_sym_u2260] = ACTIONS(514), + [anon_sym_LT_GT] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_INSERT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_o] = ACTIONS(516), + [sym_hol_true] = ACTIONS(516), + [sym_hol_false] = ACTIONS(516), + [sym_hol_number] = ACTIONS(514), + [sym_hol_string] = ACTIONS(514), + [sym_hol_character] = ACTIONS(514), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [337] = { + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(761), + [anon_sym_COLON] = ACTIONS(763), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_Proof] = ACTIONS(438), + [anon_sym_u2227] = ACTIONS(765), + [anon_sym_SLASH_BSLASH] = ACTIONS(767), + [anon_sym_COLON_COLON] = ACTIONS(769), + [sym__hol_alphanumeric] = ACTIONS(438), + [sym__hol_symbolic] = ACTIONS(438), + [anon_sym_OLEAST] = ACTIONS(438), + [anon_sym_LEAST] = ACTIONS(438), + [anon_sym_some] = ACTIONS(438), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(438), + [anon_sym_u2203_BANG] = ACTIONS(432), + [anon_sym_QMARK_BANG] = ACTIONS(438), + [anon_sym_u2203] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_u2200] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_u03bb] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_u00ac] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_u21ce] = ACTIONS(771), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(773), + [anon_sym_LT_EQ_GT] = ACTIONS(773), + [anon_sym_u21d4] = ACTIONS(771), + [anon_sym_EQ_EQ_GT] = ACTIONS(775), + [anon_sym_u21d2] = ACTIONS(777), + [anon_sym_BSLASH_SLASH] = ACTIONS(779), + [anon_sym_u2228] = ACTIONS(781), + [anon_sym_u2209] = ACTIONS(783), + [anon_sym_NOTIN] = ACTIONS(785), + [anon_sym_u2208] = ACTIONS(783), + [anon_sym_IN] = ACTIONS(785), + [anon_sym_u227c] = ACTIONS(787), + [anon_sym_LT_LT_EQ] = ACTIONS(761), + [anon_sym_PERMUTES] = ACTIONS(761), + [anon_sym_HAS_SIZE] = ACTIONS(761), + [anon_sym_u2282] = ACTIONS(787), + [anon_sym_PSUBSET] = ACTIONS(761), + [anon_sym_u2286] = ACTIONS(761), + [anon_sym_u2265] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(761), + [anon_sym_u2264] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_u2286u1d63] = ACTIONS(787), + [anon_sym_RSUBSET] = ACTIONS(761), + [anon_sym_u2260] = ACTIONS(787), + [anon_sym_LT_GT] = ACTIONS(761), + [anon_sym_DOLLAR] = ACTIONS(789), + [anon_sym_INSERT] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_o] = ACTIONS(793), + [sym_hol_true] = ACTIONS(438), + [sym_hol_false] = ACTIONS(438), + [sym_hol_number] = ACTIONS(432), + [sym_hol_string] = ACTIONS(432), + [sym_hol_character] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [338] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(797), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_INSERT] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_o] = ACTIONS(803), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [339] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(805), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(807), + [anon_sym_SLASH_BSLASH] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(797), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(811), + [anon_sym_NOTIN] = ACTIONS(813), + [anon_sym_u2208] = ACTIONS(811), + [anon_sym_IN] = ACTIONS(813), + [anon_sym_u227c] = ACTIONS(815), + [anon_sym_LT_LT_EQ] = ACTIONS(805), + [anon_sym_PERMUTES] = ACTIONS(805), + [anon_sym_HAS_SIZE] = ACTIONS(805), + [anon_sym_u2282] = ACTIONS(815), + [anon_sym_PSUBSET] = ACTIONS(805), + [anon_sym_u2286] = ACTIONS(805), + [anon_sym_u2265] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_u2264] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_u2286u1d63] = ACTIONS(815), + [anon_sym_RSUBSET] = ACTIONS(805), + [anon_sym_u2260] = ACTIONS(815), + [anon_sym_LT_GT] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_INSERT] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_o] = ACTIONS(803), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [340] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(797), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_o] = ACTIONS(803), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [341] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(805), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(807), + [anon_sym_SLASH_BSLASH] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(797), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(817), + [anon_sym_u21d2] = ACTIONS(819), + [anon_sym_BSLASH_SLASH] = ACTIONS(821), + [anon_sym_u2228] = ACTIONS(823), + [anon_sym_u2209] = ACTIONS(811), + [anon_sym_NOTIN] = ACTIONS(813), + [anon_sym_u2208] = ACTIONS(811), + [anon_sym_IN] = ACTIONS(813), + [anon_sym_u227c] = ACTIONS(815), + [anon_sym_LT_LT_EQ] = ACTIONS(805), + [anon_sym_PERMUTES] = ACTIONS(805), + [anon_sym_HAS_SIZE] = ACTIONS(805), + [anon_sym_u2282] = ACTIONS(815), + [anon_sym_PSUBSET] = ACTIONS(805), + [anon_sym_u2286] = ACTIONS(805), + [anon_sym_u2265] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_u2264] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_u2286u1d63] = ACTIONS(815), + [anon_sym_RSUBSET] = ACTIONS(805), + [anon_sym_u2260] = ACTIONS(815), + [anon_sym_LT_GT] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_INSERT] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_o] = ACTIONS(803), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [342] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(805), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(807), + [anon_sym_SLASH_BSLASH] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(797), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(821), + [anon_sym_u2228] = ACTIONS(823), + [anon_sym_u2209] = ACTIONS(811), + [anon_sym_NOTIN] = ACTIONS(813), + [anon_sym_u2208] = ACTIONS(811), + [anon_sym_IN] = ACTIONS(813), + [anon_sym_u227c] = ACTIONS(815), + [anon_sym_LT_LT_EQ] = ACTIONS(805), + [anon_sym_PERMUTES] = ACTIONS(805), + [anon_sym_HAS_SIZE] = ACTIONS(805), + [anon_sym_u2282] = ACTIONS(815), + [anon_sym_PSUBSET] = ACTIONS(805), + [anon_sym_u2286] = ACTIONS(805), + [anon_sym_u2265] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_u2264] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_u2286u1d63] = ACTIONS(815), + [anon_sym_RSUBSET] = ACTIONS(805), + [anon_sym_u2260] = ACTIONS(815), + [anon_sym_LT_GT] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_INSERT] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_o] = ACTIONS(803), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [343] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(805), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(807), + [anon_sym_SLASH_BSLASH] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(797), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(821), + [anon_sym_u2228] = ACTIONS(823), + [anon_sym_u2209] = ACTIONS(811), + [anon_sym_NOTIN] = ACTIONS(813), + [anon_sym_u2208] = ACTIONS(811), + [anon_sym_IN] = ACTIONS(813), + [anon_sym_u227c] = ACTIONS(815), + [anon_sym_LT_LT_EQ] = ACTIONS(805), + [anon_sym_PERMUTES] = ACTIONS(805), + [anon_sym_HAS_SIZE] = ACTIONS(805), + [anon_sym_u2282] = ACTIONS(815), + [anon_sym_PSUBSET] = ACTIONS(805), + [anon_sym_u2286] = ACTIONS(805), + [anon_sym_u2265] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_u2264] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_u2286u1d63] = ACTIONS(815), + [anon_sym_RSUBSET] = ACTIONS(805), + [anon_sym_u2260] = ACTIONS(815), + [anon_sym_LT_GT] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_INSERT] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_o] = ACTIONS(803), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [344] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(805), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(797), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(815), + [anon_sym_LT_LT_EQ] = ACTIONS(805), + [anon_sym_PERMUTES] = ACTIONS(805), + [anon_sym_HAS_SIZE] = ACTIONS(805), + [anon_sym_u2282] = ACTIONS(815), + [anon_sym_PSUBSET] = ACTIONS(805), + [anon_sym_u2286] = ACTIONS(805), + [anon_sym_u2265] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_u2264] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_u2286u1d63] = ACTIONS(815), + [anon_sym_RSUBSET] = ACTIONS(805), + [anon_sym_u2260] = ACTIONS(815), + [anon_sym_LT_GT] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_INSERT] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_o] = ACTIONS(803), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [345] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(797), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_INSERT] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_o] = ACTIONS(803), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [346] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(803), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [347] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(803), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [348] = { + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(805), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_else] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_u2227] = ACTIONS(807), + [anon_sym_SLASH_BSLASH] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(797), + [sym__hol_alphanumeric] = ACTIONS(524), + [sym__hol_symbolic] = ACTIONS(524), + [anon_sym_OLEAST] = ACTIONS(524), + [anon_sym_LEAST] = ACTIONS(524), + [anon_sym_some] = ACTIONS(524), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(524), + [anon_sym_u2203_BANG] = ACTIONS(522), + [anon_sym_QMARK_BANG] = ACTIONS(524), + [anon_sym_u2203] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u2200] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_u03bb] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_u00ac] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_u21ce] = ACTIONS(825), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(827), + [anon_sym_LT_EQ_GT] = ACTIONS(827), + [anon_sym_u21d4] = ACTIONS(825), + [anon_sym_EQ_EQ_GT] = ACTIONS(817), + [anon_sym_u21d2] = ACTIONS(819), + [anon_sym_BSLASH_SLASH] = ACTIONS(821), + [anon_sym_u2228] = ACTIONS(823), + [anon_sym_u2209] = ACTIONS(811), + [anon_sym_NOTIN] = ACTIONS(813), + [anon_sym_u2208] = ACTIONS(811), + [anon_sym_IN] = ACTIONS(813), + [anon_sym_u227c] = ACTIONS(815), + [anon_sym_LT_LT_EQ] = ACTIONS(805), + [anon_sym_PERMUTES] = ACTIONS(805), + [anon_sym_HAS_SIZE] = ACTIONS(805), + [anon_sym_u2282] = ACTIONS(815), + [anon_sym_PSUBSET] = ACTIONS(805), + [anon_sym_u2286] = ACTIONS(805), + [anon_sym_u2265] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_u2264] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_u2286u1d63] = ACTIONS(815), + [anon_sym_RSUBSET] = ACTIONS(805), + [anon_sym_u2260] = ACTIONS(815), + [anon_sym_LT_GT] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_INSERT] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_o] = ACTIONS(803), + [sym_hol_true] = ACTIONS(524), + [sym_hol_false] = ACTIONS(524), + [sym_hol_number] = ACTIONS(522), + [sym_hol_string] = ACTIONS(522), + [sym_hol_character] = ACTIONS(522), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [349] = { + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(805), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_if] = ACTIONS(438), + [anon_sym_else] = ACTIONS(438), + [anon_sym_case] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_u2227] = ACTIONS(807), + [anon_sym_SLASH_BSLASH] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(797), + [sym__hol_alphanumeric] = ACTIONS(438), + [sym__hol_symbolic] = ACTIONS(438), + [anon_sym_OLEAST] = ACTIONS(438), + [anon_sym_LEAST] = ACTIONS(438), + [anon_sym_some] = ACTIONS(438), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(438), + [anon_sym_u2203_BANG] = ACTIONS(432), + [anon_sym_QMARK_BANG] = ACTIONS(438), + [anon_sym_u2203] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_u2200] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_u03bb] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_u00ac] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_u21ce] = ACTIONS(825), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(827), + [anon_sym_LT_EQ_GT] = ACTIONS(827), + [anon_sym_u21d4] = ACTIONS(825), + [anon_sym_EQ_EQ_GT] = ACTIONS(817), + [anon_sym_u21d2] = ACTIONS(819), + [anon_sym_BSLASH_SLASH] = ACTIONS(821), + [anon_sym_u2228] = ACTIONS(823), + [anon_sym_u2209] = ACTIONS(811), + [anon_sym_NOTIN] = ACTIONS(813), + [anon_sym_u2208] = ACTIONS(811), + [anon_sym_IN] = ACTIONS(813), + [anon_sym_u227c] = ACTIONS(815), + [anon_sym_LT_LT_EQ] = ACTIONS(805), + [anon_sym_PERMUTES] = ACTIONS(805), + [anon_sym_HAS_SIZE] = ACTIONS(805), + [anon_sym_u2282] = ACTIONS(815), + [anon_sym_PSUBSET] = ACTIONS(805), + [anon_sym_u2286] = ACTIONS(805), + [anon_sym_u2265] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_u2264] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_u2286u1d63] = ACTIONS(815), + [anon_sym_RSUBSET] = ACTIONS(805), + [anon_sym_u2260] = ACTIONS(815), + [anon_sym_LT_GT] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_INSERT] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_o] = ACTIONS(803), + [sym_hol_true] = ACTIONS(438), + [sym_hol_false] = ACTIONS(438), + [sym_hol_number] = ACTIONS(432), + [sym_hol_string] = ACTIONS(432), + [sym_hol_character] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [350] = { + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACE] = ACTIONS(470), + [anon_sym_EQ] = ACTIONS(805), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_if] = ACTIONS(472), + [anon_sym_else] = ACTIONS(472), + [anon_sym_case] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(472), + [anon_sym_u2227] = ACTIONS(807), + [anon_sym_SLASH_BSLASH] = ACTIONS(809), + [anon_sym_COLON_COLON] = ACTIONS(797), + [sym__hol_alphanumeric] = ACTIONS(472), + [sym__hol_symbolic] = ACTIONS(472), + [anon_sym_OLEAST] = ACTIONS(472), + [anon_sym_LEAST] = ACTIONS(472), + [anon_sym_some] = ACTIONS(472), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(472), + [anon_sym_u2203_BANG] = ACTIONS(470), + [anon_sym_QMARK_BANG] = ACTIONS(472), + [anon_sym_u2203] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(472), + [anon_sym_u2200] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(472), + [anon_sym_AT] = ACTIONS(472), + [anon_sym_u03bb] = ACTIONS(470), + [anon_sym_BSLASH] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(472), + [anon_sym_u00ac] = ACTIONS(470), + [anon_sym_TILDE] = ACTIONS(470), + [anon_sym_u21ce] = ACTIONS(825), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(827), + [anon_sym_LT_EQ_GT] = ACTIONS(827), + [anon_sym_u21d4] = ACTIONS(825), + [anon_sym_EQ_EQ_GT] = ACTIONS(817), + [anon_sym_u21d2] = ACTIONS(819), + [anon_sym_BSLASH_SLASH] = ACTIONS(821), + [anon_sym_u2228] = ACTIONS(823), + [anon_sym_u2209] = ACTIONS(811), + [anon_sym_NOTIN] = ACTIONS(813), + [anon_sym_u2208] = ACTIONS(811), + [anon_sym_IN] = ACTIONS(813), + [anon_sym_u227c] = ACTIONS(815), + [anon_sym_LT_LT_EQ] = ACTIONS(805), + [anon_sym_PERMUTES] = ACTIONS(805), + [anon_sym_HAS_SIZE] = ACTIONS(805), + [anon_sym_u2282] = ACTIONS(815), + [anon_sym_PSUBSET] = ACTIONS(805), + [anon_sym_u2286] = ACTIONS(805), + [anon_sym_u2265] = ACTIONS(815), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_u2264] = ACTIONS(815), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_u2286u1d63] = ACTIONS(815), + [anon_sym_RSUBSET] = ACTIONS(805), + [anon_sym_u2260] = ACTIONS(815), + [anon_sym_LT_GT] = ACTIONS(805), + [anon_sym_DOLLAR] = ACTIONS(799), + [anon_sym_INSERT] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_o] = ACTIONS(803), + [sym_hol_true] = ACTIONS(472), + [sym_hol_false] = ACTIONS(472), + [sym_hol_number] = ACTIONS(470), + [sym_hol_string] = ACTIONS(470), + [sym_hol_character] = ACTIONS(470), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [351] = { + [anon_sym_LPAREN] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(419), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(417), + [anon_sym_if] = ACTIONS(419), + [anon_sym_else] = ACTIONS(419), + [anon_sym_case] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(419), + [anon_sym_u2227] = ACTIONS(417), + [anon_sym_SLASH_BSLASH] = ACTIONS(419), + [anon_sym_COLON_COLON] = ACTIONS(419), + [sym__hol_alphanumeric] = ACTIONS(419), + [sym__hol_symbolic] = ACTIONS(419), + [anon_sym_OLEAST] = ACTIONS(419), + [anon_sym_LEAST] = ACTIONS(419), + [anon_sym_some] = ACTIONS(419), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(419), + [anon_sym_u2203_BANG] = ACTIONS(417), + [anon_sym_QMARK_BANG] = ACTIONS(419), + [anon_sym_u2203] = ACTIONS(419), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u2200] = ACTIONS(417), + [anon_sym_BANG] = ACTIONS(419), + [anon_sym_AT] = ACTIONS(419), + [anon_sym_u03bb] = ACTIONS(417), + [anon_sym_BSLASH] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(419), + [anon_sym_u00ac] = ACTIONS(417), + [anon_sym_TILDE] = ACTIONS(417), + [anon_sym_u21ce] = ACTIONS(417), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(419), + [anon_sym_LT_EQ_GT] = ACTIONS(419), + [anon_sym_u21d4] = ACTIONS(417), + [anon_sym_EQ_EQ_GT] = ACTIONS(419), + [anon_sym_u21d2] = ACTIONS(417), + [anon_sym_BSLASH_SLASH] = ACTIONS(419), + [anon_sym_u2228] = ACTIONS(417), + [anon_sym_u2209] = ACTIONS(417), + [anon_sym_NOTIN] = ACTIONS(419), + [anon_sym_u2208] = ACTIONS(417), + [anon_sym_IN] = ACTIONS(419), + [anon_sym_u227c] = ACTIONS(417), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_PERMUTES] = ACTIONS(419), + [anon_sym_HAS_SIZE] = ACTIONS(419), + [anon_sym_u2282] = ACTIONS(417), + [anon_sym_PSUBSET] = ACTIONS(419), + [anon_sym_u2286] = ACTIONS(419), + [anon_sym_u2265] = ACTIONS(417), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_u2264] = ACTIONS(417), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT] = ACTIONS(419), + [anon_sym_LT] = ACTIONS(419), + [anon_sym_u2286u1d63] = ACTIONS(417), + [anon_sym_RSUBSET] = ACTIONS(419), + [anon_sym_u2260] = ACTIONS(417), + [anon_sym_LT_GT] = ACTIONS(419), + [anon_sym_DOLLAR] = ACTIONS(419), + [anon_sym_INSERT] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(419), + [anon_sym_o] = ACTIONS(419), + [sym_hol_true] = ACTIONS(419), + [sym_hol_false] = ACTIONS(419), + [sym_hol_number] = ACTIONS(417), + [sym_hol_string] = ACTIONS(417), + [sym_hol_character] = ACTIONS(417), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [352] = { + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_if] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_End] = ACTIONS(89), + [anon_sym_Termination] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(89), + [sym__hol_symbolic] = ACTIONS(89), + [anon_sym_OLEAST] = ACTIONS(89), + [anon_sym_LEAST] = ACTIONS(89), + [anon_sym_some] = ACTIONS(89), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(89), + [anon_sym_u2203_BANG] = ACTIONS(85), + [anon_sym_QMARK_BANG] = ACTIONS(89), + [anon_sym_u2203] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(89), + [anon_sym_u2200] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_u03bb] = ACTIONS(85), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_u00ac] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(89), + [sym_hol_false] = ACTIONS(89), + [sym_hol_number] = ACTIONS(85), + [sym_hol_string] = ACTIONS(85), + [sym_hol_character] = ACTIONS(85), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [353] = { + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_if] = ACTIONS(480), + [anon_sym_case] = ACTIONS(480), + [anon_sym_End] = ACTIONS(480), + [anon_sym_Termination] = ACTIONS(480), + [anon_sym_u2227] = ACTIONS(478), + [anon_sym_SLASH_BSLASH] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(480), + [sym__hol_alphanumeric] = ACTIONS(480), + [sym__hol_symbolic] = ACTIONS(480), + [anon_sym_OLEAST] = ACTIONS(480), + [anon_sym_LEAST] = ACTIONS(480), + [anon_sym_some] = ACTIONS(480), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(480), + [anon_sym_u2203_BANG] = ACTIONS(478), + [anon_sym_QMARK_BANG] = ACTIONS(480), + [anon_sym_u2203] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u2200] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_u03bb] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_u00ac] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_u21ce] = ACTIONS(478), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(480), + [anon_sym_LT_EQ_GT] = ACTIONS(480), + [anon_sym_u21d4] = ACTIONS(478), + [anon_sym_EQ_EQ_GT] = ACTIONS(480), + [anon_sym_u21d2] = ACTIONS(478), + [anon_sym_BSLASH_SLASH] = ACTIONS(480), + [anon_sym_u2228] = ACTIONS(478), + [anon_sym_u2209] = ACTIONS(478), + [anon_sym_NOTIN] = ACTIONS(480), + [anon_sym_u2208] = ACTIONS(478), + [anon_sym_IN] = ACTIONS(480), + [anon_sym_u227c] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_PERMUTES] = ACTIONS(480), + [anon_sym_HAS_SIZE] = ACTIONS(480), + [anon_sym_u2282] = ACTIONS(478), + [anon_sym_PSUBSET] = ACTIONS(480), + [anon_sym_u2286] = ACTIONS(480), + [anon_sym_u2265] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_u2264] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_u2286u1d63] = ACTIONS(478), + [anon_sym_RSUBSET] = ACTIONS(480), + [anon_sym_u2260] = ACTIONS(478), + [anon_sym_LT_GT] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_INSERT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_o] = ACTIONS(480), + [sym_hol_true] = ACTIONS(480), + [sym_hol_false] = ACTIONS(480), + [sym_hol_number] = ACTIONS(478), + [sym_hol_string] = ACTIONS(478), + [sym_hol_character] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [354] = { + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_if] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_End] = ACTIONS(484), + [anon_sym_Termination] = ACTIONS(484), + [anon_sym_u2227] = ACTIONS(482), + [anon_sym_SLASH_BSLASH] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(484), + [sym__hol_alphanumeric] = ACTIONS(484), + [sym__hol_symbolic] = ACTIONS(484), + [anon_sym_OLEAST] = ACTIONS(484), + [anon_sym_LEAST] = ACTIONS(484), + [anon_sym_some] = ACTIONS(484), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(484), + [anon_sym_u2203_BANG] = ACTIONS(482), + [anon_sym_QMARK_BANG] = ACTIONS(484), + [anon_sym_u2203] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u2200] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_u03bb] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_u00ac] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_u21ce] = ACTIONS(482), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(484), + [anon_sym_LT_EQ_GT] = ACTIONS(484), + [anon_sym_u21d4] = ACTIONS(482), + [anon_sym_EQ_EQ_GT] = ACTIONS(484), + [anon_sym_u21d2] = ACTIONS(482), + [anon_sym_BSLASH_SLASH] = ACTIONS(484), + [anon_sym_u2228] = ACTIONS(482), + [anon_sym_u2209] = ACTIONS(482), + [anon_sym_NOTIN] = ACTIONS(484), + [anon_sym_u2208] = ACTIONS(482), + [anon_sym_IN] = ACTIONS(484), + [anon_sym_u227c] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_PERMUTES] = ACTIONS(484), + [anon_sym_HAS_SIZE] = ACTIONS(484), + [anon_sym_u2282] = ACTIONS(482), + [anon_sym_PSUBSET] = ACTIONS(484), + [anon_sym_u2286] = ACTIONS(484), + [anon_sym_u2265] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_u2264] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_u2286u1d63] = ACTIONS(482), + [anon_sym_RSUBSET] = ACTIONS(484), + [anon_sym_u2260] = ACTIONS(482), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_INSERT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_o] = ACTIONS(484), + [sym_hol_true] = ACTIONS(484), + [sym_hol_false] = ACTIONS(484), + [sym_hol_number] = ACTIONS(482), + [sym_hol_string] = ACTIONS(482), + [sym_hol_character] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [355] = { + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_if] = ACTIONS(488), + [anon_sym_case] = ACTIONS(488), + [anon_sym_End] = ACTIONS(488), + [anon_sym_Termination] = ACTIONS(488), + [anon_sym_u2227] = ACTIONS(486), + [anon_sym_SLASH_BSLASH] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(488), + [sym__hol_alphanumeric] = ACTIONS(488), + [sym__hol_symbolic] = ACTIONS(488), + [anon_sym_OLEAST] = ACTIONS(488), + [anon_sym_LEAST] = ACTIONS(488), + [anon_sym_some] = ACTIONS(488), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(488), + [anon_sym_u2203_BANG] = ACTIONS(486), + [anon_sym_QMARK_BANG] = ACTIONS(488), + [anon_sym_u2203] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u2200] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_u03bb] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_u00ac] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_u21ce] = ACTIONS(486), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(488), + [anon_sym_LT_EQ_GT] = ACTIONS(488), + [anon_sym_u21d4] = ACTIONS(486), + [anon_sym_EQ_EQ_GT] = ACTIONS(488), + [anon_sym_u21d2] = ACTIONS(486), + [anon_sym_BSLASH_SLASH] = ACTIONS(488), + [anon_sym_u2228] = ACTIONS(486), + [anon_sym_u2209] = ACTIONS(486), + [anon_sym_NOTIN] = ACTIONS(488), + [anon_sym_u2208] = ACTIONS(486), + [anon_sym_IN] = ACTIONS(488), + [anon_sym_u227c] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_PERMUTES] = ACTIONS(488), + [anon_sym_HAS_SIZE] = ACTIONS(488), + [anon_sym_u2282] = ACTIONS(486), + [anon_sym_PSUBSET] = ACTIONS(488), + [anon_sym_u2286] = ACTIONS(488), + [anon_sym_u2265] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_u2264] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_u2286u1d63] = ACTIONS(486), + [anon_sym_RSUBSET] = ACTIONS(488), + [anon_sym_u2260] = ACTIONS(486), + [anon_sym_LT_GT] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_INSERT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_o] = ACTIONS(488), + [sym_hol_true] = ACTIONS(488), + [sym_hol_false] = ACTIONS(488), + [sym_hol_number] = ACTIONS(486), + [sym_hol_string] = ACTIONS(486), + [sym_hol_character] = ACTIONS(486), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [356] = { + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_if] = ACTIONS(430), + [anon_sym_case] = ACTIONS(430), + [anon_sym_End] = ACTIONS(430), + [anon_sym_Termination] = ACTIONS(430), + [anon_sym_u2227] = ACTIONS(428), + [anon_sym_SLASH_BSLASH] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(430), + [sym__hol_alphanumeric] = ACTIONS(430), + [sym__hol_symbolic] = ACTIONS(430), + [anon_sym_OLEAST] = ACTIONS(430), + [anon_sym_LEAST] = ACTIONS(430), + [anon_sym_some] = ACTIONS(430), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(430), + [anon_sym_u2203_BANG] = ACTIONS(428), + [anon_sym_QMARK_BANG] = ACTIONS(430), + [anon_sym_u2203] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u2200] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_u03bb] = ACTIONS(428), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_u00ac] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_u21ce] = ACTIONS(428), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(430), + [anon_sym_LT_EQ_GT] = ACTIONS(430), + [anon_sym_u21d4] = ACTIONS(428), + [anon_sym_EQ_EQ_GT] = ACTIONS(430), + [anon_sym_u21d2] = ACTIONS(428), + [anon_sym_BSLASH_SLASH] = ACTIONS(430), + [anon_sym_u2228] = ACTIONS(428), + [anon_sym_u2209] = ACTIONS(428), + [anon_sym_NOTIN] = ACTIONS(430), + [anon_sym_u2208] = ACTIONS(428), + [anon_sym_IN] = ACTIONS(430), + [anon_sym_u227c] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_PERMUTES] = ACTIONS(430), + [anon_sym_HAS_SIZE] = ACTIONS(430), + [anon_sym_u2282] = ACTIONS(428), + [anon_sym_PSUBSET] = ACTIONS(430), + [anon_sym_u2286] = ACTIONS(430), + [anon_sym_u2265] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_u2264] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_u2286u1d63] = ACTIONS(428), + [anon_sym_RSUBSET] = ACTIONS(430), + [anon_sym_u2260] = ACTIONS(428), + [anon_sym_LT_GT] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(430), + [anon_sym_INSERT] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_o] = ACTIONS(430), + [sym_hol_true] = ACTIONS(430), + [sym_hol_false] = ACTIONS(430), + [sym_hol_number] = ACTIONS(428), + [sym_hol_string] = ACTIONS(428), + [sym_hol_character] = ACTIONS(428), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [357] = { + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_then] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [358] = { + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_if] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_End] = ACTIONS(492), + [anon_sym_Termination] = ACTIONS(492), + [anon_sym_u2227] = ACTIONS(490), + [anon_sym_SLASH_BSLASH] = ACTIONS(492), + [anon_sym_COLON_COLON] = ACTIONS(492), + [sym__hol_alphanumeric] = ACTIONS(492), + [sym__hol_symbolic] = ACTIONS(492), + [anon_sym_OLEAST] = ACTIONS(492), + [anon_sym_LEAST] = ACTIONS(492), + [anon_sym_some] = ACTIONS(492), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(492), + [anon_sym_u2203_BANG] = ACTIONS(490), + [anon_sym_QMARK_BANG] = ACTIONS(492), + [anon_sym_u2203] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u2200] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_u03bb] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_u00ac] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_u21ce] = ACTIONS(490), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(492), + [anon_sym_LT_EQ_GT] = ACTIONS(492), + [anon_sym_u21d4] = ACTIONS(490), + [anon_sym_EQ_EQ_GT] = ACTIONS(492), + [anon_sym_u21d2] = ACTIONS(490), + [anon_sym_BSLASH_SLASH] = ACTIONS(492), + [anon_sym_u2228] = ACTIONS(490), + [anon_sym_u2209] = ACTIONS(490), + [anon_sym_NOTIN] = ACTIONS(492), + [anon_sym_u2208] = ACTIONS(490), + [anon_sym_IN] = ACTIONS(492), + [anon_sym_u227c] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_PERMUTES] = ACTIONS(492), + [anon_sym_HAS_SIZE] = ACTIONS(492), + [anon_sym_u2282] = ACTIONS(490), + [anon_sym_PSUBSET] = ACTIONS(492), + [anon_sym_u2286] = ACTIONS(492), + [anon_sym_u2265] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_u2264] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_u2286u1d63] = ACTIONS(490), + [anon_sym_RSUBSET] = ACTIONS(492), + [anon_sym_u2260] = ACTIONS(490), + [anon_sym_LT_GT] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_INSERT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_o] = ACTIONS(492), + [sym_hol_true] = ACTIONS(492), + [sym_hol_false] = ACTIONS(492), + [sym_hol_number] = ACTIONS(490), + [sym_hol_string] = ACTIONS(490), + [sym_hol_character] = ACTIONS(490), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [359] = { + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_if] = ACTIONS(496), + [anon_sym_case] = ACTIONS(496), + [anon_sym_End] = ACTIONS(496), + [anon_sym_Termination] = ACTIONS(496), + [anon_sym_u2227] = ACTIONS(494), + [anon_sym_SLASH_BSLASH] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(496), + [sym__hol_alphanumeric] = ACTIONS(496), + [sym__hol_symbolic] = ACTIONS(496), + [anon_sym_OLEAST] = ACTIONS(496), + [anon_sym_LEAST] = ACTIONS(496), + [anon_sym_some] = ACTIONS(496), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(496), + [anon_sym_u2203_BANG] = ACTIONS(494), + [anon_sym_QMARK_BANG] = ACTIONS(496), + [anon_sym_u2203] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u2200] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_u03bb] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_u00ac] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_u21ce] = ACTIONS(494), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(496), + [anon_sym_LT_EQ_GT] = ACTIONS(496), + [anon_sym_u21d4] = ACTIONS(494), + [anon_sym_EQ_EQ_GT] = ACTIONS(496), + [anon_sym_u21d2] = ACTIONS(494), + [anon_sym_BSLASH_SLASH] = ACTIONS(496), + [anon_sym_u2228] = ACTIONS(494), + [anon_sym_u2209] = ACTIONS(494), + [anon_sym_NOTIN] = ACTIONS(496), + [anon_sym_u2208] = ACTIONS(494), + [anon_sym_IN] = ACTIONS(496), + [anon_sym_u227c] = ACTIONS(494), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_PERMUTES] = ACTIONS(496), + [anon_sym_HAS_SIZE] = ACTIONS(496), + [anon_sym_u2282] = ACTIONS(494), + [anon_sym_PSUBSET] = ACTIONS(496), + [anon_sym_u2286] = ACTIONS(496), + [anon_sym_u2265] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_u2264] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_u2286u1d63] = ACTIONS(494), + [anon_sym_RSUBSET] = ACTIONS(496), + [anon_sym_u2260] = ACTIONS(494), + [anon_sym_LT_GT] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(496), + [anon_sym_INSERT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_o] = ACTIONS(496), + [sym_hol_true] = ACTIONS(496), + [sym_hol_false] = ACTIONS(496), + [sym_hol_number] = ACTIONS(494), + [sym_hol_string] = ACTIONS(494), + [sym_hol_character] = ACTIONS(494), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [360] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(671), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(673), + [anon_sym_SLASH_BSLASH] = ACTIONS(675), + [anon_sym_COLON_COLON] = ACTIONS(677), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(691), + [anon_sym_NOTIN] = ACTIONS(693), + [anon_sym_u2208] = ACTIONS(691), + [anon_sym_IN] = ACTIONS(693), + [anon_sym_u227c] = ACTIONS(695), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_PERMUTES] = ACTIONS(669), + [anon_sym_HAS_SIZE] = ACTIONS(669), + [anon_sym_u2282] = ACTIONS(695), + [anon_sym_PSUBSET] = ACTIONS(669), + [anon_sym_u2286] = ACTIONS(669), + [anon_sym_u2265] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(669), + [anon_sym_u2264] = ACTIONS(695), + [anon_sym_LT_EQ] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_u2286u1d63] = ACTIONS(695), + [anon_sym_RSUBSET] = ACTIONS(669), + [anon_sym_u2260] = ACTIONS(695), + [anon_sym_LT_GT] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_INSERT] = ACTIONS(677), + [anon_sym_PLUS] = ACTIONS(699), + [anon_sym_o] = ACTIONS(701), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [361] = { + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_then] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_u2227] = ACTIONS(510), + [anon_sym_SLASH_BSLASH] = ACTIONS(512), + [anon_sym_COLON_COLON] = ACTIONS(512), + [sym__hol_alphanumeric] = ACTIONS(512), + [sym__hol_symbolic] = ACTIONS(512), + [anon_sym_OLEAST] = ACTIONS(512), + [anon_sym_LEAST] = ACTIONS(512), + [anon_sym_some] = ACTIONS(512), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(512), + [anon_sym_u2203_BANG] = ACTIONS(510), + [anon_sym_QMARK_BANG] = ACTIONS(512), + [anon_sym_u2203] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u2200] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_u03bb] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_u00ac] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_u21ce] = ACTIONS(510), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(512), + [anon_sym_LT_EQ_GT] = ACTIONS(512), + [anon_sym_u21d4] = ACTIONS(510), + [anon_sym_EQ_EQ_GT] = ACTIONS(512), + [anon_sym_u21d2] = ACTIONS(510), + [anon_sym_BSLASH_SLASH] = ACTIONS(512), + [anon_sym_u2228] = ACTIONS(510), + [anon_sym_u2209] = ACTIONS(510), + [anon_sym_NOTIN] = ACTIONS(512), + [anon_sym_u2208] = ACTIONS(510), + [anon_sym_IN] = ACTIONS(512), + [anon_sym_u227c] = ACTIONS(510), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_PERMUTES] = ACTIONS(512), + [anon_sym_HAS_SIZE] = ACTIONS(512), + [anon_sym_u2282] = ACTIONS(510), + [anon_sym_PSUBSET] = ACTIONS(512), + [anon_sym_u2286] = ACTIONS(512), + [anon_sym_u2265] = ACTIONS(510), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_u2264] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_u2286u1d63] = ACTIONS(510), + [anon_sym_RSUBSET] = ACTIONS(512), + [anon_sym_u2260] = ACTIONS(510), + [anon_sym_LT_GT] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_INSERT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_o] = ACTIONS(512), + [sym_hol_true] = ACTIONS(512), + [sym_hol_false] = ACTIONS(512), + [sym_hol_number] = ACTIONS(510), + [sym_hol_string] = ACTIONS(510), + [sym_hol_character] = ACTIONS(510), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [362] = { + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_else] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_u2227] = ACTIONS(474), + [anon_sym_SLASH_BSLASH] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(476), + [sym__hol_alphanumeric] = ACTIONS(476), + [sym__hol_symbolic] = ACTIONS(476), + [anon_sym_OLEAST] = ACTIONS(476), + [anon_sym_LEAST] = ACTIONS(476), + [anon_sym_some] = ACTIONS(476), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(476), + [anon_sym_u2203_BANG] = ACTIONS(474), + [anon_sym_QMARK_BANG] = ACTIONS(476), + [anon_sym_u2203] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u2200] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_u03bb] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_u00ac] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_u21ce] = ACTIONS(474), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(476), + [anon_sym_LT_EQ_GT] = ACTIONS(476), + [anon_sym_u21d4] = ACTIONS(474), + [anon_sym_EQ_EQ_GT] = ACTIONS(476), + [anon_sym_u21d2] = ACTIONS(474), + [anon_sym_BSLASH_SLASH] = ACTIONS(476), + [anon_sym_u2228] = ACTIONS(474), + [anon_sym_u2209] = ACTIONS(474), + [anon_sym_NOTIN] = ACTIONS(476), + [anon_sym_u2208] = ACTIONS(474), + [anon_sym_IN] = ACTIONS(476), + [anon_sym_u227c] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_PERMUTES] = ACTIONS(476), + [anon_sym_HAS_SIZE] = ACTIONS(476), + [anon_sym_u2282] = ACTIONS(474), + [anon_sym_PSUBSET] = ACTIONS(476), + [anon_sym_u2286] = ACTIONS(476), + [anon_sym_u2265] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_u2264] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_u2286u1d63] = ACTIONS(474), + [anon_sym_RSUBSET] = ACTIONS(476), + [anon_sym_u2260] = ACTIONS(474), + [anon_sym_LT_GT] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_INSERT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_o] = ACTIONS(476), + [sym_hol_true] = ACTIONS(476), + [sym_hol_false] = ACTIONS(476), + [sym_hol_number] = ACTIONS(474), + [sym_hol_string] = ACTIONS(474), + [sym_hol_character] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [363] = { + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_of] = ACTIONS(476), + [anon_sym_u2227] = ACTIONS(474), + [anon_sym_SLASH_BSLASH] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(476), + [sym__hol_alphanumeric] = ACTIONS(476), + [sym__hol_symbolic] = ACTIONS(476), + [anon_sym_OLEAST] = ACTIONS(476), + [anon_sym_LEAST] = ACTIONS(476), + [anon_sym_some] = ACTIONS(476), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(476), + [anon_sym_u2203_BANG] = ACTIONS(474), + [anon_sym_QMARK_BANG] = ACTIONS(476), + [anon_sym_u2203] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u2200] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_u03bb] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_u00ac] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_u21ce] = ACTIONS(474), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(476), + [anon_sym_LT_EQ_GT] = ACTIONS(476), + [anon_sym_u21d4] = ACTIONS(474), + [anon_sym_EQ_EQ_GT] = ACTIONS(476), + [anon_sym_u21d2] = ACTIONS(474), + [anon_sym_BSLASH_SLASH] = ACTIONS(476), + [anon_sym_u2228] = ACTIONS(474), + [anon_sym_u2209] = ACTIONS(474), + [anon_sym_NOTIN] = ACTIONS(476), + [anon_sym_u2208] = ACTIONS(474), + [anon_sym_IN] = ACTIONS(476), + [anon_sym_u227c] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_PERMUTES] = ACTIONS(476), + [anon_sym_HAS_SIZE] = ACTIONS(476), + [anon_sym_u2282] = ACTIONS(474), + [anon_sym_PSUBSET] = ACTIONS(476), + [anon_sym_u2286] = ACTIONS(476), + [anon_sym_u2265] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_u2264] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_u2286u1d63] = ACTIONS(474), + [anon_sym_RSUBSET] = ACTIONS(476), + [anon_sym_u2260] = ACTIONS(474), + [anon_sym_LT_GT] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_INSERT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_o] = ACTIONS(476), + [sym_hol_true] = ACTIONS(476), + [sym_hol_false] = ACTIONS(476), + [sym_hol_number] = ACTIONS(474), + [sym_hol_string] = ACTIONS(474), + [sym_hol_character] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [364] = { + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_if] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_Proof] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(89), + [sym__hol_symbolic] = ACTIONS(89), + [anon_sym_OLEAST] = ACTIONS(89), + [anon_sym_LEAST] = ACTIONS(89), + [anon_sym_some] = ACTIONS(89), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(89), + [anon_sym_u2203_BANG] = ACTIONS(85), + [anon_sym_QMARK_BANG] = ACTIONS(89), + [anon_sym_u2203] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(89), + [anon_sym_u2200] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_u03bb] = ACTIONS(85), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_u00ac] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(89), + [sym_hol_false] = ACTIONS(89), + [sym_hol_number] = ACTIONS(85), + [sym_hol_string] = ACTIONS(85), + [sym_hol_character] = ACTIONS(85), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [365] = { + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_if] = ACTIONS(480), + [anon_sym_case] = ACTIONS(480), + [anon_sym_Proof] = ACTIONS(480), + [anon_sym_u2227] = ACTIONS(478), + [anon_sym_SLASH_BSLASH] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(480), + [sym__hol_alphanumeric] = ACTIONS(480), + [sym__hol_symbolic] = ACTIONS(480), + [anon_sym_OLEAST] = ACTIONS(480), + [anon_sym_LEAST] = ACTIONS(480), + [anon_sym_some] = ACTIONS(480), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(480), + [anon_sym_u2203_BANG] = ACTIONS(478), + [anon_sym_QMARK_BANG] = ACTIONS(480), + [anon_sym_u2203] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u2200] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_u03bb] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_u00ac] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_u21ce] = ACTIONS(478), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(480), + [anon_sym_LT_EQ_GT] = ACTIONS(480), + [anon_sym_u21d4] = ACTIONS(478), + [anon_sym_EQ_EQ_GT] = ACTIONS(480), + [anon_sym_u21d2] = ACTIONS(478), + [anon_sym_BSLASH_SLASH] = ACTIONS(480), + [anon_sym_u2228] = ACTIONS(478), + [anon_sym_u2209] = ACTIONS(478), + [anon_sym_NOTIN] = ACTIONS(480), + [anon_sym_u2208] = ACTIONS(478), + [anon_sym_IN] = ACTIONS(480), + [anon_sym_u227c] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_PERMUTES] = ACTIONS(480), + [anon_sym_HAS_SIZE] = ACTIONS(480), + [anon_sym_u2282] = ACTIONS(478), + [anon_sym_PSUBSET] = ACTIONS(480), + [anon_sym_u2286] = ACTIONS(480), + [anon_sym_u2265] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_u2264] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_u2286u1d63] = ACTIONS(478), + [anon_sym_RSUBSET] = ACTIONS(480), + [anon_sym_u2260] = ACTIONS(478), + [anon_sym_LT_GT] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_INSERT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_o] = ACTIONS(480), + [sym_hol_true] = ACTIONS(480), + [sym_hol_false] = ACTIONS(480), + [sym_hol_number] = ACTIONS(478), + [sym_hol_string] = ACTIONS(478), + [sym_hol_character] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [366] = { + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_then] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_u2227] = ACTIONS(498), + [anon_sym_SLASH_BSLASH] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(500), + [sym__hol_alphanumeric] = ACTIONS(500), + [sym__hol_symbolic] = ACTIONS(500), + [anon_sym_OLEAST] = ACTIONS(500), + [anon_sym_LEAST] = ACTIONS(500), + [anon_sym_some] = ACTIONS(500), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(500), + [anon_sym_u2203_BANG] = ACTIONS(498), + [anon_sym_QMARK_BANG] = ACTIONS(500), + [anon_sym_u2203] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u2200] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_u03bb] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_u00ac] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_u21ce] = ACTIONS(498), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(500), + [anon_sym_LT_EQ_GT] = ACTIONS(500), + [anon_sym_u21d4] = ACTIONS(498), + [anon_sym_EQ_EQ_GT] = ACTIONS(500), + [anon_sym_u21d2] = ACTIONS(498), + [anon_sym_BSLASH_SLASH] = ACTIONS(500), + [anon_sym_u2228] = ACTIONS(498), + [anon_sym_u2209] = ACTIONS(498), + [anon_sym_NOTIN] = ACTIONS(500), + [anon_sym_u2208] = ACTIONS(498), + [anon_sym_IN] = ACTIONS(500), + [anon_sym_u227c] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_PERMUTES] = ACTIONS(500), + [anon_sym_HAS_SIZE] = ACTIONS(500), + [anon_sym_u2282] = ACTIONS(498), + [anon_sym_PSUBSET] = ACTIONS(500), + [anon_sym_u2286] = ACTIONS(500), + [anon_sym_u2265] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_u2264] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_u2286u1d63] = ACTIONS(498), + [anon_sym_RSUBSET] = ACTIONS(500), + [anon_sym_u2260] = ACTIONS(498), + [anon_sym_LT_GT] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_INSERT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_o] = ACTIONS(500), + [sym_hol_true] = ACTIONS(500), + [sym_hol_false] = ACTIONS(500), + [sym_hol_number] = ACTIONS(498), + [sym_hol_string] = ACTIONS(498), + [sym_hol_character] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [367] = { + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_Proof] = ACTIONS(508), + [anon_sym_u2227] = ACTIONS(506), + [anon_sym_SLASH_BSLASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(508), + [sym__hol_alphanumeric] = ACTIONS(508), + [sym__hol_symbolic] = ACTIONS(508), + [anon_sym_OLEAST] = ACTIONS(508), + [anon_sym_LEAST] = ACTIONS(508), + [anon_sym_some] = ACTIONS(508), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(508), + [anon_sym_u2203_BANG] = ACTIONS(506), + [anon_sym_QMARK_BANG] = ACTIONS(508), + [anon_sym_u2203] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u2200] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_u03bb] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_u00ac] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_u21ce] = ACTIONS(506), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(508), + [anon_sym_LT_EQ_GT] = ACTIONS(508), + [anon_sym_u21d4] = ACTIONS(506), + [anon_sym_EQ_EQ_GT] = ACTIONS(508), + [anon_sym_u21d2] = ACTIONS(506), + [anon_sym_BSLASH_SLASH] = ACTIONS(508), + [anon_sym_u2228] = ACTIONS(506), + [anon_sym_u2209] = ACTIONS(506), + [anon_sym_NOTIN] = ACTIONS(508), + [anon_sym_u2208] = ACTIONS(506), + [anon_sym_IN] = ACTIONS(508), + [anon_sym_u227c] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_PERMUTES] = ACTIONS(508), + [anon_sym_HAS_SIZE] = ACTIONS(508), + [anon_sym_u2282] = ACTIONS(506), + [anon_sym_PSUBSET] = ACTIONS(508), + [anon_sym_u2286] = ACTIONS(508), + [anon_sym_u2265] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_u2264] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_u2286u1d63] = ACTIONS(506), + [anon_sym_RSUBSET] = ACTIONS(508), + [anon_sym_u2260] = ACTIONS(506), + [anon_sym_LT_GT] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(508), + [anon_sym_INSERT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_o] = ACTIONS(508), + [sym_hol_true] = ACTIONS(508), + [sym_hol_false] = ACTIONS(508), + [sym_hol_number] = ACTIONS(506), + [sym_hol_string] = ACTIONS(506), + [sym_hol_character] = ACTIONS(506), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [368] = { + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_if] = ACTIONS(480), + [anon_sym_else] = ACTIONS(480), + [anon_sym_case] = ACTIONS(480), + [anon_sym_u2227] = ACTIONS(478), + [anon_sym_SLASH_BSLASH] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(480), + [sym__hol_alphanumeric] = ACTIONS(480), + [sym__hol_symbolic] = ACTIONS(480), + [anon_sym_OLEAST] = ACTIONS(480), + [anon_sym_LEAST] = ACTIONS(480), + [anon_sym_some] = ACTIONS(480), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(480), + [anon_sym_u2203_BANG] = ACTIONS(478), + [anon_sym_QMARK_BANG] = ACTIONS(480), + [anon_sym_u2203] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u2200] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_u03bb] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_u00ac] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_u21ce] = ACTIONS(478), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(480), + [anon_sym_LT_EQ_GT] = ACTIONS(480), + [anon_sym_u21d4] = ACTIONS(478), + [anon_sym_EQ_EQ_GT] = ACTIONS(480), + [anon_sym_u21d2] = ACTIONS(478), + [anon_sym_BSLASH_SLASH] = ACTIONS(480), + [anon_sym_u2228] = ACTIONS(478), + [anon_sym_u2209] = ACTIONS(478), + [anon_sym_NOTIN] = ACTIONS(480), + [anon_sym_u2208] = ACTIONS(478), + [anon_sym_IN] = ACTIONS(480), + [anon_sym_u227c] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_PERMUTES] = ACTIONS(480), + [anon_sym_HAS_SIZE] = ACTIONS(480), + [anon_sym_u2282] = ACTIONS(478), + [anon_sym_PSUBSET] = ACTIONS(480), + [anon_sym_u2286] = ACTIONS(480), + [anon_sym_u2265] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_u2264] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_u2286u1d63] = ACTIONS(478), + [anon_sym_RSUBSET] = ACTIONS(480), + [anon_sym_u2260] = ACTIONS(478), + [anon_sym_LT_GT] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_INSERT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_o] = ACTIONS(480), + [sym_hol_true] = ACTIONS(480), + [sym_hol_false] = ACTIONS(480), + [sym_hol_number] = ACTIONS(478), + [sym_hol_string] = ACTIONS(478), + [sym_hol_character] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [369] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(829), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(833), + [anon_sym_SLASH_BSLASH] = ACTIONS(835), + [anon_sym_COLON_COLON] = ACTIONS(837), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(839), + [anon_sym_u2228] = ACTIONS(841), + [anon_sym_u2209] = ACTIONS(843), + [anon_sym_NOTIN] = ACTIONS(845), + [anon_sym_u2208] = ACTIONS(843), + [anon_sym_IN] = ACTIONS(845), + [anon_sym_u227c] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(829), + [anon_sym_PERMUTES] = ACTIONS(829), + [anon_sym_HAS_SIZE] = ACTIONS(829), + [anon_sym_u2282] = ACTIONS(847), + [anon_sym_PSUBSET] = ACTIONS(829), + [anon_sym_u2286] = ACTIONS(829), + [anon_sym_u2265] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_u2264] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_LT] = ACTIONS(829), + [anon_sym_u2286u1d63] = ACTIONS(847), + [anon_sym_RSUBSET] = ACTIONS(829), + [anon_sym_u2260] = ACTIONS(847), + [anon_sym_LT_GT] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_INSERT] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_o] = ACTIONS(853), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [370] = { + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_if] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_Proof] = ACTIONS(484), + [anon_sym_u2227] = ACTIONS(482), + [anon_sym_SLASH_BSLASH] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(484), + [sym__hol_alphanumeric] = ACTIONS(484), + [sym__hol_symbolic] = ACTIONS(484), + [anon_sym_OLEAST] = ACTIONS(484), + [anon_sym_LEAST] = ACTIONS(484), + [anon_sym_some] = ACTIONS(484), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(484), + [anon_sym_u2203_BANG] = ACTIONS(482), + [anon_sym_QMARK_BANG] = ACTIONS(484), + [anon_sym_u2203] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u2200] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_u03bb] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_u00ac] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_u21ce] = ACTIONS(482), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(484), + [anon_sym_LT_EQ_GT] = ACTIONS(484), + [anon_sym_u21d4] = ACTIONS(482), + [anon_sym_EQ_EQ_GT] = ACTIONS(484), + [anon_sym_u21d2] = ACTIONS(482), + [anon_sym_BSLASH_SLASH] = ACTIONS(484), + [anon_sym_u2228] = ACTIONS(482), + [anon_sym_u2209] = ACTIONS(482), + [anon_sym_NOTIN] = ACTIONS(484), + [anon_sym_u2208] = ACTIONS(482), + [anon_sym_IN] = ACTIONS(484), + [anon_sym_u227c] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_PERMUTES] = ACTIONS(484), + [anon_sym_HAS_SIZE] = ACTIONS(484), + [anon_sym_u2282] = ACTIONS(482), + [anon_sym_PSUBSET] = ACTIONS(484), + [anon_sym_u2286] = ACTIONS(484), + [anon_sym_u2265] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_u2264] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_u2286u1d63] = ACTIONS(482), + [anon_sym_RSUBSET] = ACTIONS(484), + [anon_sym_u2260] = ACTIONS(482), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_INSERT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_o] = ACTIONS(484), + [sym_hol_true] = ACTIONS(484), + [sym_hol_false] = ACTIONS(484), + [sym_hol_number] = ACTIONS(482), + [sym_hol_string] = ACTIONS(482), + [sym_hol_character] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [371] = { + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_then] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [372] = { + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_if] = ACTIONS(488), + [anon_sym_case] = ACTIONS(488), + [anon_sym_Proof] = ACTIONS(488), + [anon_sym_u2227] = ACTIONS(486), + [anon_sym_SLASH_BSLASH] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(488), + [sym__hol_alphanumeric] = ACTIONS(488), + [sym__hol_symbolic] = ACTIONS(488), + [anon_sym_OLEAST] = ACTIONS(488), + [anon_sym_LEAST] = ACTIONS(488), + [anon_sym_some] = ACTIONS(488), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(488), + [anon_sym_u2203_BANG] = ACTIONS(486), + [anon_sym_QMARK_BANG] = ACTIONS(488), + [anon_sym_u2203] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u2200] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_u03bb] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_u00ac] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_u21ce] = ACTIONS(486), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(488), + [anon_sym_LT_EQ_GT] = ACTIONS(488), + [anon_sym_u21d4] = ACTIONS(486), + [anon_sym_EQ_EQ_GT] = ACTIONS(488), + [anon_sym_u21d2] = ACTIONS(486), + [anon_sym_BSLASH_SLASH] = ACTIONS(488), + [anon_sym_u2228] = ACTIONS(486), + [anon_sym_u2209] = ACTIONS(486), + [anon_sym_NOTIN] = ACTIONS(488), + [anon_sym_u2208] = ACTIONS(486), + [anon_sym_IN] = ACTIONS(488), + [anon_sym_u227c] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_PERMUTES] = ACTIONS(488), + [anon_sym_HAS_SIZE] = ACTIONS(488), + [anon_sym_u2282] = ACTIONS(486), + [anon_sym_PSUBSET] = ACTIONS(488), + [anon_sym_u2286] = ACTIONS(488), + [anon_sym_u2265] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_u2264] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_u2286u1d63] = ACTIONS(486), + [anon_sym_RSUBSET] = ACTIONS(488), + [anon_sym_u2260] = ACTIONS(486), + [anon_sym_LT_GT] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_INSERT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_o] = ACTIONS(488), + [sym_hol_true] = ACTIONS(488), + [sym_hol_false] = ACTIONS(488), + [sym_hol_number] = ACTIONS(486), + [sym_hol_string] = ACTIONS(486), + [sym_hol_character] = ACTIONS(486), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [373] = { + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_if] = ACTIONS(480), + [anon_sym_case] = ACTIONS(480), + [anon_sym_of] = ACTIONS(480), + [anon_sym_u2227] = ACTIONS(478), + [anon_sym_SLASH_BSLASH] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(480), + [sym__hol_alphanumeric] = ACTIONS(480), + [sym__hol_symbolic] = ACTIONS(480), + [anon_sym_OLEAST] = ACTIONS(480), + [anon_sym_LEAST] = ACTIONS(480), + [anon_sym_some] = ACTIONS(480), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(480), + [anon_sym_u2203_BANG] = ACTIONS(478), + [anon_sym_QMARK_BANG] = ACTIONS(480), + [anon_sym_u2203] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u2200] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_u03bb] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_u00ac] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_u21ce] = ACTIONS(478), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(480), + [anon_sym_LT_EQ_GT] = ACTIONS(480), + [anon_sym_u21d4] = ACTIONS(478), + [anon_sym_EQ_EQ_GT] = ACTIONS(480), + [anon_sym_u21d2] = ACTIONS(478), + [anon_sym_BSLASH_SLASH] = ACTIONS(480), + [anon_sym_u2228] = ACTIONS(478), + [anon_sym_u2209] = ACTIONS(478), + [anon_sym_NOTIN] = ACTIONS(480), + [anon_sym_u2208] = ACTIONS(478), + [anon_sym_IN] = ACTIONS(480), + [anon_sym_u227c] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_PERMUTES] = ACTIONS(480), + [anon_sym_HAS_SIZE] = ACTIONS(480), + [anon_sym_u2282] = ACTIONS(478), + [anon_sym_PSUBSET] = ACTIONS(480), + [anon_sym_u2286] = ACTIONS(480), + [anon_sym_u2265] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_u2264] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_u2286u1d63] = ACTIONS(478), + [anon_sym_RSUBSET] = ACTIONS(480), + [anon_sym_u2260] = ACTIONS(478), + [anon_sym_LT_GT] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_INSERT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_o] = ACTIONS(480), + [sym_hol_true] = ACTIONS(480), + [sym_hol_false] = ACTIONS(480), + [sym_hol_number] = ACTIONS(478), + [sym_hol_string] = ACTIONS(478), + [sym_hol_character] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [374] = { + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_if] = ACTIONS(484), + [anon_sym_then] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_u2227] = ACTIONS(482), + [anon_sym_SLASH_BSLASH] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(484), + [sym__hol_alphanumeric] = ACTIONS(484), + [sym__hol_symbolic] = ACTIONS(484), + [anon_sym_OLEAST] = ACTIONS(484), + [anon_sym_LEAST] = ACTIONS(484), + [anon_sym_some] = ACTIONS(484), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(484), + [anon_sym_u2203_BANG] = ACTIONS(482), + [anon_sym_QMARK_BANG] = ACTIONS(484), + [anon_sym_u2203] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u2200] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_u03bb] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_u00ac] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_u21ce] = ACTIONS(482), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(484), + [anon_sym_LT_EQ_GT] = ACTIONS(484), + [anon_sym_u21d4] = ACTIONS(482), + [anon_sym_EQ_EQ_GT] = ACTIONS(484), + [anon_sym_u21d2] = ACTIONS(482), + [anon_sym_BSLASH_SLASH] = ACTIONS(484), + [anon_sym_u2228] = ACTIONS(482), + [anon_sym_u2209] = ACTIONS(482), + [anon_sym_NOTIN] = ACTIONS(484), + [anon_sym_u2208] = ACTIONS(482), + [anon_sym_IN] = ACTIONS(484), + [anon_sym_u227c] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_PERMUTES] = ACTIONS(484), + [anon_sym_HAS_SIZE] = ACTIONS(484), + [anon_sym_u2282] = ACTIONS(482), + [anon_sym_PSUBSET] = ACTIONS(484), + [anon_sym_u2286] = ACTIONS(484), + [anon_sym_u2265] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_u2264] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_u2286u1d63] = ACTIONS(482), + [anon_sym_RSUBSET] = ACTIONS(484), + [anon_sym_u2260] = ACTIONS(482), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_INSERT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_o] = ACTIONS(484), + [sym_hol_true] = ACTIONS(484), + [sym_hol_false] = ACTIONS(484), + [sym_hol_number] = ACTIONS(482), + [sym_hol_string] = ACTIONS(482), + [sym_hol_character] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [375] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(829), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(837), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(829), + [anon_sym_PERMUTES] = ACTIONS(829), + [anon_sym_HAS_SIZE] = ACTIONS(829), + [anon_sym_u2282] = ACTIONS(847), + [anon_sym_PSUBSET] = ACTIONS(829), + [anon_sym_u2286] = ACTIONS(829), + [anon_sym_u2265] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_u2264] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_LT] = ACTIONS(829), + [anon_sym_u2286u1d63] = ACTIONS(847), + [anon_sym_RSUBSET] = ACTIONS(829), + [anon_sym_u2260] = ACTIONS(847), + [anon_sym_LT_GT] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_INSERT] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_o] = ACTIONS(853), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [376] = { + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_if] = ACTIONS(488), + [anon_sym_else] = ACTIONS(488), + [anon_sym_case] = ACTIONS(488), + [anon_sym_u2227] = ACTIONS(486), + [anon_sym_SLASH_BSLASH] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(488), + [sym__hol_alphanumeric] = ACTIONS(488), + [sym__hol_symbolic] = ACTIONS(488), + [anon_sym_OLEAST] = ACTIONS(488), + [anon_sym_LEAST] = ACTIONS(488), + [anon_sym_some] = ACTIONS(488), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(488), + [anon_sym_u2203_BANG] = ACTIONS(486), + [anon_sym_QMARK_BANG] = ACTIONS(488), + [anon_sym_u2203] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u2200] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_u03bb] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_u00ac] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_u21ce] = ACTIONS(486), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(488), + [anon_sym_LT_EQ_GT] = ACTIONS(488), + [anon_sym_u21d4] = ACTIONS(486), + [anon_sym_EQ_EQ_GT] = ACTIONS(488), + [anon_sym_u21d2] = ACTIONS(486), + [anon_sym_BSLASH_SLASH] = ACTIONS(488), + [anon_sym_u2228] = ACTIONS(486), + [anon_sym_u2209] = ACTIONS(486), + [anon_sym_NOTIN] = ACTIONS(488), + [anon_sym_u2208] = ACTIONS(486), + [anon_sym_IN] = ACTIONS(488), + [anon_sym_u227c] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_PERMUTES] = ACTIONS(488), + [anon_sym_HAS_SIZE] = ACTIONS(488), + [anon_sym_u2282] = ACTIONS(486), + [anon_sym_PSUBSET] = ACTIONS(488), + [anon_sym_u2286] = ACTIONS(488), + [anon_sym_u2265] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_u2264] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_u2286u1d63] = ACTIONS(486), + [anon_sym_RSUBSET] = ACTIONS(488), + [anon_sym_u2260] = ACTIONS(486), + [anon_sym_LT_GT] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_INSERT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_o] = ACTIONS(488), + [sym_hol_true] = ACTIONS(488), + [sym_hol_false] = ACTIONS(488), + [sym_hol_number] = ACTIONS(486), + [sym_hol_string] = ACTIONS(486), + [sym_hol_character] = ACTIONS(486), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [377] = { + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_if] = ACTIONS(430), + [anon_sym_else] = ACTIONS(430), + [anon_sym_case] = ACTIONS(430), + [anon_sym_u2227] = ACTIONS(428), + [anon_sym_SLASH_BSLASH] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(430), + [sym__hol_alphanumeric] = ACTIONS(430), + [sym__hol_symbolic] = ACTIONS(430), + [anon_sym_OLEAST] = ACTIONS(430), + [anon_sym_LEAST] = ACTIONS(430), + [anon_sym_some] = ACTIONS(430), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(430), + [anon_sym_u2203_BANG] = ACTIONS(428), + [anon_sym_QMARK_BANG] = ACTIONS(430), + [anon_sym_u2203] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u2200] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_u03bb] = ACTIONS(428), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_u00ac] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_u21ce] = ACTIONS(428), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(430), + [anon_sym_LT_EQ_GT] = ACTIONS(430), + [anon_sym_u21d4] = ACTIONS(428), + [anon_sym_EQ_EQ_GT] = ACTIONS(430), + [anon_sym_u21d2] = ACTIONS(428), + [anon_sym_BSLASH_SLASH] = ACTIONS(430), + [anon_sym_u2228] = ACTIONS(428), + [anon_sym_u2209] = ACTIONS(428), + [anon_sym_NOTIN] = ACTIONS(430), + [anon_sym_u2208] = ACTIONS(428), + [anon_sym_IN] = ACTIONS(430), + [anon_sym_u227c] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_PERMUTES] = ACTIONS(430), + [anon_sym_HAS_SIZE] = ACTIONS(430), + [anon_sym_u2282] = ACTIONS(428), + [anon_sym_PSUBSET] = ACTIONS(430), + [anon_sym_u2286] = ACTIONS(430), + [anon_sym_u2265] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_u2264] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_u2286u1d63] = ACTIONS(428), + [anon_sym_RSUBSET] = ACTIONS(430), + [anon_sym_u2260] = ACTIONS(428), + [anon_sym_LT_GT] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(430), + [anon_sym_INSERT] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_o] = ACTIONS(430), + [sym_hol_true] = ACTIONS(430), + [sym_hol_false] = ACTIONS(430), + [sym_hol_number] = ACTIONS(428), + [sym_hol_string] = ACTIONS(428), + [sym_hol_character] = ACTIONS(428), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [378] = { + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_if] = ACTIONS(430), + [anon_sym_case] = ACTIONS(430), + [anon_sym_Proof] = ACTIONS(430), + [anon_sym_u2227] = ACTIONS(428), + [anon_sym_SLASH_BSLASH] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(430), + [sym__hol_alphanumeric] = ACTIONS(430), + [sym__hol_symbolic] = ACTIONS(430), + [anon_sym_OLEAST] = ACTIONS(430), + [anon_sym_LEAST] = ACTIONS(430), + [anon_sym_some] = ACTIONS(430), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(430), + [anon_sym_u2203_BANG] = ACTIONS(428), + [anon_sym_QMARK_BANG] = ACTIONS(430), + [anon_sym_u2203] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u2200] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_u03bb] = ACTIONS(428), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_u00ac] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_u21ce] = ACTIONS(428), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(430), + [anon_sym_LT_EQ_GT] = ACTIONS(430), + [anon_sym_u21d4] = ACTIONS(428), + [anon_sym_EQ_EQ_GT] = ACTIONS(430), + [anon_sym_u21d2] = ACTIONS(428), + [anon_sym_BSLASH_SLASH] = ACTIONS(430), + [anon_sym_u2228] = ACTIONS(428), + [anon_sym_u2209] = ACTIONS(428), + [anon_sym_NOTIN] = ACTIONS(430), + [anon_sym_u2208] = ACTIONS(428), + [anon_sym_IN] = ACTIONS(430), + [anon_sym_u227c] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_PERMUTES] = ACTIONS(430), + [anon_sym_HAS_SIZE] = ACTIONS(430), + [anon_sym_u2282] = ACTIONS(428), + [anon_sym_PSUBSET] = ACTIONS(430), + [anon_sym_u2286] = ACTIONS(430), + [anon_sym_u2265] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_u2264] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_u2286u1d63] = ACTIONS(428), + [anon_sym_RSUBSET] = ACTIONS(430), + [anon_sym_u2260] = ACTIONS(428), + [anon_sym_LT_GT] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(430), + [anon_sym_INSERT] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_o] = ACTIONS(430), + [sym_hol_true] = ACTIONS(430), + [sym_hol_false] = ACTIONS(430), + [sym_hol_number] = ACTIONS(428), + [sym_hol_string] = ACTIONS(428), + [sym_hol_character] = ACTIONS(428), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [379] = { + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_of] = ACTIONS(524), + [anon_sym_u2227] = ACTIONS(859), + [anon_sym_SLASH_BSLASH] = ACTIONS(861), + [anon_sym_COLON_COLON] = ACTIONS(863), + [sym__hol_alphanumeric] = ACTIONS(524), + [sym__hol_symbolic] = ACTIONS(524), + [anon_sym_OLEAST] = ACTIONS(524), + [anon_sym_LEAST] = ACTIONS(524), + [anon_sym_some] = ACTIONS(524), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(524), + [anon_sym_u2203_BANG] = ACTIONS(522), + [anon_sym_QMARK_BANG] = ACTIONS(524), + [anon_sym_u2203] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u2200] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_u03bb] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_u00ac] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_u21ce] = ACTIONS(865), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(867), + [anon_sym_LT_EQ_GT] = ACTIONS(867), + [anon_sym_u21d4] = ACTIONS(865), + [anon_sym_EQ_EQ_GT] = ACTIONS(869), + [anon_sym_u21d2] = ACTIONS(871), + [anon_sym_BSLASH_SLASH] = ACTIONS(873), + [anon_sym_u2228] = ACTIONS(875), + [anon_sym_u2209] = ACTIONS(877), + [anon_sym_NOTIN] = ACTIONS(879), + [anon_sym_u2208] = ACTIONS(877), + [anon_sym_IN] = ACTIONS(879), + [anon_sym_u227c] = ACTIONS(881), + [anon_sym_LT_LT_EQ] = ACTIONS(855), + [anon_sym_PERMUTES] = ACTIONS(855), + [anon_sym_HAS_SIZE] = ACTIONS(855), + [anon_sym_u2282] = ACTIONS(881), + [anon_sym_PSUBSET] = ACTIONS(855), + [anon_sym_u2286] = ACTIONS(855), + [anon_sym_u2265] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_u2264] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_u2286u1d63] = ACTIONS(881), + [anon_sym_RSUBSET] = ACTIONS(855), + [anon_sym_u2260] = ACTIONS(881), + [anon_sym_LT_GT] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_INSERT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_o] = ACTIONS(887), + [sym_hol_true] = ACTIONS(524), + [sym_hol_false] = ACTIONS(524), + [sym_hol_number] = ACTIONS(522), + [sym_hol_string] = ACTIONS(522), + [sym_hol_character] = ACTIONS(522), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [380] = { + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_of] = ACTIONS(516), + [anon_sym_u2227] = ACTIONS(514), + [anon_sym_SLASH_BSLASH] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(516), + [sym__hol_alphanumeric] = ACTIONS(516), + [sym__hol_symbolic] = ACTIONS(516), + [anon_sym_OLEAST] = ACTIONS(516), + [anon_sym_LEAST] = ACTIONS(516), + [anon_sym_some] = ACTIONS(516), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(516), + [anon_sym_u2203_BANG] = ACTIONS(514), + [anon_sym_QMARK_BANG] = ACTIONS(516), + [anon_sym_u2203] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_u2200] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_u03bb] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_u00ac] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_u21ce] = ACTIONS(514), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(516), + [anon_sym_LT_EQ_GT] = ACTIONS(516), + [anon_sym_u21d4] = ACTIONS(514), + [anon_sym_EQ_EQ_GT] = ACTIONS(516), + [anon_sym_u21d2] = ACTIONS(514), + [anon_sym_BSLASH_SLASH] = ACTIONS(516), + [anon_sym_u2228] = ACTIONS(514), + [anon_sym_u2209] = ACTIONS(514), + [anon_sym_NOTIN] = ACTIONS(516), + [anon_sym_u2208] = ACTIONS(514), + [anon_sym_IN] = ACTIONS(516), + [anon_sym_u227c] = ACTIONS(514), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_PERMUTES] = ACTIONS(516), + [anon_sym_HAS_SIZE] = ACTIONS(516), + [anon_sym_u2282] = ACTIONS(514), + [anon_sym_PSUBSET] = ACTIONS(516), + [anon_sym_u2286] = ACTIONS(516), + [anon_sym_u2265] = ACTIONS(514), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_u2264] = ACTIONS(514), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_u2286u1d63] = ACTIONS(514), + [anon_sym_RSUBSET] = ACTIONS(516), + [anon_sym_u2260] = ACTIONS(514), + [anon_sym_LT_GT] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_INSERT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_o] = ACTIONS(516), + [sym_hol_true] = ACTIONS(516), + [sym_hol_false] = ACTIONS(516), + [sym_hol_number] = ACTIONS(514), + [sym_hol_string] = ACTIONS(514), + [sym_hol_character] = ACTIONS(514), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [381] = { + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_if] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_of] = ACTIONS(484), + [anon_sym_u2227] = ACTIONS(482), + [anon_sym_SLASH_BSLASH] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(484), + [sym__hol_alphanumeric] = ACTIONS(484), + [sym__hol_symbolic] = ACTIONS(484), + [anon_sym_OLEAST] = ACTIONS(484), + [anon_sym_LEAST] = ACTIONS(484), + [anon_sym_some] = ACTIONS(484), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(484), + [anon_sym_u2203_BANG] = ACTIONS(482), + [anon_sym_QMARK_BANG] = ACTIONS(484), + [anon_sym_u2203] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u2200] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_u03bb] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_u00ac] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_u21ce] = ACTIONS(482), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(484), + [anon_sym_LT_EQ_GT] = ACTIONS(484), + [anon_sym_u21d4] = ACTIONS(482), + [anon_sym_EQ_EQ_GT] = ACTIONS(484), + [anon_sym_u21d2] = ACTIONS(482), + [anon_sym_BSLASH_SLASH] = ACTIONS(484), + [anon_sym_u2228] = ACTIONS(482), + [anon_sym_u2209] = ACTIONS(482), + [anon_sym_NOTIN] = ACTIONS(484), + [anon_sym_u2208] = ACTIONS(482), + [anon_sym_IN] = ACTIONS(484), + [anon_sym_u227c] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_PERMUTES] = ACTIONS(484), + [anon_sym_HAS_SIZE] = ACTIONS(484), + [anon_sym_u2282] = ACTIONS(482), + [anon_sym_PSUBSET] = ACTIONS(484), + [anon_sym_u2286] = ACTIONS(484), + [anon_sym_u2265] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_u2264] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_u2286u1d63] = ACTIONS(482), + [anon_sym_RSUBSET] = ACTIONS(484), + [anon_sym_u2260] = ACTIONS(482), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_INSERT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_o] = ACTIONS(484), + [sym_hol_true] = ACTIONS(484), + [sym_hol_false] = ACTIONS(484), + [sym_hol_number] = ACTIONS(482), + [sym_hol_string] = ACTIONS(482), + [sym_hol_character] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [382] = { + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(829), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_if] = ACTIONS(438), + [anon_sym_then] = ACTIONS(438), + [anon_sym_case] = ACTIONS(438), + [anon_sym_u2227] = ACTIONS(833), + [anon_sym_SLASH_BSLASH] = ACTIONS(835), + [anon_sym_COLON_COLON] = ACTIONS(837), + [sym__hol_alphanumeric] = ACTIONS(438), + [sym__hol_symbolic] = ACTIONS(438), + [anon_sym_OLEAST] = ACTIONS(438), + [anon_sym_LEAST] = ACTIONS(438), + [anon_sym_some] = ACTIONS(438), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(438), + [anon_sym_u2203_BANG] = ACTIONS(432), + [anon_sym_QMARK_BANG] = ACTIONS(438), + [anon_sym_u2203] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_u2200] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_u03bb] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_u00ac] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_u21ce] = ACTIONS(889), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(891), + [anon_sym_LT_EQ_GT] = ACTIONS(891), + [anon_sym_u21d4] = ACTIONS(889), + [anon_sym_EQ_EQ_GT] = ACTIONS(893), + [anon_sym_u21d2] = ACTIONS(895), + [anon_sym_BSLASH_SLASH] = ACTIONS(839), + [anon_sym_u2228] = ACTIONS(841), + [anon_sym_u2209] = ACTIONS(843), + [anon_sym_NOTIN] = ACTIONS(845), + [anon_sym_u2208] = ACTIONS(843), + [anon_sym_IN] = ACTIONS(845), + [anon_sym_u227c] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(829), + [anon_sym_PERMUTES] = ACTIONS(829), + [anon_sym_HAS_SIZE] = ACTIONS(829), + [anon_sym_u2282] = ACTIONS(847), + [anon_sym_PSUBSET] = ACTIONS(829), + [anon_sym_u2286] = ACTIONS(829), + [anon_sym_u2265] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_u2264] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_LT] = ACTIONS(829), + [anon_sym_u2286u1d63] = ACTIONS(847), + [anon_sym_RSUBSET] = ACTIONS(829), + [anon_sym_u2260] = ACTIONS(847), + [anon_sym_LT_GT] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_INSERT] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_o] = ACTIONS(853), + [sym_hol_true] = ACTIONS(438), + [sym_hol_false] = ACTIONS(438), + [sym_hol_number] = ACTIONS(432), + [sym_hol_string] = ACTIONS(432), + [sym_hol_character] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [383] = { + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_Proof] = ACTIONS(512), + [anon_sym_u2227] = ACTIONS(510), + [anon_sym_SLASH_BSLASH] = ACTIONS(512), + [anon_sym_COLON_COLON] = ACTIONS(512), + [sym__hol_alphanumeric] = ACTIONS(512), + [sym__hol_symbolic] = ACTIONS(512), + [anon_sym_OLEAST] = ACTIONS(512), + [anon_sym_LEAST] = ACTIONS(512), + [anon_sym_some] = ACTIONS(512), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(512), + [anon_sym_u2203_BANG] = ACTIONS(510), + [anon_sym_QMARK_BANG] = ACTIONS(512), + [anon_sym_u2203] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u2200] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_u03bb] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_u00ac] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_u21ce] = ACTIONS(510), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(512), + [anon_sym_LT_EQ_GT] = ACTIONS(512), + [anon_sym_u21d4] = ACTIONS(510), + [anon_sym_EQ_EQ_GT] = ACTIONS(512), + [anon_sym_u21d2] = ACTIONS(510), + [anon_sym_BSLASH_SLASH] = ACTIONS(512), + [anon_sym_u2228] = ACTIONS(510), + [anon_sym_u2209] = ACTIONS(510), + [anon_sym_NOTIN] = ACTIONS(512), + [anon_sym_u2208] = ACTIONS(510), + [anon_sym_IN] = ACTIONS(512), + [anon_sym_u227c] = ACTIONS(510), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_PERMUTES] = ACTIONS(512), + [anon_sym_HAS_SIZE] = ACTIONS(512), + [anon_sym_u2282] = ACTIONS(510), + [anon_sym_PSUBSET] = ACTIONS(512), + [anon_sym_u2286] = ACTIONS(512), + [anon_sym_u2265] = ACTIONS(510), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_u2264] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_u2286u1d63] = ACTIONS(510), + [anon_sym_RSUBSET] = ACTIONS(512), + [anon_sym_u2260] = ACTIONS(510), + [anon_sym_LT_GT] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_INSERT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_o] = ACTIONS(512), + [sym_hol_true] = ACTIONS(512), + [sym_hol_false] = ACTIONS(512), + [sym_hol_number] = ACTIONS(510), + [sym_hol_string] = ACTIONS(510), + [sym_hol_character] = ACTIONS(510), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [384] = { + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_then] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_u2227] = ACTIONS(474), + [anon_sym_SLASH_BSLASH] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(476), + [sym__hol_alphanumeric] = ACTIONS(476), + [sym__hol_symbolic] = ACTIONS(476), + [anon_sym_OLEAST] = ACTIONS(476), + [anon_sym_LEAST] = ACTIONS(476), + [anon_sym_some] = ACTIONS(476), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(476), + [anon_sym_u2203_BANG] = ACTIONS(474), + [anon_sym_QMARK_BANG] = ACTIONS(476), + [anon_sym_u2203] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u2200] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_u03bb] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_u00ac] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_u21ce] = ACTIONS(474), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(476), + [anon_sym_LT_EQ_GT] = ACTIONS(476), + [anon_sym_u21d4] = ACTIONS(474), + [anon_sym_EQ_EQ_GT] = ACTIONS(476), + [anon_sym_u21d2] = ACTIONS(474), + [anon_sym_BSLASH_SLASH] = ACTIONS(476), + [anon_sym_u2228] = ACTIONS(474), + [anon_sym_u2209] = ACTIONS(474), + [anon_sym_NOTIN] = ACTIONS(476), + [anon_sym_u2208] = ACTIONS(474), + [anon_sym_IN] = ACTIONS(476), + [anon_sym_u227c] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_PERMUTES] = ACTIONS(476), + [anon_sym_HAS_SIZE] = ACTIONS(476), + [anon_sym_u2282] = ACTIONS(474), + [anon_sym_PSUBSET] = ACTIONS(476), + [anon_sym_u2286] = ACTIONS(476), + [anon_sym_u2265] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_u2264] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_u2286u1d63] = ACTIONS(474), + [anon_sym_RSUBSET] = ACTIONS(476), + [anon_sym_u2260] = ACTIONS(474), + [anon_sym_LT_GT] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_INSERT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_o] = ACTIONS(476), + [sym_hol_true] = ACTIONS(476), + [sym_hol_false] = ACTIONS(476), + [sym_hol_number] = ACTIONS(474), + [sym_hol_string] = ACTIONS(474), + [sym_hol_character] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [385] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(853), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [386] = { + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_if] = ACTIONS(430), + [anon_sym_then] = ACTIONS(430), + [anon_sym_case] = ACTIONS(430), + [anon_sym_u2227] = ACTIONS(428), + [anon_sym_SLASH_BSLASH] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(430), + [sym__hol_alphanumeric] = ACTIONS(430), + [sym__hol_symbolic] = ACTIONS(430), + [anon_sym_OLEAST] = ACTIONS(430), + [anon_sym_LEAST] = ACTIONS(430), + [anon_sym_some] = ACTIONS(430), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(430), + [anon_sym_u2203_BANG] = ACTIONS(428), + [anon_sym_QMARK_BANG] = ACTIONS(430), + [anon_sym_u2203] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u2200] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_u03bb] = ACTIONS(428), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_u00ac] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_u21ce] = ACTIONS(428), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(430), + [anon_sym_LT_EQ_GT] = ACTIONS(430), + [anon_sym_u21d4] = ACTIONS(428), + [anon_sym_EQ_EQ_GT] = ACTIONS(430), + [anon_sym_u21d2] = ACTIONS(428), + [anon_sym_BSLASH_SLASH] = ACTIONS(430), + [anon_sym_u2228] = ACTIONS(428), + [anon_sym_u2209] = ACTIONS(428), + [anon_sym_NOTIN] = ACTIONS(430), + [anon_sym_u2208] = ACTIONS(428), + [anon_sym_IN] = ACTIONS(430), + [anon_sym_u227c] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_PERMUTES] = ACTIONS(430), + [anon_sym_HAS_SIZE] = ACTIONS(430), + [anon_sym_u2282] = ACTIONS(428), + [anon_sym_PSUBSET] = ACTIONS(430), + [anon_sym_u2286] = ACTIONS(430), + [anon_sym_u2265] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_u2264] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_u2286u1d63] = ACTIONS(428), + [anon_sym_RSUBSET] = ACTIONS(430), + [anon_sym_u2260] = ACTIONS(428), + [anon_sym_LT_GT] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(430), + [anon_sym_INSERT] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_o] = ACTIONS(430), + [sym_hol_true] = ACTIONS(430), + [sym_hol_false] = ACTIONS(430), + [sym_hol_number] = ACTIONS(428), + [sym_hol_string] = ACTIONS(428), + [sym_hol_character] = ACTIONS(428), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [387] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(837), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_INSERT] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_o] = ACTIONS(853), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [388] = { + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_then] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_u2227] = ACTIONS(514), + [anon_sym_SLASH_BSLASH] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(516), + [sym__hol_alphanumeric] = ACTIONS(516), + [sym__hol_symbolic] = ACTIONS(516), + [anon_sym_OLEAST] = ACTIONS(516), + [anon_sym_LEAST] = ACTIONS(516), + [anon_sym_some] = ACTIONS(516), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(516), + [anon_sym_u2203_BANG] = ACTIONS(514), + [anon_sym_QMARK_BANG] = ACTIONS(516), + [anon_sym_u2203] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_u2200] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_u03bb] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_u00ac] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_u21ce] = ACTIONS(514), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(516), + [anon_sym_LT_EQ_GT] = ACTIONS(516), + [anon_sym_u21d4] = ACTIONS(514), + [anon_sym_EQ_EQ_GT] = ACTIONS(516), + [anon_sym_u21d2] = ACTIONS(514), + [anon_sym_BSLASH_SLASH] = ACTIONS(516), + [anon_sym_u2228] = ACTIONS(514), + [anon_sym_u2209] = ACTIONS(514), + [anon_sym_NOTIN] = ACTIONS(516), + [anon_sym_u2208] = ACTIONS(514), + [anon_sym_IN] = ACTIONS(516), + [anon_sym_u227c] = ACTIONS(514), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_PERMUTES] = ACTIONS(516), + [anon_sym_HAS_SIZE] = ACTIONS(516), + [anon_sym_u2282] = ACTIONS(514), + [anon_sym_PSUBSET] = ACTIONS(516), + [anon_sym_u2286] = ACTIONS(516), + [anon_sym_u2265] = ACTIONS(514), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_u2264] = ACTIONS(514), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_u2286u1d63] = ACTIONS(514), + [anon_sym_RSUBSET] = ACTIONS(516), + [anon_sym_u2260] = ACTIONS(514), + [anon_sym_LT_GT] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_INSERT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_o] = ACTIONS(516), + [sym_hol_true] = ACTIONS(516), + [sym_hol_false] = ACTIONS(516), + [sym_hol_number] = ACTIONS(514), + [sym_hol_string] = ACTIONS(514), + [sym_hol_character] = ACTIONS(514), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [389] = { + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_if] = ACTIONS(492), + [anon_sym_else] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_u2227] = ACTIONS(490), + [anon_sym_SLASH_BSLASH] = ACTIONS(492), + [anon_sym_COLON_COLON] = ACTIONS(492), + [sym__hol_alphanumeric] = ACTIONS(492), + [sym__hol_symbolic] = ACTIONS(492), + [anon_sym_OLEAST] = ACTIONS(492), + [anon_sym_LEAST] = ACTIONS(492), + [anon_sym_some] = ACTIONS(492), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(492), + [anon_sym_u2203_BANG] = ACTIONS(490), + [anon_sym_QMARK_BANG] = ACTIONS(492), + [anon_sym_u2203] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u2200] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_u03bb] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_u00ac] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_u21ce] = ACTIONS(490), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(492), + [anon_sym_LT_EQ_GT] = ACTIONS(492), + [anon_sym_u21d4] = ACTIONS(490), + [anon_sym_EQ_EQ_GT] = ACTIONS(492), + [anon_sym_u21d2] = ACTIONS(490), + [anon_sym_BSLASH_SLASH] = ACTIONS(492), + [anon_sym_u2228] = ACTIONS(490), + [anon_sym_u2209] = ACTIONS(490), + [anon_sym_NOTIN] = ACTIONS(492), + [anon_sym_u2208] = ACTIONS(490), + [anon_sym_IN] = ACTIONS(492), + [anon_sym_u227c] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_PERMUTES] = ACTIONS(492), + [anon_sym_HAS_SIZE] = ACTIONS(492), + [anon_sym_u2282] = ACTIONS(490), + [anon_sym_PSUBSET] = ACTIONS(492), + [anon_sym_u2286] = ACTIONS(492), + [anon_sym_u2265] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_u2264] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_u2286u1d63] = ACTIONS(490), + [anon_sym_RSUBSET] = ACTIONS(492), + [anon_sym_u2260] = ACTIONS(490), + [anon_sym_LT_GT] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_INSERT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_o] = ACTIONS(492), + [sym_hol_true] = ACTIONS(492), + [sym_hol_false] = ACTIONS(492), + [sym_hol_number] = ACTIONS(490), + [sym_hol_string] = ACTIONS(490), + [sym_hol_character] = ACTIONS(490), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [390] = { + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_if] = ACTIONS(438), + [anon_sym_else] = ACTIONS(438), + [anon_sym_case] = ACTIONS(438), + [anon_sym_u2227] = ACTIONS(901), + [anon_sym_SLASH_BSLASH] = ACTIONS(903), + [anon_sym_COLON_COLON] = ACTIONS(905), + [sym__hol_alphanumeric] = ACTIONS(438), + [sym__hol_symbolic] = ACTIONS(438), + [anon_sym_OLEAST] = ACTIONS(438), + [anon_sym_LEAST] = ACTIONS(438), + [anon_sym_some] = ACTIONS(438), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(438), + [anon_sym_u2203_BANG] = ACTIONS(432), + [anon_sym_QMARK_BANG] = ACTIONS(438), + [anon_sym_u2203] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_u2200] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_u03bb] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_u00ac] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_u21ce] = ACTIONS(907), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(909), + [anon_sym_LT_EQ_GT] = ACTIONS(909), + [anon_sym_u21d4] = ACTIONS(907), + [anon_sym_EQ_EQ_GT] = ACTIONS(911), + [anon_sym_u21d2] = ACTIONS(913), + [anon_sym_BSLASH_SLASH] = ACTIONS(915), + [anon_sym_u2228] = ACTIONS(917), + [anon_sym_u2209] = ACTIONS(919), + [anon_sym_NOTIN] = ACTIONS(921), + [anon_sym_u2208] = ACTIONS(919), + [anon_sym_IN] = ACTIONS(921), + [anon_sym_u227c] = ACTIONS(923), + [anon_sym_LT_LT_EQ] = ACTIONS(897), + [anon_sym_PERMUTES] = ACTIONS(897), + [anon_sym_HAS_SIZE] = ACTIONS(897), + [anon_sym_u2282] = ACTIONS(923), + [anon_sym_PSUBSET] = ACTIONS(897), + [anon_sym_u2286] = ACTIONS(897), + [anon_sym_u2265] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_u2264] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_u2286u1d63] = ACTIONS(923), + [anon_sym_RSUBSET] = ACTIONS(897), + [anon_sym_u2260] = ACTIONS(923), + [anon_sym_LT_GT] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_INSERT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_o] = ACTIONS(929), + [sym_hol_true] = ACTIONS(438), + [sym_hol_false] = ACTIONS(438), + [sym_hol_number] = ACTIONS(432), + [sym_hol_string] = ACTIONS(432), + [sym_hol_character] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [391] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(853), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [392] = { + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_COLON] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_of] = ACTIONS(504), + [anon_sym_u2227] = ACTIONS(502), + [anon_sym_SLASH_BSLASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(504), + [sym__hol_alphanumeric] = ACTIONS(504), + [sym__hol_symbolic] = ACTIONS(504), + [anon_sym_OLEAST] = ACTIONS(504), + [anon_sym_LEAST] = ACTIONS(504), + [anon_sym_some] = ACTIONS(504), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(504), + [anon_sym_u2203_BANG] = ACTIONS(502), + [anon_sym_QMARK_BANG] = ACTIONS(504), + [anon_sym_u2203] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u2200] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_u03bb] = ACTIONS(502), + [anon_sym_BSLASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_u00ac] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_u21ce] = ACTIONS(502), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(504), + [anon_sym_LT_EQ_GT] = ACTIONS(504), + [anon_sym_u21d4] = ACTIONS(502), + [anon_sym_EQ_EQ_GT] = ACTIONS(504), + [anon_sym_u21d2] = ACTIONS(502), + [anon_sym_BSLASH_SLASH] = ACTIONS(504), + [anon_sym_u2228] = ACTIONS(502), + [anon_sym_u2209] = ACTIONS(502), + [anon_sym_NOTIN] = ACTIONS(504), + [anon_sym_u2208] = ACTIONS(502), + [anon_sym_IN] = ACTIONS(504), + [anon_sym_u227c] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_PERMUTES] = ACTIONS(504), + [anon_sym_HAS_SIZE] = ACTIONS(504), + [anon_sym_u2282] = ACTIONS(502), + [anon_sym_PSUBSET] = ACTIONS(504), + [anon_sym_u2286] = ACTIONS(504), + [anon_sym_u2265] = ACTIONS(502), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_u2264] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_u2286u1d63] = ACTIONS(502), + [anon_sym_RSUBSET] = ACTIONS(504), + [anon_sym_u2260] = ACTIONS(502), + [anon_sym_LT_GT] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(504), + [anon_sym_INSERT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_o] = ACTIONS(504), + [sym_hol_true] = ACTIONS(504), + [sym_hol_false] = ACTIONS(504), + [sym_hol_number] = ACTIONS(502), + [sym_hol_string] = ACTIONS(502), + [sym_hol_character] = ACTIONS(502), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [393] = { + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_if] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_Proof] = ACTIONS(492), + [anon_sym_u2227] = ACTIONS(490), + [anon_sym_SLASH_BSLASH] = ACTIONS(492), + [anon_sym_COLON_COLON] = ACTIONS(492), + [sym__hol_alphanumeric] = ACTIONS(492), + [sym__hol_symbolic] = ACTIONS(492), + [anon_sym_OLEAST] = ACTIONS(492), + [anon_sym_LEAST] = ACTIONS(492), + [anon_sym_some] = ACTIONS(492), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(492), + [anon_sym_u2203_BANG] = ACTIONS(490), + [anon_sym_QMARK_BANG] = ACTIONS(492), + [anon_sym_u2203] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u2200] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_u03bb] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_u00ac] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_u21ce] = ACTIONS(490), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(492), + [anon_sym_LT_EQ_GT] = ACTIONS(492), + [anon_sym_u21d4] = ACTIONS(490), + [anon_sym_EQ_EQ_GT] = ACTIONS(492), + [anon_sym_u21d2] = ACTIONS(490), + [anon_sym_BSLASH_SLASH] = ACTIONS(492), + [anon_sym_u2228] = ACTIONS(490), + [anon_sym_u2209] = ACTIONS(490), + [anon_sym_NOTIN] = ACTIONS(492), + [anon_sym_u2208] = ACTIONS(490), + [anon_sym_IN] = ACTIONS(492), + [anon_sym_u227c] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_PERMUTES] = ACTIONS(492), + [anon_sym_HAS_SIZE] = ACTIONS(492), + [anon_sym_u2282] = ACTIONS(490), + [anon_sym_PSUBSET] = ACTIONS(492), + [anon_sym_u2286] = ACTIONS(492), + [anon_sym_u2265] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_u2264] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_u2286u1d63] = ACTIONS(490), + [anon_sym_RSUBSET] = ACTIONS(492), + [anon_sym_u2260] = ACTIONS(490), + [anon_sym_LT_GT] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_INSERT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_o] = ACTIONS(492), + [sym_hol_true] = ACTIONS(492), + [sym_hol_false] = ACTIONS(492), + [sym_hol_number] = ACTIONS(490), + [sym_hol_string] = ACTIONS(490), + [sym_hol_character] = ACTIONS(490), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [394] = { + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_COLON] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_then] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_u2227] = ACTIONS(502), + [anon_sym_SLASH_BSLASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(504), + [sym__hol_alphanumeric] = ACTIONS(504), + [sym__hol_symbolic] = ACTIONS(504), + [anon_sym_OLEAST] = ACTIONS(504), + [anon_sym_LEAST] = ACTIONS(504), + [anon_sym_some] = ACTIONS(504), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(504), + [anon_sym_u2203_BANG] = ACTIONS(502), + [anon_sym_QMARK_BANG] = ACTIONS(504), + [anon_sym_u2203] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u2200] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_u03bb] = ACTIONS(502), + [anon_sym_BSLASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_u00ac] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_u21ce] = ACTIONS(502), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(504), + [anon_sym_LT_EQ_GT] = ACTIONS(504), + [anon_sym_u21d4] = ACTIONS(502), + [anon_sym_EQ_EQ_GT] = ACTIONS(504), + [anon_sym_u21d2] = ACTIONS(502), + [anon_sym_BSLASH_SLASH] = ACTIONS(504), + [anon_sym_u2228] = ACTIONS(502), + [anon_sym_u2209] = ACTIONS(502), + [anon_sym_NOTIN] = ACTIONS(504), + [anon_sym_u2208] = ACTIONS(502), + [anon_sym_IN] = ACTIONS(504), + [anon_sym_u227c] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_PERMUTES] = ACTIONS(504), + [anon_sym_HAS_SIZE] = ACTIONS(504), + [anon_sym_u2282] = ACTIONS(502), + [anon_sym_PSUBSET] = ACTIONS(504), + [anon_sym_u2286] = ACTIONS(504), + [anon_sym_u2265] = ACTIONS(502), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_u2264] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_u2286u1d63] = ACTIONS(502), + [anon_sym_RSUBSET] = ACTIONS(504), + [anon_sym_u2260] = ACTIONS(502), + [anon_sym_LT_GT] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(504), + [anon_sym_INSERT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_o] = ACTIONS(504), + [sym_hol_true] = ACTIONS(504), + [sym_hol_false] = ACTIONS(504), + [sym_hol_number] = ACTIONS(502), + [sym_hol_string] = ACTIONS(502), + [sym_hol_character] = ACTIONS(502), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [395] = { + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_LBRACE] = ACTIONS(474), + [anon_sym_EQ] = ACTIONS(476), + [anon_sym_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(474), + [anon_sym_if] = ACTIONS(476), + [anon_sym_case] = ACTIONS(476), + [anon_sym_Proof] = ACTIONS(476), + [anon_sym_u2227] = ACTIONS(474), + [anon_sym_SLASH_BSLASH] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(476), + [sym__hol_alphanumeric] = ACTIONS(476), + [sym__hol_symbolic] = ACTIONS(476), + [anon_sym_OLEAST] = ACTIONS(476), + [anon_sym_LEAST] = ACTIONS(476), + [anon_sym_some] = ACTIONS(476), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(476), + [anon_sym_u2203_BANG] = ACTIONS(474), + [anon_sym_QMARK_BANG] = ACTIONS(476), + [anon_sym_u2203] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_u2200] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_u03bb] = ACTIONS(474), + [anon_sym_BSLASH] = ACTIONS(476), + [anon_sym_DASH] = ACTIONS(476), + [anon_sym_u00ac] = ACTIONS(474), + [anon_sym_TILDE] = ACTIONS(474), + [anon_sym_u21ce] = ACTIONS(474), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(476), + [anon_sym_LT_EQ_GT] = ACTIONS(476), + [anon_sym_u21d4] = ACTIONS(474), + [anon_sym_EQ_EQ_GT] = ACTIONS(476), + [anon_sym_u21d2] = ACTIONS(474), + [anon_sym_BSLASH_SLASH] = ACTIONS(476), + [anon_sym_u2228] = ACTIONS(474), + [anon_sym_u2209] = ACTIONS(474), + [anon_sym_NOTIN] = ACTIONS(476), + [anon_sym_u2208] = ACTIONS(474), + [anon_sym_IN] = ACTIONS(476), + [anon_sym_u227c] = ACTIONS(474), + [anon_sym_LT_LT_EQ] = ACTIONS(476), + [anon_sym_PERMUTES] = ACTIONS(476), + [anon_sym_HAS_SIZE] = ACTIONS(476), + [anon_sym_u2282] = ACTIONS(474), + [anon_sym_PSUBSET] = ACTIONS(476), + [anon_sym_u2286] = ACTIONS(476), + [anon_sym_u2265] = ACTIONS(474), + [anon_sym_GT_EQ] = ACTIONS(476), + [anon_sym_u2264] = ACTIONS(474), + [anon_sym_LT_EQ] = ACTIONS(476), + [anon_sym_GT] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(476), + [anon_sym_u2286u1d63] = ACTIONS(474), + [anon_sym_RSUBSET] = ACTIONS(476), + [anon_sym_u2260] = ACTIONS(474), + [anon_sym_LT_GT] = ACTIONS(476), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_INSERT] = ACTIONS(476), + [anon_sym_PLUS] = ACTIONS(476), + [anon_sym_o] = ACTIONS(476), + [sym_hol_true] = ACTIONS(476), + [sym_hol_false] = ACTIONS(476), + [sym_hol_number] = ACTIONS(474), + [sym_hol_string] = ACTIONS(474), + [sym_hol_character] = ACTIONS(474), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [396] = { + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_Proof] = ACTIONS(516), + [anon_sym_u2227] = ACTIONS(514), + [anon_sym_SLASH_BSLASH] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(516), + [sym__hol_alphanumeric] = ACTIONS(516), + [sym__hol_symbolic] = ACTIONS(516), + [anon_sym_OLEAST] = ACTIONS(516), + [anon_sym_LEAST] = ACTIONS(516), + [anon_sym_some] = ACTIONS(516), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(516), + [anon_sym_u2203_BANG] = ACTIONS(514), + [anon_sym_QMARK_BANG] = ACTIONS(516), + [anon_sym_u2203] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_u2200] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_u03bb] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_u00ac] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_u21ce] = ACTIONS(514), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(516), + [anon_sym_LT_EQ_GT] = ACTIONS(516), + [anon_sym_u21d4] = ACTIONS(514), + [anon_sym_EQ_EQ_GT] = ACTIONS(516), + [anon_sym_u21d2] = ACTIONS(514), + [anon_sym_BSLASH_SLASH] = ACTIONS(516), + [anon_sym_u2228] = ACTIONS(514), + [anon_sym_u2209] = ACTIONS(514), + [anon_sym_NOTIN] = ACTIONS(516), + [anon_sym_u2208] = ACTIONS(514), + [anon_sym_IN] = ACTIONS(516), + [anon_sym_u227c] = ACTIONS(514), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_PERMUTES] = ACTIONS(516), + [anon_sym_HAS_SIZE] = ACTIONS(516), + [anon_sym_u2282] = ACTIONS(514), + [anon_sym_PSUBSET] = ACTIONS(516), + [anon_sym_u2286] = ACTIONS(516), + [anon_sym_u2265] = ACTIONS(514), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_u2264] = ACTIONS(514), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_u2286u1d63] = ACTIONS(514), + [anon_sym_RSUBSET] = ACTIONS(516), + [anon_sym_u2260] = ACTIONS(514), + [anon_sym_LT_GT] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_INSERT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_o] = ACTIONS(516), + [sym_hol_true] = ACTIONS(516), + [sym_hol_false] = ACTIONS(516), + [sym_hol_number] = ACTIONS(514), + [sym_hol_string] = ACTIONS(514), + [sym_hol_character] = ACTIONS(514), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [397] = { + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_else] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_u2227] = ACTIONS(901), + [anon_sym_SLASH_BSLASH] = ACTIONS(903), + [anon_sym_COLON_COLON] = ACTIONS(905), + [sym__hol_alphanumeric] = ACTIONS(524), + [sym__hol_symbolic] = ACTIONS(524), + [anon_sym_OLEAST] = ACTIONS(524), + [anon_sym_LEAST] = ACTIONS(524), + [anon_sym_some] = ACTIONS(524), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(524), + [anon_sym_u2203_BANG] = ACTIONS(522), + [anon_sym_QMARK_BANG] = ACTIONS(524), + [anon_sym_u2203] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u2200] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_u03bb] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_u00ac] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_u21ce] = ACTIONS(907), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(909), + [anon_sym_LT_EQ_GT] = ACTIONS(909), + [anon_sym_u21d4] = ACTIONS(907), + [anon_sym_EQ_EQ_GT] = ACTIONS(911), + [anon_sym_u21d2] = ACTIONS(913), + [anon_sym_BSLASH_SLASH] = ACTIONS(915), + [anon_sym_u2228] = ACTIONS(917), + [anon_sym_u2209] = ACTIONS(919), + [anon_sym_NOTIN] = ACTIONS(921), + [anon_sym_u2208] = ACTIONS(919), + [anon_sym_IN] = ACTIONS(921), + [anon_sym_u227c] = ACTIONS(923), + [anon_sym_LT_LT_EQ] = ACTIONS(897), + [anon_sym_PERMUTES] = ACTIONS(897), + [anon_sym_HAS_SIZE] = ACTIONS(897), + [anon_sym_u2282] = ACTIONS(923), + [anon_sym_PSUBSET] = ACTIONS(897), + [anon_sym_u2286] = ACTIONS(897), + [anon_sym_u2265] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_u2264] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_u2286u1d63] = ACTIONS(923), + [anon_sym_RSUBSET] = ACTIONS(897), + [anon_sym_u2260] = ACTIONS(923), + [anon_sym_LT_GT] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_INSERT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_o] = ACTIONS(929), + [sym_hol_true] = ACTIONS(524), + [sym_hol_false] = ACTIONS(524), + [sym_hol_number] = ACTIONS(522), + [sym_hol_string] = ACTIONS(522), + [sym_hol_character] = ACTIONS(522), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [398] = { + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_if] = ACTIONS(496), + [anon_sym_case] = ACTIONS(496), + [anon_sym_Proof] = ACTIONS(496), + [anon_sym_u2227] = ACTIONS(494), + [anon_sym_SLASH_BSLASH] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(496), + [sym__hol_alphanumeric] = ACTIONS(496), + [sym__hol_symbolic] = ACTIONS(496), + [anon_sym_OLEAST] = ACTIONS(496), + [anon_sym_LEAST] = ACTIONS(496), + [anon_sym_some] = ACTIONS(496), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(496), + [anon_sym_u2203_BANG] = ACTIONS(494), + [anon_sym_QMARK_BANG] = ACTIONS(496), + [anon_sym_u2203] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u2200] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_u03bb] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_u00ac] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_u21ce] = ACTIONS(494), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(496), + [anon_sym_LT_EQ_GT] = ACTIONS(496), + [anon_sym_u21d4] = ACTIONS(494), + [anon_sym_EQ_EQ_GT] = ACTIONS(496), + [anon_sym_u21d2] = ACTIONS(494), + [anon_sym_BSLASH_SLASH] = ACTIONS(496), + [anon_sym_u2228] = ACTIONS(494), + [anon_sym_u2209] = ACTIONS(494), + [anon_sym_NOTIN] = ACTIONS(496), + [anon_sym_u2208] = ACTIONS(494), + [anon_sym_IN] = ACTIONS(496), + [anon_sym_u227c] = ACTIONS(494), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_PERMUTES] = ACTIONS(496), + [anon_sym_HAS_SIZE] = ACTIONS(496), + [anon_sym_u2282] = ACTIONS(494), + [anon_sym_PSUBSET] = ACTIONS(496), + [anon_sym_u2286] = ACTIONS(496), + [anon_sym_u2265] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_u2264] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_u2286u1d63] = ACTIONS(494), + [anon_sym_RSUBSET] = ACTIONS(496), + [anon_sym_u2260] = ACTIONS(494), + [anon_sym_LT_GT] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(496), + [anon_sym_INSERT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_o] = ACTIONS(496), + [sym_hol_true] = ACTIONS(496), + [sym_hol_false] = ACTIONS(496), + [sym_hol_number] = ACTIONS(494), + [sym_hol_string] = ACTIONS(494), + [sym_hol_character] = ACTIONS(494), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [399] = { + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_if] = ACTIONS(496), + [anon_sym_else] = ACTIONS(496), + [anon_sym_case] = ACTIONS(496), + [anon_sym_u2227] = ACTIONS(494), + [anon_sym_SLASH_BSLASH] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(496), + [sym__hol_alphanumeric] = ACTIONS(496), + [sym__hol_symbolic] = ACTIONS(496), + [anon_sym_OLEAST] = ACTIONS(496), + [anon_sym_LEAST] = ACTIONS(496), + [anon_sym_some] = ACTIONS(496), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(496), + [anon_sym_u2203_BANG] = ACTIONS(494), + [anon_sym_QMARK_BANG] = ACTIONS(496), + [anon_sym_u2203] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u2200] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_u03bb] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_u00ac] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_u21ce] = ACTIONS(494), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(496), + [anon_sym_LT_EQ_GT] = ACTIONS(496), + [anon_sym_u21d4] = ACTIONS(494), + [anon_sym_EQ_EQ_GT] = ACTIONS(496), + [anon_sym_u21d2] = ACTIONS(494), + [anon_sym_BSLASH_SLASH] = ACTIONS(496), + [anon_sym_u2228] = ACTIONS(494), + [anon_sym_u2209] = ACTIONS(494), + [anon_sym_NOTIN] = ACTIONS(496), + [anon_sym_u2208] = ACTIONS(494), + [anon_sym_IN] = ACTIONS(496), + [anon_sym_u227c] = ACTIONS(494), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_PERMUTES] = ACTIONS(496), + [anon_sym_HAS_SIZE] = ACTIONS(496), + [anon_sym_u2282] = ACTIONS(494), + [anon_sym_PSUBSET] = ACTIONS(496), + [anon_sym_u2286] = ACTIONS(496), + [anon_sym_u2265] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_u2264] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_u2286u1d63] = ACTIONS(494), + [anon_sym_RSUBSET] = ACTIONS(496), + [anon_sym_u2260] = ACTIONS(494), + [anon_sym_LT_GT] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(496), + [anon_sym_INSERT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_o] = ACTIONS(496), + [sym_hol_true] = ACTIONS(496), + [sym_hol_false] = ACTIONS(496), + [sym_hol_number] = ACTIONS(494), + [sym_hol_string] = ACTIONS(494), + [sym_hol_character] = ACTIONS(494), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [400] = { + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_if] = ACTIONS(488), + [anon_sym_case] = ACTIONS(488), + [anon_sym_of] = ACTIONS(488), + [anon_sym_u2227] = ACTIONS(486), + [anon_sym_SLASH_BSLASH] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(488), + [sym__hol_alphanumeric] = ACTIONS(488), + [sym__hol_symbolic] = ACTIONS(488), + [anon_sym_OLEAST] = ACTIONS(488), + [anon_sym_LEAST] = ACTIONS(488), + [anon_sym_some] = ACTIONS(488), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(488), + [anon_sym_u2203_BANG] = ACTIONS(486), + [anon_sym_QMARK_BANG] = ACTIONS(488), + [anon_sym_u2203] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u2200] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_u03bb] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_u00ac] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_u21ce] = ACTIONS(486), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(488), + [anon_sym_LT_EQ_GT] = ACTIONS(488), + [anon_sym_u21d4] = ACTIONS(486), + [anon_sym_EQ_EQ_GT] = ACTIONS(488), + [anon_sym_u21d2] = ACTIONS(486), + [anon_sym_BSLASH_SLASH] = ACTIONS(488), + [anon_sym_u2228] = ACTIONS(486), + [anon_sym_u2209] = ACTIONS(486), + [anon_sym_NOTIN] = ACTIONS(488), + [anon_sym_u2208] = ACTIONS(486), + [anon_sym_IN] = ACTIONS(488), + [anon_sym_u227c] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_PERMUTES] = ACTIONS(488), + [anon_sym_HAS_SIZE] = ACTIONS(488), + [anon_sym_u2282] = ACTIONS(486), + [anon_sym_PSUBSET] = ACTIONS(488), + [anon_sym_u2286] = ACTIONS(488), + [anon_sym_u2265] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_u2264] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_u2286u1d63] = ACTIONS(486), + [anon_sym_RSUBSET] = ACTIONS(488), + [anon_sym_u2260] = ACTIONS(486), + [anon_sym_LT_GT] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_INSERT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_o] = ACTIONS(488), + [sym_hol_true] = ACTIONS(488), + [sym_hol_false] = ACTIONS(488), + [sym_hol_number] = ACTIONS(486), + [sym_hol_string] = ACTIONS(486), + [sym_hol_character] = ACTIONS(486), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [401] = { + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_if] = ACTIONS(496), + [anon_sym_then] = ACTIONS(496), + [anon_sym_case] = ACTIONS(496), + [anon_sym_u2227] = ACTIONS(494), + [anon_sym_SLASH_BSLASH] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(496), + [sym__hol_alphanumeric] = ACTIONS(496), + [sym__hol_symbolic] = ACTIONS(496), + [anon_sym_OLEAST] = ACTIONS(496), + [anon_sym_LEAST] = ACTIONS(496), + [anon_sym_some] = ACTIONS(496), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(496), + [anon_sym_u2203_BANG] = ACTIONS(494), + [anon_sym_QMARK_BANG] = ACTIONS(496), + [anon_sym_u2203] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u2200] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_u03bb] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_u00ac] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_u21ce] = ACTIONS(494), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(496), + [anon_sym_LT_EQ_GT] = ACTIONS(496), + [anon_sym_u21d4] = ACTIONS(494), + [anon_sym_EQ_EQ_GT] = ACTIONS(496), + [anon_sym_u21d2] = ACTIONS(494), + [anon_sym_BSLASH_SLASH] = ACTIONS(496), + [anon_sym_u2228] = ACTIONS(494), + [anon_sym_u2209] = ACTIONS(494), + [anon_sym_NOTIN] = ACTIONS(496), + [anon_sym_u2208] = ACTIONS(494), + [anon_sym_IN] = ACTIONS(496), + [anon_sym_u227c] = ACTIONS(494), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_PERMUTES] = ACTIONS(496), + [anon_sym_HAS_SIZE] = ACTIONS(496), + [anon_sym_u2282] = ACTIONS(494), + [anon_sym_PSUBSET] = ACTIONS(496), + [anon_sym_u2286] = ACTIONS(496), + [anon_sym_u2265] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_u2264] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_u2286u1d63] = ACTIONS(494), + [anon_sym_RSUBSET] = ACTIONS(496), + [anon_sym_u2260] = ACTIONS(494), + [anon_sym_LT_GT] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(496), + [anon_sym_INSERT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_o] = ACTIONS(496), + [sym_hol_true] = ACTIONS(496), + [sym_hol_false] = ACTIONS(496), + [sym_hol_number] = ACTIONS(494), + [sym_hol_string] = ACTIONS(494), + [sym_hol_character] = ACTIONS(494), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [402] = { + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(438), + [anon_sym_of] = ACTIONS(438), + [anon_sym_u2227] = ACTIONS(859), + [anon_sym_SLASH_BSLASH] = ACTIONS(861), + [anon_sym_COLON_COLON] = ACTIONS(863), + [sym__hol_alphanumeric] = ACTIONS(438), + [sym__hol_symbolic] = ACTIONS(438), + [anon_sym_OLEAST] = ACTIONS(438), + [anon_sym_LEAST] = ACTIONS(438), + [anon_sym_some] = ACTIONS(438), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(438), + [anon_sym_u2203_BANG] = ACTIONS(432), + [anon_sym_QMARK_BANG] = ACTIONS(438), + [anon_sym_u2203] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_u2200] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_u03bb] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_u00ac] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_u21ce] = ACTIONS(865), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(867), + [anon_sym_LT_EQ_GT] = ACTIONS(867), + [anon_sym_u21d4] = ACTIONS(865), + [anon_sym_EQ_EQ_GT] = ACTIONS(869), + [anon_sym_u21d2] = ACTIONS(871), + [anon_sym_BSLASH_SLASH] = ACTIONS(873), + [anon_sym_u2228] = ACTIONS(875), + [anon_sym_u2209] = ACTIONS(877), + [anon_sym_NOTIN] = ACTIONS(879), + [anon_sym_u2208] = ACTIONS(877), + [anon_sym_IN] = ACTIONS(879), + [anon_sym_u227c] = ACTIONS(881), + [anon_sym_LT_LT_EQ] = ACTIONS(855), + [anon_sym_PERMUTES] = ACTIONS(855), + [anon_sym_HAS_SIZE] = ACTIONS(855), + [anon_sym_u2282] = ACTIONS(881), + [anon_sym_PSUBSET] = ACTIONS(855), + [anon_sym_u2286] = ACTIONS(855), + [anon_sym_u2265] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_u2264] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_u2286u1d63] = ACTIONS(881), + [anon_sym_RSUBSET] = ACTIONS(855), + [anon_sym_u2260] = ACTIONS(881), + [anon_sym_LT_GT] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_INSERT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_o] = ACTIONS(887), + [sym_hol_true] = ACTIONS(438), + [sym_hol_false] = ACTIONS(438), + [sym_hol_number] = ACTIONS(432), + [sym_hol_string] = ACTIONS(432), + [sym_hol_character] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [403] = { + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_if] = ACTIONS(89), + [anon_sym_then] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(89), + [sym__hol_symbolic] = ACTIONS(89), + [anon_sym_OLEAST] = ACTIONS(89), + [anon_sym_LEAST] = ACTIONS(89), + [anon_sym_some] = ACTIONS(89), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(89), + [anon_sym_u2203_BANG] = ACTIONS(85), + [anon_sym_QMARK_BANG] = ACTIONS(89), + [anon_sym_u2203] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(89), + [anon_sym_u2200] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_u03bb] = ACTIONS(85), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_u00ac] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(89), + [sym_hol_false] = ACTIONS(89), + [sym_hol_number] = ACTIONS(85), + [sym_hol_string] = ACTIONS(85), + [sym_hol_character] = ACTIONS(85), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [404] = { + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_else] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_u2227] = ACTIONS(498), + [anon_sym_SLASH_BSLASH] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(500), + [sym__hol_alphanumeric] = ACTIONS(500), + [sym__hol_symbolic] = ACTIONS(500), + [anon_sym_OLEAST] = ACTIONS(500), + [anon_sym_LEAST] = ACTIONS(500), + [anon_sym_some] = ACTIONS(500), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(500), + [anon_sym_u2203_BANG] = ACTIONS(498), + [anon_sym_QMARK_BANG] = ACTIONS(500), + [anon_sym_u2203] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u2200] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_u03bb] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_u00ac] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_u21ce] = ACTIONS(498), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(500), + [anon_sym_LT_EQ_GT] = ACTIONS(500), + [anon_sym_u21d4] = ACTIONS(498), + [anon_sym_EQ_EQ_GT] = ACTIONS(500), + [anon_sym_u21d2] = ACTIONS(498), + [anon_sym_BSLASH_SLASH] = ACTIONS(500), + [anon_sym_u2228] = ACTIONS(498), + [anon_sym_u2209] = ACTIONS(498), + [anon_sym_NOTIN] = ACTIONS(500), + [anon_sym_u2208] = ACTIONS(498), + [anon_sym_IN] = ACTIONS(500), + [anon_sym_u227c] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_PERMUTES] = ACTIONS(500), + [anon_sym_HAS_SIZE] = ACTIONS(500), + [anon_sym_u2282] = ACTIONS(498), + [anon_sym_PSUBSET] = ACTIONS(500), + [anon_sym_u2286] = ACTIONS(500), + [anon_sym_u2265] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_u2264] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_u2286u1d63] = ACTIONS(498), + [anon_sym_RSUBSET] = ACTIONS(500), + [anon_sym_u2260] = ACTIONS(498), + [anon_sym_LT_GT] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_INSERT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_o] = ACTIONS(500), + [sym_hol_true] = ACTIONS(500), + [sym_hol_false] = ACTIONS(500), + [sym_hol_number] = ACTIONS(498), + [sym_hol_string] = ACTIONS(498), + [sym_hol_character] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [405] = { + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_Proof] = ACTIONS(500), + [anon_sym_u2227] = ACTIONS(498), + [anon_sym_SLASH_BSLASH] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(500), + [sym__hol_alphanumeric] = ACTIONS(500), + [sym__hol_symbolic] = ACTIONS(500), + [anon_sym_OLEAST] = ACTIONS(500), + [anon_sym_LEAST] = ACTIONS(500), + [anon_sym_some] = ACTIONS(500), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(500), + [anon_sym_u2203_BANG] = ACTIONS(498), + [anon_sym_QMARK_BANG] = ACTIONS(500), + [anon_sym_u2203] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u2200] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_u03bb] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_u00ac] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_u21ce] = ACTIONS(498), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(500), + [anon_sym_LT_EQ_GT] = ACTIONS(500), + [anon_sym_u21d4] = ACTIONS(498), + [anon_sym_EQ_EQ_GT] = ACTIONS(500), + [anon_sym_u21d2] = ACTIONS(498), + [anon_sym_BSLASH_SLASH] = ACTIONS(500), + [anon_sym_u2228] = ACTIONS(498), + [anon_sym_u2209] = ACTIONS(498), + [anon_sym_NOTIN] = ACTIONS(500), + [anon_sym_u2208] = ACTIONS(498), + [anon_sym_IN] = ACTIONS(500), + [anon_sym_u227c] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_PERMUTES] = ACTIONS(500), + [anon_sym_HAS_SIZE] = ACTIONS(500), + [anon_sym_u2282] = ACTIONS(498), + [anon_sym_PSUBSET] = ACTIONS(500), + [anon_sym_u2286] = ACTIONS(500), + [anon_sym_u2265] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_u2264] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_u2286u1d63] = ACTIONS(498), + [anon_sym_RSUBSET] = ACTIONS(500), + [anon_sym_u2260] = ACTIONS(498), + [anon_sym_LT_GT] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_INSERT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_o] = ACTIONS(500), + [sym_hol_true] = ACTIONS(500), + [sym_hol_false] = ACTIONS(500), + [sym_hol_number] = ACTIONS(498), + [sym_hol_string] = ACTIONS(498), + [sym_hol_character] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [406] = { + [anon_sym_LPAREN] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(486), + [anon_sym_if] = ACTIONS(488), + [anon_sym_then] = ACTIONS(488), + [anon_sym_case] = ACTIONS(488), + [anon_sym_u2227] = ACTIONS(486), + [anon_sym_SLASH_BSLASH] = ACTIONS(488), + [anon_sym_COLON_COLON] = ACTIONS(488), + [sym__hol_alphanumeric] = ACTIONS(488), + [sym__hol_symbolic] = ACTIONS(488), + [anon_sym_OLEAST] = ACTIONS(488), + [anon_sym_LEAST] = ACTIONS(488), + [anon_sym_some] = ACTIONS(488), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(488), + [anon_sym_u2203_BANG] = ACTIONS(486), + [anon_sym_QMARK_BANG] = ACTIONS(488), + [anon_sym_u2203] = ACTIONS(488), + [anon_sym_QMARK] = ACTIONS(488), + [anon_sym_u2200] = ACTIONS(486), + [anon_sym_BANG] = ACTIONS(488), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_u03bb] = ACTIONS(486), + [anon_sym_BSLASH] = ACTIONS(488), + [anon_sym_DASH] = ACTIONS(488), + [anon_sym_u00ac] = ACTIONS(486), + [anon_sym_TILDE] = ACTIONS(486), + [anon_sym_u21ce] = ACTIONS(486), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(488), + [anon_sym_LT_EQ_GT] = ACTIONS(488), + [anon_sym_u21d4] = ACTIONS(486), + [anon_sym_EQ_EQ_GT] = ACTIONS(488), + [anon_sym_u21d2] = ACTIONS(486), + [anon_sym_BSLASH_SLASH] = ACTIONS(488), + [anon_sym_u2228] = ACTIONS(486), + [anon_sym_u2209] = ACTIONS(486), + [anon_sym_NOTIN] = ACTIONS(488), + [anon_sym_u2208] = ACTIONS(486), + [anon_sym_IN] = ACTIONS(488), + [anon_sym_u227c] = ACTIONS(486), + [anon_sym_LT_LT_EQ] = ACTIONS(488), + [anon_sym_PERMUTES] = ACTIONS(488), + [anon_sym_HAS_SIZE] = ACTIONS(488), + [anon_sym_u2282] = ACTIONS(486), + [anon_sym_PSUBSET] = ACTIONS(488), + [anon_sym_u2286] = ACTIONS(488), + [anon_sym_u2265] = ACTIONS(486), + [anon_sym_GT_EQ] = ACTIONS(488), + [anon_sym_u2264] = ACTIONS(486), + [anon_sym_LT_EQ] = ACTIONS(488), + [anon_sym_GT] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(488), + [anon_sym_u2286u1d63] = ACTIONS(486), + [anon_sym_RSUBSET] = ACTIONS(488), + [anon_sym_u2260] = ACTIONS(486), + [anon_sym_LT_GT] = ACTIONS(488), + [anon_sym_DOLLAR] = ACTIONS(488), + [anon_sym_INSERT] = ACTIONS(488), + [anon_sym_PLUS] = ACTIONS(488), + [anon_sym_o] = ACTIONS(488), + [sym_hol_true] = ACTIONS(488), + [sym_hol_false] = ACTIONS(488), + [sym_hol_number] = ACTIONS(486), + [sym_hol_string] = ACTIONS(486), + [sym_hol_character] = ACTIONS(486), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [407] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(933), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_INSERT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_o] = ACTIONS(939), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [408] = { + [anon_sym_LPAREN] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_COLON] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(428), + [anon_sym_if] = ACTIONS(430), + [anon_sym_case] = ACTIONS(430), + [anon_sym_of] = ACTIONS(430), + [anon_sym_u2227] = ACTIONS(428), + [anon_sym_SLASH_BSLASH] = ACTIONS(430), + [anon_sym_COLON_COLON] = ACTIONS(430), + [sym__hol_alphanumeric] = ACTIONS(430), + [sym__hol_symbolic] = ACTIONS(430), + [anon_sym_OLEAST] = ACTIONS(430), + [anon_sym_LEAST] = ACTIONS(430), + [anon_sym_some] = ACTIONS(430), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(430), + [anon_sym_u2203_BANG] = ACTIONS(428), + [anon_sym_QMARK_BANG] = ACTIONS(430), + [anon_sym_u2203] = ACTIONS(430), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_u2200] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_AT] = ACTIONS(430), + [anon_sym_u03bb] = ACTIONS(428), + [anon_sym_BSLASH] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(430), + [anon_sym_u00ac] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(428), + [anon_sym_u21ce] = ACTIONS(428), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(430), + [anon_sym_LT_EQ_GT] = ACTIONS(430), + [anon_sym_u21d4] = ACTIONS(428), + [anon_sym_EQ_EQ_GT] = ACTIONS(430), + [anon_sym_u21d2] = ACTIONS(428), + [anon_sym_BSLASH_SLASH] = ACTIONS(430), + [anon_sym_u2228] = ACTIONS(428), + [anon_sym_u2209] = ACTIONS(428), + [anon_sym_NOTIN] = ACTIONS(430), + [anon_sym_u2208] = ACTIONS(428), + [anon_sym_IN] = ACTIONS(430), + [anon_sym_u227c] = ACTIONS(428), + [anon_sym_LT_LT_EQ] = ACTIONS(430), + [anon_sym_PERMUTES] = ACTIONS(430), + [anon_sym_HAS_SIZE] = ACTIONS(430), + [anon_sym_u2282] = ACTIONS(428), + [anon_sym_PSUBSET] = ACTIONS(430), + [anon_sym_u2286] = ACTIONS(430), + [anon_sym_u2265] = ACTIONS(428), + [anon_sym_GT_EQ] = ACTIONS(430), + [anon_sym_u2264] = ACTIONS(428), + [anon_sym_LT_EQ] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_u2286u1d63] = ACTIONS(428), + [anon_sym_RSUBSET] = ACTIONS(430), + [anon_sym_u2260] = ACTIONS(428), + [anon_sym_LT_GT] = ACTIONS(430), + [anon_sym_DOLLAR] = ACTIONS(430), + [anon_sym_INSERT] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(430), + [anon_sym_o] = ACTIONS(430), + [sym_hol_true] = ACTIONS(430), + [sym_hol_false] = ACTIONS(430), + [sym_hol_number] = ACTIONS(428), + [sym_hol_string] = ACTIONS(428), + [sym_hol_character] = ACTIONS(428), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [409] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(943), + [anon_sym_SLASH_BSLASH] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(933), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(947), + [anon_sym_NOTIN] = ACTIONS(949), + [anon_sym_u2208] = ACTIONS(947), + [anon_sym_IN] = ACTIONS(949), + [anon_sym_u227c] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(941), + [anon_sym_PERMUTES] = ACTIONS(941), + [anon_sym_HAS_SIZE] = ACTIONS(941), + [anon_sym_u2282] = ACTIONS(951), + [anon_sym_PSUBSET] = ACTIONS(941), + [anon_sym_u2286] = ACTIONS(941), + [anon_sym_u2265] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_u2264] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_u2286u1d63] = ACTIONS(951), + [anon_sym_RSUBSET] = ACTIONS(941), + [anon_sym_u2260] = ACTIONS(951), + [anon_sym_LT_GT] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_INSERT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_o] = ACTIONS(939), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [410] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(933), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_o] = ACTIONS(939), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [411] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(943), + [anon_sym_SLASH_BSLASH] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(933), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(953), + [anon_sym_u21d2] = ACTIONS(955), + [anon_sym_BSLASH_SLASH] = ACTIONS(957), + [anon_sym_u2228] = ACTIONS(959), + [anon_sym_u2209] = ACTIONS(947), + [anon_sym_NOTIN] = ACTIONS(949), + [anon_sym_u2208] = ACTIONS(947), + [anon_sym_IN] = ACTIONS(949), + [anon_sym_u227c] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(941), + [anon_sym_PERMUTES] = ACTIONS(941), + [anon_sym_HAS_SIZE] = ACTIONS(941), + [anon_sym_u2282] = ACTIONS(951), + [anon_sym_PSUBSET] = ACTIONS(941), + [anon_sym_u2286] = ACTIONS(941), + [anon_sym_u2265] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_u2264] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_u2286u1d63] = ACTIONS(951), + [anon_sym_RSUBSET] = ACTIONS(941), + [anon_sym_u2260] = ACTIONS(951), + [anon_sym_LT_GT] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_INSERT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_o] = ACTIONS(939), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [412] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(943), + [anon_sym_SLASH_BSLASH] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(933), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(957), + [anon_sym_u2228] = ACTIONS(959), + [anon_sym_u2209] = ACTIONS(947), + [anon_sym_NOTIN] = ACTIONS(949), + [anon_sym_u2208] = ACTIONS(947), + [anon_sym_IN] = ACTIONS(949), + [anon_sym_u227c] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(941), + [anon_sym_PERMUTES] = ACTIONS(941), + [anon_sym_HAS_SIZE] = ACTIONS(941), + [anon_sym_u2282] = ACTIONS(951), + [anon_sym_PSUBSET] = ACTIONS(941), + [anon_sym_u2286] = ACTIONS(941), + [anon_sym_u2265] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_u2264] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_u2286u1d63] = ACTIONS(951), + [anon_sym_RSUBSET] = ACTIONS(941), + [anon_sym_u2260] = ACTIONS(951), + [anon_sym_LT_GT] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_INSERT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_o] = ACTIONS(939), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [413] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(943), + [anon_sym_SLASH_BSLASH] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(933), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(957), + [anon_sym_u2228] = ACTIONS(959), + [anon_sym_u2209] = ACTIONS(947), + [anon_sym_NOTIN] = ACTIONS(949), + [anon_sym_u2208] = ACTIONS(947), + [anon_sym_IN] = ACTIONS(949), + [anon_sym_u227c] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(941), + [anon_sym_PERMUTES] = ACTIONS(941), + [anon_sym_HAS_SIZE] = ACTIONS(941), + [anon_sym_u2282] = ACTIONS(951), + [anon_sym_PSUBSET] = ACTIONS(941), + [anon_sym_u2286] = ACTIONS(941), + [anon_sym_u2265] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_u2264] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_u2286u1d63] = ACTIONS(951), + [anon_sym_RSUBSET] = ACTIONS(941), + [anon_sym_u2260] = ACTIONS(951), + [anon_sym_LT_GT] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_INSERT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_o] = ACTIONS(939), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [414] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(933), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(941), + [anon_sym_PERMUTES] = ACTIONS(941), + [anon_sym_HAS_SIZE] = ACTIONS(941), + [anon_sym_u2282] = ACTIONS(951), + [anon_sym_PSUBSET] = ACTIONS(941), + [anon_sym_u2286] = ACTIONS(941), + [anon_sym_u2265] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_u2264] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_u2286u1d63] = ACTIONS(951), + [anon_sym_RSUBSET] = ACTIONS(941), + [anon_sym_u2260] = ACTIONS(951), + [anon_sym_LT_GT] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_INSERT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_o] = ACTIONS(939), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [415] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(933), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_INSERT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_o] = ACTIONS(939), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [416] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(939), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [417] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_Proof] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(939), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [418] = { + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_COLON] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_else] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_u2227] = ACTIONS(502), + [anon_sym_SLASH_BSLASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(504), + [sym__hol_alphanumeric] = ACTIONS(504), + [sym__hol_symbolic] = ACTIONS(504), + [anon_sym_OLEAST] = ACTIONS(504), + [anon_sym_LEAST] = ACTIONS(504), + [anon_sym_some] = ACTIONS(504), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(504), + [anon_sym_u2203_BANG] = ACTIONS(502), + [anon_sym_QMARK_BANG] = ACTIONS(504), + [anon_sym_u2203] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u2200] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_u03bb] = ACTIONS(502), + [anon_sym_BSLASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_u00ac] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_u21ce] = ACTIONS(502), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(504), + [anon_sym_LT_EQ_GT] = ACTIONS(504), + [anon_sym_u21d4] = ACTIONS(502), + [anon_sym_EQ_EQ_GT] = ACTIONS(504), + [anon_sym_u21d2] = ACTIONS(502), + [anon_sym_BSLASH_SLASH] = ACTIONS(504), + [anon_sym_u2228] = ACTIONS(502), + [anon_sym_u2209] = ACTIONS(502), + [anon_sym_NOTIN] = ACTIONS(504), + [anon_sym_u2208] = ACTIONS(502), + [anon_sym_IN] = ACTIONS(504), + [anon_sym_u227c] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_PERMUTES] = ACTIONS(504), + [anon_sym_HAS_SIZE] = ACTIONS(504), + [anon_sym_u2282] = ACTIONS(502), + [anon_sym_PSUBSET] = ACTIONS(504), + [anon_sym_u2286] = ACTIONS(504), + [anon_sym_u2265] = ACTIONS(502), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_u2264] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_u2286u1d63] = ACTIONS(502), + [anon_sym_RSUBSET] = ACTIONS(504), + [anon_sym_u2260] = ACTIONS(502), + [anon_sym_LT_GT] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(504), + [anon_sym_INSERT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_o] = ACTIONS(504), + [sym_hol_true] = ACTIONS(504), + [sym_hol_false] = ACTIONS(504), + [sym_hol_number] = ACTIONS(502), + [sym_hol_string] = ACTIONS(502), + [sym_hol_character] = ACTIONS(502), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [419] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(863), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_INSERT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_o] = ACTIONS(887), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [420] = { + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(478), + [anon_sym_EQ] = ACTIONS(480), + [anon_sym_COLON] = ACTIONS(480), + [anon_sym_LBRACK] = ACTIONS(478), + [anon_sym_if] = ACTIONS(480), + [anon_sym_then] = ACTIONS(480), + [anon_sym_case] = ACTIONS(480), + [anon_sym_u2227] = ACTIONS(478), + [anon_sym_SLASH_BSLASH] = ACTIONS(480), + [anon_sym_COLON_COLON] = ACTIONS(480), + [sym__hol_alphanumeric] = ACTIONS(480), + [sym__hol_symbolic] = ACTIONS(480), + [anon_sym_OLEAST] = ACTIONS(480), + [anon_sym_LEAST] = ACTIONS(480), + [anon_sym_some] = ACTIONS(480), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(480), + [anon_sym_u2203_BANG] = ACTIONS(478), + [anon_sym_QMARK_BANG] = ACTIONS(480), + [anon_sym_u2203] = ACTIONS(480), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_u2200] = ACTIONS(478), + [anon_sym_BANG] = ACTIONS(480), + [anon_sym_AT] = ACTIONS(480), + [anon_sym_u03bb] = ACTIONS(478), + [anon_sym_BSLASH] = ACTIONS(480), + [anon_sym_DASH] = ACTIONS(480), + [anon_sym_u00ac] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(478), + [anon_sym_u21ce] = ACTIONS(478), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(480), + [anon_sym_LT_EQ_GT] = ACTIONS(480), + [anon_sym_u21d4] = ACTIONS(478), + [anon_sym_EQ_EQ_GT] = ACTIONS(480), + [anon_sym_u21d2] = ACTIONS(478), + [anon_sym_BSLASH_SLASH] = ACTIONS(480), + [anon_sym_u2228] = ACTIONS(478), + [anon_sym_u2209] = ACTIONS(478), + [anon_sym_NOTIN] = ACTIONS(480), + [anon_sym_u2208] = ACTIONS(478), + [anon_sym_IN] = ACTIONS(480), + [anon_sym_u227c] = ACTIONS(478), + [anon_sym_LT_LT_EQ] = ACTIONS(480), + [anon_sym_PERMUTES] = ACTIONS(480), + [anon_sym_HAS_SIZE] = ACTIONS(480), + [anon_sym_u2282] = ACTIONS(478), + [anon_sym_PSUBSET] = ACTIONS(480), + [anon_sym_u2286] = ACTIONS(480), + [anon_sym_u2265] = ACTIONS(478), + [anon_sym_GT_EQ] = ACTIONS(480), + [anon_sym_u2264] = ACTIONS(478), + [anon_sym_LT_EQ] = ACTIONS(480), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_LT] = ACTIONS(480), + [anon_sym_u2286u1d63] = ACTIONS(478), + [anon_sym_RSUBSET] = ACTIONS(480), + [anon_sym_u2260] = ACTIONS(478), + [anon_sym_LT_GT] = ACTIONS(480), + [anon_sym_DOLLAR] = ACTIONS(480), + [anon_sym_INSERT] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(480), + [anon_sym_o] = ACTIONS(480), + [sym_hol_true] = ACTIONS(480), + [sym_hol_false] = ACTIONS(480), + [sym_hol_number] = ACTIONS(478), + [sym_hol_string] = ACTIONS(478), + [sym_hol_character] = ACTIONS(478), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [421] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(859), + [anon_sym_SLASH_BSLASH] = ACTIONS(861), + [anon_sym_COLON_COLON] = ACTIONS(863), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(877), + [anon_sym_NOTIN] = ACTIONS(879), + [anon_sym_u2208] = ACTIONS(877), + [anon_sym_IN] = ACTIONS(879), + [anon_sym_u227c] = ACTIONS(881), + [anon_sym_LT_LT_EQ] = ACTIONS(855), + [anon_sym_PERMUTES] = ACTIONS(855), + [anon_sym_HAS_SIZE] = ACTIONS(855), + [anon_sym_u2282] = ACTIONS(881), + [anon_sym_PSUBSET] = ACTIONS(855), + [anon_sym_u2286] = ACTIONS(855), + [anon_sym_u2265] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_u2264] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_u2286u1d63] = ACTIONS(881), + [anon_sym_RSUBSET] = ACTIONS(855), + [anon_sym_u2260] = ACTIONS(881), + [anon_sym_LT_GT] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_INSERT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_o] = ACTIONS(887), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [422] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(863), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_o] = ACTIONS(887), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [423] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(859), + [anon_sym_SLASH_BSLASH] = ACTIONS(861), + [anon_sym_COLON_COLON] = ACTIONS(863), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(869), + [anon_sym_u21d2] = ACTIONS(871), + [anon_sym_BSLASH_SLASH] = ACTIONS(873), + [anon_sym_u2228] = ACTIONS(875), + [anon_sym_u2209] = ACTIONS(877), + [anon_sym_NOTIN] = ACTIONS(879), + [anon_sym_u2208] = ACTIONS(877), + [anon_sym_IN] = ACTIONS(879), + [anon_sym_u227c] = ACTIONS(881), + [anon_sym_LT_LT_EQ] = ACTIONS(855), + [anon_sym_PERMUTES] = ACTIONS(855), + [anon_sym_HAS_SIZE] = ACTIONS(855), + [anon_sym_u2282] = ACTIONS(881), + [anon_sym_PSUBSET] = ACTIONS(855), + [anon_sym_u2286] = ACTIONS(855), + [anon_sym_u2265] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_u2264] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_u2286u1d63] = ACTIONS(881), + [anon_sym_RSUBSET] = ACTIONS(855), + [anon_sym_u2260] = ACTIONS(881), + [anon_sym_LT_GT] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_INSERT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_o] = ACTIONS(887), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [424] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(859), + [anon_sym_SLASH_BSLASH] = ACTIONS(861), + [anon_sym_COLON_COLON] = ACTIONS(863), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(873), + [anon_sym_u2228] = ACTIONS(875), + [anon_sym_u2209] = ACTIONS(877), + [anon_sym_NOTIN] = ACTIONS(879), + [anon_sym_u2208] = ACTIONS(877), + [anon_sym_IN] = ACTIONS(879), + [anon_sym_u227c] = ACTIONS(881), + [anon_sym_LT_LT_EQ] = ACTIONS(855), + [anon_sym_PERMUTES] = ACTIONS(855), + [anon_sym_HAS_SIZE] = ACTIONS(855), + [anon_sym_u2282] = ACTIONS(881), + [anon_sym_PSUBSET] = ACTIONS(855), + [anon_sym_u2286] = ACTIONS(855), + [anon_sym_u2265] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_u2264] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_u2286u1d63] = ACTIONS(881), + [anon_sym_RSUBSET] = ACTIONS(855), + [anon_sym_u2260] = ACTIONS(881), + [anon_sym_LT_GT] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_INSERT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_o] = ACTIONS(887), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [425] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(859), + [anon_sym_SLASH_BSLASH] = ACTIONS(861), + [anon_sym_COLON_COLON] = ACTIONS(863), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(873), + [anon_sym_u2228] = ACTIONS(875), + [anon_sym_u2209] = ACTIONS(877), + [anon_sym_NOTIN] = ACTIONS(879), + [anon_sym_u2208] = ACTIONS(877), + [anon_sym_IN] = ACTIONS(879), + [anon_sym_u227c] = ACTIONS(881), + [anon_sym_LT_LT_EQ] = ACTIONS(855), + [anon_sym_PERMUTES] = ACTIONS(855), + [anon_sym_HAS_SIZE] = ACTIONS(855), + [anon_sym_u2282] = ACTIONS(881), + [anon_sym_PSUBSET] = ACTIONS(855), + [anon_sym_u2286] = ACTIONS(855), + [anon_sym_u2265] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_u2264] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_u2286u1d63] = ACTIONS(881), + [anon_sym_RSUBSET] = ACTIONS(855), + [anon_sym_u2260] = ACTIONS(881), + [anon_sym_LT_GT] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_INSERT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_o] = ACTIONS(887), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [426] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(863), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(881), + [anon_sym_LT_LT_EQ] = ACTIONS(855), + [anon_sym_PERMUTES] = ACTIONS(855), + [anon_sym_HAS_SIZE] = ACTIONS(855), + [anon_sym_u2282] = ACTIONS(881), + [anon_sym_PSUBSET] = ACTIONS(855), + [anon_sym_u2286] = ACTIONS(855), + [anon_sym_u2265] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(855), + [anon_sym_u2264] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(855), + [anon_sym_GT] = ACTIONS(855), + [anon_sym_LT] = ACTIONS(855), + [anon_sym_u2286u1d63] = ACTIONS(881), + [anon_sym_RSUBSET] = ACTIONS(855), + [anon_sym_u2260] = ACTIONS(881), + [anon_sym_LT_GT] = ACTIONS(855), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_INSERT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_o] = ACTIONS(887), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [427] = { + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_else] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [428] = { + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_Proof] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [429] = { + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_else] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_u2227] = ACTIONS(506), + [anon_sym_SLASH_BSLASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(508), + [sym__hol_alphanumeric] = ACTIONS(508), + [sym__hol_symbolic] = ACTIONS(508), + [anon_sym_OLEAST] = ACTIONS(508), + [anon_sym_LEAST] = ACTIONS(508), + [anon_sym_some] = ACTIONS(508), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(508), + [anon_sym_u2203_BANG] = ACTIONS(506), + [anon_sym_QMARK_BANG] = ACTIONS(508), + [anon_sym_u2203] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u2200] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_u03bb] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_u00ac] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_u21ce] = ACTIONS(506), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(508), + [anon_sym_LT_EQ_GT] = ACTIONS(508), + [anon_sym_u21d4] = ACTIONS(506), + [anon_sym_EQ_EQ_GT] = ACTIONS(508), + [anon_sym_u21d2] = ACTIONS(506), + [anon_sym_BSLASH_SLASH] = ACTIONS(508), + [anon_sym_u2228] = ACTIONS(506), + [anon_sym_u2209] = ACTIONS(506), + [anon_sym_NOTIN] = ACTIONS(508), + [anon_sym_u2208] = ACTIONS(506), + [anon_sym_IN] = ACTIONS(508), + [anon_sym_u227c] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_PERMUTES] = ACTIONS(508), + [anon_sym_HAS_SIZE] = ACTIONS(508), + [anon_sym_u2282] = ACTIONS(506), + [anon_sym_PSUBSET] = ACTIONS(508), + [anon_sym_u2286] = ACTIONS(508), + [anon_sym_u2265] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_u2264] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_u2286u1d63] = ACTIONS(506), + [anon_sym_RSUBSET] = ACTIONS(508), + [anon_sym_u2260] = ACTIONS(506), + [anon_sym_LT_GT] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(508), + [anon_sym_INSERT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_o] = ACTIONS(508), + [sym_hol_true] = ACTIONS(508), + [sym_hol_false] = ACTIONS(508), + [sym_hol_number] = ACTIONS(506), + [sym_hol_string] = ACTIONS(506), + [sym_hol_character] = ACTIONS(506), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [430] = { + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_if] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_of] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(89), + [sym__hol_symbolic] = ACTIONS(89), + [anon_sym_OLEAST] = ACTIONS(89), + [anon_sym_LEAST] = ACTIONS(89), + [anon_sym_some] = ACTIONS(89), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(89), + [anon_sym_u2203_BANG] = ACTIONS(85), + [anon_sym_QMARK_BANG] = ACTIONS(89), + [anon_sym_u2203] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(89), + [anon_sym_u2200] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_u03bb] = ACTIONS(85), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_u00ac] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(89), + [sym_hol_false] = ACTIONS(89), + [sym_hol_number] = ACTIONS(85), + [sym_hol_string] = ACTIONS(85), + [sym_hol_character] = ACTIONS(85), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [431] = { + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_Proof] = ACTIONS(524), + [anon_sym_u2227] = ACTIONS(943), + [anon_sym_SLASH_BSLASH] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(933), + [sym__hol_alphanumeric] = ACTIONS(524), + [sym__hol_symbolic] = ACTIONS(524), + [anon_sym_OLEAST] = ACTIONS(524), + [anon_sym_LEAST] = ACTIONS(524), + [anon_sym_some] = ACTIONS(524), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(524), + [anon_sym_u2203_BANG] = ACTIONS(522), + [anon_sym_QMARK_BANG] = ACTIONS(524), + [anon_sym_u2203] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u2200] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_u03bb] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_u00ac] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_u21ce] = ACTIONS(961), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(963), + [anon_sym_LT_EQ_GT] = ACTIONS(963), + [anon_sym_u21d4] = ACTIONS(961), + [anon_sym_EQ_EQ_GT] = ACTIONS(953), + [anon_sym_u21d2] = ACTIONS(955), + [anon_sym_BSLASH_SLASH] = ACTIONS(957), + [anon_sym_u2228] = ACTIONS(959), + [anon_sym_u2209] = ACTIONS(947), + [anon_sym_NOTIN] = ACTIONS(949), + [anon_sym_u2208] = ACTIONS(947), + [anon_sym_IN] = ACTIONS(949), + [anon_sym_u227c] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(941), + [anon_sym_PERMUTES] = ACTIONS(941), + [anon_sym_HAS_SIZE] = ACTIONS(941), + [anon_sym_u2282] = ACTIONS(951), + [anon_sym_PSUBSET] = ACTIONS(941), + [anon_sym_u2286] = ACTIONS(941), + [anon_sym_u2265] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_u2264] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_u2286u1d63] = ACTIONS(951), + [anon_sym_RSUBSET] = ACTIONS(941), + [anon_sym_u2260] = ACTIONS(951), + [anon_sym_LT_GT] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_INSERT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_o] = ACTIONS(939), + [sym_hol_true] = ACTIONS(524), + [sym_hol_false] = ACTIONS(524), + [sym_hol_number] = ACTIONS(522), + [sym_hol_string] = ACTIONS(522), + [sym_hol_character] = ACTIONS(522), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [432] = { + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_else] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_u2227] = ACTIONS(510), + [anon_sym_SLASH_BSLASH] = ACTIONS(512), + [anon_sym_COLON_COLON] = ACTIONS(512), + [sym__hol_alphanumeric] = ACTIONS(512), + [sym__hol_symbolic] = ACTIONS(512), + [anon_sym_OLEAST] = ACTIONS(512), + [anon_sym_LEAST] = ACTIONS(512), + [anon_sym_some] = ACTIONS(512), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(512), + [anon_sym_u2203_BANG] = ACTIONS(510), + [anon_sym_QMARK_BANG] = ACTIONS(512), + [anon_sym_u2203] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u2200] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_u03bb] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_u00ac] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_u21ce] = ACTIONS(510), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(512), + [anon_sym_LT_EQ_GT] = ACTIONS(512), + [anon_sym_u21d4] = ACTIONS(510), + [anon_sym_EQ_EQ_GT] = ACTIONS(512), + [anon_sym_u21d2] = ACTIONS(510), + [anon_sym_BSLASH_SLASH] = ACTIONS(512), + [anon_sym_u2228] = ACTIONS(510), + [anon_sym_u2209] = ACTIONS(510), + [anon_sym_NOTIN] = ACTIONS(512), + [anon_sym_u2208] = ACTIONS(510), + [anon_sym_IN] = ACTIONS(512), + [anon_sym_u227c] = ACTIONS(510), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_PERMUTES] = ACTIONS(512), + [anon_sym_HAS_SIZE] = ACTIONS(512), + [anon_sym_u2282] = ACTIONS(510), + [anon_sym_PSUBSET] = ACTIONS(512), + [anon_sym_u2286] = ACTIONS(512), + [anon_sym_u2265] = ACTIONS(510), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_u2264] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_u2286u1d63] = ACTIONS(510), + [anon_sym_RSUBSET] = ACTIONS(512), + [anon_sym_u2260] = ACTIONS(510), + [anon_sym_LT_GT] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_INSERT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_o] = ACTIONS(512), + [sym_hol_true] = ACTIONS(512), + [sym_hol_false] = ACTIONS(512), + [sym_hol_number] = ACTIONS(510), + [sym_hol_string] = ACTIONS(510), + [sym_hol_character] = ACTIONS(510), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [433] = { + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_if] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_of] = ACTIONS(492), + [anon_sym_u2227] = ACTIONS(490), + [anon_sym_SLASH_BSLASH] = ACTIONS(492), + [anon_sym_COLON_COLON] = ACTIONS(492), + [sym__hol_alphanumeric] = ACTIONS(492), + [sym__hol_symbolic] = ACTIONS(492), + [anon_sym_OLEAST] = ACTIONS(492), + [anon_sym_LEAST] = ACTIONS(492), + [anon_sym_some] = ACTIONS(492), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(492), + [anon_sym_u2203_BANG] = ACTIONS(490), + [anon_sym_QMARK_BANG] = ACTIONS(492), + [anon_sym_u2203] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u2200] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_u03bb] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_u00ac] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_u21ce] = ACTIONS(490), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(492), + [anon_sym_LT_EQ_GT] = ACTIONS(492), + [anon_sym_u21d4] = ACTIONS(490), + [anon_sym_EQ_EQ_GT] = ACTIONS(492), + [anon_sym_u21d2] = ACTIONS(490), + [anon_sym_BSLASH_SLASH] = ACTIONS(492), + [anon_sym_u2228] = ACTIONS(490), + [anon_sym_u2209] = ACTIONS(490), + [anon_sym_NOTIN] = ACTIONS(492), + [anon_sym_u2208] = ACTIONS(490), + [anon_sym_IN] = ACTIONS(492), + [anon_sym_u227c] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_PERMUTES] = ACTIONS(492), + [anon_sym_HAS_SIZE] = ACTIONS(492), + [anon_sym_u2282] = ACTIONS(490), + [anon_sym_PSUBSET] = ACTIONS(492), + [anon_sym_u2286] = ACTIONS(492), + [anon_sym_u2265] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_u2264] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_u2286u1d63] = ACTIONS(490), + [anon_sym_RSUBSET] = ACTIONS(492), + [anon_sym_u2260] = ACTIONS(490), + [anon_sym_LT_GT] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_INSERT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_o] = ACTIONS(492), + [sym_hol_true] = ACTIONS(492), + [sym_hol_false] = ACTIONS(492), + [sym_hol_number] = ACTIONS(490), + [sym_hol_string] = ACTIONS(490), + [sym_hol_character] = ACTIONS(490), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [434] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(863), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_INSERT] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_o] = ACTIONS(887), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [435] = { + [anon_sym_LPAREN] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(496), + [anon_sym_COLON] = ACTIONS(496), + [anon_sym_LBRACK] = ACTIONS(494), + [anon_sym_if] = ACTIONS(496), + [anon_sym_case] = ACTIONS(496), + [anon_sym_of] = ACTIONS(496), + [anon_sym_u2227] = ACTIONS(494), + [anon_sym_SLASH_BSLASH] = ACTIONS(496), + [anon_sym_COLON_COLON] = ACTIONS(496), + [sym__hol_alphanumeric] = ACTIONS(496), + [sym__hol_symbolic] = ACTIONS(496), + [anon_sym_OLEAST] = ACTIONS(496), + [anon_sym_LEAST] = ACTIONS(496), + [anon_sym_some] = ACTIONS(496), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(496), + [anon_sym_u2203_BANG] = ACTIONS(494), + [anon_sym_QMARK_BANG] = ACTIONS(496), + [anon_sym_u2203] = ACTIONS(496), + [anon_sym_QMARK] = ACTIONS(496), + [anon_sym_u2200] = ACTIONS(494), + [anon_sym_BANG] = ACTIONS(496), + [anon_sym_AT] = ACTIONS(496), + [anon_sym_u03bb] = ACTIONS(494), + [anon_sym_BSLASH] = ACTIONS(496), + [anon_sym_DASH] = ACTIONS(496), + [anon_sym_u00ac] = ACTIONS(494), + [anon_sym_TILDE] = ACTIONS(494), + [anon_sym_u21ce] = ACTIONS(494), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(496), + [anon_sym_LT_EQ_GT] = ACTIONS(496), + [anon_sym_u21d4] = ACTIONS(494), + [anon_sym_EQ_EQ_GT] = ACTIONS(496), + [anon_sym_u21d2] = ACTIONS(494), + [anon_sym_BSLASH_SLASH] = ACTIONS(496), + [anon_sym_u2228] = ACTIONS(494), + [anon_sym_u2209] = ACTIONS(494), + [anon_sym_NOTIN] = ACTIONS(496), + [anon_sym_u2208] = ACTIONS(494), + [anon_sym_IN] = ACTIONS(496), + [anon_sym_u227c] = ACTIONS(494), + [anon_sym_LT_LT_EQ] = ACTIONS(496), + [anon_sym_PERMUTES] = ACTIONS(496), + [anon_sym_HAS_SIZE] = ACTIONS(496), + [anon_sym_u2282] = ACTIONS(494), + [anon_sym_PSUBSET] = ACTIONS(496), + [anon_sym_u2286] = ACTIONS(496), + [anon_sym_u2265] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(496), + [anon_sym_u2264] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(496), + [anon_sym_GT] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(496), + [anon_sym_u2286u1d63] = ACTIONS(494), + [anon_sym_RSUBSET] = ACTIONS(496), + [anon_sym_u2260] = ACTIONS(494), + [anon_sym_LT_GT] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(496), + [anon_sym_INSERT] = ACTIONS(496), + [anon_sym_PLUS] = ACTIONS(496), + [anon_sym_o] = ACTIONS(496), + [sym_hol_true] = ACTIONS(496), + [sym_hol_false] = ACTIONS(496), + [sym_hol_number] = ACTIONS(494), + [sym_hol_string] = ACTIONS(494), + [sym_hol_character] = ACTIONS(494), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [436] = { + [anon_sym_LPAREN] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(516), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(514), + [anon_sym_if] = ACTIONS(516), + [anon_sym_else] = ACTIONS(516), + [anon_sym_case] = ACTIONS(516), + [anon_sym_u2227] = ACTIONS(514), + [anon_sym_SLASH_BSLASH] = ACTIONS(516), + [anon_sym_COLON_COLON] = ACTIONS(516), + [sym__hol_alphanumeric] = ACTIONS(516), + [sym__hol_symbolic] = ACTIONS(516), + [anon_sym_OLEAST] = ACTIONS(516), + [anon_sym_LEAST] = ACTIONS(516), + [anon_sym_some] = ACTIONS(516), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(516), + [anon_sym_u2203_BANG] = ACTIONS(514), + [anon_sym_QMARK_BANG] = ACTIONS(516), + [anon_sym_u2203] = ACTIONS(516), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_u2200] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(516), + [anon_sym_AT] = ACTIONS(516), + [anon_sym_u03bb] = ACTIONS(514), + [anon_sym_BSLASH] = ACTIONS(516), + [anon_sym_DASH] = ACTIONS(516), + [anon_sym_u00ac] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(514), + [anon_sym_u21ce] = ACTIONS(514), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(516), + [anon_sym_LT_EQ_GT] = ACTIONS(516), + [anon_sym_u21d4] = ACTIONS(514), + [anon_sym_EQ_EQ_GT] = ACTIONS(516), + [anon_sym_u21d2] = ACTIONS(514), + [anon_sym_BSLASH_SLASH] = ACTIONS(516), + [anon_sym_u2228] = ACTIONS(514), + [anon_sym_u2209] = ACTIONS(514), + [anon_sym_NOTIN] = ACTIONS(516), + [anon_sym_u2208] = ACTIONS(514), + [anon_sym_IN] = ACTIONS(516), + [anon_sym_u227c] = ACTIONS(514), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_PERMUTES] = ACTIONS(516), + [anon_sym_HAS_SIZE] = ACTIONS(516), + [anon_sym_u2282] = ACTIONS(514), + [anon_sym_PSUBSET] = ACTIONS(516), + [anon_sym_u2286] = ACTIONS(516), + [anon_sym_u2265] = ACTIONS(514), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_u2264] = ACTIONS(514), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(516), + [anon_sym_u2286u1d63] = ACTIONS(514), + [anon_sym_RSUBSET] = ACTIONS(516), + [anon_sym_u2260] = ACTIONS(514), + [anon_sym_LT_GT] = ACTIONS(516), + [anon_sym_DOLLAR] = ACTIONS(516), + [anon_sym_INSERT] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(516), + [anon_sym_o] = ACTIONS(516), + [sym_hol_true] = ACTIONS(516), + [sym_hol_false] = ACTIONS(516), + [sym_hol_number] = ACTIONS(514), + [sym_hol_string] = ACTIONS(514), + [sym_hol_character] = ACTIONS(514), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [437] = { + [anon_sym_LPAREN] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(432), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(432), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(438), + [anon_sym_Proof] = ACTIONS(438), + [anon_sym_u2227] = ACTIONS(943), + [anon_sym_SLASH_BSLASH] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(933), + [sym__hol_alphanumeric] = ACTIONS(438), + [sym__hol_symbolic] = ACTIONS(438), + [anon_sym_OLEAST] = ACTIONS(438), + [anon_sym_LEAST] = ACTIONS(438), + [anon_sym_some] = ACTIONS(438), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(438), + [anon_sym_u2203_BANG] = ACTIONS(432), + [anon_sym_QMARK_BANG] = ACTIONS(438), + [anon_sym_u2203] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_u2200] = ACTIONS(432), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(438), + [anon_sym_u03bb] = ACTIONS(432), + [anon_sym_BSLASH] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_u00ac] = ACTIONS(432), + [anon_sym_TILDE] = ACTIONS(432), + [anon_sym_u21ce] = ACTIONS(961), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(963), + [anon_sym_LT_EQ_GT] = ACTIONS(963), + [anon_sym_u21d4] = ACTIONS(961), + [anon_sym_EQ_EQ_GT] = ACTIONS(953), + [anon_sym_u21d2] = ACTIONS(955), + [anon_sym_BSLASH_SLASH] = ACTIONS(957), + [anon_sym_u2228] = ACTIONS(959), + [anon_sym_u2209] = ACTIONS(947), + [anon_sym_NOTIN] = ACTIONS(949), + [anon_sym_u2208] = ACTIONS(947), + [anon_sym_IN] = ACTIONS(949), + [anon_sym_u227c] = ACTIONS(951), + [anon_sym_LT_LT_EQ] = ACTIONS(941), + [anon_sym_PERMUTES] = ACTIONS(941), + [anon_sym_HAS_SIZE] = ACTIONS(941), + [anon_sym_u2282] = ACTIONS(951), + [anon_sym_PSUBSET] = ACTIONS(941), + [anon_sym_u2286] = ACTIONS(941), + [anon_sym_u2265] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_u2264] = ACTIONS(951), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_u2286u1d63] = ACTIONS(951), + [anon_sym_RSUBSET] = ACTIONS(941), + [anon_sym_u2260] = ACTIONS(951), + [anon_sym_LT_GT] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_INSERT] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(937), + [anon_sym_o] = ACTIONS(939), + [sym_hol_true] = ACTIONS(438), + [sym_hol_false] = ACTIONS(438), + [sym_hol_number] = ACTIONS(432), + [sym_hol_string] = ACTIONS(432), + [sym_hol_character] = ACTIONS(432), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [438] = { + [anon_sym_LPAREN] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(113), + [anon_sym_COLON] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_if] = ACTIONS(113), + [anon_sym_case] = ACTIONS(113), + [anon_sym_of] = ACTIONS(113), + [anon_sym_u2227] = ACTIONS(111), + [anon_sym_SLASH_BSLASH] = ACTIONS(113), + [anon_sym_COLON_COLON] = ACTIONS(113), + [sym__hol_alphanumeric] = ACTIONS(113), + [sym__hol_symbolic] = ACTIONS(113), + [anon_sym_OLEAST] = ACTIONS(113), + [anon_sym_LEAST] = ACTIONS(113), + [anon_sym_some] = ACTIONS(113), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(113), + [anon_sym_u2203_BANG] = ACTIONS(111), + [anon_sym_QMARK_BANG] = ACTIONS(113), + [anon_sym_u2203] = ACTIONS(113), + [anon_sym_QMARK] = ACTIONS(113), + [anon_sym_u2200] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(113), + [anon_sym_u03bb] = ACTIONS(111), + [anon_sym_BSLASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_u00ac] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(111), + [anon_sym_u21ce] = ACTIONS(111), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(113), + [anon_sym_LT_EQ_GT] = ACTIONS(113), + [anon_sym_u21d4] = ACTIONS(111), + [anon_sym_EQ_EQ_GT] = ACTIONS(113), + [anon_sym_u21d2] = ACTIONS(111), + [anon_sym_BSLASH_SLASH] = ACTIONS(113), + [anon_sym_u2228] = ACTIONS(111), + [anon_sym_u2209] = ACTIONS(111), + [anon_sym_NOTIN] = ACTIONS(113), + [anon_sym_u2208] = ACTIONS(111), + [anon_sym_IN] = ACTIONS(113), + [anon_sym_u227c] = ACTIONS(111), + [anon_sym_LT_LT_EQ] = ACTIONS(113), + [anon_sym_PERMUTES] = ACTIONS(113), + [anon_sym_HAS_SIZE] = ACTIONS(113), + [anon_sym_u2282] = ACTIONS(111), + [anon_sym_PSUBSET] = ACTIONS(113), + [anon_sym_u2286] = ACTIONS(113), + [anon_sym_u2265] = ACTIONS(111), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_u2264] = ACTIONS(111), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_LT] = ACTIONS(113), + [anon_sym_u2286u1d63] = ACTIONS(111), + [anon_sym_RSUBSET] = ACTIONS(113), + [anon_sym_u2260] = ACTIONS(111), + [anon_sym_LT_GT] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_INSERT] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_o] = ACTIONS(113), + [sym_hol_true] = ACTIONS(113), + [sym_hol_false] = ACTIONS(113), + [sym_hol_number] = ACTIONS(111), + [sym_hol_string] = ACTIONS(111), + [sym_hol_character] = ACTIONS(111), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [439] = { + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_of] = ACTIONS(508), + [anon_sym_u2227] = ACTIONS(506), + [anon_sym_SLASH_BSLASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(508), + [sym__hol_alphanumeric] = ACTIONS(508), + [sym__hol_symbolic] = ACTIONS(508), + [anon_sym_OLEAST] = ACTIONS(508), + [anon_sym_LEAST] = ACTIONS(508), + [anon_sym_some] = ACTIONS(508), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(508), + [anon_sym_u2203_BANG] = ACTIONS(506), + [anon_sym_QMARK_BANG] = ACTIONS(508), + [anon_sym_u2203] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u2200] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_u03bb] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_u00ac] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_u21ce] = ACTIONS(506), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(508), + [anon_sym_LT_EQ_GT] = ACTIONS(508), + [anon_sym_u21d4] = ACTIONS(506), + [anon_sym_EQ_EQ_GT] = ACTIONS(508), + [anon_sym_u21d2] = ACTIONS(506), + [anon_sym_BSLASH_SLASH] = ACTIONS(508), + [anon_sym_u2228] = ACTIONS(506), + [anon_sym_u2209] = ACTIONS(506), + [anon_sym_NOTIN] = ACTIONS(508), + [anon_sym_u2208] = ACTIONS(506), + [anon_sym_IN] = ACTIONS(508), + [anon_sym_u227c] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_PERMUTES] = ACTIONS(508), + [anon_sym_HAS_SIZE] = ACTIONS(508), + [anon_sym_u2282] = ACTIONS(506), + [anon_sym_PSUBSET] = ACTIONS(508), + [anon_sym_u2286] = ACTIONS(508), + [anon_sym_u2265] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_u2264] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_u2286u1d63] = ACTIONS(506), + [anon_sym_RSUBSET] = ACTIONS(508), + [anon_sym_u2260] = ACTIONS(506), + [anon_sym_LT_GT] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(508), + [anon_sym_INSERT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_o] = ACTIONS(508), + [sym_hol_true] = ACTIONS(508), + [sym_hol_false] = ACTIONS(508), + [sym_hol_number] = ACTIONS(506), + [sym_hol_string] = ACTIONS(506), + [sym_hol_character] = ACTIONS(506), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [440] = { + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_EQ] = ACTIONS(500), + [anon_sym_COLON] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_if] = ACTIONS(500), + [anon_sym_case] = ACTIONS(500), + [anon_sym_of] = ACTIONS(500), + [anon_sym_u2227] = ACTIONS(498), + [anon_sym_SLASH_BSLASH] = ACTIONS(500), + [anon_sym_COLON_COLON] = ACTIONS(500), + [sym__hol_alphanumeric] = ACTIONS(500), + [sym__hol_symbolic] = ACTIONS(500), + [anon_sym_OLEAST] = ACTIONS(500), + [anon_sym_LEAST] = ACTIONS(500), + [anon_sym_some] = ACTIONS(500), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(500), + [anon_sym_u2203_BANG] = ACTIONS(498), + [anon_sym_QMARK_BANG] = ACTIONS(500), + [anon_sym_u2203] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(500), + [anon_sym_u2200] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(500), + [anon_sym_u03bb] = ACTIONS(498), + [anon_sym_BSLASH] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_u00ac] = ACTIONS(498), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_u21ce] = ACTIONS(498), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(500), + [anon_sym_LT_EQ_GT] = ACTIONS(500), + [anon_sym_u21d4] = ACTIONS(498), + [anon_sym_EQ_EQ_GT] = ACTIONS(500), + [anon_sym_u21d2] = ACTIONS(498), + [anon_sym_BSLASH_SLASH] = ACTIONS(500), + [anon_sym_u2228] = ACTIONS(498), + [anon_sym_u2209] = ACTIONS(498), + [anon_sym_NOTIN] = ACTIONS(500), + [anon_sym_u2208] = ACTIONS(498), + [anon_sym_IN] = ACTIONS(500), + [anon_sym_u227c] = ACTIONS(498), + [anon_sym_LT_LT_EQ] = ACTIONS(500), + [anon_sym_PERMUTES] = ACTIONS(500), + [anon_sym_HAS_SIZE] = ACTIONS(500), + [anon_sym_u2282] = ACTIONS(498), + [anon_sym_PSUBSET] = ACTIONS(500), + [anon_sym_u2286] = ACTIONS(500), + [anon_sym_u2265] = ACTIONS(498), + [anon_sym_GT_EQ] = ACTIONS(500), + [anon_sym_u2264] = ACTIONS(498), + [anon_sym_LT_EQ] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(500), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_u2286u1d63] = ACTIONS(498), + [anon_sym_RSUBSET] = ACTIONS(500), + [anon_sym_u2260] = ACTIONS(498), + [anon_sym_LT_GT] = ACTIONS(500), + [anon_sym_DOLLAR] = ACTIONS(500), + [anon_sym_INSERT] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_o] = ACTIONS(500), + [sym_hol_true] = ACTIONS(500), + [sym_hol_false] = ACTIONS(500), + [sym_hol_number] = ACTIONS(498), + [sym_hol_string] = ACTIONS(498), + [sym_hol_character] = ACTIONS(498), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [441] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(837), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_INSERT] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_o] = ACTIONS(853), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [442] = { + [anon_sym_LPAREN] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(490), + [anon_sym_EQ] = ACTIONS(492), + [anon_sym_COLON] = ACTIONS(492), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_if] = ACTIONS(492), + [anon_sym_then] = ACTIONS(492), + [anon_sym_case] = ACTIONS(492), + [anon_sym_u2227] = ACTIONS(490), + [anon_sym_SLASH_BSLASH] = ACTIONS(492), + [anon_sym_COLON_COLON] = ACTIONS(492), + [sym__hol_alphanumeric] = ACTIONS(492), + [sym__hol_symbolic] = ACTIONS(492), + [anon_sym_OLEAST] = ACTIONS(492), + [anon_sym_LEAST] = ACTIONS(492), + [anon_sym_some] = ACTIONS(492), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(492), + [anon_sym_u2203_BANG] = ACTIONS(490), + [anon_sym_QMARK_BANG] = ACTIONS(492), + [anon_sym_u2203] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_u2200] = ACTIONS(490), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(492), + [anon_sym_u03bb] = ACTIONS(490), + [anon_sym_BSLASH] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_u00ac] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(490), + [anon_sym_u21ce] = ACTIONS(490), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(492), + [anon_sym_LT_EQ_GT] = ACTIONS(492), + [anon_sym_u21d4] = ACTIONS(490), + [anon_sym_EQ_EQ_GT] = ACTIONS(492), + [anon_sym_u21d2] = ACTIONS(490), + [anon_sym_BSLASH_SLASH] = ACTIONS(492), + [anon_sym_u2228] = ACTIONS(490), + [anon_sym_u2209] = ACTIONS(490), + [anon_sym_NOTIN] = ACTIONS(492), + [anon_sym_u2208] = ACTIONS(490), + [anon_sym_IN] = ACTIONS(492), + [anon_sym_u227c] = ACTIONS(490), + [anon_sym_LT_LT_EQ] = ACTIONS(492), + [anon_sym_PERMUTES] = ACTIONS(492), + [anon_sym_HAS_SIZE] = ACTIONS(492), + [anon_sym_u2282] = ACTIONS(490), + [anon_sym_PSUBSET] = ACTIONS(492), + [anon_sym_u2286] = ACTIONS(492), + [anon_sym_u2265] = ACTIONS(490), + [anon_sym_GT_EQ] = ACTIONS(492), + [anon_sym_u2264] = ACTIONS(490), + [anon_sym_LT_EQ] = ACTIONS(492), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_LT] = ACTIONS(492), + [anon_sym_u2286u1d63] = ACTIONS(490), + [anon_sym_RSUBSET] = ACTIONS(492), + [anon_sym_u2260] = ACTIONS(490), + [anon_sym_LT_GT] = ACTIONS(492), + [anon_sym_DOLLAR] = ACTIONS(492), + [anon_sym_INSERT] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_o] = ACTIONS(492), + [sym_hol_true] = ACTIONS(492), + [sym_hol_false] = ACTIONS(492), + [sym_hol_number] = ACTIONS(490), + [sym_hol_string] = ACTIONS(490), + [sym_hol_character] = ACTIONS(490), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [443] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(887), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [444] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_of] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(887), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [445] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(829), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(833), + [anon_sym_SLASH_BSLASH] = ACTIONS(835), + [anon_sym_COLON_COLON] = ACTIONS(837), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(843), + [anon_sym_NOTIN] = ACTIONS(845), + [anon_sym_u2208] = ACTIONS(843), + [anon_sym_IN] = ACTIONS(845), + [anon_sym_u227c] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(829), + [anon_sym_PERMUTES] = ACTIONS(829), + [anon_sym_HAS_SIZE] = ACTIONS(829), + [anon_sym_u2282] = ACTIONS(847), + [anon_sym_PSUBSET] = ACTIONS(829), + [anon_sym_u2286] = ACTIONS(829), + [anon_sym_u2265] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_u2264] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_LT] = ACTIONS(829), + [anon_sym_u2286u1d63] = ACTIONS(847), + [anon_sym_RSUBSET] = ACTIONS(829), + [anon_sym_u2260] = ACTIONS(847), + [anon_sym_LT_GT] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_INSERT] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_o] = ACTIONS(853), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [446] = { + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_COLON] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_if] = ACTIONS(89), + [anon_sym_else] = ACTIONS(89), + [anon_sym_case] = ACTIONS(89), + [anon_sym_u2227] = ACTIONS(85), + [anon_sym_SLASH_BSLASH] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [sym__hol_alphanumeric] = ACTIONS(89), + [sym__hol_symbolic] = ACTIONS(89), + [anon_sym_OLEAST] = ACTIONS(89), + [anon_sym_LEAST] = ACTIONS(89), + [anon_sym_some] = ACTIONS(89), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(89), + [anon_sym_u2203_BANG] = ACTIONS(85), + [anon_sym_QMARK_BANG] = ACTIONS(89), + [anon_sym_u2203] = ACTIONS(89), + [anon_sym_QMARK] = ACTIONS(89), + [anon_sym_u2200] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_u03bb] = ACTIONS(85), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_u00ac] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_u21ce] = ACTIONS(85), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(89), + [anon_sym_LT_EQ_GT] = ACTIONS(89), + [anon_sym_u21d4] = ACTIONS(85), + [anon_sym_EQ_EQ_GT] = ACTIONS(89), + [anon_sym_u21d2] = ACTIONS(85), + [anon_sym_BSLASH_SLASH] = ACTIONS(89), + [anon_sym_u2228] = ACTIONS(85), + [anon_sym_u2209] = ACTIONS(85), + [anon_sym_NOTIN] = ACTIONS(89), + [anon_sym_u2208] = ACTIONS(85), + [anon_sym_IN] = ACTIONS(89), + [anon_sym_u227c] = ACTIONS(85), + [anon_sym_LT_LT_EQ] = ACTIONS(89), + [anon_sym_PERMUTES] = ACTIONS(89), + [anon_sym_HAS_SIZE] = ACTIONS(89), + [anon_sym_u2282] = ACTIONS(85), + [anon_sym_PSUBSET] = ACTIONS(89), + [anon_sym_u2286] = ACTIONS(89), + [anon_sym_u2265] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_u2264] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_u2286u1d63] = ACTIONS(85), + [anon_sym_RSUBSET] = ACTIONS(89), + [anon_sym_u2260] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_DOLLAR] = ACTIONS(89), + [anon_sym_INSERT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_o] = ACTIONS(89), + [sym_hol_true] = ACTIONS(89), + [sym_hol_false] = ACTIONS(89), + [sym_hol_number] = ACTIONS(85), + [sym_hol_string] = ACTIONS(85), + [sym_hol_character] = ACTIONS(85), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [447] = { + [anon_sym_LPAREN] = ACTIONS(502), + [anon_sym_LBRACE] = ACTIONS(502), + [anon_sym_EQ] = ACTIONS(504), + [anon_sym_COLON] = ACTIONS(504), + [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_if] = ACTIONS(504), + [anon_sym_case] = ACTIONS(504), + [anon_sym_Proof] = ACTIONS(504), + [anon_sym_u2227] = ACTIONS(502), + [anon_sym_SLASH_BSLASH] = ACTIONS(504), + [anon_sym_COLON_COLON] = ACTIONS(504), + [sym__hol_alphanumeric] = ACTIONS(504), + [sym__hol_symbolic] = ACTIONS(504), + [anon_sym_OLEAST] = ACTIONS(504), + [anon_sym_LEAST] = ACTIONS(504), + [anon_sym_some] = ACTIONS(504), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(504), + [anon_sym_u2203_BANG] = ACTIONS(502), + [anon_sym_QMARK_BANG] = ACTIONS(504), + [anon_sym_u2203] = ACTIONS(504), + [anon_sym_QMARK] = ACTIONS(504), + [anon_sym_u2200] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(504), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_u03bb] = ACTIONS(502), + [anon_sym_BSLASH] = ACTIONS(504), + [anon_sym_DASH] = ACTIONS(504), + [anon_sym_u00ac] = ACTIONS(502), + [anon_sym_TILDE] = ACTIONS(502), + [anon_sym_u21ce] = ACTIONS(502), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(504), + [anon_sym_LT_EQ_GT] = ACTIONS(504), + [anon_sym_u21d4] = ACTIONS(502), + [anon_sym_EQ_EQ_GT] = ACTIONS(504), + [anon_sym_u21d2] = ACTIONS(502), + [anon_sym_BSLASH_SLASH] = ACTIONS(504), + [anon_sym_u2228] = ACTIONS(502), + [anon_sym_u2209] = ACTIONS(502), + [anon_sym_NOTIN] = ACTIONS(504), + [anon_sym_u2208] = ACTIONS(502), + [anon_sym_IN] = ACTIONS(504), + [anon_sym_u227c] = ACTIONS(502), + [anon_sym_LT_LT_EQ] = ACTIONS(504), + [anon_sym_PERMUTES] = ACTIONS(504), + [anon_sym_HAS_SIZE] = ACTIONS(504), + [anon_sym_u2282] = ACTIONS(502), + [anon_sym_PSUBSET] = ACTIONS(504), + [anon_sym_u2286] = ACTIONS(504), + [anon_sym_u2265] = ACTIONS(502), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_u2264] = ACTIONS(502), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_GT] = ACTIONS(504), + [anon_sym_LT] = ACTIONS(504), + [anon_sym_u2286u1d63] = ACTIONS(502), + [anon_sym_RSUBSET] = ACTIONS(504), + [anon_sym_u2260] = ACTIONS(502), + [anon_sym_LT_GT] = ACTIONS(504), + [anon_sym_DOLLAR] = ACTIONS(504), + [anon_sym_INSERT] = ACTIONS(504), + [anon_sym_PLUS] = ACTIONS(504), + [anon_sym_o] = ACTIONS(504), + [sym_hol_true] = ACTIONS(504), + [sym_hol_false] = ACTIONS(504), + [sym_hol_number] = ACTIONS(502), + [sym_hol_string] = ACTIONS(502), + [sym_hol_character] = ACTIONS(502), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [448] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(837), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_o] = ACTIONS(853), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [449] = { + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(829), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_then] = ACTIONS(524), + [anon_sym_case] = ACTIONS(524), + [anon_sym_u2227] = ACTIONS(833), + [anon_sym_SLASH_BSLASH] = ACTIONS(835), + [anon_sym_COLON_COLON] = ACTIONS(837), + [sym__hol_alphanumeric] = ACTIONS(524), + [sym__hol_symbolic] = ACTIONS(524), + [anon_sym_OLEAST] = ACTIONS(524), + [anon_sym_LEAST] = ACTIONS(524), + [anon_sym_some] = ACTIONS(524), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(524), + [anon_sym_u2203_BANG] = ACTIONS(522), + [anon_sym_QMARK_BANG] = ACTIONS(524), + [anon_sym_u2203] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), + [anon_sym_u2200] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_u03bb] = ACTIONS(522), + [anon_sym_BSLASH] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_u00ac] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_u21ce] = ACTIONS(889), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(891), + [anon_sym_LT_EQ_GT] = ACTIONS(891), + [anon_sym_u21d4] = ACTIONS(889), + [anon_sym_EQ_EQ_GT] = ACTIONS(893), + [anon_sym_u21d2] = ACTIONS(895), + [anon_sym_BSLASH_SLASH] = ACTIONS(839), + [anon_sym_u2228] = ACTIONS(841), + [anon_sym_u2209] = ACTIONS(843), + [anon_sym_NOTIN] = ACTIONS(845), + [anon_sym_u2208] = ACTIONS(843), + [anon_sym_IN] = ACTIONS(845), + [anon_sym_u227c] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(829), + [anon_sym_PERMUTES] = ACTIONS(829), + [anon_sym_HAS_SIZE] = ACTIONS(829), + [anon_sym_u2282] = ACTIONS(847), + [anon_sym_PSUBSET] = ACTIONS(829), + [anon_sym_u2286] = ACTIONS(829), + [anon_sym_u2265] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_u2264] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_LT] = ACTIONS(829), + [anon_sym_u2286u1d63] = ACTIONS(847), + [anon_sym_RSUBSET] = ACTIONS(829), + [anon_sym_u2260] = ACTIONS(847), + [anon_sym_LT_GT] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_INSERT] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_o] = ACTIONS(853), + [sym_hol_true] = ACTIONS(524), + [sym_hol_false] = ACTIONS(524), + [sym_hol_number] = ACTIONS(522), + [sym_hol_string] = ACTIONS(522), + [sym_hol_character] = ACTIONS(522), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [450] = { + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(512), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_if] = ACTIONS(512), + [anon_sym_case] = ACTIONS(512), + [anon_sym_of] = ACTIONS(512), + [anon_sym_u2227] = ACTIONS(510), + [anon_sym_SLASH_BSLASH] = ACTIONS(512), + [anon_sym_COLON_COLON] = ACTIONS(512), + [sym__hol_alphanumeric] = ACTIONS(512), + [sym__hol_symbolic] = ACTIONS(512), + [anon_sym_OLEAST] = ACTIONS(512), + [anon_sym_LEAST] = ACTIONS(512), + [anon_sym_some] = ACTIONS(512), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(512), + [anon_sym_u2203_BANG] = ACTIONS(510), + [anon_sym_QMARK_BANG] = ACTIONS(512), + [anon_sym_u2203] = ACTIONS(512), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_u2200] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(512), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_u03bb] = ACTIONS(510), + [anon_sym_BSLASH] = ACTIONS(512), + [anon_sym_DASH] = ACTIONS(512), + [anon_sym_u00ac] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(510), + [anon_sym_u21ce] = ACTIONS(510), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(512), + [anon_sym_LT_EQ_GT] = ACTIONS(512), + [anon_sym_u21d4] = ACTIONS(510), + [anon_sym_EQ_EQ_GT] = ACTIONS(512), + [anon_sym_u21d2] = ACTIONS(510), + [anon_sym_BSLASH_SLASH] = ACTIONS(512), + [anon_sym_u2228] = ACTIONS(510), + [anon_sym_u2209] = ACTIONS(510), + [anon_sym_NOTIN] = ACTIONS(512), + [anon_sym_u2208] = ACTIONS(510), + [anon_sym_IN] = ACTIONS(512), + [anon_sym_u227c] = ACTIONS(510), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_PERMUTES] = ACTIONS(512), + [anon_sym_HAS_SIZE] = ACTIONS(512), + [anon_sym_u2282] = ACTIONS(510), + [anon_sym_PSUBSET] = ACTIONS(512), + [anon_sym_u2286] = ACTIONS(512), + [anon_sym_u2265] = ACTIONS(510), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_u2264] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(512), + [anon_sym_u2286u1d63] = ACTIONS(510), + [anon_sym_RSUBSET] = ACTIONS(512), + [anon_sym_u2260] = ACTIONS(510), + [anon_sym_LT_GT] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(512), + [anon_sym_INSERT] = ACTIONS(512), + [anon_sym_PLUS] = ACTIONS(512), + [anon_sym_o] = ACTIONS(512), + [sym_hol_true] = ACTIONS(512), + [sym_hol_false] = ACTIONS(512), + [sym_hol_number] = ACTIONS(510), + [sym_hol_string] = ACTIONS(510), + [sym_hol_character] = ACTIONS(510), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [451] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(829), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(833), + [anon_sym_SLASH_BSLASH] = ACTIONS(835), + [anon_sym_COLON_COLON] = ACTIONS(837), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(893), + [anon_sym_u21d2] = ACTIONS(895), + [anon_sym_BSLASH_SLASH] = ACTIONS(839), + [anon_sym_u2228] = ACTIONS(841), + [anon_sym_u2209] = ACTIONS(843), + [anon_sym_NOTIN] = ACTIONS(845), + [anon_sym_u2208] = ACTIONS(843), + [anon_sym_IN] = ACTIONS(845), + [anon_sym_u227c] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(829), + [anon_sym_PERMUTES] = ACTIONS(829), + [anon_sym_HAS_SIZE] = ACTIONS(829), + [anon_sym_u2282] = ACTIONS(847), + [anon_sym_PSUBSET] = ACTIONS(829), + [anon_sym_u2286] = ACTIONS(829), + [anon_sym_u2265] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_u2264] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_LT] = ACTIONS(829), + [anon_sym_u2286u1d63] = ACTIONS(847), + [anon_sym_RSUBSET] = ACTIONS(829), + [anon_sym_u2260] = ACTIONS(847), + [anon_sym_LT_GT] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_INSERT] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_o] = ACTIONS(853), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [452] = { + [anon_sym_LPAREN] = ACTIONS(506), + [anon_sym_LBRACE] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(508), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(506), + [anon_sym_if] = ACTIONS(508), + [anon_sym_then] = ACTIONS(508), + [anon_sym_case] = ACTIONS(508), + [anon_sym_u2227] = ACTIONS(506), + [anon_sym_SLASH_BSLASH] = ACTIONS(508), + [anon_sym_COLON_COLON] = ACTIONS(508), + [sym__hol_alphanumeric] = ACTIONS(508), + [sym__hol_symbolic] = ACTIONS(508), + [anon_sym_OLEAST] = ACTIONS(508), + [anon_sym_LEAST] = ACTIONS(508), + [anon_sym_some] = ACTIONS(508), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(508), + [anon_sym_u2203_BANG] = ACTIONS(506), + [anon_sym_QMARK_BANG] = ACTIONS(508), + [anon_sym_u2203] = ACTIONS(508), + [anon_sym_QMARK] = ACTIONS(508), + [anon_sym_u2200] = ACTIONS(506), + [anon_sym_BANG] = ACTIONS(508), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_u03bb] = ACTIONS(506), + [anon_sym_BSLASH] = ACTIONS(508), + [anon_sym_DASH] = ACTIONS(508), + [anon_sym_u00ac] = ACTIONS(506), + [anon_sym_TILDE] = ACTIONS(506), + [anon_sym_u21ce] = ACTIONS(506), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(508), + [anon_sym_LT_EQ_GT] = ACTIONS(508), + [anon_sym_u21d4] = ACTIONS(506), + [anon_sym_EQ_EQ_GT] = ACTIONS(508), + [anon_sym_u21d2] = ACTIONS(506), + [anon_sym_BSLASH_SLASH] = ACTIONS(508), + [anon_sym_u2228] = ACTIONS(506), + [anon_sym_u2209] = ACTIONS(506), + [anon_sym_NOTIN] = ACTIONS(508), + [anon_sym_u2208] = ACTIONS(506), + [anon_sym_IN] = ACTIONS(508), + [anon_sym_u227c] = ACTIONS(506), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_PERMUTES] = ACTIONS(508), + [anon_sym_HAS_SIZE] = ACTIONS(508), + [anon_sym_u2282] = ACTIONS(506), + [anon_sym_PSUBSET] = ACTIONS(508), + [anon_sym_u2286] = ACTIONS(508), + [anon_sym_u2265] = ACTIONS(506), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_u2264] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(508), + [anon_sym_u2286u1d63] = ACTIONS(506), + [anon_sym_RSUBSET] = ACTIONS(508), + [anon_sym_u2260] = ACTIONS(506), + [anon_sym_LT_GT] = ACTIONS(508), + [anon_sym_DOLLAR] = ACTIONS(508), + [anon_sym_INSERT] = ACTIONS(508), + [anon_sym_PLUS] = ACTIONS(508), + [anon_sym_o] = ACTIONS(508), + [sym_hol_true] = ACTIONS(508), + [sym_hol_false] = ACTIONS(508), + [sym_hol_number] = ACTIONS(506), + [sym_hol_string] = ACTIONS(506), + [sym_hol_character] = ACTIONS(506), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [453] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(905), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_INSERT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_o] = ACTIONS(929), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [454] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(829), + [anon_sym_COLON] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_then] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(833), + [anon_sym_SLASH_BSLASH] = ACTIONS(835), + [anon_sym_COLON_COLON] = ACTIONS(837), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(839), + [anon_sym_u2228] = ACTIONS(841), + [anon_sym_u2209] = ACTIONS(843), + [anon_sym_NOTIN] = ACTIONS(845), + [anon_sym_u2208] = ACTIONS(843), + [anon_sym_IN] = ACTIONS(845), + [anon_sym_u227c] = ACTIONS(847), + [anon_sym_LT_LT_EQ] = ACTIONS(829), + [anon_sym_PERMUTES] = ACTIONS(829), + [anon_sym_HAS_SIZE] = ACTIONS(829), + [anon_sym_u2282] = ACTIONS(847), + [anon_sym_PSUBSET] = ACTIONS(829), + [anon_sym_u2286] = ACTIONS(829), + [anon_sym_u2265] = ACTIONS(847), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_u2264] = ACTIONS(847), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_LT] = ACTIONS(829), + [anon_sym_u2286u1d63] = ACTIONS(847), + [anon_sym_RSUBSET] = ACTIONS(829), + [anon_sym_u2260] = ACTIONS(847), + [anon_sym_LT_GT] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_INSERT] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(851), + [anon_sym_o] = ACTIONS(853), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [455] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(901), + [anon_sym_SLASH_BSLASH] = ACTIONS(903), + [anon_sym_COLON_COLON] = ACTIONS(905), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(919), + [anon_sym_NOTIN] = ACTIONS(921), + [anon_sym_u2208] = ACTIONS(919), + [anon_sym_IN] = ACTIONS(921), + [anon_sym_u227c] = ACTIONS(923), + [anon_sym_LT_LT_EQ] = ACTIONS(897), + [anon_sym_PERMUTES] = ACTIONS(897), + [anon_sym_HAS_SIZE] = ACTIONS(897), + [anon_sym_u2282] = ACTIONS(923), + [anon_sym_PSUBSET] = ACTIONS(897), + [anon_sym_u2286] = ACTIONS(897), + [anon_sym_u2265] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_u2264] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_u2286u1d63] = ACTIONS(923), + [anon_sym_RSUBSET] = ACTIONS(897), + [anon_sym_u2260] = ACTIONS(923), + [anon_sym_LT_GT] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_INSERT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_o] = ACTIONS(929), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [456] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(905), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_o] = ACTIONS(929), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [457] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(901), + [anon_sym_SLASH_BSLASH] = ACTIONS(903), + [anon_sym_COLON_COLON] = ACTIONS(905), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(911), + [anon_sym_u21d2] = ACTIONS(913), + [anon_sym_BSLASH_SLASH] = ACTIONS(915), + [anon_sym_u2228] = ACTIONS(917), + [anon_sym_u2209] = ACTIONS(919), + [anon_sym_NOTIN] = ACTIONS(921), + [anon_sym_u2208] = ACTIONS(919), + [anon_sym_IN] = ACTIONS(921), + [anon_sym_u227c] = ACTIONS(923), + [anon_sym_LT_LT_EQ] = ACTIONS(897), + [anon_sym_PERMUTES] = ACTIONS(897), + [anon_sym_HAS_SIZE] = ACTIONS(897), + [anon_sym_u2282] = ACTIONS(923), + [anon_sym_PSUBSET] = ACTIONS(897), + [anon_sym_u2286] = ACTIONS(897), + [anon_sym_u2265] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_u2264] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_u2286u1d63] = ACTIONS(923), + [anon_sym_RSUBSET] = ACTIONS(897), + [anon_sym_u2260] = ACTIONS(923), + [anon_sym_LT_GT] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_INSERT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_o] = ACTIONS(929), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [458] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(901), + [anon_sym_SLASH_BSLASH] = ACTIONS(903), + [anon_sym_COLON_COLON] = ACTIONS(905), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(915), + [anon_sym_u2228] = ACTIONS(917), + [anon_sym_u2209] = ACTIONS(919), + [anon_sym_NOTIN] = ACTIONS(921), + [anon_sym_u2208] = ACTIONS(919), + [anon_sym_IN] = ACTIONS(921), + [anon_sym_u227c] = ACTIONS(923), + [anon_sym_LT_LT_EQ] = ACTIONS(897), + [anon_sym_PERMUTES] = ACTIONS(897), + [anon_sym_HAS_SIZE] = ACTIONS(897), + [anon_sym_u2282] = ACTIONS(923), + [anon_sym_PSUBSET] = ACTIONS(897), + [anon_sym_u2286] = ACTIONS(897), + [anon_sym_u2265] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_u2264] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_u2286u1d63] = ACTIONS(923), + [anon_sym_RSUBSET] = ACTIONS(897), + [anon_sym_u2260] = ACTIONS(923), + [anon_sym_LT_GT] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_INSERT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_o] = ACTIONS(929), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [459] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(901), + [anon_sym_SLASH_BSLASH] = ACTIONS(903), + [anon_sym_COLON_COLON] = ACTIONS(905), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(915), + [anon_sym_u2228] = ACTIONS(917), + [anon_sym_u2209] = ACTIONS(919), + [anon_sym_NOTIN] = ACTIONS(921), + [anon_sym_u2208] = ACTIONS(919), + [anon_sym_IN] = ACTIONS(921), + [anon_sym_u227c] = ACTIONS(923), + [anon_sym_LT_LT_EQ] = ACTIONS(897), + [anon_sym_PERMUTES] = ACTIONS(897), + [anon_sym_HAS_SIZE] = ACTIONS(897), + [anon_sym_u2282] = ACTIONS(923), + [anon_sym_PSUBSET] = ACTIONS(897), + [anon_sym_u2286] = ACTIONS(897), + [anon_sym_u2265] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_u2264] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_u2286u1d63] = ACTIONS(923), + [anon_sym_RSUBSET] = ACTIONS(897), + [anon_sym_u2260] = ACTIONS(923), + [anon_sym_LT_GT] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_INSERT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_o] = ACTIONS(929), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [460] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(905), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(923), + [anon_sym_LT_LT_EQ] = ACTIONS(897), + [anon_sym_PERMUTES] = ACTIONS(897), + [anon_sym_HAS_SIZE] = ACTIONS(897), + [anon_sym_u2282] = ACTIONS(923), + [anon_sym_PSUBSET] = ACTIONS(897), + [anon_sym_u2286] = ACTIONS(897), + [anon_sym_u2265] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_u2264] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_u2286u1d63] = ACTIONS(923), + [anon_sym_RSUBSET] = ACTIONS(897), + [anon_sym_u2260] = ACTIONS(923), + [anon_sym_LT_GT] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_INSERT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_o] = ACTIONS(929), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [461] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(905), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_INSERT] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_o] = ACTIONS(929), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [462] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(929), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [463] = { + [anon_sym_LPAREN] = ACTIONS(518), + [anon_sym_LBRACE] = ACTIONS(518), + [anon_sym_EQ] = ACTIONS(520), + [anon_sym_COLON] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(518), + [anon_sym_if] = ACTIONS(520), + [anon_sym_else] = ACTIONS(520), + [anon_sym_case] = ACTIONS(520), + [anon_sym_u2227] = ACTIONS(518), + [anon_sym_SLASH_BSLASH] = ACTIONS(520), + [anon_sym_COLON_COLON] = ACTIONS(520), + [sym__hol_alphanumeric] = ACTIONS(520), + [sym__hol_symbolic] = ACTIONS(520), + [anon_sym_OLEAST] = ACTIONS(520), + [anon_sym_LEAST] = ACTIONS(520), + [anon_sym_some] = ACTIONS(520), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(520), + [anon_sym_u2203_BANG] = ACTIONS(518), + [anon_sym_QMARK_BANG] = ACTIONS(520), + [anon_sym_u2203] = ACTIONS(520), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_u2200] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(520), + [anon_sym_AT] = ACTIONS(520), + [anon_sym_u03bb] = ACTIONS(518), + [anon_sym_BSLASH] = ACTIONS(520), + [anon_sym_DASH] = ACTIONS(520), + [anon_sym_u00ac] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(518), + [anon_sym_u21ce] = ACTIONS(518), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(520), + [anon_sym_LT_EQ_GT] = ACTIONS(520), + [anon_sym_u21d4] = ACTIONS(518), + [anon_sym_EQ_EQ_GT] = ACTIONS(520), + [anon_sym_u21d2] = ACTIONS(518), + [anon_sym_BSLASH_SLASH] = ACTIONS(520), + [anon_sym_u2228] = ACTIONS(518), + [anon_sym_u2209] = ACTIONS(518), + [anon_sym_NOTIN] = ACTIONS(520), + [anon_sym_u2208] = ACTIONS(518), + [anon_sym_IN] = ACTIONS(520), + [anon_sym_u227c] = ACTIONS(518), + [anon_sym_LT_LT_EQ] = ACTIONS(520), + [anon_sym_PERMUTES] = ACTIONS(520), + [anon_sym_HAS_SIZE] = ACTIONS(520), + [anon_sym_u2282] = ACTIONS(518), + [anon_sym_PSUBSET] = ACTIONS(520), + [anon_sym_u2286] = ACTIONS(520), + [anon_sym_u2265] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(520), + [anon_sym_u2264] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(520), + [anon_sym_GT] = ACTIONS(520), + [anon_sym_LT] = ACTIONS(520), + [anon_sym_u2286u1d63] = ACTIONS(518), + [anon_sym_RSUBSET] = ACTIONS(520), + [anon_sym_u2260] = ACTIONS(518), + [anon_sym_LT_GT] = ACTIONS(520), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_INSERT] = ACTIONS(520), + [anon_sym_PLUS] = ACTIONS(520), + [anon_sym_o] = ACTIONS(929), + [sym_hol_true] = ACTIONS(520), + [sym_hol_false] = ACTIONS(520), + [sym_hol_number] = ACTIONS(518), + [sym_hol_string] = ACTIONS(518), + [sym_hol_character] = ACTIONS(518), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [464] = { + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACE] = ACTIONS(482), + [anon_sym_EQ] = ACTIONS(484), + [anon_sym_COLON] = ACTIONS(484), + [anon_sym_LBRACK] = ACTIONS(482), + [anon_sym_if] = ACTIONS(484), + [anon_sym_else] = ACTIONS(484), + [anon_sym_case] = ACTIONS(484), + [anon_sym_u2227] = ACTIONS(482), + [anon_sym_SLASH_BSLASH] = ACTIONS(484), + [anon_sym_COLON_COLON] = ACTIONS(484), + [sym__hol_alphanumeric] = ACTIONS(484), + [sym__hol_symbolic] = ACTIONS(484), + [anon_sym_OLEAST] = ACTIONS(484), + [anon_sym_LEAST] = ACTIONS(484), + [anon_sym_some] = ACTIONS(484), + [anon_sym_QMARK_BANG_BANG] = ACTIONS(484), + [anon_sym_u2203_BANG] = ACTIONS(482), + [anon_sym_QMARK_BANG] = ACTIONS(484), + [anon_sym_u2203] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(484), + [anon_sym_u2200] = ACTIONS(482), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_u03bb] = ACTIONS(482), + [anon_sym_BSLASH] = ACTIONS(484), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_u00ac] = ACTIONS(482), + [anon_sym_TILDE] = ACTIONS(482), + [anon_sym_u21ce] = ACTIONS(482), + [anon_sym_LT_EQ_SLASH_EQ_GT] = ACTIONS(484), + [anon_sym_LT_EQ_GT] = ACTIONS(484), + [anon_sym_u21d4] = ACTIONS(482), + [anon_sym_EQ_EQ_GT] = ACTIONS(484), + [anon_sym_u21d2] = ACTIONS(482), + [anon_sym_BSLASH_SLASH] = ACTIONS(484), + [anon_sym_u2228] = ACTIONS(482), + [anon_sym_u2209] = ACTIONS(482), + [anon_sym_NOTIN] = ACTIONS(484), + [anon_sym_u2208] = ACTIONS(482), + [anon_sym_IN] = ACTIONS(484), + [anon_sym_u227c] = ACTIONS(482), + [anon_sym_LT_LT_EQ] = ACTIONS(484), + [anon_sym_PERMUTES] = ACTIONS(484), + [anon_sym_HAS_SIZE] = ACTIONS(484), + [anon_sym_u2282] = ACTIONS(482), + [anon_sym_PSUBSET] = ACTIONS(484), + [anon_sym_u2286] = ACTIONS(484), + [anon_sym_u2265] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(484), + [anon_sym_u2264] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(484), + [anon_sym_GT] = ACTIONS(484), + [anon_sym_LT] = ACTIONS(484), + [anon_sym_u2286u1d63] = ACTIONS(482), + [anon_sym_RSUBSET] = ACTIONS(484), + [anon_sym_u2260] = ACTIONS(482), + [anon_sym_LT_GT] = ACTIONS(484), + [anon_sym_DOLLAR] = ACTIONS(484), + [anon_sym_INSERT] = ACTIONS(484), + [anon_sym_PLUS] = ACTIONS(484), + [anon_sym_o] = ACTIONS(484), + [sym_hol_true] = ACTIONS(484), + [sym_hol_false] = ACTIONS(484), + [sym_hol_number] = ACTIONS(482), + [sym_hol_string] = ACTIONS(482), + [sym_hol_character] = ACTIONS(482), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [465] = { + [sym__scon] = STATE(4233), + [sym_vid] = STATE(4229), + [sym_longvid] = STATE(4234), + [sym__atexp] = STATE(466), + [sym_scon_exp] = STATE(466), + [sym_vid_exp] = STATE(466), + [sym_record_exp] = STATE(466), + [sym_recordsel_exp] = STATE(466), + [sym_unit_exp] = STATE(466), + [sym_tuple_exp] = STATE(466), + [sym_list_exp] = STATE(466), + [sym_vec_exp] = STATE(466), + [sym_sequence_exp] = STATE(466), + [sym_let_exp] = STATE(466), + [sym_paren_exp] = STATE(466), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(466), + [sym_quoted_type] = STATE(466), + [sym_backquote] = STATE(466), + [aux_sym_longvid_repeat1] = STATE(19087), + [aux_sym_app_exp_repeat1] = STATE(466), + [ts_builtin_sym_end] = ACTIONS(965), + [sym_integer_scon] = ACTIONS(967), + [sym_word_scon] = ACTIONS(969), + [sym_real_scon] = ACTIONS(969), + [sym_string_scon] = ACTIONS(969), + [sym_char_scon] = ACTIONS(969), + [sym__alphaAlphaNumeric_ident] = ACTIONS(971), + [sym__symbolic_ident] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_op] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_POUND] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_POUND_LBRACK] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_let] = ACTIONS(989), + [anon_sym_andalso] = ACTIONS(981), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_handle] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_val] = ACTIONS(981), + [anon_sym_and] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_datatype] = ACTIONS(981), + [anon_sym_abstype] = ACTIONS(981), + [anon_sym_exception] = ACTIONS(981), + [anon_sym_local] = ACTIONS(981), + [anon_sym_open] = ACTIONS(981), + [anon_sym_infix] = ACTIONS(981), + [anon_sym_infixr] = ACTIONS(981), + [anon_sym_nonfix] = ACTIONS(981), + [anon_sym_structure] = ACTIONS(981), + [anon_sym_signature] = ACTIONS(981), + [anon_sym_functor] = ACTIONS(981), + [anon_sym_u201c] = ACTIONS(991), + [anon_sym_u2018] = ACTIONS(993), + [anon_sym_BQUOTE] = ACTIONS(995), + [anon_sym_Definition] = ACTIONS(981), + [anon_sym_Datatype_COLON] = ACTIONS(965), + [anon_sym_Theorem] = ACTIONS(981), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [466] = { + [sym__scon] = STATE(4233), + [sym_vid] = STATE(4229), + [sym_longvid] = STATE(4234), + [sym__atexp] = STATE(467), + [sym_scon_exp] = STATE(467), + [sym_vid_exp] = STATE(467), + [sym_record_exp] = STATE(467), + [sym_recordsel_exp] = STATE(467), + [sym_unit_exp] = STATE(467), + [sym_tuple_exp] = STATE(467), + [sym_list_exp] = STATE(467), + [sym_vec_exp] = STATE(467), + [sym_sequence_exp] = STATE(467), + [sym_let_exp] = STATE(467), + [sym_paren_exp] = STATE(467), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(467), + [sym_quoted_type] = STATE(467), + [sym_backquote] = STATE(467), + [aux_sym_longvid_repeat1] = STATE(19087), + [aux_sym_app_exp_repeat1] = STATE(467), + [ts_builtin_sym_end] = ACTIONS(997), + [sym_integer_scon] = ACTIONS(967), + [sym_word_scon] = ACTIONS(969), + [sym_real_scon] = ACTIONS(969), + [sym_string_scon] = ACTIONS(969), + [sym_char_scon] = ACTIONS(969), + [sym__alphaAlphaNumeric_ident] = ACTIONS(971), + [sym__symbolic_ident] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_op] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(983), + [anon_sym_LBRACK] = ACTIONS(985), + [anon_sym_POUND_LBRACK] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(997), + [anon_sym_let] = ACTIONS(989), + [anon_sym_andalso] = ACTIONS(999), + [anon_sym_orelse] = ACTIONS(999), + [anon_sym_handle] = ACTIONS(999), + [anon_sym_else] = ACTIONS(999), + [anon_sym_do] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_val] = ACTIONS(999), + [anon_sym_and] = ACTIONS(999), + [anon_sym_fun] = ACTIONS(999), + [anon_sym_type] = ACTIONS(999), + [anon_sym_datatype] = ACTIONS(999), + [anon_sym_abstype] = ACTIONS(999), + [anon_sym_exception] = ACTIONS(999), + [anon_sym_local] = ACTIONS(999), + [anon_sym_open] = ACTIONS(999), + [anon_sym_infix] = ACTIONS(999), + [anon_sym_infixr] = ACTIONS(999), + [anon_sym_nonfix] = ACTIONS(999), + [anon_sym_structure] = ACTIONS(999), + [anon_sym_signature] = ACTIONS(999), + [anon_sym_functor] = ACTIONS(999), + [anon_sym_u201c] = ACTIONS(991), + [anon_sym_u2018] = ACTIONS(993), + [anon_sym_BQUOTE] = ACTIONS(995), + [anon_sym_Definition] = ACTIONS(999), + [anon_sym_Datatype_COLON] = ACTIONS(997), + [anon_sym_Theorem] = ACTIONS(999), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [467] = { + [sym__scon] = STATE(4233), + [sym_vid] = STATE(4229), + [sym_longvid] = STATE(4234), + [sym__atexp] = STATE(467), + [sym_scon_exp] = STATE(467), + [sym_vid_exp] = STATE(467), + [sym_record_exp] = STATE(467), + [sym_recordsel_exp] = STATE(467), + [sym_unit_exp] = STATE(467), + [sym_tuple_exp] = STATE(467), + [sym_list_exp] = STATE(467), + [sym_vec_exp] = STATE(467), + [sym_sequence_exp] = STATE(467), + [sym_let_exp] = STATE(467), + [sym_paren_exp] = STATE(467), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(467), + [sym_quoted_type] = STATE(467), + [sym_backquote] = STATE(467), + [aux_sym_longvid_repeat1] = STATE(19087), + [aux_sym_app_exp_repeat1] = STATE(467), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_integer_scon] = ACTIONS(1003), + [sym_word_scon] = ACTIONS(1006), + [sym_real_scon] = ACTIONS(1006), + [sym_string_scon] = ACTIONS(1006), + [sym_char_scon] = ACTIONS(1006), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1009), + [sym__symbolic_ident] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1015), + [anon_sym_op] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_POUND_LBRACK] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1035), + [anon_sym_andalso] = ACTIONS(1024), + [anon_sym_orelse] = ACTIONS(1024), + [anon_sym_handle] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_val] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_fun] = ACTIONS(1024), + [anon_sym_type] = ACTIONS(1024), + [anon_sym_datatype] = ACTIONS(1024), + [anon_sym_abstype] = ACTIONS(1024), + [anon_sym_exception] = ACTIONS(1024), + [anon_sym_local] = ACTIONS(1024), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_infix] = ACTIONS(1024), + [anon_sym_infixr] = ACTIONS(1024), + [anon_sym_nonfix] = ACTIONS(1024), + [anon_sym_structure] = ACTIONS(1024), + [anon_sym_signature] = ACTIONS(1024), + [anon_sym_functor] = ACTIONS(1024), + [anon_sym_u201c] = ACTIONS(1038), + [anon_sym_u2018] = ACTIONS(1041), + [anon_sym_BQUOTE] = ACTIONS(1044), + [anon_sym_Definition] = ACTIONS(1024), + [anon_sym_Datatype_COLON] = ACTIONS(1001), + [anon_sym_Theorem] = ACTIONS(1024), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [468] = { + [sym__scon] = STATE(4296), + [sym_vid] = STATE(4481), + [sym_longvid] = STATE(4299), + [sym__atexp] = STATE(468), + [sym_scon_exp] = STATE(468), + [sym_vid_exp] = STATE(468), + [sym_record_exp] = STATE(468), + [sym_recordsel_exp] = STATE(468), + [sym_unit_exp] = STATE(468), + [sym_tuple_exp] = STATE(468), + [sym_list_exp] = STATE(468), + [sym_vec_exp] = STATE(468), + [sym_sequence_exp] = STATE(468), + [sym_let_exp] = STATE(468), + [sym_paren_exp] = STATE(468), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(468), + [sym_quoted_type] = STATE(468), + [sym_backquote] = STATE(468), + [aux_sym_longvid_repeat1] = STATE(18960), + [aux_sym_app_exp_repeat1] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_integer_scon] = ACTIONS(1047), + [sym_word_scon] = ACTIONS(1050), + [sym_real_scon] = ACTIONS(1050), + [sym_string_scon] = ACTIONS(1050), + [sym_char_scon] = ACTIONS(1050), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1053), + [sym__symbolic_ident] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1059), + [anon_sym_op] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1071), + [anon_sym_POUND_LBRACK] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1077), + [anon_sym_andalso] = ACTIONS(1024), + [anon_sym_orelse] = ACTIONS(1024), + [anon_sym_handle] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_val] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_fun] = ACTIONS(1024), + [anon_sym_type] = ACTIONS(1024), + [anon_sym_datatype] = ACTIONS(1024), + [anon_sym_abstype] = ACTIONS(1024), + [anon_sym_exception] = ACTIONS(1024), + [anon_sym_local] = ACTIONS(1024), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_infix] = ACTIONS(1024), + [anon_sym_infixr] = ACTIONS(1024), + [anon_sym_nonfix] = ACTIONS(1024), + [anon_sym_structure] = ACTIONS(1024), + [anon_sym_signature] = ACTIONS(1024), + [anon_sym_functor] = ACTIONS(1024), + [anon_sym_u201c] = ACTIONS(1080), + [anon_sym_u2018] = ACTIONS(1083), + [anon_sym_BQUOTE] = ACTIONS(1086), + [anon_sym_Definition] = ACTIONS(1024), + [anon_sym_Datatype_COLON] = ACTIONS(1001), + [anon_sym_Theorem] = ACTIONS(1024), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [469] = { + [sym__scon] = STATE(4296), + [sym_vid] = STATE(4481), + [sym_longvid] = STATE(4299), + [sym__atexp] = STATE(468), + [sym_scon_exp] = STATE(468), + [sym_vid_exp] = STATE(468), + [sym_record_exp] = STATE(468), + [sym_recordsel_exp] = STATE(468), + [sym_unit_exp] = STATE(468), + [sym_tuple_exp] = STATE(468), + [sym_list_exp] = STATE(468), + [sym_vec_exp] = STATE(468), + [sym_sequence_exp] = STATE(468), + [sym_let_exp] = STATE(468), + [sym_paren_exp] = STATE(468), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(468), + [sym_quoted_type] = STATE(468), + [sym_backquote] = STATE(468), + [aux_sym_longvid_repeat1] = STATE(18960), + [aux_sym_app_exp_repeat1] = STATE(468), + [ts_builtin_sym_end] = ACTIONS(997), + [sym_integer_scon] = ACTIONS(1089), + [sym_word_scon] = ACTIONS(1091), + [sym_real_scon] = ACTIONS(1091), + [sym_string_scon] = ACTIONS(1091), + [sym_char_scon] = ACTIONS(1091), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1093), + [sym__symbolic_ident] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_op] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_POUND_LBRACK] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(997), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_andalso] = ACTIONS(999), + [anon_sym_orelse] = ACTIONS(999), + [anon_sym_handle] = ACTIONS(999), + [anon_sym_do] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_val] = ACTIONS(999), + [anon_sym_and] = ACTIONS(999), + [anon_sym_fun] = ACTIONS(999), + [anon_sym_type] = ACTIONS(999), + [anon_sym_datatype] = ACTIONS(999), + [anon_sym_abstype] = ACTIONS(999), + [anon_sym_exception] = ACTIONS(999), + [anon_sym_local] = ACTIONS(999), + [anon_sym_open] = ACTIONS(999), + [anon_sym_infix] = ACTIONS(999), + [anon_sym_infixr] = ACTIONS(999), + [anon_sym_nonfix] = ACTIONS(999), + [anon_sym_structure] = ACTIONS(999), + [anon_sym_signature] = ACTIONS(999), + [anon_sym_functor] = ACTIONS(999), + [anon_sym_u201c] = ACTIONS(1111), + [anon_sym_u2018] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1115), + [anon_sym_Definition] = ACTIONS(999), + [anon_sym_Datatype_COLON] = ACTIONS(997), + [anon_sym_Theorem] = ACTIONS(999), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [470] = { + [sym__scon] = STATE(4303), + [sym_vid] = STATE(4281), + [sym_longvid] = STATE(4304), + [sym__atexp] = STATE(475), + [sym_scon_exp] = STATE(475), + [sym_vid_exp] = STATE(475), + [sym_record_exp] = STATE(475), + [sym_recordsel_exp] = STATE(475), + [sym_unit_exp] = STATE(475), + [sym_tuple_exp] = STATE(475), + [sym_list_exp] = STATE(475), + [sym_vec_exp] = STATE(475), + [sym_sequence_exp] = STATE(475), + [sym_let_exp] = STATE(475), + [sym_paren_exp] = STATE(475), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(475), + [sym_quoted_type] = STATE(475), + [sym_backquote] = STATE(475), + [aux_sym_longvid_repeat1] = STATE(19088), + [aux_sym_app_exp_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(997), + [sym_integer_scon] = ACTIONS(1117), + [sym_word_scon] = ACTIONS(1119), + [sym_real_scon] = ACTIONS(1119), + [sym_string_scon] = ACTIONS(1119), + [sym_char_scon] = ACTIONS(1119), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1121), + [sym__symbolic_ident] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_op] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1133), + [anon_sym_POUND_LBRACK] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(997), + [anon_sym_let] = ACTIONS(1137), + [anon_sym_andalso] = ACTIONS(999), + [anon_sym_orelse] = ACTIONS(999), + [anon_sym_handle] = ACTIONS(999), + [anon_sym_else] = ACTIONS(999), + [anon_sym_do] = ACTIONS(999), + [anon_sym_val] = ACTIONS(999), + [anon_sym_and] = ACTIONS(999), + [anon_sym_fun] = ACTIONS(999), + [anon_sym_type] = ACTIONS(999), + [anon_sym_datatype] = ACTIONS(999), + [anon_sym_abstype] = ACTIONS(999), + [anon_sym_exception] = ACTIONS(999), + [anon_sym_local] = ACTIONS(999), + [anon_sym_open] = ACTIONS(999), + [anon_sym_infix] = ACTIONS(999), + [anon_sym_infixr] = ACTIONS(999), + [anon_sym_nonfix] = ACTIONS(999), + [anon_sym_structure] = ACTIONS(999), + [anon_sym_signature] = ACTIONS(999), + [anon_sym_functor] = ACTIONS(999), + [anon_sym_u201c] = ACTIONS(1139), + [anon_sym_u2018] = ACTIONS(1141), + [anon_sym_BQUOTE] = ACTIONS(1143), + [anon_sym_Definition] = ACTIONS(999), + [anon_sym_Datatype_COLON] = ACTIONS(997), + [anon_sym_Theorem] = ACTIONS(999), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [471] = { + [sym__scon] = STATE(4303), + [sym_vid] = STATE(4281), + [sym_longvid] = STATE(4304), + [sym__atexp] = STATE(470), + [sym_scon_exp] = STATE(470), + [sym_vid_exp] = STATE(470), + [sym_record_exp] = STATE(470), + [sym_recordsel_exp] = STATE(470), + [sym_unit_exp] = STATE(470), + [sym_tuple_exp] = STATE(470), + [sym_list_exp] = STATE(470), + [sym_vec_exp] = STATE(470), + [sym_sequence_exp] = STATE(470), + [sym_let_exp] = STATE(470), + [sym_paren_exp] = STATE(470), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(470), + [sym_quoted_type] = STATE(470), + [sym_backquote] = STATE(470), + [aux_sym_longvid_repeat1] = STATE(19088), + [aux_sym_app_exp_repeat1] = STATE(470), + [ts_builtin_sym_end] = ACTIONS(965), + [sym_integer_scon] = ACTIONS(1117), + [sym_word_scon] = ACTIONS(1119), + [sym_real_scon] = ACTIONS(1119), + [sym_string_scon] = ACTIONS(1119), + [sym_char_scon] = ACTIONS(1119), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1121), + [sym__symbolic_ident] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(1125), + [anon_sym_op] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1129), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_POUND] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1133), + [anon_sym_POUND_LBRACK] = ACTIONS(1135), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_let] = ACTIONS(1137), + [anon_sym_andalso] = ACTIONS(981), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_handle] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_val] = ACTIONS(981), + [anon_sym_and] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_datatype] = ACTIONS(981), + [anon_sym_abstype] = ACTIONS(981), + [anon_sym_exception] = ACTIONS(981), + [anon_sym_local] = ACTIONS(981), + [anon_sym_open] = ACTIONS(981), + [anon_sym_infix] = ACTIONS(981), + [anon_sym_infixr] = ACTIONS(981), + [anon_sym_nonfix] = ACTIONS(981), + [anon_sym_structure] = ACTIONS(981), + [anon_sym_signature] = ACTIONS(981), + [anon_sym_functor] = ACTIONS(981), + [anon_sym_u201c] = ACTIONS(1139), + [anon_sym_u2018] = ACTIONS(1141), + [anon_sym_BQUOTE] = ACTIONS(1143), + [anon_sym_Definition] = ACTIONS(981), + [anon_sym_Datatype_COLON] = ACTIONS(965), + [anon_sym_Theorem] = ACTIONS(981), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [472] = { + [sym__scon] = STATE(4294), + [sym_vid] = STATE(4558), + [sym_longvid] = STATE(4295), + [sym__atexp] = STATE(473), + [sym_scon_exp] = STATE(473), + [sym_vid_exp] = STATE(473), + [sym_record_exp] = STATE(473), + [sym_recordsel_exp] = STATE(473), + [sym_unit_exp] = STATE(473), + [sym_tuple_exp] = STATE(473), + [sym_list_exp] = STATE(473), + [sym_vec_exp] = STATE(473), + [sym_sequence_exp] = STATE(473), + [sym_let_exp] = STATE(473), + [sym_paren_exp] = STATE(473), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(473), + [sym_quoted_type] = STATE(473), + [sym_backquote] = STATE(473), + [aux_sym_longvid_repeat1] = STATE(19170), + [aux_sym_app_exp_repeat1] = STATE(473), + [ts_builtin_sym_end] = ACTIONS(965), + [sym_integer_scon] = ACTIONS(1145), + [sym_word_scon] = ACTIONS(1147), + [sym_real_scon] = ACTIONS(1147), + [sym_string_scon] = ACTIONS(1147), + [sym_char_scon] = ACTIONS(1147), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1149), + [sym__symbolic_ident] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_op] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_POUND] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_POUND_LBRACK] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_let] = ACTIONS(1165), + [anon_sym_andalso] = ACTIONS(981), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_handle] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_val] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_datatype] = ACTIONS(981), + [anon_sym_abstype] = ACTIONS(981), + [anon_sym_exception] = ACTIONS(981), + [anon_sym_local] = ACTIONS(981), + [anon_sym_open] = ACTIONS(981), + [anon_sym_infix] = ACTIONS(981), + [anon_sym_infixr] = ACTIONS(981), + [anon_sym_nonfix] = ACTIONS(981), + [anon_sym_structure] = ACTIONS(981), + [anon_sym_signature] = ACTIONS(981), + [anon_sym_functor] = ACTIONS(981), + [anon_sym_u201c] = ACTIONS(1167), + [anon_sym_u2018] = ACTIONS(1169), + [anon_sym_BQUOTE] = ACTIONS(1171), + [anon_sym_Definition] = ACTIONS(981), + [anon_sym_Datatype_COLON] = ACTIONS(965), + [anon_sym_Theorem] = ACTIONS(981), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [473] = { + [sym__scon] = STATE(4294), + [sym_vid] = STATE(4558), + [sym_longvid] = STATE(4295), + [sym__atexp] = STATE(474), + [sym_scon_exp] = STATE(474), + [sym_vid_exp] = STATE(474), + [sym_record_exp] = STATE(474), + [sym_recordsel_exp] = STATE(474), + [sym_unit_exp] = STATE(474), + [sym_tuple_exp] = STATE(474), + [sym_list_exp] = STATE(474), + [sym_vec_exp] = STATE(474), + [sym_sequence_exp] = STATE(474), + [sym_let_exp] = STATE(474), + [sym_paren_exp] = STATE(474), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(474), + [sym_quoted_type] = STATE(474), + [sym_backquote] = STATE(474), + [aux_sym_longvid_repeat1] = STATE(19170), + [aux_sym_app_exp_repeat1] = STATE(474), + [ts_builtin_sym_end] = ACTIONS(997), + [sym_integer_scon] = ACTIONS(1145), + [sym_word_scon] = ACTIONS(1147), + [sym_real_scon] = ACTIONS(1147), + [sym_string_scon] = ACTIONS(1147), + [sym_char_scon] = ACTIONS(1147), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1149), + [sym__symbolic_ident] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_op] = ACTIONS(1155), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1161), + [anon_sym_POUND_LBRACK] = ACTIONS(1163), + [anon_sym_SEMI] = ACTIONS(997), + [anon_sym_let] = ACTIONS(1165), + [anon_sym_andalso] = ACTIONS(999), + [anon_sym_orelse] = ACTIONS(999), + [anon_sym_handle] = ACTIONS(999), + [anon_sym_else] = ACTIONS(999), + [anon_sym_do] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_val] = ACTIONS(999), + [anon_sym_fun] = ACTIONS(999), + [anon_sym_type] = ACTIONS(999), + [anon_sym_datatype] = ACTIONS(999), + [anon_sym_abstype] = ACTIONS(999), + [anon_sym_exception] = ACTIONS(999), + [anon_sym_local] = ACTIONS(999), + [anon_sym_open] = ACTIONS(999), + [anon_sym_infix] = ACTIONS(999), + [anon_sym_infixr] = ACTIONS(999), + [anon_sym_nonfix] = ACTIONS(999), + [anon_sym_structure] = ACTIONS(999), + [anon_sym_signature] = ACTIONS(999), + [anon_sym_functor] = ACTIONS(999), + [anon_sym_u201c] = ACTIONS(1167), + [anon_sym_u2018] = ACTIONS(1169), + [anon_sym_BQUOTE] = ACTIONS(1171), + [anon_sym_Definition] = ACTIONS(999), + [anon_sym_Datatype_COLON] = ACTIONS(997), + [anon_sym_Theorem] = ACTIONS(999), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [474] = { + [sym__scon] = STATE(4294), + [sym_vid] = STATE(4558), + [sym_longvid] = STATE(4295), + [sym__atexp] = STATE(474), + [sym_scon_exp] = STATE(474), + [sym_vid_exp] = STATE(474), + [sym_record_exp] = STATE(474), + [sym_recordsel_exp] = STATE(474), + [sym_unit_exp] = STATE(474), + [sym_tuple_exp] = STATE(474), + [sym_list_exp] = STATE(474), + [sym_vec_exp] = STATE(474), + [sym_sequence_exp] = STATE(474), + [sym_let_exp] = STATE(474), + [sym_paren_exp] = STATE(474), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(474), + [sym_quoted_type] = STATE(474), + [sym_backquote] = STATE(474), + [aux_sym_longvid_repeat1] = STATE(19170), + [aux_sym_app_exp_repeat1] = STATE(474), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_integer_scon] = ACTIONS(1173), + [sym_word_scon] = ACTIONS(1176), + [sym_real_scon] = ACTIONS(1176), + [sym_string_scon] = ACTIONS(1176), + [sym_char_scon] = ACTIONS(1176), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1179), + [sym__symbolic_ident] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(1185), + [anon_sym_op] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1197), + [anon_sym_POUND_LBRACK] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1203), + [anon_sym_andalso] = ACTIONS(1024), + [anon_sym_orelse] = ACTIONS(1024), + [anon_sym_handle] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_val] = ACTIONS(1024), + [anon_sym_fun] = ACTIONS(1024), + [anon_sym_type] = ACTIONS(1024), + [anon_sym_datatype] = ACTIONS(1024), + [anon_sym_abstype] = ACTIONS(1024), + [anon_sym_exception] = ACTIONS(1024), + [anon_sym_local] = ACTIONS(1024), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_infix] = ACTIONS(1024), + [anon_sym_infixr] = ACTIONS(1024), + [anon_sym_nonfix] = ACTIONS(1024), + [anon_sym_structure] = ACTIONS(1024), + [anon_sym_signature] = ACTIONS(1024), + [anon_sym_functor] = ACTIONS(1024), + [anon_sym_u201c] = ACTIONS(1206), + [anon_sym_u2018] = ACTIONS(1209), + [anon_sym_BQUOTE] = ACTIONS(1212), + [anon_sym_Definition] = ACTIONS(1024), + [anon_sym_Datatype_COLON] = ACTIONS(1001), + [anon_sym_Theorem] = ACTIONS(1024), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [475] = { + [sym__scon] = STATE(4303), + [sym_vid] = STATE(4281), + [sym_longvid] = STATE(4304), + [sym__atexp] = STATE(475), + [sym_scon_exp] = STATE(475), + [sym_vid_exp] = STATE(475), + [sym_record_exp] = STATE(475), + [sym_recordsel_exp] = STATE(475), + [sym_unit_exp] = STATE(475), + [sym_tuple_exp] = STATE(475), + [sym_list_exp] = STATE(475), + [sym_vec_exp] = STATE(475), + [sym_sequence_exp] = STATE(475), + [sym_let_exp] = STATE(475), + [sym_paren_exp] = STATE(475), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(475), + [sym_quoted_type] = STATE(475), + [sym_backquote] = STATE(475), + [aux_sym_longvid_repeat1] = STATE(19088), + [aux_sym_app_exp_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_integer_scon] = ACTIONS(1215), + [sym_word_scon] = ACTIONS(1218), + [sym_real_scon] = ACTIONS(1218), + [sym_string_scon] = ACTIONS(1218), + [sym_char_scon] = ACTIONS(1218), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1221), + [sym__symbolic_ident] = ACTIONS(1224), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_op] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1239), + [anon_sym_POUND_LBRACK] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1245), + [anon_sym_andalso] = ACTIONS(1024), + [anon_sym_orelse] = ACTIONS(1024), + [anon_sym_handle] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_val] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_fun] = ACTIONS(1024), + [anon_sym_type] = ACTIONS(1024), + [anon_sym_datatype] = ACTIONS(1024), + [anon_sym_abstype] = ACTIONS(1024), + [anon_sym_exception] = ACTIONS(1024), + [anon_sym_local] = ACTIONS(1024), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_infix] = ACTIONS(1024), + [anon_sym_infixr] = ACTIONS(1024), + [anon_sym_nonfix] = ACTIONS(1024), + [anon_sym_structure] = ACTIONS(1024), + [anon_sym_signature] = ACTIONS(1024), + [anon_sym_functor] = ACTIONS(1024), + [anon_sym_u201c] = ACTIONS(1248), + [anon_sym_u2018] = ACTIONS(1251), + [anon_sym_BQUOTE] = ACTIONS(1254), + [anon_sym_Definition] = ACTIONS(1024), + [anon_sym_Datatype_COLON] = ACTIONS(1001), + [anon_sym_Theorem] = ACTIONS(1024), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [476] = { + [sym__scon] = STATE(4296), + [sym_vid] = STATE(4481), + [sym_longvid] = STATE(4299), + [sym__atexp] = STATE(469), + [sym_scon_exp] = STATE(469), + [sym_vid_exp] = STATE(469), + [sym_record_exp] = STATE(469), + [sym_recordsel_exp] = STATE(469), + [sym_unit_exp] = STATE(469), + [sym_tuple_exp] = STATE(469), + [sym_list_exp] = STATE(469), + [sym_vec_exp] = STATE(469), + [sym_sequence_exp] = STATE(469), + [sym_let_exp] = STATE(469), + [sym_paren_exp] = STATE(469), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(469), + [sym_quoted_type] = STATE(469), + [sym_backquote] = STATE(469), + [aux_sym_longvid_repeat1] = STATE(18960), + [aux_sym_app_exp_repeat1] = STATE(469), + [ts_builtin_sym_end] = ACTIONS(965), + [sym_integer_scon] = ACTIONS(1089), + [sym_word_scon] = ACTIONS(1091), + [sym_real_scon] = ACTIONS(1091), + [sym_string_scon] = ACTIONS(1091), + [sym_char_scon] = ACTIONS(1091), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1093), + [sym__symbolic_ident] = ACTIONS(1095), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_op] = ACTIONS(1099), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_POUND] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_POUND_LBRACK] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_let] = ACTIONS(1109), + [anon_sym_andalso] = ACTIONS(981), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_handle] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_val] = ACTIONS(981), + [anon_sym_and] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_datatype] = ACTIONS(981), + [anon_sym_abstype] = ACTIONS(981), + [anon_sym_exception] = ACTIONS(981), + [anon_sym_local] = ACTIONS(981), + [anon_sym_open] = ACTIONS(981), + [anon_sym_infix] = ACTIONS(981), + [anon_sym_infixr] = ACTIONS(981), + [anon_sym_nonfix] = ACTIONS(981), + [anon_sym_structure] = ACTIONS(981), + [anon_sym_signature] = ACTIONS(981), + [anon_sym_functor] = ACTIONS(981), + [anon_sym_u201c] = ACTIONS(1111), + [anon_sym_u2018] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1115), + [anon_sym_Definition] = ACTIONS(981), + [anon_sym_Datatype_COLON] = ACTIONS(965), + [anon_sym_Theorem] = ACTIONS(981), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [477] = { + [sym__scon] = STATE(5082), + [sym_vid] = STATE(5015), + [sym_longvid] = STATE(5095), + [sym__atexp] = STATE(479), + [sym_scon_exp] = STATE(479), + [sym_vid_exp] = STATE(479), + [sym_record_exp] = STATE(479), + [sym_recordsel_exp] = STATE(479), + [sym_unit_exp] = STATE(479), + [sym_tuple_exp] = STATE(479), + [sym_list_exp] = STATE(479), + [sym_vec_exp] = STATE(479), + [sym_sequence_exp] = STATE(479), + [sym_let_exp] = STATE(479), + [sym_paren_exp] = STATE(479), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(479), + [sym_quoted_type] = STATE(479), + [sym_backquote] = STATE(479), + [aux_sym_longvid_repeat1] = STATE(19100), + [aux_sym_app_exp_repeat1] = STATE(479), + [ts_builtin_sym_end] = ACTIONS(965), + [sym_integer_scon] = ACTIONS(1257), + [sym_word_scon] = ACTIONS(1259), + [sym_real_scon] = ACTIONS(1259), + [sym_string_scon] = ACTIONS(1259), + [sym_char_scon] = ACTIONS(1259), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1261), + [sym__symbolic_ident] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_op] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_POUND] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_POUND_LBRACK] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_let] = ACTIONS(1277), + [anon_sym_andalso] = ACTIONS(981), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_handle] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_val] = ACTIONS(981), + [anon_sym_and] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_datatype] = ACTIONS(981), + [anon_sym_abstype] = ACTIONS(981), + [anon_sym_exception] = ACTIONS(981), + [anon_sym_local] = ACTIONS(981), + [anon_sym_open] = ACTIONS(981), + [anon_sym_infix] = ACTIONS(981), + [anon_sym_infixr] = ACTIONS(981), + [anon_sym_nonfix] = ACTIONS(981), + [anon_sym_structure] = ACTIONS(981), + [anon_sym_signature] = ACTIONS(981), + [anon_sym_functor] = ACTIONS(981), + [anon_sym_u201c] = ACTIONS(1279), + [anon_sym_u2018] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1283), + [anon_sym_Definition] = ACTIONS(981), + [anon_sym_Datatype_COLON] = ACTIONS(965), + [anon_sym_Theorem] = ACTIONS(981), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [478] = { + [sym__scon] = STATE(5082), + [sym_vid] = STATE(5015), + [sym_longvid] = STATE(5095), + [sym__atexp] = STATE(478), + [sym_scon_exp] = STATE(478), + [sym_vid_exp] = STATE(478), + [sym_record_exp] = STATE(478), + [sym_recordsel_exp] = STATE(478), + [sym_unit_exp] = STATE(478), + [sym_tuple_exp] = STATE(478), + [sym_list_exp] = STATE(478), + [sym_vec_exp] = STATE(478), + [sym_sequence_exp] = STATE(478), + [sym_let_exp] = STATE(478), + [sym_paren_exp] = STATE(478), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(478), + [sym_quoted_type] = STATE(478), + [sym_backquote] = STATE(478), + [aux_sym_longvid_repeat1] = STATE(19100), + [aux_sym_app_exp_repeat1] = STATE(478), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_integer_scon] = ACTIONS(1285), + [sym_word_scon] = ACTIONS(1288), + [sym_real_scon] = ACTIONS(1288), + [sym_string_scon] = ACTIONS(1288), + [sym_char_scon] = ACTIONS(1288), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1291), + [sym__symbolic_ident] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_op] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(1306), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_POUND_LBRACK] = ACTIONS(1312), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1315), + [anon_sym_andalso] = ACTIONS(1024), + [anon_sym_orelse] = ACTIONS(1024), + [anon_sym_handle] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_val] = ACTIONS(1024), + [anon_sym_and] = ACTIONS(1024), + [anon_sym_fun] = ACTIONS(1024), + [anon_sym_type] = ACTIONS(1024), + [anon_sym_datatype] = ACTIONS(1024), + [anon_sym_abstype] = ACTIONS(1024), + [anon_sym_exception] = ACTIONS(1024), + [anon_sym_local] = ACTIONS(1024), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_infix] = ACTIONS(1024), + [anon_sym_infixr] = ACTIONS(1024), + [anon_sym_nonfix] = ACTIONS(1024), + [anon_sym_structure] = ACTIONS(1024), + [anon_sym_signature] = ACTIONS(1024), + [anon_sym_functor] = ACTIONS(1024), + [anon_sym_u201c] = ACTIONS(1318), + [anon_sym_u2018] = ACTIONS(1321), + [anon_sym_BQUOTE] = ACTIONS(1324), + [anon_sym_Definition] = ACTIONS(1024), + [anon_sym_Datatype_COLON] = ACTIONS(1001), + [anon_sym_Theorem] = ACTIONS(1024), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [479] = { + [sym__scon] = STATE(5082), + [sym_vid] = STATE(5015), + [sym_longvid] = STATE(5095), + [sym__atexp] = STATE(478), + [sym_scon_exp] = STATE(478), + [sym_vid_exp] = STATE(478), + [sym_record_exp] = STATE(478), + [sym_recordsel_exp] = STATE(478), + [sym_unit_exp] = STATE(478), + [sym_tuple_exp] = STATE(478), + [sym_list_exp] = STATE(478), + [sym_vec_exp] = STATE(478), + [sym_sequence_exp] = STATE(478), + [sym_let_exp] = STATE(478), + [sym_paren_exp] = STATE(478), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(478), + [sym_quoted_type] = STATE(478), + [sym_backquote] = STATE(478), + [aux_sym_longvid_repeat1] = STATE(19100), + [aux_sym_app_exp_repeat1] = STATE(478), + [ts_builtin_sym_end] = ACTIONS(997), + [sym_integer_scon] = ACTIONS(1257), + [sym_word_scon] = ACTIONS(1259), + [sym_real_scon] = ACTIONS(1259), + [sym_string_scon] = ACTIONS(1259), + [sym_char_scon] = ACTIONS(1259), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1261), + [sym__symbolic_ident] = ACTIONS(1263), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_op] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_POUND_LBRACK] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(997), + [anon_sym_let] = ACTIONS(1277), + [anon_sym_andalso] = ACTIONS(999), + [anon_sym_orelse] = ACTIONS(999), + [anon_sym_handle] = ACTIONS(999), + [anon_sym_do] = ACTIONS(999), + [anon_sym_val] = ACTIONS(999), + [anon_sym_and] = ACTIONS(999), + [anon_sym_fun] = ACTIONS(999), + [anon_sym_type] = ACTIONS(999), + [anon_sym_datatype] = ACTIONS(999), + [anon_sym_abstype] = ACTIONS(999), + [anon_sym_exception] = ACTIONS(999), + [anon_sym_local] = ACTIONS(999), + [anon_sym_open] = ACTIONS(999), + [anon_sym_infix] = ACTIONS(999), + [anon_sym_infixr] = ACTIONS(999), + [anon_sym_nonfix] = ACTIONS(999), + [anon_sym_structure] = ACTIONS(999), + [anon_sym_signature] = ACTIONS(999), + [anon_sym_functor] = ACTIONS(999), + [anon_sym_u201c] = ACTIONS(1279), + [anon_sym_u2018] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1283), + [anon_sym_Definition] = ACTIONS(999), + [anon_sym_Datatype_COLON] = ACTIONS(997), + [anon_sym_Theorem] = ACTIONS(999), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [480] = { + [sym__scon] = STATE(5123), + [sym_vid] = STATE(4944), + [sym_longvid] = STATE(5127), + [sym__atexp] = STATE(481), + [sym_scon_exp] = STATE(481), + [sym_vid_exp] = STATE(481), + [sym_record_exp] = STATE(481), + [sym_recordsel_exp] = STATE(481), + [sym_unit_exp] = STATE(481), + [sym_tuple_exp] = STATE(481), + [sym_list_exp] = STATE(481), + [sym_vec_exp] = STATE(481), + [sym_sequence_exp] = STATE(481), + [sym_let_exp] = STATE(481), + [sym_paren_exp] = STATE(481), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(481), + [sym_quoted_type] = STATE(481), + [sym_backquote] = STATE(481), + [aux_sym_longvid_repeat1] = STATE(19209), + [aux_sym_app_exp_repeat1] = STATE(481), + [ts_builtin_sym_end] = ACTIONS(965), + [sym_integer_scon] = ACTIONS(1327), + [sym_word_scon] = ACTIONS(1329), + [sym_real_scon] = ACTIONS(1329), + [sym_string_scon] = ACTIONS(1329), + [sym_char_scon] = ACTIONS(1329), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1331), + [sym__symbolic_ident] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_op] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_POUND] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_POUND_LBRACK] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_let] = ACTIONS(1347), + [anon_sym_andalso] = ACTIONS(981), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_handle] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_val] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_datatype] = ACTIONS(981), + [anon_sym_abstype] = ACTIONS(981), + [anon_sym_exception] = ACTIONS(981), + [anon_sym_local] = ACTIONS(981), + [anon_sym_open] = ACTIONS(981), + [anon_sym_infix] = ACTIONS(981), + [anon_sym_infixr] = ACTIONS(981), + [anon_sym_nonfix] = ACTIONS(981), + [anon_sym_structure] = ACTIONS(981), + [anon_sym_signature] = ACTIONS(981), + [anon_sym_functor] = ACTIONS(981), + [anon_sym_u201c] = ACTIONS(1349), + [anon_sym_u2018] = ACTIONS(1351), + [anon_sym_BQUOTE] = ACTIONS(1353), + [anon_sym_Definition] = ACTIONS(981), + [anon_sym_Datatype_COLON] = ACTIONS(965), + [anon_sym_Theorem] = ACTIONS(981), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [481] = { + [sym__scon] = STATE(5123), + [sym_vid] = STATE(4944), + [sym_longvid] = STATE(5127), + [sym__atexp] = STATE(482), + [sym_scon_exp] = STATE(482), + [sym_vid_exp] = STATE(482), + [sym_record_exp] = STATE(482), + [sym_recordsel_exp] = STATE(482), + [sym_unit_exp] = STATE(482), + [sym_tuple_exp] = STATE(482), + [sym_list_exp] = STATE(482), + [sym_vec_exp] = STATE(482), + [sym_sequence_exp] = STATE(482), + [sym_let_exp] = STATE(482), + [sym_paren_exp] = STATE(482), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(482), + [sym_quoted_type] = STATE(482), + [sym_backquote] = STATE(482), + [aux_sym_longvid_repeat1] = STATE(19209), + [aux_sym_app_exp_repeat1] = STATE(482), + [ts_builtin_sym_end] = ACTIONS(997), + [sym_integer_scon] = ACTIONS(1327), + [sym_word_scon] = ACTIONS(1329), + [sym_real_scon] = ACTIONS(1329), + [sym_string_scon] = ACTIONS(1329), + [sym_char_scon] = ACTIONS(1329), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1331), + [sym__symbolic_ident] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1335), + [anon_sym_op] = ACTIONS(1337), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_POUND_LBRACK] = ACTIONS(1345), + [anon_sym_SEMI] = ACTIONS(997), + [anon_sym_let] = ACTIONS(1347), + [anon_sym_andalso] = ACTIONS(999), + [anon_sym_orelse] = ACTIONS(999), + [anon_sym_handle] = ACTIONS(999), + [anon_sym_else] = ACTIONS(999), + [anon_sym_do] = ACTIONS(999), + [anon_sym_val] = ACTIONS(999), + [anon_sym_fun] = ACTIONS(999), + [anon_sym_type] = ACTIONS(999), + [anon_sym_datatype] = ACTIONS(999), + [anon_sym_abstype] = ACTIONS(999), + [anon_sym_exception] = ACTIONS(999), + [anon_sym_local] = ACTIONS(999), + [anon_sym_open] = ACTIONS(999), + [anon_sym_infix] = ACTIONS(999), + [anon_sym_infixr] = ACTIONS(999), + [anon_sym_nonfix] = ACTIONS(999), + [anon_sym_structure] = ACTIONS(999), + [anon_sym_signature] = ACTIONS(999), + [anon_sym_functor] = ACTIONS(999), + [anon_sym_u201c] = ACTIONS(1349), + [anon_sym_u2018] = ACTIONS(1351), + [anon_sym_BQUOTE] = ACTIONS(1353), + [anon_sym_Definition] = ACTIONS(999), + [anon_sym_Datatype_COLON] = ACTIONS(997), + [anon_sym_Theorem] = ACTIONS(999), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [482] = { + [sym__scon] = STATE(5123), + [sym_vid] = STATE(4944), + [sym_longvid] = STATE(5127), + [sym__atexp] = STATE(482), + [sym_scon_exp] = STATE(482), + [sym_vid_exp] = STATE(482), + [sym_record_exp] = STATE(482), + [sym_recordsel_exp] = STATE(482), + [sym_unit_exp] = STATE(482), + [sym_tuple_exp] = STATE(482), + [sym_list_exp] = STATE(482), + [sym_vec_exp] = STATE(482), + [sym_sequence_exp] = STATE(482), + [sym_let_exp] = STATE(482), + [sym_paren_exp] = STATE(482), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(482), + [sym_quoted_type] = STATE(482), + [sym_backquote] = STATE(482), + [aux_sym_longvid_repeat1] = STATE(19209), + [aux_sym_app_exp_repeat1] = STATE(482), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_integer_scon] = ACTIONS(1355), + [sym_word_scon] = ACTIONS(1358), + [sym_real_scon] = ACTIONS(1358), + [sym_string_scon] = ACTIONS(1358), + [sym_char_scon] = ACTIONS(1358), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1361), + [sym__symbolic_ident] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1367), + [anon_sym_op] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(1373), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1379), + [anon_sym_POUND_LBRACK] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1385), + [anon_sym_andalso] = ACTIONS(1024), + [anon_sym_orelse] = ACTIONS(1024), + [anon_sym_handle] = ACTIONS(1024), + [anon_sym_else] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_val] = ACTIONS(1024), + [anon_sym_fun] = ACTIONS(1024), + [anon_sym_type] = ACTIONS(1024), + [anon_sym_datatype] = ACTIONS(1024), + [anon_sym_abstype] = ACTIONS(1024), + [anon_sym_exception] = ACTIONS(1024), + [anon_sym_local] = ACTIONS(1024), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_infix] = ACTIONS(1024), + [anon_sym_infixr] = ACTIONS(1024), + [anon_sym_nonfix] = ACTIONS(1024), + [anon_sym_structure] = ACTIONS(1024), + [anon_sym_signature] = ACTIONS(1024), + [anon_sym_functor] = ACTIONS(1024), + [anon_sym_u201c] = ACTIONS(1388), + [anon_sym_u2018] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1394), + [anon_sym_Definition] = ACTIONS(1024), + [anon_sym_Datatype_COLON] = ACTIONS(1001), + [anon_sym_Theorem] = ACTIONS(1024), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [483] = { + [sym__scon] = STATE(4983), + [sym_vid] = STATE(4954), + [sym_longvid] = STATE(4984), + [sym__atexp] = STATE(484), + [sym_scon_exp] = STATE(484), + [sym_vid_exp] = STATE(484), + [sym_record_exp] = STATE(484), + [sym_recordsel_exp] = STATE(484), + [sym_unit_exp] = STATE(484), + [sym_tuple_exp] = STATE(484), + [sym_list_exp] = STATE(484), + [sym_vec_exp] = STATE(484), + [sym_sequence_exp] = STATE(484), + [sym_let_exp] = STATE(484), + [sym_paren_exp] = STATE(484), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(484), + [sym_quoted_type] = STATE(484), + [sym_backquote] = STATE(484), + [aux_sym_longvid_repeat1] = STATE(18872), + [aux_sym_app_exp_repeat1] = STATE(484), + [ts_builtin_sym_end] = ACTIONS(965), + [sym_integer_scon] = ACTIONS(1397), + [sym_word_scon] = ACTIONS(1399), + [sym_real_scon] = ACTIONS(1399), + [sym_string_scon] = ACTIONS(1399), + [sym_char_scon] = ACTIONS(1399), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1401), + [sym__symbolic_ident] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_op] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_COLON] = ACTIONS(981), + [anon_sym_POUND] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_POUND_LBRACK] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_let] = ACTIONS(1417), + [anon_sym_andalso] = ACTIONS(981), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_handle] = ACTIONS(981), + [anon_sym_do] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_val] = ACTIONS(981), + [anon_sym_fun] = ACTIONS(981), + [anon_sym_type] = ACTIONS(981), + [anon_sym_datatype] = ACTIONS(981), + [anon_sym_abstype] = ACTIONS(981), + [anon_sym_exception] = ACTIONS(981), + [anon_sym_local] = ACTIONS(981), + [anon_sym_open] = ACTIONS(981), + [anon_sym_infix] = ACTIONS(981), + [anon_sym_infixr] = ACTIONS(981), + [anon_sym_nonfix] = ACTIONS(981), + [anon_sym_structure] = ACTIONS(981), + [anon_sym_signature] = ACTIONS(981), + [anon_sym_functor] = ACTIONS(981), + [anon_sym_u201c] = ACTIONS(1419), + [anon_sym_u2018] = ACTIONS(1421), + [anon_sym_BQUOTE] = ACTIONS(1423), + [anon_sym_Definition] = ACTIONS(981), + [anon_sym_Datatype_COLON] = ACTIONS(965), + [anon_sym_Theorem] = ACTIONS(981), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [484] = { + [sym__scon] = STATE(4983), + [sym_vid] = STATE(4954), + [sym_longvid] = STATE(4984), + [sym__atexp] = STATE(485), + [sym_scon_exp] = STATE(485), + [sym_vid_exp] = STATE(485), + [sym_record_exp] = STATE(485), + [sym_recordsel_exp] = STATE(485), + [sym_unit_exp] = STATE(485), + [sym_tuple_exp] = STATE(485), + [sym_list_exp] = STATE(485), + [sym_vec_exp] = STATE(485), + [sym_sequence_exp] = STATE(485), + [sym_let_exp] = STATE(485), + [sym_paren_exp] = STATE(485), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(485), + [sym_quoted_type] = STATE(485), + [sym_backquote] = STATE(485), + [aux_sym_longvid_repeat1] = STATE(18872), + [aux_sym_app_exp_repeat1] = STATE(485), + [ts_builtin_sym_end] = ACTIONS(997), + [sym_integer_scon] = ACTIONS(1397), + [sym_word_scon] = ACTIONS(1399), + [sym_real_scon] = ACTIONS(1399), + [sym_string_scon] = ACTIONS(1399), + [sym_char_scon] = ACTIONS(1399), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1401), + [sym__symbolic_ident] = ACTIONS(1403), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_op] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1409), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1413), + [anon_sym_POUND_LBRACK] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(997), + [anon_sym_let] = ACTIONS(1417), + [anon_sym_andalso] = ACTIONS(999), + [anon_sym_orelse] = ACTIONS(999), + [anon_sym_handle] = ACTIONS(999), + [anon_sym_do] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_val] = ACTIONS(999), + [anon_sym_fun] = ACTIONS(999), + [anon_sym_type] = ACTIONS(999), + [anon_sym_datatype] = ACTIONS(999), + [anon_sym_abstype] = ACTIONS(999), + [anon_sym_exception] = ACTIONS(999), + [anon_sym_local] = ACTIONS(999), + [anon_sym_open] = ACTIONS(999), + [anon_sym_infix] = ACTIONS(999), + [anon_sym_infixr] = ACTIONS(999), + [anon_sym_nonfix] = ACTIONS(999), + [anon_sym_structure] = ACTIONS(999), + [anon_sym_signature] = ACTIONS(999), + [anon_sym_functor] = ACTIONS(999), + [anon_sym_u201c] = ACTIONS(1419), + [anon_sym_u2018] = ACTIONS(1421), + [anon_sym_BQUOTE] = ACTIONS(1423), + [anon_sym_Definition] = ACTIONS(999), + [anon_sym_Datatype_COLON] = ACTIONS(997), + [anon_sym_Theorem] = ACTIONS(999), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, + [485] = { + [sym__scon] = STATE(4983), + [sym_vid] = STATE(4954), + [sym_longvid] = STATE(4984), + [sym__atexp] = STATE(485), + [sym_scon_exp] = STATE(485), + [sym_vid_exp] = STATE(485), + [sym_record_exp] = STATE(485), + [sym_recordsel_exp] = STATE(485), + [sym_unit_exp] = STATE(485), + [sym_tuple_exp] = STATE(485), + [sym_list_exp] = STATE(485), + [sym_vec_exp] = STATE(485), + [sym_sequence_exp] = STATE(485), + [sym_let_exp] = STATE(485), + [sym_paren_exp] = STATE(485), + [sym_strid] = STATE(24934), + [sym_quoted_term] = STATE(485), + [sym_quoted_type] = STATE(485), + [sym_backquote] = STATE(485), + [aux_sym_longvid_repeat1] = STATE(18872), + [aux_sym_app_exp_repeat1] = STATE(485), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_integer_scon] = ACTIONS(1425), + [sym_word_scon] = ACTIONS(1428), + [sym_real_scon] = ACTIONS(1428), + [sym_string_scon] = ACTIONS(1428), + [sym_char_scon] = ACTIONS(1428), + [sym__alphaAlphaNumeric_ident] = ACTIONS(1431), + [sym__symbolic_ident] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_op] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_POUND_LBRACK] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_andalso] = ACTIONS(1024), + [anon_sym_orelse] = ACTIONS(1024), + [anon_sym_handle] = ACTIONS(1024), + [anon_sym_do] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_val] = ACTIONS(1024), + [anon_sym_fun] = ACTIONS(1024), + [anon_sym_type] = ACTIONS(1024), + [anon_sym_datatype] = ACTIONS(1024), + [anon_sym_abstype] = ACTIONS(1024), + [anon_sym_exception] = ACTIONS(1024), + [anon_sym_local] = ACTIONS(1024), + [anon_sym_open] = ACTIONS(1024), + [anon_sym_infix] = ACTIONS(1024), + [anon_sym_infixr] = ACTIONS(1024), + [anon_sym_nonfix] = ACTIONS(1024), + [anon_sym_structure] = ACTIONS(1024), + [anon_sym_signature] = ACTIONS(1024), + [anon_sym_functor] = ACTIONS(1024), + [anon_sym_u201c] = ACTIONS(1458), + [anon_sym_u2018] = ACTIONS(1461), + [anon_sym_BQUOTE] = ACTIONS(1464), + [anon_sym_Definition] = ACTIONS(1024), + [anon_sym_Datatype_COLON] = ACTIONS(1001), + [anon_sym_Theorem] = ACTIONS(1024), + [sym_block_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 23, + ACTIONS(1467), 1, + sym_integer_scon, + ACTIONS(1471), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1473), 1, + sym__symbolic_ident, + ACTIONS(1475), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_op, + ACTIONS(1479), 1, + anon_sym_LBRACE, + ACTIONS(1481), 1, + anon_sym_POUND, + ACTIONS(1483), 1, + anon_sym_LBRACK, + ACTIONS(1485), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1487), 1, + anon_sym_let, + ACTIONS(1489), 1, + anon_sym_u201c, + ACTIONS(1491), 1, + anon_sym_u2018, + ACTIONS(1493), 1, + anon_sym_BQUOTE, + STATE(5289), 1, + sym__scon, + STATE(5291), 1, + sym_vid, + STATE(5295), 1, + sym_longvid, + STATE(18842), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(1469), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(487), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 21, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [111] = 23, + ACTIONS(1495), 1, + sym_integer_scon, + ACTIONS(1501), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1504), 1, + sym__symbolic_ident, + ACTIONS(1507), 1, + anon_sym_LPAREN, + ACTIONS(1510), 1, + anon_sym_op, + ACTIONS(1513), 1, + anon_sym_LBRACE, + ACTIONS(1516), 1, + anon_sym_POUND, + ACTIONS(1519), 1, + anon_sym_LBRACK, + ACTIONS(1522), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1525), 1, + anon_sym_let, + ACTIONS(1528), 1, + anon_sym_u201c, + ACTIONS(1531), 1, + anon_sym_u2018, + ACTIONS(1534), 1, + anon_sym_BQUOTE, + STATE(5289), 1, + sym__scon, + STATE(5291), 1, + sym_vid, + STATE(5295), 1, + sym_longvid, + STATE(18842), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(1498), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(487), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 21, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [222] = 23, + ACTIONS(1467), 1, + sym_integer_scon, + ACTIONS(1471), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1473), 1, + sym__symbolic_ident, + ACTIONS(1475), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_op, + ACTIONS(1479), 1, + anon_sym_LBRACE, + ACTIONS(1481), 1, + anon_sym_POUND, + ACTIONS(1483), 1, + anon_sym_LBRACK, + ACTIONS(1485), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1487), 1, + anon_sym_let, + ACTIONS(1489), 1, + anon_sym_u201c, + ACTIONS(1491), 1, + anon_sym_u2018, + ACTIONS(1493), 1, + anon_sym_BQUOTE, + STATE(5289), 1, + sym__scon, + STATE(5291), 1, + sym_vid, + STATE(5295), 1, + sym_longvid, + STATE(18842), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(1469), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(486), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 21, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [333] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(1537), 1, + sym_integer_scon, + ACTIONS(1541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1543), 1, + sym__symbolic_ident, + ACTIONS(1545), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, + anon_sym_op, + ACTIONS(1549), 1, + anon_sym_LBRACE, + ACTIONS(1551), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1557), 1, + anon_sym_let, + ACTIONS(1559), 1, + anon_sym_u201c, + ACTIONS(1561), 1, + anon_sym_u2018, + ACTIONS(1563), 1, + anon_sym_BQUOTE, + STATE(5677), 1, + sym_vid, + STATE(5751), 1, + sym__scon, + STATE(5752), 1, + sym_longvid, + STATE(19054), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(490), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [442] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(1537), 1, + sym_integer_scon, + ACTIONS(1541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1543), 1, + sym__symbolic_ident, + ACTIONS(1545), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, + anon_sym_op, + ACTIONS(1549), 1, + anon_sym_LBRACE, + ACTIONS(1551), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1557), 1, + anon_sym_let, + ACTIONS(1559), 1, + anon_sym_u201c, + ACTIONS(1561), 1, + anon_sym_u2018, + ACTIONS(1563), 1, + anon_sym_BQUOTE, + STATE(5677), 1, + sym_vid, + STATE(5751), 1, + sym__scon, + STATE(5752), 1, + sym_longvid, + STATE(19054), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(491), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [551] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(1565), 1, + sym_integer_scon, + ACTIONS(1571), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1574), 1, + sym__symbolic_ident, + ACTIONS(1577), 1, + anon_sym_LPAREN, + ACTIONS(1580), 1, + anon_sym_op, + ACTIONS(1583), 1, + anon_sym_LBRACE, + ACTIONS(1586), 1, + anon_sym_POUND, + ACTIONS(1589), 1, + anon_sym_LBRACK, + ACTIONS(1592), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1595), 1, + anon_sym_let, + ACTIONS(1598), 1, + anon_sym_u201c, + ACTIONS(1601), 1, + anon_sym_u2018, + ACTIONS(1604), 1, + anon_sym_BQUOTE, + STATE(5677), 1, + sym_vid, + STATE(5751), 1, + sym__scon, + STATE(5752), 1, + sym_longvid, + STATE(19054), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1568), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(491), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [660] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(1607), 1, + sym_integer_scon, + ACTIONS(1611), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1613), 1, + sym__symbolic_ident, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1617), 1, + anon_sym_op, + ACTIONS(1619), 1, + anon_sym_LBRACE, + ACTIONS(1621), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1627), 1, + anon_sym_let, + ACTIONS(1629), 1, + anon_sym_u201c, + ACTIONS(1631), 1, + anon_sym_u2018, + ACTIONS(1633), 1, + anon_sym_BQUOTE, + STATE(5457), 1, + sym__scon, + STATE(5458), 1, + sym_longvid, + STATE(5512), 1, + sym_vid, + STATE(19142), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1609), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(493), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [769] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(1607), 1, + sym_integer_scon, + ACTIONS(1611), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1613), 1, + sym__symbolic_ident, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1617), 1, + anon_sym_op, + ACTIONS(1619), 1, + anon_sym_LBRACE, + ACTIONS(1621), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1627), 1, + anon_sym_let, + ACTIONS(1629), 1, + anon_sym_u201c, + ACTIONS(1631), 1, + anon_sym_u2018, + ACTIONS(1633), 1, + anon_sym_BQUOTE, + STATE(5457), 1, + sym__scon, + STATE(5458), 1, + sym_longvid, + STATE(5512), 1, + sym_vid, + STATE(19142), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1609), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(494), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [878] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(1635), 1, + sym_integer_scon, + ACTIONS(1641), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1644), 1, + sym__symbolic_ident, + ACTIONS(1647), 1, + anon_sym_LPAREN, + ACTIONS(1650), 1, + anon_sym_op, + ACTIONS(1653), 1, + anon_sym_LBRACE, + ACTIONS(1656), 1, + anon_sym_POUND, + ACTIONS(1659), 1, + anon_sym_LBRACK, + ACTIONS(1662), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1665), 1, + anon_sym_let, + ACTIONS(1668), 1, + anon_sym_u201c, + ACTIONS(1671), 1, + anon_sym_u2018, + ACTIONS(1674), 1, + anon_sym_BQUOTE, + STATE(5457), 1, + sym__scon, + STATE(5458), 1, + sym_longvid, + STATE(5512), 1, + sym_vid, + STATE(19142), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1638), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(494), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [987] = 23, + ACTIONS(1677), 1, + sym_integer_scon, + ACTIONS(1681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1683), 1, + sym__symbolic_ident, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_op, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(1691), 1, + anon_sym_POUND, + ACTIONS(1693), 1, + anon_sym_LBRACK, + ACTIONS(1695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1697), 1, + anon_sym_let, + ACTIONS(1699), 1, + anon_sym_u201c, + ACTIONS(1701), 1, + anon_sym_u2018, + ACTIONS(1703), 1, + anon_sym_BQUOTE, + STATE(5518), 1, + sym__scon, + STATE(5519), 1, + sym_longvid, + STATE(5575), 1, + sym_vid, + STATE(19199), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(496), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 20, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [1096] = 23, + ACTIONS(1677), 1, + sym_integer_scon, + ACTIONS(1681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1683), 1, + sym__symbolic_ident, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_op, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(1691), 1, + anon_sym_POUND, + ACTIONS(1693), 1, + anon_sym_LBRACK, + ACTIONS(1695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1697), 1, + anon_sym_let, + ACTIONS(1699), 1, + anon_sym_u201c, + ACTIONS(1701), 1, + anon_sym_u2018, + ACTIONS(1703), 1, + anon_sym_BQUOTE, + STATE(5518), 1, + sym__scon, + STATE(5519), 1, + sym_longvid, + STATE(5575), 1, + sym_vid, + STATE(19199), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(497), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 20, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [1205] = 23, + ACTIONS(1705), 1, + sym_integer_scon, + ACTIONS(1711), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1714), 1, + sym__symbolic_ident, + ACTIONS(1717), 1, + anon_sym_LPAREN, + ACTIONS(1720), 1, + anon_sym_op, + ACTIONS(1723), 1, + anon_sym_LBRACE, + ACTIONS(1726), 1, + anon_sym_POUND, + ACTIONS(1729), 1, + anon_sym_LBRACK, + ACTIONS(1732), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1735), 1, + anon_sym_let, + ACTIONS(1738), 1, + anon_sym_u201c, + ACTIONS(1741), 1, + anon_sym_u2018, + ACTIONS(1744), 1, + anon_sym_BQUOTE, + STATE(5518), 1, + sym__scon, + STATE(5519), 1, + sym_longvid, + STATE(5575), 1, + sym_vid, + STATE(19199), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1708), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(497), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 20, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [1314] = 35, + ACTIONS(1747), 1, + sym_integer_scon, + ACTIONS(1751), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1753), 1, + sym__symbolic_ident, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1757), 1, + anon_sym_COMMA, + ACTIONS(1759), 1, + anon_sym_RPAREN, + ACTIONS(1761), 1, + anon_sym_op, + ACTIONS(1763), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + anon_sym_LBRACK, + ACTIONS(1769), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1771), 1, + anon_sym_SEMI, + ACTIONS(1773), 1, + anon_sym_let, + ACTIONS(1775), 1, + anon_sym_raise, + ACTIONS(1777), 1, + anon_sym_if, + ACTIONS(1779), 1, + anon_sym_while, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(1785), 1, + anon_sym_u201c, + ACTIONS(1787), 1, + anon_sym_u2018, + ACTIONS(1789), 1, + anon_sym_BQUOTE, + STATE(1883), 1, + aux_sym_record_exp_repeat1, + STATE(1884), 1, + aux_sym_sequence_exp_repeat1, + STATE(9828), 1, + sym_vid, + STATE(9923), 1, + sym__scon, + STATE(9924), 1, + sym_longvid, + STATE(15086), 1, + sym__exp, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25001), 1, + sym__atomic_tactic, + STATE(25036), 1, + sym_THEN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1749), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4112), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [1447] = 35, + ACTIONS(1747), 1, + sym_integer_scon, + ACTIONS(1751), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1753), 1, + sym__symbolic_ident, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1761), 1, + anon_sym_op, + ACTIONS(1763), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + anon_sym_LBRACK, + ACTIONS(1769), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1773), 1, + anon_sym_let, + ACTIONS(1775), 1, + anon_sym_raise, + ACTIONS(1777), 1, + anon_sym_if, + ACTIONS(1779), 1, + anon_sym_while, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(1785), 1, + anon_sym_u201c, + ACTIONS(1787), 1, + anon_sym_u2018, + ACTIONS(1789), 1, + anon_sym_BQUOTE, + ACTIONS(1791), 1, + anon_sym_COMMA, + ACTIONS(1793), 1, + anon_sym_RPAREN, + ACTIONS(1795), 1, + anon_sym_SEMI, + STATE(1859), 1, + aux_sym_record_exp_repeat1, + STATE(1860), 1, + aux_sym_sequence_exp_repeat1, + STATE(9828), 1, + sym_vid, + STATE(9923), 1, + sym__scon, + STATE(9924), 1, + sym_longvid, + STATE(15109), 1, + sym__exp, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25001), 1, + sym__atomic_tactic, + STATE(25036), 1, + sym_THEN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1749), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4112), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [1580] = 35, + ACTIONS(1747), 1, + sym_integer_scon, + ACTIONS(1751), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1753), 1, + sym__symbolic_ident, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1761), 1, + anon_sym_op, + ACTIONS(1763), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + anon_sym_LBRACK, + ACTIONS(1769), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1773), 1, + anon_sym_let, + ACTIONS(1775), 1, + anon_sym_raise, + ACTIONS(1777), 1, + anon_sym_if, + ACTIONS(1779), 1, + anon_sym_while, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(1785), 1, + anon_sym_u201c, + ACTIONS(1787), 1, + anon_sym_u2018, + ACTIONS(1789), 1, + anon_sym_BQUOTE, + ACTIONS(1797), 1, + anon_sym_COMMA, + ACTIONS(1799), 1, + anon_sym_RPAREN, + ACTIONS(1801), 1, + anon_sym_SEMI, + STATE(2053), 1, + aux_sym_record_exp_repeat1, + STATE(2054), 1, + aux_sym_sequence_exp_repeat1, + STATE(9828), 1, + sym_vid, + STATE(9923), 1, + sym__scon, + STATE(9924), 1, + sym_longvid, + STATE(15055), 1, + sym__exp, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25001), 1, + sym__atomic_tactic, + STATE(25036), 1, + sym_THEN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1749), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4112), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [1713] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(1803), 1, + sym_integer_scon, + ACTIONS(1807), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1809), 1, + sym__symbolic_ident, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + anon_sym_op, + ACTIONS(1815), 1, + anon_sym_LBRACE, + ACTIONS(1817), 1, + anon_sym_POUND, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1821), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1823), 1, + anon_sym_let, + ACTIONS(1825), 1, + anon_sym_u201c, + ACTIONS(1827), 1, + anon_sym_u2018, + ACTIONS(1829), 1, + anon_sym_BQUOTE, + STATE(5962), 1, + sym__scon, + STATE(5963), 1, + sym_longvid, + STATE(6481), 1, + sym_vid, + STATE(19226), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1805), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(508), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [1821] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(1831), 1, + sym_integer_scon, + ACTIONS(1837), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1840), 1, + sym__symbolic_ident, + ACTIONS(1843), 1, + anon_sym_LPAREN, + ACTIONS(1846), 1, + anon_sym_op, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(1852), 1, + anon_sym_POUND, + ACTIONS(1855), 1, + anon_sym_LBRACK, + ACTIONS(1858), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1861), 1, + anon_sym_let, + ACTIONS(1864), 1, + anon_sym_u201c, + ACTIONS(1867), 1, + anon_sym_u2018, + ACTIONS(1870), 1, + anon_sym_BQUOTE, + STATE(6262), 1, + sym__scon, + STATE(6263), 1, + sym_longvid, + STATE(6485), 1, + sym_vid, + STATE(19171), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1834), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(502), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [1929] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(1873), 1, + sym_integer_scon, + ACTIONS(1879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1882), 1, + sym__symbolic_ident, + ACTIONS(1885), 1, + anon_sym_LPAREN, + ACTIONS(1888), 1, + anon_sym_op, + ACTIONS(1891), 1, + anon_sym_LBRACE, + ACTIONS(1894), 1, + anon_sym_POUND, + ACTIONS(1897), 1, + anon_sym_LBRACK, + ACTIONS(1900), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1903), 1, + anon_sym_let, + ACTIONS(1906), 1, + anon_sym_u201c, + ACTIONS(1909), 1, + anon_sym_u2018, + ACTIONS(1912), 1, + anon_sym_BQUOTE, + STATE(6369), 1, + sym__scon, + STATE(6371), 1, + sym_longvid, + STATE(6533), 1, + sym_vid, + STATE(19237), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1876), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(503), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [2037] = 23, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(505), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [2145] = 23, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(506), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [2253] = 23, + ACTIONS(1943), 1, + sym_integer_scon, + ACTIONS(1949), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1952), 1, + sym__symbolic_ident, + ACTIONS(1955), 1, + anon_sym_LPAREN, + ACTIONS(1958), 1, + anon_sym_op, + ACTIONS(1961), 1, + anon_sym_LBRACE, + ACTIONS(1964), 1, + anon_sym_POUND, + ACTIONS(1967), 1, + anon_sym_LBRACK, + ACTIONS(1970), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1973), 1, + anon_sym_let, + ACTIONS(1976), 1, + anon_sym_u201c, + ACTIONS(1979), 1, + anon_sym_u2018, + ACTIONS(1982), 1, + anon_sym_BQUOTE, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1946), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(506), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [2361] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(1985), 1, + sym_integer_scon, + ACTIONS(1989), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1991), 1, + sym__symbolic_ident, + ACTIONS(1993), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_op, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(1999), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_LBRACK, + ACTIONS(2003), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2005), 1, + anon_sym_let, + ACTIONS(2007), 1, + anon_sym_u201c, + ACTIONS(2009), 1, + anon_sym_u2018, + ACTIONS(2011), 1, + anon_sym_BQUOTE, + STATE(6262), 1, + sym__scon, + STATE(6263), 1, + sym_longvid, + STATE(6485), 1, + sym_vid, + STATE(19171), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1987), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(502), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [2469] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(1803), 1, + sym_integer_scon, + ACTIONS(1807), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1809), 1, + sym__symbolic_ident, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + anon_sym_op, + ACTIONS(1815), 1, + anon_sym_LBRACE, + ACTIONS(1817), 1, + anon_sym_POUND, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1821), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1823), 1, + anon_sym_let, + ACTIONS(1825), 1, + anon_sym_u201c, + ACTIONS(1827), 1, + anon_sym_u2018, + ACTIONS(1829), 1, + anon_sym_BQUOTE, + STATE(5962), 1, + sym__scon, + STATE(5963), 1, + sym_longvid, + STATE(6481), 1, + sym_vid, + STATE(19226), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1805), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(509), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [2577] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(2013), 1, + sym_integer_scon, + ACTIONS(2019), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2022), 1, + sym__symbolic_ident, + ACTIONS(2025), 1, + anon_sym_LPAREN, + ACTIONS(2028), 1, + anon_sym_op, + ACTIONS(2031), 1, + anon_sym_LBRACE, + ACTIONS(2034), 1, + anon_sym_POUND, + ACTIONS(2037), 1, + anon_sym_LBRACK, + ACTIONS(2040), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2043), 1, + anon_sym_let, + ACTIONS(2046), 1, + anon_sym_u201c, + ACTIONS(2049), 1, + anon_sym_u2018, + ACTIONS(2052), 1, + anon_sym_BQUOTE, + STATE(5962), 1, + sym__scon, + STATE(5963), 1, + sym_longvid, + STATE(6481), 1, + sym_vid, + STATE(19226), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2016), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(509), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [2685] = 23, + ACTIONS(2055), 1, + sym_integer_scon, + ACTIONS(2059), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2061), 1, + sym__symbolic_ident, + ACTIONS(2063), 1, + anon_sym_LPAREN, + ACTIONS(2065), 1, + anon_sym_op, + ACTIONS(2067), 1, + anon_sym_LBRACE, + ACTIONS(2069), 1, + anon_sym_POUND, + ACTIONS(2071), 1, + anon_sym_LBRACK, + ACTIONS(2073), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2075), 1, + anon_sym_let, + ACTIONS(2077), 1, + anon_sym_u201c, + ACTIONS(2079), 1, + anon_sym_u2018, + ACTIONS(2081), 1, + anon_sym_BQUOTE, + STATE(5861), 1, + sym_vid, + STATE(6077), 1, + sym__scon, + STATE(6080), 1, + sym_longvid, + STATE(18806), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(2057), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(511), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [2793] = 23, + ACTIONS(2055), 1, + sym_integer_scon, + ACTIONS(2059), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2061), 1, + sym__symbolic_ident, + ACTIONS(2063), 1, + anon_sym_LPAREN, + ACTIONS(2065), 1, + anon_sym_op, + ACTIONS(2067), 1, + anon_sym_LBRACE, + ACTIONS(2069), 1, + anon_sym_POUND, + ACTIONS(2071), 1, + anon_sym_LBRACK, + ACTIONS(2073), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2075), 1, + anon_sym_let, + ACTIONS(2077), 1, + anon_sym_u201c, + ACTIONS(2079), 1, + anon_sym_u2018, + ACTIONS(2081), 1, + anon_sym_BQUOTE, + STATE(5861), 1, + sym_vid, + STATE(6077), 1, + sym__scon, + STATE(6080), 1, + sym_longvid, + STATE(18806), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(2057), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(512), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [2901] = 23, + ACTIONS(2083), 1, + sym_integer_scon, + ACTIONS(2089), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2092), 1, + sym__symbolic_ident, + ACTIONS(2095), 1, + anon_sym_LPAREN, + ACTIONS(2098), 1, + anon_sym_op, + ACTIONS(2101), 1, + anon_sym_LBRACE, + ACTIONS(2104), 1, + anon_sym_POUND, + ACTIONS(2107), 1, + anon_sym_LBRACK, + ACTIONS(2110), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2113), 1, + anon_sym_let, + ACTIONS(2116), 1, + anon_sym_u201c, + ACTIONS(2119), 1, + anon_sym_u2018, + ACTIONS(2122), 1, + anon_sym_BQUOTE, + STATE(5861), 1, + sym_vid, + STATE(6077), 1, + sym__scon, + STATE(6080), 1, + sym_longvid, + STATE(18806), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(2086), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(512), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [3009] = 23, + ACTIONS(2125), 1, + sym_integer_scon, + ACTIONS(2129), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2131), 1, + sym__symbolic_ident, + ACTIONS(2133), 1, + anon_sym_LPAREN, + ACTIONS(2135), 1, + anon_sym_op, + ACTIONS(2137), 1, + anon_sym_LBRACE, + ACTIONS(2139), 1, + anon_sym_POUND, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2143), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2145), 1, + anon_sym_let, + ACTIONS(2147), 1, + anon_sym_u201c, + ACTIONS(2149), 1, + anon_sym_u2018, + ACTIONS(2151), 1, + anon_sym_BQUOTE, + STATE(5869), 1, + sym_vid, + STATE(6372), 1, + sym__scon, + STATE(6426), 1, + sym_longvid, + STATE(19086), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(2127), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(514), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [3117] = 23, + ACTIONS(2125), 1, + sym_integer_scon, + ACTIONS(2129), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2131), 1, + sym__symbolic_ident, + ACTIONS(2133), 1, + anon_sym_LPAREN, + ACTIONS(2135), 1, + anon_sym_op, + ACTIONS(2137), 1, + anon_sym_LBRACE, + ACTIONS(2139), 1, + anon_sym_POUND, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2143), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2145), 1, + anon_sym_let, + ACTIONS(2147), 1, + anon_sym_u201c, + ACTIONS(2149), 1, + anon_sym_u2018, + ACTIONS(2151), 1, + anon_sym_BQUOTE, + STATE(5869), 1, + sym_vid, + STATE(6372), 1, + sym__scon, + STATE(6426), 1, + sym_longvid, + STATE(19086), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(2127), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(515), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [3225] = 23, + ACTIONS(2153), 1, + sym_integer_scon, + ACTIONS(2159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2162), 1, + sym__symbolic_ident, + ACTIONS(2165), 1, + anon_sym_LPAREN, + ACTIONS(2168), 1, + anon_sym_op, + ACTIONS(2171), 1, + anon_sym_LBRACE, + ACTIONS(2174), 1, + anon_sym_POUND, + ACTIONS(2177), 1, + anon_sym_LBRACK, + ACTIONS(2180), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2183), 1, + anon_sym_let, + ACTIONS(2186), 1, + anon_sym_u201c, + ACTIONS(2189), 1, + anon_sym_u2018, + ACTIONS(2192), 1, + anon_sym_BQUOTE, + STATE(5869), 1, + sym_vid, + STATE(6372), 1, + sym__scon, + STATE(6426), 1, + sym_longvid, + STATE(19086), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(2156), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(515), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [3333] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(2195), 1, + sym_integer_scon, + ACTIONS(2199), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2201), 1, + sym__symbolic_ident, + ACTIONS(2203), 1, + anon_sym_LPAREN, + ACTIONS(2205), 1, + anon_sym_op, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_POUND, + ACTIONS(2211), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2215), 1, + anon_sym_let, + ACTIONS(2217), 1, + anon_sym_u201c, + ACTIONS(2219), 1, + anon_sym_u2018, + ACTIONS(2221), 1, + anon_sym_BQUOTE, + STATE(6315), 1, + sym__scon, + STATE(6316), 1, + sym_longvid, + STATE(6515), 1, + sym_vid, + STATE(19231), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2197), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(517), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [3441] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(2195), 1, + sym_integer_scon, + ACTIONS(2199), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2201), 1, + sym__symbolic_ident, + ACTIONS(2203), 1, + anon_sym_LPAREN, + ACTIONS(2205), 1, + anon_sym_op, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_POUND, + ACTIONS(2211), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2215), 1, + anon_sym_let, + ACTIONS(2217), 1, + anon_sym_u201c, + ACTIONS(2219), 1, + anon_sym_u2018, + ACTIONS(2221), 1, + anon_sym_BQUOTE, + STATE(6315), 1, + sym__scon, + STATE(6316), 1, + sym_longvid, + STATE(6515), 1, + sym_vid, + STATE(19231), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2197), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(518), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [3549] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(2223), 1, + sym_integer_scon, + ACTIONS(2229), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2232), 1, + sym__symbolic_ident, + ACTIONS(2235), 1, + anon_sym_LPAREN, + ACTIONS(2238), 1, + anon_sym_op, + ACTIONS(2241), 1, + anon_sym_LBRACE, + ACTIONS(2244), 1, + anon_sym_POUND, + ACTIONS(2247), 1, + anon_sym_LBRACK, + ACTIONS(2250), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2253), 1, + anon_sym_let, + ACTIONS(2256), 1, + anon_sym_u201c, + ACTIONS(2259), 1, + anon_sym_u2018, + ACTIONS(2262), 1, + anon_sym_BQUOTE, + STATE(6315), 1, + sym__scon, + STATE(6316), 1, + sym_longvid, + STATE(6515), 1, + sym_vid, + STATE(19231), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2226), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(518), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [3657] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(2265), 1, + sym_integer_scon, + ACTIONS(2269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2271), 1, + sym__symbolic_ident, + ACTIONS(2273), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_op, + ACTIONS(2277), 1, + anon_sym_LBRACE, + ACTIONS(2279), 1, + anon_sym_POUND, + ACTIONS(2281), 1, + anon_sym_LBRACK, + ACTIONS(2283), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2285), 1, + anon_sym_let, + ACTIONS(2287), 1, + anon_sym_u201c, + ACTIONS(2289), 1, + anon_sym_u2018, + ACTIONS(2291), 1, + anon_sym_BQUOTE, + STATE(5951), 1, + sym_vid, + STATE(5956), 1, + sym__scon, + STATE(5958), 1, + sym_longvid, + STATE(18970), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2267), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(521), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [3765] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(523), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [3873] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(2265), 1, + sym_integer_scon, + ACTIONS(2269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2271), 1, + sym__symbolic_ident, + ACTIONS(2273), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_op, + ACTIONS(2277), 1, + anon_sym_LBRACE, + ACTIONS(2279), 1, + anon_sym_POUND, + ACTIONS(2281), 1, + anon_sym_LBRACK, + ACTIONS(2283), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2285), 1, + anon_sym_let, + ACTIONS(2287), 1, + anon_sym_u201c, + ACTIONS(2289), 1, + anon_sym_u2018, + ACTIONS(2291), 1, + anon_sym_BQUOTE, + STATE(5951), 1, + sym_vid, + STATE(5956), 1, + sym__scon, + STATE(5958), 1, + sym_longvid, + STATE(18970), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2267), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(522), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [3981] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(2321), 1, + sym_integer_scon, + ACTIONS(2327), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2330), 1, + sym__symbolic_ident, + ACTIONS(2333), 1, + anon_sym_LPAREN, + ACTIONS(2336), 1, + anon_sym_op, + ACTIONS(2339), 1, + anon_sym_LBRACE, + ACTIONS(2342), 1, + anon_sym_POUND, + ACTIONS(2345), 1, + anon_sym_LBRACK, + ACTIONS(2348), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2351), 1, + anon_sym_let, + ACTIONS(2354), 1, + anon_sym_u201c, + ACTIONS(2357), 1, + anon_sym_u2018, + ACTIONS(2360), 1, + anon_sym_BQUOTE, + STATE(5951), 1, + sym_vid, + STATE(5956), 1, + sym__scon, + STATE(5958), 1, + sym_longvid, + STATE(18970), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2324), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(522), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [4089] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(524), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [4197] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(2363), 1, + sym_integer_scon, + ACTIONS(2369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2372), 1, + sym__symbolic_ident, + ACTIONS(2375), 1, + anon_sym_LPAREN, + ACTIONS(2378), 1, + anon_sym_op, + ACTIONS(2381), 1, + anon_sym_LBRACE, + ACTIONS(2384), 1, + anon_sym_POUND, + ACTIONS(2387), 1, + anon_sym_LBRACK, + ACTIONS(2390), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2393), 1, + anon_sym_let, + ACTIONS(2396), 1, + anon_sym_u201c, + ACTIONS(2399), 1, + anon_sym_u2018, + ACTIONS(2402), 1, + anon_sym_BQUOTE, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2366), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(524), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [4305] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(527), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [4413] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(2433), 1, + sym_integer_scon, + ACTIONS(2437), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2439), 1, + sym__symbolic_ident, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_op, + ACTIONS(2445), 1, + anon_sym_LBRACE, + ACTIONS(2447), 1, + anon_sym_POUND, + ACTIONS(2449), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2453), 1, + anon_sym_let, + ACTIONS(2455), 1, + anon_sym_u201c, + ACTIONS(2457), 1, + anon_sym_u2018, + ACTIONS(2459), 1, + anon_sym_BQUOTE, + STATE(6369), 1, + sym__scon, + STATE(6371), 1, + sym_longvid, + STATE(6533), 1, + sym_vid, + STATE(19237), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2435), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(532), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [4521] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(528), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [4629] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(2461), 1, + sym_integer_scon, + ACTIONS(2467), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2470), 1, + sym__symbolic_ident, + ACTIONS(2473), 1, + anon_sym_LPAREN, + ACTIONS(2476), 1, + anon_sym_op, + ACTIONS(2479), 1, + anon_sym_LBRACE, + ACTIONS(2482), 1, + anon_sym_POUND, + ACTIONS(2485), 1, + anon_sym_LBRACK, + ACTIONS(2488), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2491), 1, + anon_sym_let, + ACTIONS(2494), 1, + anon_sym_u201c, + ACTIONS(2497), 1, + anon_sym_u2018, + ACTIONS(2500), 1, + anon_sym_BQUOTE, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2464), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(528), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [4737] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(2503), 1, + sym_integer_scon, + ACTIONS(2507), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2509), 1, + sym__symbolic_ident, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + anon_sym_op, + ACTIONS(2515), 1, + anon_sym_LBRACE, + ACTIONS(2517), 1, + anon_sym_POUND, + ACTIONS(2519), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2523), 1, + anon_sym_let, + ACTIONS(2525), 1, + anon_sym_u201c, + ACTIONS(2527), 1, + anon_sym_u2018, + ACTIONS(2529), 1, + anon_sym_BQUOTE, + STATE(6193), 1, + sym__scon, + STATE(6194), 1, + sym_longvid, + STATE(6370), 1, + sym_vid, + STATE(19132), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2505), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(530), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [4845] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(2503), 1, + sym_integer_scon, + ACTIONS(2507), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2509), 1, + sym__symbolic_ident, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + anon_sym_op, + ACTIONS(2515), 1, + anon_sym_LBRACE, + ACTIONS(2517), 1, + anon_sym_POUND, + ACTIONS(2519), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2523), 1, + anon_sym_let, + ACTIONS(2525), 1, + anon_sym_u201c, + ACTIONS(2527), 1, + anon_sym_u2018, + ACTIONS(2529), 1, + anon_sym_BQUOTE, + STATE(6193), 1, + sym__scon, + STATE(6194), 1, + sym_longvid, + STATE(6370), 1, + sym_vid, + STATE(19132), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2505), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(531), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [4953] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(2531), 1, + sym_integer_scon, + ACTIONS(2537), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2540), 1, + sym__symbolic_ident, + ACTIONS(2543), 1, + anon_sym_LPAREN, + ACTIONS(2546), 1, + anon_sym_op, + ACTIONS(2549), 1, + anon_sym_LBRACE, + ACTIONS(2552), 1, + anon_sym_POUND, + ACTIONS(2555), 1, + anon_sym_LBRACK, + ACTIONS(2558), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2561), 1, + anon_sym_let, + ACTIONS(2564), 1, + anon_sym_u201c, + ACTIONS(2567), 1, + anon_sym_u2018, + ACTIONS(2570), 1, + anon_sym_BQUOTE, + STATE(6193), 1, + sym__scon, + STATE(6194), 1, + sym_longvid, + STATE(6370), 1, + sym_vid, + STATE(19132), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2534), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(531), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [5061] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(2433), 1, + sym_integer_scon, + ACTIONS(2437), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2439), 1, + sym__symbolic_ident, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_op, + ACTIONS(2445), 1, + anon_sym_LBRACE, + ACTIONS(2447), 1, + anon_sym_POUND, + ACTIONS(2449), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2453), 1, + anon_sym_let, + ACTIONS(2455), 1, + anon_sym_u201c, + ACTIONS(2457), 1, + anon_sym_u2018, + ACTIONS(2459), 1, + anon_sym_BQUOTE, + STATE(6369), 1, + sym__scon, + STATE(6371), 1, + sym_longvid, + STATE(6533), 1, + sym_vid, + STATE(19237), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2435), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(503), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [5169] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(1985), 1, + sym_integer_scon, + ACTIONS(1989), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1991), 1, + sym__symbolic_ident, + ACTIONS(1993), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_op, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(1999), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_LBRACK, + ACTIONS(2003), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2005), 1, + anon_sym_let, + ACTIONS(2007), 1, + anon_sym_u201c, + ACTIONS(2009), 1, + anon_sym_u2018, + ACTIONS(2011), 1, + anon_sym_BQUOTE, + STATE(6262), 1, + sym__scon, + STATE(6263), 1, + sym_longvid, + STATE(6485), 1, + sym_vid, + STATE(19171), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1987), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(507), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [5277] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2583), 1, + anon_sym_COMMA, + ACTIONS(2585), 1, + anon_sym_RPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2597), 1, + anon_sym_SEMI, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(2653), 1, + aux_sym_record_exp_repeat1, + STATE(2654), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15413), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [5404] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(2617), 1, + sym_integer_scon, + ACTIONS(2623), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2626), 1, + sym__symbolic_ident, + ACTIONS(2629), 1, + anon_sym_LPAREN, + ACTIONS(2632), 1, + anon_sym_op, + ACTIONS(2635), 1, + anon_sym_LBRACE, + ACTIONS(2638), 1, + anon_sym_POUND, + ACTIONS(2641), 1, + anon_sym_LBRACK, + ACTIONS(2644), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2647), 1, + anon_sym_let, + ACTIONS(2650), 1, + anon_sym_u201c, + ACTIONS(2653), 1, + anon_sym_u2018, + ACTIONS(2656), 1, + anon_sym_BQUOTE, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2620), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(535), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [5511] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2663), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22645), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [5638] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(2665), 1, + sym_integer_scon, + ACTIONS(2669), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2671), 1, + sym__symbolic_ident, + ACTIONS(2673), 1, + anon_sym_LPAREN, + ACTIONS(2675), 1, + anon_sym_op, + ACTIONS(2677), 1, + anon_sym_LBRACE, + ACTIONS(2679), 1, + anon_sym_POUND, + ACTIONS(2681), 1, + anon_sym_LBRACK, + ACTIONS(2683), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2685), 1, + anon_sym_let, + ACTIONS(2687), 1, + anon_sym_u201c, + ACTIONS(2689), 1, + anon_sym_u2018, + ACTIONS(2691), 1, + anon_sym_BQUOTE, + STATE(6607), 1, + sym__scon, + STATE(6608), 1, + sym_longvid, + STATE(6662), 1, + sym_vid, + STATE(18812), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2667), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(538), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [5745] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(2665), 1, + sym_integer_scon, + ACTIONS(2669), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2671), 1, + sym__symbolic_ident, + ACTIONS(2673), 1, + anon_sym_LPAREN, + ACTIONS(2675), 1, + anon_sym_op, + ACTIONS(2677), 1, + anon_sym_LBRACE, + ACTIONS(2679), 1, + anon_sym_POUND, + ACTIONS(2681), 1, + anon_sym_LBRACK, + ACTIONS(2683), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2685), 1, + anon_sym_let, + ACTIONS(2687), 1, + anon_sym_u201c, + ACTIONS(2689), 1, + anon_sym_u2018, + ACTIONS(2691), 1, + anon_sym_BQUOTE, + STATE(6607), 1, + sym__scon, + STATE(6608), 1, + sym_longvid, + STATE(6662), 1, + sym_vid, + STATE(18812), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2667), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(539), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [5852] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(2693), 1, + sym_integer_scon, + ACTIONS(2699), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2702), 1, + sym__symbolic_ident, + ACTIONS(2705), 1, + anon_sym_LPAREN, + ACTIONS(2708), 1, + anon_sym_op, + ACTIONS(2711), 1, + anon_sym_LBRACE, + ACTIONS(2714), 1, + anon_sym_POUND, + ACTIONS(2717), 1, + anon_sym_LBRACK, + ACTIONS(2720), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2723), 1, + anon_sym_let, + ACTIONS(2726), 1, + anon_sym_u201c, + ACTIONS(2729), 1, + anon_sym_u2018, + ACTIONS(2732), 1, + anon_sym_BQUOTE, + STATE(6607), 1, + sym__scon, + STATE(6608), 1, + sym_longvid, + STATE(6662), 1, + sym_vid, + STATE(18812), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2696), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(539), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [5959] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(2735), 1, + sym_integer_scon, + ACTIONS(2739), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2741), 1, + sym__symbolic_ident, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2745), 1, + anon_sym_op, + ACTIONS(2747), 1, + anon_sym_LBRACE, + ACTIONS(2749), 1, + anon_sym_POUND, + ACTIONS(2751), 1, + anon_sym_LBRACK, + ACTIONS(2753), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2755), 1, + anon_sym_let, + ACTIONS(2757), 1, + anon_sym_u201c, + ACTIONS(2759), 1, + anon_sym_u2018, + ACTIONS(2761), 1, + anon_sym_BQUOTE, + STATE(7228), 1, + sym__scon, + STATE(7230), 1, + sym_longvid, + STATE(7336), 1, + sym_vid, + STATE(18980), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2737), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(541), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [6066] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(2735), 1, + sym_integer_scon, + ACTIONS(2739), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2741), 1, + sym__symbolic_ident, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2745), 1, + anon_sym_op, + ACTIONS(2747), 1, + anon_sym_LBRACE, + ACTIONS(2749), 1, + anon_sym_POUND, + ACTIONS(2751), 1, + anon_sym_LBRACK, + ACTIONS(2753), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2755), 1, + anon_sym_let, + ACTIONS(2757), 1, + anon_sym_u201c, + ACTIONS(2759), 1, + anon_sym_u2018, + ACTIONS(2761), 1, + anon_sym_BQUOTE, + STATE(7228), 1, + sym__scon, + STATE(7230), 1, + sym_longvid, + STATE(7336), 1, + sym_vid, + STATE(18980), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2737), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(542), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [6173] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(2763), 1, + sym_integer_scon, + ACTIONS(2769), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2772), 1, + sym__symbolic_ident, + ACTIONS(2775), 1, + anon_sym_LPAREN, + ACTIONS(2778), 1, + anon_sym_op, + ACTIONS(2781), 1, + anon_sym_LBRACE, + ACTIONS(2784), 1, + anon_sym_POUND, + ACTIONS(2787), 1, + anon_sym_LBRACK, + ACTIONS(2790), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2793), 1, + anon_sym_let, + ACTIONS(2796), 1, + anon_sym_u201c, + ACTIONS(2799), 1, + anon_sym_u2018, + ACTIONS(2802), 1, + anon_sym_BQUOTE, + STATE(7228), 1, + sym__scon, + STATE(7230), 1, + sym_longvid, + STATE(7336), 1, + sym_vid, + STATE(18980), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2766), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(542), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [6280] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(544), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [6387] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(545), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [6494] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(2833), 1, + sym_integer_scon, + ACTIONS(2839), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2842), 1, + sym__symbolic_ident, + ACTIONS(2845), 1, + anon_sym_LPAREN, + ACTIONS(2848), 1, + anon_sym_op, + ACTIONS(2851), 1, + anon_sym_LBRACE, + ACTIONS(2854), 1, + anon_sym_POUND, + ACTIONS(2857), 1, + anon_sym_LBRACK, + ACTIONS(2860), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2863), 1, + anon_sym_let, + ACTIONS(2866), 1, + anon_sym_u201c, + ACTIONS(2869), 1, + anon_sym_u2018, + ACTIONS(2872), 1, + anon_sym_BQUOTE, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2836), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(545), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [6601] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(2875), 1, + sym_integer_scon, + ACTIONS(2879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2881), 1, + sym__symbolic_ident, + ACTIONS(2883), 1, + anon_sym_LPAREN, + ACTIONS(2885), 1, + anon_sym_op, + ACTIONS(2887), 1, + anon_sym_LBRACE, + ACTIONS(2889), 1, + anon_sym_POUND, + ACTIONS(2891), 1, + anon_sym_LBRACK, + ACTIONS(2893), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2895), 1, + anon_sym_let, + ACTIONS(2897), 1, + anon_sym_u201c, + ACTIONS(2899), 1, + anon_sym_u2018, + ACTIONS(2901), 1, + anon_sym_BQUOTE, + STATE(6716), 1, + sym__scon, + STATE(6717), 1, + sym_longvid, + STATE(6884), 1, + sym_vid, + STATE(19046), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2877), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(547), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [6708] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(2875), 1, + sym_integer_scon, + ACTIONS(2879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2881), 1, + sym__symbolic_ident, + ACTIONS(2883), 1, + anon_sym_LPAREN, + ACTIONS(2885), 1, + anon_sym_op, + ACTIONS(2887), 1, + anon_sym_LBRACE, + ACTIONS(2889), 1, + anon_sym_POUND, + ACTIONS(2891), 1, + anon_sym_LBRACK, + ACTIONS(2893), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2895), 1, + anon_sym_let, + ACTIONS(2897), 1, + anon_sym_u201c, + ACTIONS(2899), 1, + anon_sym_u2018, + ACTIONS(2901), 1, + anon_sym_BQUOTE, + STATE(6716), 1, + sym__scon, + STATE(6717), 1, + sym_longvid, + STATE(6884), 1, + sym_vid, + STATE(19046), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2877), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(548), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [6815] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(2903), 1, + sym_integer_scon, + ACTIONS(2909), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2912), 1, + sym__symbolic_ident, + ACTIONS(2915), 1, + anon_sym_LPAREN, + ACTIONS(2918), 1, + anon_sym_op, + ACTIONS(2921), 1, + anon_sym_LBRACE, + ACTIONS(2924), 1, + anon_sym_POUND, + ACTIONS(2927), 1, + anon_sym_LBRACK, + ACTIONS(2930), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2933), 1, + anon_sym_let, + ACTIONS(2936), 1, + anon_sym_u201c, + ACTIONS(2939), 1, + anon_sym_u2018, + ACTIONS(2942), 1, + anon_sym_BQUOTE, + STATE(6716), 1, + sym__scon, + STATE(6717), 1, + sym_longvid, + STATE(6884), 1, + sym_vid, + STATE(19046), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2906), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(548), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [6922] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(2945), 1, + sym_integer_scon, + ACTIONS(2949), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2951), 1, + sym__symbolic_ident, + ACTIONS(2953), 1, + anon_sym_LPAREN, + ACTIONS(2955), 1, + anon_sym_op, + ACTIONS(2957), 1, + anon_sym_LBRACE, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(2961), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2965), 1, + anon_sym_let, + ACTIONS(2967), 1, + anon_sym_u201c, + ACTIONS(2969), 1, + anon_sym_u2018, + ACTIONS(2971), 1, + anon_sym_BQUOTE, + STATE(6771), 1, + sym__scon, + STATE(6772), 1, + sym_longvid, + STATE(6887), 1, + sym_vid, + STATE(19207), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2947), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(550), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [7029] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(2945), 1, + sym_integer_scon, + ACTIONS(2949), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2951), 1, + sym__symbolic_ident, + ACTIONS(2953), 1, + anon_sym_LPAREN, + ACTIONS(2955), 1, + anon_sym_op, + ACTIONS(2957), 1, + anon_sym_LBRACE, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(2961), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2965), 1, + anon_sym_let, + ACTIONS(2967), 1, + anon_sym_u201c, + ACTIONS(2969), 1, + anon_sym_u2018, + ACTIONS(2971), 1, + anon_sym_BQUOTE, + STATE(6771), 1, + sym__scon, + STATE(6772), 1, + sym_longvid, + STATE(6887), 1, + sym_vid, + STATE(19207), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2947), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(557), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [7136] = 23, + ACTIONS(2973), 1, + sym_integer_scon, + ACTIONS(2977), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2979), 1, + sym__symbolic_ident, + ACTIONS(2981), 1, + anon_sym_LPAREN, + ACTIONS(2983), 1, + anon_sym_op, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_POUND, + ACTIONS(2989), 1, + anon_sym_LBRACK, + ACTIONS(2991), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2993), 1, + anon_sym_let, + ACTIONS(2995), 1, + anon_sym_u201c, + ACTIONS(2997), 1, + anon_sym_u2018, + ACTIONS(2999), 1, + anon_sym_BQUOTE, + STATE(7196), 1, + sym_vid, + STATE(7335), 1, + sym__scon, + STATE(7337), 1, + sym_longvid, + STATE(18945), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(2975), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(552), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 18, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [7243] = 23, + ACTIONS(2973), 1, + sym_integer_scon, + ACTIONS(2977), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2979), 1, + sym__symbolic_ident, + ACTIONS(2981), 1, + anon_sym_LPAREN, + ACTIONS(2983), 1, + anon_sym_op, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_POUND, + ACTIONS(2989), 1, + anon_sym_LBRACK, + ACTIONS(2991), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2993), 1, + anon_sym_let, + ACTIONS(2995), 1, + anon_sym_u201c, + ACTIONS(2997), 1, + anon_sym_u2018, + ACTIONS(2999), 1, + anon_sym_BQUOTE, + STATE(7196), 1, + sym_vid, + STATE(7335), 1, + sym__scon, + STATE(7337), 1, + sym_longvid, + STATE(18945), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(2975), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(553), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 18, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [7350] = 23, + ACTIONS(3001), 1, + sym_integer_scon, + ACTIONS(3007), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3010), 1, + sym__symbolic_ident, + ACTIONS(3013), 1, + anon_sym_LPAREN, + ACTIONS(3016), 1, + anon_sym_op, + ACTIONS(3019), 1, + anon_sym_LBRACE, + ACTIONS(3022), 1, + anon_sym_POUND, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3028), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3031), 1, + anon_sym_let, + ACTIONS(3034), 1, + anon_sym_u201c, + ACTIONS(3037), 1, + anon_sym_u2018, + ACTIONS(3040), 1, + anon_sym_BQUOTE, + STATE(7196), 1, + sym_vid, + STATE(7335), 1, + sym__scon, + STATE(7337), 1, + sym_longvid, + STATE(18945), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(3004), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(553), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 18, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [7457] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(3043), 1, + sym_integer_scon, + ACTIONS(3047), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3049), 1, + sym__symbolic_ident, + ACTIONS(3051), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, + anon_sym_op, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, + anon_sym_POUND, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3061), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3063), 1, + anon_sym_let, + ACTIONS(3065), 1, + anon_sym_u201c, + ACTIONS(3067), 1, + anon_sym_u2018, + ACTIONS(3069), 1, + anon_sym_BQUOTE, + STATE(6577), 1, + sym_vid, + STATE(7195), 1, + sym__scon, + STATE(7197), 1, + sym_longvid, + STATE(18709), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(555), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [7564] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(3043), 1, + sym_integer_scon, + ACTIONS(3047), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3049), 1, + sym__symbolic_ident, + ACTIONS(3051), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, + anon_sym_op, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, + anon_sym_POUND, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3061), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3063), 1, + anon_sym_let, + ACTIONS(3065), 1, + anon_sym_u201c, + ACTIONS(3067), 1, + anon_sym_u2018, + ACTIONS(3069), 1, + anon_sym_BQUOTE, + STATE(6577), 1, + sym_vid, + STATE(7195), 1, + sym__scon, + STATE(7197), 1, + sym_longvid, + STATE(18709), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(556), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [7671] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(3071), 1, + sym_integer_scon, + ACTIONS(3077), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3080), 1, + sym__symbolic_ident, + ACTIONS(3083), 1, + anon_sym_LPAREN, + ACTIONS(3086), 1, + anon_sym_op, + ACTIONS(3089), 1, + anon_sym_LBRACE, + ACTIONS(3092), 1, + anon_sym_POUND, + ACTIONS(3095), 1, + anon_sym_LBRACK, + ACTIONS(3098), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3101), 1, + anon_sym_let, + ACTIONS(3104), 1, + anon_sym_u201c, + ACTIONS(3107), 1, + anon_sym_u2018, + ACTIONS(3110), 1, + anon_sym_BQUOTE, + STATE(6577), 1, + sym_vid, + STATE(7195), 1, + sym__scon, + STATE(7197), 1, + sym_longvid, + STATE(18709), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3074), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(556), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [7778] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(3113), 1, + sym_integer_scon, + ACTIONS(3119), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3122), 1, + sym__symbolic_ident, + ACTIONS(3125), 1, + anon_sym_LPAREN, + ACTIONS(3128), 1, + anon_sym_op, + ACTIONS(3131), 1, + anon_sym_LBRACE, + ACTIONS(3134), 1, + anon_sym_POUND, + ACTIONS(3137), 1, + anon_sym_LBRACK, + ACTIONS(3140), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3143), 1, + anon_sym_let, + ACTIONS(3146), 1, + anon_sym_u201c, + ACTIONS(3149), 1, + anon_sym_u2018, + ACTIONS(3152), 1, + anon_sym_BQUOTE, + STATE(6771), 1, + sym__scon, + STATE(6772), 1, + sym_longvid, + STATE(6887), 1, + sym_vid, + STATE(19207), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3116), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(557), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [7885] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(3155), 1, + sym_integer_scon, + ACTIONS(3159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3161), 1, + sym__symbolic_ident, + ACTIONS(3163), 1, + anon_sym_LPAREN, + ACTIONS(3165), 1, + anon_sym_op, + ACTIONS(3167), 1, + anon_sym_LBRACE, + ACTIONS(3169), 1, + anon_sym_POUND, + ACTIONS(3171), 1, + anon_sym_LBRACK, + ACTIONS(3173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3175), 1, + anon_sym_let, + ACTIONS(3177), 1, + anon_sym_u201c, + ACTIONS(3179), 1, + anon_sym_u2018, + ACTIONS(3181), 1, + anon_sym_BQUOTE, + STATE(6825), 1, + sym__scon, + STATE(6826), 1, + sym_longvid, + STATE(6891), 1, + sym_vid, + STATE(18907), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(559), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [7992] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(3155), 1, + sym_integer_scon, + ACTIONS(3159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3161), 1, + sym__symbolic_ident, + ACTIONS(3163), 1, + anon_sym_LPAREN, + ACTIONS(3165), 1, + anon_sym_op, + ACTIONS(3167), 1, + anon_sym_LBRACE, + ACTIONS(3169), 1, + anon_sym_POUND, + ACTIONS(3171), 1, + anon_sym_LBRACK, + ACTIONS(3173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3175), 1, + anon_sym_let, + ACTIONS(3177), 1, + anon_sym_u201c, + ACTIONS(3179), 1, + anon_sym_u2018, + ACTIONS(3181), 1, + anon_sym_BQUOTE, + STATE(6825), 1, + sym__scon, + STATE(6826), 1, + sym_longvid, + STATE(6891), 1, + sym_vid, + STATE(18907), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(560), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [8099] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(3183), 1, + sym_integer_scon, + ACTIONS(3189), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3192), 1, + sym__symbolic_ident, + ACTIONS(3195), 1, + anon_sym_LPAREN, + ACTIONS(3198), 1, + anon_sym_op, + ACTIONS(3201), 1, + anon_sym_LBRACE, + ACTIONS(3204), 1, + anon_sym_POUND, + ACTIONS(3207), 1, + anon_sym_LBRACK, + ACTIONS(3210), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3213), 1, + anon_sym_let, + ACTIONS(3216), 1, + anon_sym_u201c, + ACTIONS(3219), 1, + anon_sym_u2018, + ACTIONS(3222), 1, + anon_sym_BQUOTE, + STATE(6825), 1, + sym__scon, + STATE(6826), 1, + sym_longvid, + STATE(6891), 1, + sym_vid, + STATE(18907), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3186), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(560), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [8206] = 23, + ACTIONS(3225), 1, + sym_integer_scon, + ACTIONS(3229), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3231), 1, + sym__symbolic_ident, + ACTIONS(3233), 1, + anon_sym_LPAREN, + ACTIONS(3235), 1, + anon_sym_op, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + anon_sym_POUND, + ACTIONS(3241), 1, + anon_sym_LBRACK, + ACTIONS(3243), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3245), 1, + anon_sym_let, + ACTIONS(3247), 1, + anon_sym_u201c, + ACTIONS(3249), 1, + anon_sym_u2018, + ACTIONS(3251), 1, + anon_sym_BQUOTE, + STATE(6912), 1, + sym_vid, + STATE(7284), 1, + sym__scon, + STATE(7286), 1, + sym_longvid, + STATE(18725), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(3227), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(562), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 18, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [8313] = 23, + ACTIONS(3225), 1, + sym_integer_scon, + ACTIONS(3229), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3231), 1, + sym__symbolic_ident, + ACTIONS(3233), 1, + anon_sym_LPAREN, + ACTIONS(3235), 1, + anon_sym_op, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + anon_sym_POUND, + ACTIONS(3241), 1, + anon_sym_LBRACK, + ACTIONS(3243), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3245), 1, + anon_sym_let, + ACTIONS(3247), 1, + anon_sym_u201c, + ACTIONS(3249), 1, + anon_sym_u2018, + ACTIONS(3251), 1, + anon_sym_BQUOTE, + STATE(6912), 1, + sym_vid, + STATE(7284), 1, + sym__scon, + STATE(7286), 1, + sym_longvid, + STATE(18725), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(3227), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(563), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 18, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [8420] = 23, + ACTIONS(3253), 1, + sym_integer_scon, + ACTIONS(3259), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3262), 1, + sym__symbolic_ident, + ACTIONS(3265), 1, + anon_sym_LPAREN, + ACTIONS(3268), 1, + anon_sym_op, + ACTIONS(3271), 1, + anon_sym_LBRACE, + ACTIONS(3274), 1, + anon_sym_POUND, + ACTIONS(3277), 1, + anon_sym_LBRACK, + ACTIONS(3280), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3283), 1, + anon_sym_let, + ACTIONS(3286), 1, + anon_sym_u201c, + ACTIONS(3289), 1, + anon_sym_u2018, + ACTIONS(3292), 1, + anon_sym_BQUOTE, + STATE(6912), 1, + sym_vid, + STATE(7284), 1, + sym__scon, + STATE(7286), 1, + sym_longvid, + STATE(18725), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(3256), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(563), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 18, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [8527] = 23, + ACTIONS(3295), 1, + sym_integer_scon, + ACTIONS(3299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3301), 1, + sym__symbolic_ident, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_op, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_POUND, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3315), 1, + anon_sym_let, + ACTIONS(3317), 1, + anon_sym_u201c, + ACTIONS(3319), 1, + anon_sym_u2018, + ACTIONS(3321), 1, + anon_sym_BQUOTE, + STATE(7064), 1, + sym_vid, + STATE(7403), 1, + sym__scon, + STATE(7404), 1, + sym_longvid, + STATE(18962), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(3297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(565), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 18, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [8634] = 23, + ACTIONS(3295), 1, + sym_integer_scon, + ACTIONS(3299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3301), 1, + sym__symbolic_ident, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_op, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_POUND, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3315), 1, + anon_sym_let, + ACTIONS(3317), 1, + anon_sym_u201c, + ACTIONS(3319), 1, + anon_sym_u2018, + ACTIONS(3321), 1, + anon_sym_BQUOTE, + STATE(7064), 1, + sym_vid, + STATE(7403), 1, + sym__scon, + STATE(7404), 1, + sym_longvid, + STATE(18962), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(3297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(566), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 18, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [8741] = 23, + ACTIONS(3323), 1, + sym_integer_scon, + ACTIONS(3329), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3332), 1, + sym__symbolic_ident, + ACTIONS(3335), 1, + anon_sym_LPAREN, + ACTIONS(3338), 1, + anon_sym_op, + ACTIONS(3341), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_POUND, + ACTIONS(3347), 1, + anon_sym_LBRACK, + ACTIONS(3350), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3353), 1, + anon_sym_let, + ACTIONS(3356), 1, + anon_sym_u201c, + ACTIONS(3359), 1, + anon_sym_u2018, + ACTIONS(3362), 1, + anon_sym_BQUOTE, + STATE(7064), 1, + sym_vid, + STATE(7403), 1, + sym__scon, + STATE(7404), 1, + sym_longvid, + STATE(18962), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(3326), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(566), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 18, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [8848] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(3365), 1, + sym_integer_scon, + ACTIONS(3369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3371), 1, + sym__symbolic_ident, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_op, + ACTIONS(3377), 1, + anon_sym_LBRACE, + ACTIONS(3379), 1, + anon_sym_POUND, + ACTIONS(3381), 1, + anon_sym_LBRACK, + ACTIONS(3383), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3385), 1, + anon_sym_let, + ACTIONS(3387), 1, + anon_sym_u201c, + ACTIONS(3389), 1, + anon_sym_u2018, + ACTIONS(3391), 1, + anon_sym_BQUOTE, + STATE(6904), 1, + sym__scon, + STATE(6937), 1, + sym_longvid, + STATE(7314), 1, + sym_vid, + STATE(19107), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3367), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(568), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [8955] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(3365), 1, + sym_integer_scon, + ACTIONS(3369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3371), 1, + sym__symbolic_ident, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_op, + ACTIONS(3377), 1, + anon_sym_LBRACE, + ACTIONS(3379), 1, + anon_sym_POUND, + ACTIONS(3381), 1, + anon_sym_LBRACK, + ACTIONS(3383), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3385), 1, + anon_sym_let, + ACTIONS(3387), 1, + anon_sym_u201c, + ACTIONS(3389), 1, + anon_sym_u2018, + ACTIONS(3391), 1, + anon_sym_BQUOTE, + STATE(6904), 1, + sym__scon, + STATE(6937), 1, + sym_longvid, + STATE(7314), 1, + sym_vid, + STATE(19107), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3367), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(569), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [9062] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(3393), 1, + sym_integer_scon, + ACTIONS(3399), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3402), 1, + sym__symbolic_ident, + ACTIONS(3405), 1, + anon_sym_LPAREN, + ACTIONS(3408), 1, + anon_sym_op, + ACTIONS(3411), 1, + anon_sym_LBRACE, + ACTIONS(3414), 1, + anon_sym_POUND, + ACTIONS(3417), 1, + anon_sym_LBRACK, + ACTIONS(3420), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3423), 1, + anon_sym_let, + ACTIONS(3426), 1, + anon_sym_u201c, + ACTIONS(3429), 1, + anon_sym_u2018, + ACTIONS(3432), 1, + anon_sym_BQUOTE, + STATE(6904), 1, + sym__scon, + STATE(6937), 1, + sym_longvid, + STATE(7314), 1, + sym_vid, + STATE(19107), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3396), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(569), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [9169] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3435), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24569), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [9296] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(3437), 1, + sym_integer_scon, + ACTIONS(3441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3443), 1, + sym__symbolic_ident, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_op, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_POUND, + ACTIONS(3453), 1, + anon_sym_LBRACK, + ACTIONS(3455), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3457), 1, + anon_sym_let, + ACTIONS(3459), 1, + anon_sym_u201c, + ACTIONS(3461), 1, + anon_sym_u2018, + ACTIONS(3463), 1, + anon_sym_BQUOTE, + STATE(6895), 1, + sym__scon, + STATE(6896), 1, + sym_longvid, + STATE(7063), 1, + sym_vid, + STATE(19215), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3439), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(572), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [9403] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(3437), 1, + sym_integer_scon, + ACTIONS(3441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3443), 1, + sym__symbolic_ident, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_op, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_POUND, + ACTIONS(3453), 1, + anon_sym_LBRACK, + ACTIONS(3455), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3457), 1, + anon_sym_let, + ACTIONS(3459), 1, + anon_sym_u201c, + ACTIONS(3461), 1, + anon_sym_u2018, + ACTIONS(3463), 1, + anon_sym_BQUOTE, + STATE(6895), 1, + sym__scon, + STATE(6896), 1, + sym_longvid, + STATE(7063), 1, + sym_vid, + STATE(19215), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3439), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(573), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [9510] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(3465), 1, + sym_integer_scon, + ACTIONS(3471), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3474), 1, + sym__symbolic_ident, + ACTIONS(3477), 1, + anon_sym_LPAREN, + ACTIONS(3480), 1, + anon_sym_op, + ACTIONS(3483), 1, + anon_sym_LBRACE, + ACTIONS(3486), 1, + anon_sym_POUND, + ACTIONS(3489), 1, + anon_sym_LBRACK, + ACTIONS(3492), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3495), 1, + anon_sym_let, + ACTIONS(3498), 1, + anon_sym_u201c, + ACTIONS(3501), 1, + anon_sym_u2018, + ACTIONS(3504), 1, + anon_sym_BQUOTE, + STATE(6895), 1, + sym__scon, + STATE(6896), 1, + sym_longvid, + STATE(7063), 1, + sym_vid, + STATE(19215), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3468), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(573), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [9617] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(3507), 1, + sym_integer_scon, + ACTIONS(3511), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3513), 1, + sym__symbolic_ident, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_op, + ACTIONS(3519), 1, + anon_sym_LBRACE, + ACTIONS(3521), 1, + anon_sym_POUND, + ACTIONS(3523), 1, + anon_sym_LBRACK, + ACTIONS(3525), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3527), 1, + anon_sym_let, + ACTIONS(3529), 1, + anon_sym_u201c, + ACTIONS(3531), 1, + anon_sym_u2018, + ACTIONS(3533), 1, + anon_sym_BQUOTE, + STATE(6951), 1, + sym__scon, + STATE(6952), 1, + sym_longvid, + STATE(7068), 1, + sym_vid, + STATE(18811), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3509), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(575), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [9724] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(3507), 1, + sym_integer_scon, + ACTIONS(3511), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3513), 1, + sym__symbolic_ident, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_op, + ACTIONS(3519), 1, + anon_sym_LBRACE, + ACTIONS(3521), 1, + anon_sym_POUND, + ACTIONS(3523), 1, + anon_sym_LBRACK, + ACTIONS(3525), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3527), 1, + anon_sym_let, + ACTIONS(3529), 1, + anon_sym_u201c, + ACTIONS(3531), 1, + anon_sym_u2018, + ACTIONS(3533), 1, + anon_sym_BQUOTE, + STATE(6951), 1, + sym__scon, + STATE(6952), 1, + sym_longvid, + STATE(7068), 1, + sym_vid, + STATE(18811), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3509), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(576), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [9831] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(3535), 1, + sym_integer_scon, + ACTIONS(3541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3544), 1, + sym__symbolic_ident, + ACTIONS(3547), 1, + anon_sym_LPAREN, + ACTIONS(3550), 1, + anon_sym_op, + ACTIONS(3553), 1, + anon_sym_LBRACE, + ACTIONS(3556), 1, + anon_sym_POUND, + ACTIONS(3559), 1, + anon_sym_LBRACK, + ACTIONS(3562), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3565), 1, + anon_sym_let, + ACTIONS(3568), 1, + anon_sym_u201c, + ACTIONS(3571), 1, + anon_sym_u2018, + ACTIONS(3574), 1, + anon_sym_BQUOTE, + STATE(6951), 1, + sym__scon, + STATE(6952), 1, + sym_longvid, + STATE(7068), 1, + sym_vid, + STATE(18811), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3538), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(576), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [9938] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3577), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17693), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24618), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [10065] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3579), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24067), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [10192] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3581), 1, + anon_sym_COMMA, + ACTIONS(3583), 1, + anon_sym_RPAREN, + ACTIONS(3585), 1, + anon_sym_SEMI, + STATE(1118), 1, + aux_sym_record_exp_repeat1, + STATE(1119), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15272), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [10319] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3587), 1, + anon_sym_COMMA, + ACTIONS(3589), 1, + anon_sym_RBRACK, + STATE(581), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16798), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22642), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [10446] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3591), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16823), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22985), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [10573] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3593), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23454), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [10700] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3595), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23838), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [10827] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3597), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24151), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [10954] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(3599), 1, + sym_integer_scon, + ACTIONS(3603), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3605), 1, + sym__symbolic_ident, + ACTIONS(3607), 1, + anon_sym_LPAREN, + ACTIONS(3609), 1, + anon_sym_op, + ACTIONS(3611), 1, + anon_sym_LBRACE, + ACTIONS(3613), 1, + anon_sym_POUND, + ACTIONS(3615), 1, + anon_sym_LBRACK, + ACTIONS(3617), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3619), 1, + anon_sym_let, + ACTIONS(3621), 1, + anon_sym_u201c, + ACTIONS(3623), 1, + anon_sym_u2018, + ACTIONS(3625), 1, + anon_sym_BQUOTE, + STATE(7067), 1, + sym__scon, + STATE(7069), 1, + sym_longvid, + STATE(7182), 1, + sym_vid, + STATE(18750), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3601), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(586), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [11061] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(3599), 1, + sym_integer_scon, + ACTIONS(3603), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3605), 1, + sym__symbolic_ident, + ACTIONS(3607), 1, + anon_sym_LPAREN, + ACTIONS(3609), 1, + anon_sym_op, + ACTIONS(3611), 1, + anon_sym_LBRACE, + ACTIONS(3613), 1, + anon_sym_POUND, + ACTIONS(3615), 1, + anon_sym_LBRACK, + ACTIONS(3617), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3619), 1, + anon_sym_let, + ACTIONS(3621), 1, + anon_sym_u201c, + ACTIONS(3623), 1, + anon_sym_u2018, + ACTIONS(3625), 1, + anon_sym_BQUOTE, + STATE(7067), 1, + sym__scon, + STATE(7069), 1, + sym_longvid, + STATE(7182), 1, + sym_vid, + STATE(18750), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3601), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(587), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [11168] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(3627), 1, + sym_integer_scon, + ACTIONS(3633), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3636), 1, + sym__symbolic_ident, + ACTIONS(3639), 1, + anon_sym_LPAREN, + ACTIONS(3642), 1, + anon_sym_op, + ACTIONS(3645), 1, + anon_sym_LBRACE, + ACTIONS(3648), 1, + anon_sym_POUND, + ACTIONS(3651), 1, + anon_sym_LBRACK, + ACTIONS(3654), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3657), 1, + anon_sym_let, + ACTIONS(3660), 1, + anon_sym_u201c, + ACTIONS(3663), 1, + anon_sym_u2018, + ACTIONS(3666), 1, + anon_sym_BQUOTE, + STATE(7067), 1, + sym__scon, + STATE(7069), 1, + sym_longvid, + STATE(7182), 1, + sym_vid, + STATE(18750), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3630), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(587), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [11275] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(3671), 1, + anon_sym_RPAREN, + ACTIONS(3673), 1, + anon_sym_SEMI, + STATE(1142), 1, + aux_sym_record_exp_repeat1, + STATE(1143), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15430), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [11402] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3675), 1, + anon_sym_COMMA, + ACTIONS(3677), 1, + anon_sym_RBRACK, + STATE(590), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16994), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22433), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [11529] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3679), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17013), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23254), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [11656] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3681), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24432), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [11783] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3683), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21707), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [11910] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3685), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22103), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [12037] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1081), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [12144] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3715), 1, + anon_sym_COMMA, + ACTIONS(3717), 1, + anon_sym_RPAREN, + ACTIONS(3719), 1, + anon_sym_SEMI, + STATE(1163), 1, + aux_sym_record_exp_repeat1, + STATE(1164), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15424), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [12271] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3721), 1, + anon_sym_COMMA, + ACTIONS(3723), 1, + anon_sym_RBRACK, + STATE(597), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17134), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23220), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [12398] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3725), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17194), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21678), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [12525] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3727), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21781), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [12652] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3729), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21921), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [12779] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3731), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22017), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [12906] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3733), 1, + anon_sym_COMMA, + ACTIONS(3735), 1, + anon_sym_RPAREN, + ACTIONS(3737), 1, + anon_sym_SEMI, + STATE(1184), 1, + aux_sym_record_exp_repeat1, + STATE(1185), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15136), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [13033] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3739), 1, + anon_sym_COMMA, + ACTIONS(3741), 1, + anon_sym_RBRACK, + STATE(603), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17293), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22345), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [13160] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3743), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17316), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22446), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [13287] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3745), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22589), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [13414] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3747), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22705), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [13541] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3749), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22815), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [13668] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3751), 1, + anon_sym_COMMA, + ACTIONS(3753), 1, + anon_sym_RPAREN, + ACTIONS(3755), 1, + anon_sym_SEMI, + STATE(1205), 1, + aux_sym_record_exp_repeat1, + STATE(1206), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15254), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [13795] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3757), 1, + anon_sym_COMMA, + ACTIONS(3759), 1, + anon_sym_RBRACK, + STATE(609), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17436), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23074), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [13922] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3761), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17446), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23125), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [14049] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23185), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [14176] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3765), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23256), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [14303] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3767), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23312), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [14430] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3769), 1, + anon_sym_COMMA, + ACTIONS(3771), 1, + anon_sym_RPAREN, + ACTIONS(3773), 1, + anon_sym_SEMI, + STATE(1226), 1, + aux_sym_record_exp_repeat1, + STATE(1227), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15298), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [14557] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3775), 1, + anon_sym_COMMA, + ACTIONS(3777), 1, + anon_sym_RBRACK, + STATE(615), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17487), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23450), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [14684] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3779), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17496), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23486), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [14811] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3781), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23563), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [14938] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3783), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23623), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [15065] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3785), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23674), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [15192] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3787), 1, + anon_sym_COMMA, + ACTIONS(3789), 1, + anon_sym_RPAREN, + ACTIONS(3791), 1, + anon_sym_SEMI, + STATE(1247), 1, + aux_sym_record_exp_repeat1, + STATE(1248), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15350), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [15319] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3793), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RBRACK, + STATE(621), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17559), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23843), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [15446] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3797), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17567), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23888), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [15573] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3799), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23934), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [15700] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3801), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23972), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [15827] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3803), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24009), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [15954] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3805), 1, + anon_sym_COMMA, + ACTIONS(3807), 1, + anon_sym_RPAREN, + ACTIONS(3809), 1, + anon_sym_SEMI, + STATE(1267), 1, + aux_sym_record_exp_repeat1, + STATE(1268), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15374), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [16081] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3811), 1, + anon_sym_COMMA, + ACTIONS(3813), 1, + anon_sym_RBRACK, + STATE(627), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17611), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24108), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [16208] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3815), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17620), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24142), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [16335] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3817), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24171), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [16462] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3819), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24207), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [16589] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3821), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24227), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [16716] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3823), 1, + anon_sym_COMMA, + ACTIONS(3825), 1, + anon_sym_RPAREN, + ACTIONS(3827), 1, + anon_sym_SEMI, + STATE(1288), 1, + aux_sym_record_exp_repeat1, + STATE(1289), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15392), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [16843] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3829), 1, + anon_sym_COMMA, + ACTIONS(3831), 1, + anon_sym_RBRACK, + STATE(633), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17639), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24293), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [16970] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3833), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17643), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24321), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [17097] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3835), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24345), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [17224] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3837), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24370), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [17351] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3839), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24414), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [17478] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + anon_sym_COMMA, + ACTIONS(3843), 1, + anon_sym_RPAREN, + ACTIONS(3845), 1, + anon_sym_SEMI, + STATE(1309), 1, + aux_sym_record_exp_repeat1, + STATE(1310), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15436), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [17605] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3847), 1, + anon_sym_COMMA, + ACTIONS(3849), 1, + anon_sym_RBRACK, + STATE(639), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17676), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24551), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [17732] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3851), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17685), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24601), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [17859] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3853), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24686), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [17986] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3855), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23410), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [18113] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3857), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23007), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [18240] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3859), 1, + anon_sym_COMMA, + ACTIONS(3861), 1, + anon_sym_RPAREN, + ACTIONS(3863), 1, + anon_sym_SEMI, + STATE(1330), 1, + aux_sym_record_exp_repeat1, + STATE(1331), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15176), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [18367] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3865), 1, + anon_sym_COMMA, + ACTIONS(3867), 1, + anon_sym_RBRACK, + STATE(645), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16852), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23187), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [18494] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3869), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17280), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22129), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [18621] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3871), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23286), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [18748] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3873), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22150), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [18875] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3875), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23749), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [19002] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3877), 1, + anon_sym_COMMA, + ACTIONS(3879), 1, + anon_sym_RPAREN, + ACTIONS(3881), 1, + anon_sym_SEMI, + STATE(1351), 1, + aux_sym_record_exp_repeat1, + STATE(1352), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15200), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [19129] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3883), 1, + anon_sym_COMMA, + ACTIONS(3885), 1, + anon_sym_RBRACK, + STATE(651), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16874), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23526), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [19256] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3887), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17103), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22393), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [19383] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3889), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21444), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [19510] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3891), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21951), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [19637] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3893), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22356), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [19764] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3895), 1, + anon_sym_COMMA, + ACTIONS(3897), 1, + anon_sym_RPAREN, + ACTIONS(3899), 1, + anon_sym_SEMI, + STATE(1372), 1, + aux_sym_record_exp_repeat1, + STATE(1373), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15317), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [19891] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3901), 1, + anon_sym_COMMA, + ACTIONS(3903), 1, + anon_sym_RBRACK, + STATE(657), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17455), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23190), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [20018] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3905), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17529), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23575), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [20145] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3907), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24319), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [20272] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3909), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23992), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [20399] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3911), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23883), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [20526] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3913), 1, + anon_sym_COMMA, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3917), 1, + anon_sym_SEMI, + STATE(1393), 1, + aux_sym_record_exp_repeat1, + STATE(1394), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15351), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [20653] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3919), 1, + anon_sym_COMMA, + ACTIONS(3921), 1, + anon_sym_RBRACK, + STATE(663), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17473), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23985), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [20780] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3923), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17632), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22452), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [20907] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3925), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22044), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [21034] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3927), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21838), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [21161] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3929), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22210), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [21288] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3931), 1, + anon_sym_COMMA, + ACTIONS(3933), 1, + anon_sym_RPAREN, + ACTIONS(3935), 1, + anon_sym_SEMI, + STATE(1418), 1, + aux_sym_record_exp_repeat1, + STATE(1419), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15206), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [21415] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3937), 1, + anon_sym_COMMA, + ACTIONS(3939), 1, + anon_sym_RBRACK, + STATE(669), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16881), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23769), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [21542] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3941), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16936), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22773), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [21669] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3943), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24694), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [21796] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3945), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23836), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [21923] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3947), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22087), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [22050] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3949), 1, + anon_sym_COMMA, + ACTIONS(3951), 1, + anon_sym_RPAREN, + ACTIONS(3953), 1, + anon_sym_SEMI, + STATE(1439), 1, + aux_sym_record_exp_repeat1, + STATE(1440), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15336), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [22177] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3955), 1, + anon_sym_COMMA, + ACTIONS(3957), 1, + anon_sym_RBRACK, + STATE(675), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17139), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23449), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [22304] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3959), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17156), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24323), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [22431] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3961), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21562), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [22558] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3963), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21679), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [22685] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3965), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21775), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [22812] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3967), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, + anon_sym_RPAREN, + ACTIONS(3971), 1, + anon_sym_SEMI, + STATE(1460), 1, + aux_sym_record_exp_repeat1, + STATE(1461), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15145), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [22939] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_COMMA, + ACTIONS(3975), 1, + anon_sym_RBRACK, + STATE(681), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17239), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22040), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [23066] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3977), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17270), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22182), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [23193] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3979), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22271), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [23320] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3981), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22401), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [23447] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3983), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22503), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [23574] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(3985), 1, + anon_sym_COMMA, + ACTIONS(3987), 1, + anon_sym_RPAREN, + ACTIONS(3989), 1, + anon_sym_SEMI, + STATE(1481), 1, + aux_sym_record_exp_repeat1, + STATE(1482), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15335), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [23701] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3991), 1, + anon_sym_COMMA, + ACTIONS(3993), 1, + anon_sym_RBRACK, + STATE(687), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17398), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22826), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [23828] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3995), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17414), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22952), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [23955] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3997), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23035), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [24082] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3999), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23179), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [24209] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4001), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23279), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [24336] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4005), 1, + anon_sym_RPAREN, + ACTIONS(4007), 1, + anon_sym_SEMI, + STATE(1502), 1, + aux_sym_record_exp_repeat1, + STATE(1503), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15179), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [24463] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4009), 1, + anon_sym_COMMA, + ACTIONS(4011), 1, + anon_sym_RBRACK, + STATE(693), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17500), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23494), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [24590] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4013), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17525), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23631), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [24717] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4015), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23759), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [24844] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4017), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23951), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [24971] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4019), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24092), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [25098] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4021), 1, + anon_sym_COMMA, + ACTIONS(4023), 1, + anon_sym_RPAREN, + ACTIONS(4025), 1, + anon_sym_SEMI, + STATE(1523), 1, + aux_sym_record_exp_repeat1, + STATE(1524), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15232), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [25225] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4027), 1, + anon_sym_COMMA, + ACTIONS(4029), 1, + anon_sym_RBRACK, + STATE(699), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17659), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24400), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [25352] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4031), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17670), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24516), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [25479] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4033), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24583), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [25606] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4035), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24691), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [25733] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4037), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22227), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [25860] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4039), 1, + anon_sym_COMMA, + ACTIONS(4041), 1, + anon_sym_RPAREN, + ACTIONS(4043), 1, + anon_sym_SEMI, + STATE(1544), 1, + aux_sym_record_exp_repeat1, + STATE(1545), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15259), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [25987] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4045), 1, + anon_sym_COMMA, + ACTIONS(4047), 1, + anon_sym_RBRACK, + STATE(705), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16703), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21609), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [26114] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4049), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16875), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23706), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [26241] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4051), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21856), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [26368] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4053), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21698), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [26495] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4055), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23022), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [26622] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4057), 1, + anon_sym_COMMA, + ACTIONS(4059), 1, + anon_sym_RPAREN, + ACTIONS(4061), 1, + anon_sym_SEMI, + STATE(1565), 1, + aux_sym_record_exp_repeat1, + STATE(1566), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15284), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [26749] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4063), 1, + anon_sym_COMMA, + ACTIONS(4065), 1, + anon_sym_RBRACK, + STATE(711), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17326), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21986), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [26876] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4067), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17366), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22480), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [27003] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4069), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22722), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [27130] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4071), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23201), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [27257] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4073), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23484), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [27384] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4075), 1, + anon_sym_COMMA, + ACTIONS(4077), 1, + anon_sym_RPAREN, + ACTIONS(4079), 1, + anon_sym_SEMI, + STATE(1586), 1, + aux_sym_record_exp_repeat1, + STATE(1587), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15345), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [27511] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4081), 1, + anon_sym_COMMA, + ACTIONS(4083), 1, + anon_sym_RBRACK, + STATE(717), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17514), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24334), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [27638] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4085), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17546), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22075), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [27765] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4087), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24718), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [27892] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4089), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22588), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [28019] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4091), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23206), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [28146] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4093), 1, + anon_sym_COMMA, + ACTIONS(4095), 1, + anon_sym_RPAREN, + ACTIONS(4097), 1, + anon_sym_SEMI, + STATE(1607), 1, + aux_sym_record_exp_repeat1, + STATE(1608), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15409), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [28273] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4099), 1, + anon_sym_COMMA, + ACTIONS(4101), 1, + anon_sym_RBRACK, + STATE(723), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16680), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22219), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [28400] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4103), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16694), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23055), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [28527] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4105), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24415), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [28654] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4107), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21648), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [28781] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4109), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21791), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [28908] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4111), 1, + anon_sym_COMMA, + ACTIONS(4113), 1, + anon_sym_RPAREN, + ACTIONS(4115), 1, + anon_sym_SEMI, + STATE(1628), 1, + aux_sym_record_exp_repeat1, + STATE(1629), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15449), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [29035] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4117), 1, + anon_sym_COMMA, + ACTIONS(4119), 1, + anon_sym_RBRACK, + STATE(729), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16751), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22035), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [29162] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4121), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16764), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22158), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [29289] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4123), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22260), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [29416] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22317), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [29543] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4127), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22417), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [29670] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4129), 1, + anon_sym_COMMA, + ACTIONS(4131), 1, + anon_sym_RPAREN, + ACTIONS(4133), 1, + anon_sym_SEMI, + STATE(1649), 1, + aux_sym_record_exp_repeat1, + STATE(1650), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15431), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [29797] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4135), 1, + anon_sym_COMMA, + ACTIONS(4137), 1, + anon_sym_RBRACK, + STATE(735), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16804), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22738), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [29924] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4139), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16822), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22978), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [30051] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4141), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23145), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [30178] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4143), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23343), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [30305] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4145), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23483), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [30432] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4147), 1, + anon_sym_COMMA, + ACTIONS(4149), 1, + anon_sym_RPAREN, + ACTIONS(4151), 1, + anon_sym_SEMI, + STATE(1670), 1, + aux_sym_record_exp_repeat1, + STATE(1671), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15401), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [30559] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4153), 1, + anon_sym_COMMA, + ACTIONS(4155), 1, + anon_sym_RBRACK, + STATE(741), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23860), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [30686] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4157), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16900), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24073), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [30813] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4159), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24182), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [30940] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4161), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24427), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [31067] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4163), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24603), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [31194] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4165), 1, + anon_sym_COMMA, + ACTIONS(4167), 1, + anon_sym_RPAREN, + ACTIONS(4169), 1, + anon_sym_SEMI, + STATE(1691), 1, + aux_sym_record_exp_repeat1, + STATE(1692), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15294), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [31321] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4171), 1, + anon_sym_COMMA, + ACTIONS(4173), 1, + anon_sym_RBRACK, + STATE(747), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16948), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21727), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [31448] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4175), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16961), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23106), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [31575] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4177), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24183), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [31702] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4179), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21592), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [31829] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4181), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22030), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [31956] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4183), 1, + anon_sym_COMMA, + ACTIONS(4185), 1, + anon_sym_RPAREN, + ACTIONS(4187), 1, + anon_sym_SEMI, + STATE(1712), 1, + aux_sym_record_exp_repeat1, + STATE(1713), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15354), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [32083] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4189), 1, + anon_sym_COMMA, + ACTIONS(4191), 1, + anon_sym_RBRACK, + STATE(753), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17012), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23228), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [32210] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4193), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17025), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23854), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [32337] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4195), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24647), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [32464] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4197), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21661), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [32591] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4199), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21836), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [32718] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4201), 1, + anon_sym_COMMA, + ACTIONS(4203), 1, + anon_sym_RPAREN, + ACTIONS(4205), 1, + anon_sym_SEMI, + STATE(1733), 1, + aux_sym_record_exp_repeat1, + STATE(1734), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15415), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [32845] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4207), 1, + anon_sym_COMMA, + ACTIONS(4209), 1, + anon_sym_RBRACK, + STATE(759), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17077), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22256), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [32972] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4211), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17093), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22543), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [33099] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4213), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22706), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [33226] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4215), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22843), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [33353] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4217), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22991), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [33480] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4219), 1, + anon_sym_COMMA, + ACTIONS(4221), 1, + anon_sym_RPAREN, + ACTIONS(4223), 1, + anon_sym_SEMI, + STATE(1754), 1, + aux_sym_record_exp_repeat1, + STATE(1755), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15247), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [33607] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4225), 1, + anon_sym_COMMA, + ACTIONS(4227), 1, + anon_sym_RBRACK, + STATE(765), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17137), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23425), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [33734] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4229), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17143), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23586), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [33861] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4231), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23752), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [33988] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4233), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23890), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [34115] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4235), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24044), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [34242] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4237), 1, + anon_sym_COMMA, + ACTIONS(4239), 1, + anon_sym_RPAREN, + ACTIONS(4241), 1, + anon_sym_SEMI, + STATE(1775), 1, + aux_sym_record_exp_repeat1, + STATE(1776), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15456), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [34369] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4243), 1, + anon_sym_COMMA, + ACTIONS(4245), 1, + anon_sym_RBRACK, + STATE(771), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17157), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24361), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [34496] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4247), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17167), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24548), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [34623] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4249), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24714), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [34750] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4251), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21439), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [34877] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21507), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [35004] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4255), 1, + anon_sym_COMMA, + ACTIONS(4257), 1, + anon_sym_RPAREN, + ACTIONS(4259), 1, + anon_sym_SEMI, + STATE(1796), 1, + aux_sym_record_exp_repeat1, + STATE(1797), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15157), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [35131] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4261), 1, + anon_sym_COMMA, + ACTIONS(4263), 1, + anon_sym_RBRACK, + STATE(777), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17183), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21631), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [35258] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4265), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17191), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21664), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [35385] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4267), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21700), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [35512] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4269), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21745), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [35639] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4271), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21769), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [35766] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4273), 1, + anon_sym_COMMA, + ACTIONS(4275), 1, + anon_sym_RPAREN, + ACTIONS(4277), 1, + anon_sym_SEMI, + STATE(1817), 1, + aux_sym_record_exp_repeat1, + STATE(1818), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15202), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [35893] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4279), 1, + anon_sym_COMMA, + ACTIONS(4281), 1, + anon_sym_RBRACK, + STATE(783), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17212), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21854), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [36020] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4283), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17219), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21890), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [36147] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4285), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21924), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [36274] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4287), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21958), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [36401] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4289), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21975), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [36528] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4291), 1, + anon_sym_COMMA, + ACTIONS(4293), 1, + anon_sym_RPAREN, + ACTIONS(4295), 1, + anon_sym_SEMI, + STATE(1837), 1, + aux_sym_record_exp_repeat1, + STATE(1838), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15241), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [36655] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4297), 1, + anon_sym_COMMA, + ACTIONS(4299), 1, + anon_sym_RBRACK, + STATE(789), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17242), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22057), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [36782] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4301), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17250), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22107), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [36909] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4303), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22147), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [37036] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4305), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22176), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [37163] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4307), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22198), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [37290] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4309), 1, + anon_sym_COMMA, + ACTIONS(4311), 1, + anon_sym_RPAREN, + ACTIONS(4313), 1, + anon_sym_SEMI, + STATE(1904), 1, + aux_sym_record_exp_repeat1, + STATE(1905), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15260), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [37417] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4315), 1, + anon_sym_COMMA, + ACTIONS(4317), 1, + anon_sym_RBRACK, + STATE(795), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17281), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22279), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [37544] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4319), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17288), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22327), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [37671] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4321), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22374), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [37798] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4323), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22421), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [37925] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4325), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22458), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [38052] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4327), 1, + anon_sym_COMMA, + ACTIONS(4329), 1, + anon_sym_RPAREN, + ACTIONS(4331), 1, + anon_sym_SEMI, + STATE(1927), 1, + aux_sym_record_exp_repeat1, + STATE(1928), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15295), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [38179] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4333), 1, + anon_sym_COMMA, + ACTIONS(4335), 1, + anon_sym_RBRACK, + STATE(801), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17330), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22528), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [38306] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4337), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17343), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22580), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [38433] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4339), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22620), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [38560] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4341), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22663), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [38687] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4343), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22699), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [38814] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4345), 1, + anon_sym_COMMA, + ACTIONS(4347), 1, + anon_sym_RPAREN, + ACTIONS(4349), 1, + anon_sym_SEMI, + STATE(1948), 1, + aux_sym_record_exp_repeat1, + STATE(1949), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15324), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [38941] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4351), 1, + anon_sym_COMMA, + ACTIONS(4353), 1, + anon_sym_RBRACK, + STATE(807), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17384), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22784), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [39068] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4355), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17395), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22823), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [39195] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4357), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22855), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [39322] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4359), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22889), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [39449] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4361), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22915), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [39576] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4363), 1, + anon_sym_COMMA, + ACTIONS(4365), 1, + anon_sym_RPAREN, + ACTIONS(4367), 1, + anon_sym_SEMI, + STATE(1969), 1, + aux_sym_record_exp_repeat1, + STATE(1970), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15362), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [39703] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4369), 1, + anon_sym_COMMA, + ACTIONS(4371), 1, + anon_sym_RBRACK, + STATE(813), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17417), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22972), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [39830] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4373), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17426), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23013), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [39957] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4375), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23039), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [40084] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4377), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23076), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [40211] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4379), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23113), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [40338] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4381), 1, + anon_sym_COMMA, + ACTIONS(4383), 1, + anon_sym_RPAREN, + ACTIONS(4385), 1, + anon_sym_SEMI, + STATE(1990), 1, + aux_sym_record_exp_repeat1, + STATE(1991), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15408), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [40465] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4387), 1, + anon_sym_COMMA, + ACTIONS(4389), 1, + anon_sym_RBRACK, + STATE(819), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17459), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23213), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [40592] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4391), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17466), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23272), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [40719] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4393), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23306), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [40846] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4395), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23348), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [40973] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4397), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23378), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [41100] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4399), 1, + anon_sym_COMMA, + ACTIONS(4401), 1, + anon_sym_RPAREN, + ACTIONS(4403), 1, + anon_sym_SEMI, + STATE(2011), 1, + aux_sym_record_exp_repeat1, + STATE(2012), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15442), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [41227] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4405), 1, + anon_sym_COMMA, + ACTIONS(4407), 1, + anon_sym_RBRACK, + STATE(825), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17490), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23462), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [41354] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4409), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17505), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23512), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [41481] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4411), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23529), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [41608] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4413), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23574), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [41735] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4415), 1, + anon_sym_COMMA, + ACTIONS(4417), 1, + anon_sym_RBRACK, + STATE(577), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16734), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23021), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [41862] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4419), 1, + anon_sym_COMMA, + ACTIONS(4421), 1, + anon_sym_RPAREN, + ACTIONS(4423), 1, + anon_sym_SEMI, + STATE(2032), 1, + aux_sym_record_exp_repeat1, + STATE(2033), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15368), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [41989] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4425), 1, + anon_sym_COMMA, + ACTIONS(4427), 1, + anon_sym_RBRACK, + STATE(831), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17536), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23730), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [42116] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4429), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17542), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23768), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [42243] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4431), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23806), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [42370] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4433), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23830), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [42497] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4435), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23874), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [42624] = 33, + ACTIONS(1791), 1, + anon_sym_COMMA, + ACTIONS(1793), 1, + anon_sym_RPAREN, + ACTIONS(1795), 1, + anon_sym_SEMI, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(1859), 1, + aux_sym_record_exp_repeat1, + STATE(1860), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15428), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [42751] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4437), 1, + anon_sym_COMMA, + ACTIONS(4439), 1, + anon_sym_RBRACK, + STATE(837), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17592), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24030), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [42878] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4441), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17603), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24081), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [43005] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4443), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24118), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [43132] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4445), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24201), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [43259] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4447), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24263), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [43386] = 33, + ACTIONS(1757), 1, + anon_sym_COMMA, + ACTIONS(1759), 1, + anon_sym_RPAREN, + ACTIONS(1771), 1, + anon_sym_SEMI, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(1883), 1, + aux_sym_record_exp_repeat1, + STATE(1884), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15169), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [43513] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4449), 1, + anon_sym_COMMA, + ACTIONS(4451), 1, + anon_sym_RBRACK, + STATE(843), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17651), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24363), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [43640] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4453), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17658), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24408), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [43767] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4455), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24434), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [43894] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4457), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24462), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [44021] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4459), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24488), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [44148] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4461), 1, + anon_sym_COMMA, + ACTIONS(4463), 1, + anon_sym_RPAREN, + ACTIONS(4465), 1, + anon_sym_SEMI, + STATE(2074), 1, + aux_sym_record_exp_repeat1, + STATE(2075), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15313), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [44275] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4467), 1, + anon_sym_COMMA, + ACTIONS(4469), 1, + anon_sym_RBRACK, + STATE(849), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17674), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24541), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [44402] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4471), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17682), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24580), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [44529] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4473), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24617), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [44656] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4475), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24639), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [44783] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4477), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24657), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [44910] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4479), 1, + anon_sym_COMMA, + ACTIONS(4481), 1, + anon_sym_RPAREN, + ACTIONS(4483), 1, + anon_sym_SEMI, + STATE(2095), 1, + aux_sym_record_exp_repeat1, + STATE(2096), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15360), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [45037] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4485), 1, + anon_sym_COMMA, + ACTIONS(4487), 1, + anon_sym_RBRACK, + STATE(855), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17698), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24734), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [45164] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4489), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16836), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22772), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [45291] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4491), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21650), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [45418] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4493), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22568), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [45545] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4495), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23949), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [45672] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4497), 1, + anon_sym_COMMA, + ACTIONS(4499), 1, + anon_sym_RPAREN, + ACTIONS(4501), 1, + anon_sym_SEMI, + STATE(2116), 1, + aux_sym_record_exp_repeat1, + STATE(2117), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15418), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [45799] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4503), 1, + anon_sym_COMMA, + ACTIONS(4505), 1, + anon_sym_RBRACK, + STATE(861), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16696), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22884), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [45926] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4507), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16713), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21860), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [46053] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4509), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22112), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [46180] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4511), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22541), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [46307] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4513), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22893), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [46434] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4515), 1, + anon_sym_COMMA, + ACTIONS(4517), 1, + anon_sym_RPAREN, + ACTIONS(4519), 1, + anon_sym_SEMI, + STATE(2138), 1, + aux_sym_record_exp_repeat1, + STATE(2139), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15445), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [46561] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4521), 1, + anon_sym_COMMA, + ACTIONS(4523), 1, + anon_sym_RBRACK, + STATE(867), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16940), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23953), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [46688] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4525), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17148), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24184), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [46815] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4527), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24447), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [46942] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4529), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22509), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [47069] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4531), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22743), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [47196] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4533), 1, + anon_sym_COMMA, + ACTIONS(4535), 1, + anon_sym_RPAREN, + ACTIONS(4537), 1, + anon_sym_SEMI, + STATE(2159), 1, + aux_sym_record_exp_repeat1, + STATE(2160), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15159), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [47323] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4539), 1, + anon_sym_COMMA, + ACTIONS(4541), 1, + anon_sym_RBRACK, + STATE(873), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17245), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22138), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [47450] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4543), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17266), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22766), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [47577] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4545), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23081), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [47704] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4547), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23485), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [47831] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4549), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24379), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [47958] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4551), 1, + anon_sym_COMMA, + ACTIONS(4553), 1, + anon_sym_RPAREN, + ACTIONS(4555), 1, + anon_sym_SEMI, + STATE(2181), 1, + aux_sym_record_exp_repeat1, + STATE(2182), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15263), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [48085] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4557), 1, + anon_sym_COMMA, + ACTIONS(4559), 1, + anon_sym_RBRACK, + STATE(879), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17290), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21826), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [48212] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4561), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17317), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21983), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [48339] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4563), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22082), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [48466] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4565), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22189), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [48593] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4567), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22293), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [48720] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4569), 1, + anon_sym_COMMA, + ACTIONS(4571), 1, + anon_sym_RPAREN, + ACTIONS(4573), 1, + anon_sym_SEMI, + STATE(2202), 1, + aux_sym_record_exp_repeat1, + STATE(2203), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15359), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [48847] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4575), 1, + anon_sym_COMMA, + ACTIONS(4577), 1, + anon_sym_RBRACK, + STATE(885), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17375), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22552), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [48974] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4579), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17383), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22720), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [49101] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4581), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22764), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [49228] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4583), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22934), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [49355] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4585), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23004), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [49482] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4587), 1, + anon_sym_COMMA, + ACTIONS(4589), 1, + anon_sym_RPAREN, + ACTIONS(4591), 1, + anon_sym_SEMI, + STATE(2226), 1, + aux_sym_record_exp_repeat1, + STATE(2227), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15476), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [49609] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4593), 1, + anon_sym_COMMA, + ACTIONS(4595), 1, + anon_sym_RBRACK, + STATE(891), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17432), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23322), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [49736] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4597), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17447), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23516), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [49863] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4599), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23658), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [49990] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4601), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23733), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [50117] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4603), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23828), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [50244] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4605), 1, + anon_sym_COMMA, + ACTIONS(4607), 1, + anon_sym_RPAREN, + ACTIONS(4609), 1, + anon_sym_SEMI, + STATE(2247), 1, + aux_sym_record_exp_repeat1, + STATE(2248), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15147), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [50371] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4611), 1, + anon_sym_COMMA, + ACTIONS(4613), 1, + anon_sym_RBRACK, + STATE(897), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17480), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24063), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [50498] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4615), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17499), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24282), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [50625] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4617), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24492), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [50752] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4619), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24702), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [50879] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4621), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22577), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [51006] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4623), 1, + anon_sym_COMMA, + ACTIONS(4625), 1, + anon_sym_RPAREN, + ACTIONS(4627), 1, + anon_sym_SEMI, + STATE(2268), 1, + aux_sym_record_exp_repeat1, + STATE(2269), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15162), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [51133] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4629), 1, + anon_sym_COMMA, + ACTIONS(4631), 1, + anon_sym_RBRACK, + STATE(903), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17577), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22415), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [51260] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4633), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17604), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24286), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [51387] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4635), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21460), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [51514] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4637), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22054), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [51641] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4639), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22268), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [51768] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4641), 1, + anon_sym_COMMA, + ACTIONS(4643), 1, + anon_sym_RPAREN, + ACTIONS(4645), 1, + anon_sym_SEMI, + STATE(2289), 1, + aux_sym_record_exp_repeat1, + STATE(2290), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15172), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [51895] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4647), 1, + anon_sym_COMMA, + ACTIONS(4649), 1, + anon_sym_RBRACK, + STATE(909), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17647), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23077), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [52022] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4651), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17222), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23729), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [52149] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4653), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24140), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [52276] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4655), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21404), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [52403] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4657), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21666), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [52530] = 33, + ACTIONS(1797), 1, + anon_sym_COMMA, + ACTIONS(1799), 1, + anon_sym_RPAREN, + ACTIONS(1801), 1, + anon_sym_SEMI, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(2053), 1, + aux_sym_record_exp_repeat1, + STATE(2054), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15195), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [52657] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4659), 1, + anon_sym_COMMA, + ACTIONS(4661), 1, + anon_sym_RBRACK, + STATE(915), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16678), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22130), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [52784] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4663), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16684), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22295), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [52911] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4665), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22527), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [53038] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4667), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22675), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [53165] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4669), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22813), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [53292] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4671), 1, + anon_sym_COMMA, + ACTIONS(4673), 1, + anon_sym_RPAREN, + ACTIONS(4675), 1, + anon_sym_SEMI, + STATE(2310), 1, + aux_sym_record_exp_repeat1, + STATE(2311), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15207), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [53419] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4677), 1, + anon_sym_COMMA, + ACTIONS(4679), 1, + anon_sym_RBRACK, + STATE(921), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16700), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23164), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [53546] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4681), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16706), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23432), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [53673] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4683), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23627), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [53800] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4685), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24085), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [53927] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4687), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24371), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [54054] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4689), 1, + anon_sym_COMMA, + ACTIONS(4691), 1, + anon_sym_RPAREN, + ACTIONS(4693), 1, + anon_sym_SEMI, + STATE(2332), 1, + aux_sym_record_exp_repeat1, + STATE(2333), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15214), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [54181] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4695), 1, + anon_sym_COMMA, + ACTIONS(4697), 1, + anon_sym_RBRACK, + STATE(927), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16724), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21601), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [54308] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4699), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16729), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21638), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [54435] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4701), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21669), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [54562] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4703), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21712), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [54689] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4705), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21740), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [54816] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4707), 1, + anon_sym_COMMA, + ACTIONS(4709), 1, + anon_sym_RPAREN, + ACTIONS(4711), 1, + anon_sym_SEMI, + STATE(2354), 1, + aux_sym_record_exp_repeat1, + STATE(2355), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15235), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [54943] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4713), 1, + anon_sym_COMMA, + ACTIONS(4715), 1, + anon_sym_RBRACK, + STATE(933), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16740), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21848), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [55070] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4717), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16744), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21895), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [55197] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4719), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21925), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [55324] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4721), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21981), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [55451] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4723), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22024), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [55578] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4725), 1, + anon_sym_COMMA, + ACTIONS(4727), 1, + anon_sym_RPAREN, + ACTIONS(4729), 1, + anon_sym_SEMI, + STATE(2375), 1, + aux_sym_record_exp_repeat1, + STATE(2376), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15248), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [55705] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4731), 1, + anon_sym_COMMA, + ACTIONS(4733), 1, + anon_sym_RBRACK, + STATE(939), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16757), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22097), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [55832] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4735), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16761), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22141), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [55959] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4737), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22177), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [56086] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4739), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22223), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [56213] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4741), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22247), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [56340] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4743), 1, + anon_sym_COMMA, + ACTIONS(4745), 1, + anon_sym_RPAREN, + ACTIONS(4747), 1, + anon_sym_SEMI, + STATE(2396), 1, + aux_sym_record_exp_repeat1, + STATE(2397), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15262), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [56467] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4749), 1, + anon_sym_COMMA, + ACTIONS(4751), 1, + anon_sym_RBRACK, + STATE(945), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16773), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22303), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [56594] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4753), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16778), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22344), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [56721] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4755), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22372), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [56848] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4757), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22406), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [56975] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4759), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22444), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [57102] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4761), 1, + anon_sym_COMMA, + ACTIONS(4763), 1, + anon_sym_RPAREN, + ACTIONS(4765), 1, + anon_sym_SEMI, + STATE(2417), 1, + aux_sym_record_exp_repeat1, + STATE(2418), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15269), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [57229] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4767), 1, + anon_sym_COMMA, + ACTIONS(4769), 1, + anon_sym_RBRACK, + STATE(951), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16786), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22523), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [57356] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4771), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16791), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22556), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [57483] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4773), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22587), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [57610] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4775), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22632), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [57737] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4777), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22664), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [57864] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4779), 1, + anon_sym_COMMA, + ACTIONS(4781), 1, + anon_sym_RPAREN, + ACTIONS(4783), 1, + anon_sym_SEMI, + STATE(2439), 1, + aux_sym_record_exp_repeat1, + STATE(2440), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15276), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [57991] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4785), 1, + anon_sym_COMMA, + ACTIONS(4787), 1, + anon_sym_RBRACK, + STATE(957), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16807), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22753), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [58118] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4789), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16811), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22791), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [58245] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4791), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22829), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [58372] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4793), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22879), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [58499] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4795), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22921), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [58626] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4797), 1, + anon_sym_COMMA, + ACTIONS(4799), 1, + anon_sym_RPAREN, + ACTIONS(4801), 1, + anon_sym_SEMI, + STATE(2461), 1, + aux_sym_record_exp_repeat1, + STATE(2462), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15292), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [58753] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4803), 1, + anon_sym_COMMA, + ACTIONS(4805), 1, + anon_sym_RBRACK, + STATE(963), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16826), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22998), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [58880] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4807), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16832), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23047), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [59007] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4809), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23079), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [59134] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4811), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23120), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [59261] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4813), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23161), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [59388] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4815), 1, + anon_sym_COMMA, + ACTIONS(4817), 1, + anon_sym_RPAREN, + ACTIONS(4819), 1, + anon_sym_SEMI, + STATE(2482), 1, + aux_sym_record_exp_repeat1, + STATE(2483), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15301), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [59515] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4821), 1, + anon_sym_COMMA, + ACTIONS(4823), 1, + anon_sym_RBRACK, + STATE(969), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16845), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23246), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [59642] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4825), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16849), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23319), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [59769] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4827), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23382), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [59896] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4829), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23416), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [60023] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4831), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23438), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [60150] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4833), 1, + anon_sym_COMMA, + ACTIONS(4835), 1, + anon_sym_RPAREN, + ACTIONS(4837), 1, + anon_sym_SEMI, + STATE(2503), 1, + aux_sym_record_exp_repeat1, + STATE(2504), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15308), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [60277] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4839), 1, + anon_sym_COMMA, + ACTIONS(4841), 1, + anon_sym_RBRACK, + STATE(975), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16860), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23510), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [60404] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4843), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16864), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23564), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [60531] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4845), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23606), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [60658] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4847), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23650), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [60785] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4849), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23667), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [60912] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4851), 1, + anon_sym_COMMA, + ACTIONS(4853), 1, + anon_sym_RPAREN, + ACTIONS(4855), 1, + anon_sym_SEMI, + STATE(2527), 1, + aux_sym_record_exp_repeat1, + STATE(2528), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15315), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [61039] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4857), 1, + anon_sym_COMMA, + ACTIONS(4859), 1, + anon_sym_RBRACK, + STATE(981), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16872), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23740), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [61166] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4861), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16878), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23780), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [61293] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4863), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23809), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [61420] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4865), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23845), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [61547] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4867), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23879), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [61674] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4869), 1, + anon_sym_COMMA, + ACTIONS(4871), 1, + anon_sym_RPAREN, + ACTIONS(4873), 1, + anon_sym_SEMI, + STATE(2548), 1, + aux_sym_record_exp_repeat1, + STATE(2549), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15325), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [61801] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4875), 1, + anon_sym_COMMA, + ACTIONS(4877), 1, + anon_sym_RBRACK, + STATE(987), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16889), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23973), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [61928] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4879), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16895), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24023), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [62055] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4881), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24053), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [62182] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4883), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24083), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [62309] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4885), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24111), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [62436] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(4889), 1, + anon_sym_RPAREN, + ACTIONS(4891), 1, + anon_sym_SEMI, + STATE(2569), 1, + aux_sym_record_exp_repeat1, + STATE(2570), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15343), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [62563] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4893), 1, + anon_sym_COMMA, + ACTIONS(4895), 1, + anon_sym_RBRACK, + STATE(993), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16905), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24191), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [62690] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4897), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16909), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24279), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [62817] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4899), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24305), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [62944] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4901), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24365), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [63071] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4903), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24419), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [63198] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4905), 1, + anon_sym_COMMA, + ACTIONS(4907), 1, + anon_sym_RPAREN, + ACTIONS(4909), 1, + anon_sym_SEMI, + STATE(2590), 1, + aux_sym_record_exp_repeat1, + STATE(2591), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15353), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [63325] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4911), 1, + anon_sym_COMMA, + ACTIONS(4913), 1, + anon_sym_RBRACK, + STATE(999), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16920), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24542), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [63452] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4915), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16924), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24606), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [63579] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4917), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24682), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [63706] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4919), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24723), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [63833] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4921), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21552), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [63960] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4923), 1, + anon_sym_COMMA, + ACTIONS(4925), 1, + anon_sym_RPAREN, + ACTIONS(4927), 1, + anon_sym_SEMI, + STATE(2611), 1, + aux_sym_record_exp_repeat1, + STATE(2612), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15371), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [64087] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4929), 1, + anon_sym_COMMA, + ACTIONS(4931), 1, + anon_sym_RBRACK, + STATE(1005), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16931), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22132), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [64214] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4933), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16937), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23033), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [64341] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4935), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23867), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [64468] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4937), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21391), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [64595] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4939), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21691), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [64722] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4941), 1, + anon_sym_COMMA, + ACTIONS(4943), 1, + anon_sym_RPAREN, + ACTIONS(4945), 1, + anon_sym_SEMI, + STATE(2632), 1, + aux_sym_record_exp_repeat1, + STATE(2633), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15387), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [64849] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4947), 1, + anon_sym_COMMA, + ACTIONS(4949), 1, + anon_sym_RBRACK, + STATE(1011), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16952), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22357), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [64976] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4951), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16957), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22830), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [65103] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4953), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23066), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [65230] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4955), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23472), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [65357] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4957), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23850), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [65484] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4959), 1, + anon_sym_COMMA, + ACTIONS(4961), 1, + anon_sym_RPAREN, + ACTIONS(4963), 1, + anon_sym_SEMI, + STATE(1111), 1, + aux_sym_sequence_exp_repeat1, + STATE(2330), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15370), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [65611] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4965), 1, + anon_sym_COMMA, + ACTIONS(4967), 1, + anon_sym_RBRACK, + STATE(1017), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16970), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24707), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [65738] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4969), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16974), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21531), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [65865] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4971), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21656), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [65992] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4973), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21776), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [66119] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4975), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21896), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [66246] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4977), 1, + anon_sym_COMMA, + ACTIONS(4979), 1, + anon_sym_RPAREN, + ACTIONS(4981), 1, + anon_sym_SEMI, + STATE(2674), 1, + aux_sym_record_exp_repeat1, + STATE(2675), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15429), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [66373] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4983), 1, + anon_sym_COMMA, + ACTIONS(4985), 1, + anon_sym_RBRACK, + STATE(1023), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16985), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22163), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [66500] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4987), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16989), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22299), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [66627] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4989), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22398), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [66754] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4991), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22558), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [66881] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4993), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22634), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [67008] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(4995), 1, + anon_sym_COMMA, + ACTIONS(4997), 1, + anon_sym_RPAREN, + ACTIONS(4999), 1, + anon_sym_SEMI, + STATE(2695), 1, + aux_sym_record_exp_repeat1, + STATE(2696), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15432), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [67135] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5001), 1, + anon_sym_COMMA, + ACTIONS(5003), 1, + anon_sym_RBRACK, + STATE(1029), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17000), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22898), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [67262] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5005), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17006), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23069), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [67389] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5007), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23149), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [67516] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5009), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23294), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [67643] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5011), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23452), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [67770] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5013), 1, + anon_sym_COMMA, + ACTIONS(5015), 1, + anon_sym_RPAREN, + ACTIONS(5017), 1, + anon_sym_SEMI, + STATE(2716), 1, + aux_sym_record_exp_repeat1, + STATE(2717), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15439), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [67897] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5019), 1, + anon_sym_COMMA, + ACTIONS(5021), 1, + anon_sym_RBRACK, + STATE(1035), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17021), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23782), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [68024] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5023), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17026), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23960), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [68151] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5025), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24087), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [68278] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5027), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24267), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [68405] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5029), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24420), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [68532] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5031), 1, + anon_sym_COMMA, + ACTIONS(5033), 1, + anon_sym_RPAREN, + ACTIONS(5035), 1, + anon_sym_SEMI, + STATE(2737), 1, + aux_sym_record_exp_repeat1, + STATE(2738), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15447), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [68659] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5037), 1, + anon_sym_COMMA, + ACTIONS(5039), 1, + anon_sym_RBRACK, + STATE(1041), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17037), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21380), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [68786] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5041), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17042), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21459), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [68913] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5043), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21513), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [69040] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5045), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21587), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [69167] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5047), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21619), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [69294] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5049), 1, + anon_sym_COMMA, + ACTIONS(5051), 1, + anon_sym_RPAREN, + ACTIONS(5053), 1, + anon_sym_SEMI, + STATE(2758), 1, + aux_sym_record_exp_repeat1, + STATE(2759), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15462), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [69421] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5055), 1, + anon_sym_COMMA, + ACTIONS(5057), 1, + anon_sym_RBRACK, + STATE(1047), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17050), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21713), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [69548] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5059), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17055), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21764), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [69675] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5061), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21823), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [69802] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5063), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21871), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [69929] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5065), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21911), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [70056] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5067), 1, + anon_sym_COMMA, + ACTIONS(5069), 1, + anon_sym_RPAREN, + ACTIONS(5071), 1, + anon_sym_SEMI, + STATE(2779), 1, + aux_sym_record_exp_repeat1, + STATE(2780), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15478), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [70183] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, + anon_sym_RBRACK, + STATE(1053), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17063), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(21999), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [70310] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5077), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17067), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22064), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [70437] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5079), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22101), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [70564] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5081), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22140), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [70691] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5083), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22183), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [70818] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5085), 1, + anon_sym_COMMA, + ACTIONS(5087), 1, + anon_sym_RPAREN, + ACTIONS(5089), 1, + anon_sym_SEMI, + STATE(2800), 1, + aux_sym_record_exp_repeat1, + STATE(2801), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15411), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [70945] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5091), 1, + anon_sym_COMMA, + ACTIONS(5093), 1, + anon_sym_RBRACK, + STATE(1059), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17076), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22262), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [71072] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5095), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17082), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22312), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [71199] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5097), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22343), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [71326] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5099), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22390), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [71453] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5101), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22427), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [71580] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5103), 1, + anon_sym_COMMA, + ACTIONS(5105), 1, + anon_sym_RPAREN, + ACTIONS(5107), 1, + anon_sym_SEMI, + STATE(2821), 1, + aux_sym_record_exp_repeat1, + STATE(2822), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15395), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [71707] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5109), 1, + anon_sym_COMMA, + ACTIONS(5111), 1, + anon_sym_RBRACK, + STATE(1065), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17091), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22544), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [71834] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5113), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17097), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22592), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [71961] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5115), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22617), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [72088] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5117), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22672), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [72215] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5119), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22730), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [72342] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5121), 1, + anon_sym_COMMA, + ACTIONS(5123), 1, + anon_sym_RPAREN, + ACTIONS(5125), 1, + anon_sym_SEMI, + STATE(2842), 1, + aux_sym_record_exp_repeat1, + STATE(2843), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15279), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [72469] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5127), 1, + anon_sym_COMMA, + ACTIONS(5129), 1, + anon_sym_RBRACK, + STATE(1071), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17109), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22795), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [72596] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5131), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17113), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22844), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [72723] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5133), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22892), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [72850] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5135), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22954), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [72977] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5137), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(22986), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [73104] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5139), 1, + anon_sym_COMMA, + ACTIONS(5141), 1, + anon_sym_RPAREN, + ACTIONS(5143), 1, + anon_sym_SEMI, + STATE(2863), 1, + aux_sym_record_exp_repeat1, + STATE(2864), 1, + aux_sym_sequence_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(15385), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [73231] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5145), 1, + anon_sym_COMMA, + ACTIONS(5147), 1, + anon_sym_RBRACK, + STATE(1077), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17123), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23053), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [73358] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5149), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17128), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23099), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [73485] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5151), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23140), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [73612] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5153), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23203), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [73739] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5155), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23241), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [73866] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(535), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [73973] = 33, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2661), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5157), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(23602), 1, + sym_ellipsis_listexp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [74100] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(5159), 1, + sym_integer_scon, + ACTIONS(5165), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5168), 1, + sym__symbolic_ident, + ACTIONS(5171), 1, + anon_sym_LPAREN, + ACTIONS(5174), 1, + anon_sym_op, + ACTIONS(5177), 1, + anon_sym_LBRACE, + ACTIONS(5180), 1, + anon_sym_POUND, + ACTIONS(5183), 1, + anon_sym_LBRACK, + ACTIONS(5186), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5189), 1, + anon_sym_let, + ACTIONS(5192), 1, + anon_sym_u201c, + ACTIONS(5195), 1, + anon_sym_u2018, + ACTIONS(5198), 1, + anon_sym_BQUOTE, + STATE(7451), 1, + sym_vid, + STATE(7830), 1, + sym__scon, + STATE(7877), 1, + sym_longvid, + STATE(18911), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5162), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1083), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 18, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [74206] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(5201), 1, + sym_integer_scon, + ACTIONS(5207), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5210), 1, + sym__symbolic_ident, + ACTIONS(5213), 1, + anon_sym_LPAREN, + ACTIONS(5216), 1, + anon_sym_op, + ACTIONS(5219), 1, + anon_sym_LBRACE, + ACTIONS(5222), 1, + anon_sym_POUND, + ACTIONS(5225), 1, + anon_sym_LBRACK, + ACTIONS(5228), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5231), 1, + anon_sym_let, + ACTIONS(5234), 1, + anon_sym_u201c, + ACTIONS(5237), 1, + anon_sym_u2018, + ACTIONS(5240), 1, + anon_sym_BQUOTE, + STATE(7656), 1, + sym__scon, + STATE(7657), 1, + sym_longvid, + STATE(8034), 1, + sym_vid, + STATE(18922), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5204), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1084), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 18, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [74312] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(5243), 1, + sym_integer_scon, + ACTIONS(5247), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5249), 1, + sym__symbolic_ident, + ACTIONS(5251), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_op, + ACTIONS(5255), 1, + anon_sym_LBRACE, + ACTIONS(5257), 1, + anon_sym_POUND, + ACTIONS(5259), 1, + anon_sym_LBRACK, + ACTIONS(5261), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5263), 1, + anon_sym_let, + ACTIONS(5265), 1, + anon_sym_u201c, + ACTIONS(5267), 1, + anon_sym_u2018, + ACTIONS(5269), 1, + anon_sym_BQUOTE, + STATE(7438), 1, + sym_vid, + STATE(7820), 1, + sym__scon, + STATE(7821), 1, + sym_longvid, + STATE(18958), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5245), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1086), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 18, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [74418] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(5243), 1, + sym_integer_scon, + ACTIONS(5247), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5249), 1, + sym__symbolic_ident, + ACTIONS(5251), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_op, + ACTIONS(5255), 1, + anon_sym_LBRACE, + ACTIONS(5257), 1, + anon_sym_POUND, + ACTIONS(5259), 1, + anon_sym_LBRACK, + ACTIONS(5261), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5263), 1, + anon_sym_let, + ACTIONS(5265), 1, + anon_sym_u201c, + ACTIONS(5267), 1, + anon_sym_u2018, + ACTIONS(5269), 1, + anon_sym_BQUOTE, + STATE(7438), 1, + sym_vid, + STATE(7820), 1, + sym__scon, + STATE(7821), 1, + sym_longvid, + STATE(18958), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5245), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1087), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 18, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [74524] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(5271), 1, + sym_integer_scon, + ACTIONS(5277), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5280), 1, + sym__symbolic_ident, + ACTIONS(5283), 1, + anon_sym_LPAREN, + ACTIONS(5286), 1, + anon_sym_op, + ACTIONS(5289), 1, + anon_sym_LBRACE, + ACTIONS(5292), 1, + anon_sym_POUND, + ACTIONS(5295), 1, + anon_sym_LBRACK, + ACTIONS(5298), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5301), 1, + anon_sym_let, + ACTIONS(5304), 1, + anon_sym_u201c, + ACTIONS(5307), 1, + anon_sym_u2018, + ACTIONS(5310), 1, + anon_sym_BQUOTE, + STATE(7438), 1, + sym_vid, + STATE(7820), 1, + sym__scon, + STATE(7821), 1, + sym_longvid, + STATE(18958), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5274), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1087), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 18, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [74630] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(5313), 1, + sym_integer_scon, + ACTIONS(5319), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5322), 1, + sym__symbolic_ident, + ACTIONS(5325), 1, + anon_sym_LPAREN, + ACTIONS(5328), 1, + anon_sym_op, + ACTIONS(5331), 1, + anon_sym_LBRACE, + ACTIONS(5334), 1, + anon_sym_POUND, + ACTIONS(5337), 1, + anon_sym_LBRACK, + ACTIONS(5340), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5343), 1, + anon_sym_let, + ACTIONS(5346), 1, + anon_sym_u201c, + ACTIONS(5349), 1, + anon_sym_u2018, + ACTIONS(5352), 1, + anon_sym_BQUOTE, + STATE(7510), 1, + sym__scon, + STATE(7511), 1, + sym_longvid, + STATE(7867), 1, + sym_vid, + STATE(19219), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5316), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1088), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 18, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [74736] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(5355), 1, + sym_integer_scon, + ACTIONS(5359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5361), 1, + sym__symbolic_ident, + ACTIONS(5363), 1, + anon_sym_LPAREN, + ACTIONS(5365), 1, + anon_sym_op, + ACTIONS(5367), 1, + anon_sym_LBRACE, + ACTIONS(5369), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_LBRACK, + ACTIONS(5373), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5375), 1, + anon_sym_let, + ACTIONS(5377), 1, + anon_sym_u201c, + ACTIONS(5379), 1, + anon_sym_u2018, + ACTIONS(5381), 1, + anon_sym_BQUOTE, + STATE(7442), 1, + sym__scon, + STATE(7443), 1, + sym_longvid, + STATE(7529), 1, + sym_vid, + STATE(18773), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5357), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1090), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 18, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [74842] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(5355), 1, + sym_integer_scon, + ACTIONS(5359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5361), 1, + sym__symbolic_ident, + ACTIONS(5363), 1, + anon_sym_LPAREN, + ACTIONS(5365), 1, + anon_sym_op, + ACTIONS(5367), 1, + anon_sym_LBRACE, + ACTIONS(5369), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_LBRACK, + ACTIONS(5373), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5375), 1, + anon_sym_let, + ACTIONS(5377), 1, + anon_sym_u201c, + ACTIONS(5379), 1, + anon_sym_u2018, + ACTIONS(5381), 1, + anon_sym_BQUOTE, + STATE(7442), 1, + sym__scon, + STATE(7443), 1, + sym_longvid, + STATE(7529), 1, + sym_vid, + STATE(18773), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5357), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1094), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 18, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [74948] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(5383), 1, + sym_integer_scon, + ACTIONS(5387), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5389), 1, + sym__symbolic_ident, + ACTIONS(5391), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, + anon_sym_op, + ACTIONS(5395), 1, + anon_sym_LBRACE, + ACTIONS(5397), 1, + anon_sym_POUND, + ACTIONS(5399), 1, + anon_sym_LBRACK, + ACTIONS(5401), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5403), 1, + anon_sym_let, + ACTIONS(5405), 1, + anon_sym_u201c, + ACTIONS(5407), 1, + anon_sym_u2018, + ACTIONS(5409), 1, + anon_sym_BQUOTE, + STATE(7656), 1, + sym__scon, + STATE(7657), 1, + sym_longvid, + STATE(8034), 1, + sym_vid, + STATE(18922), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5385), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1084), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 18, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [75054] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(5411), 1, + sym_integer_scon, + ACTIONS(5415), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5417), 1, + sym__symbolic_ident, + ACTIONS(5419), 1, + anon_sym_LPAREN, + ACTIONS(5421), 1, + anon_sym_op, + ACTIONS(5423), 1, + anon_sym_LBRACE, + ACTIONS(5425), 1, + anon_sym_POUND, + ACTIONS(5427), 1, + anon_sym_LBRACK, + ACTIONS(5429), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5431), 1, + anon_sym_let, + ACTIONS(5433), 1, + anon_sym_u201c, + ACTIONS(5435), 1, + anon_sym_u2018, + ACTIONS(5437), 1, + anon_sym_BQUOTE, + STATE(7500), 1, + sym_vid, + STATE(7970), 1, + sym__scon, + STATE(7971), 1, + sym_longvid, + STATE(18762), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5413), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1093), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 18, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [75160] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(5411), 1, + sym_integer_scon, + ACTIONS(5415), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5417), 1, + sym__symbolic_ident, + ACTIONS(5419), 1, + anon_sym_LPAREN, + ACTIONS(5421), 1, + anon_sym_op, + ACTIONS(5423), 1, + anon_sym_LBRACE, + ACTIONS(5425), 1, + anon_sym_POUND, + ACTIONS(5427), 1, + anon_sym_LBRACK, + ACTIONS(5429), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5431), 1, + anon_sym_let, + ACTIONS(5433), 1, + anon_sym_u201c, + ACTIONS(5435), 1, + anon_sym_u2018, + ACTIONS(5437), 1, + anon_sym_BQUOTE, + STATE(7500), 1, + sym_vid, + STATE(7970), 1, + sym__scon, + STATE(7971), 1, + sym_longvid, + STATE(18762), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5413), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1101), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 18, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [75266] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(5439), 1, + sym_integer_scon, + ACTIONS(5445), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5448), 1, + sym__symbolic_ident, + ACTIONS(5451), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_op, + ACTIONS(5457), 1, + anon_sym_LBRACE, + ACTIONS(5460), 1, + anon_sym_POUND, + ACTIONS(5463), 1, + anon_sym_LBRACK, + ACTIONS(5466), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5469), 1, + anon_sym_let, + ACTIONS(5472), 1, + anon_sym_u201c, + ACTIONS(5475), 1, + anon_sym_u2018, + ACTIONS(5478), 1, + anon_sym_BQUOTE, + STATE(7442), 1, + sym__scon, + STATE(7443), 1, + sym_longvid, + STATE(7529), 1, + sym_vid, + STATE(18773), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5442), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1094), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 18, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [75372] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(5481), 1, + sym_integer_scon, + ACTIONS(5485), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5487), 1, + sym__symbolic_ident, + ACTIONS(5489), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + anon_sym_op, + ACTIONS(5493), 1, + anon_sym_LBRACE, + ACTIONS(5495), 1, + anon_sym_POUND, + ACTIONS(5497), 1, + anon_sym_LBRACK, + ACTIONS(5499), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5501), 1, + anon_sym_let, + ACTIONS(5503), 1, + anon_sym_u201c, + ACTIONS(5505), 1, + anon_sym_u2018, + ACTIONS(5507), 1, + anon_sym_BQUOTE, + STATE(7451), 1, + sym_vid, + STATE(7830), 1, + sym__scon, + STATE(7877), 1, + sym_longvid, + STATE(18911), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5483), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1083), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 18, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [75478] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(5509), 1, + sym_integer_scon, + ACTIONS(5513), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5515), 1, + sym__symbolic_ident, + ACTIONS(5517), 1, + anon_sym_LPAREN, + ACTIONS(5519), 1, + anon_sym_op, + ACTIONS(5521), 1, + anon_sym_LBRACE, + ACTIONS(5523), 1, + anon_sym_POUND, + ACTIONS(5525), 1, + anon_sym_LBRACK, + ACTIONS(5527), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5529), 1, + anon_sym_let, + ACTIONS(5531), 1, + anon_sym_u201c, + ACTIONS(5533), 1, + anon_sym_u2018, + ACTIONS(5535), 1, + anon_sym_BQUOTE, + STATE(7510), 1, + sym__scon, + STATE(7511), 1, + sym_longvid, + STATE(7867), 1, + sym_vid, + STATE(19219), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5511), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1088), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 18, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [75584] = 23, + ACTIONS(5537), 1, + sym_integer_scon, + ACTIONS(5541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5543), 1, + sym__symbolic_ident, + ACTIONS(5545), 1, + anon_sym_LPAREN, + ACTIONS(5547), 1, + anon_sym_op, + ACTIONS(5549), 1, + anon_sym_LBRACE, + ACTIONS(5551), 1, + anon_sym_POUND, + ACTIONS(5553), 1, + anon_sym_LBRACK, + ACTIONS(5555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5557), 1, + anon_sym_let, + ACTIONS(5559), 1, + anon_sym_u201c, + ACTIONS(5561), 1, + anon_sym_u2018, + ACTIONS(5563), 1, + anon_sym_BQUOTE, + STATE(7568), 1, + sym__scon, + STATE(7569), 1, + sym_longvid, + STATE(7716), 1, + sym_vid, + STATE(19114), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(5539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1098), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 17, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [75690] = 23, + ACTIONS(5537), 1, + sym_integer_scon, + ACTIONS(5541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5543), 1, + sym__symbolic_ident, + ACTIONS(5545), 1, + anon_sym_LPAREN, + ACTIONS(5547), 1, + anon_sym_op, + ACTIONS(5549), 1, + anon_sym_LBRACE, + ACTIONS(5551), 1, + anon_sym_POUND, + ACTIONS(5553), 1, + anon_sym_LBRACK, + ACTIONS(5555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5557), 1, + anon_sym_let, + ACTIONS(5559), 1, + anon_sym_u201c, + ACTIONS(5561), 1, + anon_sym_u2018, + ACTIONS(5563), 1, + anon_sym_BQUOTE, + STATE(7568), 1, + sym__scon, + STATE(7569), 1, + sym_longvid, + STATE(7716), 1, + sym_vid, + STATE(19114), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(5539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1099), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 17, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [75796] = 23, + ACTIONS(5565), 1, + sym_integer_scon, + ACTIONS(5571), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5574), 1, + sym__symbolic_ident, + ACTIONS(5577), 1, + anon_sym_LPAREN, + ACTIONS(5580), 1, + anon_sym_op, + ACTIONS(5583), 1, + anon_sym_LBRACE, + ACTIONS(5586), 1, + anon_sym_POUND, + ACTIONS(5589), 1, + anon_sym_LBRACK, + ACTIONS(5592), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5595), 1, + anon_sym_let, + ACTIONS(5598), 1, + anon_sym_u201c, + ACTIONS(5601), 1, + anon_sym_u2018, + ACTIONS(5604), 1, + anon_sym_BQUOTE, + STATE(7568), 1, + sym__scon, + STATE(7569), 1, + sym_longvid, + STATE(7716), 1, + sym_vid, + STATE(19114), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(5568), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1099), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 17, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [75902] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(5509), 1, + sym_integer_scon, + ACTIONS(5513), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5515), 1, + sym__symbolic_ident, + ACTIONS(5517), 1, + anon_sym_LPAREN, + ACTIONS(5519), 1, + anon_sym_op, + ACTIONS(5521), 1, + anon_sym_LBRACE, + ACTIONS(5523), 1, + anon_sym_POUND, + ACTIONS(5525), 1, + anon_sym_LBRACK, + ACTIONS(5527), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5529), 1, + anon_sym_let, + ACTIONS(5531), 1, + anon_sym_u201c, + ACTIONS(5533), 1, + anon_sym_u2018, + ACTIONS(5535), 1, + anon_sym_BQUOTE, + STATE(7510), 1, + sym__scon, + STATE(7511), 1, + sym_longvid, + STATE(7867), 1, + sym_vid, + STATE(19219), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5511), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1096), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 18, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [76008] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(5607), 1, + sym_integer_scon, + ACTIONS(5613), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5616), 1, + sym__symbolic_ident, + ACTIONS(5619), 1, + anon_sym_LPAREN, + ACTIONS(5622), 1, + anon_sym_op, + ACTIONS(5625), 1, + anon_sym_LBRACE, + ACTIONS(5628), 1, + anon_sym_POUND, + ACTIONS(5631), 1, + anon_sym_LBRACK, + ACTIONS(5634), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5637), 1, + anon_sym_let, + ACTIONS(5640), 1, + anon_sym_u201c, + ACTIONS(5643), 1, + anon_sym_u2018, + ACTIONS(5646), 1, + anon_sym_BQUOTE, + STATE(7500), 1, + sym_vid, + STATE(7970), 1, + sym__scon, + STATE(7971), 1, + sym_longvid, + STATE(18762), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5610), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1101), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 18, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [76114] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(5481), 1, + sym_integer_scon, + ACTIONS(5485), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5487), 1, + sym__symbolic_ident, + ACTIONS(5489), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + anon_sym_op, + ACTIONS(5493), 1, + anon_sym_LBRACE, + ACTIONS(5495), 1, + anon_sym_POUND, + ACTIONS(5497), 1, + anon_sym_LBRACK, + ACTIONS(5499), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5501), 1, + anon_sym_let, + ACTIONS(5503), 1, + anon_sym_u201c, + ACTIONS(5505), 1, + anon_sym_u2018, + ACTIONS(5507), 1, + anon_sym_BQUOTE, + STATE(7451), 1, + sym_vid, + STATE(7830), 1, + sym__scon, + STATE(7877), 1, + sym_longvid, + STATE(18911), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5483), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1095), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 18, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [76220] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(5649), 1, + sym_integer_scon, + ACTIONS(5653), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5655), 1, + sym__symbolic_ident, + ACTIONS(5657), 1, + anon_sym_LPAREN, + ACTIONS(5659), 1, + anon_sym_op, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(5663), 1, + anon_sym_POUND, + ACTIONS(5665), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5669), 1, + anon_sym_let, + ACTIONS(5671), 1, + anon_sym_u201c, + ACTIONS(5673), 1, + anon_sym_u2018, + ACTIONS(5675), 1, + anon_sym_BQUOTE, + STATE(7660), 1, + sym__scon, + STATE(7661), 1, + sym_longvid, + STATE(7832), 1, + sym_vid, + STATE(18984), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5651), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1104), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 18, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [76326] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(5649), 1, + sym_integer_scon, + ACTIONS(5653), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5655), 1, + sym__symbolic_ident, + ACTIONS(5657), 1, + anon_sym_LPAREN, + ACTIONS(5659), 1, + anon_sym_op, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(5663), 1, + anon_sym_POUND, + ACTIONS(5665), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5669), 1, + anon_sym_let, + ACTIONS(5671), 1, + anon_sym_u201c, + ACTIONS(5673), 1, + anon_sym_u2018, + ACTIONS(5675), 1, + anon_sym_BQUOTE, + STATE(7660), 1, + sym__scon, + STATE(7661), 1, + sym_longvid, + STATE(7832), 1, + sym_vid, + STATE(18984), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5651), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1105), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 18, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [76432] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(5677), 1, + sym_integer_scon, + ACTIONS(5683), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5686), 1, + sym__symbolic_ident, + ACTIONS(5689), 1, + anon_sym_LPAREN, + ACTIONS(5692), 1, + anon_sym_op, + ACTIONS(5695), 1, + anon_sym_LBRACE, + ACTIONS(5698), 1, + anon_sym_POUND, + ACTIONS(5701), 1, + anon_sym_LBRACK, + ACTIONS(5704), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5707), 1, + anon_sym_let, + ACTIONS(5710), 1, + anon_sym_u201c, + ACTIONS(5713), 1, + anon_sym_u2018, + ACTIONS(5716), 1, + anon_sym_BQUOTE, + STATE(7660), 1, + sym__scon, + STATE(7661), 1, + sym_longvid, + STATE(7832), 1, + sym_vid, + STATE(18984), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5680), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1105), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 18, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [76538] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(5719), 1, + sym_integer_scon, + ACTIONS(5723), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5725), 1, + sym__symbolic_ident, + ACTIONS(5727), 1, + anon_sym_LPAREN, + ACTIONS(5729), 1, + anon_sym_op, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(5733), 1, + anon_sym_POUND, + ACTIONS(5735), 1, + anon_sym_LBRACK, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5739), 1, + anon_sym_let, + ACTIONS(5741), 1, + anon_sym_u201c, + ACTIONS(5743), 1, + anon_sym_u2018, + ACTIONS(5745), 1, + anon_sym_BQUOTE, + STATE(7715), 1, + sym__scon, + STATE(7717), 1, + sym_longvid, + STATE(7836), 1, + sym_vid, + STATE(19108), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5721), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1107), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 18, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [76644] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(5719), 1, + sym_integer_scon, + ACTIONS(5723), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5725), 1, + sym__symbolic_ident, + ACTIONS(5727), 1, + anon_sym_LPAREN, + ACTIONS(5729), 1, + anon_sym_op, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(5733), 1, + anon_sym_POUND, + ACTIONS(5735), 1, + anon_sym_LBRACK, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5739), 1, + anon_sym_let, + ACTIONS(5741), 1, + anon_sym_u201c, + ACTIONS(5743), 1, + anon_sym_u2018, + ACTIONS(5745), 1, + anon_sym_BQUOTE, + STATE(7715), 1, + sym__scon, + STATE(7717), 1, + sym_longvid, + STATE(7836), 1, + sym_vid, + STATE(19108), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5721), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1108), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 18, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [76750] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(5747), 1, + sym_integer_scon, + ACTIONS(5753), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5756), 1, + sym__symbolic_ident, + ACTIONS(5759), 1, + anon_sym_LPAREN, + ACTIONS(5762), 1, + anon_sym_op, + ACTIONS(5765), 1, + anon_sym_LBRACE, + ACTIONS(5768), 1, + anon_sym_POUND, + ACTIONS(5771), 1, + anon_sym_LBRACK, + ACTIONS(5774), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5777), 1, + anon_sym_let, + ACTIONS(5780), 1, + anon_sym_u201c, + ACTIONS(5783), 1, + anon_sym_u2018, + ACTIONS(5786), 1, + anon_sym_BQUOTE, + STATE(7715), 1, + sym__scon, + STATE(7717), 1, + sym_longvid, + STATE(7836), 1, + sym_vid, + STATE(19108), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5750), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1108), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 18, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [76856] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(5383), 1, + sym_integer_scon, + ACTIONS(5387), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5389), 1, + sym__symbolic_ident, + ACTIONS(5391), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, + anon_sym_op, + ACTIONS(5395), 1, + anon_sym_LBRACE, + ACTIONS(5397), 1, + anon_sym_POUND, + ACTIONS(5399), 1, + anon_sym_LBRACK, + ACTIONS(5401), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5403), 1, + anon_sym_let, + ACTIONS(5405), 1, + anon_sym_u201c, + ACTIONS(5407), 1, + anon_sym_u2018, + ACTIONS(5409), 1, + anon_sym_BQUOTE, + STATE(7656), 1, + sym__scon, + STATE(7657), 1, + sym_longvid, + STATE(8034), 1, + sym_vid, + STATE(18922), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5385), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1091), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 18, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [76962] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5813), 1, + anon_sym_end, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [77083] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5831), 1, + anon_sym_RPAREN, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17433), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [77204] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5835), 1, + anon_sym_COMMA, + ACTIONS(5837), 1, + anon_sym_RBRACK, + STATE(1113), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16871), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [77325] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5839), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17477), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [77446] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(5841), 1, + sym_integer_scon, + ACTIONS(5845), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5847), 1, + sym__symbolic_ident, + ACTIONS(5849), 1, + anon_sym_LPAREN, + ACTIONS(5851), 1, + anon_sym_op, + ACTIONS(5853), 1, + anon_sym_LBRACE, + ACTIONS(5855), 1, + anon_sym_POUND, + ACTIONS(5857), 1, + anon_sym_LBRACK, + ACTIONS(5859), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5861), 1, + anon_sym_let, + ACTIONS(5863), 1, + anon_sym_u201c, + ACTIONS(5865), 1, + anon_sym_u2018, + ACTIONS(5867), 1, + anon_sym_BQUOTE, + STATE(8234), 1, + sym_vid, + STATE(8256), 1, + sym__scon, + STATE(8261), 1, + sym_longvid, + STATE(18751), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5843), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1115), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 17, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [77551] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(5841), 1, + sym_integer_scon, + ACTIONS(5845), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5847), 1, + sym__symbolic_ident, + ACTIONS(5849), 1, + anon_sym_LPAREN, + ACTIONS(5851), 1, + anon_sym_op, + ACTIONS(5853), 1, + anon_sym_LBRACE, + ACTIONS(5855), 1, + anon_sym_POUND, + ACTIONS(5857), 1, + anon_sym_LBRACK, + ACTIONS(5859), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5861), 1, + anon_sym_let, + ACTIONS(5863), 1, + anon_sym_u201c, + ACTIONS(5865), 1, + anon_sym_u2018, + ACTIONS(5867), 1, + anon_sym_BQUOTE, + STATE(8234), 1, + sym_vid, + STATE(8256), 1, + sym__scon, + STATE(8261), 1, + sym_longvid, + STATE(18751), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5843), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1116), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 17, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [77656] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(5869), 1, + sym_integer_scon, + ACTIONS(5875), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5878), 1, + sym__symbolic_ident, + ACTIONS(5881), 1, + anon_sym_LPAREN, + ACTIONS(5884), 1, + anon_sym_op, + ACTIONS(5887), 1, + anon_sym_LBRACE, + ACTIONS(5890), 1, + anon_sym_POUND, + ACTIONS(5893), 1, + anon_sym_LBRACK, + ACTIONS(5896), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5899), 1, + anon_sym_let, + ACTIONS(5902), 1, + anon_sym_u201c, + ACTIONS(5905), 1, + anon_sym_u2018, + ACTIONS(5908), 1, + anon_sym_BQUOTE, + STATE(8234), 1, + sym_vid, + STATE(8256), 1, + sym__scon, + STATE(8261), 1, + sym_longvid, + STATE(18751), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5872), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(1116), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 17, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [77761] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5911), 1, + anon_sym_COMMA, + ACTIONS(5913), 1, + anon_sym_RBRACK, + STATE(1120), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16799), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [77882] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5915), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16820), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [78003] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(5917), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16821), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [78124] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5919), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16827), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [78245] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5921), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [78366] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(5923), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [78487] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5925), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [78608] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5927), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [78729] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5929), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [78850] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(5931), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [78971] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(5933), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [79092] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5935), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [79213] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5937), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [79334] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5939), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [79455] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(5941), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [79576] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5943), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [79697] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5945), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [79818] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5947), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [79939] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5949), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [80060] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5951), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [80181] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5953), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [80302] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5955), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [80423] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5957), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [80544] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5959), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [80665] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5961), 1, + anon_sym_COMMA, + ACTIONS(5963), 1, + anon_sym_RBRACK, + STATE(1144), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16997), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [80786] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5965), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17002), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [80907] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(5967), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17003), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [81028] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5969), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17014), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [81149] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5971), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [81270] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(5973), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [81391] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5975), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [81512] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5977), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [81633] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(5979), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [81754] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5981), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [81875] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5983), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [81996] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5985), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [82117] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(5987), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [82238] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5989), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [82359] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5991), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [82480] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5993), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [82601] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5995), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [82722] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5997), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [82843] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5999), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [82964] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6001), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [83085] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6003), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [83206] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6005), 1, + anon_sym_COMMA, + ACTIONS(6007), 1, + anon_sym_RBRACK, + STATE(1165), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17135), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [83327] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6009), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17185), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [83448] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6011), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17186), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [83569] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6013), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17196), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [83690] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6015), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [83811] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6017), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [83932] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6019), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [84053] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6021), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [84174] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6023), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [84295] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6025), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [84416] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6027), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [84537] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6029), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [84658] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6031), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [84779] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6033), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [84900] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6035), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [85021] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6037), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [85142] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6039), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [85263] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6041), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [85384] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6043), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [85505] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6045), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [85626] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6047), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [85747] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6049), 1, + anon_sym_COMMA, + ACTIONS(6051), 1, + anon_sym_RBRACK, + STATE(1186), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17295), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [85868] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6053), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17309), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [85989] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6055), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17310), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [86110] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6057), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17318), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [86231] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [86352] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6061), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [86473] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6063), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [86594] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6065), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [86715] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6067), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [86836] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6069), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [86957] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6071), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [87078] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6073), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [87199] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6075), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [87320] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6077), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [87441] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6079), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [87562] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6081), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [87683] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6083), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [87804] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6085), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [87925] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6087), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [88046] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6089), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [88167] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6091), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [88288] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6093), 1, + anon_sym_COMMA, + ACTIONS(6095), 1, + anon_sym_RBRACK, + STATE(1207), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17437), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [88409] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6097), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17443), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [88530] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6099), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17444), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [88651] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6101), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17448), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [88772] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6103), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [88893] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6105), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [89014] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6107), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [89135] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6109), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [89256] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6111), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [89377] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6113), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [89498] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6115), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [89619] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6117), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [89740] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6119), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [89861] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6121), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [89982] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6123), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [90103] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6125), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [90224] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6127), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [90345] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6129), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [90466] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6131), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [90587] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6133), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [90708] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6135), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [90829] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6137), 1, + anon_sym_COMMA, + ACTIONS(6139), 1, + anon_sym_RBRACK, + STATE(1228), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17488), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [90950] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6141), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17492), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [91071] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6143), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17493), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [91192] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6145), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17497), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [91313] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6147), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [91434] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6149), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [91555] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6151), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [91676] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6153), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [91797] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6155), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [91918] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6157), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [92039] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6159), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [92160] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6161), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [92281] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6163), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [92402] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6165), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [92523] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6167), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [92644] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6169), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [92765] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6171), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [92886] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6173), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [93007] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6175), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [93128] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6177), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [93249] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6179), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [93370] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6181), 1, + anon_sym_COMMA, + ACTIONS(6183), 1, + anon_sym_RBRACK, + STATE(1249), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17563), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [93491] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6185), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17565), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [93612] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6187), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17566), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [93733] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6189), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17570), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [93854] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6191), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [93975] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6193), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [94096] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6195), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [94217] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6197), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [94338] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6199), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [94459] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6201), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [94580] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6203), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [94701] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6205), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [94822] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6207), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [94943] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6209), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [95064] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6211), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [95185] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6213), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [95306] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6215), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [95427] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6217), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [95548] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6219), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [95669] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6221), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [95790] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6223), 1, + anon_sym_COMMA, + ACTIONS(6225), 1, + anon_sym_RBRACK, + STATE(1269), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17612), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [95911] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6227), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17618), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [96032] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6229), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17619), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [96153] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6231), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17621), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [96274] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6233), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [96395] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6235), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [96516] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6237), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [96637] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6239), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [96758] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6241), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [96879] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6243), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [97000] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6245), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [97121] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6247), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [97242] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6249), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [97363] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6251), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [97484] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6253), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [97605] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6255), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [97726] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6257), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [97847] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6259), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [97968] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6261), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [98089] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6263), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [98210] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6265), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [98331] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6267), 1, + anon_sym_COMMA, + ACTIONS(6269), 1, + anon_sym_RBRACK, + STATE(1290), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17640), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [98452] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6271), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17641), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [98573] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6273), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17642), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [98694] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6275), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17644), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [98815] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6277), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [98936] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6279), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [99057] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6281), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [99178] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6283), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [99299] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6285), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [99420] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6287), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [99541] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6289), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [99662] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6291), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [99783] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6293), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [99904] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6295), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [100025] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6297), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [100146] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6299), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [100267] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6301), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [100388] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6303), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [100509] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6305), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [100630] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6307), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [100751] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6309), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [100872] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6311), 1, + anon_sym_COMMA, + ACTIONS(6313), 1, + anon_sym_RBRACK, + STATE(1311), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17679), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [100993] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6315), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17680), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [101114] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6317), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17681), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [101235] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6319), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17686), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [101356] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6321), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [101477] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6323), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [101598] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6325), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [101719] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6327), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [101840] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6329), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [101961] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6331), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [102082] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6333), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [102203] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6335), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [102324] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6337), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [102445] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6339), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [102566] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6341), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [102687] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6343), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [102808] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6345), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [102929] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6347), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [103050] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6349), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [103171] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6351), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [103292] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6353), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [103413] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6355), 1, + anon_sym_COMMA, + ACTIONS(6357), 1, + anon_sym_RBRACK, + STATE(1332), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16946), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [103534] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6359), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17177), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [103655] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6361), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17182), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [103776] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6363), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17320), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [103897] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6365), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [104018] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6367), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [104139] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6369), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [104260] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6371), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [104381] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6373), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [104502] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6375), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [104623] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6377), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [104744] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6379), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [104865] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6381), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [104986] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6383), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [105107] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6385), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [105228] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6387), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [105349] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6389), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [105470] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6391), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [105591] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6393), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [105712] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6395), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [105833] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6397), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [105954] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6399), 1, + anon_sym_COMMA, + ACTIONS(6401), 1, + anon_sym_RBRACK, + STATE(1353), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16904), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [106075] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6403), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17009), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [106196] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6405), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17018), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [106317] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6407), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17108), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [106438] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6409), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [106559] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6411), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [106680] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6413), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [106801] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6415), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [106922] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6417), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [107043] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6419), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [107164] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6421), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [107285] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6423), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [107406] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6425), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [107527] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6427), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [107648] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6429), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [107769] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6431), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [107890] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6433), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [108011] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6435), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [108132] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6437), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [108253] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6439), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [108374] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6441), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [108495] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6443), 1, + anon_sym_COMMA, + ACTIONS(6445), 1, + anon_sym_RBRACK, + STATE(1374), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17460), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [108616] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6447), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17482), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [108737] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6449), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17484), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [108858] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6451), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17531), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [108979] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6453), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [109100] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6455), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [109221] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6457), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [109342] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6459), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [109463] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6461), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [109584] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6463), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [109705] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6465), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [109826] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6467), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [109947] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6469), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [110068] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6471), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [110189] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6473), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [110310] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6475), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [110431] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6477), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [110552] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6479), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [110673] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6481), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [110794] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6483), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [110915] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6485), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [111036] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6487), 1, + anon_sym_COMMA, + ACTIONS(6489), 1, + anon_sym_RBRACK, + STATE(1396), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17474), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [111157] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6491), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17575), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [111278] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6493), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17576), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [111399] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6495), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [111520] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6497), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17635), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [111641] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6499), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [111762] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6501), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [111883] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6503), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [112004] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6505), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [112125] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6507), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [112246] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6509), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [112367] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6511), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [112488] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6513), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [112609] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6515), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [112730] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6517), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [112851] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6519), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [112972] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6521), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [113093] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [113214] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6525), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [113335] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6527), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [113456] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6529), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [113577] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6531), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [113698] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6533), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [113819] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6535), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [113940] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6537), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [114061] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6539), 1, + anon_sym_COMMA, + ACTIONS(6541), 1, + anon_sym_RBRACK, + STATE(1420), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16884), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [114182] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6543), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16917), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [114303] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6545), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16918), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [114424] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6547), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16944), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [114545] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6549), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [114666] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6551), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [114787] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6553), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [114908] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6555), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [115029] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6557), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [115150] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6559), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [115271] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6561), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [115392] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6563), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [115513] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6565), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [115634] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6567), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [115755] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6569), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [115876] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6571), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [115997] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6573), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [116118] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6575), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [116239] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6577), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [116360] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6579), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [116481] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6581), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [116602] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6583), 1, + anon_sym_COMMA, + ACTIONS(6585), 1, + anon_sym_RBRACK, + STATE(1441), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17147), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [116723] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6587), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17152), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [116844] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6589), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17153), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [116965] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6591), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17165), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [117086] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6593), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [117207] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6595), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [117328] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6597), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [117449] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6599), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [117570] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6601), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [117691] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6603), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [117812] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6605), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [117933] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6607), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [118054] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6609), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [118175] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6611), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [118296] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6613), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [118417] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6615), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [118538] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6617), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [118659] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6619), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [118780] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6621), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [118901] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6623), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [119022] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6625), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [119143] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6627), 1, + anon_sym_COMMA, + ACTIONS(6629), 1, + anon_sym_RBRACK, + STATE(1462), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17240), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [119264] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6631), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17253), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [119385] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6633), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17255), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [119506] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6635), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17272), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [119627] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6637), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [119748] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6639), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [119869] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6641), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [119990] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6643), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [120111] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6645), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [120232] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6647), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [120353] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6649), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [120474] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6651), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [120595] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6653), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [120716] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6655), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [120837] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6657), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [120958] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6659), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [121079] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6661), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [121200] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6663), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [121321] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6665), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [121442] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6667), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [121563] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6669), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [121684] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6671), 1, + anon_sym_COMMA, + ACTIONS(6673), 1, + anon_sym_RBRACK, + STATE(1483), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17399), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [121805] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6675), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17411), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [121926] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6677), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17412), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [122047] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6679), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17415), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [122168] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6681), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [122289] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6683), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [122410] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6685), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [122531] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6687), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [122652] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6689), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [122773] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6691), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [122894] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6693), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [123015] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6695), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [123136] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6697), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [123257] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6699), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [123378] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6701), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [123499] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6703), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [123620] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6705), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [123741] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6707), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [123862] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6709), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [123983] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6711), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [124104] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6713), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [124225] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6715), 1, + anon_sym_COMMA, + ACTIONS(6717), 1, + anon_sym_RBRACK, + STATE(1504), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17504), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [124346] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6719), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17512), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [124467] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6721), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17513), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [124588] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6723), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17527), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [124709] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6725), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [124830] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6727), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [124951] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6729), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [125072] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6731), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [125193] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6733), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [125314] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6735), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [125435] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6737), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [125556] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6739), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [125677] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6741), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [125798] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6743), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [125919] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6745), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [126040] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6747), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [126161] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6749), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [126282] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6751), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [126403] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6753), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [126524] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6755), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [126645] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6757), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [126766] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6759), 1, + anon_sym_COMMA, + ACTIONS(6761), 1, + anon_sym_RBRACK, + STATE(1525), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17662), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [126887] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6763), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17665), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [127008] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6765), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17666), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [127129] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6767), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17672), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [127250] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6769), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [127371] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6771), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [127492] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6773), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [127613] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6775), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [127734] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6777), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [127855] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6779), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [127976] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6781), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [128097] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6783), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [128218] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6785), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [128339] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6787), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [128460] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6789), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [128581] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6791), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [128702] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6793), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [128823] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6795), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [128944] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6797), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [129065] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6799), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [129186] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6801), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [129307] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6803), 1, + anon_sym_COMMA, + ACTIONS(6805), 1, + anon_sym_RBRACK, + STATE(1546), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16712), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [129428] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6807), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16801), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [129549] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6809), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16835), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [129670] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6811), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16932), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [129791] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6813), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [129912] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6815), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [130033] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6817), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [130154] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6819), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [130275] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6821), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [130396] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6823), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [130517] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6825), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [130638] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6827), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [130759] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6829), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [130880] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6831), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [131001] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6833), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [131122] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6835), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [131243] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6837), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [131364] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6839), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [131485] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6841), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [131606] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6843), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [131727] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6845), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [131848] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6847), 1, + anon_sym_COMMA, + ACTIONS(6849), 1, + anon_sym_RBRACK, + STATE(1567), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17327), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [131969] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6851), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17347), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [132090] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6853), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17350), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [132211] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6855), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17368), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [132332] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6857), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [132453] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6859), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [132574] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6861), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [132695] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6863), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [132816] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6865), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [132937] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6867), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [133058] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6869), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [133179] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6871), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [133300] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6873), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [133421] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6875), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [133542] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6877), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [133663] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6879), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [133784] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6881), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [133905] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6883), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [134026] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6885), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [134147] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6887), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [134268] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6889), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [134389] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6891), 1, + anon_sym_COMMA, + ACTIONS(6893), 1, + anon_sym_RBRACK, + STATE(1588), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17515), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [134510] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6895), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17533), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [134631] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6897), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17539), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [134752] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6899), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17551), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [134873] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6901), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [134994] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6903), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [135115] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6905), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [135236] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6907), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [135357] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6909), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [135478] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6911), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [135599] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6913), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [135720] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6915), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [135841] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6917), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [135962] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6919), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [136083] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6921), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [136204] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6923), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [136325] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6925), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [136446] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6927), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [136567] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6929), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [136688] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6931), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [136809] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6933), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [136930] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6935), 1, + anon_sym_COMMA, + ACTIONS(6937), 1, + anon_sym_RBRACK, + STATE(1609), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16683), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [137051] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6939), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16690), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [137172] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6941), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16691), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [137293] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6943), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16699), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [137414] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6945), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [137535] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6947), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [137656] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [137777] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6951), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [137898] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6953), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [138019] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6955), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [138140] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6957), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [138261] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6959), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [138382] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6961), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [138503] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6963), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [138624] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6965), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [138745] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6967), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [138866] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6969), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [138987] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6971), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [139108] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6973), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [139229] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6975), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [139350] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(6977), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [139471] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(6979), 1, + anon_sym_COMMA, + ACTIONS(6981), 1, + anon_sym_RBRACK, + STATE(1630), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16752), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [139592] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6983), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16755), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [139713] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6985), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16756), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [139834] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6987), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16765), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [139955] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6989), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [140076] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6991), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [140197] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6993), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [140318] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6995), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [140439] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(6997), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [140560] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(6999), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [140681] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7001), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [140802] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7003), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [140923] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7005), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [141044] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7007), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [141165] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7009), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [141286] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7011), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [141407] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7013), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [141528] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7015), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [141649] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7017), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [141770] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7019), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [141891] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7021), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [142012] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7023), 1, + anon_sym_COMMA, + ACTIONS(7025), 1, + anon_sym_RBRACK, + STATE(1651), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16806), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [142133] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7027), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16815), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [142254] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7029), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16816), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [142375] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7031), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16824), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [142496] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7033), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [142617] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7035), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [142738] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7037), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [142859] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7039), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [142980] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7041), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [143101] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7043), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [143222] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7045), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [143343] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7047), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [143464] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7049), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [143585] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7051), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [143706] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7053), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [143827] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7055), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [143948] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7057), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [144069] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7059), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [144190] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7061), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [144311] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7063), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [144432] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7065), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [144553] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7067), 1, + anon_sym_COMMA, + ACTIONS(7069), 1, + anon_sym_RBRACK, + STATE(1672), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16888), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [144674] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7071), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16891), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [144795] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7073), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16894), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [144916] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7075), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16901), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [145037] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7077), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [145158] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7079), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [145279] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7081), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [145400] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7083), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [145521] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7085), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [145642] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7087), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [145763] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7089), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [145884] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7091), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [146005] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7093), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [146126] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7095), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [146247] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7097), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [146368] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7099), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [146489] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7101), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [146610] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7103), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [146731] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7105), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [146852] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7107), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [146973] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7109), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [147094] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7111), 1, + anon_sym_COMMA, + ACTIONS(7113), 1, + anon_sym_RBRACK, + STATE(1693), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16949), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [147215] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7115), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16951), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [147336] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7117), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16953), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [147457] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7119), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16964), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [147578] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7121), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [147699] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7123), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [147820] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7125), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [147941] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7127), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [148062] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7129), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [148183] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7131), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [148304] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7133), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [148425] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7135), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [148546] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7137), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [148667] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7139), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [148788] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7141), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [148909] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7143), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [149030] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7145), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [149151] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7147), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [149272] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7149), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [149393] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7151), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [149514] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7153), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [149635] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7155), 1, + anon_sym_COMMA, + ACTIONS(7157), 1, + anon_sym_RBRACK, + STATE(1714), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17017), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [149756] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7159), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17019), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [149877] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7161), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17020), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [149998] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7163), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17029), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [150119] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7165), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [150240] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7167), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [150361] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7169), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [150482] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7171), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [150603] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7173), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [150724] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7175), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [150845] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7177), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [150966] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7179), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [151087] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7181), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [151208] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7183), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [151329] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7185), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [151450] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7187), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [151571] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7189), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [151692] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7191), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [151813] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7193), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [151934] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7195), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [152055] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7197), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [152176] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7199), 1, + anon_sym_COMMA, + ACTIONS(7201), 1, + anon_sym_RBRACK, + STATE(1735), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17079), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [152297] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7203), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17088), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [152418] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7205), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17089), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [152539] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7207), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17096), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [152660] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7209), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [152781] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7211), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [152902] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7213), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [153023] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7215), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [153144] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7217), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [153265] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7219), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [153386] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7221), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [153507] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7223), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [153628] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7225), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [153749] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7227), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [153870] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7229), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [153991] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7231), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [154112] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7233), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [154233] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7235), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [154354] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7237), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [154475] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7239), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [154596] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7241), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [154717] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7243), 1, + anon_sym_COMMA, + ACTIONS(7245), 1, + anon_sym_RBRACK, + STATE(1756), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17138), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [154838] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7247), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17140), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [154959] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7249), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17141), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [155080] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7251), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17144), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [155201] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7253), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [155322] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7255), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [155443] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7257), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [155564] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7259), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [155685] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7261), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [155806] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7263), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [155927] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7265), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [156048] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7267), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [156169] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7269), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [156290] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7271), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [156411] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7273), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [156532] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7275), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [156653] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7277), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [156774] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7279), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [156895] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7281), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [157016] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7283), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [157137] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7285), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [157258] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7287), 1, + anon_sym_COMMA, + ACTIONS(7289), 1, + anon_sym_RBRACK, + STATE(1777), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17158), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [157379] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7291), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17163), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [157500] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7293), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17164), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [157621] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7295), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17168), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [157742] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7297), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [157863] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7299), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [157984] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7301), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [158105] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7303), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [158226] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7305), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [158347] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7307), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [158468] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7309), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [158589] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7311), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [158710] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7313), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [158831] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7315), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [158952] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7317), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [159073] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7319), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [159194] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7321), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [159315] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7323), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [159436] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7325), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [159557] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7327), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [159678] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7329), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [159799] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7331), 1, + anon_sym_COMMA, + ACTIONS(7333), 1, + anon_sym_RBRACK, + STATE(1798), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17184), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [159920] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7335), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17189), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [160041] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7337), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17190), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [160162] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7339), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17192), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [160283] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7341), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [160404] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7343), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [160525] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7345), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [160646] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7347), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [160767] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7349), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [160888] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7351), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [161009] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7353), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [161130] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7355), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [161251] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7357), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [161372] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7359), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [161493] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7361), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [161614] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7363), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [161735] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7365), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [161856] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7367), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [161977] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7369), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [162098] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7371), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [162219] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7373), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [162340] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7375), 1, + anon_sym_COMMA, + ACTIONS(7377), 1, + anon_sym_RBRACK, + STATE(1819), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17213), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [162461] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7379), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17216), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [162582] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7381), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17217), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [162703] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7383), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17221), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [162824] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7385), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [162945] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7387), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [163066] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7389), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [163187] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7391), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [163308] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7393), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [163429] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7395), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [163550] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7397), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [163671] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7399), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [163792] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7401), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [163913] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7403), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [164034] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7405), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [164155] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7407), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [164276] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7409), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [164397] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7411), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [164518] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7413), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [164639] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7415), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [164760] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7417), 1, + anon_sym_COMMA, + ACTIONS(7419), 1, + anon_sym_RBRACK, + STATE(1839), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17243), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [164881] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7421), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17248), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [165002] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7423), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17249), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [165123] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7425), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17251), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [165244] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7427), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [165365] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7429), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [165486] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7431), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [165607] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7433), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [165728] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7435), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [165849] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7437), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [165970] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7439), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [166091] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7441), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [166212] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7443), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [166333] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7445), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [166454] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7447), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [166575] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7449), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [166696] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7451), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [166817] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7453), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [166938] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7455), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [167059] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7457), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [167180] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7459), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [167301] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7461), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [167422] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7463), 1, + anon_sym_COMMA, + ACTIONS(7465), 1, + anon_sym_RBRACK, + STATE(1862), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17282), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [167543] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7467), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17286), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [167664] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7469), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17287), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [167785] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7471), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [167906] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7473), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17291), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [168027] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7475), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [168148] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7477), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [168269] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7479), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [168390] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7481), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [168511] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7483), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [168632] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7485), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [168753] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7487), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [168874] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7489), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [168995] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7491), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [169116] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7493), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [169237] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7495), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [169358] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7497), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [169479] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7499), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [169600] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7501), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [169721] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7503), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [169842] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7505), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [169963] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7507), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [170084] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7509), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [170205] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7511), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [170326] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7513), 1, + anon_sym_COMMA, + ACTIONS(7515), 1, + anon_sym_RBRACK, + STATE(1885), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17331), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [170447] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7517), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17336), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [170568] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7519), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17337), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [170689] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7521), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17345), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [170810] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7523), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [170931] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7525), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [171052] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7527), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [171173] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7529), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [171294] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7531), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [171415] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7533), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [171536] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7535), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [171657] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7537), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [171778] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7539), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [171899] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7541), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [172020] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7543), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [172141] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7545), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [172262] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7547), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [172383] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7549), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [172504] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7551), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [172625] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7553), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [172746] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7555), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [172867] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7557), 1, + anon_sym_COMMA, + ACTIONS(7559), 1, + anon_sym_RBRACK, + STATE(1906), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17385), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [172988] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7561), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17392), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [173109] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7563), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17393), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [173230] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7565), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17396), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [173351] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7567), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [173472] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7569), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [173593] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7571), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [173714] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7573), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [173835] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7575), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [173956] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7577), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [174077] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7579), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [174198] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7581), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [174319] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7583), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [174440] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7585), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [174561] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7587), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [174682] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7589), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [174803] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7591), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [174924] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7593), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [175045] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7595), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [175166] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7597), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [175287] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7599), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [175408] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7601), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [175529] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7603), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [175650] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7605), 1, + anon_sym_COMMA, + ACTIONS(7607), 1, + anon_sym_RBRACK, + STATE(1929), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17419), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [175771] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7609), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17423), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [175892] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7611), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17424), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [176013] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7613), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17427), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [176134] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7615), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [176255] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7617), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [176376] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7619), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [176497] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7621), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [176618] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7623), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [176739] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7625), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [176860] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7627), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [176981] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7629), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [177102] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7631), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [177223] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7633), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [177344] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7635), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [177465] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7637), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [177586] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7639), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [177707] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7641), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [177828] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7643), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [177949] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7645), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [178070] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7647), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [178191] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7649), 1, + anon_sym_COMMA, + ACTIONS(7651), 1, + anon_sym_RBRACK, + STATE(1950), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17461), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [178312] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7653), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17462), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [178433] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7655), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17463), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [178554] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7657), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [178675] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7659), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [178796] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7661), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [178917] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7663), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [179038] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7665), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [179159] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7667), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [179280] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7669), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [179401] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7671), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [179522] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7673), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [179643] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7675), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [179764] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7677), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [179885] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7679), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [180006] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7681), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [180127] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7683), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [180248] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7685), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [180369] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7687), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [180490] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7689), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [180611] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7691), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [180732] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7693), 1, + anon_sym_COMMA, + ACTIONS(7695), 1, + anon_sym_RBRACK, + STATE(1971), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17491), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [180853] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7697), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17502), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [180974] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7699), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17503), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [181095] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7701), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17506), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [181216] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7703), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [181337] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7705), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [181458] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7707), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [181579] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7709), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [181700] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7711), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [181821] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7713), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [181942] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7715), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [182063] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7717), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [182184] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7719), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [182305] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7721), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [182426] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7723), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [182547] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7725), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [182668] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7727), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [182789] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7729), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [182910] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7731), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [183031] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7733), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [183152] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7735), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [183273] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7737), 1, + anon_sym_COMMA, + ACTIONS(7739), 1, + anon_sym_RBRACK, + STATE(1992), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17537), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [183394] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7741), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17540), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [183515] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7743), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17541), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [183636] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7745), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17543), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [183757] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7747), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [183878] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7749), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [183999] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7751), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [184120] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7753), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [184241] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7755), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [184362] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7757), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [184483] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7759), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [184604] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7761), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [184725] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7763), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [184846] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7765), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [184967] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7767), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [185088] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7769), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [185209] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7771), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [185330] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7773), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [185451] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7775), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [185572] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7777), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [185693] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7779), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [185814] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7781), 1, + anon_sym_COMMA, + ACTIONS(7783), 1, + anon_sym_RBRACK, + STATE(2013), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17593), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [185935] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7785), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17596), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [186056] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7787), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17597), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [186177] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7789), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17607), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [186298] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7791), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [186419] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7793), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [186540] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7795), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [186661] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7797), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [186782] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7799), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [186903] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7801), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [187024] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7803), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [187145] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7805), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [187266] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7807), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [187387] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7809), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [187508] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7811), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [187629] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7813), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [187750] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7815), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [187871] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7817), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [187992] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7819), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [188113] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7821), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [188234] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7823), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [188355] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7825), 1, + anon_sym_COMMA, + ACTIONS(7827), 1, + anon_sym_RBRACK, + STATE(2034), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17653), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [188476] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7829), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17656), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [188597] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7831), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17657), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [188718] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7833), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17660), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [188839] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7835), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [188960] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7837), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [189081] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7839), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [189202] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7841), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [189323] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7843), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [189444] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7845), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [189565] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7847), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [189686] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7849), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [189807] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7851), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [189928] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7853), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [190049] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7855), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [190170] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7857), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [190291] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7859), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [190412] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7861), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [190533] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7863), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [190654] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7865), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [190775] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7867), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [190896] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7869), 1, + anon_sym_COMMA, + ACTIONS(7871), 1, + anon_sym_RBRACK, + STATE(2055), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17675), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [191017] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7873), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17677), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [191138] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7875), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17678), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [191259] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7877), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17683), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [191380] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7879), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [191501] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7881), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [191622] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7883), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [191743] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7885), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [191864] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7887), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [191985] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7889), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [192106] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7891), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [192227] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7893), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [192348] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7895), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [192469] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7897), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [192590] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7899), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [192711] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7901), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [192832] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7903), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [192953] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7905), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [193074] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7907), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [193195] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7909), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [193316] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7911), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [193437] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7913), 1, + anon_sym_COMMA, + ACTIONS(7915), 1, + anon_sym_RBRACK, + STATE(2076), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17699), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [193558] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7917), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16695), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [193679] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7919), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16736), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [193800] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7921), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17378), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [193921] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7923), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [194042] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7925), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [194163] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7927), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [194284] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7929), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [194405] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7931), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [194526] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7933), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [194647] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7935), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [194768] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7937), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [194889] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7939), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [195010] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7941), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [195131] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7943), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [195252] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7945), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [195373] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7947), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [195494] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7949), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [195615] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7951), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [195736] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7953), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [195857] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7955), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [195978] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(7957), 1, + anon_sym_COMMA, + ACTIONS(7959), 1, + anon_sym_RBRACK, + STATE(2097), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16697), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [196099] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7961), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16707), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [196220] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7963), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16711), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [196341] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7965), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16716), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [196462] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7967), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [196583] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7969), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [196704] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7971), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [196825] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7973), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [196946] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7975), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [197067] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7977), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [197188] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7979), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [197309] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7981), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [197430] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(7983), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [197551] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(7985), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [197672] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7987), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [197793] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7989), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [197914] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7991), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [198035] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7993), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [198156] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7995), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [198277] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7997), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [198398] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(7999), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [198519] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8001), 1, + anon_sym_COMMA, + ACTIONS(8003), 1, + anon_sym_RBRACK, + STATE(2119), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16960), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [198640] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8005), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17105), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [198761] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8007), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17136), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [198882] = 31, + ACTIONS(8009), 1, + sym_integer_scon, + ACTIONS(8013), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8015), 1, + sym__symbolic_ident, + ACTIONS(8017), 1, + anon_sym_LPAREN, + ACTIONS(8019), 1, + anon_sym_op, + ACTIONS(8021), 1, + anon_sym_LBRACE, + ACTIONS(8023), 1, + anon_sym_POUND, + ACTIONS(8025), 1, + anon_sym_LBRACK, + ACTIONS(8027), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8029), 1, + anon_sym_let, + ACTIONS(8031), 1, + anon_sym_raise, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_while, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(8041), 1, + anon_sym_u201c, + ACTIONS(8043), 1, + anon_sym_u2018, + ACTIONS(8045), 1, + anon_sym_BQUOTE, + STATE(11539), 1, + sym_vid, + STATE(11804), 1, + sym__scon, + STATE(11810), 1, + sym_longvid, + STATE(18705), 1, + sym__exp, + STATE(18835), 1, + aux_sym_longvid_repeat1, + STATE(24831), 1, + sym_THEN, + STATE(24850), 1, + sym__atomic_tactic, + STATE(24911), 1, + sym_tactic, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8011), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4185), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [199003] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8047), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17176), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [199124] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8049), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [199245] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8051), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [199366] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8053), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [199487] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8055), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [199608] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8057), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [199729] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8059), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [199850] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8061), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [199971] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8063), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [200092] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8065), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [200213] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8067), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [200334] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8069), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [200455] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8071), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [200576] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8073), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [200697] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8075), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [200818] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8077), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [200939] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8079), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [201060] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8081), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [201181] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8083), 1, + anon_sym_COMMA, + ACTIONS(8085), 1, + anon_sym_RBRACK, + STATE(2140), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17258), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [201302] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8087), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17259), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [201423] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8089), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17265), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [201544] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8091), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17268), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [201665] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8093), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [201786] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8095), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [201907] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8097), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [202028] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8099), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [202149] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8101), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [202270] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8103), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [202391] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8105), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [202512] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8107), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [202633] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8109), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [202754] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8111), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [202875] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8113), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [202996] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8115), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [203117] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8117), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [203238] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8119), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [203359] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8121), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [203480] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8123), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [203601] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8125), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [203722] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8127), 1, + anon_sym_COMMA, + ACTIONS(8129), 1, + anon_sym_RBRACK, + STATE(2161), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17292), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [203843] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8131), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17305), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [203964] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8133), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17308), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [204085] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8135), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17323), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [204206] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8137), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [204327] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8139), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [204448] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8141), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [204569] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8143), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [204690] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8145), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [204811] = 31, + ACTIONS(8147), 1, + sym_integer_scon, + ACTIONS(8151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8153), 1, + sym__symbolic_ident, + ACTIONS(8155), 1, + anon_sym_LPAREN, + ACTIONS(8157), 1, + anon_sym_op, + ACTIONS(8159), 1, + anon_sym_LBRACE, + ACTIONS(8161), 1, + anon_sym_POUND, + ACTIONS(8163), 1, + anon_sym_LBRACK, + ACTIONS(8165), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8167), 1, + anon_sym_let, + ACTIONS(8169), 1, + anon_sym_raise, + ACTIONS(8171), 1, + anon_sym_if, + ACTIONS(8173), 1, + anon_sym_while, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(8179), 1, + anon_sym_u201c, + ACTIONS(8181), 1, + anon_sym_u2018, + ACTIONS(8183), 1, + anon_sym_BQUOTE, + STATE(11124), 1, + sym__scon, + STATE(11150), 1, + sym_longvid, + STATE(11447), 1, + sym_vid, + STATE(18147), 1, + sym__exp, + STATE(19138), 1, + aux_sym_longvid_repeat1, + STATE(24750), 1, + sym__atomic_tactic, + STATE(24831), 1, + sym_THEN, + STATE(24874), 1, + sym_tactic, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8149), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4215), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [204932] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8185), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [205053] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8187), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [205174] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8189), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [205295] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8191), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [205416] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8193), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [205537] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8195), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [205658] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8197), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [205779] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8199), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [205900] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8201), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [206021] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8203), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [206142] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8205), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [206263] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8207), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [206384] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8209), 1, + anon_sym_COMMA, + ACTIONS(8211), 1, + anon_sym_RBRACK, + STATE(2183), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17376), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [206505] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8213), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16671), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [206626] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8215), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17382), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [206747] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8217), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17389), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [206868] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8219), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [206989] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8221), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [207110] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8223), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [207231] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8225), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [207352] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8227), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [207473] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8229), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [207594] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8231), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [207715] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8233), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [207836] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8235), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [207957] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8237), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [208078] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8239), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [208199] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8241), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [208320] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8243), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [208441] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8245), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [208562] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8247), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [208683] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8249), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [208804] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8251), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [208925] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8253), 1, + anon_sym_COMMA, + ACTIONS(8255), 1, + anon_sym_RBRACK, + STATE(2204), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17435), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [209046] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8257), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17441), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [209167] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8259), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17442), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [209288] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8261), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17450), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [209409] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8263), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [209530] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8265), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [209651] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8267), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [209772] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8269), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [209893] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8271), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [210014] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8273), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [210135] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8275), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [210256] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8277), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [210377] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8279), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [210498] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8281), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [210619] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8283), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [210740] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8285), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [210861] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8287), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [210982] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8289), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [211103] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8291), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [211224] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8293), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [211345] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8295), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [211466] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8297), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [211587] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8299), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [211708] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8301), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [211829] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8303), 1, + anon_sym_COMMA, + ACTIONS(8305), 1, + anon_sym_RBRACK, + STATE(2228), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17483), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [211950] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8307), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17494), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [212071] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8309), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17495), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [212192] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8311), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17501), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [212313] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8313), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [212434] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8315), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [212555] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8317), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [212676] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8319), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [212797] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8321), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [212918] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8323), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [213039] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8325), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [213160] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8327), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [213281] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8329), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [213402] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8331), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [213523] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8333), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [213644] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8335), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [213765] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8337), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [213886] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8339), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [214007] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8341), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [214128] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8343), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [214249] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8345), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [214370] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8347), 1, + anon_sym_COMMA, + ACTIONS(8349), 1, + anon_sym_RBRACK, + STATE(2249), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17594), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [214491] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8351), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17598), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [214612] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8353), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17602), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [214733] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8355), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17605), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [214854] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8357), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [214975] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8359), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [215096] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8361), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [215217] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8363), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [215338] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8365), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [215459] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8367), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [215580] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8369), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [215701] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8371), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [215822] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8373), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [215943] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8375), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [216064] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8377), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [216185] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8379), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [216306] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8381), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [216427] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8383), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [216548] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8385), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [216669] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8387), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [216790] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8389), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [216911] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8391), 1, + anon_sym_COMMA, + ACTIONS(8393), 1, + anon_sym_RBRACK, + STATE(2270), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17648), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [217032] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8395), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17688), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [217153] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8397), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17696), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [217274] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8399), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16672), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [217395] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8401), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [217516] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8403), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [217637] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8405), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [217758] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8407), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [217879] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8409), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [218000] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8411), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [218121] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8413), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [218242] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8415), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [218363] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8417), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [218484] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8419), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [218605] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8421), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [218726] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8423), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [218847] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8425), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [218968] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8427), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [219089] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8429), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [219210] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8431), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [219331] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8433), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [219452] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8435), 1, + anon_sym_COMMA, + ACTIONS(8437), 1, + anon_sym_RBRACK, + STATE(2291), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16679), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [219573] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8439), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16681), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [219694] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8441), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16682), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [219815] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8443), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16685), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [219936] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8445), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [220057] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8447), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [220178] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8449), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [220299] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8451), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [220420] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8453), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [220541] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8455), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [220662] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8457), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [220783] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8459), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [220904] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8461), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [221025] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8463), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [221146] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8465), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [221267] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8467), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [221388] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8469), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [221509] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8471), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [221630] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8473), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [221751] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8475), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [221872] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8477), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [221993] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8479), 1, + anon_sym_COMMA, + ACTIONS(8481), 1, + anon_sym_RBRACK, + STATE(2312), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16701), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [222114] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8483), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16704), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [222235] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8485), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16705), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [222356] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8487), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16708), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [222477] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8489), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [222598] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8491), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [222719] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8493), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [222840] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8495), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [222961] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8497), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [223082] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8499), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [223203] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8501), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [223324] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8503), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [223445] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8505), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [223566] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8507), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [223687] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8509), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [223808] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8511), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [223929] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8513), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [224050] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8515), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [224171] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8517), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [224292] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8519), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [224413] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8521), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [224534] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8523), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17418), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [224655] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8525), 1, + anon_sym_COMMA, + ACTIONS(8527), 1, + anon_sym_RBRACK, + STATE(2334), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16725), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [224776] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8529), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16727), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [224897] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8531), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16728), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [225018] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8533), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16730), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [225139] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8535), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [225260] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8537), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [225381] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8539), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [225502] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8541), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [225623] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8543), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [225744] = 31, + ACTIONS(8009), 1, + sym_integer_scon, + ACTIONS(8013), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8015), 1, + sym__symbolic_ident, + ACTIONS(8017), 1, + anon_sym_LPAREN, + ACTIONS(8019), 1, + anon_sym_op, + ACTIONS(8021), 1, + anon_sym_LBRACE, + ACTIONS(8023), 1, + anon_sym_POUND, + ACTIONS(8025), 1, + anon_sym_LBRACK, + ACTIONS(8027), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8029), 1, + anon_sym_let, + ACTIONS(8031), 1, + anon_sym_raise, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_while, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(8041), 1, + anon_sym_u201c, + ACTIONS(8043), 1, + anon_sym_u2018, + ACTIONS(8045), 1, + anon_sym_BQUOTE, + STATE(11539), 1, + sym_vid, + STATE(11804), 1, + sym__scon, + STATE(11810), 1, + sym_longvid, + STATE(18705), 1, + sym__exp, + STATE(18835), 1, + aux_sym_longvid_repeat1, + STATE(24831), 1, + sym_THEN, + STATE(24850), 1, + sym__atomic_tactic, + STATE(24934), 1, + sym_strid, + STATE(24965), 1, + sym_tactic, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8011), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4185), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [225865] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8545), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [225986] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8547), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [226107] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8549), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [226228] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8551), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [226349] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8553), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [226470] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8555), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [226591] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8557), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [226712] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8559), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [226833] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8561), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [226954] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8563), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [227075] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8565), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [227196] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8567), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [227317] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8569), 1, + anon_sym_COMMA, + ACTIONS(8571), 1, + anon_sym_RBRACK, + STATE(2356), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16741), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [227438] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8573), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16742), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [227559] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8575), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16743), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [227680] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8577), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16745), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [227801] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8579), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [227922] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8581), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [228043] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8583), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [228164] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8585), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [228285] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8587), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [228406] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8589), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [228527] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8591), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [228648] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8593), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [228769] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8595), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [228890] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8597), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [229011] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8599), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [229132] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8601), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [229253] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8603), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [229374] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8605), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [229495] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8607), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [229616] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8609), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [229737] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8611), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [229858] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8613), 1, + anon_sym_COMMA, + ACTIONS(8615), 1, + anon_sym_RBRACK, + STATE(2377), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16758), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [229979] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8617), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16759), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [230100] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8619), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16760), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [230221] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8621), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16762), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [230342] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8623), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [230463] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8625), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [230584] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8627), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [230705] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8629), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [230826] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8631), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [230947] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8633), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [231068] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8635), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [231189] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8637), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [231310] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8639), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [231431] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8641), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [231552] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8643), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [231673] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8645), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [231794] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8647), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [231915] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8649), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [232036] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8651), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [232157] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8653), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [232278] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8655), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [232399] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8657), 1, + anon_sym_COMMA, + ACTIONS(8659), 1, + anon_sym_RBRACK, + STATE(2398), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16774), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [232520] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8661), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16776), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [232641] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8663), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16777), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [232762] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8665), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16779), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [232883] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8667), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [233004] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8669), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [233125] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8671), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [233246] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8673), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [233367] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8675), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [233488] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8677), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [233609] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8679), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [233730] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8681), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [233851] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8683), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [233972] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8685), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [234093] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8687), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [234214] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8689), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [234335] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8691), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [234456] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8693), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [234577] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8695), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [234698] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8697), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [234819] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8699), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [234940] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8701), 1, + anon_sym_COMMA, + ACTIONS(8703), 1, + anon_sym_RBRACK, + STATE(2419), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16787), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [235061] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8705), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16789), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [235182] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8707), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16790), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [235303] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8709), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16792), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [235424] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8711), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [235545] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8713), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [235666] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8715), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [235787] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8717), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [235908] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8719), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [236029] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8721), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [236150] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8723), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [236271] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8725), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [236392] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8727), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [236513] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8729), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [236634] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8731), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [236755] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8733), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [236876] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8735), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [236997] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8737), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [237118] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8739), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [237239] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8741), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [237360] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8743), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [237481] = 31, + ACTIONS(8147), 1, + sym_integer_scon, + ACTIONS(8151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8153), 1, + sym__symbolic_ident, + ACTIONS(8155), 1, + anon_sym_LPAREN, + ACTIONS(8157), 1, + anon_sym_op, + ACTIONS(8159), 1, + anon_sym_LBRACE, + ACTIONS(8161), 1, + anon_sym_POUND, + ACTIONS(8163), 1, + anon_sym_LBRACK, + ACTIONS(8165), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8167), 1, + anon_sym_let, + ACTIONS(8169), 1, + anon_sym_raise, + ACTIONS(8171), 1, + anon_sym_if, + ACTIONS(8173), 1, + anon_sym_while, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(8179), 1, + anon_sym_u201c, + ACTIONS(8181), 1, + anon_sym_u2018, + ACTIONS(8183), 1, + anon_sym_BQUOTE, + STATE(11124), 1, + sym__scon, + STATE(11150), 1, + sym_longvid, + STATE(11447), 1, + sym_vid, + STATE(18147), 1, + sym__exp, + STATE(19138), 1, + aux_sym_longvid_repeat1, + STATE(24750), 1, + sym__atomic_tactic, + STATE(24831), 1, + sym_THEN, + STATE(24934), 1, + sym_strid, + STATE(25050), 1, + sym_tactic, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8149), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4215), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [237602] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8745), 1, + anon_sym_COMMA, + ACTIONS(8747), 1, + anon_sym_RBRACK, + STATE(2442), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16808), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [237723] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8749), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16809), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [237844] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8751), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16810), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [237965] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8753), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [238086] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8755), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16812), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [238207] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8757), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [238328] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8759), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [238449] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8761), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [238570] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8763), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [238691] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8765), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [238812] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8767), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [238933] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8769), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [239054] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8771), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [239175] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8773), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [239296] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8775), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [239417] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8777), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [239538] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8779), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [239659] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8781), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [239780] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8783), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [239901] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8785), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [240022] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8787), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [240143] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8789), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [240264] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8791), 1, + anon_sym_COMMA, + ACTIONS(8793), 1, + anon_sym_RBRACK, + STATE(2463), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16828), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [240385] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8795), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16830), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [240506] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8797), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16831), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [240627] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8799), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16833), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [240748] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8801), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [240869] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8803), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [240990] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8805), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [241111] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8807), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [241232] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8809), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [241353] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8811), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [241474] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8813), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [241595] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8815), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [241716] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8817), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [241837] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8819), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [241958] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8821), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [242079] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8823), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [242200] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8825), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [242321] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8827), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [242442] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8829), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [242563] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8831), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [242684] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8833), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [242805] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8835), 1, + anon_sym_COMMA, + ACTIONS(8837), 1, + anon_sym_RBRACK, + STATE(2484), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16846), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [242926] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8839), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16847), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [243047] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8841), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16848), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [243168] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16850), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [243289] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8845), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [243410] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8847), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [243531] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8849), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [243652] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8851), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [243773] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8853), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [243894] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8855), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [244015] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8857), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [244136] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8859), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [244257] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8861), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [244378] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8863), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [244499] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8865), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [244620] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8867), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [244741] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8869), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [244862] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8871), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [244983] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8873), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [245104] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8875), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [245225] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8877), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [245346] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8879), 1, + anon_sym_COMMA, + ACTIONS(8881), 1, + anon_sym_RBRACK, + STATE(2505), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16861), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [245467] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8883), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16862), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [245588] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8885), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16863), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [245709] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8887), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16865), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [245830] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8889), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [245951] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8891), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [246072] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8893), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [246193] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8895), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [246314] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8897), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [246435] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(8899), 1, + sym_integer_scon, + ACTIONS(8903), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8905), 1, + sym__symbolic_ident, + ACTIONS(8907), 1, + anon_sym_LPAREN, + ACTIONS(8909), 1, + anon_sym_op, + ACTIONS(8911), 1, + anon_sym_LBRACE, + ACTIONS(8913), 1, + anon_sym_POUND, + ACTIONS(8915), 1, + anon_sym_LBRACK, + ACTIONS(8917), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8919), 1, + anon_sym_let, + ACTIONS(8921), 1, + anon_sym_u201c, + ACTIONS(8923), 1, + anon_sym_u2018, + ACTIONS(8925), 1, + anon_sym_BQUOTE, + STATE(8237), 1, + sym__scon, + STATE(8239), 1, + sym_longvid, + STATE(8264), 1, + sym_vid, + STATE(18720), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8901), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(2516), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(981), 17, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [246540] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8927), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [246661] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8929), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [246782] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8931), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [246903] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8933), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [247024] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(8899), 1, + sym_integer_scon, + ACTIONS(8903), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8905), 1, + sym__symbolic_ident, + ACTIONS(8907), 1, + anon_sym_LPAREN, + ACTIONS(8909), 1, + anon_sym_op, + ACTIONS(8911), 1, + anon_sym_LBRACE, + ACTIONS(8913), 1, + anon_sym_POUND, + ACTIONS(8915), 1, + anon_sym_LBRACK, + ACTIONS(8917), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8919), 1, + anon_sym_let, + ACTIONS(8921), 1, + anon_sym_u201c, + ACTIONS(8923), 1, + anon_sym_u2018, + ACTIONS(8925), 1, + anon_sym_BQUOTE, + STATE(8237), 1, + sym__scon, + STATE(8239), 1, + sym_longvid, + STATE(8264), 1, + sym_vid, + STATE(18720), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8901), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(2525), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(999), 17, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [247129] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8935), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [247250] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8937), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [247371] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8939), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [247492] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8941), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [247613] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8943), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [247734] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8945), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [247855] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8947), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [247976] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(8949), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [248097] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(8951), 1, + sym_integer_scon, + ACTIONS(8957), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8960), 1, + sym__symbolic_ident, + ACTIONS(8963), 1, + anon_sym_LPAREN, + ACTIONS(8966), 1, + anon_sym_op, + ACTIONS(8969), 1, + anon_sym_LBRACE, + ACTIONS(8972), 1, + anon_sym_POUND, + ACTIONS(8975), 1, + anon_sym_LBRACK, + ACTIONS(8978), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8981), 1, + anon_sym_let, + ACTIONS(8984), 1, + anon_sym_u201c, + ACTIONS(8987), 1, + anon_sym_u2018, + ACTIONS(8990), 1, + anon_sym_BQUOTE, + STATE(8237), 1, + sym__scon, + STATE(8239), 1, + sym_longvid, + STATE(8264), 1, + sym_vid, + STATE(18720), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8954), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(2525), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + ACTIONS(1024), 17, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [248202] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(8993), 1, + anon_sym_COMMA, + ACTIONS(8995), 1, + anon_sym_RBRACK, + STATE(2529), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16873), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [248323] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(8997), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16876), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [248444] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(8999), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16877), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [248565] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9001), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16879), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [248686] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9003), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [248807] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9005), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [248928] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9007), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [249049] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9009), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [249170] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9011), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [249291] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9013), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [249412] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9015), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [249533] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9017), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [249654] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9019), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [249775] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9021), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [249896] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9023), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [250017] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9025), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [250138] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9027), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [250259] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9029), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [250380] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9031), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [250501] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9033), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [250622] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9035), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [250743] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9037), 1, + anon_sym_COMMA, + ACTIONS(9039), 1, + anon_sym_RBRACK, + STATE(2550), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16890), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [250864] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9041), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16892), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [250985] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9043), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16893), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [251106] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9045), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16896), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [251227] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9047), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [251348] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9049), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [251469] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9051), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [251590] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9053), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [251711] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9055), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [251832] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9057), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [251953] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9059), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [252074] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9061), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [252195] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9063), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [252316] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9065), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [252437] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9067), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [252558] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9069), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [252679] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9071), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [252800] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9073), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [252921] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9075), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [253042] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9077), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [253163] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9079), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [253284] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9081), 1, + anon_sym_COMMA, + ACTIONS(9083), 1, + anon_sym_RBRACK, + STATE(2571), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16906), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [253405] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9085), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16907), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [253526] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9087), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16908), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [253647] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9089), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16910), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [253768] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9091), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [253889] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9093), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [254010] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9095), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [254131] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9097), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [254252] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9099), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [254373] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9101), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [254494] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9103), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [254615] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9105), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [254736] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9107), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [254857] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9109), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [254978] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9111), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [255099] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9113), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [255220] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9115), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [255341] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9117), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [255462] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9119), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [255583] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9121), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [255704] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9123), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [255825] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9125), 1, + anon_sym_COMMA, + ACTIONS(9127), 1, + anon_sym_RBRACK, + STATE(2592), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16921), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [255946] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9129), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16922), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [256067] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9131), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16923), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [256188] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9133), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16925), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [256309] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9135), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [256430] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9137), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [256551] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9139), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [256672] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9141), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [256793] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9143), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [256914] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9145), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [257035] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9147), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [257156] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9149), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [257277] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9151), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [257398] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9153), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [257519] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9155), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [257640] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9157), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [257761] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [257882] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9161), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [258003] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9163), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [258124] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9165), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [258245] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9167), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [258366] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9169), 1, + anon_sym_COMMA, + ACTIONS(9171), 1, + anon_sym_RBRACK, + STATE(2613), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16933), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [258487] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16934), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [258608] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9175), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16935), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [258729] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9177), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16938), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [258850] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9179), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [258971] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9181), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [259092] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9183), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [259213] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9185), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [259334] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9187), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [259455] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9189), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [259576] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9191), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [259697] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9193), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [259818] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9195), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [259939] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9197), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [260060] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9199), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [260181] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9201), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [260302] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9203), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [260423] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9205), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [260544] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9207), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [260665] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9209), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [260786] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9211), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [260907] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9213), 1, + anon_sym_COMMA, + ACTIONS(9215), 1, + anon_sym_RBRACK, + STATE(2634), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16954), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [261028] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9217), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16955), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [261149] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9219), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16956), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [261270] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9221), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16958), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [261391] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9223), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [261512] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9225), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [261633] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9227), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [261754] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9229), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [261875] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9231), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [261996] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9233), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [262117] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9235), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [262238] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9237), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [262359] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9239), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [262480] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9241), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [262601] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9243), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [262722] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9245), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [262843] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9247), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [262964] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9249), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [263085] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9251), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [263206] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9253), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [263327] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9255), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [263448] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9257), 1, + anon_sym_COMMA, + ACTIONS(9259), 1, + anon_sym_RBRACK, + STATE(2655), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16971), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [263569] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9261), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16972), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [263690] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9263), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16973), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [263811] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9265), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16975), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [263932] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9267), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [264053] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9269), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [264174] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9271), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [264295] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9273), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [264416] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9275), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [264537] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9277), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [264658] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9279), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [264779] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9281), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [264900] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9283), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [265021] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9285), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [265142] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9287), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [265263] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9289), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [265384] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9291), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [265505] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9293), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [265626] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9295), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [265747] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9297), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [265868] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9299), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [265989] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9301), 1, + anon_sym_COMMA, + ACTIONS(9303), 1, + anon_sym_RBRACK, + STATE(2676), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16986), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [266110] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9305), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16987), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [266231] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9307), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(16988), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [266352] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9309), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16990), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [266473] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9311), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [266594] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9313), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [266715] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9315), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [266836] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9317), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [266957] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9319), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [267078] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9321), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [267199] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9323), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [267320] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9325), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [267441] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9327), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [267562] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9329), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [267683] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9331), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [267804] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9333), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [267925] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9335), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [268046] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9337), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [268167] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9339), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [268288] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9341), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [268409] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9343), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [268530] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9345), 1, + anon_sym_COMMA, + ACTIONS(9347), 1, + anon_sym_RBRACK, + STATE(2697), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17001), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [268651] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9349), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17004), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [268772] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9351), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17005), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [268893] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9353), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17007), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [269014] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9355), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [269135] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9357), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [269256] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9359), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [269377] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9361), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [269498] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9363), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [269619] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9365), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [269740] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9367), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [269861] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9369), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [269982] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9371), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [270103] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9373), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [270224] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9375), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [270345] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9377), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [270466] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9379), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [270587] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9381), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [270708] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9383), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [270829] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9385), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [270950] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9387), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [271071] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9389), 1, + anon_sym_COMMA, + ACTIONS(9391), 1, + anon_sym_RBRACK, + STATE(2718), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17022), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [271192] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9393), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17023), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [271313] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9395), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17024), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [271434] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9397), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17027), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [271555] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9399), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [271676] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9401), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [271797] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9403), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [271918] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9405), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [272039] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9407), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [272160] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9409), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [272281] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9411), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [272402] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9413), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [272523] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9415), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [272644] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9417), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [272765] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9419), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [272886] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9421), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [273007] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9423), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [273128] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9425), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [273249] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9427), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [273370] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9429), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [273491] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9431), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [273612] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9433), 1, + anon_sym_COMMA, + ACTIONS(9435), 1, + anon_sym_RBRACK, + STATE(2739), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17038), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [273733] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9437), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17039), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [273854] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9439), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17040), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [273975] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9441), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17043), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [274096] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9443), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [274217] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9445), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [274338] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9447), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [274459] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9449), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [274580] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9451), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [274701] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9453), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [274822] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9455), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [274943] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9457), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [275064] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9459), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [275185] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9461), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [275306] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9463), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [275427] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9465), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [275548] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9467), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [275669] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9469), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [275790] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9471), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [275911] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9473), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [276032] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9475), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [276153] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9477), 1, + anon_sym_COMMA, + ACTIONS(9479), 1, + anon_sym_RBRACK, + STATE(2760), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17051), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [276274] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9481), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17053), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [276395] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9483), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17054), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [276516] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9485), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17056), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [276637] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9487), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [276758] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9489), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [276879] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9491), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [277000] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9493), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [277121] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9495), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [277242] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9497), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [277363] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9499), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [277484] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9501), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [277605] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9503), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [277726] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9505), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [277847] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9507), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [277968] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9509), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [278089] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9511), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [278210] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9513), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [278331] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9515), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [278452] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9517), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [278573] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9519), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [278694] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9521), 1, + anon_sym_COMMA, + ACTIONS(9523), 1, + anon_sym_RBRACK, + STATE(2781), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17064), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [278815] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9525), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17065), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [278936] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9527), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17066), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [279057] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9529), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17068), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [279178] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9531), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [279299] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9533), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [279420] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9535), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [279541] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9537), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [279662] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9539), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [279783] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9541), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [279904] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9543), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [280025] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9545), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [280146] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9547), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [280267] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9549), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [280388] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9551), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [280509] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9553), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [280630] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9555), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [280751] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9557), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [280872] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9559), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [280993] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9561), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [281114] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9563), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [281235] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9565), 1, + anon_sym_COMMA, + ACTIONS(9567), 1, + anon_sym_RBRACK, + STATE(2802), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17078), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [281356] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9569), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17080), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [281477] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9571), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17081), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [281598] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9573), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17083), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [281719] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9575), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [281840] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9577), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [281961] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9579), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [282082] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9581), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [282203] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9583), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [282324] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9585), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [282445] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9587), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [282566] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9589), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [282687] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9591), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [282808] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9593), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [282929] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9595), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [283050] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9597), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [283171] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9599), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [283292] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9601), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [283413] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9603), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [283534] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9605), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [283655] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9607), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [283776] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9609), 1, + anon_sym_COMMA, + ACTIONS(9611), 1, + anon_sym_RBRACK, + STATE(2823), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17092), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [283897] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9613), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17094), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [284018] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9615), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17095), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [284139] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9617), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17099), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [284260] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9619), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [284381] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9621), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [284502] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9623), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [284623] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9625), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [284744] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9627), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [284865] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9629), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [284986] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9631), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [285107] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9633), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [285228] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9635), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [285349] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9637), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [285470] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9639), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [285591] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9641), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [285712] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9643), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [285833] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9645), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [285954] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9647), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [286075] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9649), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [286196] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9651), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [286317] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9653), 1, + anon_sym_COMMA, + ACTIONS(9655), 1, + anon_sym_RBRACK, + STATE(2844), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17110), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [286438] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9657), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17111), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [286559] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9659), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17112), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [286680] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9661), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17114), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [286801] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9663), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [286922] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9665), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [287043] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9667), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [287164] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9669), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [287285] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9671), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [287406] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9673), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [287527] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9675), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [287648] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9677), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [287769] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9679), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [287890] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9681), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [288011] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9683), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [288132] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9685), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [288253] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9687), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [288374] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9689), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [288495] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9691), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [288616] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9693), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [288737] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9695), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [288858] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(9697), 1, + anon_sym_COMMA, + ACTIONS(9699), 1, + anon_sym_RBRACK, + STATE(2865), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17124), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [288979] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9701), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17126), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [289100] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9703), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(17127), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [289221] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9705), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17129), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [289342] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9707), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [289463] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9709), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [289584] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9711), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [289705] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9713), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [289826] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9715), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [289947] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9717), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [290068] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9719), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [290189] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9721), 1, + anon_sym_RPAREN, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [290310] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9723), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [290431] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(9725), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [290552] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9727), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [290673] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9729), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [290794] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9731), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [290915] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9733), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [291036] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9735), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [291157] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9737), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [291278] = 31, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5809), 1, + anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9739), 1, + anon_sym_end, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [291399] = 31, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + ACTIONS(9741), 1, + anon_sym_RPAREN, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [291520] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9743), 1, + anon_sym_SEMI, + STATE(3222), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17690), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [291638] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17172), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [291756] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9745), 1, + anon_sym_SEMI, + STATE(2887), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17232), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [291874] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17206), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [291992] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18441), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [292110] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17133), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [292228] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9747), 1, + anon_sym_SEMI, + STATE(2885), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17481), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [292346] = 30, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(2659), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(17886), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [292464] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9749), 1, + anon_sym_SEMI, + STATE(2893), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16829), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [292582] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16858), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [292700] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9751), 1, + anon_sym_SEMI, + STATE(2895), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16859), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [292818] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16887), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [292936] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9753), 1, + anon_sym_SEMI, + STATE(2897), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17015), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [293054] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17034), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [293172] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9755), 1, + anon_sym_SEMI, + STATE(2899), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17035), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [293290] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17058), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [293408] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9757), 1, + anon_sym_SEMI, + STATE(2901), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17197), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [293526] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17210), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [293644] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9759), 1, + anon_sym_SEMI, + STATE(2903), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17211), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [293762] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17229), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [293880] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9761), 1, + anon_sym_SEMI, + STATE(2905), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17319), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [293998] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17349), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [294116] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9763), 1, + anon_sym_SEMI, + STATE(2907), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17351), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [294234] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17372), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [294352] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9765), 1, + anon_sym_SEMI, + STATE(2909), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17449), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [294470] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17454), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [294588] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9767), 1, + anon_sym_SEMI, + STATE(2911), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17456), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [294706] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17465), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [294824] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9769), 1, + anon_sym_SEMI, + STATE(2913), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17498), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [294942] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17518), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [295060] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9771), 1, + anon_sym_SEMI, + STATE(2915), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17519), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [295178] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17523), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [295296] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9773), 1, + anon_sym_SEMI, + STATE(2917), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17571), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [295414] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17578), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [295532] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9775), 1, + anon_sym_SEMI, + STATE(2919), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17579), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [295650] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17584), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [295768] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9777), 1, + anon_sym_SEMI, + STATE(2921), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17622), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [295886] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17628), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [296004] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9779), 1, + anon_sym_SEMI, + STATE(2923), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17629), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [296122] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17633), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [296240] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9781), 1, + anon_sym_SEMI, + STATE(2925), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17645), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [296358] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17649), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [296476] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9783), 1, + anon_sym_SEMI, + STATE(2927), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17650), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [296594] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17652), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [296712] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9785), 1, + anon_sym_SEMI, + STATE(2929), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17687), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [296830] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17478), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [296948] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9787), 1, + anon_sym_SEMI, + STATE(2931), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17162), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [297066] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17334), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [297184] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9789), 1, + anon_sym_SEMI, + STATE(2933), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17329), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [297302] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17485), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [297420] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9791), 1, + anon_sym_SEMI, + STATE(2935), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17508), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [297538] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17278), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [297656] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9793), 1, + anon_sym_SEMI, + STATE(2937), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17122), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [297774] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17187), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [297892] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9795), 1, + anon_sym_SEMI, + STATE(2939), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17188), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [298010] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17241), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [298128] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9797), 1, + anon_sym_SEMI, + STATE(2941), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17538), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [298246] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17668), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [298364] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9799), 1, + anon_sym_SEMI, + STATE(2943), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17669), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [298482] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16698), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [298600] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9801), 1, + anon_sym_SEMI, + STATE(2945), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17637), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [298718] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16689), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [298836] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9803), 1, + anon_sym_SEMI, + STATE(2947), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16692), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [298954] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16747), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [299072] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9805), 1, + anon_sym_SEMI, + STATE(2949), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16945), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [299190] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16995), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [299308] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9807), 1, + anon_sym_SEMI, + STATE(2951), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16996), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [299426] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17048), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [299544] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9809), 1, + anon_sym_SEMI, + STATE(2953), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17166), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [299662] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17180), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [299780] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9811), 1, + anon_sym_SEMI, + STATE(2955), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17181), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [299898] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17204), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [300016] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9813), 1, + anon_sym_SEMI, + STATE(2957), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17273), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [300134] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17284), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [300252] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9815), 1, + anon_sym_SEMI, + STATE(2959), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17285), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [300370] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17314), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [300488] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9817), 1, + anon_sym_SEMI, + STATE(2961), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17416), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [300606] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17438), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [300724] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9819), 1, + anon_sym_SEMI, + STATE(2963), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17440), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [300842] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17457), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [300960] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9821), 1, + anon_sym_SEMI, + STATE(2965), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17528), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [301078] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17554), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [301196] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9823), 1, + anon_sym_SEMI, + STATE(2967), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17555), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [301314] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17583), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [301432] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9825), 1, + anon_sym_SEMI, + STATE(2969), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17673), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [301550] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17691), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [301668] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9827), 1, + anon_sym_SEMI, + STATE(2971), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17692), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [301786] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17697), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [301904] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9829), 1, + anon_sym_SEMI, + STATE(2973), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16943), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [302022] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17215), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [302140] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9831), 1, + anon_sym_SEMI, + STATE(2975), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17220), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [302258] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17257), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [302376] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9833), 1, + anon_sym_SEMI, + STATE(2977), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17369), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [302494] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17406), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [302612] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9835), 1, + anon_sym_SEMI, + STATE(2979), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17407), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [302730] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17429), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [302848] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9837), 1, + anon_sym_SEMI, + STATE(2981), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17556), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [302966] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17626), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [303084] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9839), 1, + anon_sym_SEMI, + STATE(2983), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17627), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [303202] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17636), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [303320] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9841), 1, + anon_sym_SEMI, + STATE(2985), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16702), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [303438] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16721), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [303556] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9843), 1, + anon_sym_SEMI, + STATE(2987), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16723), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [303674] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16735), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [303792] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9845), 1, + anon_sym_SEMI, + STATE(2989), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16766), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [303910] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16771), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [304028] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9847), 1, + anon_sym_SEMI, + STATE(2991), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16772), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [304146] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16782), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [304264] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9849), 1, + anon_sym_SEMI, + STATE(2993), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16825), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [304382] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16843), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [304500] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9851), 1, + anon_sym_SEMI, + STATE(2995), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16844), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [304618] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16856), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [304736] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9853), 1, + anon_sym_SEMI, + STATE(2997), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16902), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [304854] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16912), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [304972] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9855), 1, + anon_sym_SEMI, + STATE(2999), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16913), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [305090] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16919), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [305208] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9857), 1, + anon_sym_SEMI, + STATE(3001), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16965), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [305326] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16968), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [305444] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9859), 1, + anon_sym_SEMI, + STATE(3003), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16969), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [305562] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16981), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [305680] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9861), 1, + anon_sym_SEMI, + STATE(3005), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17030), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [305798] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17041), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [305916] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9863), 1, + anon_sym_SEMI, + STATE(3007), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17045), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [306034] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17052), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [306152] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9865), 1, + anon_sym_SEMI, + STATE(3009), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17098), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [306270] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17106), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [306388] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9867), 1, + anon_sym_SEMI, + STATE(3011), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17107), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [306506] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17120), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [306624] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9869), 1, + anon_sym_SEMI, + STATE(3013), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17145), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [306742] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17149), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [306860] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9871), 1, + anon_sym_SEMI, + STATE(3015), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17150), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [306978] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17151), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [307096] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9873), 1, + anon_sym_SEMI, + STATE(3017), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17169), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [307214] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17170), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [307332] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9875), 1, + anon_sym_SEMI, + STATE(3019), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17171), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [307450] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17174), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [307568] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9877), 1, + anon_sym_SEMI, + STATE(3021), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17193), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [307686] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17198), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [307804] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9879), 1, + anon_sym_SEMI, + STATE(3023), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17199), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [307922] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17207), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [308040] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9881), 1, + anon_sym_SEMI, + STATE(3025), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17700), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [308158] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17230), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [308276] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9883), 1, + anon_sym_SEMI, + STATE(3027), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17231), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [308394] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17233), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [308512] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9885), 1, + anon_sym_SEMI, + STATE(3029), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17252), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [308630] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17263), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [308748] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9887), 1, + anon_sym_SEMI, + STATE(3031), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17264), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [308866] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17271), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [308984] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9889), 1, + anon_sym_SEMI, + STATE(3033), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17294), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [309102] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17301), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [309220] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9891), 1, + anon_sym_SEMI, + STATE(3035), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17302), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [309338] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17315), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [309456] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9893), 1, + anon_sym_SEMI, + STATE(3037), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17346), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [309574] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17358), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [309692] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9895), 1, + anon_sym_SEMI, + STATE(3039), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17359), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [309810] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17365), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [309928] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9897), 1, + anon_sym_SEMI, + STATE(3041), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17397), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [310046] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17403), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [310164] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9899), 1, + anon_sym_SEMI, + STATE(3043), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17405), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [310282] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17409), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [310400] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9901), 1, + anon_sym_SEMI, + STATE(3045), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17428), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [310518] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17430), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [310636] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9903), 1, + anon_sym_SEMI, + STATE(3047), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17431), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [310754] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17439), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [310872] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9905), 1, + anon_sym_SEMI, + STATE(3049), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17468), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [310990] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17470), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [311108] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9907), 1, + anon_sym_SEMI, + STATE(3051), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17471), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [311226] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17476), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [311344] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9909), 1, + anon_sym_SEMI, + STATE(3053), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17507), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [311462] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17509), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [311580] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9911), 1, + anon_sym_SEMI, + STATE(3055), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17511), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [311698] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17516), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [311816] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9913), 1, + anon_sym_SEMI, + STATE(3057), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17544), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [311934] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17552), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [312052] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9915), 1, + anon_sym_SEMI, + STATE(3059), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17553), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [312170] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17564), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [312288] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9917), 1, + anon_sym_SEMI, + STATE(3061), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17608), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [312406] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17623), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [312524] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9919), 1, + anon_sym_SEMI, + STATE(3063), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17624), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [312642] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17634), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [312760] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9921), 1, + anon_sym_SEMI, + STATE(3065), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17661), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [312878] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17663), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [312996] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9923), 1, + anon_sym_SEMI, + STATE(3067), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17664), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [313114] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17667), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [313232] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9925), 1, + anon_sym_SEMI, + STATE(3069), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17684), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [313350] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17689), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [313468] = 30, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(18467), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [313586] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9927), 1, + anon_sym_SEMI, + STATE(3072), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17410), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [313704] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17421), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [313822] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9929), 1, + anon_sym_SEMI, + STATE(3074), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17445), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [313940] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17452), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [314058] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9931), 1, + anon_sym_SEMI, + STATE(3076), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16717), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [314176] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16722), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [314294] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9933), 1, + anon_sym_SEMI, + STATE(3078), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16726), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [314412] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16788), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [314530] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9935), 1, + anon_sym_SEMI, + STATE(3080), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17179), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [314648] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17203), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [314766] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9937), 1, + anon_sym_SEMI, + STATE(3082), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17205), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [314884] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17214), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [315002] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9939), 1, + anon_sym_SEMI, + STATE(3084), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17269), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [315120] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17275), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [315238] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9941), 1, + anon_sym_SEMI, + STATE(3086), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17276), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [315356] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17277), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [315474] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9943), 1, + anon_sym_SEMI, + STATE(3088), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17325), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [315592] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17335), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [315710] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9945), 1, + anon_sym_SEMI, + STATE(3090), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17342), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [315828] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17348), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [315946] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9947), 1, + anon_sym_SEMI, + STATE(3092), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17391), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [316064] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17402), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [316182] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9949), 1, + anon_sym_SEMI, + STATE(3094), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17404), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [316300] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17413), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [316418] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9951), 1, + anon_sym_SEMI, + STATE(3096), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17451), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [316536] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17453), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [316654] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9953), 1, + anon_sym_SEMI, + STATE(3098), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17458), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [316772] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17464), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [316890] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9955), 1, + anon_sym_SEMI, + STATE(3100), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17510), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [317008] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17517), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [317126] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9957), 1, + anon_sym_SEMI, + STATE(3102), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17521), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [317244] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17530), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [317362] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9959), 1, + anon_sym_SEMI, + STATE(3104), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17606), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [317480] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17609), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [317598] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9961), 1, + anon_sym_SEMI, + STATE(3106), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17610), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [317716] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17631), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [317834] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9963), 1, + anon_sym_SEMI, + STATE(3108), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16673), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [317952] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16674), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [318070] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9965), 1, + anon_sym_SEMI, + STATE(3110), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16675), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [318188] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16676), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [318306] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9967), 1, + anon_sym_SEMI, + STATE(3112), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16686), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [318424] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16687), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [318542] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9969), 1, + anon_sym_SEMI, + STATE(3114), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16688), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [318660] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16693), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [318778] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9971), 1, + anon_sym_SEMI, + STATE(3116), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16709), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [318896] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16714), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [319014] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9973), 1, + anon_sym_SEMI, + STATE(3118), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16715), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [319132] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16718), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [319250] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9975), 1, + anon_sym_SEMI, + STATE(3120), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16731), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [319368] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16732), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [319486] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9977), 1, + anon_sym_SEMI, + STATE(3122), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16733), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [319604] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16737), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [319722] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9979), 1, + anon_sym_SEMI, + STATE(3124), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16746), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [319840] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16748), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [319958] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9981), 1, + anon_sym_SEMI, + STATE(3126), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16749), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [320076] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16750), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [320194] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9983), 1, + anon_sym_SEMI, + STATE(3128), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16763), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [320312] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16767), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [320430] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9985), 1, + anon_sym_SEMI, + STATE(3130), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16768), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [320548] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16769), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [320666] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9987), 1, + anon_sym_SEMI, + STATE(3132), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16780), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [320784] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16783), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [320902] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9989), 1, + anon_sym_SEMI, + STATE(3134), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16784), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [321020] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16785), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [321138] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9991), 1, + anon_sym_SEMI, + STATE(3136), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16793), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [321256] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16795), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [321374] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9993), 1, + anon_sym_SEMI, + STATE(3138), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16796), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [321492] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16797), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [321610] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9995), 1, + anon_sym_SEMI, + STATE(3140), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16813), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [321728] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16817), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [321846] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9997), 1, + anon_sym_SEMI, + STATE(3142), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16818), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [321964] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16819), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [322082] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(9999), 1, + anon_sym_SEMI, + STATE(3144), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16834), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [322200] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16837), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [322318] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10001), 1, + anon_sym_SEMI, + STATE(3146), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16838), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [322436] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16839), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [322554] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10003), 1, + anon_sym_SEMI, + STATE(3148), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16851), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [322672] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16854), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [322790] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10005), 1, + anon_sym_SEMI, + STATE(3150), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16855), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [322908] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16857), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [323026] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10007), 1, + anon_sym_SEMI, + STATE(3152), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16866), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [323144] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16867), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [323262] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10009), 1, + anon_sym_SEMI, + STATE(3154), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16868), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [323380] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16870), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [323498] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10011), 1, + anon_sym_SEMI, + STATE(3156), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16880), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [323616] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16882), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [323734] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10013), 1, + anon_sym_SEMI, + STATE(3158), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16883), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [323852] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16885), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [323970] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10015), 1, + anon_sym_SEMI, + STATE(3160), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16897), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [324088] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16898), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [324206] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10017), 1, + anon_sym_SEMI, + STATE(3162), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16899), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [324324] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16903), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [324442] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10019), 1, + anon_sym_SEMI, + STATE(3164), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16911), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [324560] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16914), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [324678] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10021), 1, + anon_sym_SEMI, + STATE(3166), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16915), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [324796] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16916), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [324914] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10023), 1, + anon_sym_SEMI, + STATE(3168), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16926), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [325032] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16927), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [325150] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10025), 1, + anon_sym_SEMI, + STATE(3170), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16928), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [325268] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16929), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [325386] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10027), 1, + anon_sym_SEMI, + STATE(3172), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16939), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [325504] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16941), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [325622] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10029), 1, + anon_sym_SEMI, + STATE(3174), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16942), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [325740] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16947), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [325858] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10031), 1, + anon_sym_SEMI, + STATE(3176), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16959), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [325976] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16962), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [326094] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10033), 1, + anon_sym_SEMI, + STATE(3178), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16963), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [326212] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16966), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [326330] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10035), 1, + anon_sym_SEMI, + STATE(3180), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16976), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [326448] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16979), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [326566] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10037), 1, + anon_sym_SEMI, + STATE(3182), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16980), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [326684] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16982), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [326802] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10039), 1, + anon_sym_SEMI, + STATE(3184), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16991), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [326920] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16992), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [327038] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10041), 1, + anon_sym_SEMI, + STATE(3186), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16993), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [327156] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(16998), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [327274] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10043), 1, + anon_sym_SEMI, + STATE(3188), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17008), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [327392] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17010), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [327510] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10045), 1, + anon_sym_SEMI, + STATE(3190), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17011), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [327628] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17016), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [327746] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10047), 1, + anon_sym_SEMI, + STATE(3192), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17028), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [327864] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17031), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [327982] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10049), 1, + anon_sym_SEMI, + STATE(3194), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17032), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [328100] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17033), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [328218] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10051), 1, + anon_sym_SEMI, + STATE(3196), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17044), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [328336] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17046), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [328454] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10053), 1, + anon_sym_SEMI, + STATE(3198), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17047), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [328572] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17049), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [328690] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10055), 1, + anon_sym_SEMI, + STATE(3200), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17057), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [328808] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17059), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [328926] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10057), 1, + anon_sym_SEMI, + STATE(3202), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17060), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [329044] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17061), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [329162] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10059), 1, + anon_sym_SEMI, + STATE(3204), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17069), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [329280] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17070), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [329398] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10061), 1, + anon_sym_SEMI, + STATE(3206), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17071), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [329516] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17073), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [329634] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10063), 1, + anon_sym_SEMI, + STATE(3208), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17084), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [329752] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17085), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [329870] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10065), 1, + anon_sym_SEMI, + STATE(3210), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17086), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [329988] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17087), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [330106] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10067), 1, + anon_sym_SEMI, + STATE(3212), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17100), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [330224] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17101), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [330342] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10069), 1, + anon_sym_SEMI, + STATE(3214), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17102), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [330460] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17104), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [330578] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10071), 1, + anon_sym_SEMI, + STATE(3216), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17115), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [330696] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17118), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [330814] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10073), 1, + anon_sym_SEMI, + STATE(3218), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17119), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [330932] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17121), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [331050] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10075), 1, + anon_sym_SEMI, + STATE(3220), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17130), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [331168] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17131), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [331286] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(10077), 1, + anon_sym_SEMI, + STATE(2889), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17132), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [331404] = 30, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(17694), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [331522] = 29, + ACTIONS(1747), 1, + sym_integer_scon, + ACTIONS(1751), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1753), 1, + sym__symbolic_ident, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1761), 1, + anon_sym_op, + ACTIONS(1763), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + anon_sym_LBRACK, + ACTIONS(1769), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1773), 1, + anon_sym_let, + ACTIONS(1775), 1, + anon_sym_raise, + ACTIONS(1777), 1, + anon_sym_if, + ACTIONS(1779), 1, + anon_sym_while, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(1785), 1, + anon_sym_u201c, + ACTIONS(1787), 1, + anon_sym_u2018, + ACTIONS(1789), 1, + anon_sym_BQUOTE, + STATE(9828), 1, + sym_vid, + STATE(9923), 1, + sym__scon, + STATE(9924), 1, + sym_longvid, + STATE(18215), 1, + sym__exp, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(19852), 1, + sym__atomic_tactic, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1749), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4112), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [331637] = 29, + ACTIONS(8147), 1, + sym_integer_scon, + ACTIONS(8151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8153), 1, + sym__symbolic_ident, + ACTIONS(8155), 1, + anon_sym_LPAREN, + ACTIONS(8157), 1, + anon_sym_op, + ACTIONS(8159), 1, + anon_sym_LBRACE, + ACTIONS(8161), 1, + anon_sym_POUND, + ACTIONS(8163), 1, + anon_sym_LBRACK, + ACTIONS(8165), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8167), 1, + anon_sym_let, + ACTIONS(8169), 1, + anon_sym_raise, + ACTIONS(8171), 1, + anon_sym_if, + ACTIONS(8173), 1, + anon_sym_while, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(8179), 1, + anon_sym_u201c, + ACTIONS(8181), 1, + anon_sym_u2018, + ACTIONS(8183), 1, + anon_sym_BQUOTE, + STATE(11124), 1, + sym__scon, + STATE(11150), 1, + sym_longvid, + STATE(11447), 1, + sym_vid, + STATE(18147), 1, + sym__exp, + STATE(19138), 1, + aux_sym_longvid_repeat1, + STATE(19852), 1, + sym__atomic_tactic, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8149), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4215), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [331752] = 29, + ACTIONS(8147), 1, + sym_integer_scon, + ACTIONS(8151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8153), 1, + sym__symbolic_ident, + ACTIONS(8155), 1, + anon_sym_LPAREN, + ACTIONS(8157), 1, + anon_sym_op, + ACTIONS(8159), 1, + anon_sym_LBRACE, + ACTIONS(8161), 1, + anon_sym_POUND, + ACTIONS(8163), 1, + anon_sym_LBRACK, + ACTIONS(8165), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8167), 1, + anon_sym_let, + ACTIONS(8169), 1, + anon_sym_raise, + ACTIONS(8171), 1, + anon_sym_if, + ACTIONS(8173), 1, + anon_sym_while, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(8179), 1, + anon_sym_u201c, + ACTIONS(8181), 1, + anon_sym_u2018, + ACTIONS(8183), 1, + anon_sym_BQUOTE, + STATE(11124), 1, + sym__scon, + STATE(11150), 1, + sym_longvid, + STATE(11447), 1, + sym_vid, + STATE(18147), 1, + sym__exp, + STATE(19138), 1, + aux_sym_longvid_repeat1, + STATE(21652), 1, + sym__atomic_tactic, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8149), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4215), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [331867] = 29, + ACTIONS(8009), 1, + sym_integer_scon, + ACTIONS(8013), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8015), 1, + sym__symbolic_ident, + ACTIONS(8017), 1, + anon_sym_LPAREN, + ACTIONS(8019), 1, + anon_sym_op, + ACTIONS(8021), 1, + anon_sym_LBRACE, + ACTIONS(8023), 1, + anon_sym_POUND, + ACTIONS(8025), 1, + anon_sym_LBRACK, + ACTIONS(8027), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8029), 1, + anon_sym_let, + ACTIONS(8031), 1, + anon_sym_raise, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_while, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(8041), 1, + anon_sym_u201c, + ACTIONS(8043), 1, + anon_sym_u2018, + ACTIONS(8045), 1, + anon_sym_BQUOTE, + STATE(11539), 1, + sym_vid, + STATE(11804), 1, + sym__scon, + STATE(11810), 1, + sym_longvid, + STATE(18705), 1, + sym__exp, + STATE(18835), 1, + aux_sym_longvid_repeat1, + STATE(23064), 1, + sym__atomic_tactic, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8011), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4185), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [331982] = 29, + ACTIONS(8009), 1, + sym_integer_scon, + ACTIONS(8013), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8015), 1, + sym__symbolic_ident, + ACTIONS(8017), 1, + anon_sym_LPAREN, + ACTIONS(8019), 1, + anon_sym_op, + ACTIONS(8021), 1, + anon_sym_LBRACE, + ACTIONS(8023), 1, + anon_sym_POUND, + ACTIONS(8025), 1, + anon_sym_LBRACK, + ACTIONS(8027), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8029), 1, + anon_sym_let, + ACTIONS(8031), 1, + anon_sym_raise, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_while, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(8041), 1, + anon_sym_u201c, + ACTIONS(8043), 1, + anon_sym_u2018, + ACTIONS(8045), 1, + anon_sym_BQUOTE, + STATE(11539), 1, + sym_vid, + STATE(11804), 1, + sym__scon, + STATE(11810), 1, + sym_longvid, + STATE(18705), 1, + sym__exp, + STATE(18835), 1, + aux_sym_longvid_repeat1, + STATE(19852), 1, + sym__atomic_tactic, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8011), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4185), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [332097] = 29, + ACTIONS(1747), 1, + sym_integer_scon, + ACTIONS(1751), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1753), 1, + sym__symbolic_ident, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1761), 1, + anon_sym_op, + ACTIONS(1763), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + anon_sym_LBRACK, + ACTIONS(1769), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1773), 1, + anon_sym_let, + ACTIONS(1775), 1, + anon_sym_raise, + ACTIONS(1777), 1, + anon_sym_if, + ACTIONS(1779), 1, + anon_sym_while, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(1785), 1, + anon_sym_u201c, + ACTIONS(1787), 1, + anon_sym_u2018, + ACTIONS(1789), 1, + anon_sym_BQUOTE, + STATE(9828), 1, + sym_vid, + STATE(9923), 1, + sym__scon, + STATE(9924), 1, + sym_longvid, + STATE(18215), 1, + sym__exp, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(21757), 1, + sym__atomic_tactic, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1749), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4112), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [332212] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18901), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [332324] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19075), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [332436] = 28, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16412), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [332548] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19238), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [332660] = 28, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16537), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [332772] = 28, + ACTIONS(10155), 1, + sym_integer_scon, + ACTIONS(10159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10161), 1, + sym__symbolic_ident, + ACTIONS(10163), 1, + anon_sym_LPAREN, + ACTIONS(10165), 1, + anon_sym_op, + ACTIONS(10167), 1, + anon_sym_LBRACE, + ACTIONS(10169), 1, + anon_sym_POUND, + ACTIONS(10171), 1, + anon_sym_LBRACK, + ACTIONS(10173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10175), 1, + anon_sym_let, + ACTIONS(10177), 1, + anon_sym_raise, + ACTIONS(10179), 1, + anon_sym_if, + ACTIONS(10181), 1, + anon_sym_while, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10187), 1, + anon_sym_u201c, + ACTIONS(10189), 1, + anon_sym_u2018, + ACTIONS(10191), 1, + anon_sym_BQUOTE, + STATE(11565), 1, + sym__scon, + STATE(11568), 1, + sym_longvid, + STATE(11798), 1, + sym_vid, + STATE(18212), 1, + sym__exp, + STATE(19156), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4197), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [332884] = 28, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10193), 1, + sym_integer_scon, + ACTIONS(10197), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10199), 1, + sym__symbolic_ident, + ACTIONS(10201), 1, + anon_sym_LPAREN, + ACTIONS(10203), 1, + anon_sym_op, + ACTIONS(10205), 1, + anon_sym_LBRACE, + ACTIONS(10207), 1, + anon_sym_POUND, + ACTIONS(10209), 1, + anon_sym_LBRACK, + ACTIONS(10211), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10213), 1, + anon_sym_let, + ACTIONS(10215), 1, + anon_sym_raise, + ACTIONS(10217), 1, + anon_sym_if, + ACTIONS(10219), 1, + anon_sym_while, + ACTIONS(10221), 1, + anon_sym_u201c, + ACTIONS(10223), 1, + anon_sym_u2018, + ACTIONS(10225), 1, + anon_sym_BQUOTE, + STATE(11171), 1, + sym_vid, + STATE(11751), 1, + sym__scon, + STATE(11755), 1, + sym_longvid, + STATE(18359), 1, + sym__exp, + STATE(18888), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10195), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4210), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [332996] = 28, + ACTIONS(2973), 1, + sym_integer_scon, + ACTIONS(2977), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2979), 1, + sym__symbolic_ident, + ACTIONS(2981), 1, + anon_sym_LPAREN, + ACTIONS(2983), 1, + anon_sym_op, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_POUND, + ACTIONS(2989), 1, + anon_sym_LBRACK, + ACTIONS(2991), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2993), 1, + anon_sym_let, + ACTIONS(2995), 1, + anon_sym_u201c, + ACTIONS(2997), 1, + anon_sym_u2018, + ACTIONS(2999), 1, + anon_sym_BQUOTE, + ACTIONS(10227), 1, + anon_sym_raise, + ACTIONS(10229), 1, + anon_sym_if, + ACTIONS(10231), 1, + anon_sym_while, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + STATE(7196), 1, + sym_vid, + STATE(7335), 1, + sym__scon, + STATE(7337), 1, + sym_longvid, + STATE(13038), 1, + sym__exp, + STATE(18945), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2975), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(551), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [333108] = 28, + ACTIONS(5537), 1, + sym_integer_scon, + ACTIONS(5541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5543), 1, + sym__symbolic_ident, + ACTIONS(5545), 1, + anon_sym_LPAREN, + ACTIONS(5547), 1, + anon_sym_op, + ACTIONS(5549), 1, + anon_sym_LBRACE, + ACTIONS(5551), 1, + anon_sym_POUND, + ACTIONS(5553), 1, + anon_sym_LBRACK, + ACTIONS(5555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5557), 1, + anon_sym_let, + ACTIONS(5559), 1, + anon_sym_u201c, + ACTIONS(5561), 1, + anon_sym_u2018, + ACTIONS(5563), 1, + anon_sym_BQUOTE, + ACTIONS(10237), 1, + anon_sym_raise, + ACTIONS(10239), 1, + anon_sym_if, + ACTIONS(10241), 1, + anon_sym_while, + ACTIONS(10243), 1, + anon_sym_case, + ACTIONS(10245), 1, + anon_sym_fn, + STATE(7568), 1, + sym__scon, + STATE(7569), 1, + sym_longvid, + STATE(7716), 1, + sym_vid, + STATE(13459), 1, + sym__exp, + STATE(19114), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1097), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [333220] = 28, + ACTIONS(5537), 1, + sym_integer_scon, + ACTIONS(5541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5543), 1, + sym__symbolic_ident, + ACTIONS(5545), 1, + anon_sym_LPAREN, + ACTIONS(5547), 1, + anon_sym_op, + ACTIONS(5549), 1, + anon_sym_LBRACE, + ACTIONS(5551), 1, + anon_sym_POUND, + ACTIONS(5553), 1, + anon_sym_LBRACK, + ACTIONS(5555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5557), 1, + anon_sym_let, + ACTIONS(5559), 1, + anon_sym_u201c, + ACTIONS(5561), 1, + anon_sym_u2018, + ACTIONS(5563), 1, + anon_sym_BQUOTE, + ACTIONS(10237), 1, + anon_sym_raise, + ACTIONS(10239), 1, + anon_sym_if, + ACTIONS(10241), 1, + anon_sym_while, + ACTIONS(10243), 1, + anon_sym_case, + ACTIONS(10245), 1, + anon_sym_fn, + STATE(7568), 1, + sym__scon, + STATE(7569), 1, + sym_longvid, + STATE(7716), 1, + sym_vid, + STATE(13463), 1, + sym__exp, + STATE(19114), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1097), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [333332] = 28, + ACTIONS(5537), 1, + sym_integer_scon, + ACTIONS(5541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5543), 1, + sym__symbolic_ident, + ACTIONS(5545), 1, + anon_sym_LPAREN, + ACTIONS(5547), 1, + anon_sym_op, + ACTIONS(5549), 1, + anon_sym_LBRACE, + ACTIONS(5551), 1, + anon_sym_POUND, + ACTIONS(5553), 1, + anon_sym_LBRACK, + ACTIONS(5555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5557), 1, + anon_sym_let, + ACTIONS(5559), 1, + anon_sym_u201c, + ACTIONS(5561), 1, + anon_sym_u2018, + ACTIONS(5563), 1, + anon_sym_BQUOTE, + ACTIONS(10237), 1, + anon_sym_raise, + ACTIONS(10239), 1, + anon_sym_if, + ACTIONS(10241), 1, + anon_sym_while, + ACTIONS(10243), 1, + anon_sym_case, + ACTIONS(10245), 1, + anon_sym_fn, + STATE(7568), 1, + sym__scon, + STATE(7569), 1, + sym_longvid, + STATE(7716), 1, + sym_vid, + STATE(13434), 1, + sym__exp, + STATE(19114), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1097), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [333444] = 28, + ACTIONS(5537), 1, + sym_integer_scon, + ACTIONS(5541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5543), 1, + sym__symbolic_ident, + ACTIONS(5545), 1, + anon_sym_LPAREN, + ACTIONS(5547), 1, + anon_sym_op, + ACTIONS(5549), 1, + anon_sym_LBRACE, + ACTIONS(5551), 1, + anon_sym_POUND, + ACTIONS(5553), 1, + anon_sym_LBRACK, + ACTIONS(5555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5557), 1, + anon_sym_let, + ACTIONS(5559), 1, + anon_sym_u201c, + ACTIONS(5561), 1, + anon_sym_u2018, + ACTIONS(5563), 1, + anon_sym_BQUOTE, + ACTIONS(10237), 1, + anon_sym_raise, + ACTIONS(10239), 1, + anon_sym_if, + ACTIONS(10241), 1, + anon_sym_while, + ACTIONS(10243), 1, + anon_sym_case, + ACTIONS(10245), 1, + anon_sym_fn, + STATE(7568), 1, + sym__scon, + STATE(7569), 1, + sym_longvid, + STATE(7716), 1, + sym_vid, + STATE(13371), 1, + sym__exp, + STATE(19114), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1097), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [333556] = 28, + ACTIONS(5537), 1, + sym_integer_scon, + ACTIONS(5541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5543), 1, + sym__symbolic_ident, + ACTIONS(5545), 1, + anon_sym_LPAREN, + ACTIONS(5547), 1, + anon_sym_op, + ACTIONS(5549), 1, + anon_sym_LBRACE, + ACTIONS(5551), 1, + anon_sym_POUND, + ACTIONS(5553), 1, + anon_sym_LBRACK, + ACTIONS(5555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5557), 1, + anon_sym_let, + ACTIONS(5559), 1, + anon_sym_u201c, + ACTIONS(5561), 1, + anon_sym_u2018, + ACTIONS(5563), 1, + anon_sym_BQUOTE, + ACTIONS(10237), 1, + anon_sym_raise, + ACTIONS(10239), 1, + anon_sym_if, + ACTIONS(10241), 1, + anon_sym_while, + ACTIONS(10243), 1, + anon_sym_case, + ACTIONS(10245), 1, + anon_sym_fn, + STATE(7568), 1, + sym__scon, + STATE(7569), 1, + sym_longvid, + STATE(7716), 1, + sym_vid, + STATE(13372), 1, + sym__exp, + STATE(19114), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1097), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [333668] = 28, + ACTIONS(7), 1, + sym_integer_scon, + ACTIONS(11), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13), 1, + sym__symbolic_ident, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + anon_sym_op, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_POUND_LBRACK, + ACTIONS(27), 1, + anon_sym_let, + ACTIONS(29), 1, + anon_sym_raise, + ACTIONS(31), 1, + anon_sym_if, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(69), 1, + anon_sym_u201c, + ACTIONS(71), 1, + anon_sym_u2018, + ACTIONS(73), 1, + anon_sym_BQUOTE, + STATE(10287), 1, + sym_vid, + STATE(11359), 1, + sym__scon, + STATE(11478), 1, + sym_longvid, + STATE(18041), 1, + sym__exp, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(9), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4230), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [333780] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9485), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [333892] = 28, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16548), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [334004] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9248), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [334116] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12666), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [334228] = 28, + ACTIONS(10263), 1, + sym_integer_scon, + ACTIONS(10267), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10269), 1, + sym__symbolic_ident, + ACTIONS(10271), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_op, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10277), 1, + anon_sym_POUND, + ACTIONS(10279), 1, + anon_sym_LBRACK, + ACTIONS(10281), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10283), 1, + anon_sym_let, + ACTIONS(10285), 1, + anon_sym_raise, + ACTIONS(10287), 1, + anon_sym_if, + ACTIONS(10289), 1, + anon_sym_while, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10295), 1, + anon_sym_u201c, + ACTIONS(10297), 1, + anon_sym_u2018, + ACTIONS(10299), 1, + anon_sym_BQUOTE, + STATE(10294), 1, + sym_vid, + STATE(10934), 1, + sym__scon, + STATE(10938), 1, + sym_longvid, + STATE(17807), 1, + sym__exp, + STATE(18723), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10265), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4144), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [334340] = 28, + ACTIONS(2125), 1, + sym_integer_scon, + ACTIONS(2129), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2131), 1, + sym__symbolic_ident, + ACTIONS(2133), 1, + anon_sym_LPAREN, + ACTIONS(2135), 1, + anon_sym_op, + ACTIONS(2137), 1, + anon_sym_LBRACE, + ACTIONS(2139), 1, + anon_sym_POUND, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2143), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2145), 1, + anon_sym_let, + ACTIONS(2147), 1, + anon_sym_u201c, + ACTIONS(2149), 1, + anon_sym_u2018, + ACTIONS(2151), 1, + anon_sym_BQUOTE, + ACTIONS(10301), 1, + anon_sym_raise, + ACTIONS(10303), 1, + anon_sym_if, + ACTIONS(10305), 1, + anon_sym_while, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + STATE(5869), 1, + sym_vid, + STATE(6372), 1, + sym__scon, + STATE(6426), 1, + sym_longvid, + STATE(12749), 1, + sym__exp, + STATE(19086), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2127), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(513), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [334452] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18805), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [334564] = 28, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18296), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [334676] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12667), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [334788] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12668), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [334900] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12669), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [335012] = 28, + ACTIONS(1747), 1, + sym_integer_scon, + ACTIONS(1751), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1753), 1, + sym__symbolic_ident, + ACTIONS(1761), 1, + anon_sym_op, + ACTIONS(1763), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + anon_sym_LBRACK, + ACTIONS(1769), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1773), 1, + anon_sym_let, + ACTIONS(1775), 1, + anon_sym_raise, + ACTIONS(1777), 1, + anon_sym_if, + ACTIONS(1779), 1, + anon_sym_while, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(1785), 1, + anon_sym_u201c, + ACTIONS(1787), 1, + anon_sym_u2018, + ACTIONS(1789), 1, + anon_sym_BQUOTE, + ACTIONS(10311), 1, + anon_sym_LPAREN, + STATE(9828), 1, + sym_vid, + STATE(9923), 1, + sym__scon, + STATE(9924), 1, + sym_longvid, + STATE(17256), 1, + sym__exp, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1749), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4112), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [335124] = 28, + ACTIONS(1747), 1, + sym_integer_scon, + ACTIONS(1751), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1753), 1, + sym__symbolic_ident, + ACTIONS(1761), 1, + anon_sym_op, + ACTIONS(1763), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + anon_sym_LBRACK, + ACTIONS(1769), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1773), 1, + anon_sym_let, + ACTIONS(1775), 1, + anon_sym_raise, + ACTIONS(1777), 1, + anon_sym_if, + ACTIONS(1779), 1, + anon_sym_while, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(1785), 1, + anon_sym_u201c, + ACTIONS(1787), 1, + anon_sym_u2018, + ACTIONS(1789), 1, + anon_sym_BQUOTE, + ACTIONS(10311), 1, + anon_sym_LPAREN, + STATE(9828), 1, + sym_vid, + STATE(9923), 1, + sym__scon, + STATE(9924), 1, + sym_longvid, + STATE(17354), 1, + sym__exp, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1749), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4112), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [335236] = 28, + ACTIONS(1747), 1, + sym_integer_scon, + ACTIONS(1751), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1753), 1, + sym__symbolic_ident, + ACTIONS(1761), 1, + anon_sym_op, + ACTIONS(1763), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + anon_sym_LBRACK, + ACTIONS(1769), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1773), 1, + anon_sym_let, + ACTIONS(1775), 1, + anon_sym_raise, + ACTIONS(1777), 1, + anon_sym_if, + ACTIONS(1779), 1, + anon_sym_while, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(1785), 1, + anon_sym_u201c, + ACTIONS(1787), 1, + anon_sym_u2018, + ACTIONS(1789), 1, + anon_sym_BQUOTE, + ACTIONS(10311), 1, + anon_sym_LPAREN, + STATE(9828), 1, + sym_vid, + STATE(9923), 1, + sym__scon, + STATE(9924), 1, + sym_longvid, + STATE(17401), 1, + sym__exp, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1749), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4112), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [335348] = 28, + ACTIONS(1747), 1, + sym_integer_scon, + ACTIONS(1751), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1753), 1, + sym__symbolic_ident, + ACTIONS(1761), 1, + anon_sym_op, + ACTIONS(1763), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + anon_sym_LBRACK, + ACTIONS(1769), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1773), 1, + anon_sym_let, + ACTIONS(1775), 1, + anon_sym_raise, + ACTIONS(1777), 1, + anon_sym_if, + ACTIONS(1779), 1, + anon_sym_while, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(1785), 1, + anon_sym_u201c, + ACTIONS(1787), 1, + anon_sym_u2018, + ACTIONS(1789), 1, + anon_sym_BQUOTE, + ACTIONS(10311), 1, + anon_sym_LPAREN, + STATE(9828), 1, + sym_vid, + STATE(9923), 1, + sym__scon, + STATE(9924), 1, + sym_longvid, + STATE(17303), 1, + sym__exp, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1749), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4112), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [335460] = 28, + ACTIONS(1747), 1, + sym_integer_scon, + ACTIONS(1751), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1753), 1, + sym__symbolic_ident, + ACTIONS(1761), 1, + anon_sym_op, + ACTIONS(1763), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + anon_sym_LBRACK, + ACTIONS(1769), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1773), 1, + anon_sym_let, + ACTIONS(1775), 1, + anon_sym_raise, + ACTIONS(1777), 1, + anon_sym_if, + ACTIONS(1779), 1, + anon_sym_while, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(1785), 1, + anon_sym_u201c, + ACTIONS(1787), 1, + anon_sym_u2018, + ACTIONS(1789), 1, + anon_sym_BQUOTE, + ACTIONS(10311), 1, + anon_sym_LPAREN, + STATE(9828), 1, + sym_vid, + STATE(9923), 1, + sym__scon, + STATE(9924), 1, + sym_longvid, + STATE(17304), 1, + sym__exp, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1749), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4112), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [335572] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12670), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [335684] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12671), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [335796] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12672), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [335908] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12673), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [336020] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12674), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [336132] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12675), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [336244] = 28, + ACTIONS(10313), 1, + sym_integer_scon, + ACTIONS(10317), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10319), 1, + sym__symbolic_ident, + ACTIONS(10321), 1, + anon_sym_LPAREN, + ACTIONS(10323), 1, + anon_sym_op, + ACTIONS(10325), 1, + anon_sym_LBRACE, + ACTIONS(10327), 1, + anon_sym_POUND, + ACTIONS(10329), 1, + anon_sym_LBRACK, + ACTIONS(10331), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10333), 1, + anon_sym_let, + ACTIONS(10335), 1, + anon_sym_raise, + ACTIONS(10337), 1, + anon_sym_if, + ACTIONS(10339), 1, + anon_sym_while, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(10345), 1, + anon_sym_u201c, + ACTIONS(10347), 1, + anon_sym_u2018, + ACTIONS(10349), 1, + anon_sym_BQUOTE, + STATE(10089), 1, + sym__scon, + STATE(10090), 1, + sym_longvid, + STATE(10314), 1, + sym_vid, + STATE(17819), 1, + sym__exp, + STATE(18920), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10315), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4130), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [336356] = 28, + ACTIONS(10351), 1, + sym_integer_scon, + ACTIONS(10355), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10357), 1, + sym__symbolic_ident, + ACTIONS(10359), 1, + anon_sym_LPAREN, + ACTIONS(10361), 1, + anon_sym_op, + ACTIONS(10363), 1, + anon_sym_LBRACE, + ACTIONS(10365), 1, + anon_sym_POUND, + ACTIONS(10367), 1, + anon_sym_LBRACK, + ACTIONS(10369), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10371), 1, + anon_sym_let, + ACTIONS(10373), 1, + anon_sym_raise, + ACTIONS(10375), 1, + anon_sym_if, + ACTIONS(10377), 1, + anon_sym_while, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(10383), 1, + anon_sym_u201c, + ACTIONS(10385), 1, + anon_sym_u2018, + ACTIONS(10387), 1, + anon_sym_BQUOTE, + STATE(9031), 1, + sym__scon, + STATE(9035), 1, + sym_longvid, + STATE(9077), 1, + sym_vid, + STATE(15759), 1, + sym__exp, + STATE(18749), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10353), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4088), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [336468] = 28, + ACTIONS(10389), 1, + sym_integer_scon, + ACTIONS(10393), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10395), 1, + sym__symbolic_ident, + ACTIONS(10397), 1, + anon_sym_LPAREN, + ACTIONS(10399), 1, + anon_sym_op, + ACTIONS(10401), 1, + anon_sym_LBRACE, + ACTIONS(10403), 1, + anon_sym_POUND, + ACTIONS(10405), 1, + anon_sym_LBRACK, + ACTIONS(10407), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10409), 1, + anon_sym_let, + ACTIONS(10411), 1, + anon_sym_raise, + ACTIONS(10413), 1, + anon_sym_if, + ACTIONS(10415), 1, + anon_sym_while, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10421), 1, + anon_sym_u201c, + ACTIONS(10423), 1, + anon_sym_u2018, + ACTIONS(10425), 1, + anon_sym_BQUOTE, + STATE(8871), 1, + sym__scon, + STATE(8892), 1, + sym_vid, + STATE(8909), 1, + sym_longvid, + STATE(15329), 1, + sym__exp, + STATE(19240), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10391), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4081), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [336580] = 28, + ACTIONS(10389), 1, + sym_integer_scon, + ACTIONS(10393), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10395), 1, + sym__symbolic_ident, + ACTIONS(10397), 1, + anon_sym_LPAREN, + ACTIONS(10399), 1, + anon_sym_op, + ACTIONS(10401), 1, + anon_sym_LBRACE, + ACTIONS(10403), 1, + anon_sym_POUND, + ACTIONS(10405), 1, + anon_sym_LBRACK, + ACTIONS(10407), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10409), 1, + anon_sym_let, + ACTIONS(10411), 1, + anon_sym_raise, + ACTIONS(10413), 1, + anon_sym_if, + ACTIONS(10415), 1, + anon_sym_while, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10421), 1, + anon_sym_u201c, + ACTIONS(10423), 1, + anon_sym_u2018, + ACTIONS(10425), 1, + anon_sym_BQUOTE, + STATE(8871), 1, + sym__scon, + STATE(8892), 1, + sym_vid, + STATE(8909), 1, + sym_longvid, + STATE(15181), 1, + sym__exp, + STATE(19240), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10391), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4081), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [336692] = 28, + ACTIONS(10389), 1, + sym_integer_scon, + ACTIONS(10393), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10395), 1, + sym__symbolic_ident, + ACTIONS(10397), 1, + anon_sym_LPAREN, + ACTIONS(10399), 1, + anon_sym_op, + ACTIONS(10401), 1, + anon_sym_LBRACE, + ACTIONS(10403), 1, + anon_sym_POUND, + ACTIONS(10405), 1, + anon_sym_LBRACK, + ACTIONS(10407), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10409), 1, + anon_sym_let, + ACTIONS(10411), 1, + anon_sym_raise, + ACTIONS(10413), 1, + anon_sym_if, + ACTIONS(10415), 1, + anon_sym_while, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10421), 1, + anon_sym_u201c, + ACTIONS(10423), 1, + anon_sym_u2018, + ACTIONS(10425), 1, + anon_sym_BQUOTE, + STATE(8871), 1, + sym__scon, + STATE(8892), 1, + sym_vid, + STATE(8909), 1, + sym_longvid, + STATE(15217), 1, + sym__exp, + STATE(19240), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10391), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4081), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [336804] = 28, + ACTIONS(10389), 1, + sym_integer_scon, + ACTIONS(10393), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10395), 1, + sym__symbolic_ident, + ACTIONS(10397), 1, + anon_sym_LPAREN, + ACTIONS(10399), 1, + anon_sym_op, + ACTIONS(10401), 1, + anon_sym_LBRACE, + ACTIONS(10403), 1, + anon_sym_POUND, + ACTIONS(10405), 1, + anon_sym_LBRACK, + ACTIONS(10407), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10409), 1, + anon_sym_let, + ACTIONS(10411), 1, + anon_sym_raise, + ACTIONS(10413), 1, + anon_sym_if, + ACTIONS(10415), 1, + anon_sym_while, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10421), 1, + anon_sym_u201c, + ACTIONS(10423), 1, + anon_sym_u2018, + ACTIONS(10425), 1, + anon_sym_BQUOTE, + STATE(8871), 1, + sym__scon, + STATE(8892), 1, + sym_vid, + STATE(8909), 1, + sym_longvid, + STATE(15152), 1, + sym__exp, + STATE(19240), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10391), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4081), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [336916] = 28, + ACTIONS(10389), 1, + sym_integer_scon, + ACTIONS(10393), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10395), 1, + sym__symbolic_ident, + ACTIONS(10397), 1, + anon_sym_LPAREN, + ACTIONS(10399), 1, + anon_sym_op, + ACTIONS(10401), 1, + anon_sym_LBRACE, + ACTIONS(10403), 1, + anon_sym_POUND, + ACTIONS(10405), 1, + anon_sym_LBRACK, + ACTIONS(10407), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10409), 1, + anon_sym_let, + ACTIONS(10411), 1, + anon_sym_raise, + ACTIONS(10413), 1, + anon_sym_if, + ACTIONS(10415), 1, + anon_sym_while, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10421), 1, + anon_sym_u201c, + ACTIONS(10423), 1, + anon_sym_u2018, + ACTIONS(10425), 1, + anon_sym_BQUOTE, + STATE(8871), 1, + sym__scon, + STATE(8892), 1, + sym_vid, + STATE(8909), 1, + sym_longvid, + STATE(15153), 1, + sym__exp, + STATE(19240), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10391), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4081), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [337028] = 28, + ACTIONS(2055), 1, + sym_integer_scon, + ACTIONS(2059), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2061), 1, + sym__symbolic_ident, + ACTIONS(2063), 1, + anon_sym_LPAREN, + ACTIONS(2065), 1, + anon_sym_op, + ACTIONS(2067), 1, + anon_sym_LBRACE, + ACTIONS(2069), 1, + anon_sym_POUND, + ACTIONS(2071), 1, + anon_sym_LBRACK, + ACTIONS(2073), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2075), 1, + anon_sym_let, + ACTIONS(2077), 1, + anon_sym_u201c, + ACTIONS(2079), 1, + anon_sym_u2018, + ACTIONS(2081), 1, + anon_sym_BQUOTE, + ACTIONS(10427), 1, + anon_sym_raise, + ACTIONS(10429), 1, + anon_sym_if, + ACTIONS(10431), 1, + anon_sym_while, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + STATE(5861), 1, + sym_vid, + STATE(6077), 1, + sym__scon, + STATE(6080), 1, + sym_longvid, + STATE(12795), 1, + sym__exp, + STATE(18806), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2057), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(510), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [337140] = 28, + ACTIONS(1677), 1, + sym_integer_scon, + ACTIONS(1681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1683), 1, + sym__symbolic_ident, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_op, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(1691), 1, + anon_sym_POUND, + ACTIONS(1693), 1, + anon_sym_LBRACK, + ACTIONS(1695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1697), 1, + anon_sym_let, + ACTIONS(1699), 1, + anon_sym_u201c, + ACTIONS(1701), 1, + anon_sym_u2018, + ACTIONS(1703), 1, + anon_sym_BQUOTE, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + ACTIONS(10437), 1, + anon_sym_raise, + ACTIONS(10439), 1, + anon_sym_if, + ACTIONS(10441), 1, + anon_sym_while, + STATE(5518), 1, + sym__scon, + STATE(5519), 1, + sym_longvid, + STATE(5575), 1, + sym_vid, + STATE(12351), 1, + sym__exp, + STATE(19199), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(495), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [337252] = 28, + ACTIONS(1257), 1, + sym_integer_scon, + ACTIONS(1261), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1263), 1, + sym__symbolic_ident, + ACTIONS(1265), 1, + anon_sym_LPAREN, + ACTIONS(1267), 1, + anon_sym_op, + ACTIONS(1269), 1, + anon_sym_LBRACE, + ACTIONS(1271), 1, + anon_sym_POUND, + ACTIONS(1273), 1, + anon_sym_LBRACK, + ACTIONS(1275), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1277), 1, + anon_sym_let, + ACTIONS(1279), 1, + anon_sym_u201c, + ACTIONS(1281), 1, + anon_sym_u2018, + ACTIONS(1283), 1, + anon_sym_BQUOTE, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + ACTIONS(10443), 1, + anon_sym_raise, + ACTIONS(10445), 1, + anon_sym_if, + ACTIONS(10447), 1, + anon_sym_while, + STATE(5015), 1, + sym_vid, + STATE(5082), 1, + sym__scon, + STATE(5095), 1, + sym_longvid, + STATE(10030), 1, + sym__exp, + STATE(19100), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1259), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(477), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [337364] = 28, + ACTIONS(1257), 1, + sym_integer_scon, + ACTIONS(1261), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1263), 1, + sym__symbolic_ident, + ACTIONS(1265), 1, + anon_sym_LPAREN, + ACTIONS(1267), 1, + anon_sym_op, + ACTIONS(1269), 1, + anon_sym_LBRACE, + ACTIONS(1271), 1, + anon_sym_POUND, + ACTIONS(1273), 1, + anon_sym_LBRACK, + ACTIONS(1275), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1277), 1, + anon_sym_let, + ACTIONS(1279), 1, + anon_sym_u201c, + ACTIONS(1281), 1, + anon_sym_u2018, + ACTIONS(1283), 1, + anon_sym_BQUOTE, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + ACTIONS(10443), 1, + anon_sym_raise, + ACTIONS(10445), 1, + anon_sym_if, + ACTIONS(10447), 1, + anon_sym_while, + STATE(5015), 1, + sym_vid, + STATE(5082), 1, + sym__scon, + STATE(5095), 1, + sym_longvid, + STATE(9935), 1, + sym__exp, + STATE(19100), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1259), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(477), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [337476] = 28, + ACTIONS(1257), 1, + sym_integer_scon, + ACTIONS(1261), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1263), 1, + sym__symbolic_ident, + ACTIONS(1265), 1, + anon_sym_LPAREN, + ACTIONS(1267), 1, + anon_sym_op, + ACTIONS(1269), 1, + anon_sym_LBRACE, + ACTIONS(1271), 1, + anon_sym_POUND, + ACTIONS(1273), 1, + anon_sym_LBRACK, + ACTIONS(1275), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1277), 1, + anon_sym_let, + ACTIONS(1279), 1, + anon_sym_u201c, + ACTIONS(1281), 1, + anon_sym_u2018, + ACTIONS(1283), 1, + anon_sym_BQUOTE, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + ACTIONS(10443), 1, + anon_sym_raise, + ACTIONS(10445), 1, + anon_sym_if, + ACTIONS(10447), 1, + anon_sym_while, + STATE(5015), 1, + sym_vid, + STATE(5082), 1, + sym__scon, + STATE(5095), 1, + sym_longvid, + STATE(9527), 1, + sym__exp, + STATE(19100), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1259), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(477), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [337588] = 28, + ACTIONS(1257), 1, + sym_integer_scon, + ACTIONS(1261), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1263), 1, + sym__symbolic_ident, + ACTIONS(1265), 1, + anon_sym_LPAREN, + ACTIONS(1267), 1, + anon_sym_op, + ACTIONS(1269), 1, + anon_sym_LBRACE, + ACTIONS(1271), 1, + anon_sym_POUND, + ACTIONS(1273), 1, + anon_sym_LBRACK, + ACTIONS(1275), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1277), 1, + anon_sym_let, + ACTIONS(1279), 1, + anon_sym_u201c, + ACTIONS(1281), 1, + anon_sym_u2018, + ACTIONS(1283), 1, + anon_sym_BQUOTE, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + ACTIONS(10443), 1, + anon_sym_raise, + ACTIONS(10445), 1, + anon_sym_if, + ACTIONS(10447), 1, + anon_sym_while, + STATE(5015), 1, + sym_vid, + STATE(5082), 1, + sym__scon, + STATE(5095), 1, + sym_longvid, + STATE(9529), 1, + sym__exp, + STATE(19100), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1259), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(477), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [337700] = 28, + ACTIONS(1257), 1, + sym_integer_scon, + ACTIONS(1261), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1263), 1, + sym__symbolic_ident, + ACTIONS(1265), 1, + anon_sym_LPAREN, + ACTIONS(1267), 1, + anon_sym_op, + ACTIONS(1269), 1, + anon_sym_LBRACE, + ACTIONS(1271), 1, + anon_sym_POUND, + ACTIONS(1273), 1, + anon_sym_LBRACK, + ACTIONS(1275), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1277), 1, + anon_sym_let, + ACTIONS(1279), 1, + anon_sym_u201c, + ACTIONS(1281), 1, + anon_sym_u2018, + ACTIONS(1283), 1, + anon_sym_BQUOTE, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + ACTIONS(10443), 1, + anon_sym_raise, + ACTIONS(10445), 1, + anon_sym_if, + ACTIONS(10447), 1, + anon_sym_while, + STATE(5015), 1, + sym_vid, + STATE(5082), 1, + sym__scon, + STATE(5095), 1, + sym_longvid, + STATE(9706), 1, + sym__exp, + STATE(19100), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1259), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(477), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [337812] = 28, + ACTIONS(3599), 1, + sym_integer_scon, + ACTIONS(3603), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3605), 1, + sym__symbolic_ident, + ACTIONS(3607), 1, + anon_sym_LPAREN, + ACTIONS(3609), 1, + anon_sym_op, + ACTIONS(3611), 1, + anon_sym_LBRACE, + ACTIONS(3613), 1, + anon_sym_POUND, + ACTIONS(3615), 1, + anon_sym_LBRACK, + ACTIONS(3617), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3619), 1, + anon_sym_let, + ACTIONS(3621), 1, + anon_sym_u201c, + ACTIONS(3623), 1, + anon_sym_u2018, + ACTIONS(3625), 1, + anon_sym_BQUOTE, + ACTIONS(10449), 1, + anon_sym_raise, + ACTIONS(10451), 1, + anon_sym_if, + ACTIONS(10453), 1, + anon_sym_while, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + STATE(7067), 1, + sym__scon, + STATE(7069), 1, + sym_longvid, + STATE(7182), 1, + sym_vid, + STATE(13211), 1, + sym__exp, + STATE(18750), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3601), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(585), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [337924] = 28, + ACTIONS(3599), 1, + sym_integer_scon, + ACTIONS(3603), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3605), 1, + sym__symbolic_ident, + ACTIONS(3607), 1, + anon_sym_LPAREN, + ACTIONS(3609), 1, + anon_sym_op, + ACTIONS(3611), 1, + anon_sym_LBRACE, + ACTIONS(3613), 1, + anon_sym_POUND, + ACTIONS(3615), 1, + anon_sym_LBRACK, + ACTIONS(3617), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3619), 1, + anon_sym_let, + ACTIONS(3621), 1, + anon_sym_u201c, + ACTIONS(3623), 1, + anon_sym_u2018, + ACTIONS(3625), 1, + anon_sym_BQUOTE, + ACTIONS(10449), 1, + anon_sym_raise, + ACTIONS(10451), 1, + anon_sym_if, + ACTIONS(10453), 1, + anon_sym_while, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + STATE(7067), 1, + sym__scon, + STATE(7069), 1, + sym_longvid, + STATE(7182), 1, + sym_vid, + STATE(13214), 1, + sym__exp, + STATE(18750), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3601), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(585), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [338036] = 28, + ACTIONS(3599), 1, + sym_integer_scon, + ACTIONS(3603), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3605), 1, + sym__symbolic_ident, + ACTIONS(3607), 1, + anon_sym_LPAREN, + ACTIONS(3609), 1, + anon_sym_op, + ACTIONS(3611), 1, + anon_sym_LBRACE, + ACTIONS(3613), 1, + anon_sym_POUND, + ACTIONS(3615), 1, + anon_sym_LBRACK, + ACTIONS(3617), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3619), 1, + anon_sym_let, + ACTIONS(3621), 1, + anon_sym_u201c, + ACTIONS(3623), 1, + anon_sym_u2018, + ACTIONS(3625), 1, + anon_sym_BQUOTE, + ACTIONS(10449), 1, + anon_sym_raise, + ACTIONS(10451), 1, + anon_sym_if, + ACTIONS(10453), 1, + anon_sym_while, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + STATE(7067), 1, + sym__scon, + STATE(7069), 1, + sym_longvid, + STATE(7182), 1, + sym_vid, + STATE(13047), 1, + sym__exp, + STATE(18750), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3601), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(585), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [338148] = 28, + ACTIONS(3599), 1, + sym_integer_scon, + ACTIONS(3603), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3605), 1, + sym__symbolic_ident, + ACTIONS(3607), 1, + anon_sym_LPAREN, + ACTIONS(3609), 1, + anon_sym_op, + ACTIONS(3611), 1, + anon_sym_LBRACE, + ACTIONS(3613), 1, + anon_sym_POUND, + ACTIONS(3615), 1, + anon_sym_LBRACK, + ACTIONS(3617), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3619), 1, + anon_sym_let, + ACTIONS(3621), 1, + anon_sym_u201c, + ACTIONS(3623), 1, + anon_sym_u2018, + ACTIONS(3625), 1, + anon_sym_BQUOTE, + ACTIONS(10449), 1, + anon_sym_raise, + ACTIONS(10451), 1, + anon_sym_if, + ACTIONS(10453), 1, + anon_sym_while, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + STATE(7067), 1, + sym__scon, + STATE(7069), 1, + sym_longvid, + STATE(7182), 1, + sym_vid, + STATE(13187), 1, + sym__exp, + STATE(18750), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3601), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(585), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [338260] = 28, + ACTIONS(3599), 1, + sym_integer_scon, + ACTIONS(3603), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3605), 1, + sym__symbolic_ident, + ACTIONS(3607), 1, + anon_sym_LPAREN, + ACTIONS(3609), 1, + anon_sym_op, + ACTIONS(3611), 1, + anon_sym_LBRACE, + ACTIONS(3613), 1, + anon_sym_POUND, + ACTIONS(3615), 1, + anon_sym_LBRACK, + ACTIONS(3617), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3619), 1, + anon_sym_let, + ACTIONS(3621), 1, + anon_sym_u201c, + ACTIONS(3623), 1, + anon_sym_u2018, + ACTIONS(3625), 1, + anon_sym_BQUOTE, + ACTIONS(10449), 1, + anon_sym_raise, + ACTIONS(10451), 1, + anon_sym_if, + ACTIONS(10453), 1, + anon_sym_while, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + STATE(7067), 1, + sym__scon, + STATE(7069), 1, + sym_longvid, + STATE(7182), 1, + sym_vid, + STATE(13190), 1, + sym__exp, + STATE(18750), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3601), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(585), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [338372] = 28, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18333), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [338484] = 28, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18237), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [338596] = 28, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18378), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [338708] = 28, + ACTIONS(10459), 1, + sym_integer_scon, + ACTIONS(10463), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10465), 1, + sym__symbolic_ident, + ACTIONS(10467), 1, + anon_sym_LPAREN, + ACTIONS(10469), 1, + anon_sym_op, + ACTIONS(10471), 1, + anon_sym_LBRACE, + ACTIONS(10473), 1, + anon_sym_POUND, + ACTIONS(10475), 1, + anon_sym_LBRACK, + ACTIONS(10477), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10479), 1, + anon_sym_let, + ACTIONS(10481), 1, + anon_sym_raise, + ACTIONS(10483), 1, + anon_sym_if, + ACTIONS(10485), 1, + anon_sym_while, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(10491), 1, + anon_sym_u201c, + ACTIONS(10493), 1, + anon_sym_u2018, + ACTIONS(10495), 1, + anon_sym_BQUOTE, + STATE(9534), 1, + sym_vid, + STATE(9568), 1, + sym__scon, + STATE(9570), 1, + sym_longvid, + STATE(17324), 1, + sym__exp, + STATE(18883), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10461), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4123), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [338820] = 28, + ACTIONS(10497), 1, + sym_integer_scon, + ACTIONS(10501), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10503), 1, + sym__symbolic_ident, + ACTIONS(10505), 1, + anon_sym_LPAREN, + ACTIONS(10507), 1, + anon_sym_op, + ACTIONS(10509), 1, + anon_sym_LBRACE, + ACTIONS(10511), 1, + anon_sym_POUND, + ACTIONS(10513), 1, + anon_sym_LBRACK, + ACTIONS(10515), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10517), 1, + anon_sym_let, + ACTIONS(10519), 1, + anon_sym_raise, + ACTIONS(10521), 1, + anon_sym_if, + ACTIONS(10523), 1, + anon_sym_while, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10529), 1, + anon_sym_u201c, + ACTIONS(10531), 1, + anon_sym_u2018, + ACTIONS(10533), 1, + anon_sym_BQUOTE, + STATE(10361), 1, + sym__scon, + STATE(10362), 1, + sym_longvid, + STATE(10758), 1, + sym_vid, + STATE(17744), 1, + sym__exp, + STATE(19039), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10499), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4126), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [338932] = 28, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(10535), 1, + sym_integer_scon, + ACTIONS(10539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10541), 1, + sym__symbolic_ident, + ACTIONS(10543), 1, + anon_sym_LPAREN, + ACTIONS(10545), 1, + anon_sym_op, + ACTIONS(10547), 1, + anon_sym_LBRACE, + ACTIONS(10549), 1, + anon_sym_POUND, + ACTIONS(10551), 1, + anon_sym_LBRACK, + ACTIONS(10553), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10555), 1, + anon_sym_let, + ACTIONS(10557), 1, + anon_sym_raise, + ACTIONS(10559), 1, + anon_sym_if, + ACTIONS(10561), 1, + anon_sym_while, + ACTIONS(10563), 1, + anon_sym_u201c, + ACTIONS(10565), 1, + anon_sym_u2018, + ACTIONS(10567), 1, + anon_sym_BQUOTE, + STATE(10469), 1, + sym__scon, + STATE(10471), 1, + sym_longvid, + STATE(10814), 1, + sym_vid, + STATE(17745), 1, + sym__exp, + STATE(18831), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4129), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [339044] = 28, + ACTIONS(5649), 1, + sym_integer_scon, + ACTIONS(5653), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5655), 1, + sym__symbolic_ident, + ACTIONS(5657), 1, + anon_sym_LPAREN, + ACTIONS(5659), 1, + anon_sym_op, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(5663), 1, + anon_sym_POUND, + ACTIONS(5665), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5669), 1, + anon_sym_let, + ACTIONS(5671), 1, + anon_sym_u201c, + ACTIONS(5673), 1, + anon_sym_u2018, + ACTIONS(5675), 1, + anon_sym_BQUOTE, + ACTIONS(10569), 1, + anon_sym_raise, + ACTIONS(10571), 1, + anon_sym_if, + ACTIONS(10573), 1, + anon_sym_while, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + STATE(7660), 1, + sym__scon, + STATE(7661), 1, + sym_longvid, + STATE(7832), 1, + sym_vid, + STATE(13346), 1, + sym__exp, + STATE(18984), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5651), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1103), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [339156] = 28, + ACTIONS(5649), 1, + sym_integer_scon, + ACTIONS(5653), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5655), 1, + sym__symbolic_ident, + ACTIONS(5657), 1, + anon_sym_LPAREN, + ACTIONS(5659), 1, + anon_sym_op, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(5663), 1, + anon_sym_POUND, + ACTIONS(5665), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5669), 1, + anon_sym_let, + ACTIONS(5671), 1, + anon_sym_u201c, + ACTIONS(5673), 1, + anon_sym_u2018, + ACTIONS(5675), 1, + anon_sym_BQUOTE, + ACTIONS(10569), 1, + anon_sym_raise, + ACTIONS(10571), 1, + anon_sym_if, + ACTIONS(10573), 1, + anon_sym_while, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + STATE(7660), 1, + sym__scon, + STATE(7661), 1, + sym_longvid, + STATE(7832), 1, + sym_vid, + STATE(13347), 1, + sym__exp, + STATE(18984), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5651), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1103), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [339268] = 28, + ACTIONS(5649), 1, + sym_integer_scon, + ACTIONS(5653), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5655), 1, + sym__symbolic_ident, + ACTIONS(5657), 1, + anon_sym_LPAREN, + ACTIONS(5659), 1, + anon_sym_op, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(5663), 1, + anon_sym_POUND, + ACTIONS(5665), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5669), 1, + anon_sym_let, + ACTIONS(5671), 1, + anon_sym_u201c, + ACTIONS(5673), 1, + anon_sym_u2018, + ACTIONS(5675), 1, + anon_sym_BQUOTE, + ACTIONS(10569), 1, + anon_sym_raise, + ACTIONS(10571), 1, + anon_sym_if, + ACTIONS(10573), 1, + anon_sym_while, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + STATE(7660), 1, + sym__scon, + STATE(7661), 1, + sym_longvid, + STATE(7832), 1, + sym_vid, + STATE(13481), 1, + sym__exp, + STATE(18984), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5651), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1103), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [339380] = 28, + ACTIONS(5649), 1, + sym_integer_scon, + ACTIONS(5653), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5655), 1, + sym__symbolic_ident, + ACTIONS(5657), 1, + anon_sym_LPAREN, + ACTIONS(5659), 1, + anon_sym_op, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(5663), 1, + anon_sym_POUND, + ACTIONS(5665), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5669), 1, + anon_sym_let, + ACTIONS(5671), 1, + anon_sym_u201c, + ACTIONS(5673), 1, + anon_sym_u2018, + ACTIONS(5675), 1, + anon_sym_BQUOTE, + ACTIONS(10569), 1, + anon_sym_raise, + ACTIONS(10571), 1, + anon_sym_if, + ACTIONS(10573), 1, + anon_sym_while, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + STATE(7660), 1, + sym__scon, + STATE(7661), 1, + sym_longvid, + STATE(7832), 1, + sym_vid, + STATE(13490), 1, + sym__exp, + STATE(18984), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5651), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1103), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [339492] = 28, + ACTIONS(5649), 1, + sym_integer_scon, + ACTIONS(5653), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5655), 1, + sym__symbolic_ident, + ACTIONS(5657), 1, + anon_sym_LPAREN, + ACTIONS(5659), 1, + anon_sym_op, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(5663), 1, + anon_sym_POUND, + ACTIONS(5665), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5669), 1, + anon_sym_let, + ACTIONS(5671), 1, + anon_sym_u201c, + ACTIONS(5673), 1, + anon_sym_u2018, + ACTIONS(5675), 1, + anon_sym_BQUOTE, + ACTIONS(10569), 1, + anon_sym_raise, + ACTIONS(10571), 1, + anon_sym_if, + ACTIONS(10573), 1, + anon_sym_while, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + STATE(7660), 1, + sym__scon, + STATE(7661), 1, + sym_longvid, + STATE(7832), 1, + sym_vid, + STATE(13492), 1, + sym__exp, + STATE(18984), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5651), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1103), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [339604] = 28, + ACTIONS(10579), 1, + sym_integer_scon, + ACTIONS(10583), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10585), 1, + sym__symbolic_ident, + ACTIONS(10587), 1, + anon_sym_LPAREN, + ACTIONS(10589), 1, + anon_sym_op, + ACTIONS(10591), 1, + anon_sym_LBRACE, + ACTIONS(10593), 1, + anon_sym_POUND, + ACTIONS(10595), 1, + anon_sym_LBRACK, + ACTIONS(10597), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10599), 1, + anon_sym_let, + ACTIONS(10601), 1, + anon_sym_raise, + ACTIONS(10603), 1, + anon_sym_if, + ACTIONS(10605), 1, + anon_sym_while, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(10611), 1, + anon_sym_u201c, + ACTIONS(10613), 1, + anon_sym_u2018, + ACTIONS(10615), 1, + anon_sym_BQUOTE, + STATE(9540), 1, + sym_vid, + STATE(9630), 1, + sym__scon, + STATE(9632), 1, + sym_longvid, + STATE(17333), 1, + sym__exp, + STATE(18975), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10581), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4122), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [339716] = 28, + ACTIONS(5719), 1, + sym_integer_scon, + ACTIONS(5723), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5725), 1, + sym__symbolic_ident, + ACTIONS(5727), 1, + anon_sym_LPAREN, + ACTIONS(5729), 1, + anon_sym_op, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(5733), 1, + anon_sym_POUND, + ACTIONS(5735), 1, + anon_sym_LBRACK, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5739), 1, + anon_sym_let, + ACTIONS(5741), 1, + anon_sym_u201c, + ACTIONS(5743), 1, + anon_sym_u2018, + ACTIONS(5745), 1, + anon_sym_BQUOTE, + ACTIONS(10617), 1, + anon_sym_raise, + ACTIONS(10619), 1, + anon_sym_if, + ACTIONS(10621), 1, + anon_sym_while, + ACTIONS(10623), 1, + anon_sym_case, + ACTIONS(10625), 1, + anon_sym_fn, + STATE(7715), 1, + sym__scon, + STATE(7717), 1, + sym_longvid, + STATE(7836), 1, + sym_vid, + STATE(13358), 1, + sym__exp, + STATE(19108), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5721), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [339828] = 28, + ACTIONS(5719), 1, + sym_integer_scon, + ACTIONS(5723), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5725), 1, + sym__symbolic_ident, + ACTIONS(5727), 1, + anon_sym_LPAREN, + ACTIONS(5729), 1, + anon_sym_op, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(5733), 1, + anon_sym_POUND, + ACTIONS(5735), 1, + anon_sym_LBRACK, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5739), 1, + anon_sym_let, + ACTIONS(5741), 1, + anon_sym_u201c, + ACTIONS(5743), 1, + anon_sym_u2018, + ACTIONS(5745), 1, + anon_sym_BQUOTE, + ACTIONS(10617), 1, + anon_sym_raise, + ACTIONS(10619), 1, + anon_sym_if, + ACTIONS(10621), 1, + anon_sym_while, + ACTIONS(10623), 1, + anon_sym_case, + ACTIONS(10625), 1, + anon_sym_fn, + STATE(7715), 1, + sym__scon, + STATE(7717), 1, + sym_longvid, + STATE(7836), 1, + sym_vid, + STATE(13359), 1, + sym__exp, + STATE(19108), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5721), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [339940] = 28, + ACTIONS(5719), 1, + sym_integer_scon, + ACTIONS(5723), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5725), 1, + sym__symbolic_ident, + ACTIONS(5727), 1, + anon_sym_LPAREN, + ACTIONS(5729), 1, + anon_sym_op, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(5733), 1, + anon_sym_POUND, + ACTIONS(5735), 1, + anon_sym_LBRACK, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5739), 1, + anon_sym_let, + ACTIONS(5741), 1, + anon_sym_u201c, + ACTIONS(5743), 1, + anon_sym_u2018, + ACTIONS(5745), 1, + anon_sym_BQUOTE, + ACTIONS(10617), 1, + anon_sym_raise, + ACTIONS(10619), 1, + anon_sym_if, + ACTIONS(10621), 1, + anon_sym_while, + ACTIONS(10623), 1, + anon_sym_case, + ACTIONS(10625), 1, + anon_sym_fn, + STATE(7715), 1, + sym__scon, + STATE(7717), 1, + sym_longvid, + STATE(7836), 1, + sym_vid, + STATE(13410), 1, + sym__exp, + STATE(19108), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5721), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [340052] = 28, + ACTIONS(5719), 1, + sym_integer_scon, + ACTIONS(5723), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5725), 1, + sym__symbolic_ident, + ACTIONS(5727), 1, + anon_sym_LPAREN, + ACTIONS(5729), 1, + anon_sym_op, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(5733), 1, + anon_sym_POUND, + ACTIONS(5735), 1, + anon_sym_LBRACK, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5739), 1, + anon_sym_let, + ACTIONS(5741), 1, + anon_sym_u201c, + ACTIONS(5743), 1, + anon_sym_u2018, + ACTIONS(5745), 1, + anon_sym_BQUOTE, + ACTIONS(10617), 1, + anon_sym_raise, + ACTIONS(10619), 1, + anon_sym_if, + ACTIONS(10621), 1, + anon_sym_while, + ACTIONS(10623), 1, + anon_sym_case, + ACTIONS(10625), 1, + anon_sym_fn, + STATE(7715), 1, + sym__scon, + STATE(7717), 1, + sym_longvid, + STATE(7836), 1, + sym_vid, + STATE(13337), 1, + sym__exp, + STATE(19108), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5721), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [340164] = 28, + ACTIONS(5719), 1, + sym_integer_scon, + ACTIONS(5723), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5725), 1, + sym__symbolic_ident, + ACTIONS(5727), 1, + anon_sym_LPAREN, + ACTIONS(5729), 1, + anon_sym_op, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(5733), 1, + anon_sym_POUND, + ACTIONS(5735), 1, + anon_sym_LBRACK, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5739), 1, + anon_sym_let, + ACTIONS(5741), 1, + anon_sym_u201c, + ACTIONS(5743), 1, + anon_sym_u2018, + ACTIONS(5745), 1, + anon_sym_BQUOTE, + ACTIONS(10617), 1, + anon_sym_raise, + ACTIONS(10619), 1, + anon_sym_if, + ACTIONS(10621), 1, + anon_sym_while, + ACTIONS(10623), 1, + anon_sym_case, + ACTIONS(10625), 1, + anon_sym_fn, + STATE(7715), 1, + sym__scon, + STATE(7717), 1, + sym_longvid, + STATE(7836), 1, + sym_vid, + STATE(13338), 1, + sym__exp, + STATE(19108), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5721), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [340276] = 28, + ACTIONS(2125), 1, + sym_integer_scon, + ACTIONS(2129), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2131), 1, + sym__symbolic_ident, + ACTIONS(2133), 1, + anon_sym_LPAREN, + ACTIONS(2135), 1, + anon_sym_op, + ACTIONS(2137), 1, + anon_sym_LBRACE, + ACTIONS(2139), 1, + anon_sym_POUND, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2143), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2145), 1, + anon_sym_let, + ACTIONS(2147), 1, + anon_sym_u201c, + ACTIONS(2149), 1, + anon_sym_u2018, + ACTIONS(2151), 1, + anon_sym_BQUOTE, + ACTIONS(10301), 1, + anon_sym_raise, + ACTIONS(10303), 1, + anon_sym_if, + ACTIONS(10305), 1, + anon_sym_while, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + STATE(5869), 1, + sym_vid, + STATE(6372), 1, + sym__scon, + STATE(6426), 1, + sym_longvid, + STATE(12815), 1, + sym__exp, + STATE(19086), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2127), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(513), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [340388] = 28, + ACTIONS(5481), 1, + sym_integer_scon, + ACTIONS(5485), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5487), 1, + sym__symbolic_ident, + ACTIONS(5489), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + anon_sym_op, + ACTIONS(5493), 1, + anon_sym_LBRACE, + ACTIONS(5495), 1, + anon_sym_POUND, + ACTIONS(5497), 1, + anon_sym_LBRACK, + ACTIONS(5499), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5501), 1, + anon_sym_let, + ACTIONS(5503), 1, + anon_sym_u201c, + ACTIONS(5505), 1, + anon_sym_u2018, + ACTIONS(5507), 1, + anon_sym_BQUOTE, + ACTIONS(10627), 1, + anon_sym_raise, + ACTIONS(10629), 1, + anon_sym_if, + ACTIONS(10631), 1, + anon_sym_while, + ACTIONS(10633), 1, + anon_sym_case, + ACTIONS(10635), 1, + anon_sym_fn, + STATE(7451), 1, + sym_vid, + STATE(7830), 1, + sym__scon, + STATE(7877), 1, + sym_longvid, + STATE(13460), 1, + sym__exp, + STATE(18911), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5483), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1102), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [340500] = 28, + ACTIONS(5481), 1, + sym_integer_scon, + ACTIONS(5485), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5487), 1, + sym__symbolic_ident, + ACTIONS(5489), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + anon_sym_op, + ACTIONS(5493), 1, + anon_sym_LBRACE, + ACTIONS(5495), 1, + anon_sym_POUND, + ACTIONS(5497), 1, + anon_sym_LBRACK, + ACTIONS(5499), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5501), 1, + anon_sym_let, + ACTIONS(5503), 1, + anon_sym_u201c, + ACTIONS(5505), 1, + anon_sym_u2018, + ACTIONS(5507), 1, + anon_sym_BQUOTE, + ACTIONS(10627), 1, + anon_sym_raise, + ACTIONS(10629), 1, + anon_sym_if, + ACTIONS(10631), 1, + anon_sym_while, + ACTIONS(10633), 1, + anon_sym_case, + ACTIONS(10635), 1, + anon_sym_fn, + STATE(7451), 1, + sym_vid, + STATE(7830), 1, + sym__scon, + STATE(7877), 1, + sym_longvid, + STATE(13467), 1, + sym__exp, + STATE(18911), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5483), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1102), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [340612] = 28, + ACTIONS(5481), 1, + sym_integer_scon, + ACTIONS(5485), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5487), 1, + sym__symbolic_ident, + ACTIONS(5489), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + anon_sym_op, + ACTIONS(5493), 1, + anon_sym_LBRACE, + ACTIONS(5495), 1, + anon_sym_POUND, + ACTIONS(5497), 1, + anon_sym_LBRACK, + ACTIONS(5499), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5501), 1, + anon_sym_let, + ACTIONS(5503), 1, + anon_sym_u201c, + ACTIONS(5505), 1, + anon_sym_u2018, + ACTIONS(5507), 1, + anon_sym_BQUOTE, + ACTIONS(10627), 1, + anon_sym_raise, + ACTIONS(10629), 1, + anon_sym_if, + ACTIONS(10631), 1, + anon_sym_while, + ACTIONS(10633), 1, + anon_sym_case, + ACTIONS(10635), 1, + anon_sym_fn, + STATE(7451), 1, + sym_vid, + STATE(7830), 1, + sym__scon, + STATE(7877), 1, + sym_longvid, + STATE(13418), 1, + sym__exp, + STATE(18911), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5483), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1102), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [340724] = 28, + ACTIONS(5481), 1, + sym_integer_scon, + ACTIONS(5485), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5487), 1, + sym__symbolic_ident, + ACTIONS(5489), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + anon_sym_op, + ACTIONS(5493), 1, + anon_sym_LBRACE, + ACTIONS(5495), 1, + anon_sym_POUND, + ACTIONS(5497), 1, + anon_sym_LBRACK, + ACTIONS(5499), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5501), 1, + anon_sym_let, + ACTIONS(5503), 1, + anon_sym_u201c, + ACTIONS(5505), 1, + anon_sym_u2018, + ACTIONS(5507), 1, + anon_sym_BQUOTE, + ACTIONS(10627), 1, + anon_sym_raise, + ACTIONS(10629), 1, + anon_sym_if, + ACTIONS(10631), 1, + anon_sym_while, + ACTIONS(10633), 1, + anon_sym_case, + ACTIONS(10635), 1, + anon_sym_fn, + STATE(7451), 1, + sym_vid, + STATE(7830), 1, + sym__scon, + STATE(7877), 1, + sym_longvid, + STATE(13419), 1, + sym__exp, + STATE(18911), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5483), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1102), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [340836] = 28, + ACTIONS(5481), 1, + sym_integer_scon, + ACTIONS(5485), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5487), 1, + sym__symbolic_ident, + ACTIONS(5489), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + anon_sym_op, + ACTIONS(5493), 1, + anon_sym_LBRACE, + ACTIONS(5495), 1, + anon_sym_POUND, + ACTIONS(5497), 1, + anon_sym_LBRACK, + ACTIONS(5499), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5501), 1, + anon_sym_let, + ACTIONS(5503), 1, + anon_sym_u201c, + ACTIONS(5505), 1, + anon_sym_u2018, + ACTIONS(5507), 1, + anon_sym_BQUOTE, + ACTIONS(10627), 1, + anon_sym_raise, + ACTIONS(10629), 1, + anon_sym_if, + ACTIONS(10631), 1, + anon_sym_while, + ACTIONS(10633), 1, + anon_sym_case, + ACTIONS(10635), 1, + anon_sym_fn, + STATE(7451), 1, + sym_vid, + STATE(7830), 1, + sym__scon, + STATE(7877), 1, + sym_longvid, + STATE(13421), 1, + sym__exp, + STATE(18911), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5483), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1102), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [340948] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13237), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [341060] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13239), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [341172] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13072), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [341284] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13226), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [341396] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13227), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [341508] = 28, + ACTIONS(1467), 1, + sym_integer_scon, + ACTIONS(1471), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1473), 1, + sym__symbolic_ident, + ACTIONS(1475), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_op, + ACTIONS(1479), 1, + anon_sym_LBRACE, + ACTIONS(1481), 1, + anon_sym_POUND, + ACTIONS(1483), 1, + anon_sym_LBRACK, + ACTIONS(1485), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1487), 1, + anon_sym_let, + ACTIONS(1489), 1, + anon_sym_u201c, + ACTIONS(1491), 1, + anon_sym_u2018, + ACTIONS(1493), 1, + anon_sym_BQUOTE, + ACTIONS(10647), 1, + anon_sym_raise, + ACTIONS(10649), 1, + anon_sym_if, + ACTIONS(10651), 1, + anon_sym_while, + ACTIONS(10653), 1, + anon_sym_case, + ACTIONS(10655), 1, + anon_sym_fn, + STATE(5289), 1, + sym__scon, + STATE(5291), 1, + sym_vid, + STATE(5295), 1, + sym_longvid, + STATE(10289), 1, + sym__exp, + STATE(18842), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1469), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(488), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [341620] = 28, + ACTIONS(1677), 1, + sym_integer_scon, + ACTIONS(1681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1683), 1, + sym__symbolic_ident, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_op, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(1691), 1, + anon_sym_POUND, + ACTIONS(1693), 1, + anon_sym_LBRACK, + ACTIONS(1695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1697), 1, + anon_sym_let, + ACTIONS(1699), 1, + anon_sym_u201c, + ACTIONS(1701), 1, + anon_sym_u2018, + ACTIONS(1703), 1, + anon_sym_BQUOTE, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + ACTIONS(10437), 1, + anon_sym_raise, + ACTIONS(10439), 1, + anon_sym_if, + ACTIONS(10441), 1, + anon_sym_while, + STATE(5518), 1, + sym__scon, + STATE(5519), 1, + sym_longvid, + STATE(5575), 1, + sym_vid, + STATE(12415), 1, + sym__exp, + STATE(19199), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(495), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [341732] = 28, + ACTIONS(5383), 1, + sym_integer_scon, + ACTIONS(5387), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5389), 1, + sym__symbolic_ident, + ACTIONS(5391), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, + anon_sym_op, + ACTIONS(5395), 1, + anon_sym_LBRACE, + ACTIONS(5397), 1, + anon_sym_POUND, + ACTIONS(5399), 1, + anon_sym_LBRACK, + ACTIONS(5401), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5403), 1, + anon_sym_let, + ACTIONS(5405), 1, + anon_sym_u201c, + ACTIONS(5407), 1, + anon_sym_u2018, + ACTIONS(5409), 1, + anon_sym_BQUOTE, + ACTIONS(10657), 1, + anon_sym_raise, + ACTIONS(10659), 1, + anon_sym_if, + ACTIONS(10661), 1, + anon_sym_while, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + STATE(7656), 1, + sym__scon, + STATE(7657), 1, + sym_longvid, + STATE(8034), 1, + sym_vid, + STATE(13513), 1, + sym__exp, + STATE(18922), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5385), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1109), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [341844] = 28, + ACTIONS(5243), 1, + sym_integer_scon, + ACTIONS(5247), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5249), 1, + sym__symbolic_ident, + ACTIONS(5251), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_op, + ACTIONS(5255), 1, + anon_sym_LBRACE, + ACTIONS(5257), 1, + anon_sym_POUND, + ACTIONS(5259), 1, + anon_sym_LBRACK, + ACTIONS(5261), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5263), 1, + anon_sym_let, + ACTIONS(5265), 1, + anon_sym_u201c, + ACTIONS(5267), 1, + anon_sym_u2018, + ACTIONS(5269), 1, + anon_sym_BQUOTE, + ACTIONS(10667), 1, + anon_sym_raise, + ACTIONS(10669), 1, + anon_sym_if, + ACTIONS(10671), 1, + anon_sym_while, + ACTIONS(10673), 1, + anon_sym_case, + ACTIONS(10675), 1, + anon_sym_fn, + STATE(7438), 1, + sym_vid, + STATE(7820), 1, + sym__scon, + STATE(7821), 1, + sym_longvid, + STATE(13468), 1, + sym__exp, + STATE(18958), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5245), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1085), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [341956] = 28, + ACTIONS(10263), 1, + sym_integer_scon, + ACTIONS(10267), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10269), 1, + sym__symbolic_ident, + ACTIONS(10271), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_op, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10277), 1, + anon_sym_POUND, + ACTIONS(10279), 1, + anon_sym_LBRACK, + ACTIONS(10281), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10283), 1, + anon_sym_let, + ACTIONS(10285), 1, + anon_sym_raise, + ACTIONS(10287), 1, + anon_sym_if, + ACTIONS(10289), 1, + anon_sym_while, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10295), 1, + anon_sym_u201c, + ACTIONS(10297), 1, + anon_sym_u2018, + ACTIONS(10299), 1, + anon_sym_BQUOTE, + STATE(10294), 1, + sym_vid, + STATE(10934), 1, + sym__scon, + STATE(10938), 1, + sym_longvid, + STATE(17806), 1, + sym__exp, + STATE(18723), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10265), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4144), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [342068] = 28, + ACTIONS(10263), 1, + sym_integer_scon, + ACTIONS(10267), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10269), 1, + sym__symbolic_ident, + ACTIONS(10271), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_op, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10277), 1, + anon_sym_POUND, + ACTIONS(10279), 1, + anon_sym_LBRACK, + ACTIONS(10281), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10283), 1, + anon_sym_let, + ACTIONS(10285), 1, + anon_sym_raise, + ACTIONS(10287), 1, + anon_sym_if, + ACTIONS(10289), 1, + anon_sym_while, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10295), 1, + anon_sym_u201c, + ACTIONS(10297), 1, + anon_sym_u2018, + ACTIONS(10299), 1, + anon_sym_BQUOTE, + STATE(10294), 1, + sym_vid, + STATE(10934), 1, + sym__scon, + STATE(10938), 1, + sym_longvid, + STATE(17771), 1, + sym__exp, + STATE(18723), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10265), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4144), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [342180] = 28, + ACTIONS(10263), 1, + sym_integer_scon, + ACTIONS(10267), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10269), 1, + sym__symbolic_ident, + ACTIONS(10271), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_op, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10277), 1, + anon_sym_POUND, + ACTIONS(10279), 1, + anon_sym_LBRACK, + ACTIONS(10281), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10283), 1, + anon_sym_let, + ACTIONS(10285), 1, + anon_sym_raise, + ACTIONS(10287), 1, + anon_sym_if, + ACTIONS(10289), 1, + anon_sym_while, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10295), 1, + anon_sym_u201c, + ACTIONS(10297), 1, + anon_sym_u2018, + ACTIONS(10299), 1, + anon_sym_BQUOTE, + STATE(10294), 1, + sym_vid, + STATE(10934), 1, + sym__scon, + STATE(10938), 1, + sym_longvid, + STATE(17854), 1, + sym__exp, + STATE(18723), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10265), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4144), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [342292] = 28, + ACTIONS(10263), 1, + sym_integer_scon, + ACTIONS(10267), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10269), 1, + sym__symbolic_ident, + ACTIONS(10271), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_op, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10277), 1, + anon_sym_POUND, + ACTIONS(10279), 1, + anon_sym_LBRACK, + ACTIONS(10281), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10283), 1, + anon_sym_let, + ACTIONS(10285), 1, + anon_sym_raise, + ACTIONS(10287), 1, + anon_sym_if, + ACTIONS(10289), 1, + anon_sym_while, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10295), 1, + anon_sym_u201c, + ACTIONS(10297), 1, + anon_sym_u2018, + ACTIONS(10299), 1, + anon_sym_BQUOTE, + STATE(10294), 1, + sym_vid, + STATE(10934), 1, + sym__scon, + STATE(10938), 1, + sym_longvid, + STATE(17923), 1, + sym__exp, + STATE(18723), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10265), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4144), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [342404] = 28, + ACTIONS(10263), 1, + sym_integer_scon, + ACTIONS(10267), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10269), 1, + sym__symbolic_ident, + ACTIONS(10271), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_op, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10277), 1, + anon_sym_POUND, + ACTIONS(10279), 1, + anon_sym_LBRACK, + ACTIONS(10281), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10283), 1, + anon_sym_let, + ACTIONS(10285), 1, + anon_sym_raise, + ACTIONS(10287), 1, + anon_sym_if, + ACTIONS(10289), 1, + anon_sym_while, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10295), 1, + anon_sym_u201c, + ACTIONS(10297), 1, + anon_sym_u2018, + ACTIONS(10299), 1, + anon_sym_BQUOTE, + STATE(10294), 1, + sym_vid, + STATE(10934), 1, + sym__scon, + STATE(10938), 1, + sym_longvid, + STATE(17924), 1, + sym__exp, + STATE(18723), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10265), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4144), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [342516] = 28, + ACTIONS(10351), 1, + sym_integer_scon, + ACTIONS(10355), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10357), 1, + sym__symbolic_ident, + ACTIONS(10359), 1, + anon_sym_LPAREN, + ACTIONS(10361), 1, + anon_sym_op, + ACTIONS(10363), 1, + anon_sym_LBRACE, + ACTIONS(10365), 1, + anon_sym_POUND, + ACTIONS(10367), 1, + anon_sym_LBRACK, + ACTIONS(10369), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10371), 1, + anon_sym_let, + ACTIONS(10373), 1, + anon_sym_raise, + ACTIONS(10375), 1, + anon_sym_if, + ACTIONS(10377), 1, + anon_sym_while, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(10383), 1, + anon_sym_u201c, + ACTIONS(10385), 1, + anon_sym_u2018, + ACTIONS(10387), 1, + anon_sym_BQUOTE, + STATE(9031), 1, + sym__scon, + STATE(9035), 1, + sym_longvid, + STATE(9077), 1, + sym_vid, + STATE(15702), 1, + sym__exp, + STATE(18749), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10353), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4088), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [342628] = 28, + ACTIONS(10313), 1, + sym_integer_scon, + ACTIONS(10317), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10319), 1, + sym__symbolic_ident, + ACTIONS(10321), 1, + anon_sym_LPAREN, + ACTIONS(10323), 1, + anon_sym_op, + ACTIONS(10325), 1, + anon_sym_LBRACE, + ACTIONS(10327), 1, + anon_sym_POUND, + ACTIONS(10329), 1, + anon_sym_LBRACK, + ACTIONS(10331), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10333), 1, + anon_sym_let, + ACTIONS(10335), 1, + anon_sym_raise, + ACTIONS(10337), 1, + anon_sym_if, + ACTIONS(10339), 1, + anon_sym_while, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(10345), 1, + anon_sym_u201c, + ACTIONS(10347), 1, + anon_sym_u2018, + ACTIONS(10349), 1, + anon_sym_BQUOTE, + STATE(10089), 1, + sym__scon, + STATE(10090), 1, + sym_longvid, + STATE(10314), 1, + sym_vid, + STATE(17817), 1, + sym__exp, + STATE(18920), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10315), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4130), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [342740] = 28, + ACTIONS(10313), 1, + sym_integer_scon, + ACTIONS(10317), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10319), 1, + sym__symbolic_ident, + ACTIONS(10321), 1, + anon_sym_LPAREN, + ACTIONS(10323), 1, + anon_sym_op, + ACTIONS(10325), 1, + anon_sym_LBRACE, + ACTIONS(10327), 1, + anon_sym_POUND, + ACTIONS(10329), 1, + anon_sym_LBRACK, + ACTIONS(10331), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10333), 1, + anon_sym_let, + ACTIONS(10335), 1, + anon_sym_raise, + ACTIONS(10337), 1, + anon_sym_if, + ACTIONS(10339), 1, + anon_sym_while, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(10345), 1, + anon_sym_u201c, + ACTIONS(10347), 1, + anon_sym_u2018, + ACTIONS(10349), 1, + anon_sym_BQUOTE, + STATE(10089), 1, + sym__scon, + STATE(10090), 1, + sym_longvid, + STATE(10314), 1, + sym_vid, + STATE(17780), 1, + sym__exp, + STATE(18920), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10315), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4130), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [342852] = 28, + ACTIONS(10313), 1, + sym_integer_scon, + ACTIONS(10317), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10319), 1, + sym__symbolic_ident, + ACTIONS(10321), 1, + anon_sym_LPAREN, + ACTIONS(10323), 1, + anon_sym_op, + ACTIONS(10325), 1, + anon_sym_LBRACE, + ACTIONS(10327), 1, + anon_sym_POUND, + ACTIONS(10329), 1, + anon_sym_LBRACK, + ACTIONS(10331), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10333), 1, + anon_sym_let, + ACTIONS(10335), 1, + anon_sym_raise, + ACTIONS(10337), 1, + anon_sym_if, + ACTIONS(10339), 1, + anon_sym_while, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(10345), 1, + anon_sym_u201c, + ACTIONS(10347), 1, + anon_sym_u2018, + ACTIONS(10349), 1, + anon_sym_BQUOTE, + STATE(10089), 1, + sym__scon, + STATE(10090), 1, + sym_longvid, + STATE(10314), 1, + sym_vid, + STATE(17861), 1, + sym__exp, + STATE(18920), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10315), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4130), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [342964] = 28, + ACTIONS(10313), 1, + sym_integer_scon, + ACTIONS(10317), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10319), 1, + sym__symbolic_ident, + ACTIONS(10321), 1, + anon_sym_LPAREN, + ACTIONS(10323), 1, + anon_sym_op, + ACTIONS(10325), 1, + anon_sym_LBRACE, + ACTIONS(10327), 1, + anon_sym_POUND, + ACTIONS(10329), 1, + anon_sym_LBRACK, + ACTIONS(10331), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10333), 1, + anon_sym_let, + ACTIONS(10335), 1, + anon_sym_raise, + ACTIONS(10337), 1, + anon_sym_if, + ACTIONS(10339), 1, + anon_sym_while, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(10345), 1, + anon_sym_u201c, + ACTIONS(10347), 1, + anon_sym_u2018, + ACTIONS(10349), 1, + anon_sym_BQUOTE, + STATE(10089), 1, + sym__scon, + STATE(10090), 1, + sym_longvid, + STATE(10314), 1, + sym_vid, + STATE(17938), 1, + sym__exp, + STATE(18920), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10315), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4130), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [343076] = 28, + ACTIONS(10313), 1, + sym_integer_scon, + ACTIONS(10317), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10319), 1, + sym__symbolic_ident, + ACTIONS(10321), 1, + anon_sym_LPAREN, + ACTIONS(10323), 1, + anon_sym_op, + ACTIONS(10325), 1, + anon_sym_LBRACE, + ACTIONS(10327), 1, + anon_sym_POUND, + ACTIONS(10329), 1, + anon_sym_LBRACK, + ACTIONS(10331), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10333), 1, + anon_sym_let, + ACTIONS(10335), 1, + anon_sym_raise, + ACTIONS(10337), 1, + anon_sym_if, + ACTIONS(10339), 1, + anon_sym_while, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(10345), 1, + anon_sym_u201c, + ACTIONS(10347), 1, + anon_sym_u2018, + ACTIONS(10349), 1, + anon_sym_BQUOTE, + STATE(10089), 1, + sym__scon, + STATE(10090), 1, + sym_longvid, + STATE(10314), 1, + sym_vid, + STATE(17939), 1, + sym__exp, + STATE(18920), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10315), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4130), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [343188] = 28, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10677), 1, + sym_integer_scon, + ACTIONS(10681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10683), 1, + sym__symbolic_ident, + ACTIONS(10685), 1, + anon_sym_LPAREN, + ACTIONS(10687), 1, + anon_sym_op, + ACTIONS(10689), 1, + anon_sym_LBRACE, + ACTIONS(10691), 1, + anon_sym_POUND, + ACTIONS(10693), 1, + anon_sym_LBRACK, + ACTIONS(10695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10697), 1, + anon_sym_let, + ACTIONS(10699), 1, + anon_sym_raise, + ACTIONS(10701), 1, + anon_sym_if, + ACTIONS(10703), 1, + anon_sym_while, + ACTIONS(10705), 1, + anon_sym_u201c, + ACTIONS(10707), 1, + anon_sym_u2018, + ACTIONS(10709), 1, + anon_sym_BQUOTE, + STATE(8959), 1, + sym_vid, + STATE(9045), 1, + sym__scon, + STATE(9046), 1, + sym_longvid, + STATE(16239), 1, + sym__exp, + STATE(18752), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4089), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [343300] = 28, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10677), 1, + sym_integer_scon, + ACTIONS(10681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10683), 1, + sym__symbolic_ident, + ACTIONS(10685), 1, + anon_sym_LPAREN, + ACTIONS(10687), 1, + anon_sym_op, + ACTIONS(10689), 1, + anon_sym_LBRACE, + ACTIONS(10691), 1, + anon_sym_POUND, + ACTIONS(10693), 1, + anon_sym_LBRACK, + ACTIONS(10695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10697), 1, + anon_sym_let, + ACTIONS(10699), 1, + anon_sym_raise, + ACTIONS(10701), 1, + anon_sym_if, + ACTIONS(10703), 1, + anon_sym_while, + ACTIONS(10705), 1, + anon_sym_u201c, + ACTIONS(10707), 1, + anon_sym_u2018, + ACTIONS(10709), 1, + anon_sym_BQUOTE, + STATE(8959), 1, + sym_vid, + STATE(9045), 1, + sym__scon, + STATE(9046), 1, + sym_longvid, + STATE(16253), 1, + sym__exp, + STATE(18752), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4089), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [343412] = 28, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10677), 1, + sym_integer_scon, + ACTIONS(10681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10683), 1, + sym__symbolic_ident, + ACTIONS(10685), 1, + anon_sym_LPAREN, + ACTIONS(10687), 1, + anon_sym_op, + ACTIONS(10689), 1, + anon_sym_LBRACE, + ACTIONS(10691), 1, + anon_sym_POUND, + ACTIONS(10693), 1, + anon_sym_LBRACK, + ACTIONS(10695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10697), 1, + anon_sym_let, + ACTIONS(10699), 1, + anon_sym_raise, + ACTIONS(10701), 1, + anon_sym_if, + ACTIONS(10703), 1, + anon_sym_while, + ACTIONS(10705), 1, + anon_sym_u201c, + ACTIONS(10707), 1, + anon_sym_u2018, + ACTIONS(10709), 1, + anon_sym_BQUOTE, + STATE(8959), 1, + sym_vid, + STATE(9045), 1, + sym__scon, + STATE(9046), 1, + sym_longvid, + STATE(15889), 1, + sym__exp, + STATE(18752), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4089), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [343524] = 28, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10677), 1, + sym_integer_scon, + ACTIONS(10681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10683), 1, + sym__symbolic_ident, + ACTIONS(10685), 1, + anon_sym_LPAREN, + ACTIONS(10687), 1, + anon_sym_op, + ACTIONS(10689), 1, + anon_sym_LBRACE, + ACTIONS(10691), 1, + anon_sym_POUND, + ACTIONS(10693), 1, + anon_sym_LBRACK, + ACTIONS(10695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10697), 1, + anon_sym_let, + ACTIONS(10699), 1, + anon_sym_raise, + ACTIONS(10701), 1, + anon_sym_if, + ACTIONS(10703), 1, + anon_sym_while, + ACTIONS(10705), 1, + anon_sym_u201c, + ACTIONS(10707), 1, + anon_sym_u2018, + ACTIONS(10709), 1, + anon_sym_BQUOTE, + STATE(8959), 1, + sym_vid, + STATE(9045), 1, + sym__scon, + STATE(9046), 1, + sym_longvid, + STATE(15894), 1, + sym__exp, + STATE(18752), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4089), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [343636] = 28, + ACTIONS(1145), 1, + sym_integer_scon, + ACTIONS(1149), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1151), 1, + sym__symbolic_ident, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_op, + ACTIONS(1157), 1, + anon_sym_LBRACE, + ACTIONS(1159), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + anon_sym_LBRACK, + ACTIONS(1163), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1165), 1, + anon_sym_let, + ACTIONS(1167), 1, + anon_sym_u201c, + ACTIONS(1169), 1, + anon_sym_u2018, + ACTIONS(1171), 1, + anon_sym_BQUOTE, + ACTIONS(10711), 1, + anon_sym_raise, + ACTIONS(10713), 1, + anon_sym_if, + ACTIONS(10715), 1, + anon_sym_while, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + STATE(4294), 1, + sym__scon, + STATE(4295), 1, + sym_longvid, + STATE(4558), 1, + sym_vid, + STATE(9187), 1, + sym__exp, + STATE(19170), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1147), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(472), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [343748] = 28, + ACTIONS(1145), 1, + sym_integer_scon, + ACTIONS(1149), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1151), 1, + sym__symbolic_ident, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_op, + ACTIONS(1157), 1, + anon_sym_LBRACE, + ACTIONS(1159), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + anon_sym_LBRACK, + ACTIONS(1163), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1165), 1, + anon_sym_let, + ACTIONS(1167), 1, + anon_sym_u201c, + ACTIONS(1169), 1, + anon_sym_u2018, + ACTIONS(1171), 1, + anon_sym_BQUOTE, + ACTIONS(10711), 1, + anon_sym_raise, + ACTIONS(10713), 1, + anon_sym_if, + ACTIONS(10715), 1, + anon_sym_while, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + STATE(4294), 1, + sym__scon, + STATE(4295), 1, + sym_longvid, + STATE(4558), 1, + sym_vid, + STATE(9222), 1, + sym__exp, + STATE(19170), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1147), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(472), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [343860] = 28, + ACTIONS(1145), 1, + sym_integer_scon, + ACTIONS(1149), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1151), 1, + sym__symbolic_ident, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_op, + ACTIONS(1157), 1, + anon_sym_LBRACE, + ACTIONS(1159), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + anon_sym_LBRACK, + ACTIONS(1163), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1165), 1, + anon_sym_let, + ACTIONS(1167), 1, + anon_sym_u201c, + ACTIONS(1169), 1, + anon_sym_u2018, + ACTIONS(1171), 1, + anon_sym_BQUOTE, + ACTIONS(10711), 1, + anon_sym_raise, + ACTIONS(10713), 1, + anon_sym_if, + ACTIONS(10715), 1, + anon_sym_while, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + STATE(4294), 1, + sym__scon, + STATE(4295), 1, + sym_longvid, + STATE(4558), 1, + sym_vid, + STATE(9408), 1, + sym__exp, + STATE(19170), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1147), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(472), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [343972] = 28, + ACTIONS(1145), 1, + sym_integer_scon, + ACTIONS(1149), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1151), 1, + sym__symbolic_ident, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_op, + ACTIONS(1157), 1, + anon_sym_LBRACE, + ACTIONS(1159), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + anon_sym_LBRACK, + ACTIONS(1163), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1165), 1, + anon_sym_let, + ACTIONS(1167), 1, + anon_sym_u201c, + ACTIONS(1169), 1, + anon_sym_u2018, + ACTIONS(1171), 1, + anon_sym_BQUOTE, + ACTIONS(10711), 1, + anon_sym_raise, + ACTIONS(10713), 1, + anon_sym_if, + ACTIONS(10715), 1, + anon_sym_while, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + STATE(4294), 1, + sym__scon, + STATE(4295), 1, + sym_longvid, + STATE(4558), 1, + sym_vid, + STATE(9409), 1, + sym__exp, + STATE(19170), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1147), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(472), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [344084] = 28, + ACTIONS(1145), 1, + sym_integer_scon, + ACTIONS(1149), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1151), 1, + sym__symbolic_ident, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_op, + ACTIONS(1157), 1, + anon_sym_LBRACE, + ACTIONS(1159), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + anon_sym_LBRACK, + ACTIONS(1163), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1165), 1, + anon_sym_let, + ACTIONS(1167), 1, + anon_sym_u201c, + ACTIONS(1169), 1, + anon_sym_u2018, + ACTIONS(1171), 1, + anon_sym_BQUOTE, + ACTIONS(10711), 1, + anon_sym_raise, + ACTIONS(10713), 1, + anon_sym_if, + ACTIONS(10715), 1, + anon_sym_while, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + STATE(4294), 1, + sym__scon, + STATE(4295), 1, + sym_longvid, + STATE(4558), 1, + sym_vid, + STATE(9410), 1, + sym__exp, + STATE(19170), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1147), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(472), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [344196] = 28, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10677), 1, + sym_integer_scon, + ACTIONS(10681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10683), 1, + sym__symbolic_ident, + ACTIONS(10685), 1, + anon_sym_LPAREN, + ACTIONS(10687), 1, + anon_sym_op, + ACTIONS(10689), 1, + anon_sym_LBRACE, + ACTIONS(10691), 1, + anon_sym_POUND, + ACTIONS(10693), 1, + anon_sym_LBRACK, + ACTIONS(10695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10697), 1, + anon_sym_let, + ACTIONS(10699), 1, + anon_sym_raise, + ACTIONS(10701), 1, + anon_sym_if, + ACTIONS(10703), 1, + anon_sym_while, + ACTIONS(10705), 1, + anon_sym_u201c, + ACTIONS(10707), 1, + anon_sym_u2018, + ACTIONS(10709), 1, + anon_sym_BQUOTE, + STATE(8959), 1, + sym_vid, + STATE(9045), 1, + sym__scon, + STATE(9046), 1, + sym_longvid, + STATE(15896), 1, + sym__exp, + STATE(18752), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4089), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [344308] = 28, + ACTIONS(2945), 1, + sym_integer_scon, + ACTIONS(2949), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2951), 1, + sym__symbolic_ident, + ACTIONS(2953), 1, + anon_sym_LPAREN, + ACTIONS(2955), 1, + anon_sym_op, + ACTIONS(2957), 1, + anon_sym_LBRACE, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(2961), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2965), 1, + anon_sym_let, + ACTIONS(2967), 1, + anon_sym_u201c, + ACTIONS(2969), 1, + anon_sym_u2018, + ACTIONS(2971), 1, + anon_sym_BQUOTE, + ACTIONS(10721), 1, + anon_sym_raise, + ACTIONS(10723), 1, + anon_sym_if, + ACTIONS(10725), 1, + anon_sym_while, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + STATE(6771), 1, + sym__scon, + STATE(6772), 1, + sym_longvid, + STATE(6887), 1, + sym_vid, + STATE(13242), 1, + sym__exp, + STATE(19207), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2947), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(549), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [344420] = 28, + ACTIONS(3155), 1, + sym_integer_scon, + ACTIONS(3159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3161), 1, + sym__symbolic_ident, + ACTIONS(3163), 1, + anon_sym_LPAREN, + ACTIONS(3165), 1, + anon_sym_op, + ACTIONS(3167), 1, + anon_sym_LBRACE, + ACTIONS(3169), 1, + anon_sym_POUND, + ACTIONS(3171), 1, + anon_sym_LBRACK, + ACTIONS(3173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3175), 1, + anon_sym_let, + ACTIONS(3177), 1, + anon_sym_u201c, + ACTIONS(3179), 1, + anon_sym_u2018, + ACTIONS(3181), 1, + anon_sym_BQUOTE, + ACTIONS(10731), 1, + anon_sym_raise, + ACTIONS(10733), 1, + anon_sym_if, + ACTIONS(10735), 1, + anon_sym_while, + ACTIONS(10737), 1, + anon_sym_case, + ACTIONS(10739), 1, + anon_sym_fn, + STATE(6825), 1, + sym__scon, + STATE(6826), 1, + sym_longvid, + STATE(6891), 1, + sym_vid, + STATE(13243), 1, + sym__exp, + STATE(18907), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(558), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [344532] = 28, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10741), 1, + sym_integer_scon, + ACTIONS(10745), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10747), 1, + sym__symbolic_ident, + ACTIONS(10749), 1, + anon_sym_LPAREN, + ACTIONS(10751), 1, + anon_sym_op, + ACTIONS(10753), 1, + anon_sym_LBRACE, + ACTIONS(10755), 1, + anon_sym_POUND, + ACTIONS(10757), 1, + anon_sym_LBRACK, + ACTIONS(10759), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10761), 1, + anon_sym_let, + ACTIONS(10763), 1, + anon_sym_raise, + ACTIONS(10765), 1, + anon_sym_if, + ACTIONS(10767), 1, + anon_sym_while, + ACTIONS(10769), 1, + anon_sym_u201c, + ACTIONS(10771), 1, + anon_sym_u2018, + ACTIONS(10773), 1, + anon_sym_BQUOTE, + STATE(10197), 1, + sym__scon, + STATE(10198), 1, + sym_longvid, + STATE(10359), 1, + sym_vid, + STATE(17845), 1, + sym__exp, + STATE(18857), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10743), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4148), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [344644] = 28, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10741), 1, + sym_integer_scon, + ACTIONS(10745), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10747), 1, + sym__symbolic_ident, + ACTIONS(10749), 1, + anon_sym_LPAREN, + ACTIONS(10751), 1, + anon_sym_op, + ACTIONS(10753), 1, + anon_sym_LBRACE, + ACTIONS(10755), 1, + anon_sym_POUND, + ACTIONS(10757), 1, + anon_sym_LBRACK, + ACTIONS(10759), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10761), 1, + anon_sym_let, + ACTIONS(10763), 1, + anon_sym_raise, + ACTIONS(10765), 1, + anon_sym_if, + ACTIONS(10767), 1, + anon_sym_while, + ACTIONS(10769), 1, + anon_sym_u201c, + ACTIONS(10771), 1, + anon_sym_u2018, + ACTIONS(10773), 1, + anon_sym_BQUOTE, + STATE(10197), 1, + sym__scon, + STATE(10198), 1, + sym_longvid, + STATE(10359), 1, + sym_vid, + STATE(17792), 1, + sym__exp, + STATE(18857), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10743), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4148), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [344756] = 28, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10741), 1, + sym_integer_scon, + ACTIONS(10745), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10747), 1, + sym__symbolic_ident, + ACTIONS(10749), 1, + anon_sym_LPAREN, + ACTIONS(10751), 1, + anon_sym_op, + ACTIONS(10753), 1, + anon_sym_LBRACE, + ACTIONS(10755), 1, + anon_sym_POUND, + ACTIONS(10757), 1, + anon_sym_LBRACK, + ACTIONS(10759), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10761), 1, + anon_sym_let, + ACTIONS(10763), 1, + anon_sym_raise, + ACTIONS(10765), 1, + anon_sym_if, + ACTIONS(10767), 1, + anon_sym_while, + ACTIONS(10769), 1, + anon_sym_u201c, + ACTIONS(10771), 1, + anon_sym_u2018, + ACTIONS(10773), 1, + anon_sym_BQUOTE, + STATE(10197), 1, + sym__scon, + STATE(10198), 1, + sym_longvid, + STATE(10359), 1, + sym_vid, + STATE(17868), 1, + sym__exp, + STATE(18857), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10743), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4148), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [344868] = 28, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10741), 1, + sym_integer_scon, + ACTIONS(10745), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10747), 1, + sym__symbolic_ident, + ACTIONS(10749), 1, + anon_sym_LPAREN, + ACTIONS(10751), 1, + anon_sym_op, + ACTIONS(10753), 1, + anon_sym_LBRACE, + ACTIONS(10755), 1, + anon_sym_POUND, + ACTIONS(10757), 1, + anon_sym_LBRACK, + ACTIONS(10759), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10761), 1, + anon_sym_let, + ACTIONS(10763), 1, + anon_sym_raise, + ACTIONS(10765), 1, + anon_sym_if, + ACTIONS(10767), 1, + anon_sym_while, + ACTIONS(10769), 1, + anon_sym_u201c, + ACTIONS(10771), 1, + anon_sym_u2018, + ACTIONS(10773), 1, + anon_sym_BQUOTE, + STATE(10197), 1, + sym__scon, + STATE(10198), 1, + sym_longvid, + STATE(10359), 1, + sym_vid, + STATE(17703), 1, + sym__exp, + STATE(18857), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10743), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4148), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [344980] = 28, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10741), 1, + sym_integer_scon, + ACTIONS(10745), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10747), 1, + sym__symbolic_ident, + ACTIONS(10749), 1, + anon_sym_LPAREN, + ACTIONS(10751), 1, + anon_sym_op, + ACTIONS(10753), 1, + anon_sym_LBRACE, + ACTIONS(10755), 1, + anon_sym_POUND, + ACTIONS(10757), 1, + anon_sym_LBRACK, + ACTIONS(10759), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10761), 1, + anon_sym_let, + ACTIONS(10763), 1, + anon_sym_raise, + ACTIONS(10765), 1, + anon_sym_if, + ACTIONS(10767), 1, + anon_sym_while, + ACTIONS(10769), 1, + anon_sym_u201c, + ACTIONS(10771), 1, + anon_sym_u2018, + ACTIONS(10773), 1, + anon_sym_BQUOTE, + STATE(10197), 1, + sym__scon, + STATE(10198), 1, + sym_longvid, + STATE(10359), 1, + sym_vid, + STATE(17704), 1, + sym__exp, + STATE(18857), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10743), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4148), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [345092] = 28, + ACTIONS(967), 1, + sym_integer_scon, + ACTIONS(971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(973), 1, + sym__symbolic_ident, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, + anon_sym_op, + ACTIONS(979), 1, + anon_sym_LBRACE, + ACTIONS(983), 1, + anon_sym_POUND, + ACTIONS(985), 1, + anon_sym_LBRACK, + ACTIONS(987), 1, + anon_sym_POUND_LBRACK, + ACTIONS(989), 1, + anon_sym_let, + ACTIONS(991), 1, + anon_sym_u201c, + ACTIONS(993), 1, + anon_sym_u2018, + ACTIONS(995), 1, + anon_sym_BQUOTE, + ACTIONS(10775), 1, + anon_sym_raise, + ACTIONS(10777), 1, + anon_sym_if, + ACTIONS(10779), 1, + anon_sym_while, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + STATE(4229), 1, + sym_vid, + STATE(4233), 1, + sym__scon, + STATE(4234), 1, + sym_longvid, + STATE(9019), 1, + sym__exp, + STATE(19087), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(465), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [345204] = 28, + ACTIONS(967), 1, + sym_integer_scon, + ACTIONS(971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(973), 1, + sym__symbolic_ident, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, + anon_sym_op, + ACTIONS(979), 1, + anon_sym_LBRACE, + ACTIONS(983), 1, + anon_sym_POUND, + ACTIONS(985), 1, + anon_sym_LBRACK, + ACTIONS(987), 1, + anon_sym_POUND_LBRACK, + ACTIONS(989), 1, + anon_sym_let, + ACTIONS(991), 1, + anon_sym_u201c, + ACTIONS(993), 1, + anon_sym_u2018, + ACTIONS(995), 1, + anon_sym_BQUOTE, + ACTIONS(10775), 1, + anon_sym_raise, + ACTIONS(10777), 1, + anon_sym_if, + ACTIONS(10779), 1, + anon_sym_while, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + STATE(4229), 1, + sym_vid, + STATE(4233), 1, + sym__scon, + STATE(4234), 1, + sym_longvid, + STATE(9033), 1, + sym__exp, + STATE(19087), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(465), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [345316] = 28, + ACTIONS(967), 1, + sym_integer_scon, + ACTIONS(971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(973), 1, + sym__symbolic_ident, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, + anon_sym_op, + ACTIONS(979), 1, + anon_sym_LBRACE, + ACTIONS(983), 1, + anon_sym_POUND, + ACTIONS(985), 1, + anon_sym_LBRACK, + ACTIONS(987), 1, + anon_sym_POUND_LBRACK, + ACTIONS(989), 1, + anon_sym_let, + ACTIONS(991), 1, + anon_sym_u201c, + ACTIONS(993), 1, + anon_sym_u2018, + ACTIONS(995), 1, + anon_sym_BQUOTE, + ACTIONS(10775), 1, + anon_sym_raise, + ACTIONS(10777), 1, + anon_sym_if, + ACTIONS(10779), 1, + anon_sym_while, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + STATE(4229), 1, + sym_vid, + STATE(4233), 1, + sym__scon, + STATE(4234), 1, + sym_longvid, + STATE(9005), 1, + sym__exp, + STATE(19087), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(465), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [345428] = 28, + ACTIONS(967), 1, + sym_integer_scon, + ACTIONS(971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(973), 1, + sym__symbolic_ident, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, + anon_sym_op, + ACTIONS(979), 1, + anon_sym_LBRACE, + ACTIONS(983), 1, + anon_sym_POUND, + ACTIONS(985), 1, + anon_sym_LBRACK, + ACTIONS(987), 1, + anon_sym_POUND_LBRACK, + ACTIONS(989), 1, + anon_sym_let, + ACTIONS(991), 1, + anon_sym_u201c, + ACTIONS(993), 1, + anon_sym_u2018, + ACTIONS(995), 1, + anon_sym_BQUOTE, + ACTIONS(10775), 1, + anon_sym_raise, + ACTIONS(10777), 1, + anon_sym_if, + ACTIONS(10779), 1, + anon_sym_while, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + STATE(4229), 1, + sym_vid, + STATE(4233), 1, + sym__scon, + STATE(4234), 1, + sym_longvid, + STATE(9006), 1, + sym__exp, + STATE(19087), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(465), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [345540] = 28, + ACTIONS(967), 1, + sym_integer_scon, + ACTIONS(971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(973), 1, + sym__symbolic_ident, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, + anon_sym_op, + ACTIONS(979), 1, + anon_sym_LBRACE, + ACTIONS(983), 1, + anon_sym_POUND, + ACTIONS(985), 1, + anon_sym_LBRACK, + ACTIONS(987), 1, + anon_sym_POUND_LBRACK, + ACTIONS(989), 1, + anon_sym_let, + ACTIONS(991), 1, + anon_sym_u201c, + ACTIONS(993), 1, + anon_sym_u2018, + ACTIONS(995), 1, + anon_sym_BQUOTE, + ACTIONS(10775), 1, + anon_sym_raise, + ACTIONS(10777), 1, + anon_sym_if, + ACTIONS(10779), 1, + anon_sym_while, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + STATE(4229), 1, + sym_vid, + STATE(4233), 1, + sym__scon, + STATE(4234), 1, + sym_longvid, + STATE(9007), 1, + sym__exp, + STATE(19087), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(465), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [345652] = 28, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(10785), 1, + sym_integer_scon, + ACTIONS(10789), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10791), 1, + sym__symbolic_ident, + ACTIONS(10793), 1, + anon_sym_LPAREN, + ACTIONS(10795), 1, + anon_sym_op, + ACTIONS(10797), 1, + anon_sym_LBRACE, + ACTIONS(10799), 1, + anon_sym_POUND, + ACTIONS(10801), 1, + anon_sym_LBRACK, + ACTIONS(10803), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10805), 1, + anon_sym_let, + ACTIONS(10807), 1, + anon_sym_raise, + ACTIONS(10809), 1, + anon_sym_if, + ACTIONS(10811), 1, + anon_sym_while, + ACTIONS(10813), 1, + anon_sym_u201c, + ACTIONS(10815), 1, + anon_sym_u2018, + ACTIONS(10817), 1, + anon_sym_BQUOTE, + STATE(8961), 1, + sym_vid, + STATE(9111), 1, + sym__scon, + STATE(9112), 1, + sym_longvid, + STATE(16248), 1, + sym__exp, + STATE(18849), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10787), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4087), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [345764] = 28, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(10785), 1, + sym_integer_scon, + ACTIONS(10789), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10791), 1, + sym__symbolic_ident, + ACTIONS(10793), 1, + anon_sym_LPAREN, + ACTIONS(10795), 1, + anon_sym_op, + ACTIONS(10797), 1, + anon_sym_LBRACE, + ACTIONS(10799), 1, + anon_sym_POUND, + ACTIONS(10801), 1, + anon_sym_LBRACK, + ACTIONS(10803), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10805), 1, + anon_sym_let, + ACTIONS(10807), 1, + anon_sym_raise, + ACTIONS(10809), 1, + anon_sym_if, + ACTIONS(10811), 1, + anon_sym_while, + ACTIONS(10813), 1, + anon_sym_u201c, + ACTIONS(10815), 1, + anon_sym_u2018, + ACTIONS(10817), 1, + anon_sym_BQUOTE, + STATE(8961), 1, + sym_vid, + STATE(9111), 1, + sym__scon, + STATE(9112), 1, + sym_longvid, + STATE(16270), 1, + sym__exp, + STATE(18849), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10787), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4087), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [345876] = 28, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(10785), 1, + sym_integer_scon, + ACTIONS(10789), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10791), 1, + sym__symbolic_ident, + ACTIONS(10793), 1, + anon_sym_LPAREN, + ACTIONS(10795), 1, + anon_sym_op, + ACTIONS(10797), 1, + anon_sym_LBRACE, + ACTIONS(10799), 1, + anon_sym_POUND, + ACTIONS(10801), 1, + anon_sym_LBRACK, + ACTIONS(10803), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10805), 1, + anon_sym_let, + ACTIONS(10807), 1, + anon_sym_raise, + ACTIONS(10809), 1, + anon_sym_if, + ACTIONS(10811), 1, + anon_sym_while, + ACTIONS(10813), 1, + anon_sym_u201c, + ACTIONS(10815), 1, + anon_sym_u2018, + ACTIONS(10817), 1, + anon_sym_BQUOTE, + STATE(8961), 1, + sym_vid, + STATE(9111), 1, + sym__scon, + STATE(9112), 1, + sym_longvid, + STATE(16107), 1, + sym__exp, + STATE(18849), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10787), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4087), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [345988] = 28, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(10785), 1, + sym_integer_scon, + ACTIONS(10789), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10791), 1, + sym__symbolic_ident, + ACTIONS(10793), 1, + anon_sym_LPAREN, + ACTIONS(10795), 1, + anon_sym_op, + ACTIONS(10797), 1, + anon_sym_LBRACE, + ACTIONS(10799), 1, + anon_sym_POUND, + ACTIONS(10801), 1, + anon_sym_LBRACK, + ACTIONS(10803), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10805), 1, + anon_sym_let, + ACTIONS(10807), 1, + anon_sym_raise, + ACTIONS(10809), 1, + anon_sym_if, + ACTIONS(10811), 1, + anon_sym_while, + ACTIONS(10813), 1, + anon_sym_u201c, + ACTIONS(10815), 1, + anon_sym_u2018, + ACTIONS(10817), 1, + anon_sym_BQUOTE, + STATE(8961), 1, + sym_vid, + STATE(9111), 1, + sym__scon, + STATE(9112), 1, + sym_longvid, + STATE(15900), 1, + sym__exp, + STATE(18849), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10787), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4087), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [346100] = 28, + ACTIONS(2503), 1, + sym_integer_scon, + ACTIONS(2507), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2509), 1, + sym__symbolic_ident, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + anon_sym_op, + ACTIONS(2515), 1, + anon_sym_LBRACE, + ACTIONS(2517), 1, + anon_sym_POUND, + ACTIONS(2519), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2523), 1, + anon_sym_let, + ACTIONS(2525), 1, + anon_sym_u201c, + ACTIONS(2527), 1, + anon_sym_u2018, + ACTIONS(2529), 1, + anon_sym_BQUOTE, + ACTIONS(10819), 1, + anon_sym_raise, + ACTIONS(10821), 1, + anon_sym_if, + ACTIONS(10823), 1, + anon_sym_while, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + STATE(6193), 1, + sym__scon, + STATE(6194), 1, + sym_longvid, + STATE(6370), 1, + sym_vid, + STATE(12762), 1, + sym__exp, + STATE(19132), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2505), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(529), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [346212] = 28, + ACTIONS(2503), 1, + sym_integer_scon, + ACTIONS(2507), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2509), 1, + sym__symbolic_ident, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + anon_sym_op, + ACTIONS(2515), 1, + anon_sym_LBRACE, + ACTIONS(2517), 1, + anon_sym_POUND, + ACTIONS(2519), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2523), 1, + anon_sym_let, + ACTIONS(2525), 1, + anon_sym_u201c, + ACTIONS(2527), 1, + anon_sym_u2018, + ACTIONS(2529), 1, + anon_sym_BQUOTE, + ACTIONS(10819), 1, + anon_sym_raise, + ACTIONS(10821), 1, + anon_sym_if, + ACTIONS(10823), 1, + anon_sym_while, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + STATE(6193), 1, + sym__scon, + STATE(6194), 1, + sym_longvid, + STATE(6370), 1, + sym_vid, + STATE(12763), 1, + sym__exp, + STATE(19132), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2505), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(529), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [346324] = 28, + ACTIONS(2503), 1, + sym_integer_scon, + ACTIONS(2507), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2509), 1, + sym__symbolic_ident, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + anon_sym_op, + ACTIONS(2515), 1, + anon_sym_LBRACE, + ACTIONS(2517), 1, + anon_sym_POUND, + ACTIONS(2519), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2523), 1, + anon_sym_let, + ACTIONS(2525), 1, + anon_sym_u201c, + ACTIONS(2527), 1, + anon_sym_u2018, + ACTIONS(2529), 1, + anon_sym_BQUOTE, + ACTIONS(10819), 1, + anon_sym_raise, + ACTIONS(10821), 1, + anon_sym_if, + ACTIONS(10823), 1, + anon_sym_while, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + STATE(6193), 1, + sym__scon, + STATE(6194), 1, + sym_longvid, + STATE(6370), 1, + sym_vid, + STATE(12853), 1, + sym__exp, + STATE(19132), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2505), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(529), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [346436] = 28, + ACTIONS(2503), 1, + sym_integer_scon, + ACTIONS(2507), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2509), 1, + sym__symbolic_ident, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + anon_sym_op, + ACTIONS(2515), 1, + anon_sym_LBRACE, + ACTIONS(2517), 1, + anon_sym_POUND, + ACTIONS(2519), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2523), 1, + anon_sym_let, + ACTIONS(2525), 1, + anon_sym_u201c, + ACTIONS(2527), 1, + anon_sym_u2018, + ACTIONS(2529), 1, + anon_sym_BQUOTE, + ACTIONS(10819), 1, + anon_sym_raise, + ACTIONS(10821), 1, + anon_sym_if, + ACTIONS(10823), 1, + anon_sym_while, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + STATE(6193), 1, + sym__scon, + STATE(6194), 1, + sym_longvid, + STATE(6370), 1, + sym_vid, + STATE(12754), 1, + sym__exp, + STATE(19132), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2505), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(529), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [346548] = 28, + ACTIONS(2503), 1, + sym_integer_scon, + ACTIONS(2507), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2509), 1, + sym__symbolic_ident, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + anon_sym_op, + ACTIONS(2515), 1, + anon_sym_LBRACE, + ACTIONS(2517), 1, + anon_sym_POUND, + ACTIONS(2519), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2523), 1, + anon_sym_let, + ACTIONS(2525), 1, + anon_sym_u201c, + ACTIONS(2527), 1, + anon_sym_u2018, + ACTIONS(2529), 1, + anon_sym_BQUOTE, + ACTIONS(10819), 1, + anon_sym_raise, + ACTIONS(10821), 1, + anon_sym_if, + ACTIONS(10823), 1, + anon_sym_while, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + STATE(6193), 1, + sym__scon, + STATE(6194), 1, + sym_longvid, + STATE(6370), 1, + sym_vid, + STATE(12755), 1, + sym__exp, + STATE(19132), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2505), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(529), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [346660] = 28, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(10785), 1, + sym_integer_scon, + ACTIONS(10789), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10791), 1, + sym__symbolic_ident, + ACTIONS(10793), 1, + anon_sym_LPAREN, + ACTIONS(10795), 1, + anon_sym_op, + ACTIONS(10797), 1, + anon_sym_LBRACE, + ACTIONS(10799), 1, + anon_sym_POUND, + ACTIONS(10801), 1, + anon_sym_LBRACK, + ACTIONS(10803), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10805), 1, + anon_sym_let, + ACTIONS(10807), 1, + anon_sym_raise, + ACTIONS(10809), 1, + anon_sym_if, + ACTIONS(10811), 1, + anon_sym_while, + ACTIONS(10813), 1, + anon_sym_u201c, + ACTIONS(10815), 1, + anon_sym_u2018, + ACTIONS(10817), 1, + anon_sym_BQUOTE, + STATE(8961), 1, + sym_vid, + STATE(9111), 1, + sym__scon, + STATE(9112), 1, + sym_longvid, + STATE(15902), 1, + sym__exp, + STATE(18849), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10787), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4087), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [346772] = 28, + ACTIONS(10829), 1, + sym_integer_scon, + ACTIONS(10833), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10835), 1, + sym__symbolic_ident, + ACTIONS(10837), 1, + anon_sym_LPAREN, + ACTIONS(10839), 1, + anon_sym_op, + ACTIONS(10841), 1, + anon_sym_LBRACE, + ACTIONS(10843), 1, + anon_sym_POUND, + ACTIONS(10845), 1, + anon_sym_LBRACK, + ACTIONS(10847), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10849), 1, + anon_sym_let, + ACTIONS(10851), 1, + anon_sym_raise, + ACTIONS(10853), 1, + anon_sym_if, + ACTIONS(10855), 1, + anon_sym_while, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(10861), 1, + anon_sym_u201c, + ACTIONS(10863), 1, + anon_sym_u2018, + ACTIONS(10865), 1, + anon_sym_BQUOTE, + STATE(9897), 1, + sym__scon, + STATE(9900), 1, + sym_longvid, + STATE(9905), 1, + sym_vid, + STATE(17630), 1, + sym__exp, + STATE(18913), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10831), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [346884] = 28, + ACTIONS(10829), 1, + sym_integer_scon, + ACTIONS(10833), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10835), 1, + sym__symbolic_ident, + ACTIONS(10837), 1, + anon_sym_LPAREN, + ACTIONS(10839), 1, + anon_sym_op, + ACTIONS(10841), 1, + anon_sym_LBRACE, + ACTIONS(10843), 1, + anon_sym_POUND, + ACTIONS(10845), 1, + anon_sym_LBRACK, + ACTIONS(10847), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10849), 1, + anon_sym_let, + ACTIONS(10851), 1, + anon_sym_raise, + ACTIONS(10853), 1, + anon_sym_if, + ACTIONS(10855), 1, + anon_sym_while, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(10861), 1, + anon_sym_u201c, + ACTIONS(10863), 1, + anon_sym_u2018, + ACTIONS(10865), 1, + anon_sym_BQUOTE, + STATE(9897), 1, + sym__scon, + STATE(9900), 1, + sym_longvid, + STATE(9905), 1, + sym_vid, + STATE(17260), 1, + sym__exp, + STATE(18913), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10831), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [346996] = 28, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10867), 1, + sym_integer_scon, + ACTIONS(10871), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10873), 1, + sym__symbolic_ident, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_op, + ACTIONS(10879), 1, + anon_sym_LBRACE, + ACTIONS(10881), 1, + anon_sym_POUND, + ACTIONS(10883), 1, + anon_sym_LBRACK, + ACTIONS(10885), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10887), 1, + anon_sym_let, + ACTIONS(10889), 1, + anon_sym_raise, + ACTIONS(10891), 1, + anon_sym_if, + ACTIONS(10893), 1, + anon_sym_while, + ACTIONS(10895), 1, + anon_sym_u201c, + ACTIONS(10897), 1, + anon_sym_u2018, + ACTIONS(10899), 1, + anon_sym_BQUOTE, + STATE(9688), 1, + sym_vid, + STATE(9952), 1, + sym__scon, + STATE(9957), 1, + sym_longvid, + STATE(17306), 1, + sym__exp, + STATE(19255), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10869), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4107), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [347108] = 28, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10867), 1, + sym_integer_scon, + ACTIONS(10871), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10873), 1, + sym__symbolic_ident, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_op, + ACTIONS(10879), 1, + anon_sym_LBRACE, + ACTIONS(10881), 1, + anon_sym_POUND, + ACTIONS(10883), 1, + anon_sym_LBRACK, + ACTIONS(10885), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10887), 1, + anon_sym_let, + ACTIONS(10889), 1, + anon_sym_raise, + ACTIONS(10891), 1, + anon_sym_if, + ACTIONS(10893), 1, + anon_sym_while, + ACTIONS(10895), 1, + anon_sym_u201c, + ACTIONS(10897), 1, + anon_sym_u2018, + ACTIONS(10899), 1, + anon_sym_BQUOTE, + STATE(9688), 1, + sym_vid, + STATE(9952), 1, + sym__scon, + STATE(9957), 1, + sym_longvid, + STATE(17394), 1, + sym__exp, + STATE(19255), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10869), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4107), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [347220] = 28, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10867), 1, + sym_integer_scon, + ACTIONS(10871), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10873), 1, + sym__symbolic_ident, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_op, + ACTIONS(10879), 1, + anon_sym_LBRACE, + ACTIONS(10881), 1, + anon_sym_POUND, + ACTIONS(10883), 1, + anon_sym_LBRACK, + ACTIONS(10885), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10887), 1, + anon_sym_let, + ACTIONS(10889), 1, + anon_sym_raise, + ACTIONS(10891), 1, + anon_sym_if, + ACTIONS(10893), 1, + anon_sym_while, + ACTIONS(10895), 1, + anon_sym_u201c, + ACTIONS(10897), 1, + anon_sym_u2018, + ACTIONS(10899), 1, + anon_sym_BQUOTE, + STATE(9688), 1, + sym_vid, + STATE(9952), 1, + sym__scon, + STATE(9957), 1, + sym_longvid, + STATE(17434), 1, + sym__exp, + STATE(19255), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10869), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4107), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [347332] = 28, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10867), 1, + sym_integer_scon, + ACTIONS(10871), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10873), 1, + sym__symbolic_ident, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_op, + ACTIONS(10879), 1, + anon_sym_LBRACE, + ACTIONS(10881), 1, + anon_sym_POUND, + ACTIONS(10883), 1, + anon_sym_LBRACK, + ACTIONS(10885), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10887), 1, + anon_sym_let, + ACTIONS(10889), 1, + anon_sym_raise, + ACTIONS(10891), 1, + anon_sym_if, + ACTIONS(10893), 1, + anon_sym_while, + ACTIONS(10895), 1, + anon_sym_u201c, + ACTIONS(10897), 1, + anon_sym_u2018, + ACTIONS(10899), 1, + anon_sym_BQUOTE, + STATE(9688), 1, + sym_vid, + STATE(9952), 1, + sym__scon, + STATE(9957), 1, + sym_longvid, + STATE(17338), 1, + sym__exp, + STATE(19255), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10869), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4107), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [347444] = 28, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10867), 1, + sym_integer_scon, + ACTIONS(10871), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10873), 1, + sym__symbolic_ident, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_op, + ACTIONS(10879), 1, + anon_sym_LBRACE, + ACTIONS(10881), 1, + anon_sym_POUND, + ACTIONS(10883), 1, + anon_sym_LBRACK, + ACTIONS(10885), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10887), 1, + anon_sym_let, + ACTIONS(10889), 1, + anon_sym_raise, + ACTIONS(10891), 1, + anon_sym_if, + ACTIONS(10893), 1, + anon_sym_while, + ACTIONS(10895), 1, + anon_sym_u201c, + ACTIONS(10897), 1, + anon_sym_u2018, + ACTIONS(10899), 1, + anon_sym_BQUOTE, + STATE(9688), 1, + sym_vid, + STATE(9952), 1, + sym__scon, + STATE(9957), 1, + sym_longvid, + STATE(17339), 1, + sym__exp, + STATE(19255), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10869), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4107), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [347556] = 28, + ACTIONS(5411), 1, + sym_integer_scon, + ACTIONS(5415), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5417), 1, + sym__symbolic_ident, + ACTIONS(5419), 1, + anon_sym_LPAREN, + ACTIONS(5421), 1, + anon_sym_op, + ACTIONS(5423), 1, + anon_sym_LBRACE, + ACTIONS(5425), 1, + anon_sym_POUND, + ACTIONS(5427), 1, + anon_sym_LBRACK, + ACTIONS(5429), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5431), 1, + anon_sym_let, + ACTIONS(5433), 1, + anon_sym_u201c, + ACTIONS(5435), 1, + anon_sym_u2018, + ACTIONS(5437), 1, + anon_sym_BQUOTE, + ACTIONS(10901), 1, + anon_sym_raise, + ACTIONS(10903), 1, + anon_sym_if, + ACTIONS(10905), 1, + anon_sym_while, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + STATE(7500), 1, + sym_vid, + STATE(7970), 1, + sym__scon, + STATE(7971), 1, + sym_longvid, + STATE(13450), 1, + sym__exp, + STATE(18762), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5413), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1092), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [347668] = 28, + ACTIONS(5411), 1, + sym_integer_scon, + ACTIONS(5415), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5417), 1, + sym__symbolic_ident, + ACTIONS(5419), 1, + anon_sym_LPAREN, + ACTIONS(5421), 1, + anon_sym_op, + ACTIONS(5423), 1, + anon_sym_LBRACE, + ACTIONS(5425), 1, + anon_sym_POUND, + ACTIONS(5427), 1, + anon_sym_LBRACK, + ACTIONS(5429), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5431), 1, + anon_sym_let, + ACTIONS(5433), 1, + anon_sym_u201c, + ACTIONS(5435), 1, + anon_sym_u2018, + ACTIONS(5437), 1, + anon_sym_BQUOTE, + ACTIONS(10901), 1, + anon_sym_raise, + ACTIONS(10903), 1, + anon_sym_if, + ACTIONS(10905), 1, + anon_sym_while, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + STATE(7500), 1, + sym_vid, + STATE(7970), 1, + sym__scon, + STATE(7971), 1, + sym_longvid, + STATE(13486), 1, + sym__exp, + STATE(18762), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5413), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1092), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [347780] = 28, + ACTIONS(5411), 1, + sym_integer_scon, + ACTIONS(5415), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5417), 1, + sym__symbolic_ident, + ACTIONS(5419), 1, + anon_sym_LPAREN, + ACTIONS(5421), 1, + anon_sym_op, + ACTIONS(5423), 1, + anon_sym_LBRACE, + ACTIONS(5425), 1, + anon_sym_POUND, + ACTIONS(5427), 1, + anon_sym_LBRACK, + ACTIONS(5429), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5431), 1, + anon_sym_let, + ACTIONS(5433), 1, + anon_sym_u201c, + ACTIONS(5435), 1, + anon_sym_u2018, + ACTIONS(5437), 1, + anon_sym_BQUOTE, + ACTIONS(10901), 1, + anon_sym_raise, + ACTIONS(10903), 1, + anon_sym_if, + ACTIONS(10905), 1, + anon_sym_while, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + STATE(7500), 1, + sym_vid, + STATE(7970), 1, + sym__scon, + STATE(7971), 1, + sym_longvid, + STATE(13401), 1, + sym__exp, + STATE(18762), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5413), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1092), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [347892] = 28, + ACTIONS(5411), 1, + sym_integer_scon, + ACTIONS(5415), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5417), 1, + sym__symbolic_ident, + ACTIONS(5419), 1, + anon_sym_LPAREN, + ACTIONS(5421), 1, + anon_sym_op, + ACTIONS(5423), 1, + anon_sym_LBRACE, + ACTIONS(5425), 1, + anon_sym_POUND, + ACTIONS(5427), 1, + anon_sym_LBRACK, + ACTIONS(5429), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5431), 1, + anon_sym_let, + ACTIONS(5433), 1, + anon_sym_u201c, + ACTIONS(5435), 1, + anon_sym_u2018, + ACTIONS(5437), 1, + anon_sym_BQUOTE, + ACTIONS(10901), 1, + anon_sym_raise, + ACTIONS(10903), 1, + anon_sym_if, + ACTIONS(10905), 1, + anon_sym_while, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + STATE(7500), 1, + sym_vid, + STATE(7970), 1, + sym__scon, + STATE(7971), 1, + sym_longvid, + STATE(13443), 1, + sym__exp, + STATE(18762), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5413), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1092), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [348004] = 28, + ACTIONS(5411), 1, + sym_integer_scon, + ACTIONS(5415), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5417), 1, + sym__symbolic_ident, + ACTIONS(5419), 1, + anon_sym_LPAREN, + ACTIONS(5421), 1, + anon_sym_op, + ACTIONS(5423), 1, + anon_sym_LBRACE, + ACTIONS(5425), 1, + anon_sym_POUND, + ACTIONS(5427), 1, + anon_sym_LBRACK, + ACTIONS(5429), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5431), 1, + anon_sym_let, + ACTIONS(5433), 1, + anon_sym_u201c, + ACTIONS(5435), 1, + anon_sym_u2018, + ACTIONS(5437), 1, + anon_sym_BQUOTE, + ACTIONS(10901), 1, + anon_sym_raise, + ACTIONS(10903), 1, + anon_sym_if, + ACTIONS(10905), 1, + anon_sym_while, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + STATE(7500), 1, + sym_vid, + STATE(7970), 1, + sym__scon, + STATE(7971), 1, + sym_longvid, + STATE(13444), 1, + sym__exp, + STATE(18762), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5413), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1092), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [348116] = 28, + ACTIONS(2735), 1, + sym_integer_scon, + ACTIONS(2739), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2741), 1, + sym__symbolic_ident, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2745), 1, + anon_sym_op, + ACTIONS(2747), 1, + anon_sym_LBRACE, + ACTIONS(2749), 1, + anon_sym_POUND, + ACTIONS(2751), 1, + anon_sym_LBRACK, + ACTIONS(2753), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2755), 1, + anon_sym_let, + ACTIONS(2757), 1, + anon_sym_u201c, + ACTIONS(2759), 1, + anon_sym_u2018, + ACTIONS(2761), 1, + anon_sym_BQUOTE, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + ACTIONS(10911), 1, + anon_sym_raise, + ACTIONS(10913), 1, + anon_sym_if, + ACTIONS(10915), 1, + anon_sym_while, + STATE(7228), 1, + sym__scon, + STATE(7230), 1, + sym_longvid, + STATE(7336), 1, + sym_vid, + STATE(13260), 1, + sym__exp, + STATE(18980), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2737), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(540), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [348228] = 28, + ACTIONS(2735), 1, + sym_integer_scon, + ACTIONS(2739), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2741), 1, + sym__symbolic_ident, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2745), 1, + anon_sym_op, + ACTIONS(2747), 1, + anon_sym_LBRACE, + ACTIONS(2749), 1, + anon_sym_POUND, + ACTIONS(2751), 1, + anon_sym_LBRACK, + ACTIONS(2753), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2755), 1, + anon_sym_let, + ACTIONS(2757), 1, + anon_sym_u201c, + ACTIONS(2759), 1, + anon_sym_u2018, + ACTIONS(2761), 1, + anon_sym_BQUOTE, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + ACTIONS(10911), 1, + anon_sym_raise, + ACTIONS(10913), 1, + anon_sym_if, + ACTIONS(10915), 1, + anon_sym_while, + STATE(7228), 1, + sym__scon, + STATE(7230), 1, + sym_longvid, + STATE(7336), 1, + sym_vid, + STATE(13261), 1, + sym__exp, + STATE(18980), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2737), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(540), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [348340] = 28, + ACTIONS(2735), 1, + sym_integer_scon, + ACTIONS(2739), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2741), 1, + sym__symbolic_ident, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2745), 1, + anon_sym_op, + ACTIONS(2747), 1, + anon_sym_LBRACE, + ACTIONS(2749), 1, + anon_sym_POUND, + ACTIONS(2751), 1, + anon_sym_LBRACK, + ACTIONS(2753), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2755), 1, + anon_sym_let, + ACTIONS(2757), 1, + anon_sym_u201c, + ACTIONS(2759), 1, + anon_sym_u2018, + ACTIONS(2761), 1, + anon_sym_BQUOTE, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + ACTIONS(10911), 1, + anon_sym_raise, + ACTIONS(10913), 1, + anon_sym_if, + ACTIONS(10915), 1, + anon_sym_while, + STATE(7228), 1, + sym__scon, + STATE(7230), 1, + sym_longvid, + STATE(7336), 1, + sym_vid, + STATE(13109), 1, + sym__exp, + STATE(18980), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2737), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(540), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [348452] = 28, + ACTIONS(2735), 1, + sym_integer_scon, + ACTIONS(2739), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2741), 1, + sym__symbolic_ident, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2745), 1, + anon_sym_op, + ACTIONS(2747), 1, + anon_sym_LBRACE, + ACTIONS(2749), 1, + anon_sym_POUND, + ACTIONS(2751), 1, + anon_sym_LBRACK, + ACTIONS(2753), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2755), 1, + anon_sym_let, + ACTIONS(2757), 1, + anon_sym_u201c, + ACTIONS(2759), 1, + anon_sym_u2018, + ACTIONS(2761), 1, + anon_sym_BQUOTE, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + ACTIONS(10911), 1, + anon_sym_raise, + ACTIONS(10913), 1, + anon_sym_if, + ACTIONS(10915), 1, + anon_sym_while, + STATE(7228), 1, + sym__scon, + STATE(7230), 1, + sym_longvid, + STATE(7336), 1, + sym_vid, + STATE(13247), 1, + sym__exp, + STATE(18980), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2737), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(540), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [348564] = 28, + ACTIONS(2735), 1, + sym_integer_scon, + ACTIONS(2739), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2741), 1, + sym__symbolic_ident, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2745), 1, + anon_sym_op, + ACTIONS(2747), 1, + anon_sym_LBRACE, + ACTIONS(2749), 1, + anon_sym_POUND, + ACTIONS(2751), 1, + anon_sym_LBRACK, + ACTIONS(2753), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2755), 1, + anon_sym_let, + ACTIONS(2757), 1, + anon_sym_u201c, + ACTIONS(2759), 1, + anon_sym_u2018, + ACTIONS(2761), 1, + anon_sym_BQUOTE, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + ACTIONS(10911), 1, + anon_sym_raise, + ACTIONS(10913), 1, + anon_sym_if, + ACTIONS(10915), 1, + anon_sym_while, + STATE(7228), 1, + sym__scon, + STATE(7230), 1, + sym_longvid, + STATE(7336), 1, + sym_vid, + STATE(13248), 1, + sym__exp, + STATE(18980), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2737), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(540), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [348676] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9394), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [348788] = 28, + ACTIONS(1117), 1, + sym_integer_scon, + ACTIONS(1121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1123), 1, + sym__symbolic_ident, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1127), 1, + anon_sym_op, + ACTIONS(1129), 1, + anon_sym_LBRACE, + ACTIONS(1131), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + anon_sym_LBRACK, + ACTIONS(1135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1137), 1, + anon_sym_let, + ACTIONS(1139), 1, + anon_sym_u201c, + ACTIONS(1141), 1, + anon_sym_u2018, + ACTIONS(1143), 1, + anon_sym_BQUOTE, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + ACTIONS(10917), 1, + anon_sym_raise, + ACTIONS(10919), 1, + anon_sym_if, + ACTIONS(10921), 1, + anon_sym_while, + STATE(4281), 1, + sym_vid, + STATE(4303), 1, + sym__scon, + STATE(4304), 1, + sym_longvid, + STATE(9193), 1, + sym__exp, + STATE(19088), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(471), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [348900] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9182), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [349012] = 28, + ACTIONS(1985), 1, + sym_integer_scon, + ACTIONS(1989), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1991), 1, + sym__symbolic_ident, + ACTIONS(1993), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_op, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(1999), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_LBRACK, + ACTIONS(2003), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2005), 1, + anon_sym_let, + ACTIONS(2007), 1, + anon_sym_u201c, + ACTIONS(2009), 1, + anon_sym_u2018, + ACTIONS(2011), 1, + anon_sym_BQUOTE, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + ACTIONS(10923), 1, + anon_sym_raise, + ACTIONS(10925), 1, + anon_sym_if, + ACTIONS(10927), 1, + anon_sym_while, + STATE(6262), 1, + sym__scon, + STATE(6263), 1, + sym_longvid, + STATE(6485), 1, + sym_vid, + STATE(12773), 1, + sym__exp, + STATE(19171), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1987), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(533), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [349124] = 28, + ACTIONS(1985), 1, + sym_integer_scon, + ACTIONS(1989), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1991), 1, + sym__symbolic_ident, + ACTIONS(1993), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_op, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(1999), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_LBRACK, + ACTIONS(2003), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2005), 1, + anon_sym_let, + ACTIONS(2007), 1, + anon_sym_u201c, + ACTIONS(2009), 1, + anon_sym_u2018, + ACTIONS(2011), 1, + anon_sym_BQUOTE, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + ACTIONS(10923), 1, + anon_sym_raise, + ACTIONS(10925), 1, + anon_sym_if, + ACTIONS(10927), 1, + anon_sym_while, + STATE(6262), 1, + sym__scon, + STATE(6263), 1, + sym_longvid, + STATE(6485), 1, + sym_vid, + STATE(12774), 1, + sym__exp, + STATE(19171), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1987), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(533), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [349236] = 28, + ACTIONS(1985), 1, + sym_integer_scon, + ACTIONS(1989), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1991), 1, + sym__symbolic_ident, + ACTIONS(1993), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_op, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(1999), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_LBRACK, + ACTIONS(2003), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2005), 1, + anon_sym_let, + ACTIONS(2007), 1, + anon_sym_u201c, + ACTIONS(2009), 1, + anon_sym_u2018, + ACTIONS(2011), 1, + anon_sym_BQUOTE, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + ACTIONS(10923), 1, + anon_sym_raise, + ACTIONS(10925), 1, + anon_sym_if, + ACTIONS(10927), 1, + anon_sym_while, + STATE(6262), 1, + sym__scon, + STATE(6263), 1, + sym_longvid, + STATE(6485), 1, + sym_vid, + STATE(12856), 1, + sym__exp, + STATE(19171), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1987), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(533), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [349348] = 28, + ACTIONS(1985), 1, + sym_integer_scon, + ACTIONS(1989), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1991), 1, + sym__symbolic_ident, + ACTIONS(1993), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_op, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(1999), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_LBRACK, + ACTIONS(2003), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2005), 1, + anon_sym_let, + ACTIONS(2007), 1, + anon_sym_u201c, + ACTIONS(2009), 1, + anon_sym_u2018, + ACTIONS(2011), 1, + anon_sym_BQUOTE, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + ACTIONS(10923), 1, + anon_sym_raise, + ACTIONS(10925), 1, + anon_sym_if, + ACTIONS(10927), 1, + anon_sym_while, + STATE(6262), 1, + sym__scon, + STATE(6263), 1, + sym_longvid, + STATE(6485), 1, + sym_vid, + STATE(12765), 1, + sym__exp, + STATE(19171), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1987), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(533), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [349460] = 28, + ACTIONS(1985), 1, + sym_integer_scon, + ACTIONS(1989), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1991), 1, + sym__symbolic_ident, + ACTIONS(1993), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_op, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(1999), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_LBRACK, + ACTIONS(2003), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2005), 1, + anon_sym_let, + ACTIONS(2007), 1, + anon_sym_u201c, + ACTIONS(2009), 1, + anon_sym_u2018, + ACTIONS(2011), 1, + anon_sym_BQUOTE, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + ACTIONS(10923), 1, + anon_sym_raise, + ACTIONS(10925), 1, + anon_sym_if, + ACTIONS(10927), 1, + anon_sym_while, + STATE(6262), 1, + sym__scon, + STATE(6263), 1, + sym_longvid, + STATE(6485), 1, + sym_vid, + STATE(12766), 1, + sym__exp, + STATE(19171), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1987), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(533), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [349572] = 28, + ACTIONS(8899), 1, + sym_integer_scon, + ACTIONS(8903), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8905), 1, + sym__symbolic_ident, + ACTIONS(8907), 1, + anon_sym_LPAREN, + ACTIONS(8909), 1, + anon_sym_op, + ACTIONS(8911), 1, + anon_sym_LBRACE, + ACTIONS(8913), 1, + anon_sym_POUND, + ACTIONS(8915), 1, + anon_sym_LBRACK, + ACTIONS(8917), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8919), 1, + anon_sym_let, + ACTIONS(8921), 1, + anon_sym_u201c, + ACTIONS(8923), 1, + anon_sym_u2018, + ACTIONS(8925), 1, + anon_sym_BQUOTE, + ACTIONS(10623), 1, + anon_sym_case, + ACTIONS(10625), 1, + anon_sym_fn, + ACTIONS(10929), 1, + anon_sym_raise, + ACTIONS(10931), 1, + anon_sym_if, + ACTIONS(10933), 1, + anon_sym_while, + STATE(8237), 1, + sym__scon, + STATE(8239), 1, + sym_longvid, + STATE(8264), 1, + sym_vid, + STATE(13618), 1, + sym__exp, + STATE(18720), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8901), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(2511), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [349684] = 28, + ACTIONS(8899), 1, + sym_integer_scon, + ACTIONS(8903), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8905), 1, + sym__symbolic_ident, + ACTIONS(8907), 1, + anon_sym_LPAREN, + ACTIONS(8909), 1, + anon_sym_op, + ACTIONS(8911), 1, + anon_sym_LBRACE, + ACTIONS(8913), 1, + anon_sym_POUND, + ACTIONS(8915), 1, + anon_sym_LBRACK, + ACTIONS(8917), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8919), 1, + anon_sym_let, + ACTIONS(8921), 1, + anon_sym_u201c, + ACTIONS(8923), 1, + anon_sym_u2018, + ACTIONS(8925), 1, + anon_sym_BQUOTE, + ACTIONS(10623), 1, + anon_sym_case, + ACTIONS(10625), 1, + anon_sym_fn, + ACTIONS(10929), 1, + anon_sym_raise, + ACTIONS(10931), 1, + anon_sym_if, + ACTIONS(10933), 1, + anon_sym_while, + STATE(8237), 1, + sym__scon, + STATE(8239), 1, + sym_longvid, + STATE(8264), 1, + sym_vid, + STATE(13621), 1, + sym__exp, + STATE(18720), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8901), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(2511), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [349796] = 28, + ACTIONS(8899), 1, + sym_integer_scon, + ACTIONS(8903), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8905), 1, + sym__symbolic_ident, + ACTIONS(8907), 1, + anon_sym_LPAREN, + ACTIONS(8909), 1, + anon_sym_op, + ACTIONS(8911), 1, + anon_sym_LBRACE, + ACTIONS(8913), 1, + anon_sym_POUND, + ACTIONS(8915), 1, + anon_sym_LBRACK, + ACTIONS(8917), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8919), 1, + anon_sym_let, + ACTIONS(8921), 1, + anon_sym_u201c, + ACTIONS(8923), 1, + anon_sym_u2018, + ACTIONS(8925), 1, + anon_sym_BQUOTE, + ACTIONS(10623), 1, + anon_sym_case, + ACTIONS(10625), 1, + anon_sym_fn, + ACTIONS(10929), 1, + anon_sym_raise, + ACTIONS(10931), 1, + anon_sym_if, + ACTIONS(10933), 1, + anon_sym_while, + STATE(8237), 1, + sym__scon, + STATE(8239), 1, + sym_longvid, + STATE(8264), 1, + sym_vid, + STATE(13638), 1, + sym__exp, + STATE(18720), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8901), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(2511), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [349908] = 28, + ACTIONS(8899), 1, + sym_integer_scon, + ACTIONS(8903), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8905), 1, + sym__symbolic_ident, + ACTIONS(8907), 1, + anon_sym_LPAREN, + ACTIONS(8909), 1, + anon_sym_op, + ACTIONS(8911), 1, + anon_sym_LBRACE, + ACTIONS(8913), 1, + anon_sym_POUND, + ACTIONS(8915), 1, + anon_sym_LBRACK, + ACTIONS(8917), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8919), 1, + anon_sym_let, + ACTIONS(8921), 1, + anon_sym_u201c, + ACTIONS(8923), 1, + anon_sym_u2018, + ACTIONS(8925), 1, + anon_sym_BQUOTE, + ACTIONS(10623), 1, + anon_sym_case, + ACTIONS(10625), 1, + anon_sym_fn, + ACTIONS(10929), 1, + anon_sym_raise, + ACTIONS(10931), 1, + anon_sym_if, + ACTIONS(10933), 1, + anon_sym_while, + STATE(8237), 1, + sym__scon, + STATE(8239), 1, + sym_longvid, + STATE(8264), 1, + sym_vid, + STATE(13603), 1, + sym__exp, + STATE(18720), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8901), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(2511), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [350020] = 28, + ACTIONS(8899), 1, + sym_integer_scon, + ACTIONS(8903), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8905), 1, + sym__symbolic_ident, + ACTIONS(8907), 1, + anon_sym_LPAREN, + ACTIONS(8909), 1, + anon_sym_op, + ACTIONS(8911), 1, + anon_sym_LBRACE, + ACTIONS(8913), 1, + anon_sym_POUND, + ACTIONS(8915), 1, + anon_sym_LBRACK, + ACTIONS(8917), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8919), 1, + anon_sym_let, + ACTIONS(8921), 1, + anon_sym_u201c, + ACTIONS(8923), 1, + anon_sym_u2018, + ACTIONS(8925), 1, + anon_sym_BQUOTE, + ACTIONS(10623), 1, + anon_sym_case, + ACTIONS(10625), 1, + anon_sym_fn, + ACTIONS(10929), 1, + anon_sym_raise, + ACTIONS(10931), 1, + anon_sym_if, + ACTIONS(10933), 1, + anon_sym_while, + STATE(8237), 1, + sym__scon, + STATE(8239), 1, + sym_longvid, + STATE(8264), 1, + sym_vid, + STATE(13604), 1, + sym__exp, + STATE(18720), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8901), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(2511), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [350132] = 28, + ACTIONS(2195), 1, + sym_integer_scon, + ACTIONS(2199), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2201), 1, + sym__symbolic_ident, + ACTIONS(2203), 1, + anon_sym_LPAREN, + ACTIONS(2205), 1, + anon_sym_op, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_POUND, + ACTIONS(2211), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2215), 1, + anon_sym_let, + ACTIONS(2217), 1, + anon_sym_u201c, + ACTIONS(2219), 1, + anon_sym_u2018, + ACTIONS(2221), 1, + anon_sym_BQUOTE, + ACTIONS(10935), 1, + anon_sym_raise, + ACTIONS(10937), 1, + anon_sym_if, + ACTIONS(10939), 1, + anon_sym_while, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + STATE(6315), 1, + sym__scon, + STATE(6316), 1, + sym_longvid, + STATE(6515), 1, + sym_vid, + STATE(12779), 1, + sym__exp, + STATE(19231), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2197), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(516), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [350244] = 28, + ACTIONS(2195), 1, + sym_integer_scon, + ACTIONS(2199), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2201), 1, + sym__symbolic_ident, + ACTIONS(2203), 1, + anon_sym_LPAREN, + ACTIONS(2205), 1, + anon_sym_op, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_POUND, + ACTIONS(2211), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2215), 1, + anon_sym_let, + ACTIONS(2217), 1, + anon_sym_u201c, + ACTIONS(2219), 1, + anon_sym_u2018, + ACTIONS(2221), 1, + anon_sym_BQUOTE, + ACTIONS(10935), 1, + anon_sym_raise, + ACTIONS(10937), 1, + anon_sym_if, + ACTIONS(10939), 1, + anon_sym_while, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + STATE(6315), 1, + sym__scon, + STATE(6316), 1, + sym_longvid, + STATE(6515), 1, + sym_vid, + STATE(12780), 1, + sym__exp, + STATE(19231), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2197), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(516), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [350356] = 28, + ACTIONS(2195), 1, + sym_integer_scon, + ACTIONS(2199), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2201), 1, + sym__symbolic_ident, + ACTIONS(2203), 1, + anon_sym_LPAREN, + ACTIONS(2205), 1, + anon_sym_op, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_POUND, + ACTIONS(2211), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2215), 1, + anon_sym_let, + ACTIONS(2217), 1, + anon_sym_u201c, + ACTIONS(2219), 1, + anon_sym_u2018, + ACTIONS(2221), 1, + anon_sym_BQUOTE, + ACTIONS(10935), 1, + anon_sym_raise, + ACTIONS(10937), 1, + anon_sym_if, + ACTIONS(10939), 1, + anon_sym_while, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + STATE(6315), 1, + sym__scon, + STATE(6316), 1, + sym_longvid, + STATE(6515), 1, + sym_vid, + STATE(12860), 1, + sym__exp, + STATE(19231), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2197), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(516), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [350468] = 28, + ACTIONS(2195), 1, + sym_integer_scon, + ACTIONS(2199), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2201), 1, + sym__symbolic_ident, + ACTIONS(2203), 1, + anon_sym_LPAREN, + ACTIONS(2205), 1, + anon_sym_op, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_POUND, + ACTIONS(2211), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2215), 1, + anon_sym_let, + ACTIONS(2217), 1, + anon_sym_u201c, + ACTIONS(2219), 1, + anon_sym_u2018, + ACTIONS(2221), 1, + anon_sym_BQUOTE, + ACTIONS(10935), 1, + anon_sym_raise, + ACTIONS(10937), 1, + anon_sym_if, + ACTIONS(10939), 1, + anon_sym_while, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + STATE(6315), 1, + sym__scon, + STATE(6316), 1, + sym_longvid, + STATE(6515), 1, + sym_vid, + STATE(12771), 1, + sym__exp, + STATE(19231), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2197), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(516), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [350580] = 28, + ACTIONS(2195), 1, + sym_integer_scon, + ACTIONS(2199), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2201), 1, + sym__symbolic_ident, + ACTIONS(2203), 1, + anon_sym_LPAREN, + ACTIONS(2205), 1, + anon_sym_op, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_POUND, + ACTIONS(2211), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2215), 1, + anon_sym_let, + ACTIONS(2217), 1, + anon_sym_u201c, + ACTIONS(2219), 1, + anon_sym_u2018, + ACTIONS(2221), 1, + anon_sym_BQUOTE, + ACTIONS(10935), 1, + anon_sym_raise, + ACTIONS(10937), 1, + anon_sym_if, + ACTIONS(10939), 1, + anon_sym_while, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + STATE(6315), 1, + sym__scon, + STATE(6316), 1, + sym_longvid, + STATE(6515), 1, + sym_vid, + STATE(12772), 1, + sym__exp, + STATE(19231), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2197), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(516), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [350692] = 28, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16351), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [350804] = 28, + ACTIONS(3437), 1, + sym_integer_scon, + ACTIONS(3441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3443), 1, + sym__symbolic_ident, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_op, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_POUND, + ACTIONS(3453), 1, + anon_sym_LBRACK, + ACTIONS(3455), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3457), 1, + anon_sym_let, + ACTIONS(3459), 1, + anon_sym_u201c, + ACTIONS(3461), 1, + anon_sym_u2018, + ACTIONS(3463), 1, + anon_sym_BQUOTE, + ACTIONS(10945), 1, + anon_sym_raise, + ACTIONS(10947), 1, + anon_sym_if, + ACTIONS(10949), 1, + anon_sym_while, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + STATE(6895), 1, + sym__scon, + STATE(6896), 1, + sym_longvid, + STATE(7063), 1, + sym_vid, + STATE(13288), 1, + sym__exp, + STATE(19215), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3439), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(571), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [350916] = 28, + ACTIONS(3507), 1, + sym_integer_scon, + ACTIONS(3511), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3513), 1, + sym__symbolic_ident, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_op, + ACTIONS(3519), 1, + anon_sym_LBRACE, + ACTIONS(3521), 1, + anon_sym_POUND, + ACTIONS(3523), 1, + anon_sym_LBRACK, + ACTIONS(3525), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3527), 1, + anon_sym_let, + ACTIONS(3529), 1, + anon_sym_u201c, + ACTIONS(3531), 1, + anon_sym_u2018, + ACTIONS(3533), 1, + anon_sym_BQUOTE, + ACTIONS(10633), 1, + anon_sym_case, + ACTIONS(10635), 1, + anon_sym_fn, + ACTIONS(10955), 1, + anon_sym_raise, + ACTIONS(10957), 1, + anon_sym_if, + ACTIONS(10959), 1, + anon_sym_while, + STATE(6951), 1, + sym__scon, + STATE(6952), 1, + sym_longvid, + STATE(7068), 1, + sym_vid, + STATE(13289), 1, + sym__exp, + STATE(18811), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3509), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(574), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [351028] = 28, + ACTIONS(2433), 1, + sym_integer_scon, + ACTIONS(2437), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2439), 1, + sym__symbolic_ident, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_op, + ACTIONS(2445), 1, + anon_sym_LBRACE, + ACTIONS(2447), 1, + anon_sym_POUND, + ACTIONS(2449), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2453), 1, + anon_sym_let, + ACTIONS(2455), 1, + anon_sym_u201c, + ACTIONS(2457), 1, + anon_sym_u2018, + ACTIONS(2459), 1, + anon_sym_BQUOTE, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + ACTIONS(10961), 1, + anon_sym_raise, + ACTIONS(10963), 1, + anon_sym_if, + ACTIONS(10965), 1, + anon_sym_while, + STATE(6369), 1, + sym__scon, + STATE(6371), 1, + sym_longvid, + STATE(6533), 1, + sym_vid, + STATE(12785), 1, + sym__exp, + STATE(19237), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2435), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(526), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [351140] = 28, + ACTIONS(2433), 1, + sym_integer_scon, + ACTIONS(2437), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2439), 1, + sym__symbolic_ident, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_op, + ACTIONS(2445), 1, + anon_sym_LBRACE, + ACTIONS(2447), 1, + anon_sym_POUND, + ACTIONS(2449), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2453), 1, + anon_sym_let, + ACTIONS(2455), 1, + anon_sym_u201c, + ACTIONS(2457), 1, + anon_sym_u2018, + ACTIONS(2459), 1, + anon_sym_BQUOTE, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + ACTIONS(10961), 1, + anon_sym_raise, + ACTIONS(10963), 1, + anon_sym_if, + ACTIONS(10965), 1, + anon_sym_while, + STATE(6369), 1, + sym__scon, + STATE(6371), 1, + sym_longvid, + STATE(6533), 1, + sym_vid, + STATE(12786), 1, + sym__exp, + STATE(19237), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2435), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(526), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [351252] = 28, + ACTIONS(2433), 1, + sym_integer_scon, + ACTIONS(2437), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2439), 1, + sym__symbolic_ident, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_op, + ACTIONS(2445), 1, + anon_sym_LBRACE, + ACTIONS(2447), 1, + anon_sym_POUND, + ACTIONS(2449), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2453), 1, + anon_sym_let, + ACTIONS(2455), 1, + anon_sym_u201c, + ACTIONS(2457), 1, + anon_sym_u2018, + ACTIONS(2459), 1, + anon_sym_BQUOTE, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + ACTIONS(10961), 1, + anon_sym_raise, + ACTIONS(10963), 1, + anon_sym_if, + ACTIONS(10965), 1, + anon_sym_while, + STATE(6369), 1, + sym__scon, + STATE(6371), 1, + sym_longvid, + STATE(6533), 1, + sym_vid, + STATE(12864), 1, + sym__exp, + STATE(19237), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2435), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(526), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [351364] = 28, + ACTIONS(2433), 1, + sym_integer_scon, + ACTIONS(2437), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2439), 1, + sym__symbolic_ident, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_op, + ACTIONS(2445), 1, + anon_sym_LBRACE, + ACTIONS(2447), 1, + anon_sym_POUND, + ACTIONS(2449), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2453), 1, + anon_sym_let, + ACTIONS(2455), 1, + anon_sym_u201c, + ACTIONS(2457), 1, + anon_sym_u2018, + ACTIONS(2459), 1, + anon_sym_BQUOTE, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + ACTIONS(10961), 1, + anon_sym_raise, + ACTIONS(10963), 1, + anon_sym_if, + ACTIONS(10965), 1, + anon_sym_while, + STATE(6369), 1, + sym__scon, + STATE(6371), 1, + sym_longvid, + STATE(6533), 1, + sym_vid, + STATE(12776), 1, + sym__exp, + STATE(19237), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2435), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(526), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [351476] = 28, + ACTIONS(2433), 1, + sym_integer_scon, + ACTIONS(2437), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2439), 1, + sym__symbolic_ident, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_op, + ACTIONS(2445), 1, + anon_sym_LBRACE, + ACTIONS(2447), 1, + anon_sym_POUND, + ACTIONS(2449), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2453), 1, + anon_sym_let, + ACTIONS(2455), 1, + anon_sym_u201c, + ACTIONS(2457), 1, + anon_sym_u2018, + ACTIONS(2459), 1, + anon_sym_BQUOTE, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + ACTIONS(10961), 1, + anon_sym_raise, + ACTIONS(10963), 1, + anon_sym_if, + ACTIONS(10965), 1, + anon_sym_while, + STATE(6369), 1, + sym__scon, + STATE(6371), 1, + sym_longvid, + STATE(6533), 1, + sym_vid, + STATE(12777), 1, + sym__exp, + STATE(19237), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2435), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(526), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [351588] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19022), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [351700] = 28, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10967), 1, + sym_integer_scon, + ACTIONS(10971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10973), 1, + sym__symbolic_ident, + ACTIONS(10975), 1, + anon_sym_LPAREN, + ACTIONS(10977), 1, + anon_sym_op, + ACTIONS(10979), 1, + anon_sym_LBRACE, + ACTIONS(10981), 1, + anon_sym_POUND, + ACTIONS(10983), 1, + anon_sym_LBRACK, + ACTIONS(10985), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10987), 1, + anon_sym_let, + ACTIONS(10989), 1, + anon_sym_raise, + ACTIONS(10991), 1, + anon_sym_if, + ACTIONS(10993), 1, + anon_sym_while, + ACTIONS(10995), 1, + anon_sym_u201c, + ACTIONS(10997), 1, + anon_sym_u2018, + ACTIONS(10999), 1, + anon_sym_BQUOTE, + STATE(11362), 1, + sym_vid, + STATE(11644), 1, + sym__scon, + STATE(11691), 1, + sym_longvid, + STATE(18475), 1, + sym__exp, + STATE(18986), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4244), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [351812] = 28, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10967), 1, + sym_integer_scon, + ACTIONS(10971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10973), 1, + sym__symbolic_ident, + ACTIONS(10975), 1, + anon_sym_LPAREN, + ACTIONS(10977), 1, + anon_sym_op, + ACTIONS(10979), 1, + anon_sym_LBRACE, + ACTIONS(10981), 1, + anon_sym_POUND, + ACTIONS(10983), 1, + anon_sym_LBRACK, + ACTIONS(10985), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10987), 1, + anon_sym_let, + ACTIONS(10989), 1, + anon_sym_raise, + ACTIONS(10991), 1, + anon_sym_if, + ACTIONS(10993), 1, + anon_sym_while, + ACTIONS(10995), 1, + anon_sym_u201c, + ACTIONS(10997), 1, + anon_sym_u2018, + ACTIONS(10999), 1, + anon_sym_BQUOTE, + STATE(11362), 1, + sym_vid, + STATE(11644), 1, + sym__scon, + STATE(11691), 1, + sym_longvid, + STATE(18386), 1, + sym__exp, + STATE(18986), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4244), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [351924] = 28, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10967), 1, + sym_integer_scon, + ACTIONS(10971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10973), 1, + sym__symbolic_ident, + ACTIONS(10975), 1, + anon_sym_LPAREN, + ACTIONS(10977), 1, + anon_sym_op, + ACTIONS(10979), 1, + anon_sym_LBRACE, + ACTIONS(10981), 1, + anon_sym_POUND, + ACTIONS(10983), 1, + anon_sym_LBRACK, + ACTIONS(10985), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10987), 1, + anon_sym_let, + ACTIONS(10989), 1, + anon_sym_raise, + ACTIONS(10991), 1, + anon_sym_if, + ACTIONS(10993), 1, + anon_sym_while, + ACTIONS(10995), 1, + anon_sym_u201c, + ACTIONS(10997), 1, + anon_sym_u2018, + ACTIONS(10999), 1, + anon_sym_BQUOTE, + STATE(11362), 1, + sym_vid, + STATE(11644), 1, + sym__scon, + STATE(11691), 1, + sym_longvid, + STATE(18381), 1, + sym__exp, + STATE(18986), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4244), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [352036] = 28, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10967), 1, + sym_integer_scon, + ACTIONS(10971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10973), 1, + sym__symbolic_ident, + ACTIONS(10975), 1, + anon_sym_LPAREN, + ACTIONS(10977), 1, + anon_sym_op, + ACTIONS(10979), 1, + anon_sym_LBRACE, + ACTIONS(10981), 1, + anon_sym_POUND, + ACTIONS(10983), 1, + anon_sym_LBRACK, + ACTIONS(10985), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10987), 1, + anon_sym_let, + ACTIONS(10989), 1, + anon_sym_raise, + ACTIONS(10991), 1, + anon_sym_if, + ACTIONS(10993), 1, + anon_sym_while, + ACTIONS(10995), 1, + anon_sym_u201c, + ACTIONS(10997), 1, + anon_sym_u2018, + ACTIONS(10999), 1, + anon_sym_BQUOTE, + STATE(11362), 1, + sym_vid, + STATE(11644), 1, + sym__scon, + STATE(11691), 1, + sym_longvid, + STATE(18230), 1, + sym__exp, + STATE(18986), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4244), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [352148] = 28, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10967), 1, + sym_integer_scon, + ACTIONS(10971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10973), 1, + sym__symbolic_ident, + ACTIONS(10975), 1, + anon_sym_LPAREN, + ACTIONS(10977), 1, + anon_sym_op, + ACTIONS(10979), 1, + anon_sym_LBRACE, + ACTIONS(10981), 1, + anon_sym_POUND, + ACTIONS(10983), 1, + anon_sym_LBRACK, + ACTIONS(10985), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10987), 1, + anon_sym_let, + ACTIONS(10989), 1, + anon_sym_raise, + ACTIONS(10991), 1, + anon_sym_if, + ACTIONS(10993), 1, + anon_sym_while, + ACTIONS(10995), 1, + anon_sym_u201c, + ACTIONS(10997), 1, + anon_sym_u2018, + ACTIONS(10999), 1, + anon_sym_BQUOTE, + STATE(11362), 1, + sym_vid, + STATE(11644), 1, + sym__scon, + STATE(11691), 1, + sym_longvid, + STATE(18232), 1, + sym__exp, + STATE(18986), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4244), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [352260] = 28, + ACTIONS(1537), 1, + sym_integer_scon, + ACTIONS(1541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1543), 1, + sym__symbolic_ident, + ACTIONS(1545), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, + anon_sym_op, + ACTIONS(1549), 1, + anon_sym_LBRACE, + ACTIONS(1551), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1557), 1, + anon_sym_let, + ACTIONS(1559), 1, + anon_sym_u201c, + ACTIONS(1561), 1, + anon_sym_u2018, + ACTIONS(1563), 1, + anon_sym_BQUOTE, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + ACTIONS(11001), 1, + anon_sym_raise, + ACTIONS(11003), 1, + anon_sym_if, + ACTIONS(11005), 1, + anon_sym_while, + STATE(5677), 1, + sym_vid, + STATE(5751), 1, + sym__scon, + STATE(5752), 1, + sym_longvid, + STATE(12380), 1, + sym__exp, + STATE(19054), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(489), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [352372] = 28, + ACTIONS(1537), 1, + sym_integer_scon, + ACTIONS(1541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1543), 1, + sym__symbolic_ident, + ACTIONS(1545), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, + anon_sym_op, + ACTIONS(1549), 1, + anon_sym_LBRACE, + ACTIONS(1551), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1557), 1, + anon_sym_let, + ACTIONS(1559), 1, + anon_sym_u201c, + ACTIONS(1561), 1, + anon_sym_u2018, + ACTIONS(1563), 1, + anon_sym_BQUOTE, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + ACTIONS(11001), 1, + anon_sym_raise, + ACTIONS(11003), 1, + anon_sym_if, + ACTIONS(11005), 1, + anon_sym_while, + STATE(5677), 1, + sym_vid, + STATE(5751), 1, + sym__scon, + STATE(5752), 1, + sym_longvid, + STATE(12381), 1, + sym__exp, + STATE(19054), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(489), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [352484] = 28, + ACTIONS(1537), 1, + sym_integer_scon, + ACTIONS(1541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1543), 1, + sym__symbolic_ident, + ACTIONS(1545), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, + anon_sym_op, + ACTIONS(1549), 1, + anon_sym_LBRACE, + ACTIONS(1551), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1557), 1, + anon_sym_let, + ACTIONS(1559), 1, + anon_sym_u201c, + ACTIONS(1561), 1, + anon_sym_u2018, + ACTIONS(1563), 1, + anon_sym_BQUOTE, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + ACTIONS(11001), 1, + anon_sym_raise, + ACTIONS(11003), 1, + anon_sym_if, + ACTIONS(11005), 1, + anon_sym_while, + STATE(5677), 1, + sym_vid, + STATE(5751), 1, + sym__scon, + STATE(5752), 1, + sym_longvid, + STATE(12448), 1, + sym__exp, + STATE(19054), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(489), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [352596] = 28, + ACTIONS(1537), 1, + sym_integer_scon, + ACTIONS(1541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1543), 1, + sym__symbolic_ident, + ACTIONS(1545), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, + anon_sym_op, + ACTIONS(1549), 1, + anon_sym_LBRACE, + ACTIONS(1551), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1557), 1, + anon_sym_let, + ACTIONS(1559), 1, + anon_sym_u201c, + ACTIONS(1561), 1, + anon_sym_u2018, + ACTIONS(1563), 1, + anon_sym_BQUOTE, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + ACTIONS(11001), 1, + anon_sym_raise, + ACTIONS(11003), 1, + anon_sym_if, + ACTIONS(11005), 1, + anon_sym_while, + STATE(5677), 1, + sym_vid, + STATE(5751), 1, + sym__scon, + STATE(5752), 1, + sym_longvid, + STATE(12374), 1, + sym__exp, + STATE(19054), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(489), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [352708] = 28, + ACTIONS(1537), 1, + sym_integer_scon, + ACTIONS(1541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1543), 1, + sym__symbolic_ident, + ACTIONS(1545), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, + anon_sym_op, + ACTIONS(1549), 1, + anon_sym_LBRACE, + ACTIONS(1551), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1557), 1, + anon_sym_let, + ACTIONS(1559), 1, + anon_sym_u201c, + ACTIONS(1561), 1, + anon_sym_u2018, + ACTIONS(1563), 1, + anon_sym_BQUOTE, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + ACTIONS(11001), 1, + anon_sym_raise, + ACTIONS(11003), 1, + anon_sym_if, + ACTIONS(11005), 1, + anon_sym_while, + STATE(5677), 1, + sym_vid, + STATE(5751), 1, + sym__scon, + STATE(5752), 1, + sym_longvid, + STATE(12375), 1, + sym__exp, + STATE(19054), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(489), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [352820] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19084), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [352932] = 28, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5815), 1, + anon_sym_raise, + ACTIONS(5817), 1, + anon_sym_if, + ACTIONS(5819), 1, + anon_sym_while, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18452), 1, + sym__exp, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4217), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [353044] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19140), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [353156] = 28, + ACTIONS(10389), 1, + sym_integer_scon, + ACTIONS(10393), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10395), 1, + sym__symbolic_ident, + ACTIONS(10397), 1, + anon_sym_LPAREN, + ACTIONS(10399), 1, + anon_sym_op, + ACTIONS(10401), 1, + anon_sym_LBRACE, + ACTIONS(10403), 1, + anon_sym_POUND, + ACTIONS(10405), 1, + anon_sym_LBRACK, + ACTIONS(10407), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10409), 1, + anon_sym_let, + ACTIONS(10411), 1, + anon_sym_raise, + ACTIONS(10413), 1, + anon_sym_if, + ACTIONS(10415), 1, + anon_sym_while, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10421), 1, + anon_sym_u201c, + ACTIONS(10423), 1, + anon_sym_u2018, + ACTIONS(10425), 1, + anon_sym_BQUOTE, + STATE(8871), 1, + sym__scon, + STATE(8892), 1, + sym_vid, + STATE(8909), 1, + sym_longvid, + STATE(15398), 1, + sym__exp, + STATE(19240), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10391), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4081), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [353268] = 28, + ACTIONS(10389), 1, + sym_integer_scon, + ACTIONS(10393), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10395), 1, + sym__symbolic_ident, + ACTIONS(10397), 1, + anon_sym_LPAREN, + ACTIONS(10399), 1, + anon_sym_op, + ACTIONS(10401), 1, + anon_sym_LBRACE, + ACTIONS(10403), 1, + anon_sym_POUND, + ACTIONS(10405), 1, + anon_sym_LBRACK, + ACTIONS(10407), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10409), 1, + anon_sym_let, + ACTIONS(10411), 1, + anon_sym_raise, + ACTIONS(10413), 1, + anon_sym_if, + ACTIONS(10415), 1, + anon_sym_while, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10421), 1, + anon_sym_u201c, + ACTIONS(10423), 1, + anon_sym_u2018, + ACTIONS(10425), 1, + anon_sym_BQUOTE, + STATE(8871), 1, + sym__scon, + STATE(8892), 1, + sym_vid, + STATE(8909), 1, + sym_longvid, + STATE(15422), 1, + sym__exp, + STATE(19240), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10391), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4081), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [353380] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18804), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [353492] = 28, + ACTIONS(2973), 1, + sym_integer_scon, + ACTIONS(2977), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2979), 1, + sym__symbolic_ident, + ACTIONS(2981), 1, + anon_sym_LPAREN, + ACTIONS(2983), 1, + anon_sym_op, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_POUND, + ACTIONS(2989), 1, + anon_sym_LBRACK, + ACTIONS(2991), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2993), 1, + anon_sym_let, + ACTIONS(2995), 1, + anon_sym_u201c, + ACTIONS(2997), 1, + anon_sym_u2018, + ACTIONS(2999), 1, + anon_sym_BQUOTE, + ACTIONS(10227), 1, + anon_sym_raise, + ACTIONS(10229), 1, + anon_sym_if, + ACTIONS(10231), 1, + anon_sym_while, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + STATE(7196), 1, + sym_vid, + STATE(7335), 1, + sym__scon, + STATE(7337), 1, + sym_longvid, + STATE(13029), 1, + sym__exp, + STATE(18945), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2975), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(551), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [353604] = 28, + ACTIONS(2973), 1, + sym_integer_scon, + ACTIONS(2977), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2979), 1, + sym__symbolic_ident, + ACTIONS(2981), 1, + anon_sym_LPAREN, + ACTIONS(2983), 1, + anon_sym_op, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_POUND, + ACTIONS(2989), 1, + anon_sym_LBRACK, + ACTIONS(2991), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2993), 1, + anon_sym_let, + ACTIONS(2995), 1, + anon_sym_u201c, + ACTIONS(2997), 1, + anon_sym_u2018, + ACTIONS(2999), 1, + anon_sym_BQUOTE, + ACTIONS(10227), 1, + anon_sym_raise, + ACTIONS(10229), 1, + anon_sym_if, + ACTIONS(10231), 1, + anon_sym_while, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + STATE(7196), 1, + sym_vid, + STATE(7335), 1, + sym__scon, + STATE(7337), 1, + sym_longvid, + STATE(13030), 1, + sym__exp, + STATE(18945), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2975), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(551), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [353716] = 28, + ACTIONS(2973), 1, + sym_integer_scon, + ACTIONS(2977), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2979), 1, + sym__symbolic_ident, + ACTIONS(2981), 1, + anon_sym_LPAREN, + ACTIONS(2983), 1, + anon_sym_op, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_POUND, + ACTIONS(2989), 1, + anon_sym_LBRACK, + ACTIONS(2991), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2993), 1, + anon_sym_let, + ACTIONS(2995), 1, + anon_sym_u201c, + ACTIONS(2997), 1, + anon_sym_u2018, + ACTIONS(2999), 1, + anon_sym_BQUOTE, + ACTIONS(10227), 1, + anon_sym_raise, + ACTIONS(10229), 1, + anon_sym_if, + ACTIONS(10231), 1, + anon_sym_while, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + STATE(7196), 1, + sym_vid, + STATE(7335), 1, + sym__scon, + STATE(7337), 1, + sym_longvid, + STATE(13123), 1, + sym__exp, + STATE(18945), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2975), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(551), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [353828] = 28, + ACTIONS(2973), 1, + sym_integer_scon, + ACTIONS(2977), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2979), 1, + sym__symbolic_ident, + ACTIONS(2981), 1, + anon_sym_LPAREN, + ACTIONS(2983), 1, + anon_sym_op, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_POUND, + ACTIONS(2989), 1, + anon_sym_LBRACK, + ACTIONS(2991), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2993), 1, + anon_sym_let, + ACTIONS(2995), 1, + anon_sym_u201c, + ACTIONS(2997), 1, + anon_sym_u2018, + ACTIONS(2999), 1, + anon_sym_BQUOTE, + ACTIONS(10227), 1, + anon_sym_raise, + ACTIONS(10229), 1, + anon_sym_if, + ACTIONS(10231), 1, + anon_sym_while, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + STATE(7196), 1, + sym_vid, + STATE(7335), 1, + sym__scon, + STATE(7337), 1, + sym_longvid, + STATE(13298), 1, + sym__exp, + STATE(18945), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2975), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(551), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [353940] = 28, + ACTIONS(2973), 1, + sym_integer_scon, + ACTIONS(2977), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2979), 1, + sym__symbolic_ident, + ACTIONS(2981), 1, + anon_sym_LPAREN, + ACTIONS(2983), 1, + anon_sym_op, + ACTIONS(2985), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + anon_sym_POUND, + ACTIONS(2989), 1, + anon_sym_LBRACK, + ACTIONS(2991), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2993), 1, + anon_sym_let, + ACTIONS(2995), 1, + anon_sym_u201c, + ACTIONS(2997), 1, + anon_sym_u2018, + ACTIONS(2999), 1, + anon_sym_BQUOTE, + ACTIONS(10227), 1, + anon_sym_raise, + ACTIONS(10229), 1, + anon_sym_if, + ACTIONS(10231), 1, + anon_sym_while, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + STATE(7196), 1, + sym_vid, + STATE(7335), 1, + sym__scon, + STATE(7337), 1, + sym_longvid, + STATE(13299), 1, + sym__exp, + STATE(18945), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2975), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(551), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [354052] = 28, + ACTIONS(11007), 1, + sym_integer_scon, + ACTIONS(11011), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11013), 1, + sym__symbolic_ident, + ACTIONS(11015), 1, + anon_sym_LPAREN, + ACTIONS(11017), 1, + anon_sym_op, + ACTIONS(11019), 1, + anon_sym_LBRACE, + ACTIONS(11021), 1, + anon_sym_POUND, + ACTIONS(11023), 1, + anon_sym_LBRACK, + ACTIONS(11025), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11027), 1, + anon_sym_let, + ACTIONS(11029), 1, + anon_sym_raise, + ACTIONS(11031), 1, + anon_sym_if, + ACTIONS(11033), 1, + anon_sym_while, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11039), 1, + anon_sym_u201c, + ACTIONS(11041), 1, + anon_sym_u2018, + ACTIONS(11043), 1, + anon_sym_BQUOTE, + STATE(11567), 1, + sym_vid, + STATE(11766), 1, + sym__scon, + STATE(11780), 1, + sym_longvid, + STATE(18236), 1, + sym__exp, + STATE(18767), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11009), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4273), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [354164] = 28, + ACTIONS(11007), 1, + sym_integer_scon, + ACTIONS(11011), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11013), 1, + sym__symbolic_ident, + ACTIONS(11015), 1, + anon_sym_LPAREN, + ACTIONS(11017), 1, + anon_sym_op, + ACTIONS(11019), 1, + anon_sym_LBRACE, + ACTIONS(11021), 1, + anon_sym_POUND, + ACTIONS(11023), 1, + anon_sym_LBRACK, + ACTIONS(11025), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11027), 1, + anon_sym_let, + ACTIONS(11029), 1, + anon_sym_raise, + ACTIONS(11031), 1, + anon_sym_if, + ACTIONS(11033), 1, + anon_sym_while, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11039), 1, + anon_sym_u201c, + ACTIONS(11041), 1, + anon_sym_u2018, + ACTIONS(11043), 1, + anon_sym_BQUOTE, + STATE(11567), 1, + sym_vid, + STATE(11766), 1, + sym__scon, + STATE(11780), 1, + sym_longvid, + STATE(18419), 1, + sym__exp, + STATE(18767), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11009), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4273), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [354276] = 28, + ACTIONS(11007), 1, + sym_integer_scon, + ACTIONS(11011), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11013), 1, + sym__symbolic_ident, + ACTIONS(11015), 1, + anon_sym_LPAREN, + ACTIONS(11017), 1, + anon_sym_op, + ACTIONS(11019), 1, + anon_sym_LBRACE, + ACTIONS(11021), 1, + anon_sym_POUND, + ACTIONS(11023), 1, + anon_sym_LBRACK, + ACTIONS(11025), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11027), 1, + anon_sym_let, + ACTIONS(11029), 1, + anon_sym_raise, + ACTIONS(11031), 1, + anon_sym_if, + ACTIONS(11033), 1, + anon_sym_while, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11039), 1, + anon_sym_u201c, + ACTIONS(11041), 1, + anon_sym_u2018, + ACTIONS(11043), 1, + anon_sym_BQUOTE, + STATE(11567), 1, + sym_vid, + STATE(11766), 1, + sym__scon, + STATE(11780), 1, + sym_longvid, + STATE(18412), 1, + sym__exp, + STATE(18767), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11009), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4273), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [354388] = 28, + ACTIONS(11007), 1, + sym_integer_scon, + ACTIONS(11011), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11013), 1, + sym__symbolic_ident, + ACTIONS(11015), 1, + anon_sym_LPAREN, + ACTIONS(11017), 1, + anon_sym_op, + ACTIONS(11019), 1, + anon_sym_LBRACE, + ACTIONS(11021), 1, + anon_sym_POUND, + ACTIONS(11023), 1, + anon_sym_LBRACK, + ACTIONS(11025), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11027), 1, + anon_sym_let, + ACTIONS(11029), 1, + anon_sym_raise, + ACTIONS(11031), 1, + anon_sym_if, + ACTIONS(11033), 1, + anon_sym_while, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11039), 1, + anon_sym_u201c, + ACTIONS(11041), 1, + anon_sym_u2018, + ACTIONS(11043), 1, + anon_sym_BQUOTE, + STATE(11567), 1, + sym_vid, + STATE(11766), 1, + sym__scon, + STATE(11780), 1, + sym_longvid, + STATE(18307), 1, + sym__exp, + STATE(18767), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11009), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4273), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [354500] = 28, + ACTIONS(11007), 1, + sym_integer_scon, + ACTIONS(11011), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11013), 1, + sym__symbolic_ident, + ACTIONS(11015), 1, + anon_sym_LPAREN, + ACTIONS(11017), 1, + anon_sym_op, + ACTIONS(11019), 1, + anon_sym_LBRACE, + ACTIONS(11021), 1, + anon_sym_POUND, + ACTIONS(11023), 1, + anon_sym_LBRACK, + ACTIONS(11025), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11027), 1, + anon_sym_let, + ACTIONS(11029), 1, + anon_sym_raise, + ACTIONS(11031), 1, + anon_sym_if, + ACTIONS(11033), 1, + anon_sym_while, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11039), 1, + anon_sym_u201c, + ACTIONS(11041), 1, + anon_sym_u2018, + ACTIONS(11043), 1, + anon_sym_BQUOTE, + STATE(11567), 1, + sym_vid, + STATE(11766), 1, + sym__scon, + STATE(11780), 1, + sym_longvid, + STATE(18308), 1, + sym__exp, + STATE(18767), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11009), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4273), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [354612] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18713), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [354724] = 28, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(11045), 1, + sym_integer_scon, + ACTIONS(11049), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11051), 1, + sym__symbolic_ident, + ACTIONS(11053), 1, + anon_sym_LPAREN, + ACTIONS(11055), 1, + anon_sym_op, + ACTIONS(11057), 1, + anon_sym_LBRACE, + ACTIONS(11059), 1, + anon_sym_POUND, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11065), 1, + anon_sym_let, + ACTIONS(11067), 1, + anon_sym_raise, + ACTIONS(11069), 1, + anon_sym_if, + ACTIONS(11071), 1, + anon_sym_while, + ACTIONS(11073), 1, + anon_sym_u201c, + ACTIONS(11075), 1, + anon_sym_u2018, + ACTIONS(11077), 1, + anon_sym_BQUOTE, + STATE(10611), 1, + sym__scon, + STATE(10612), 1, + sym_longvid, + STATE(10631), 1, + sym_vid, + STATE(17909), 1, + sym__exp, + STATE(19243), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11047), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4158), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [354836] = 28, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(11045), 1, + sym_integer_scon, + ACTIONS(11049), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11051), 1, + sym__symbolic_ident, + ACTIONS(11053), 1, + anon_sym_LPAREN, + ACTIONS(11055), 1, + anon_sym_op, + ACTIONS(11057), 1, + anon_sym_LBRACE, + ACTIONS(11059), 1, + anon_sym_POUND, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11065), 1, + anon_sym_let, + ACTIONS(11067), 1, + anon_sym_raise, + ACTIONS(11069), 1, + anon_sym_if, + ACTIONS(11071), 1, + anon_sym_while, + ACTIONS(11073), 1, + anon_sym_u201c, + ACTIONS(11075), 1, + anon_sym_u2018, + ACTIONS(11077), 1, + anon_sym_BQUOTE, + STATE(10611), 1, + sym__scon, + STATE(10612), 1, + sym_longvid, + STATE(10631), 1, + sym_vid, + STATE(17818), 1, + sym__exp, + STATE(19243), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11047), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4158), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [354948] = 28, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(11045), 1, + sym_integer_scon, + ACTIONS(11049), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11051), 1, + sym__symbolic_ident, + ACTIONS(11053), 1, + anon_sym_LPAREN, + ACTIONS(11055), 1, + anon_sym_op, + ACTIONS(11057), 1, + anon_sym_LBRACE, + ACTIONS(11059), 1, + anon_sym_POUND, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11065), 1, + anon_sym_let, + ACTIONS(11067), 1, + anon_sym_raise, + ACTIONS(11069), 1, + anon_sym_if, + ACTIONS(11071), 1, + anon_sym_while, + ACTIONS(11073), 1, + anon_sym_u201c, + ACTIONS(11075), 1, + anon_sym_u2018, + ACTIONS(11077), 1, + anon_sym_BQUOTE, + STATE(10611), 1, + sym__scon, + STATE(10612), 1, + sym_longvid, + STATE(10631), 1, + sym_vid, + STATE(17898), 1, + sym__exp, + STATE(19243), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11047), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4158), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [355060] = 28, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(11045), 1, + sym_integer_scon, + ACTIONS(11049), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11051), 1, + sym__symbolic_ident, + ACTIONS(11053), 1, + anon_sym_LPAREN, + ACTIONS(11055), 1, + anon_sym_op, + ACTIONS(11057), 1, + anon_sym_LBRACE, + ACTIONS(11059), 1, + anon_sym_POUND, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11065), 1, + anon_sym_let, + ACTIONS(11067), 1, + anon_sym_raise, + ACTIONS(11069), 1, + anon_sym_if, + ACTIONS(11071), 1, + anon_sym_while, + ACTIONS(11073), 1, + anon_sym_u201c, + ACTIONS(11075), 1, + anon_sym_u2018, + ACTIONS(11077), 1, + anon_sym_BQUOTE, + STATE(10611), 1, + sym__scon, + STATE(10612), 1, + sym_longvid, + STATE(10631), 1, + sym_vid, + STATE(17727), 1, + sym__exp, + STATE(19243), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11047), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4158), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [355172] = 28, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(11045), 1, + sym_integer_scon, + ACTIONS(11049), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11051), 1, + sym__symbolic_ident, + ACTIONS(11053), 1, + anon_sym_LPAREN, + ACTIONS(11055), 1, + anon_sym_op, + ACTIONS(11057), 1, + anon_sym_LBRACE, + ACTIONS(11059), 1, + anon_sym_POUND, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11065), 1, + anon_sym_let, + ACTIONS(11067), 1, + anon_sym_raise, + ACTIONS(11069), 1, + anon_sym_if, + ACTIONS(11071), 1, + anon_sym_while, + ACTIONS(11073), 1, + anon_sym_u201c, + ACTIONS(11075), 1, + anon_sym_u2018, + ACTIONS(11077), 1, + anon_sym_BQUOTE, + STATE(10611), 1, + sym__scon, + STATE(10612), 1, + sym_longvid, + STATE(10631), 1, + sym_vid, + STATE(17728), 1, + sym__exp, + STATE(19243), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11047), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4158), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [355284] = 28, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(18803), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [355396] = 28, + ACTIONS(3599), 1, + sym_integer_scon, + ACTIONS(3603), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3605), 1, + sym__symbolic_ident, + ACTIONS(3607), 1, + anon_sym_LPAREN, + ACTIONS(3609), 1, + anon_sym_op, + ACTIONS(3611), 1, + anon_sym_LBRACE, + ACTIONS(3613), 1, + anon_sym_POUND, + ACTIONS(3615), 1, + anon_sym_LBRACK, + ACTIONS(3617), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3619), 1, + anon_sym_let, + ACTIONS(3621), 1, + anon_sym_u201c, + ACTIONS(3623), 1, + anon_sym_u2018, + ACTIONS(3625), 1, + anon_sym_BQUOTE, + ACTIONS(10449), 1, + anon_sym_raise, + ACTIONS(10451), 1, + anon_sym_if, + ACTIONS(10453), 1, + anon_sym_while, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + STATE(7067), 1, + sym__scon, + STATE(7069), 1, + sym_longvid, + STATE(7182), 1, + sym_vid, + STATE(13077), 1, + sym__exp, + STATE(18750), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3601), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(585), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [355508] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13083), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [355620] = 28, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(11085), 1, + sym_integer_scon, + ACTIONS(11089), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11091), 1, + sym__symbolic_ident, + ACTIONS(11093), 1, + anon_sym_LPAREN, + ACTIONS(11095), 1, + anon_sym_op, + ACTIONS(11097), 1, + anon_sym_LBRACE, + ACTIONS(11099), 1, + anon_sym_POUND, + ACTIONS(11101), 1, + anon_sym_LBRACK, + ACTIONS(11103), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11105), 1, + anon_sym_let, + ACTIONS(11107), 1, + anon_sym_raise, + ACTIONS(11109), 1, + anon_sym_if, + ACTIONS(11111), 1, + anon_sym_while, + ACTIONS(11113), 1, + anon_sym_u201c, + ACTIONS(11115), 1, + anon_sym_u2018, + ACTIONS(11117), 1, + anon_sym_BQUOTE, + STATE(10226), 1, + sym_vid, + STATE(10780), 1, + sym__scon, + STATE(10790), 1, + sym_longvid, + STATE(17930), 1, + sym__exp, + STATE(19038), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11087), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4161), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [355732] = 28, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(11085), 1, + sym_integer_scon, + ACTIONS(11089), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11091), 1, + sym__symbolic_ident, + ACTIONS(11093), 1, + anon_sym_LPAREN, + ACTIONS(11095), 1, + anon_sym_op, + ACTIONS(11097), 1, + anon_sym_LBRACE, + ACTIONS(11099), 1, + anon_sym_POUND, + ACTIONS(11101), 1, + anon_sym_LBRACK, + ACTIONS(11103), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11105), 1, + anon_sym_let, + ACTIONS(11107), 1, + anon_sym_raise, + ACTIONS(11109), 1, + anon_sym_if, + ACTIONS(11111), 1, + anon_sym_while, + ACTIONS(11113), 1, + anon_sym_u201c, + ACTIONS(11115), 1, + anon_sym_u2018, + ACTIONS(11117), 1, + anon_sym_BQUOTE, + STATE(10226), 1, + sym_vid, + STATE(10780), 1, + sym__scon, + STATE(10790), 1, + sym_longvid, + STATE(17821), 1, + sym__exp, + STATE(19038), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11087), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4161), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [355844] = 28, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(11085), 1, + sym_integer_scon, + ACTIONS(11089), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11091), 1, + sym__symbolic_ident, + ACTIONS(11093), 1, + anon_sym_LPAREN, + ACTIONS(11095), 1, + anon_sym_op, + ACTIONS(11097), 1, + anon_sym_LBRACE, + ACTIONS(11099), 1, + anon_sym_POUND, + ACTIONS(11101), 1, + anon_sym_LBRACK, + ACTIONS(11103), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11105), 1, + anon_sym_let, + ACTIONS(11107), 1, + anon_sym_raise, + ACTIONS(11109), 1, + anon_sym_if, + ACTIONS(11111), 1, + anon_sym_while, + ACTIONS(11113), 1, + anon_sym_u201c, + ACTIONS(11115), 1, + anon_sym_u2018, + ACTIONS(11117), 1, + anon_sym_BQUOTE, + STATE(10226), 1, + sym_vid, + STATE(10780), 1, + sym__scon, + STATE(10790), 1, + sym_longvid, + STATE(17902), 1, + sym__exp, + STATE(19038), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11087), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4161), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [355956] = 28, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(11085), 1, + sym_integer_scon, + ACTIONS(11089), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11091), 1, + sym__symbolic_ident, + ACTIONS(11093), 1, + anon_sym_LPAREN, + ACTIONS(11095), 1, + anon_sym_op, + ACTIONS(11097), 1, + anon_sym_LBRACE, + ACTIONS(11099), 1, + anon_sym_POUND, + ACTIONS(11101), 1, + anon_sym_LBRACK, + ACTIONS(11103), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11105), 1, + anon_sym_let, + ACTIONS(11107), 1, + anon_sym_raise, + ACTIONS(11109), 1, + anon_sym_if, + ACTIONS(11111), 1, + anon_sym_while, + ACTIONS(11113), 1, + anon_sym_u201c, + ACTIONS(11115), 1, + anon_sym_u2018, + ACTIONS(11117), 1, + anon_sym_BQUOTE, + STATE(10226), 1, + sym_vid, + STATE(10780), 1, + sym__scon, + STATE(10790), 1, + sym_longvid, + STATE(17741), 1, + sym__exp, + STATE(19038), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11087), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4161), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [356068] = 28, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(11085), 1, + sym_integer_scon, + ACTIONS(11089), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11091), 1, + sym__symbolic_ident, + ACTIONS(11093), 1, + anon_sym_LPAREN, + ACTIONS(11095), 1, + anon_sym_op, + ACTIONS(11097), 1, + anon_sym_LBRACE, + ACTIONS(11099), 1, + anon_sym_POUND, + ACTIONS(11101), 1, + anon_sym_LBRACK, + ACTIONS(11103), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11105), 1, + anon_sym_let, + ACTIONS(11107), 1, + anon_sym_raise, + ACTIONS(11109), 1, + anon_sym_if, + ACTIONS(11111), 1, + anon_sym_while, + ACTIONS(11113), 1, + anon_sym_u201c, + ACTIONS(11115), 1, + anon_sym_u2018, + ACTIONS(11117), 1, + anon_sym_BQUOTE, + STATE(10226), 1, + sym_vid, + STATE(10780), 1, + sym__scon, + STATE(10790), 1, + sym_longvid, + STATE(17742), 1, + sym__exp, + STATE(19038), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11087), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4161), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [356180] = 28, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(11119), 1, + sym_integer_scon, + ACTIONS(11123), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11125), 1, + sym__symbolic_ident, + ACTIONS(11127), 1, + anon_sym_LPAREN, + ACTIONS(11129), 1, + anon_sym_op, + ACTIONS(11131), 1, + anon_sym_LBRACE, + ACTIONS(11133), 1, + anon_sym_POUND, + ACTIONS(11135), 1, + anon_sym_LBRACK, + ACTIONS(11137), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11139), 1, + anon_sym_let, + ACTIONS(11141), 1, + anon_sym_raise, + ACTIONS(11143), 1, + anon_sym_if, + ACTIONS(11145), 1, + anon_sym_while, + ACTIONS(11147), 1, + anon_sym_u201c, + ACTIONS(11149), 1, + anon_sym_u2018, + ACTIONS(11151), 1, + anon_sym_BQUOTE, + STATE(11153), 1, + sym__scon, + STATE(11157), 1, + sym_longvid, + STATE(11752), 1, + sym_vid, + STATE(18260), 1, + sym__exp, + STATE(19204), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11121), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4204), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [356292] = 28, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(11119), 1, + sym_integer_scon, + ACTIONS(11123), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11125), 1, + sym__symbolic_ident, + ACTIONS(11127), 1, + anon_sym_LPAREN, + ACTIONS(11129), 1, + anon_sym_op, + ACTIONS(11131), 1, + anon_sym_LBRACE, + ACTIONS(11133), 1, + anon_sym_POUND, + ACTIONS(11135), 1, + anon_sym_LBRACK, + ACTIONS(11137), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11139), 1, + anon_sym_let, + ACTIONS(11141), 1, + anon_sym_raise, + ACTIONS(11143), 1, + anon_sym_if, + ACTIONS(11145), 1, + anon_sym_while, + ACTIONS(11147), 1, + anon_sym_u201c, + ACTIONS(11149), 1, + anon_sym_u2018, + ACTIONS(11151), 1, + anon_sym_BQUOTE, + STATE(11153), 1, + sym__scon, + STATE(11157), 1, + sym_longvid, + STATE(11752), 1, + sym_vid, + STATE(18451), 1, + sym__exp, + STATE(19204), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11121), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4204), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [356404] = 28, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(11119), 1, + sym_integer_scon, + ACTIONS(11123), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11125), 1, + sym__symbolic_ident, + ACTIONS(11127), 1, + anon_sym_LPAREN, + ACTIONS(11129), 1, + anon_sym_op, + ACTIONS(11131), 1, + anon_sym_LBRACE, + ACTIONS(11133), 1, + anon_sym_POUND, + ACTIONS(11135), 1, + anon_sym_LBRACK, + ACTIONS(11137), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11139), 1, + anon_sym_let, + ACTIONS(11141), 1, + anon_sym_raise, + ACTIONS(11143), 1, + anon_sym_if, + ACTIONS(11145), 1, + anon_sym_while, + ACTIONS(11147), 1, + anon_sym_u201c, + ACTIONS(11149), 1, + anon_sym_u2018, + ACTIONS(11151), 1, + anon_sym_BQUOTE, + STATE(11153), 1, + sym__scon, + STATE(11157), 1, + sym_longvid, + STATE(11752), 1, + sym_vid, + STATE(18448), 1, + sym__exp, + STATE(19204), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11121), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4204), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [356516] = 28, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(11119), 1, + sym_integer_scon, + ACTIONS(11123), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11125), 1, + sym__symbolic_ident, + ACTIONS(11127), 1, + anon_sym_LPAREN, + ACTIONS(11129), 1, + anon_sym_op, + ACTIONS(11131), 1, + anon_sym_LBRACE, + ACTIONS(11133), 1, + anon_sym_POUND, + ACTIONS(11135), 1, + anon_sym_LBRACK, + ACTIONS(11137), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11139), 1, + anon_sym_let, + ACTIONS(11141), 1, + anon_sym_raise, + ACTIONS(11143), 1, + anon_sym_if, + ACTIONS(11145), 1, + anon_sym_while, + ACTIONS(11147), 1, + anon_sym_u201c, + ACTIONS(11149), 1, + anon_sym_u2018, + ACTIONS(11151), 1, + anon_sym_BQUOTE, + STATE(11153), 1, + sym__scon, + STATE(11157), 1, + sym_longvid, + STATE(11752), 1, + sym_vid, + STATE(18347), 1, + sym__exp, + STATE(19204), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11121), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4204), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [356628] = 28, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(11119), 1, + sym_integer_scon, + ACTIONS(11123), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11125), 1, + sym__symbolic_ident, + ACTIONS(11127), 1, + anon_sym_LPAREN, + ACTIONS(11129), 1, + anon_sym_op, + ACTIONS(11131), 1, + anon_sym_LBRACE, + ACTIONS(11133), 1, + anon_sym_POUND, + ACTIONS(11135), 1, + anon_sym_LBRACK, + ACTIONS(11137), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11139), 1, + anon_sym_let, + ACTIONS(11141), 1, + anon_sym_raise, + ACTIONS(11143), 1, + anon_sym_if, + ACTIONS(11145), 1, + anon_sym_while, + ACTIONS(11147), 1, + anon_sym_u201c, + ACTIONS(11149), 1, + anon_sym_u2018, + ACTIONS(11151), 1, + anon_sym_BQUOTE, + STATE(11153), 1, + sym__scon, + STATE(11157), 1, + sym_longvid, + STATE(11752), 1, + sym_vid, + STATE(18348), 1, + sym__exp, + STATE(19204), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11121), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4204), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [356740] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19139), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [356852] = 28, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(11153), 1, + sym_integer_scon, + ACTIONS(11157), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11159), 1, + sym__symbolic_ident, + ACTIONS(11161), 1, + anon_sym_LPAREN, + ACTIONS(11163), 1, + anon_sym_op, + ACTIONS(11165), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_POUND, + ACTIONS(11169), 1, + anon_sym_LBRACK, + ACTIONS(11171), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11173), 1, + anon_sym_let, + ACTIONS(11175), 1, + anon_sym_raise, + ACTIONS(11177), 1, + anon_sym_if, + ACTIONS(11179), 1, + anon_sym_while, + ACTIONS(11181), 1, + anon_sym_u201c, + ACTIONS(11183), 1, + anon_sym_u2018, + ACTIONS(11185), 1, + anon_sym_BQUOTE, + STATE(10363), 1, + sym_vid, + STATE(10926), 1, + sym__scon, + STATE(10928), 1, + sym_longvid, + STATE(17940), 1, + sym__exp, + STATE(19259), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11155), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4165), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [356964] = 28, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(11153), 1, + sym_integer_scon, + ACTIONS(11157), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11159), 1, + sym__symbolic_ident, + ACTIONS(11161), 1, + anon_sym_LPAREN, + ACTIONS(11163), 1, + anon_sym_op, + ACTIONS(11165), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_POUND, + ACTIONS(11169), 1, + anon_sym_LBRACK, + ACTIONS(11171), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11173), 1, + anon_sym_let, + ACTIONS(11175), 1, + anon_sym_raise, + ACTIONS(11177), 1, + anon_sym_if, + ACTIONS(11179), 1, + anon_sym_while, + ACTIONS(11181), 1, + anon_sym_u201c, + ACTIONS(11183), 1, + anon_sym_u2018, + ACTIONS(11185), 1, + anon_sym_BQUOTE, + STATE(10363), 1, + sym_vid, + STATE(10926), 1, + sym__scon, + STATE(10928), 1, + sym_longvid, + STATE(17827), 1, + sym__exp, + STATE(19259), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11155), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4165), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [357076] = 28, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(11153), 1, + sym_integer_scon, + ACTIONS(11157), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11159), 1, + sym__symbolic_ident, + ACTIONS(11161), 1, + anon_sym_LPAREN, + ACTIONS(11163), 1, + anon_sym_op, + ACTIONS(11165), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_POUND, + ACTIONS(11169), 1, + anon_sym_LBRACK, + ACTIONS(11171), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11173), 1, + anon_sym_let, + ACTIONS(11175), 1, + anon_sym_raise, + ACTIONS(11177), 1, + anon_sym_if, + ACTIONS(11179), 1, + anon_sym_while, + ACTIONS(11181), 1, + anon_sym_u201c, + ACTIONS(11183), 1, + anon_sym_u2018, + ACTIONS(11185), 1, + anon_sym_BQUOTE, + STATE(10363), 1, + sym_vid, + STATE(10926), 1, + sym__scon, + STATE(10928), 1, + sym_longvid, + STATE(17904), 1, + sym__exp, + STATE(19259), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11155), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4165), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [357188] = 28, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(11153), 1, + sym_integer_scon, + ACTIONS(11157), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11159), 1, + sym__symbolic_ident, + ACTIONS(11161), 1, + anon_sym_LPAREN, + ACTIONS(11163), 1, + anon_sym_op, + ACTIONS(11165), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_POUND, + ACTIONS(11169), 1, + anon_sym_LBRACK, + ACTIONS(11171), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11173), 1, + anon_sym_let, + ACTIONS(11175), 1, + anon_sym_raise, + ACTIONS(11177), 1, + anon_sym_if, + ACTIONS(11179), 1, + anon_sym_while, + ACTIONS(11181), 1, + anon_sym_u201c, + ACTIONS(11183), 1, + anon_sym_u2018, + ACTIONS(11185), 1, + anon_sym_BQUOTE, + STATE(10363), 1, + sym_vid, + STATE(10926), 1, + sym__scon, + STATE(10928), 1, + sym_longvid, + STATE(17760), 1, + sym__exp, + STATE(19259), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11155), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4165), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [357300] = 28, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(11153), 1, + sym_integer_scon, + ACTIONS(11157), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11159), 1, + sym__symbolic_ident, + ACTIONS(11161), 1, + anon_sym_LPAREN, + ACTIONS(11163), 1, + anon_sym_op, + ACTIONS(11165), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_POUND, + ACTIONS(11169), 1, + anon_sym_LBRACK, + ACTIONS(11171), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11173), 1, + anon_sym_let, + ACTIONS(11175), 1, + anon_sym_raise, + ACTIONS(11177), 1, + anon_sym_if, + ACTIONS(11179), 1, + anon_sym_while, + ACTIONS(11181), 1, + anon_sym_u201c, + ACTIONS(11183), 1, + anon_sym_u2018, + ACTIONS(11185), 1, + anon_sym_BQUOTE, + STATE(10363), 1, + sym_vid, + STATE(10926), 1, + sym__scon, + STATE(10928), 1, + sym_longvid, + STATE(17761), 1, + sym__exp, + STATE(19259), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11155), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4165), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [357412] = 28, + ACTIONS(5649), 1, + sym_integer_scon, + ACTIONS(5653), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5655), 1, + sym__symbolic_ident, + ACTIONS(5657), 1, + anon_sym_LPAREN, + ACTIONS(5659), 1, + anon_sym_op, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(5663), 1, + anon_sym_POUND, + ACTIONS(5665), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5669), 1, + anon_sym_let, + ACTIONS(5671), 1, + anon_sym_u201c, + ACTIONS(5673), 1, + anon_sym_u2018, + ACTIONS(5675), 1, + anon_sym_BQUOTE, + ACTIONS(10569), 1, + anon_sym_raise, + ACTIONS(10571), 1, + anon_sym_if, + ACTIONS(10573), 1, + anon_sym_while, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + STATE(7660), 1, + sym__scon, + STATE(7661), 1, + sym_longvid, + STATE(7832), 1, + sym_vid, + STATE(13389), 1, + sym__exp, + STATE(18984), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5651), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1103), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [357524] = 28, + ACTIONS(5719), 1, + sym_integer_scon, + ACTIONS(5723), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5725), 1, + sym__symbolic_ident, + ACTIONS(5727), 1, + anon_sym_LPAREN, + ACTIONS(5729), 1, + anon_sym_op, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(5733), 1, + anon_sym_POUND, + ACTIONS(5735), 1, + anon_sym_LBRACK, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5739), 1, + anon_sym_let, + ACTIONS(5741), 1, + anon_sym_u201c, + ACTIONS(5743), 1, + anon_sym_u2018, + ACTIONS(5745), 1, + anon_sym_BQUOTE, + ACTIONS(10617), 1, + anon_sym_raise, + ACTIONS(10619), 1, + anon_sym_if, + ACTIONS(10621), 1, + anon_sym_while, + ACTIONS(10623), 1, + anon_sym_case, + ACTIONS(10625), 1, + anon_sym_fn, + STATE(7715), 1, + sym__scon, + STATE(7717), 1, + sym_longvid, + STATE(7836), 1, + sym_vid, + STATE(13362), 1, + sym__exp, + STATE(19108), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5721), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [357636] = 28, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(11187), 1, + sym_integer_scon, + ACTIONS(11191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11193), 1, + sym__symbolic_ident, + ACTIONS(11195), 1, + anon_sym_LPAREN, + ACTIONS(11197), 1, + anon_sym_op, + ACTIONS(11199), 1, + anon_sym_LBRACE, + ACTIONS(11201), 1, + anon_sym_POUND, + ACTIONS(11203), 1, + anon_sym_LBRACK, + ACTIONS(11205), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11207), 1, + anon_sym_let, + ACTIONS(11209), 1, + anon_sym_raise, + ACTIONS(11211), 1, + anon_sym_if, + ACTIONS(11213), 1, + anon_sym_while, + ACTIONS(11215), 1, + anon_sym_u201c, + ACTIONS(11217), 1, + anon_sym_u2018, + ACTIONS(11219), 1, + anon_sym_BQUOTE, + STATE(11407), 1, + sym__scon, + STATE(11413), 1, + sym_longvid, + STATE(11743), 1, + sym_vid, + STATE(18294), 1, + sym__exp, + STATE(19106), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11189), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4255), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [357748] = 28, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(11221), 1, + sym_integer_scon, + ACTIONS(11225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11227), 1, + sym__symbolic_ident, + ACTIONS(11229), 1, + anon_sym_LPAREN, + ACTIONS(11231), 1, + anon_sym_op, + ACTIONS(11233), 1, + anon_sym_LBRACE, + ACTIONS(11235), 1, + anon_sym_POUND, + ACTIONS(11237), 1, + anon_sym_LBRACK, + ACTIONS(11239), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11241), 1, + anon_sym_let, + ACTIONS(11243), 1, + anon_sym_raise, + ACTIONS(11245), 1, + anon_sym_if, + ACTIONS(11247), 1, + anon_sym_while, + ACTIONS(11249), 1, + anon_sym_u201c, + ACTIONS(11251), 1, + anon_sym_u2018, + ACTIONS(11253), 1, + anon_sym_BQUOTE, + STATE(10688), 1, + sym_vid, + STATE(10765), 1, + sym_longvid, + STATE(11018), 1, + sym__scon, + STATE(17706), 1, + sym__exp, + STATE(18998), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11223), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4137), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [357860] = 28, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(11221), 1, + sym_integer_scon, + ACTIONS(11225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11227), 1, + sym__symbolic_ident, + ACTIONS(11229), 1, + anon_sym_LPAREN, + ACTIONS(11231), 1, + anon_sym_op, + ACTIONS(11233), 1, + anon_sym_LBRACE, + ACTIONS(11235), 1, + anon_sym_POUND, + ACTIONS(11237), 1, + anon_sym_LBRACK, + ACTIONS(11239), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11241), 1, + anon_sym_let, + ACTIONS(11243), 1, + anon_sym_raise, + ACTIONS(11245), 1, + anon_sym_if, + ACTIONS(11247), 1, + anon_sym_while, + ACTIONS(11249), 1, + anon_sym_u201c, + ACTIONS(11251), 1, + anon_sym_u2018, + ACTIONS(11253), 1, + anon_sym_BQUOTE, + STATE(10688), 1, + sym_vid, + STATE(10765), 1, + sym_longvid, + STATE(11018), 1, + sym__scon, + STATE(17832), 1, + sym__exp, + STATE(18998), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11223), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4137), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [357972] = 28, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(11221), 1, + sym_integer_scon, + ACTIONS(11225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11227), 1, + sym__symbolic_ident, + ACTIONS(11229), 1, + anon_sym_LPAREN, + ACTIONS(11231), 1, + anon_sym_op, + ACTIONS(11233), 1, + anon_sym_LBRACE, + ACTIONS(11235), 1, + anon_sym_POUND, + ACTIONS(11237), 1, + anon_sym_LBRACK, + ACTIONS(11239), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11241), 1, + anon_sym_let, + ACTIONS(11243), 1, + anon_sym_raise, + ACTIONS(11245), 1, + anon_sym_if, + ACTIONS(11247), 1, + anon_sym_while, + ACTIONS(11249), 1, + anon_sym_u201c, + ACTIONS(11251), 1, + anon_sym_u2018, + ACTIONS(11253), 1, + anon_sym_BQUOTE, + STATE(10688), 1, + sym_vid, + STATE(10765), 1, + sym_longvid, + STATE(11018), 1, + sym__scon, + STATE(17907), 1, + sym__exp, + STATE(18998), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11223), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4137), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [358084] = 28, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(11221), 1, + sym_integer_scon, + ACTIONS(11225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11227), 1, + sym__symbolic_ident, + ACTIONS(11229), 1, + anon_sym_LPAREN, + ACTIONS(11231), 1, + anon_sym_op, + ACTIONS(11233), 1, + anon_sym_LBRACE, + ACTIONS(11235), 1, + anon_sym_POUND, + ACTIONS(11237), 1, + anon_sym_LBRACK, + ACTIONS(11239), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11241), 1, + anon_sym_let, + ACTIONS(11243), 1, + anon_sym_raise, + ACTIONS(11245), 1, + anon_sym_if, + ACTIONS(11247), 1, + anon_sym_while, + ACTIONS(11249), 1, + anon_sym_u201c, + ACTIONS(11251), 1, + anon_sym_u2018, + ACTIONS(11253), 1, + anon_sym_BQUOTE, + STATE(10688), 1, + sym_vid, + STATE(10765), 1, + sym_longvid, + STATE(11018), 1, + sym__scon, + STATE(17768), 1, + sym__exp, + STATE(18998), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11223), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4137), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [358196] = 28, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(11221), 1, + sym_integer_scon, + ACTIONS(11225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11227), 1, + sym__symbolic_ident, + ACTIONS(11229), 1, + anon_sym_LPAREN, + ACTIONS(11231), 1, + anon_sym_op, + ACTIONS(11233), 1, + anon_sym_LBRACE, + ACTIONS(11235), 1, + anon_sym_POUND, + ACTIONS(11237), 1, + anon_sym_LBRACK, + ACTIONS(11239), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11241), 1, + anon_sym_let, + ACTIONS(11243), 1, + anon_sym_raise, + ACTIONS(11245), 1, + anon_sym_if, + ACTIONS(11247), 1, + anon_sym_while, + ACTIONS(11249), 1, + anon_sym_u201c, + ACTIONS(11251), 1, + anon_sym_u2018, + ACTIONS(11253), 1, + anon_sym_BQUOTE, + STATE(10688), 1, + sym_vid, + STATE(10765), 1, + sym_longvid, + STATE(11018), 1, + sym__scon, + STATE(17769), 1, + sym__exp, + STATE(18998), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11223), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4137), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [358308] = 28, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(11187), 1, + sym_integer_scon, + ACTIONS(11191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11193), 1, + sym__symbolic_ident, + ACTIONS(11195), 1, + anon_sym_LPAREN, + ACTIONS(11197), 1, + anon_sym_op, + ACTIONS(11199), 1, + anon_sym_LBRACE, + ACTIONS(11201), 1, + anon_sym_POUND, + ACTIONS(11203), 1, + anon_sym_LBRACK, + ACTIONS(11205), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11207), 1, + anon_sym_let, + ACTIONS(11209), 1, + anon_sym_raise, + ACTIONS(11211), 1, + anon_sym_if, + ACTIONS(11213), 1, + anon_sym_while, + ACTIONS(11215), 1, + anon_sym_u201c, + ACTIONS(11217), 1, + anon_sym_u2018, + ACTIONS(11219), 1, + anon_sym_BQUOTE, + STATE(11407), 1, + sym__scon, + STATE(11413), 1, + sym_longvid, + STATE(11743), 1, + sym_vid, + STATE(18476), 1, + sym__exp, + STATE(19106), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11189), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4255), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [358420] = 28, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(11187), 1, + sym_integer_scon, + ACTIONS(11191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11193), 1, + sym__symbolic_ident, + ACTIONS(11195), 1, + anon_sym_LPAREN, + ACTIONS(11197), 1, + anon_sym_op, + ACTIONS(11199), 1, + anon_sym_LBRACE, + ACTIONS(11201), 1, + anon_sym_POUND, + ACTIONS(11203), 1, + anon_sym_LBRACK, + ACTIONS(11205), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11207), 1, + anon_sym_let, + ACTIONS(11209), 1, + anon_sym_raise, + ACTIONS(11211), 1, + anon_sym_if, + ACTIONS(11213), 1, + anon_sym_while, + ACTIONS(11215), 1, + anon_sym_u201c, + ACTIONS(11217), 1, + anon_sym_u2018, + ACTIONS(11219), 1, + anon_sym_BQUOTE, + STATE(11407), 1, + sym__scon, + STATE(11413), 1, + sym_longvid, + STATE(11743), 1, + sym_vid, + STATE(18470), 1, + sym__exp, + STATE(19106), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11189), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4255), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [358532] = 28, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(11187), 1, + sym_integer_scon, + ACTIONS(11191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11193), 1, + sym__symbolic_ident, + ACTIONS(11195), 1, + anon_sym_LPAREN, + ACTIONS(11197), 1, + anon_sym_op, + ACTIONS(11199), 1, + anon_sym_LBRACE, + ACTIONS(11201), 1, + anon_sym_POUND, + ACTIONS(11203), 1, + anon_sym_LBRACK, + ACTIONS(11205), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11207), 1, + anon_sym_let, + ACTIONS(11209), 1, + anon_sym_raise, + ACTIONS(11211), 1, + anon_sym_if, + ACTIONS(11213), 1, + anon_sym_while, + ACTIONS(11215), 1, + anon_sym_u201c, + ACTIONS(11217), 1, + anon_sym_u2018, + ACTIONS(11219), 1, + anon_sym_BQUOTE, + STATE(11407), 1, + sym__scon, + STATE(11413), 1, + sym_longvid, + STATE(11743), 1, + sym_vid, + STATE(18384), 1, + sym__exp, + STATE(19106), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11189), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4255), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [358644] = 28, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(11187), 1, + sym_integer_scon, + ACTIONS(11191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11193), 1, + sym__symbolic_ident, + ACTIONS(11195), 1, + anon_sym_LPAREN, + ACTIONS(11197), 1, + anon_sym_op, + ACTIONS(11199), 1, + anon_sym_LBRACE, + ACTIONS(11201), 1, + anon_sym_POUND, + ACTIONS(11203), 1, + anon_sym_LBRACK, + ACTIONS(11205), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11207), 1, + anon_sym_let, + ACTIONS(11209), 1, + anon_sym_raise, + ACTIONS(11211), 1, + anon_sym_if, + ACTIONS(11213), 1, + anon_sym_while, + ACTIONS(11215), 1, + anon_sym_u201c, + ACTIONS(11217), 1, + anon_sym_u2018, + ACTIONS(11219), 1, + anon_sym_BQUOTE, + STATE(11407), 1, + sym__scon, + STATE(11413), 1, + sym_longvid, + STATE(11743), 1, + sym_vid, + STATE(18385), 1, + sym__exp, + STATE(19106), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11189), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4255), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [358756] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9265), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [358868] = 28, + ACTIONS(10263), 1, + sym_integer_scon, + ACTIONS(10267), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10269), 1, + sym__symbolic_ident, + ACTIONS(10271), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_op, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10277), 1, + anon_sym_POUND, + ACTIONS(10279), 1, + anon_sym_LBRACK, + ACTIONS(10281), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10283), 1, + anon_sym_let, + ACTIONS(10285), 1, + anon_sym_raise, + ACTIONS(10287), 1, + anon_sym_if, + ACTIONS(10289), 1, + anon_sym_while, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10295), 1, + anon_sym_u201c, + ACTIONS(10297), 1, + anon_sym_u2018, + ACTIONS(10299), 1, + anon_sym_BQUOTE, + STATE(10294), 1, + sym_vid, + STATE(10934), 1, + sym__scon, + STATE(10938), 1, + sym_longvid, + STATE(17927), 1, + sym__exp, + STATE(18723), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10265), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4144), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [358980] = 28, + ACTIONS(10263), 1, + sym_integer_scon, + ACTIONS(10267), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10269), 1, + sym__symbolic_ident, + ACTIONS(10271), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_op, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10277), 1, + anon_sym_POUND, + ACTIONS(10279), 1, + anon_sym_LBRACK, + ACTIONS(10281), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10283), 1, + anon_sym_let, + ACTIONS(10285), 1, + anon_sym_raise, + ACTIONS(10287), 1, + anon_sym_if, + ACTIONS(10289), 1, + anon_sym_while, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10295), 1, + anon_sym_u201c, + ACTIONS(10297), 1, + anon_sym_u2018, + ACTIONS(10299), 1, + anon_sym_BQUOTE, + STATE(10294), 1, + sym_vid, + STATE(10934), 1, + sym__scon, + STATE(10938), 1, + sym_longvid, + STATE(17826), 1, + sym__exp, + STATE(18723), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10265), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4144), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [359092] = 28, + ACTIONS(3043), 1, + sym_integer_scon, + ACTIONS(3047), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3049), 1, + sym__symbolic_ident, + ACTIONS(3051), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, + anon_sym_op, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, + anon_sym_POUND, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3061), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3063), 1, + anon_sym_let, + ACTIONS(3065), 1, + anon_sym_u201c, + ACTIONS(3067), 1, + anon_sym_u2018, + ACTIONS(3069), 1, + anon_sym_BQUOTE, + ACTIONS(11255), 1, + anon_sym_raise, + ACTIONS(11257), 1, + anon_sym_if, + ACTIONS(11259), 1, + anon_sym_while, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + STATE(6577), 1, + sym_vid, + STATE(7195), 1, + sym__scon, + STATE(7197), 1, + sym_longvid, + STATE(13032), 1, + sym__exp, + STATE(18709), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(554), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [359204] = 28, + ACTIONS(3043), 1, + sym_integer_scon, + ACTIONS(3047), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3049), 1, + sym__symbolic_ident, + ACTIONS(3051), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, + anon_sym_op, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, + anon_sym_POUND, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3061), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3063), 1, + anon_sym_let, + ACTIONS(3065), 1, + anon_sym_u201c, + ACTIONS(3067), 1, + anon_sym_u2018, + ACTIONS(3069), 1, + anon_sym_BQUOTE, + ACTIONS(11255), 1, + anon_sym_raise, + ACTIONS(11257), 1, + anon_sym_if, + ACTIONS(11259), 1, + anon_sym_while, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + STATE(6577), 1, + sym_vid, + STATE(7195), 1, + sym__scon, + STATE(7197), 1, + sym_longvid, + STATE(13033), 1, + sym__exp, + STATE(18709), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(554), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [359316] = 28, + ACTIONS(3043), 1, + sym_integer_scon, + ACTIONS(3047), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3049), 1, + sym__symbolic_ident, + ACTIONS(3051), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, + anon_sym_op, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, + anon_sym_POUND, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3061), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3063), 1, + anon_sym_let, + ACTIONS(3065), 1, + anon_sym_u201c, + ACTIONS(3067), 1, + anon_sym_u2018, + ACTIONS(3069), 1, + anon_sym_BQUOTE, + ACTIONS(11255), 1, + anon_sym_raise, + ACTIONS(11257), 1, + anon_sym_if, + ACTIONS(11259), 1, + anon_sym_while, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + STATE(6577), 1, + sym_vid, + STATE(7195), 1, + sym__scon, + STATE(7197), 1, + sym_longvid, + STATE(13133), 1, + sym__exp, + STATE(18709), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(554), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [359428] = 28, + ACTIONS(3043), 1, + sym_integer_scon, + ACTIONS(3047), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3049), 1, + sym__symbolic_ident, + ACTIONS(3051), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, + anon_sym_op, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, + anon_sym_POUND, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3061), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3063), 1, + anon_sym_let, + ACTIONS(3065), 1, + anon_sym_u201c, + ACTIONS(3067), 1, + anon_sym_u2018, + ACTIONS(3069), 1, + anon_sym_BQUOTE, + ACTIONS(11255), 1, + anon_sym_raise, + ACTIONS(11257), 1, + anon_sym_if, + ACTIONS(11259), 1, + anon_sym_while, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + STATE(6577), 1, + sym_vid, + STATE(7195), 1, + sym__scon, + STATE(7197), 1, + sym_longvid, + STATE(13307), 1, + sym__exp, + STATE(18709), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(554), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [359540] = 28, + ACTIONS(3043), 1, + sym_integer_scon, + ACTIONS(3047), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3049), 1, + sym__symbolic_ident, + ACTIONS(3051), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, + anon_sym_op, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, + anon_sym_POUND, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3061), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3063), 1, + anon_sym_let, + ACTIONS(3065), 1, + anon_sym_u201c, + ACTIONS(3067), 1, + anon_sym_u2018, + ACTIONS(3069), 1, + anon_sym_BQUOTE, + ACTIONS(11255), 1, + anon_sym_raise, + ACTIONS(11257), 1, + anon_sym_if, + ACTIONS(11259), 1, + anon_sym_while, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + STATE(6577), 1, + sym_vid, + STATE(7195), 1, + sym__scon, + STATE(7197), 1, + sym_longvid, + STATE(13308), 1, + sym__exp, + STATE(18709), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(554), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [359652] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9304), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [359764] = 28, + ACTIONS(1327), 1, + sym_integer_scon, + ACTIONS(1331), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1333), 1, + sym__symbolic_ident, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + anon_sym_op, + ACTIONS(1339), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_POUND, + ACTIONS(1343), 1, + anon_sym_LBRACK, + ACTIONS(1345), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1347), 1, + anon_sym_let, + ACTIONS(1349), 1, + anon_sym_u201c, + ACTIONS(1351), 1, + anon_sym_u2018, + ACTIONS(1353), 1, + anon_sym_BQUOTE, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + ACTIONS(11265), 1, + anon_sym_raise, + ACTIONS(11267), 1, + anon_sym_if, + ACTIONS(11269), 1, + anon_sym_while, + STATE(4944), 1, + sym_vid, + STATE(5123), 1, + sym__scon, + STATE(5127), 1, + sym_longvid, + STATE(9849), 1, + sym__exp, + STATE(19209), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1329), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(480), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [359876] = 28, + ACTIONS(1327), 1, + sym_integer_scon, + ACTIONS(1331), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1333), 1, + sym__symbolic_ident, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + anon_sym_op, + ACTIONS(1339), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_POUND, + ACTIONS(1343), 1, + anon_sym_LBRACK, + ACTIONS(1345), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1347), 1, + anon_sym_let, + ACTIONS(1349), 1, + anon_sym_u201c, + ACTIONS(1351), 1, + anon_sym_u2018, + ACTIONS(1353), 1, + anon_sym_BQUOTE, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + ACTIONS(11265), 1, + anon_sym_raise, + ACTIONS(11267), 1, + anon_sym_if, + ACTIONS(11269), 1, + anon_sym_while, + STATE(4944), 1, + sym_vid, + STATE(5123), 1, + sym__scon, + STATE(5127), 1, + sym_longvid, + STATE(9499), 1, + sym__exp, + STATE(19209), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1329), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(480), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [359988] = 28, + ACTIONS(1327), 1, + sym_integer_scon, + ACTIONS(1331), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1333), 1, + sym__symbolic_ident, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + anon_sym_op, + ACTIONS(1339), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_POUND, + ACTIONS(1343), 1, + anon_sym_LBRACK, + ACTIONS(1345), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1347), 1, + anon_sym_let, + ACTIONS(1349), 1, + anon_sym_u201c, + ACTIONS(1351), 1, + anon_sym_u2018, + ACTIONS(1353), 1, + anon_sym_BQUOTE, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + ACTIONS(11265), 1, + anon_sym_raise, + ACTIONS(11267), 1, + anon_sym_if, + ACTIONS(11269), 1, + anon_sym_while, + STATE(4944), 1, + sym_vid, + STATE(5123), 1, + sym__scon, + STATE(5127), 1, + sym_longvid, + STATE(9915), 1, + sym__exp, + STATE(19209), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1329), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(480), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [360100] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9305), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [360212] = 28, + ACTIONS(1327), 1, + sym_integer_scon, + ACTIONS(1331), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1333), 1, + sym__symbolic_ident, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + anon_sym_op, + ACTIONS(1339), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_POUND, + ACTIONS(1343), 1, + anon_sym_LBRACK, + ACTIONS(1345), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1347), 1, + anon_sym_let, + ACTIONS(1349), 1, + anon_sym_u201c, + ACTIONS(1351), 1, + anon_sym_u2018, + ACTIONS(1353), 1, + anon_sym_BQUOTE, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + ACTIONS(11265), 1, + anon_sym_raise, + ACTIONS(11267), 1, + anon_sym_if, + ACTIONS(11269), 1, + anon_sym_while, + STATE(4944), 1, + sym_vid, + STATE(5123), 1, + sym__scon, + STATE(5127), 1, + sym_longvid, + STATE(9916), 1, + sym__exp, + STATE(19209), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1329), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(480), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [360324] = 28, + ACTIONS(1327), 1, + sym_integer_scon, + ACTIONS(1331), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1333), 1, + sym__symbolic_ident, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + anon_sym_op, + ACTIONS(1339), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_POUND, + ACTIONS(1343), 1, + anon_sym_LBRACK, + ACTIONS(1345), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1347), 1, + anon_sym_let, + ACTIONS(1349), 1, + anon_sym_u201c, + ACTIONS(1351), 1, + anon_sym_u2018, + ACTIONS(1353), 1, + anon_sym_BQUOTE, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + ACTIONS(11265), 1, + anon_sym_raise, + ACTIONS(11267), 1, + anon_sym_if, + ACTIONS(11269), 1, + anon_sym_while, + STATE(4944), 1, + sym_vid, + STATE(5123), 1, + sym__scon, + STATE(5127), 1, + sym_longvid, + STATE(9917), 1, + sym__exp, + STATE(19209), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1329), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(480), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [360436] = 28, + ACTIONS(2265), 1, + sym_integer_scon, + ACTIONS(2269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2271), 1, + sym__symbolic_ident, + ACTIONS(2273), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_op, + ACTIONS(2277), 1, + anon_sym_LBRACE, + ACTIONS(2279), 1, + anon_sym_POUND, + ACTIONS(2281), 1, + anon_sym_LBRACK, + ACTIONS(2283), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2285), 1, + anon_sym_let, + ACTIONS(2287), 1, + anon_sym_u201c, + ACTIONS(2289), 1, + anon_sym_u2018, + ACTIONS(2291), 1, + anon_sym_BQUOTE, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + ACTIONS(11271), 1, + anon_sym_raise, + ACTIONS(11273), 1, + anon_sym_if, + ACTIONS(11275), 1, + anon_sym_while, + STATE(5951), 1, + sym_vid, + STATE(5956), 1, + sym__scon, + STATE(5958), 1, + sym_longvid, + STATE(12800), 1, + sym__exp, + STATE(18970), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2267), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(519), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [360548] = 28, + ACTIONS(2265), 1, + sym_integer_scon, + ACTIONS(2269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2271), 1, + sym__symbolic_ident, + ACTIONS(2273), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_op, + ACTIONS(2277), 1, + anon_sym_LBRACE, + ACTIONS(2279), 1, + anon_sym_POUND, + ACTIONS(2281), 1, + anon_sym_LBRACK, + ACTIONS(2283), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2285), 1, + anon_sym_let, + ACTIONS(2287), 1, + anon_sym_u201c, + ACTIONS(2289), 1, + anon_sym_u2018, + ACTIONS(2291), 1, + anon_sym_BQUOTE, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + ACTIONS(11271), 1, + anon_sym_raise, + ACTIONS(11273), 1, + anon_sym_if, + ACTIONS(11275), 1, + anon_sym_while, + STATE(5951), 1, + sym_vid, + STATE(5956), 1, + sym__scon, + STATE(5958), 1, + sym_longvid, + STATE(12801), 1, + sym__exp, + STATE(18970), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2267), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(519), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [360660] = 28, + ACTIONS(2265), 1, + sym_integer_scon, + ACTIONS(2269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2271), 1, + sym__symbolic_ident, + ACTIONS(2273), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_op, + ACTIONS(2277), 1, + anon_sym_LBRACE, + ACTIONS(2279), 1, + anon_sym_POUND, + ACTIONS(2281), 1, + anon_sym_LBRACK, + ACTIONS(2283), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2285), 1, + anon_sym_let, + ACTIONS(2287), 1, + anon_sym_u201c, + ACTIONS(2289), 1, + anon_sym_u2018, + ACTIONS(2291), 1, + anon_sym_BQUOTE, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + ACTIONS(11271), 1, + anon_sym_raise, + ACTIONS(11273), 1, + anon_sym_if, + ACTIONS(11275), 1, + anon_sym_while, + STATE(5951), 1, + sym_vid, + STATE(5956), 1, + sym__scon, + STATE(5958), 1, + sym_longvid, + STATE(12873), 1, + sym__exp, + STATE(18970), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2267), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(519), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [360772] = 28, + ACTIONS(2265), 1, + sym_integer_scon, + ACTIONS(2269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2271), 1, + sym__symbolic_ident, + ACTIONS(2273), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_op, + ACTIONS(2277), 1, + anon_sym_LBRACE, + ACTIONS(2279), 1, + anon_sym_POUND, + ACTIONS(2281), 1, + anon_sym_LBRACK, + ACTIONS(2283), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2285), 1, + anon_sym_let, + ACTIONS(2287), 1, + anon_sym_u201c, + ACTIONS(2289), 1, + anon_sym_u2018, + ACTIONS(2291), 1, + anon_sym_BQUOTE, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + ACTIONS(11271), 1, + anon_sym_raise, + ACTIONS(11273), 1, + anon_sym_if, + ACTIONS(11275), 1, + anon_sym_while, + STATE(5951), 1, + sym_vid, + STATE(5956), 1, + sym__scon, + STATE(5958), 1, + sym_longvid, + STATE(12796), 1, + sym__exp, + STATE(18970), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2267), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(519), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [360884] = 28, + ACTIONS(2265), 1, + sym_integer_scon, + ACTIONS(2269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2271), 1, + sym__symbolic_ident, + ACTIONS(2273), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_op, + ACTIONS(2277), 1, + anon_sym_LBRACE, + ACTIONS(2279), 1, + anon_sym_POUND, + ACTIONS(2281), 1, + anon_sym_LBRACK, + ACTIONS(2283), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2285), 1, + anon_sym_let, + ACTIONS(2287), 1, + anon_sym_u201c, + ACTIONS(2289), 1, + anon_sym_u2018, + ACTIONS(2291), 1, + anon_sym_BQUOTE, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + ACTIONS(11271), 1, + anon_sym_raise, + ACTIONS(11273), 1, + anon_sym_if, + ACTIONS(11275), 1, + anon_sym_while, + STATE(5951), 1, + sym_vid, + STATE(5956), 1, + sym__scon, + STATE(5958), 1, + sym_longvid, + STATE(12797), 1, + sym__exp, + STATE(18970), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2267), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(519), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [360996] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9306), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [361108] = 28, + ACTIONS(10313), 1, + sym_integer_scon, + ACTIONS(10317), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10319), 1, + sym__symbolic_ident, + ACTIONS(10321), 1, + anon_sym_LPAREN, + ACTIONS(10323), 1, + anon_sym_op, + ACTIONS(10325), 1, + anon_sym_LBRACE, + ACTIONS(10327), 1, + anon_sym_POUND, + ACTIONS(10329), 1, + anon_sym_LBRACK, + ACTIONS(10331), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10333), 1, + anon_sym_let, + ACTIONS(10335), 1, + anon_sym_raise, + ACTIONS(10337), 1, + anon_sym_if, + ACTIONS(10339), 1, + anon_sym_while, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(10345), 1, + anon_sym_u201c, + ACTIONS(10347), 1, + anon_sym_u2018, + ACTIONS(10349), 1, + anon_sym_BQUOTE, + STATE(10089), 1, + sym__scon, + STATE(10090), 1, + sym_longvid, + STATE(10314), 1, + sym_vid, + STATE(17808), 1, + sym__exp, + STATE(18920), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10315), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4130), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [361220] = 28, + ACTIONS(10313), 1, + sym_integer_scon, + ACTIONS(10317), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10319), 1, + sym__symbolic_ident, + ACTIONS(10321), 1, + anon_sym_LPAREN, + ACTIONS(10323), 1, + anon_sym_op, + ACTIONS(10325), 1, + anon_sym_LBRACE, + ACTIONS(10327), 1, + anon_sym_POUND, + ACTIONS(10329), 1, + anon_sym_LBRACK, + ACTIONS(10331), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10333), 1, + anon_sym_let, + ACTIONS(10335), 1, + anon_sym_raise, + ACTIONS(10337), 1, + anon_sym_if, + ACTIONS(10339), 1, + anon_sym_while, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(10345), 1, + anon_sym_u201c, + ACTIONS(10347), 1, + anon_sym_u2018, + ACTIONS(10349), 1, + anon_sym_BQUOTE, + STATE(10089), 1, + sym__scon, + STATE(10090), 1, + sym_longvid, + STATE(10314), 1, + sym_vid, + STATE(17838), 1, + sym__exp, + STATE(18920), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10315), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4130), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [361332] = 28, + ACTIONS(1607), 1, + sym_integer_scon, + ACTIONS(1611), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1613), 1, + sym__symbolic_ident, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1617), 1, + anon_sym_op, + ACTIONS(1619), 1, + anon_sym_LBRACE, + ACTIONS(1621), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1627), 1, + anon_sym_let, + ACTIONS(1629), 1, + anon_sym_u201c, + ACTIONS(1631), 1, + anon_sym_u2018, + ACTIONS(1633), 1, + anon_sym_BQUOTE, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + ACTIONS(11277), 1, + anon_sym_raise, + ACTIONS(11279), 1, + anon_sym_if, + ACTIONS(11281), 1, + anon_sym_while, + STATE(5457), 1, + sym__scon, + STATE(5458), 1, + sym_longvid, + STATE(5512), 1, + sym_vid, + STATE(12398), 1, + sym__exp, + STATE(19142), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1609), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(492), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [361444] = 28, + ACTIONS(1607), 1, + sym_integer_scon, + ACTIONS(1611), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1613), 1, + sym__symbolic_ident, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1617), 1, + anon_sym_op, + ACTIONS(1619), 1, + anon_sym_LBRACE, + ACTIONS(1621), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1627), 1, + anon_sym_let, + ACTIONS(1629), 1, + anon_sym_u201c, + ACTIONS(1631), 1, + anon_sym_u2018, + ACTIONS(1633), 1, + anon_sym_BQUOTE, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + ACTIONS(11277), 1, + anon_sym_raise, + ACTIONS(11279), 1, + anon_sym_if, + ACTIONS(11281), 1, + anon_sym_while, + STATE(5457), 1, + sym__scon, + STATE(5458), 1, + sym_longvid, + STATE(5512), 1, + sym_vid, + STATE(12399), 1, + sym__exp, + STATE(19142), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1609), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(492), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [361556] = 28, + ACTIONS(1607), 1, + sym_integer_scon, + ACTIONS(1611), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1613), 1, + sym__symbolic_ident, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1617), 1, + anon_sym_op, + ACTIONS(1619), 1, + anon_sym_LBRACE, + ACTIONS(1621), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1627), 1, + anon_sym_let, + ACTIONS(1629), 1, + anon_sym_u201c, + ACTIONS(1631), 1, + anon_sym_u2018, + ACTIONS(1633), 1, + anon_sym_BQUOTE, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + ACTIONS(11277), 1, + anon_sym_raise, + ACTIONS(11279), 1, + anon_sym_if, + ACTIONS(11281), 1, + anon_sym_while, + STATE(5457), 1, + sym__scon, + STATE(5458), 1, + sym_longvid, + STATE(5512), 1, + sym_vid, + STATE(12464), 1, + sym__exp, + STATE(19142), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1609), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(492), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [361668] = 28, + ACTIONS(1607), 1, + sym_integer_scon, + ACTIONS(1611), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1613), 1, + sym__symbolic_ident, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1617), 1, + anon_sym_op, + ACTIONS(1619), 1, + anon_sym_LBRACE, + ACTIONS(1621), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1627), 1, + anon_sym_let, + ACTIONS(1629), 1, + anon_sym_u201c, + ACTIONS(1631), 1, + anon_sym_u2018, + ACTIONS(1633), 1, + anon_sym_BQUOTE, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + ACTIONS(11277), 1, + anon_sym_raise, + ACTIONS(11279), 1, + anon_sym_if, + ACTIONS(11281), 1, + anon_sym_while, + STATE(5457), 1, + sym__scon, + STATE(5458), 1, + sym_longvid, + STATE(5512), 1, + sym_vid, + STATE(12389), 1, + sym__exp, + STATE(19142), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1609), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(492), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [361780] = 28, + ACTIONS(1607), 1, + sym_integer_scon, + ACTIONS(1611), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1613), 1, + sym__symbolic_ident, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1617), 1, + anon_sym_op, + ACTIONS(1619), 1, + anon_sym_LBRACE, + ACTIONS(1621), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1627), 1, + anon_sym_let, + ACTIONS(1629), 1, + anon_sym_u201c, + ACTIONS(1631), 1, + anon_sym_u2018, + ACTIONS(1633), 1, + anon_sym_BQUOTE, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + ACTIONS(11277), 1, + anon_sym_raise, + ACTIONS(11279), 1, + anon_sym_if, + ACTIONS(11281), 1, + anon_sym_while, + STATE(5457), 1, + sym__scon, + STATE(5458), 1, + sym_longvid, + STATE(5512), 1, + sym_vid, + STATE(12390), 1, + sym__exp, + STATE(19142), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1609), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(492), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [361892] = 28, + ACTIONS(1397), 1, + sym_integer_scon, + ACTIONS(1401), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1403), 1, + sym__symbolic_ident, + ACTIONS(1405), 1, + anon_sym_LPAREN, + ACTIONS(1407), 1, + anon_sym_op, + ACTIONS(1409), 1, + anon_sym_LBRACE, + ACTIONS(1411), 1, + anon_sym_POUND, + ACTIONS(1413), 1, + anon_sym_LBRACK, + ACTIONS(1415), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1417), 1, + anon_sym_let, + ACTIONS(1419), 1, + anon_sym_u201c, + ACTIONS(1421), 1, + anon_sym_u2018, + ACTIONS(1423), 1, + anon_sym_BQUOTE, + ACTIONS(10653), 1, + anon_sym_case, + ACTIONS(10655), 1, + anon_sym_fn, + ACTIONS(11283), 1, + anon_sym_raise, + ACTIONS(11285), 1, + anon_sym_if, + ACTIONS(11287), 1, + anon_sym_while, + STATE(4954), 1, + sym_vid, + STATE(4983), 1, + sym__scon, + STATE(4984), 1, + sym_longvid, + STATE(9908), 1, + sym__exp, + STATE(18872), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1399), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(483), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [362004] = 28, + ACTIONS(1397), 1, + sym_integer_scon, + ACTIONS(1401), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1403), 1, + sym__symbolic_ident, + ACTIONS(1405), 1, + anon_sym_LPAREN, + ACTIONS(1407), 1, + anon_sym_op, + ACTIONS(1409), 1, + anon_sym_LBRACE, + ACTIONS(1411), 1, + anon_sym_POUND, + ACTIONS(1413), 1, + anon_sym_LBRACK, + ACTIONS(1415), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1417), 1, + anon_sym_let, + ACTIONS(1419), 1, + anon_sym_u201c, + ACTIONS(1421), 1, + anon_sym_u2018, + ACTIONS(1423), 1, + anon_sym_BQUOTE, + ACTIONS(10653), 1, + anon_sym_case, + ACTIONS(10655), 1, + anon_sym_fn, + ACTIONS(11283), 1, + anon_sym_raise, + ACTIONS(11285), 1, + anon_sym_if, + ACTIONS(11287), 1, + anon_sym_while, + STATE(4954), 1, + sym_vid, + STATE(4983), 1, + sym__scon, + STATE(4984), 1, + sym_longvid, + STATE(9508), 1, + sym__exp, + STATE(18872), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1399), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(483), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [362116] = 28, + ACTIONS(1397), 1, + sym_integer_scon, + ACTIONS(1401), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1403), 1, + sym__symbolic_ident, + ACTIONS(1405), 1, + anon_sym_LPAREN, + ACTIONS(1407), 1, + anon_sym_op, + ACTIONS(1409), 1, + anon_sym_LBRACE, + ACTIONS(1411), 1, + anon_sym_POUND, + ACTIONS(1413), 1, + anon_sym_LBRACK, + ACTIONS(1415), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1417), 1, + anon_sym_let, + ACTIONS(1419), 1, + anon_sym_u201c, + ACTIONS(1421), 1, + anon_sym_u2018, + ACTIONS(1423), 1, + anon_sym_BQUOTE, + ACTIONS(10653), 1, + anon_sym_case, + ACTIONS(10655), 1, + anon_sym_fn, + ACTIONS(11283), 1, + anon_sym_raise, + ACTIONS(11285), 1, + anon_sym_if, + ACTIONS(11287), 1, + anon_sym_while, + STATE(4954), 1, + sym_vid, + STATE(4983), 1, + sym__scon, + STATE(4984), 1, + sym_longvid, + STATE(9931), 1, + sym__exp, + STATE(18872), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1399), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(483), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [362228] = 28, + ACTIONS(1397), 1, + sym_integer_scon, + ACTIONS(1401), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1403), 1, + sym__symbolic_ident, + ACTIONS(1405), 1, + anon_sym_LPAREN, + ACTIONS(1407), 1, + anon_sym_op, + ACTIONS(1409), 1, + anon_sym_LBRACE, + ACTIONS(1411), 1, + anon_sym_POUND, + ACTIONS(1413), 1, + anon_sym_LBRACK, + ACTIONS(1415), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1417), 1, + anon_sym_let, + ACTIONS(1419), 1, + anon_sym_u201c, + ACTIONS(1421), 1, + anon_sym_u2018, + ACTIONS(1423), 1, + anon_sym_BQUOTE, + ACTIONS(10653), 1, + anon_sym_case, + ACTIONS(10655), 1, + anon_sym_fn, + ACTIONS(11283), 1, + anon_sym_raise, + ACTIONS(11285), 1, + anon_sym_if, + ACTIONS(11287), 1, + anon_sym_while, + STATE(4954), 1, + sym_vid, + STATE(4983), 1, + sym__scon, + STATE(4984), 1, + sym_longvid, + STATE(9932), 1, + sym__exp, + STATE(18872), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1399), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(483), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [362340] = 28, + ACTIONS(1397), 1, + sym_integer_scon, + ACTIONS(1401), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1403), 1, + sym__symbolic_ident, + ACTIONS(1405), 1, + anon_sym_LPAREN, + ACTIONS(1407), 1, + anon_sym_op, + ACTIONS(1409), 1, + anon_sym_LBRACE, + ACTIONS(1411), 1, + anon_sym_POUND, + ACTIONS(1413), 1, + anon_sym_LBRACK, + ACTIONS(1415), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1417), 1, + anon_sym_let, + ACTIONS(1419), 1, + anon_sym_u201c, + ACTIONS(1421), 1, + anon_sym_u2018, + ACTIONS(1423), 1, + anon_sym_BQUOTE, + ACTIONS(10653), 1, + anon_sym_case, + ACTIONS(10655), 1, + anon_sym_fn, + ACTIONS(11283), 1, + anon_sym_raise, + ACTIONS(11285), 1, + anon_sym_if, + ACTIONS(11287), 1, + anon_sym_while, + STATE(4954), 1, + sym_vid, + STATE(4983), 1, + sym__scon, + STATE(4984), 1, + sym_longvid, + STATE(9933), 1, + sym__exp, + STATE(18872), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1399), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(483), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [362452] = 28, + ACTIONS(1145), 1, + sym_integer_scon, + ACTIONS(1149), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1151), 1, + sym__symbolic_ident, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_op, + ACTIONS(1157), 1, + anon_sym_LBRACE, + ACTIONS(1159), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + anon_sym_LBRACK, + ACTIONS(1163), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1165), 1, + anon_sym_let, + ACTIONS(1167), 1, + anon_sym_u201c, + ACTIONS(1169), 1, + anon_sym_u2018, + ACTIONS(1171), 1, + anon_sym_BQUOTE, + ACTIONS(10711), 1, + anon_sym_raise, + ACTIONS(10713), 1, + anon_sym_if, + ACTIONS(10715), 1, + anon_sym_while, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + STATE(4294), 1, + sym__scon, + STATE(4295), 1, + sym_longvid, + STATE(4558), 1, + sym_vid, + STATE(9345), 1, + sym__exp, + STATE(19170), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1147), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(472), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [362564] = 28, + ACTIONS(1145), 1, + sym_integer_scon, + ACTIONS(1149), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1151), 1, + sym__symbolic_ident, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_op, + ACTIONS(1157), 1, + anon_sym_LBRACE, + ACTIONS(1159), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + anon_sym_LBRACK, + ACTIONS(1163), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1165), 1, + anon_sym_let, + ACTIONS(1167), 1, + anon_sym_u201c, + ACTIONS(1169), 1, + anon_sym_u2018, + ACTIONS(1171), 1, + anon_sym_BQUOTE, + ACTIONS(10711), 1, + anon_sym_raise, + ACTIONS(10713), 1, + anon_sym_if, + ACTIONS(10715), 1, + anon_sym_while, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + STATE(4294), 1, + sym__scon, + STATE(4295), 1, + sym_longvid, + STATE(4558), 1, + sym_vid, + STATE(9191), 1, + sym__exp, + STATE(19170), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1147), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(472), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [362676] = 28, + ACTIONS(3225), 1, + sym_integer_scon, + ACTIONS(3229), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3231), 1, + sym__symbolic_ident, + ACTIONS(3233), 1, + anon_sym_LPAREN, + ACTIONS(3235), 1, + anon_sym_op, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + anon_sym_POUND, + ACTIONS(3241), 1, + anon_sym_LBRACK, + ACTIONS(3243), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3245), 1, + anon_sym_let, + ACTIONS(3247), 1, + anon_sym_u201c, + ACTIONS(3249), 1, + anon_sym_u2018, + ACTIONS(3251), 1, + anon_sym_BQUOTE, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + ACTIONS(11289), 1, + anon_sym_raise, + ACTIONS(11291), 1, + anon_sym_if, + ACTIONS(11293), 1, + anon_sym_while, + STATE(6912), 1, + sym_vid, + STATE(7284), 1, + sym__scon, + STATE(7286), 1, + sym_longvid, + STATE(13053), 1, + sym__exp, + STATE(18725), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3227), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [362788] = 28, + ACTIONS(3225), 1, + sym_integer_scon, + ACTIONS(3229), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3231), 1, + sym__symbolic_ident, + ACTIONS(3233), 1, + anon_sym_LPAREN, + ACTIONS(3235), 1, + anon_sym_op, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + anon_sym_POUND, + ACTIONS(3241), 1, + anon_sym_LBRACK, + ACTIONS(3243), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3245), 1, + anon_sym_let, + ACTIONS(3247), 1, + anon_sym_u201c, + ACTIONS(3249), 1, + anon_sym_u2018, + ACTIONS(3251), 1, + anon_sym_BQUOTE, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + ACTIONS(11289), 1, + anon_sym_raise, + ACTIONS(11291), 1, + anon_sym_if, + ACTIONS(11293), 1, + anon_sym_while, + STATE(6912), 1, + sym_vid, + STATE(7284), 1, + sym__scon, + STATE(7286), 1, + sym_longvid, + STATE(13054), 1, + sym__exp, + STATE(18725), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3227), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [362900] = 28, + ACTIONS(3225), 1, + sym_integer_scon, + ACTIONS(3229), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3231), 1, + sym__symbolic_ident, + ACTIONS(3233), 1, + anon_sym_LPAREN, + ACTIONS(3235), 1, + anon_sym_op, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + anon_sym_POUND, + ACTIONS(3241), 1, + anon_sym_LBRACK, + ACTIONS(3243), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3245), 1, + anon_sym_let, + ACTIONS(3247), 1, + anon_sym_u201c, + ACTIONS(3249), 1, + anon_sym_u2018, + ACTIONS(3251), 1, + anon_sym_BQUOTE, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + ACTIONS(11289), 1, + anon_sym_raise, + ACTIONS(11291), 1, + anon_sym_if, + ACTIONS(11293), 1, + anon_sym_while, + STATE(6912), 1, + sym_vid, + STATE(7284), 1, + sym__scon, + STATE(7286), 1, + sym_longvid, + STATE(13142), 1, + sym__exp, + STATE(18725), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3227), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [363012] = 28, + ACTIONS(3225), 1, + sym_integer_scon, + ACTIONS(3229), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3231), 1, + sym__symbolic_ident, + ACTIONS(3233), 1, + anon_sym_LPAREN, + ACTIONS(3235), 1, + anon_sym_op, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + anon_sym_POUND, + ACTIONS(3241), 1, + anon_sym_LBRACK, + ACTIONS(3243), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3245), 1, + anon_sym_let, + ACTIONS(3247), 1, + anon_sym_u201c, + ACTIONS(3249), 1, + anon_sym_u2018, + ACTIONS(3251), 1, + anon_sym_BQUOTE, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + ACTIONS(11289), 1, + anon_sym_raise, + ACTIONS(11291), 1, + anon_sym_if, + ACTIONS(11293), 1, + anon_sym_while, + STATE(6912), 1, + sym_vid, + STATE(7284), 1, + sym__scon, + STATE(7286), 1, + sym_longvid, + STATE(13042), 1, + sym__exp, + STATE(18725), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3227), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [363124] = 28, + ACTIONS(3225), 1, + sym_integer_scon, + ACTIONS(3229), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3231), 1, + sym__symbolic_ident, + ACTIONS(3233), 1, + anon_sym_LPAREN, + ACTIONS(3235), 1, + anon_sym_op, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + anon_sym_POUND, + ACTIONS(3241), 1, + anon_sym_LBRACK, + ACTIONS(3243), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3245), 1, + anon_sym_let, + ACTIONS(3247), 1, + anon_sym_u201c, + ACTIONS(3249), 1, + anon_sym_u2018, + ACTIONS(3251), 1, + anon_sym_BQUOTE, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + ACTIONS(11289), 1, + anon_sym_raise, + ACTIONS(11291), 1, + anon_sym_if, + ACTIONS(11293), 1, + anon_sym_while, + STATE(6912), 1, + sym_vid, + STATE(7284), 1, + sym__scon, + STATE(7286), 1, + sym_longvid, + STATE(13043), 1, + sym__exp, + STATE(18725), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3227), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [363236] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18906), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [363348] = 28, + ACTIONS(10155), 1, + sym_integer_scon, + ACTIONS(10159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10161), 1, + sym__symbolic_ident, + ACTIONS(10163), 1, + anon_sym_LPAREN, + ACTIONS(10165), 1, + anon_sym_op, + ACTIONS(10167), 1, + anon_sym_LBRACE, + ACTIONS(10169), 1, + anon_sym_POUND, + ACTIONS(10171), 1, + anon_sym_LBRACK, + ACTIONS(10173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10175), 1, + anon_sym_let, + ACTIONS(10177), 1, + anon_sym_raise, + ACTIONS(10179), 1, + anon_sym_if, + ACTIONS(10181), 1, + anon_sym_while, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10187), 1, + anon_sym_u201c, + ACTIONS(10189), 1, + anon_sym_u2018, + ACTIONS(10191), 1, + anon_sym_BQUOTE, + STATE(11565), 1, + sym__scon, + STATE(11568), 1, + sym_longvid, + STATE(11798), 1, + sym_vid, + STATE(18096), 1, + sym__exp, + STATE(19156), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4197), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [363460] = 28, + ACTIONS(10155), 1, + sym_integer_scon, + ACTIONS(10159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10161), 1, + sym__symbolic_ident, + ACTIONS(10163), 1, + anon_sym_LPAREN, + ACTIONS(10165), 1, + anon_sym_op, + ACTIONS(10167), 1, + anon_sym_LBRACE, + ACTIONS(10169), 1, + anon_sym_POUND, + ACTIONS(10171), 1, + anon_sym_LBRACK, + ACTIONS(10173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10175), 1, + anon_sym_let, + ACTIONS(10177), 1, + anon_sym_raise, + ACTIONS(10179), 1, + anon_sym_if, + ACTIONS(10181), 1, + anon_sym_while, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10187), 1, + anon_sym_u201c, + ACTIONS(10189), 1, + anon_sym_u2018, + ACTIONS(10191), 1, + anon_sym_BQUOTE, + STATE(11565), 1, + sym__scon, + STATE(11568), 1, + sym_longvid, + STATE(11798), 1, + sym_vid, + STATE(18559), 1, + sym__exp, + STATE(19156), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4197), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [363572] = 28, + ACTIONS(10155), 1, + sym_integer_scon, + ACTIONS(10159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10161), 1, + sym__symbolic_ident, + ACTIONS(10163), 1, + anon_sym_LPAREN, + ACTIONS(10165), 1, + anon_sym_op, + ACTIONS(10167), 1, + anon_sym_LBRACE, + ACTIONS(10169), 1, + anon_sym_POUND, + ACTIONS(10171), 1, + anon_sym_LBRACK, + ACTIONS(10173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10175), 1, + anon_sym_let, + ACTIONS(10177), 1, + anon_sym_raise, + ACTIONS(10179), 1, + anon_sym_if, + ACTIONS(10181), 1, + anon_sym_while, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10187), 1, + anon_sym_u201c, + ACTIONS(10189), 1, + anon_sym_u2018, + ACTIONS(10191), 1, + anon_sym_BQUOTE, + STATE(11565), 1, + sym__scon, + STATE(11568), 1, + sym_longvid, + STATE(11798), 1, + sym_vid, + STATE(18504), 1, + sym__exp, + STATE(19156), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4197), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [363684] = 28, + ACTIONS(10155), 1, + sym_integer_scon, + ACTIONS(10159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10161), 1, + sym__symbolic_ident, + ACTIONS(10163), 1, + anon_sym_LPAREN, + ACTIONS(10165), 1, + anon_sym_op, + ACTIONS(10167), 1, + anon_sym_LBRACE, + ACTIONS(10169), 1, + anon_sym_POUND, + ACTIONS(10171), 1, + anon_sym_LBRACK, + ACTIONS(10173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10175), 1, + anon_sym_let, + ACTIONS(10177), 1, + anon_sym_raise, + ACTIONS(10179), 1, + anon_sym_if, + ACTIONS(10181), 1, + anon_sym_while, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10187), 1, + anon_sym_u201c, + ACTIONS(10189), 1, + anon_sym_u2018, + ACTIONS(10191), 1, + anon_sym_BQUOTE, + STATE(11565), 1, + sym__scon, + STATE(11568), 1, + sym_longvid, + STATE(11798), 1, + sym_vid, + STATE(18416), 1, + sym__exp, + STATE(19156), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4197), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [363796] = 28, + ACTIONS(10155), 1, + sym_integer_scon, + ACTIONS(10159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10161), 1, + sym__symbolic_ident, + ACTIONS(10163), 1, + anon_sym_LPAREN, + ACTIONS(10165), 1, + anon_sym_op, + ACTIONS(10167), 1, + anon_sym_LBRACE, + ACTIONS(10169), 1, + anon_sym_POUND, + ACTIONS(10171), 1, + anon_sym_LBRACK, + ACTIONS(10173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10175), 1, + anon_sym_let, + ACTIONS(10177), 1, + anon_sym_raise, + ACTIONS(10179), 1, + anon_sym_if, + ACTIONS(10181), 1, + anon_sym_while, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10187), 1, + anon_sym_u201c, + ACTIONS(10189), 1, + anon_sym_u2018, + ACTIONS(10191), 1, + anon_sym_BQUOTE, + STATE(11565), 1, + sym__scon, + STATE(11568), 1, + sym_longvid, + STATE(11798), 1, + sym_vid, + STATE(18418), 1, + sym__exp, + STATE(19156), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4197), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [363908] = 28, + ACTIONS(3295), 1, + sym_integer_scon, + ACTIONS(3299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3301), 1, + sym__symbolic_ident, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_op, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_POUND, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3315), 1, + anon_sym_let, + ACTIONS(3317), 1, + anon_sym_u201c, + ACTIONS(3319), 1, + anon_sym_u2018, + ACTIONS(3321), 1, + anon_sym_BQUOTE, + ACTIONS(10243), 1, + anon_sym_case, + ACTIONS(10245), 1, + anon_sym_fn, + ACTIONS(11329), 1, + anon_sym_raise, + ACTIONS(11331), 1, + anon_sym_if, + ACTIONS(11333), 1, + anon_sym_while, + STATE(7064), 1, + sym_vid, + STATE(7403), 1, + sym__scon, + STATE(7404), 1, + sym_longvid, + STATE(13060), 1, + sym__exp, + STATE(18962), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(564), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [364020] = 28, + ACTIONS(3295), 1, + sym_integer_scon, + ACTIONS(3299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3301), 1, + sym__symbolic_ident, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_op, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_POUND, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3315), 1, + anon_sym_let, + ACTIONS(3317), 1, + anon_sym_u201c, + ACTIONS(3319), 1, + anon_sym_u2018, + ACTIONS(3321), 1, + anon_sym_BQUOTE, + ACTIONS(10243), 1, + anon_sym_case, + ACTIONS(10245), 1, + anon_sym_fn, + ACTIONS(11329), 1, + anon_sym_raise, + ACTIONS(11331), 1, + anon_sym_if, + ACTIONS(11333), 1, + anon_sym_while, + STATE(7064), 1, + sym_vid, + STATE(7403), 1, + sym__scon, + STATE(7404), 1, + sym_longvid, + STATE(13061), 1, + sym__exp, + STATE(18962), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(564), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [364132] = 28, + ACTIONS(3295), 1, + sym_integer_scon, + ACTIONS(3299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3301), 1, + sym__symbolic_ident, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_op, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_POUND, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3315), 1, + anon_sym_let, + ACTIONS(3317), 1, + anon_sym_u201c, + ACTIONS(3319), 1, + anon_sym_u2018, + ACTIONS(3321), 1, + anon_sym_BQUOTE, + ACTIONS(10243), 1, + anon_sym_case, + ACTIONS(10245), 1, + anon_sym_fn, + ACTIONS(11329), 1, + anon_sym_raise, + ACTIONS(11331), 1, + anon_sym_if, + ACTIONS(11333), 1, + anon_sym_while, + STATE(7064), 1, + sym_vid, + STATE(7403), 1, + sym__scon, + STATE(7404), 1, + sym_longvid, + STATE(13146), 1, + sym__exp, + STATE(18962), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(564), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [364244] = 28, + ACTIONS(3295), 1, + sym_integer_scon, + ACTIONS(3299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3301), 1, + sym__symbolic_ident, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_op, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_POUND, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3315), 1, + anon_sym_let, + ACTIONS(3317), 1, + anon_sym_u201c, + ACTIONS(3319), 1, + anon_sym_u2018, + ACTIONS(3321), 1, + anon_sym_BQUOTE, + ACTIONS(10243), 1, + anon_sym_case, + ACTIONS(10245), 1, + anon_sym_fn, + ACTIONS(11329), 1, + anon_sym_raise, + ACTIONS(11331), 1, + anon_sym_if, + ACTIONS(11333), 1, + anon_sym_while, + STATE(7064), 1, + sym_vid, + STATE(7403), 1, + sym__scon, + STATE(7404), 1, + sym_longvid, + STATE(13048), 1, + sym__exp, + STATE(18962), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(564), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [364356] = 28, + ACTIONS(3295), 1, + sym_integer_scon, + ACTIONS(3299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3301), 1, + sym__symbolic_ident, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_op, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_POUND, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3315), 1, + anon_sym_let, + ACTIONS(3317), 1, + anon_sym_u201c, + ACTIONS(3319), 1, + anon_sym_u2018, + ACTIONS(3321), 1, + anon_sym_BQUOTE, + ACTIONS(10243), 1, + anon_sym_case, + ACTIONS(10245), 1, + anon_sym_fn, + ACTIONS(11329), 1, + anon_sym_raise, + ACTIONS(11331), 1, + anon_sym_if, + ACTIONS(11333), 1, + anon_sym_while, + STATE(7064), 1, + sym_vid, + STATE(7403), 1, + sym__scon, + STATE(7404), 1, + sym_longvid, + STATE(13049), 1, + sym__exp, + STATE(18962), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(564), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [364468] = 28, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10741), 1, + sym_integer_scon, + ACTIONS(10745), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10747), 1, + sym__symbolic_ident, + ACTIONS(10749), 1, + anon_sym_LPAREN, + ACTIONS(10751), 1, + anon_sym_op, + ACTIONS(10753), 1, + anon_sym_LBRACE, + ACTIONS(10755), 1, + anon_sym_POUND, + ACTIONS(10757), 1, + anon_sym_LBRACK, + ACTIONS(10759), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10761), 1, + anon_sym_let, + ACTIONS(10763), 1, + anon_sym_raise, + ACTIONS(10765), 1, + anon_sym_if, + ACTIONS(10767), 1, + anon_sym_while, + ACTIONS(10769), 1, + anon_sym_u201c, + ACTIONS(10771), 1, + anon_sym_u2018, + ACTIONS(10773), 1, + anon_sym_BQUOTE, + STATE(10197), 1, + sym__scon, + STATE(10198), 1, + sym_longvid, + STATE(10359), 1, + sym_vid, + STATE(17794), 1, + sym__exp, + STATE(18857), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10743), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4148), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [364580] = 28, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10741), 1, + sym_integer_scon, + ACTIONS(10745), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10747), 1, + sym__symbolic_ident, + ACTIONS(10749), 1, + anon_sym_LPAREN, + ACTIONS(10751), 1, + anon_sym_op, + ACTIONS(10753), 1, + anon_sym_LBRACE, + ACTIONS(10755), 1, + anon_sym_POUND, + ACTIONS(10757), 1, + anon_sym_LBRACK, + ACTIONS(10759), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10761), 1, + anon_sym_let, + ACTIONS(10763), 1, + anon_sym_raise, + ACTIONS(10765), 1, + anon_sym_if, + ACTIONS(10767), 1, + anon_sym_while, + ACTIONS(10769), 1, + anon_sym_u201c, + ACTIONS(10771), 1, + anon_sym_u2018, + ACTIONS(10773), 1, + anon_sym_BQUOTE, + STATE(10197), 1, + sym__scon, + STATE(10198), 1, + sym_longvid, + STATE(10359), 1, + sym_vid, + STATE(17877), 1, + sym__exp, + STATE(18857), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10743), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4148), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [364692] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19202), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [364804] = 28, + ACTIONS(1467), 1, + sym_integer_scon, + ACTIONS(1471), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1473), 1, + sym__symbolic_ident, + ACTIONS(1475), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_op, + ACTIONS(1479), 1, + anon_sym_LBRACE, + ACTIONS(1481), 1, + anon_sym_POUND, + ACTIONS(1483), 1, + anon_sym_LBRACK, + ACTIONS(1485), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1487), 1, + anon_sym_let, + ACTIONS(1489), 1, + anon_sym_u201c, + ACTIONS(1491), 1, + anon_sym_u2018, + ACTIONS(1493), 1, + anon_sym_BQUOTE, + ACTIONS(10647), 1, + anon_sym_raise, + ACTIONS(10649), 1, + anon_sym_if, + ACTIONS(10651), 1, + anon_sym_while, + ACTIONS(10653), 1, + anon_sym_case, + ACTIONS(10655), 1, + anon_sym_fn, + STATE(5289), 1, + sym__scon, + STATE(5291), 1, + sym_vid, + STATE(5295), 1, + sym_longvid, + STATE(10868), 1, + sym__exp, + STATE(18842), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1469), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(488), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [364916] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18863), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [365028] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18718), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [365140] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12819), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [365252] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12820), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [365364] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12882), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [365476] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12811), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [365588] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12812), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [365700] = 28, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10193), 1, + sym_integer_scon, + ACTIONS(10197), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10199), 1, + sym__symbolic_ident, + ACTIONS(10201), 1, + anon_sym_LPAREN, + ACTIONS(10203), 1, + anon_sym_op, + ACTIONS(10205), 1, + anon_sym_LBRACE, + ACTIONS(10207), 1, + anon_sym_POUND, + ACTIONS(10209), 1, + anon_sym_LBRACK, + ACTIONS(10211), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10213), 1, + anon_sym_let, + ACTIONS(10215), 1, + anon_sym_raise, + ACTIONS(10217), 1, + anon_sym_if, + ACTIONS(10219), 1, + anon_sym_while, + ACTIONS(10221), 1, + anon_sym_u201c, + ACTIONS(10223), 1, + anon_sym_u2018, + ACTIONS(10225), 1, + anon_sym_BQUOTE, + STATE(11171), 1, + sym_vid, + STATE(11751), 1, + sym__scon, + STATE(11755), 1, + sym_longvid, + STATE(18326), 1, + sym__exp, + STATE(18888), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10195), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4210), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [365812] = 28, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10193), 1, + sym_integer_scon, + ACTIONS(10197), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10199), 1, + sym__symbolic_ident, + ACTIONS(10201), 1, + anon_sym_LPAREN, + ACTIONS(10203), 1, + anon_sym_op, + ACTIONS(10205), 1, + anon_sym_LBRACE, + ACTIONS(10207), 1, + anon_sym_POUND, + ACTIONS(10209), 1, + anon_sym_LBRACK, + ACTIONS(10211), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10213), 1, + anon_sym_let, + ACTIONS(10215), 1, + anon_sym_raise, + ACTIONS(10217), 1, + anon_sym_if, + ACTIONS(10219), 1, + anon_sym_while, + ACTIONS(10221), 1, + anon_sym_u201c, + ACTIONS(10223), 1, + anon_sym_u2018, + ACTIONS(10225), 1, + anon_sym_BQUOTE, + STATE(11171), 1, + sym_vid, + STATE(11751), 1, + sym__scon, + STATE(11755), 1, + sym_longvid, + STATE(18601), 1, + sym__exp, + STATE(18888), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10195), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4210), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [365924] = 28, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10193), 1, + sym_integer_scon, + ACTIONS(10197), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10199), 1, + sym__symbolic_ident, + ACTIONS(10201), 1, + anon_sym_LPAREN, + ACTIONS(10203), 1, + anon_sym_op, + ACTIONS(10205), 1, + anon_sym_LBRACE, + ACTIONS(10207), 1, + anon_sym_POUND, + ACTIONS(10209), 1, + anon_sym_LBRACK, + ACTIONS(10211), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10213), 1, + anon_sym_let, + ACTIONS(10215), 1, + anon_sym_raise, + ACTIONS(10217), 1, + anon_sym_if, + ACTIONS(10219), 1, + anon_sym_while, + ACTIONS(10221), 1, + anon_sym_u201c, + ACTIONS(10223), 1, + anon_sym_u2018, + ACTIONS(10225), 1, + anon_sym_BQUOTE, + STATE(11171), 1, + sym_vid, + STATE(11751), 1, + sym__scon, + STATE(11755), 1, + sym_longvid, + STATE(18532), 1, + sym__exp, + STATE(18888), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10195), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4210), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [366036] = 28, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10193), 1, + sym_integer_scon, + ACTIONS(10197), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10199), 1, + sym__symbolic_ident, + ACTIONS(10201), 1, + anon_sym_LPAREN, + ACTIONS(10203), 1, + anon_sym_op, + ACTIONS(10205), 1, + anon_sym_LBRACE, + ACTIONS(10207), 1, + anon_sym_POUND, + ACTIONS(10209), 1, + anon_sym_LBRACK, + ACTIONS(10211), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10213), 1, + anon_sym_let, + ACTIONS(10215), 1, + anon_sym_raise, + ACTIONS(10217), 1, + anon_sym_if, + ACTIONS(10219), 1, + anon_sym_while, + ACTIONS(10221), 1, + anon_sym_u201c, + ACTIONS(10223), 1, + anon_sym_u2018, + ACTIONS(10225), 1, + anon_sym_BQUOTE, + STATE(11171), 1, + sym_vid, + STATE(11751), 1, + sym__scon, + STATE(11755), 1, + sym_longvid, + STATE(18449), 1, + sym__exp, + STATE(18888), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10195), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4210), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [366148] = 28, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10193), 1, + sym_integer_scon, + ACTIONS(10197), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10199), 1, + sym__symbolic_ident, + ACTIONS(10201), 1, + anon_sym_LPAREN, + ACTIONS(10203), 1, + anon_sym_op, + ACTIONS(10205), 1, + anon_sym_LBRACE, + ACTIONS(10207), 1, + anon_sym_POUND, + ACTIONS(10209), 1, + anon_sym_LBRACK, + ACTIONS(10211), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10213), 1, + anon_sym_let, + ACTIONS(10215), 1, + anon_sym_raise, + ACTIONS(10217), 1, + anon_sym_if, + ACTIONS(10219), 1, + anon_sym_while, + ACTIONS(10221), 1, + anon_sym_u201c, + ACTIONS(10223), 1, + anon_sym_u2018, + ACTIONS(10225), 1, + anon_sym_BQUOTE, + STATE(11171), 1, + sym_vid, + STATE(11751), 1, + sym__scon, + STATE(11755), 1, + sym_longvid, + STATE(18450), 1, + sym__exp, + STATE(18888), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10195), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4210), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [366260] = 28, + ACTIONS(967), 1, + sym_integer_scon, + ACTIONS(971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(973), 1, + sym__symbolic_ident, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, + anon_sym_op, + ACTIONS(979), 1, + anon_sym_LBRACE, + ACTIONS(983), 1, + anon_sym_POUND, + ACTIONS(985), 1, + anon_sym_LBRACK, + ACTIONS(987), 1, + anon_sym_POUND_LBRACK, + ACTIONS(989), 1, + anon_sym_let, + ACTIONS(991), 1, + anon_sym_u201c, + ACTIONS(993), 1, + anon_sym_u2018, + ACTIONS(995), 1, + anon_sym_BQUOTE, + ACTIONS(10775), 1, + anon_sym_raise, + ACTIONS(10777), 1, + anon_sym_if, + ACTIONS(10779), 1, + anon_sym_while, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + STATE(4229), 1, + sym_vid, + STATE(4233), 1, + sym__scon, + STATE(4234), 1, + sym_longvid, + STATE(9027), 1, + sym__exp, + STATE(19087), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(465), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [366372] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12681), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [366484] = 28, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(11345), 1, + sym_integer_scon, + ACTIONS(11349), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11351), 1, + sym__symbolic_ident, + ACTIONS(11353), 1, + anon_sym_LPAREN, + ACTIONS(11355), 1, + anon_sym_op, + ACTIONS(11357), 1, + anon_sym_LBRACE, + ACTIONS(11359), 1, + anon_sym_POUND, + ACTIONS(11361), 1, + anon_sym_LBRACK, + ACTIONS(11363), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11365), 1, + anon_sym_let, + ACTIONS(11367), 1, + anon_sym_raise, + ACTIONS(11369), 1, + anon_sym_if, + ACTIONS(11371), 1, + anon_sym_while, + ACTIONS(11373), 1, + anon_sym_u201c, + ACTIONS(11375), 1, + anon_sym_u2018, + ACTIONS(11377), 1, + anon_sym_BQUOTE, + STATE(9225), 1, + sym_vid, + STATE(9404), 1, + sym__scon, + STATE(9412), 1, + sym_longvid, + STATE(16500), 1, + sym__exp, + STATE(18753), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11347), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4093), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [366596] = 28, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(11345), 1, + sym_integer_scon, + ACTIONS(11349), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11351), 1, + sym__symbolic_ident, + ACTIONS(11353), 1, + anon_sym_LPAREN, + ACTIONS(11355), 1, + anon_sym_op, + ACTIONS(11357), 1, + anon_sym_LBRACE, + ACTIONS(11359), 1, + anon_sym_POUND, + ACTIONS(11361), 1, + anon_sym_LBRACK, + ACTIONS(11363), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11365), 1, + anon_sym_let, + ACTIONS(11367), 1, + anon_sym_raise, + ACTIONS(11369), 1, + anon_sym_if, + ACTIONS(11371), 1, + anon_sym_while, + ACTIONS(11373), 1, + anon_sym_u201c, + ACTIONS(11375), 1, + anon_sym_u2018, + ACTIONS(11377), 1, + anon_sym_BQUOTE, + STATE(9225), 1, + sym_vid, + STATE(9404), 1, + sym__scon, + STATE(9412), 1, + sym_longvid, + STATE(16539), 1, + sym__exp, + STATE(18753), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11347), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4093), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [366708] = 28, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(11345), 1, + sym_integer_scon, + ACTIONS(11349), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11351), 1, + sym__symbolic_ident, + ACTIONS(11353), 1, + anon_sym_LPAREN, + ACTIONS(11355), 1, + anon_sym_op, + ACTIONS(11357), 1, + anon_sym_LBRACE, + ACTIONS(11359), 1, + anon_sym_POUND, + ACTIONS(11361), 1, + anon_sym_LBRACK, + ACTIONS(11363), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11365), 1, + anon_sym_let, + ACTIONS(11367), 1, + anon_sym_raise, + ACTIONS(11369), 1, + anon_sym_if, + ACTIONS(11371), 1, + anon_sym_while, + ACTIONS(11373), 1, + anon_sym_u201c, + ACTIONS(11375), 1, + anon_sym_u2018, + ACTIONS(11377), 1, + anon_sym_BQUOTE, + STATE(9225), 1, + sym_vid, + STATE(9404), 1, + sym__scon, + STATE(9412), 1, + sym_longvid, + STATE(16573), 1, + sym__exp, + STATE(18753), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11347), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4093), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [366820] = 28, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(11345), 1, + sym_integer_scon, + ACTIONS(11349), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11351), 1, + sym__symbolic_ident, + ACTIONS(11353), 1, + anon_sym_LPAREN, + ACTIONS(11355), 1, + anon_sym_op, + ACTIONS(11357), 1, + anon_sym_LBRACE, + ACTIONS(11359), 1, + anon_sym_POUND, + ACTIONS(11361), 1, + anon_sym_LBRACK, + ACTIONS(11363), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11365), 1, + anon_sym_let, + ACTIONS(11367), 1, + anon_sym_raise, + ACTIONS(11369), 1, + anon_sym_if, + ACTIONS(11371), 1, + anon_sym_while, + ACTIONS(11373), 1, + anon_sym_u201c, + ACTIONS(11375), 1, + anon_sym_u2018, + ACTIONS(11377), 1, + anon_sym_BQUOTE, + STATE(9225), 1, + sym_vid, + STATE(9404), 1, + sym__scon, + STATE(9412), 1, + sym_longvid, + STATE(16513), 1, + sym__exp, + STATE(18753), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11347), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4093), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [366932] = 28, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(11345), 1, + sym_integer_scon, + ACTIONS(11349), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11351), 1, + sym__symbolic_ident, + ACTIONS(11353), 1, + anon_sym_LPAREN, + ACTIONS(11355), 1, + anon_sym_op, + ACTIONS(11357), 1, + anon_sym_LBRACE, + ACTIONS(11359), 1, + anon_sym_POUND, + ACTIONS(11361), 1, + anon_sym_LBRACK, + ACTIONS(11363), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11365), 1, + anon_sym_let, + ACTIONS(11367), 1, + anon_sym_raise, + ACTIONS(11369), 1, + anon_sym_if, + ACTIONS(11371), 1, + anon_sym_while, + ACTIONS(11373), 1, + anon_sym_u201c, + ACTIONS(11375), 1, + anon_sym_u2018, + ACTIONS(11377), 1, + anon_sym_BQUOTE, + STATE(9225), 1, + sym_vid, + STATE(9404), 1, + sym__scon, + STATE(9412), 1, + sym_longvid, + STATE(16514), 1, + sym__exp, + STATE(18753), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11347), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4093), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [367044] = 28, + ACTIONS(7), 1, + sym_integer_scon, + ACTIONS(11), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13), 1, + sym__symbolic_ident, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + anon_sym_op, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_POUND_LBRACK, + ACTIONS(27), 1, + anon_sym_let, + ACTIONS(29), 1, + anon_sym_raise, + ACTIONS(31), 1, + anon_sym_if, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(69), 1, + anon_sym_u201c, + ACTIONS(71), 1, + anon_sym_u2018, + ACTIONS(73), 1, + anon_sym_BQUOTE, + STATE(10287), 1, + sym_vid, + STATE(11359), 1, + sym__scon, + STATE(11478), 1, + sym_longvid, + STATE(18362), 1, + sym__exp, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(9), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4230), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [367156] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9189), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [367268] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9201), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [367380] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9374), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [367492] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9376), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [367604] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9377), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [367716] = 28, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(11379), 1, + sym_integer_scon, + ACTIONS(11383), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11385), 1, + sym__symbolic_ident, + ACTIONS(11387), 1, + anon_sym_LPAREN, + ACTIONS(11389), 1, + anon_sym_op, + ACTIONS(11391), 1, + anon_sym_LBRACE, + ACTIONS(11393), 1, + anon_sym_POUND, + ACTIONS(11395), 1, + anon_sym_LBRACK, + ACTIONS(11397), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11399), 1, + anon_sym_let, + ACTIONS(11401), 1, + anon_sym_raise, + ACTIONS(11403), 1, + anon_sym_if, + ACTIONS(11405), 1, + anon_sym_while, + ACTIONS(11407), 1, + anon_sym_u201c, + ACTIONS(11409), 1, + anon_sym_u2018, + ACTIONS(11411), 1, + anon_sym_BQUOTE, + STATE(9231), 1, + sym_vid, + STATE(9435), 1, + sym__scon, + STATE(9437), 1, + sym_longvid, + STATE(16504), 1, + sym__exp, + STATE(18949), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11381), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4094), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [367828] = 28, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(11379), 1, + sym_integer_scon, + ACTIONS(11383), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11385), 1, + sym__symbolic_ident, + ACTIONS(11387), 1, + anon_sym_LPAREN, + ACTIONS(11389), 1, + anon_sym_op, + ACTIONS(11391), 1, + anon_sym_LBRACE, + ACTIONS(11393), 1, + anon_sym_POUND, + ACTIONS(11395), 1, + anon_sym_LBRACK, + ACTIONS(11397), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11399), 1, + anon_sym_let, + ACTIONS(11401), 1, + anon_sym_raise, + ACTIONS(11403), 1, + anon_sym_if, + ACTIONS(11405), 1, + anon_sym_while, + ACTIONS(11407), 1, + anon_sym_u201c, + ACTIONS(11409), 1, + anon_sym_u2018, + ACTIONS(11411), 1, + anon_sym_BQUOTE, + STATE(9231), 1, + sym_vid, + STATE(9435), 1, + sym__scon, + STATE(9437), 1, + sym_longvid, + STATE(16542), 1, + sym__exp, + STATE(18949), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11381), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4094), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [367940] = 28, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(11379), 1, + sym_integer_scon, + ACTIONS(11383), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11385), 1, + sym__symbolic_ident, + ACTIONS(11387), 1, + anon_sym_LPAREN, + ACTIONS(11389), 1, + anon_sym_op, + ACTIONS(11391), 1, + anon_sym_LBRACE, + ACTIONS(11393), 1, + anon_sym_POUND, + ACTIONS(11395), 1, + anon_sym_LBRACK, + ACTIONS(11397), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11399), 1, + anon_sym_let, + ACTIONS(11401), 1, + anon_sym_raise, + ACTIONS(11403), 1, + anon_sym_if, + ACTIONS(11405), 1, + anon_sym_while, + ACTIONS(11407), 1, + anon_sym_u201c, + ACTIONS(11409), 1, + anon_sym_u2018, + ACTIONS(11411), 1, + anon_sym_BQUOTE, + STATE(9231), 1, + sym_vid, + STATE(9435), 1, + sym__scon, + STATE(9437), 1, + sym_longvid, + STATE(16575), 1, + sym__exp, + STATE(18949), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11381), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4094), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [368052] = 28, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(11379), 1, + sym_integer_scon, + ACTIONS(11383), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11385), 1, + sym__symbolic_ident, + ACTIONS(11387), 1, + anon_sym_LPAREN, + ACTIONS(11389), 1, + anon_sym_op, + ACTIONS(11391), 1, + anon_sym_LBRACE, + ACTIONS(11393), 1, + anon_sym_POUND, + ACTIONS(11395), 1, + anon_sym_LBRACK, + ACTIONS(11397), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11399), 1, + anon_sym_let, + ACTIONS(11401), 1, + anon_sym_raise, + ACTIONS(11403), 1, + anon_sym_if, + ACTIONS(11405), 1, + anon_sym_while, + ACTIONS(11407), 1, + anon_sym_u201c, + ACTIONS(11409), 1, + anon_sym_u2018, + ACTIONS(11411), 1, + anon_sym_BQUOTE, + STATE(9231), 1, + sym_vid, + STATE(9435), 1, + sym__scon, + STATE(9437), 1, + sym_longvid, + STATE(16519), 1, + sym__exp, + STATE(18949), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11381), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4094), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [368164] = 28, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(11379), 1, + sym_integer_scon, + ACTIONS(11383), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11385), 1, + sym__symbolic_ident, + ACTIONS(11387), 1, + anon_sym_LPAREN, + ACTIONS(11389), 1, + anon_sym_op, + ACTIONS(11391), 1, + anon_sym_LBRACE, + ACTIONS(11393), 1, + anon_sym_POUND, + ACTIONS(11395), 1, + anon_sym_LBRACK, + ACTIONS(11397), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11399), 1, + anon_sym_let, + ACTIONS(11401), 1, + anon_sym_raise, + ACTIONS(11403), 1, + anon_sym_if, + ACTIONS(11405), 1, + anon_sym_while, + ACTIONS(11407), 1, + anon_sym_u201c, + ACTIONS(11409), 1, + anon_sym_u2018, + ACTIONS(11411), 1, + anon_sym_BQUOTE, + STATE(9231), 1, + sym_vid, + STATE(9435), 1, + sym__scon, + STATE(9437), 1, + sym_longvid, + STATE(16520), 1, + sym__exp, + STATE(18949), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11381), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4094), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [368276] = 28, + ACTIONS(2503), 1, + sym_integer_scon, + ACTIONS(2507), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2509), 1, + sym__symbolic_ident, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + anon_sym_op, + ACTIONS(2515), 1, + anon_sym_LBRACE, + ACTIONS(2517), 1, + anon_sym_POUND, + ACTIONS(2519), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2523), 1, + anon_sym_let, + ACTIONS(2525), 1, + anon_sym_u201c, + ACTIONS(2527), 1, + anon_sym_u2018, + ACTIONS(2529), 1, + anon_sym_BQUOTE, + ACTIONS(10819), 1, + anon_sym_raise, + ACTIONS(10821), 1, + anon_sym_if, + ACTIONS(10823), 1, + anon_sym_while, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + STATE(6193), 1, + sym__scon, + STATE(6194), 1, + sym_longvid, + STATE(6370), 1, + sym_vid, + STATE(12680), 1, + sym__exp, + STATE(19132), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2505), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(529), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [368388] = 28, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10867), 1, + sym_integer_scon, + ACTIONS(10871), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10873), 1, + sym__symbolic_ident, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_op, + ACTIONS(10879), 1, + anon_sym_LBRACE, + ACTIONS(10881), 1, + anon_sym_POUND, + ACTIONS(10883), 1, + anon_sym_LBRACK, + ACTIONS(10885), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10887), 1, + anon_sym_let, + ACTIONS(10889), 1, + anon_sym_raise, + ACTIONS(10891), 1, + anon_sym_if, + ACTIONS(10893), 1, + anon_sym_while, + ACTIONS(10895), 1, + anon_sym_u201c, + ACTIONS(10897), 1, + anon_sym_u2018, + ACTIONS(10899), 1, + anon_sym_BQUOTE, + STATE(9688), 1, + sym_vid, + STATE(9952), 1, + sym__scon, + STATE(9957), 1, + sym_longvid, + STATE(17311), 1, + sym__exp, + STATE(19255), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10869), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4107), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [368500] = 28, + ACTIONS(3365), 1, + sym_integer_scon, + ACTIONS(3369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3371), 1, + sym__symbolic_ident, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_op, + ACTIONS(3377), 1, + anon_sym_LBRACE, + ACTIONS(3379), 1, + anon_sym_POUND, + ACTIONS(3381), 1, + anon_sym_LBRACK, + ACTIONS(3383), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3385), 1, + anon_sym_let, + ACTIONS(3387), 1, + anon_sym_u201c, + ACTIONS(3389), 1, + anon_sym_u2018, + ACTIONS(3391), 1, + anon_sym_BQUOTE, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + ACTIONS(11413), 1, + anon_sym_raise, + ACTIONS(11415), 1, + anon_sym_if, + ACTIONS(11417), 1, + anon_sym_while, + STATE(6904), 1, + sym__scon, + STATE(6937), 1, + sym_longvid, + STATE(7314), 1, + sym_vid, + STATE(13079), 1, + sym__exp, + STATE(19107), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3367), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(567), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [368612] = 28, + ACTIONS(3365), 1, + sym_integer_scon, + ACTIONS(3369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3371), 1, + sym__symbolic_ident, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_op, + ACTIONS(3377), 1, + anon_sym_LBRACE, + ACTIONS(3379), 1, + anon_sym_POUND, + ACTIONS(3381), 1, + anon_sym_LBRACK, + ACTIONS(3383), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3385), 1, + anon_sym_let, + ACTIONS(3387), 1, + anon_sym_u201c, + ACTIONS(3389), 1, + anon_sym_u2018, + ACTIONS(3391), 1, + anon_sym_BQUOTE, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + ACTIONS(11413), 1, + anon_sym_raise, + ACTIONS(11415), 1, + anon_sym_if, + ACTIONS(11417), 1, + anon_sym_while, + STATE(6904), 1, + sym__scon, + STATE(6937), 1, + sym_longvid, + STATE(7314), 1, + sym_vid, + STATE(13080), 1, + sym__exp, + STATE(19107), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3367), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(567), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [368724] = 28, + ACTIONS(3365), 1, + sym_integer_scon, + ACTIONS(3369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3371), 1, + sym__symbolic_ident, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_op, + ACTIONS(3377), 1, + anon_sym_LBRACE, + ACTIONS(3379), 1, + anon_sym_POUND, + ACTIONS(3381), 1, + anon_sym_LBRACK, + ACTIONS(3383), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3385), 1, + anon_sym_let, + ACTIONS(3387), 1, + anon_sym_u201c, + ACTIONS(3389), 1, + anon_sym_u2018, + ACTIONS(3391), 1, + anon_sym_BQUOTE, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + ACTIONS(11413), 1, + anon_sym_raise, + ACTIONS(11415), 1, + anon_sym_if, + ACTIONS(11417), 1, + anon_sym_while, + STATE(6904), 1, + sym__scon, + STATE(6937), 1, + sym_longvid, + STATE(7314), 1, + sym_vid, + STATE(13154), 1, + sym__exp, + STATE(19107), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3367), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(567), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [368836] = 28, + ACTIONS(3365), 1, + sym_integer_scon, + ACTIONS(3369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3371), 1, + sym__symbolic_ident, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_op, + ACTIONS(3377), 1, + anon_sym_LBRACE, + ACTIONS(3379), 1, + anon_sym_POUND, + ACTIONS(3381), 1, + anon_sym_LBRACK, + ACTIONS(3383), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3385), 1, + anon_sym_let, + ACTIONS(3387), 1, + anon_sym_u201c, + ACTIONS(3389), 1, + anon_sym_u2018, + ACTIONS(3391), 1, + anon_sym_BQUOTE, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + ACTIONS(11413), 1, + anon_sym_raise, + ACTIONS(11415), 1, + anon_sym_if, + ACTIONS(11417), 1, + anon_sym_while, + STATE(6904), 1, + sym__scon, + STATE(6937), 1, + sym_longvid, + STATE(7314), 1, + sym_vid, + STATE(13065), 1, + sym__exp, + STATE(19107), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3367), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(567), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [368948] = 28, + ACTIONS(3365), 1, + sym_integer_scon, + ACTIONS(3369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3371), 1, + sym__symbolic_ident, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_op, + ACTIONS(3377), 1, + anon_sym_LBRACE, + ACTIONS(3379), 1, + anon_sym_POUND, + ACTIONS(3381), 1, + anon_sym_LBRACK, + ACTIONS(3383), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3385), 1, + anon_sym_let, + ACTIONS(3387), 1, + anon_sym_u201c, + ACTIONS(3389), 1, + anon_sym_u2018, + ACTIONS(3391), 1, + anon_sym_BQUOTE, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + ACTIONS(11413), 1, + anon_sym_raise, + ACTIONS(11415), 1, + anon_sym_if, + ACTIONS(11417), 1, + anon_sym_while, + STATE(6904), 1, + sym__scon, + STATE(6937), 1, + sym_longvid, + STATE(7314), 1, + sym_vid, + STATE(13066), 1, + sym__exp, + STATE(19107), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3367), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(567), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [369060] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9307), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [369172] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19188), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [369284] = 28, + ACTIONS(2665), 1, + sym_integer_scon, + ACTIONS(2669), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2671), 1, + sym__symbolic_ident, + ACTIONS(2673), 1, + anon_sym_LPAREN, + ACTIONS(2675), 1, + anon_sym_op, + ACTIONS(2677), 1, + anon_sym_LBRACE, + ACTIONS(2679), 1, + anon_sym_POUND, + ACTIONS(2681), 1, + anon_sym_LBRACK, + ACTIONS(2683), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2685), 1, + anon_sym_let, + ACTIONS(2687), 1, + anon_sym_u201c, + ACTIONS(2689), 1, + anon_sym_u2018, + ACTIONS(2691), 1, + anon_sym_BQUOTE, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + ACTIONS(11419), 1, + anon_sym_raise, + ACTIONS(11421), 1, + anon_sym_if, + ACTIONS(11423), 1, + anon_sym_while, + STATE(6607), 1, + sym__scon, + STATE(6608), 1, + sym_longvid, + STATE(6662), 1, + sym_vid, + STATE(13144), 1, + sym__exp, + STATE(18812), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2667), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(537), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [369396] = 28, + ACTIONS(2665), 1, + sym_integer_scon, + ACTIONS(2669), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2671), 1, + sym__symbolic_ident, + ACTIONS(2673), 1, + anon_sym_LPAREN, + ACTIONS(2675), 1, + anon_sym_op, + ACTIONS(2677), 1, + anon_sym_LBRACE, + ACTIONS(2679), 1, + anon_sym_POUND, + ACTIONS(2681), 1, + anon_sym_LBRACK, + ACTIONS(2683), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2685), 1, + anon_sym_let, + ACTIONS(2687), 1, + anon_sym_u201c, + ACTIONS(2689), 1, + anon_sym_u2018, + ACTIONS(2691), 1, + anon_sym_BQUOTE, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + ACTIONS(11419), 1, + anon_sym_raise, + ACTIONS(11421), 1, + anon_sym_if, + ACTIONS(11423), 1, + anon_sym_while, + STATE(6607), 1, + sym__scon, + STATE(6608), 1, + sym_longvid, + STATE(6662), 1, + sym_vid, + STATE(13145), 1, + sym__exp, + STATE(18812), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2667), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(537), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [369508] = 28, + ACTIONS(2665), 1, + sym_integer_scon, + ACTIONS(2669), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2671), 1, + sym__symbolic_ident, + ACTIONS(2673), 1, + anon_sym_LPAREN, + ACTIONS(2675), 1, + anon_sym_op, + ACTIONS(2677), 1, + anon_sym_LBRACE, + ACTIONS(2679), 1, + anon_sym_POUND, + ACTIONS(2681), 1, + anon_sym_LBRACK, + ACTIONS(2683), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2685), 1, + anon_sym_let, + ACTIONS(2687), 1, + anon_sym_u201c, + ACTIONS(2689), 1, + anon_sym_u2018, + ACTIONS(2691), 1, + anon_sym_BQUOTE, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + ACTIONS(11419), 1, + anon_sym_raise, + ACTIONS(11421), 1, + anon_sym_if, + ACTIONS(11423), 1, + anon_sym_while, + STATE(6607), 1, + sym__scon, + STATE(6608), 1, + sym_longvid, + STATE(6662), 1, + sym_vid, + STATE(13098), 1, + sym__exp, + STATE(18812), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2667), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(537), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [369620] = 28, + ACTIONS(2665), 1, + sym_integer_scon, + ACTIONS(2669), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2671), 1, + sym__symbolic_ident, + ACTIONS(2673), 1, + anon_sym_LPAREN, + ACTIONS(2675), 1, + anon_sym_op, + ACTIONS(2677), 1, + anon_sym_LBRACE, + ACTIONS(2679), 1, + anon_sym_POUND, + ACTIONS(2681), 1, + anon_sym_LBRACK, + ACTIONS(2683), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2685), 1, + anon_sym_let, + ACTIONS(2687), 1, + anon_sym_u201c, + ACTIONS(2689), 1, + anon_sym_u2018, + ACTIONS(2691), 1, + anon_sym_BQUOTE, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + ACTIONS(11419), 1, + anon_sym_raise, + ACTIONS(11421), 1, + anon_sym_if, + ACTIONS(11423), 1, + anon_sym_while, + STATE(6607), 1, + sym__scon, + STATE(6608), 1, + sym_longvid, + STATE(6662), 1, + sym_vid, + STATE(13253), 1, + sym__exp, + STATE(18812), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2667), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(537), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [369732] = 28, + ACTIONS(2665), 1, + sym_integer_scon, + ACTIONS(2669), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2671), 1, + sym__symbolic_ident, + ACTIONS(2673), 1, + anon_sym_LPAREN, + ACTIONS(2675), 1, + anon_sym_op, + ACTIONS(2677), 1, + anon_sym_LBRACE, + ACTIONS(2679), 1, + anon_sym_POUND, + ACTIONS(2681), 1, + anon_sym_LBRACK, + ACTIONS(2683), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2685), 1, + anon_sym_let, + ACTIONS(2687), 1, + anon_sym_u201c, + ACTIONS(2689), 1, + anon_sym_u2018, + ACTIONS(2691), 1, + anon_sym_BQUOTE, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + ACTIONS(11419), 1, + anon_sym_raise, + ACTIONS(11421), 1, + anon_sym_if, + ACTIONS(11423), 1, + anon_sym_while, + STATE(6607), 1, + sym__scon, + STATE(6608), 1, + sym_longvid, + STATE(6662), 1, + sym_vid, + STATE(13256), 1, + sym__exp, + STATE(18812), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2667), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(537), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [369844] = 28, + ACTIONS(1803), 1, + sym_integer_scon, + ACTIONS(1807), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1809), 1, + sym__symbolic_ident, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + anon_sym_op, + ACTIONS(1815), 1, + anon_sym_LBRACE, + ACTIONS(1817), 1, + anon_sym_POUND, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1821), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1823), 1, + anon_sym_let, + ACTIONS(1825), 1, + anon_sym_u201c, + ACTIONS(1827), 1, + anon_sym_u2018, + ACTIONS(1829), 1, + anon_sym_BQUOTE, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + ACTIONS(11425), 1, + anon_sym_raise, + ACTIONS(11427), 1, + anon_sym_if, + ACTIONS(11429), 1, + anon_sym_while, + STATE(5962), 1, + sym__scon, + STATE(5963), 1, + sym_longvid, + STATE(6481), 1, + sym_vid, + STATE(12835), 1, + sym__exp, + STATE(19226), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1805), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(501), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [369956] = 28, + ACTIONS(1803), 1, + sym_integer_scon, + ACTIONS(1807), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1809), 1, + sym__symbolic_ident, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + anon_sym_op, + ACTIONS(1815), 1, + anon_sym_LBRACE, + ACTIONS(1817), 1, + anon_sym_POUND, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1821), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1823), 1, + anon_sym_let, + ACTIONS(1825), 1, + anon_sym_u201c, + ACTIONS(1827), 1, + anon_sym_u2018, + ACTIONS(1829), 1, + anon_sym_BQUOTE, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + ACTIONS(11425), 1, + anon_sym_raise, + ACTIONS(11427), 1, + anon_sym_if, + ACTIONS(11429), 1, + anon_sym_while, + STATE(5962), 1, + sym__scon, + STATE(5963), 1, + sym_longvid, + STATE(6481), 1, + sym_vid, + STATE(12836), 1, + sym__exp, + STATE(19226), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1805), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(501), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [370068] = 28, + ACTIONS(1803), 1, + sym_integer_scon, + ACTIONS(1807), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1809), 1, + sym__symbolic_ident, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + anon_sym_op, + ACTIONS(1815), 1, + anon_sym_LBRACE, + ACTIONS(1817), 1, + anon_sym_POUND, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1821), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1823), 1, + anon_sym_let, + ACTIONS(1825), 1, + anon_sym_u201c, + ACTIONS(1827), 1, + anon_sym_u2018, + ACTIONS(1829), 1, + anon_sym_BQUOTE, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + ACTIONS(11425), 1, + anon_sym_raise, + ACTIONS(11427), 1, + anon_sym_if, + ACTIONS(11429), 1, + anon_sym_while, + STATE(5962), 1, + sym__scon, + STATE(5963), 1, + sym_longvid, + STATE(6481), 1, + sym_vid, + STATE(12886), 1, + sym__exp, + STATE(19226), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1805), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(501), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [370180] = 28, + ACTIONS(1803), 1, + sym_integer_scon, + ACTIONS(1807), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1809), 1, + sym__symbolic_ident, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + anon_sym_op, + ACTIONS(1815), 1, + anon_sym_LBRACE, + ACTIONS(1817), 1, + anon_sym_POUND, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1821), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1823), 1, + anon_sym_let, + ACTIONS(1825), 1, + anon_sym_u201c, + ACTIONS(1827), 1, + anon_sym_u2018, + ACTIONS(1829), 1, + anon_sym_BQUOTE, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + ACTIONS(11425), 1, + anon_sym_raise, + ACTIONS(11427), 1, + anon_sym_if, + ACTIONS(11429), 1, + anon_sym_while, + STATE(5962), 1, + sym__scon, + STATE(5963), 1, + sym_longvid, + STATE(6481), 1, + sym_vid, + STATE(12825), 1, + sym__exp, + STATE(19226), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1805), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(501), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [370292] = 28, + ACTIONS(1803), 1, + sym_integer_scon, + ACTIONS(1807), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1809), 1, + sym__symbolic_ident, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + anon_sym_op, + ACTIONS(1815), 1, + anon_sym_LBRACE, + ACTIONS(1817), 1, + anon_sym_POUND, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1821), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1823), 1, + anon_sym_let, + ACTIONS(1825), 1, + anon_sym_u201c, + ACTIONS(1827), 1, + anon_sym_u2018, + ACTIONS(1829), 1, + anon_sym_BQUOTE, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + ACTIONS(11425), 1, + anon_sym_raise, + ACTIONS(11427), 1, + anon_sym_if, + ACTIONS(11429), 1, + anon_sym_while, + STATE(5962), 1, + sym__scon, + STATE(5963), 1, + sym_longvid, + STATE(6481), 1, + sym_vid, + STATE(12826), 1, + sym__exp, + STATE(19226), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1805), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(501), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [370404] = 28, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10867), 1, + sym_integer_scon, + ACTIONS(10871), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10873), 1, + sym__symbolic_ident, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_op, + ACTIONS(10879), 1, + anon_sym_LBRACE, + ACTIONS(10881), 1, + anon_sym_POUND, + ACTIONS(10883), 1, + anon_sym_LBRACK, + ACTIONS(10885), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10887), 1, + anon_sym_let, + ACTIONS(10889), 1, + anon_sym_raise, + ACTIONS(10891), 1, + anon_sym_if, + ACTIONS(10893), 1, + anon_sym_while, + ACTIONS(10895), 1, + anon_sym_u201c, + ACTIONS(10897), 1, + anon_sym_u2018, + ACTIONS(10899), 1, + anon_sym_BQUOTE, + STATE(9688), 1, + sym_vid, + STATE(9952), 1, + sym__scon, + STATE(9957), 1, + sym_longvid, + STATE(17202), 1, + sym__exp, + STATE(19255), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10869), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4107), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [370516] = 28, + ACTIONS(2735), 1, + sym_integer_scon, + ACTIONS(2739), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2741), 1, + sym__symbolic_ident, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2745), 1, + anon_sym_op, + ACTIONS(2747), 1, + anon_sym_LBRACE, + ACTIONS(2749), 1, + anon_sym_POUND, + ACTIONS(2751), 1, + anon_sym_LBRACK, + ACTIONS(2753), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2755), 1, + anon_sym_let, + ACTIONS(2757), 1, + anon_sym_u201c, + ACTIONS(2759), 1, + anon_sym_u2018, + ACTIONS(2761), 1, + anon_sym_BQUOTE, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + ACTIONS(10911), 1, + anon_sym_raise, + ACTIONS(10913), 1, + anon_sym_if, + ACTIONS(10915), 1, + anon_sym_while, + STATE(7228), 1, + sym__scon, + STATE(7230), 1, + sym_longvid, + STATE(7336), 1, + sym_vid, + STATE(13224), 1, + sym__exp, + STATE(18980), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2737), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(540), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [370628] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19136), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [370740] = 28, + ACTIONS(7), 1, + sym_integer_scon, + ACTIONS(11), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13), 1, + sym__symbolic_ident, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + anon_sym_op, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_POUND_LBRACK, + ACTIONS(27), 1, + anon_sym_let, + ACTIONS(29), 1, + anon_sym_raise, + ACTIONS(31), 1, + anon_sym_if, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(69), 1, + anon_sym_u201c, + ACTIONS(71), 1, + anon_sym_u2018, + ACTIONS(73), 1, + anon_sym_BQUOTE, + STATE(10287), 1, + sym_vid, + STATE(11359), 1, + sym__scon, + STATE(11478), 1, + sym_longvid, + STATE(18027), 1, + sym__exp, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(9), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4230), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [370852] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9308), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [370964] = 28, + ACTIONS(7), 1, + sym_integer_scon, + ACTIONS(11), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13), 1, + sym__symbolic_ident, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + anon_sym_op, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_POUND_LBRACK, + ACTIONS(27), 1, + anon_sym_let, + ACTIONS(29), 1, + anon_sym_raise, + ACTIONS(31), 1, + anon_sym_if, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(69), 1, + anon_sym_u201c, + ACTIONS(71), 1, + anon_sym_u2018, + ACTIONS(73), 1, + anon_sym_BQUOTE, + STATE(10287), 1, + sym_vid, + STATE(11359), 1, + sym__scon, + STATE(11478), 1, + sym_longvid, + STATE(18142), 1, + sym__exp, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(9), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4230), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [371076] = 28, + ACTIONS(5841), 1, + sym_integer_scon, + ACTIONS(5845), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5847), 1, + sym__symbolic_ident, + ACTIONS(5849), 1, + anon_sym_LPAREN, + ACTIONS(5851), 1, + anon_sym_op, + ACTIONS(5853), 1, + anon_sym_LBRACE, + ACTIONS(5855), 1, + anon_sym_POUND, + ACTIONS(5857), 1, + anon_sym_LBRACK, + ACTIONS(5859), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5861), 1, + anon_sym_let, + ACTIONS(5863), 1, + anon_sym_u201c, + ACTIONS(5865), 1, + anon_sym_u2018, + ACTIONS(5867), 1, + anon_sym_BQUOTE, + ACTIONS(10673), 1, + anon_sym_case, + ACTIONS(10675), 1, + anon_sym_fn, + ACTIONS(11431), 1, + anon_sym_raise, + ACTIONS(11433), 1, + anon_sym_if, + ACTIONS(11435), 1, + anon_sym_while, + STATE(8234), 1, + sym_vid, + STATE(8256), 1, + sym__scon, + STATE(8261), 1, + sym_longvid, + STATE(13630), 1, + sym__exp, + STATE(18751), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5843), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1114), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [371188] = 28, + ACTIONS(2055), 1, + sym_integer_scon, + ACTIONS(2059), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2061), 1, + sym__symbolic_ident, + ACTIONS(2063), 1, + anon_sym_LPAREN, + ACTIONS(2065), 1, + anon_sym_op, + ACTIONS(2067), 1, + anon_sym_LBRACE, + ACTIONS(2069), 1, + anon_sym_POUND, + ACTIONS(2071), 1, + anon_sym_LBRACK, + ACTIONS(2073), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2075), 1, + anon_sym_let, + ACTIONS(2077), 1, + anon_sym_u201c, + ACTIONS(2079), 1, + anon_sym_u2018, + ACTIONS(2081), 1, + anon_sym_BQUOTE, + ACTIONS(10427), 1, + anon_sym_raise, + ACTIONS(10429), 1, + anon_sym_if, + ACTIONS(10431), 1, + anon_sym_while, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + STATE(5861), 1, + sym_vid, + STATE(6077), 1, + sym__scon, + STATE(6080), 1, + sym_longvid, + STATE(12844), 1, + sym__exp, + STATE(18806), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2057), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(510), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [371300] = 28, + ACTIONS(2055), 1, + sym_integer_scon, + ACTIONS(2059), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2061), 1, + sym__symbolic_ident, + ACTIONS(2063), 1, + anon_sym_LPAREN, + ACTIONS(2065), 1, + anon_sym_op, + ACTIONS(2067), 1, + anon_sym_LBRACE, + ACTIONS(2069), 1, + anon_sym_POUND, + ACTIONS(2071), 1, + anon_sym_LBRACK, + ACTIONS(2073), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2075), 1, + anon_sym_let, + ACTIONS(2077), 1, + anon_sym_u201c, + ACTIONS(2079), 1, + anon_sym_u2018, + ACTIONS(2081), 1, + anon_sym_BQUOTE, + ACTIONS(10427), 1, + anon_sym_raise, + ACTIONS(10429), 1, + anon_sym_if, + ACTIONS(10431), 1, + anon_sym_while, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + STATE(5861), 1, + sym_vid, + STATE(6077), 1, + sym__scon, + STATE(6080), 1, + sym_longvid, + STATE(12845), 1, + sym__exp, + STATE(18806), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2057), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(510), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [371412] = 28, + ACTIONS(2055), 1, + sym_integer_scon, + ACTIONS(2059), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2061), 1, + sym__symbolic_ident, + ACTIONS(2063), 1, + anon_sym_LPAREN, + ACTIONS(2065), 1, + anon_sym_op, + ACTIONS(2067), 1, + anon_sym_LBRACE, + ACTIONS(2069), 1, + anon_sym_POUND, + ACTIONS(2071), 1, + anon_sym_LBRACK, + ACTIONS(2073), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2075), 1, + anon_sym_let, + ACTIONS(2077), 1, + anon_sym_u201c, + ACTIONS(2079), 1, + anon_sym_u2018, + ACTIONS(2081), 1, + anon_sym_BQUOTE, + ACTIONS(10427), 1, + anon_sym_raise, + ACTIONS(10429), 1, + anon_sym_if, + ACTIONS(10431), 1, + anon_sym_while, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + STATE(5861), 1, + sym_vid, + STATE(6077), 1, + sym__scon, + STATE(6080), 1, + sym_longvid, + STATE(12888), 1, + sym__exp, + STATE(18806), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2057), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(510), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [371524] = 28, + ACTIONS(2055), 1, + sym_integer_scon, + ACTIONS(2059), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2061), 1, + sym__symbolic_ident, + ACTIONS(2063), 1, + anon_sym_LPAREN, + ACTIONS(2065), 1, + anon_sym_op, + ACTIONS(2067), 1, + anon_sym_LBRACE, + ACTIONS(2069), 1, + anon_sym_POUND, + ACTIONS(2071), 1, + anon_sym_LBRACK, + ACTIONS(2073), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2075), 1, + anon_sym_let, + ACTIONS(2077), 1, + anon_sym_u201c, + ACTIONS(2079), 1, + anon_sym_u2018, + ACTIONS(2081), 1, + anon_sym_BQUOTE, + ACTIONS(10427), 1, + anon_sym_raise, + ACTIONS(10429), 1, + anon_sym_if, + ACTIONS(10431), 1, + anon_sym_while, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + STATE(5861), 1, + sym_vid, + STATE(6077), 1, + sym__scon, + STATE(6080), 1, + sym_longvid, + STATE(12832), 1, + sym__exp, + STATE(18806), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2057), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(510), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [371636] = 28, + ACTIONS(2055), 1, + sym_integer_scon, + ACTIONS(2059), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2061), 1, + sym__symbolic_ident, + ACTIONS(2063), 1, + anon_sym_LPAREN, + ACTIONS(2065), 1, + anon_sym_op, + ACTIONS(2067), 1, + anon_sym_LBRACE, + ACTIONS(2069), 1, + anon_sym_POUND, + ACTIONS(2071), 1, + anon_sym_LBRACK, + ACTIONS(2073), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2075), 1, + anon_sym_let, + ACTIONS(2077), 1, + anon_sym_u201c, + ACTIONS(2079), 1, + anon_sym_u2018, + ACTIONS(2081), 1, + anon_sym_BQUOTE, + ACTIONS(10427), 1, + anon_sym_raise, + ACTIONS(10429), 1, + anon_sym_if, + ACTIONS(10431), 1, + anon_sym_while, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + STATE(5861), 1, + sym_vid, + STATE(6077), 1, + sym__scon, + STATE(6080), 1, + sym_longvid, + STATE(12833), 1, + sym__exp, + STATE(18806), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2057), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(510), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [371748] = 28, + ACTIONS(10497), 1, + sym_integer_scon, + ACTIONS(10501), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10503), 1, + sym__symbolic_ident, + ACTIONS(10505), 1, + anon_sym_LPAREN, + ACTIONS(10507), 1, + anon_sym_op, + ACTIONS(10509), 1, + anon_sym_LBRACE, + ACTIONS(10511), 1, + anon_sym_POUND, + ACTIONS(10513), 1, + anon_sym_LBRACK, + ACTIONS(10515), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10517), 1, + anon_sym_let, + ACTIONS(10519), 1, + anon_sym_raise, + ACTIONS(10521), 1, + anon_sym_if, + ACTIONS(10523), 1, + anon_sym_while, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10529), 1, + anon_sym_u201c, + ACTIONS(10531), 1, + anon_sym_u2018, + ACTIONS(10533), 1, + anon_sym_BQUOTE, + STATE(10361), 1, + sym__scon, + STATE(10362), 1, + sym_longvid, + STATE(10758), 1, + sym_vid, + STATE(17731), 1, + sym__exp, + STATE(19039), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10499), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4126), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [371860] = 28, + ACTIONS(10497), 1, + sym_integer_scon, + ACTIONS(10501), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10503), 1, + sym__symbolic_ident, + ACTIONS(10505), 1, + anon_sym_LPAREN, + ACTIONS(10507), 1, + anon_sym_op, + ACTIONS(10509), 1, + anon_sym_LBRACE, + ACTIONS(10511), 1, + anon_sym_POUND, + ACTIONS(10513), 1, + anon_sym_LBRACK, + ACTIONS(10515), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10517), 1, + anon_sym_let, + ACTIONS(10519), 1, + anon_sym_raise, + ACTIONS(10521), 1, + anon_sym_if, + ACTIONS(10523), 1, + anon_sym_while, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10529), 1, + anon_sym_u201c, + ACTIONS(10531), 1, + anon_sym_u2018, + ACTIONS(10533), 1, + anon_sym_BQUOTE, + STATE(10361), 1, + sym__scon, + STATE(10362), 1, + sym_longvid, + STATE(10758), 1, + sym_vid, + STATE(17908), 1, + sym__exp, + STATE(19039), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10499), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4126), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [371972] = 28, + ACTIONS(10497), 1, + sym_integer_scon, + ACTIONS(10501), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10503), 1, + sym__symbolic_ident, + ACTIONS(10505), 1, + anon_sym_LPAREN, + ACTIONS(10507), 1, + anon_sym_op, + ACTIONS(10509), 1, + anon_sym_LBRACE, + ACTIONS(10511), 1, + anon_sym_POUND, + ACTIONS(10513), 1, + anon_sym_LBRACK, + ACTIONS(10515), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10517), 1, + anon_sym_let, + ACTIONS(10519), 1, + anon_sym_raise, + ACTIONS(10521), 1, + anon_sym_if, + ACTIONS(10523), 1, + anon_sym_while, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10529), 1, + anon_sym_u201c, + ACTIONS(10531), 1, + anon_sym_u2018, + ACTIONS(10533), 1, + anon_sym_BQUOTE, + STATE(10361), 1, + sym__scon, + STATE(10362), 1, + sym_longvid, + STATE(10758), 1, + sym_vid, + STATE(17870), 1, + sym__exp, + STATE(19039), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10499), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4126), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [372084] = 28, + ACTIONS(10497), 1, + sym_integer_scon, + ACTIONS(10501), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10503), 1, + sym__symbolic_ident, + ACTIONS(10505), 1, + anon_sym_LPAREN, + ACTIONS(10507), 1, + anon_sym_op, + ACTIONS(10509), 1, + anon_sym_LBRACE, + ACTIONS(10511), 1, + anon_sym_POUND, + ACTIONS(10513), 1, + anon_sym_LBRACK, + ACTIONS(10515), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10517), 1, + anon_sym_let, + ACTIONS(10519), 1, + anon_sym_raise, + ACTIONS(10521), 1, + anon_sym_if, + ACTIONS(10523), 1, + anon_sym_while, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10529), 1, + anon_sym_u201c, + ACTIONS(10531), 1, + anon_sym_u2018, + ACTIONS(10533), 1, + anon_sym_BQUOTE, + STATE(10361), 1, + sym__scon, + STATE(10362), 1, + sym_longvid, + STATE(10758), 1, + sym_vid, + STATE(17800), 1, + sym__exp, + STATE(19039), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10499), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4126), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [372196] = 28, + ACTIONS(10497), 1, + sym_integer_scon, + ACTIONS(10501), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10503), 1, + sym__symbolic_ident, + ACTIONS(10505), 1, + anon_sym_LPAREN, + ACTIONS(10507), 1, + anon_sym_op, + ACTIONS(10509), 1, + anon_sym_LBRACE, + ACTIONS(10511), 1, + anon_sym_POUND, + ACTIONS(10513), 1, + anon_sym_LBRACK, + ACTIONS(10515), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10517), 1, + anon_sym_let, + ACTIONS(10519), 1, + anon_sym_raise, + ACTIONS(10521), 1, + anon_sym_if, + ACTIONS(10523), 1, + anon_sym_while, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10529), 1, + anon_sym_u201c, + ACTIONS(10531), 1, + anon_sym_u2018, + ACTIONS(10533), 1, + anon_sym_BQUOTE, + STATE(10361), 1, + sym__scon, + STATE(10362), 1, + sym_longvid, + STATE(10758), 1, + sym_vid, + STATE(17801), 1, + sym__exp, + STATE(19039), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10499), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4126), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [372308] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18745), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [372420] = 28, + ACTIONS(2735), 1, + sym_integer_scon, + ACTIONS(2739), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2741), 1, + sym__symbolic_ident, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2745), 1, + anon_sym_op, + ACTIONS(2747), 1, + anon_sym_LBRACE, + ACTIONS(2749), 1, + anon_sym_POUND, + ACTIONS(2751), 1, + anon_sym_LBRACK, + ACTIONS(2753), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2755), 1, + anon_sym_let, + ACTIONS(2757), 1, + anon_sym_u201c, + ACTIONS(2759), 1, + anon_sym_u2018, + ACTIONS(2761), 1, + anon_sym_BQUOTE, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + ACTIONS(10911), 1, + anon_sym_raise, + ACTIONS(10913), 1, + anon_sym_if, + ACTIONS(10915), 1, + anon_sym_while, + STATE(7228), 1, + sym__scon, + STATE(7230), 1, + sym_longvid, + STATE(7336), 1, + sym_vid, + STATE(13264), 1, + sym__exp, + STATE(18980), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2737), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(540), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [372532] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(12696), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [372644] = 28, + ACTIONS(10459), 1, + sym_integer_scon, + ACTIONS(10463), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10465), 1, + sym__symbolic_ident, + ACTIONS(10467), 1, + anon_sym_LPAREN, + ACTIONS(10469), 1, + anon_sym_op, + ACTIONS(10471), 1, + anon_sym_LBRACE, + ACTIONS(10473), 1, + anon_sym_POUND, + ACTIONS(10475), 1, + anon_sym_LBRACK, + ACTIONS(10477), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10479), 1, + anon_sym_let, + ACTIONS(10481), 1, + anon_sym_raise, + ACTIONS(10483), 1, + anon_sym_if, + ACTIONS(10485), 1, + anon_sym_while, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(10491), 1, + anon_sym_u201c, + ACTIONS(10493), 1, + anon_sym_u2018, + ACTIONS(10495), 1, + anon_sym_BQUOTE, + STATE(9534), 1, + sym_vid, + STATE(9568), 1, + sym__scon, + STATE(9570), 1, + sym_longvid, + STATE(17356), 1, + sym__exp, + STATE(18883), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10461), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4123), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [372756] = 28, + ACTIONS(10459), 1, + sym_integer_scon, + ACTIONS(10463), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10465), 1, + sym__symbolic_ident, + ACTIONS(10467), 1, + anon_sym_LPAREN, + ACTIONS(10469), 1, + anon_sym_op, + ACTIONS(10471), 1, + anon_sym_LBRACE, + ACTIONS(10473), 1, + anon_sym_POUND, + ACTIONS(10475), 1, + anon_sym_LBRACK, + ACTIONS(10477), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10479), 1, + anon_sym_let, + ACTIONS(10481), 1, + anon_sym_raise, + ACTIONS(10483), 1, + anon_sym_if, + ACTIONS(10485), 1, + anon_sym_while, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(10491), 1, + anon_sym_u201c, + ACTIONS(10493), 1, + anon_sym_u2018, + ACTIONS(10495), 1, + anon_sym_BQUOTE, + STATE(9534), 1, + sym_vid, + STATE(9568), 1, + sym__scon, + STATE(9570), 1, + sym_longvid, + STATE(17420), 1, + sym__exp, + STATE(18883), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10461), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4123), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [372868] = 28, + ACTIONS(10459), 1, + sym_integer_scon, + ACTIONS(10463), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10465), 1, + sym__symbolic_ident, + ACTIONS(10467), 1, + anon_sym_LPAREN, + ACTIONS(10469), 1, + anon_sym_op, + ACTIONS(10471), 1, + anon_sym_LBRACE, + ACTIONS(10473), 1, + anon_sym_POUND, + ACTIONS(10475), 1, + anon_sym_LBRACK, + ACTIONS(10477), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10479), 1, + anon_sym_let, + ACTIONS(10481), 1, + anon_sym_raise, + ACTIONS(10483), 1, + anon_sym_if, + ACTIONS(10485), 1, + anon_sym_while, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(10491), 1, + anon_sym_u201c, + ACTIONS(10493), 1, + anon_sym_u2018, + ACTIONS(10495), 1, + anon_sym_BQUOTE, + STATE(9534), 1, + sym_vid, + STATE(9568), 1, + sym__scon, + STATE(9570), 1, + sym_longvid, + STATE(17469), 1, + sym__exp, + STATE(18883), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10461), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4123), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [372980] = 28, + ACTIONS(10459), 1, + sym_integer_scon, + ACTIONS(10463), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10465), 1, + sym__symbolic_ident, + ACTIONS(10467), 1, + anon_sym_LPAREN, + ACTIONS(10469), 1, + anon_sym_op, + ACTIONS(10471), 1, + anon_sym_LBRACE, + ACTIONS(10473), 1, + anon_sym_POUND, + ACTIONS(10475), 1, + anon_sym_LBRACK, + ACTIONS(10477), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10479), 1, + anon_sym_let, + ACTIONS(10481), 1, + anon_sym_raise, + ACTIONS(10483), 1, + anon_sym_if, + ACTIONS(10485), 1, + anon_sym_while, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(10491), 1, + anon_sym_u201c, + ACTIONS(10493), 1, + anon_sym_u2018, + ACTIONS(10495), 1, + anon_sym_BQUOTE, + STATE(9534), 1, + sym_vid, + STATE(9568), 1, + sym__scon, + STATE(9570), 1, + sym_longvid, + STATE(17379), 1, + sym__exp, + STATE(18883), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10461), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4123), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [373092] = 28, + ACTIONS(10459), 1, + sym_integer_scon, + ACTIONS(10463), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10465), 1, + sym__symbolic_ident, + ACTIONS(10467), 1, + anon_sym_LPAREN, + ACTIONS(10469), 1, + anon_sym_op, + ACTIONS(10471), 1, + anon_sym_LBRACE, + ACTIONS(10473), 1, + anon_sym_POUND, + ACTIONS(10475), 1, + anon_sym_LBRACK, + ACTIONS(10477), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10479), 1, + anon_sym_let, + ACTIONS(10481), 1, + anon_sym_raise, + ACTIONS(10483), 1, + anon_sym_if, + ACTIONS(10485), 1, + anon_sym_while, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(10491), 1, + anon_sym_u201c, + ACTIONS(10493), 1, + anon_sym_u2018, + ACTIONS(10495), 1, + anon_sym_BQUOTE, + STATE(9534), 1, + sym_vid, + STATE(9568), 1, + sym__scon, + STATE(9570), 1, + sym_longvid, + STATE(17380), 1, + sym__exp, + STATE(18883), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10461), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4123), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [373204] = 28, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10677), 1, + sym_integer_scon, + ACTIONS(10681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10683), 1, + sym__symbolic_ident, + ACTIONS(10685), 1, + anon_sym_LPAREN, + ACTIONS(10687), 1, + anon_sym_op, + ACTIONS(10689), 1, + anon_sym_LBRACE, + ACTIONS(10691), 1, + anon_sym_POUND, + ACTIONS(10693), 1, + anon_sym_LBRACK, + ACTIONS(10695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10697), 1, + anon_sym_let, + ACTIONS(10699), 1, + anon_sym_raise, + ACTIONS(10701), 1, + anon_sym_if, + ACTIONS(10703), 1, + anon_sym_while, + ACTIONS(10705), 1, + anon_sym_u201c, + ACTIONS(10707), 1, + anon_sym_u2018, + ACTIONS(10709), 1, + anon_sym_BQUOTE, + STATE(8959), 1, + sym_vid, + STATE(9045), 1, + sym__scon, + STATE(9046), 1, + sym_longvid, + STATE(15771), 1, + sym__exp, + STATE(18752), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4089), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [373316] = 28, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(10785), 1, + sym_integer_scon, + ACTIONS(10789), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10791), 1, + sym__symbolic_ident, + ACTIONS(10793), 1, + anon_sym_LPAREN, + ACTIONS(10795), 1, + anon_sym_op, + ACTIONS(10797), 1, + anon_sym_LBRACE, + ACTIONS(10799), 1, + anon_sym_POUND, + ACTIONS(10801), 1, + anon_sym_LBRACK, + ACTIONS(10803), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10805), 1, + anon_sym_let, + ACTIONS(10807), 1, + anon_sym_raise, + ACTIONS(10809), 1, + anon_sym_if, + ACTIONS(10811), 1, + anon_sym_while, + ACTIONS(10813), 1, + anon_sym_u201c, + ACTIONS(10815), 1, + anon_sym_u2018, + ACTIONS(10817), 1, + anon_sym_BQUOTE, + STATE(8961), 1, + sym_vid, + STATE(9111), 1, + sym__scon, + STATE(9112), 1, + sym_longvid, + STATE(15708), 1, + sym__exp, + STATE(18849), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10787), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4087), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [373428] = 28, + ACTIONS(5411), 1, + sym_integer_scon, + ACTIONS(5415), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5417), 1, + sym__symbolic_ident, + ACTIONS(5419), 1, + anon_sym_LPAREN, + ACTIONS(5421), 1, + anon_sym_op, + ACTIONS(5423), 1, + anon_sym_LBRACE, + ACTIONS(5425), 1, + anon_sym_POUND, + ACTIONS(5427), 1, + anon_sym_LBRACK, + ACTIONS(5429), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5431), 1, + anon_sym_let, + ACTIONS(5433), 1, + anon_sym_u201c, + ACTIONS(5435), 1, + anon_sym_u2018, + ACTIONS(5437), 1, + anon_sym_BQUOTE, + ACTIONS(10901), 1, + anon_sym_raise, + ACTIONS(10903), 1, + anon_sym_if, + ACTIONS(10905), 1, + anon_sym_while, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + STATE(7500), 1, + sym_vid, + STATE(7970), 1, + sym__scon, + STATE(7971), 1, + sym_longvid, + STATE(13507), 1, + sym__exp, + STATE(18762), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5413), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1092), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [373540] = 28, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(10535), 1, + sym_integer_scon, + ACTIONS(10539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10541), 1, + sym__symbolic_ident, + ACTIONS(10543), 1, + anon_sym_LPAREN, + ACTIONS(10545), 1, + anon_sym_op, + ACTIONS(10547), 1, + anon_sym_LBRACE, + ACTIONS(10549), 1, + anon_sym_POUND, + ACTIONS(10551), 1, + anon_sym_LBRACK, + ACTIONS(10553), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10555), 1, + anon_sym_let, + ACTIONS(10557), 1, + anon_sym_raise, + ACTIONS(10559), 1, + anon_sym_if, + ACTIONS(10561), 1, + anon_sym_while, + ACTIONS(10563), 1, + anon_sym_u201c, + ACTIONS(10565), 1, + anon_sym_u2018, + ACTIONS(10567), 1, + anon_sym_BQUOTE, + STATE(10469), 1, + sym__scon, + STATE(10471), 1, + sym_longvid, + STATE(10814), 1, + sym_vid, + STATE(17798), 1, + sym__exp, + STATE(18831), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4129), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [373652] = 28, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(10535), 1, + sym_integer_scon, + ACTIONS(10539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10541), 1, + sym__symbolic_ident, + ACTIONS(10543), 1, + anon_sym_LPAREN, + ACTIONS(10545), 1, + anon_sym_op, + ACTIONS(10547), 1, + anon_sym_LBRACE, + ACTIONS(10549), 1, + anon_sym_POUND, + ACTIONS(10551), 1, + anon_sym_LBRACK, + ACTIONS(10553), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10555), 1, + anon_sym_let, + ACTIONS(10557), 1, + anon_sym_raise, + ACTIONS(10559), 1, + anon_sym_if, + ACTIONS(10561), 1, + anon_sym_while, + ACTIONS(10563), 1, + anon_sym_u201c, + ACTIONS(10565), 1, + anon_sym_u2018, + ACTIONS(10567), 1, + anon_sym_BQUOTE, + STATE(10469), 1, + sym__scon, + STATE(10471), 1, + sym_longvid, + STATE(10814), 1, + sym_vid, + STATE(17925), 1, + sym__exp, + STATE(18831), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4129), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [373764] = 28, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(10535), 1, + sym_integer_scon, + ACTIONS(10539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10541), 1, + sym__symbolic_ident, + ACTIONS(10543), 1, + anon_sym_LPAREN, + ACTIONS(10545), 1, + anon_sym_op, + ACTIONS(10547), 1, + anon_sym_LBRACE, + ACTIONS(10549), 1, + anon_sym_POUND, + ACTIONS(10551), 1, + anon_sym_LBRACK, + ACTIONS(10553), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10555), 1, + anon_sym_let, + ACTIONS(10557), 1, + anon_sym_raise, + ACTIONS(10559), 1, + anon_sym_if, + ACTIONS(10561), 1, + anon_sym_while, + ACTIONS(10563), 1, + anon_sym_u201c, + ACTIONS(10565), 1, + anon_sym_u2018, + ACTIONS(10567), 1, + anon_sym_BQUOTE, + STATE(10469), 1, + sym__scon, + STATE(10471), 1, + sym_longvid, + STATE(10814), 1, + sym_vid, + STATE(17881), 1, + sym__exp, + STATE(18831), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4129), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [373876] = 28, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(10535), 1, + sym_integer_scon, + ACTIONS(10539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10541), 1, + sym__symbolic_ident, + ACTIONS(10543), 1, + anon_sym_LPAREN, + ACTIONS(10545), 1, + anon_sym_op, + ACTIONS(10547), 1, + anon_sym_LBRACE, + ACTIONS(10549), 1, + anon_sym_POUND, + ACTIONS(10551), 1, + anon_sym_LBRACK, + ACTIONS(10553), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10555), 1, + anon_sym_let, + ACTIONS(10557), 1, + anon_sym_raise, + ACTIONS(10559), 1, + anon_sym_if, + ACTIONS(10561), 1, + anon_sym_while, + ACTIONS(10563), 1, + anon_sym_u201c, + ACTIONS(10565), 1, + anon_sym_u2018, + ACTIONS(10567), 1, + anon_sym_BQUOTE, + STATE(10469), 1, + sym__scon, + STATE(10471), 1, + sym_longvid, + STATE(10814), 1, + sym_vid, + STATE(17812), 1, + sym__exp, + STATE(18831), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4129), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [373988] = 28, + ACTIONS(5821), 1, + anon_sym_case, + ACTIONS(5823), 1, + anon_sym_fn, + ACTIONS(10535), 1, + sym_integer_scon, + ACTIONS(10539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10541), 1, + sym__symbolic_ident, + ACTIONS(10543), 1, + anon_sym_LPAREN, + ACTIONS(10545), 1, + anon_sym_op, + ACTIONS(10547), 1, + anon_sym_LBRACE, + ACTIONS(10549), 1, + anon_sym_POUND, + ACTIONS(10551), 1, + anon_sym_LBRACK, + ACTIONS(10553), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10555), 1, + anon_sym_let, + ACTIONS(10557), 1, + anon_sym_raise, + ACTIONS(10559), 1, + anon_sym_if, + ACTIONS(10561), 1, + anon_sym_while, + ACTIONS(10563), 1, + anon_sym_u201c, + ACTIONS(10565), 1, + anon_sym_u2018, + ACTIONS(10567), 1, + anon_sym_BQUOTE, + STATE(10469), 1, + sym__scon, + STATE(10471), 1, + sym_longvid, + STATE(10814), 1, + sym_vid, + STATE(17813), 1, + sym__exp, + STATE(18831), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4129), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [374100] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13126), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [374212] = 28, + ACTIONS(10579), 1, + sym_integer_scon, + ACTIONS(10583), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10585), 1, + sym__symbolic_ident, + ACTIONS(10587), 1, + anon_sym_LPAREN, + ACTIONS(10589), 1, + anon_sym_op, + ACTIONS(10591), 1, + anon_sym_LBRACE, + ACTIONS(10593), 1, + anon_sym_POUND, + ACTIONS(10595), 1, + anon_sym_LBRACK, + ACTIONS(10597), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10599), 1, + anon_sym_let, + ACTIONS(10601), 1, + anon_sym_raise, + ACTIONS(10603), 1, + anon_sym_if, + ACTIONS(10605), 1, + anon_sym_while, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(10611), 1, + anon_sym_u201c, + ACTIONS(10613), 1, + anon_sym_u2018, + ACTIONS(10615), 1, + anon_sym_BQUOTE, + STATE(9540), 1, + sym_vid, + STATE(9630), 1, + sym__scon, + STATE(9632), 1, + sym_longvid, + STATE(17362), 1, + sym__exp, + STATE(18975), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10581), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4122), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [374324] = 28, + ACTIONS(10579), 1, + sym_integer_scon, + ACTIONS(10583), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10585), 1, + sym__symbolic_ident, + ACTIONS(10587), 1, + anon_sym_LPAREN, + ACTIONS(10589), 1, + anon_sym_op, + ACTIONS(10591), 1, + anon_sym_LBRACE, + ACTIONS(10593), 1, + anon_sym_POUND, + ACTIONS(10595), 1, + anon_sym_LBRACK, + ACTIONS(10597), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10599), 1, + anon_sym_let, + ACTIONS(10601), 1, + anon_sym_raise, + ACTIONS(10603), 1, + anon_sym_if, + ACTIONS(10605), 1, + anon_sym_while, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(10611), 1, + anon_sym_u201c, + ACTIONS(10613), 1, + anon_sym_u2018, + ACTIONS(10615), 1, + anon_sym_BQUOTE, + STATE(9540), 1, + sym_vid, + STATE(9630), 1, + sym__scon, + STATE(9632), 1, + sym_longvid, + STATE(17425), 1, + sym__exp, + STATE(18975), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10581), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4122), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [374436] = 28, + ACTIONS(10579), 1, + sym_integer_scon, + ACTIONS(10583), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10585), 1, + sym__symbolic_ident, + ACTIONS(10587), 1, + anon_sym_LPAREN, + ACTIONS(10589), 1, + anon_sym_op, + ACTIONS(10591), 1, + anon_sym_LBRACE, + ACTIONS(10593), 1, + anon_sym_POUND, + ACTIONS(10595), 1, + anon_sym_LBRACK, + ACTIONS(10597), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10599), 1, + anon_sym_let, + ACTIONS(10601), 1, + anon_sym_raise, + ACTIONS(10603), 1, + anon_sym_if, + ACTIONS(10605), 1, + anon_sym_while, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(10611), 1, + anon_sym_u201c, + ACTIONS(10613), 1, + anon_sym_u2018, + ACTIONS(10615), 1, + anon_sym_BQUOTE, + STATE(9540), 1, + sym_vid, + STATE(9630), 1, + sym__scon, + STATE(9632), 1, + sym_longvid, + STATE(17472), 1, + sym__exp, + STATE(18975), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10581), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4122), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [374548] = 28, + ACTIONS(10579), 1, + sym_integer_scon, + ACTIONS(10583), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10585), 1, + sym__symbolic_ident, + ACTIONS(10587), 1, + anon_sym_LPAREN, + ACTIONS(10589), 1, + anon_sym_op, + ACTIONS(10591), 1, + anon_sym_LBRACE, + ACTIONS(10593), 1, + anon_sym_POUND, + ACTIONS(10595), 1, + anon_sym_LBRACK, + ACTIONS(10597), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10599), 1, + anon_sym_let, + ACTIONS(10601), 1, + anon_sym_raise, + ACTIONS(10603), 1, + anon_sym_if, + ACTIONS(10605), 1, + anon_sym_while, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(10611), 1, + anon_sym_u201c, + ACTIONS(10613), 1, + anon_sym_u2018, + ACTIONS(10615), 1, + anon_sym_BQUOTE, + STATE(9540), 1, + sym_vid, + STATE(9630), 1, + sym__scon, + STATE(9632), 1, + sym_longvid, + STATE(17386), 1, + sym__exp, + STATE(18975), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10581), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4122), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [374660] = 28, + ACTIONS(10579), 1, + sym_integer_scon, + ACTIONS(10583), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10585), 1, + sym__symbolic_ident, + ACTIONS(10587), 1, + anon_sym_LPAREN, + ACTIONS(10589), 1, + anon_sym_op, + ACTIONS(10591), 1, + anon_sym_LBRACE, + ACTIONS(10593), 1, + anon_sym_POUND, + ACTIONS(10595), 1, + anon_sym_LBRACK, + ACTIONS(10597), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10599), 1, + anon_sym_let, + ACTIONS(10601), 1, + anon_sym_raise, + ACTIONS(10603), 1, + anon_sym_if, + ACTIONS(10605), 1, + anon_sym_while, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(10611), 1, + anon_sym_u201c, + ACTIONS(10613), 1, + anon_sym_u2018, + ACTIONS(10615), 1, + anon_sym_BQUOTE, + STATE(9540), 1, + sym_vid, + STATE(9630), 1, + sym__scon, + STATE(9632), 1, + sym_longvid, + STATE(17387), 1, + sym__exp, + STATE(18975), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10581), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4122), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [374772] = 28, + ACTIONS(1985), 1, + sym_integer_scon, + ACTIONS(1989), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1991), 1, + sym__symbolic_ident, + ACTIONS(1993), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_op, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(1999), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_LBRACK, + ACTIONS(2003), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2005), 1, + anon_sym_let, + ACTIONS(2007), 1, + anon_sym_u201c, + ACTIONS(2009), 1, + anon_sym_u2018, + ACTIONS(2011), 1, + anon_sym_BQUOTE, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + ACTIONS(10923), 1, + anon_sym_raise, + ACTIONS(10925), 1, + anon_sym_if, + ACTIONS(10927), 1, + anon_sym_while, + STATE(6262), 1, + sym__scon, + STATE(6263), 1, + sym_longvid, + STATE(6485), 1, + sym_vid, + STATE(12700), 1, + sym__exp, + STATE(19171), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1987), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(533), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [374884] = 28, + ACTIONS(2433), 1, + sym_integer_scon, + ACTIONS(2437), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2439), 1, + sym__symbolic_ident, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_op, + ACTIONS(2445), 1, + anon_sym_LBRACE, + ACTIONS(2447), 1, + anon_sym_POUND, + ACTIONS(2449), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2453), 1, + anon_sym_let, + ACTIONS(2455), 1, + anon_sym_u201c, + ACTIONS(2457), 1, + anon_sym_u2018, + ACTIONS(2459), 1, + anon_sym_BQUOTE, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + ACTIONS(10961), 1, + anon_sym_raise, + ACTIONS(10963), 1, + anon_sym_if, + ACTIONS(10965), 1, + anon_sym_while, + STATE(6369), 1, + sym__scon, + STATE(6371), 1, + sym_longvid, + STATE(6533), 1, + sym_vid, + STATE(12701), 1, + sym__exp, + STATE(19237), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2435), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(526), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [374996] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13196), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [375108] = 28, + ACTIONS(1467), 1, + sym_integer_scon, + ACTIONS(1471), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1473), 1, + sym__symbolic_ident, + ACTIONS(1475), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_op, + ACTIONS(1479), 1, + anon_sym_LBRACE, + ACTIONS(1481), 1, + anon_sym_POUND, + ACTIONS(1483), 1, + anon_sym_LBRACK, + ACTIONS(1485), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1487), 1, + anon_sym_let, + ACTIONS(1489), 1, + anon_sym_u201c, + ACTIONS(1491), 1, + anon_sym_u2018, + ACTIONS(1493), 1, + anon_sym_BQUOTE, + ACTIONS(10647), 1, + anon_sym_raise, + ACTIONS(10649), 1, + anon_sym_if, + ACTIONS(10651), 1, + anon_sym_while, + ACTIONS(10653), 1, + anon_sym_case, + ACTIONS(10655), 1, + anon_sym_fn, + STATE(5289), 1, + sym__scon, + STATE(5291), 1, + sym_vid, + STATE(5295), 1, + sym_longvid, + STATE(10894), 1, + sym__exp, + STATE(18842), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1469), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(488), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [375220] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13198), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [375332] = 28, + ACTIONS(1467), 1, + sym_integer_scon, + ACTIONS(1471), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1473), 1, + sym__symbolic_ident, + ACTIONS(1475), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_op, + ACTIONS(1479), 1, + anon_sym_LBRACE, + ACTIONS(1481), 1, + anon_sym_POUND, + ACTIONS(1483), 1, + anon_sym_LBRACK, + ACTIONS(1485), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1487), 1, + anon_sym_let, + ACTIONS(1489), 1, + anon_sym_u201c, + ACTIONS(1491), 1, + anon_sym_u2018, + ACTIONS(1493), 1, + anon_sym_BQUOTE, + ACTIONS(10647), 1, + anon_sym_raise, + ACTIONS(10649), 1, + anon_sym_if, + ACTIONS(10651), 1, + anon_sym_while, + ACTIONS(10653), 1, + anon_sym_case, + ACTIONS(10655), 1, + anon_sym_fn, + STATE(5289), 1, + sym__scon, + STATE(5291), 1, + sym_vid, + STATE(5295), 1, + sym_longvid, + STATE(10939), 1, + sym__exp, + STATE(18842), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1469), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(488), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [375444] = 28, + ACTIONS(2125), 1, + sym_integer_scon, + ACTIONS(2129), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2131), 1, + sym__symbolic_ident, + ACTIONS(2133), 1, + anon_sym_LPAREN, + ACTIONS(2135), 1, + anon_sym_op, + ACTIONS(2137), 1, + anon_sym_LBRACE, + ACTIONS(2139), 1, + anon_sym_POUND, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2143), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2145), 1, + anon_sym_let, + ACTIONS(2147), 1, + anon_sym_u201c, + ACTIONS(2149), 1, + anon_sym_u2018, + ACTIONS(2151), 1, + anon_sym_BQUOTE, + ACTIONS(10301), 1, + anon_sym_raise, + ACTIONS(10303), 1, + anon_sym_if, + ACTIONS(10305), 1, + anon_sym_while, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + STATE(5869), 1, + sym_vid, + STATE(6372), 1, + sym__scon, + STATE(6426), 1, + sym_longvid, + STATE(12850), 1, + sym__exp, + STATE(19086), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2127), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(513), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [375556] = 28, + ACTIONS(2125), 1, + sym_integer_scon, + ACTIONS(2129), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2131), 1, + sym__symbolic_ident, + ACTIONS(2133), 1, + anon_sym_LPAREN, + ACTIONS(2135), 1, + anon_sym_op, + ACTIONS(2137), 1, + anon_sym_LBRACE, + ACTIONS(2139), 1, + anon_sym_POUND, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2143), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2145), 1, + anon_sym_let, + ACTIONS(2147), 1, + anon_sym_u201c, + ACTIONS(2149), 1, + anon_sym_u2018, + ACTIONS(2151), 1, + anon_sym_BQUOTE, + ACTIONS(10301), 1, + anon_sym_raise, + ACTIONS(10303), 1, + anon_sym_if, + ACTIONS(10305), 1, + anon_sym_while, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + STATE(5869), 1, + sym_vid, + STATE(6372), 1, + sym__scon, + STATE(6426), 1, + sym_longvid, + STATE(12851), 1, + sym__exp, + STATE(19086), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2127), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(513), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [375668] = 28, + ACTIONS(2125), 1, + sym_integer_scon, + ACTIONS(2129), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2131), 1, + sym__symbolic_ident, + ACTIONS(2133), 1, + anon_sym_LPAREN, + ACTIONS(2135), 1, + anon_sym_op, + ACTIONS(2137), 1, + anon_sym_LBRACE, + ACTIONS(2139), 1, + anon_sym_POUND, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2143), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2145), 1, + anon_sym_let, + ACTIONS(2147), 1, + anon_sym_u201c, + ACTIONS(2149), 1, + anon_sym_u2018, + ACTIONS(2151), 1, + anon_sym_BQUOTE, + ACTIONS(10301), 1, + anon_sym_raise, + ACTIONS(10303), 1, + anon_sym_if, + ACTIONS(10305), 1, + anon_sym_while, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + STATE(5869), 1, + sym_vid, + STATE(6372), 1, + sym__scon, + STATE(6426), 1, + sym_longvid, + STATE(12891), 1, + sym__exp, + STATE(19086), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2127), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(513), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [375780] = 28, + ACTIONS(2125), 1, + sym_integer_scon, + ACTIONS(2129), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2131), 1, + sym__symbolic_ident, + ACTIONS(2133), 1, + anon_sym_LPAREN, + ACTIONS(2135), 1, + anon_sym_op, + ACTIONS(2137), 1, + anon_sym_LBRACE, + ACTIONS(2139), 1, + anon_sym_POUND, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2143), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2145), 1, + anon_sym_let, + ACTIONS(2147), 1, + anon_sym_u201c, + ACTIONS(2149), 1, + anon_sym_u2018, + ACTIONS(2151), 1, + anon_sym_BQUOTE, + ACTIONS(10301), 1, + anon_sym_raise, + ACTIONS(10303), 1, + anon_sym_if, + ACTIONS(10305), 1, + anon_sym_while, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + STATE(5869), 1, + sym_vid, + STATE(6372), 1, + sym__scon, + STATE(6426), 1, + sym_longvid, + STATE(12840), 1, + sym__exp, + STATE(19086), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2127), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(513), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [375892] = 28, + ACTIONS(2125), 1, + sym_integer_scon, + ACTIONS(2129), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2131), 1, + sym__symbolic_ident, + ACTIONS(2133), 1, + anon_sym_LPAREN, + ACTIONS(2135), 1, + anon_sym_op, + ACTIONS(2137), 1, + anon_sym_LBRACE, + ACTIONS(2139), 1, + anon_sym_POUND, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2143), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2145), 1, + anon_sym_let, + ACTIONS(2147), 1, + anon_sym_u201c, + ACTIONS(2149), 1, + anon_sym_u2018, + ACTIONS(2151), 1, + anon_sym_BQUOTE, + ACTIONS(10301), 1, + anon_sym_raise, + ACTIONS(10303), 1, + anon_sym_if, + ACTIONS(10305), 1, + anon_sym_while, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + STATE(5869), 1, + sym_vid, + STATE(6372), 1, + sym__scon, + STATE(6426), 1, + sym_longvid, + STATE(12841), 1, + sym__exp, + STATE(19086), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2127), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(513), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [376004] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13310), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [376116] = 28, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(18624), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [376228] = 28, + ACTIONS(5383), 1, + sym_integer_scon, + ACTIONS(5387), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5389), 1, + sym__symbolic_ident, + ACTIONS(5391), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, + anon_sym_op, + ACTIONS(5395), 1, + anon_sym_LBRACE, + ACTIONS(5397), 1, + anon_sym_POUND, + ACTIONS(5399), 1, + anon_sym_LBRACK, + ACTIONS(5401), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5403), 1, + anon_sym_let, + ACTIONS(5405), 1, + anon_sym_u201c, + ACTIONS(5407), 1, + anon_sym_u2018, + ACTIONS(5409), 1, + anon_sym_BQUOTE, + ACTIONS(10657), 1, + anon_sym_raise, + ACTIONS(10659), 1, + anon_sym_if, + ACTIONS(10661), 1, + anon_sym_while, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + STATE(7656), 1, + sym__scon, + STATE(7657), 1, + sym_longvid, + STATE(8034), 1, + sym_vid, + STATE(13497), 1, + sym__exp, + STATE(18922), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5385), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1109), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [376340] = 28, + ACTIONS(5383), 1, + sym_integer_scon, + ACTIONS(5387), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5389), 1, + sym__symbolic_ident, + ACTIONS(5391), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, + anon_sym_op, + ACTIONS(5395), 1, + anon_sym_LBRACE, + ACTIONS(5397), 1, + anon_sym_POUND, + ACTIONS(5399), 1, + anon_sym_LBRACK, + ACTIONS(5401), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5403), 1, + anon_sym_let, + ACTIONS(5405), 1, + anon_sym_u201c, + ACTIONS(5407), 1, + anon_sym_u2018, + ACTIONS(5409), 1, + anon_sym_BQUOTE, + ACTIONS(10657), 1, + anon_sym_raise, + ACTIONS(10659), 1, + anon_sym_if, + ACTIONS(10661), 1, + anon_sym_while, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + STATE(7656), 1, + sym__scon, + STATE(7657), 1, + sym_longvid, + STATE(8034), 1, + sym_vid, + STATE(13511), 1, + sym__exp, + STATE(18922), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5385), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1109), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [376452] = 28, + ACTIONS(5383), 1, + sym_integer_scon, + ACTIONS(5387), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5389), 1, + sym__symbolic_ident, + ACTIONS(5391), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, + anon_sym_op, + ACTIONS(5395), 1, + anon_sym_LBRACE, + ACTIONS(5397), 1, + anon_sym_POUND, + ACTIONS(5399), 1, + anon_sym_LBRACK, + ACTIONS(5401), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5403), 1, + anon_sym_let, + ACTIONS(5405), 1, + anon_sym_u201c, + ACTIONS(5407), 1, + anon_sym_u2018, + ACTIONS(5409), 1, + anon_sym_BQUOTE, + ACTIONS(10657), 1, + anon_sym_raise, + ACTIONS(10659), 1, + anon_sym_if, + ACTIONS(10661), 1, + anon_sym_while, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + STATE(7656), 1, + sym__scon, + STATE(7657), 1, + sym_longvid, + STATE(8034), 1, + sym_vid, + STATE(13475), 1, + sym__exp, + STATE(18922), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5385), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1109), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [376564] = 28, + ACTIONS(5383), 1, + sym_integer_scon, + ACTIONS(5387), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5389), 1, + sym__symbolic_ident, + ACTIONS(5391), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, + anon_sym_op, + ACTIONS(5395), 1, + anon_sym_LBRACE, + ACTIONS(5397), 1, + anon_sym_POUND, + ACTIONS(5399), 1, + anon_sym_LBRACK, + ACTIONS(5401), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5403), 1, + anon_sym_let, + ACTIONS(5405), 1, + anon_sym_u201c, + ACTIONS(5407), 1, + anon_sym_u2018, + ACTIONS(5409), 1, + anon_sym_BQUOTE, + ACTIONS(10657), 1, + anon_sym_raise, + ACTIONS(10659), 1, + anon_sym_if, + ACTIONS(10661), 1, + anon_sym_while, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + STATE(7656), 1, + sym__scon, + STATE(7657), 1, + sym_longvid, + STATE(8034), 1, + sym_vid, + STATE(13405), 1, + sym__exp, + STATE(18922), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5385), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1109), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [376676] = 28, + ACTIONS(5383), 1, + sym_integer_scon, + ACTIONS(5387), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5389), 1, + sym__symbolic_ident, + ACTIONS(5391), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, + anon_sym_op, + ACTIONS(5395), 1, + anon_sym_LBRACE, + ACTIONS(5397), 1, + anon_sym_POUND, + ACTIONS(5399), 1, + anon_sym_LBRACK, + ACTIONS(5401), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5403), 1, + anon_sym_let, + ACTIONS(5405), 1, + anon_sym_u201c, + ACTIONS(5407), 1, + anon_sym_u2018, + ACTIONS(5409), 1, + anon_sym_BQUOTE, + ACTIONS(10657), 1, + anon_sym_raise, + ACTIONS(10659), 1, + anon_sym_if, + ACTIONS(10661), 1, + anon_sym_while, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + STATE(7656), 1, + sym__scon, + STATE(7657), 1, + sym_longvid, + STATE(8034), 1, + sym_vid, + STATE(13409), 1, + sym__exp, + STATE(18922), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5385), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1109), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [376788] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13193), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [376900] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13203), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [377012] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13228), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [377124] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13254), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [377236] = 28, + ACTIONS(1677), 1, + sym_integer_scon, + ACTIONS(1681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1683), 1, + sym__symbolic_ident, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_op, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(1691), 1, + anon_sym_POUND, + ACTIONS(1693), 1, + anon_sym_LBRACK, + ACTIONS(1695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1697), 1, + anon_sym_let, + ACTIONS(1699), 1, + anon_sym_u201c, + ACTIONS(1701), 1, + anon_sym_u2018, + ACTIONS(1703), 1, + anon_sym_BQUOTE, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + ACTIONS(10437), 1, + anon_sym_raise, + ACTIONS(10439), 1, + anon_sym_if, + ACTIONS(10441), 1, + anon_sym_while, + STATE(5518), 1, + sym__scon, + STATE(5519), 1, + sym_longvid, + STATE(5575), 1, + sym_vid, + STATE(12439), 1, + sym__exp, + STATE(19199), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(495), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [377348] = 28, + ACTIONS(1677), 1, + sym_integer_scon, + ACTIONS(1681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1683), 1, + sym__symbolic_ident, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_op, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(1691), 1, + anon_sym_POUND, + ACTIONS(1693), 1, + anon_sym_LBRACK, + ACTIONS(1695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1697), 1, + anon_sym_let, + ACTIONS(1699), 1, + anon_sym_u201c, + ACTIONS(1701), 1, + anon_sym_u2018, + ACTIONS(1703), 1, + anon_sym_BQUOTE, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + ACTIONS(10437), 1, + anon_sym_raise, + ACTIONS(10439), 1, + anon_sym_if, + ACTIONS(10441), 1, + anon_sym_while, + STATE(5518), 1, + sym__scon, + STATE(5519), 1, + sym_longvid, + STATE(5575), 1, + sym_vid, + STATE(12440), 1, + sym__exp, + STATE(19199), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(495), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [377460] = 28, + ACTIONS(1677), 1, + sym_integer_scon, + ACTIONS(1681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1683), 1, + sym__symbolic_ident, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_op, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(1691), 1, + anon_sym_POUND, + ACTIONS(1693), 1, + anon_sym_LBRACK, + ACTIONS(1695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1697), 1, + anon_sym_let, + ACTIONS(1699), 1, + anon_sym_u201c, + ACTIONS(1701), 1, + anon_sym_u2018, + ACTIONS(1703), 1, + anon_sym_BQUOTE, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + ACTIONS(10437), 1, + anon_sym_raise, + ACTIONS(10439), 1, + anon_sym_if, + ACTIONS(10441), 1, + anon_sym_while, + STATE(5518), 1, + sym__scon, + STATE(5519), 1, + sym_longvid, + STATE(5575), 1, + sym_vid, + STATE(12488), 1, + sym__exp, + STATE(19199), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(495), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [377572] = 28, + ACTIONS(1677), 1, + sym_integer_scon, + ACTIONS(1681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1683), 1, + sym__symbolic_ident, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_op, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(1691), 1, + anon_sym_POUND, + ACTIONS(1693), 1, + anon_sym_LBRACK, + ACTIONS(1695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1697), 1, + anon_sym_let, + ACTIONS(1699), 1, + anon_sym_u201c, + ACTIONS(1701), 1, + anon_sym_u2018, + ACTIONS(1703), 1, + anon_sym_BQUOTE, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + ACTIONS(10437), 1, + anon_sym_raise, + ACTIONS(10439), 1, + anon_sym_if, + ACTIONS(10441), 1, + anon_sym_while, + STATE(5518), 1, + sym__scon, + STATE(5519), 1, + sym_longvid, + STATE(5575), 1, + sym_vid, + STATE(12435), 1, + sym__exp, + STATE(19199), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(495), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [377684] = 28, + ACTIONS(1677), 1, + sym_integer_scon, + ACTIONS(1681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1683), 1, + sym__symbolic_ident, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_op, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(1691), 1, + anon_sym_POUND, + ACTIONS(1693), 1, + anon_sym_LBRACK, + ACTIONS(1695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1697), 1, + anon_sym_let, + ACTIONS(1699), 1, + anon_sym_u201c, + ACTIONS(1701), 1, + anon_sym_u2018, + ACTIONS(1703), 1, + anon_sym_BQUOTE, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + ACTIONS(10437), 1, + anon_sym_raise, + ACTIONS(10439), 1, + anon_sym_if, + ACTIONS(10441), 1, + anon_sym_while, + STATE(5518), 1, + sym__scon, + STATE(5519), 1, + sym_longvid, + STATE(5575), 1, + sym_vid, + STATE(12436), 1, + sym__exp, + STATE(19199), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(495), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [377796] = 28, + ACTIONS(2195), 1, + sym_integer_scon, + ACTIONS(2199), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2201), 1, + sym__symbolic_ident, + ACTIONS(2203), 1, + anon_sym_LPAREN, + ACTIONS(2205), 1, + anon_sym_op, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_POUND, + ACTIONS(2211), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2215), 1, + anon_sym_let, + ACTIONS(2217), 1, + anon_sym_u201c, + ACTIONS(2219), 1, + anon_sym_u2018, + ACTIONS(2221), 1, + anon_sym_BQUOTE, + ACTIONS(10935), 1, + anon_sym_raise, + ACTIONS(10937), 1, + anon_sym_if, + ACTIONS(10939), 1, + anon_sym_while, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + STATE(6315), 1, + sym__scon, + STATE(6316), 1, + sym_longvid, + STATE(6515), 1, + sym_vid, + STATE(12705), 1, + sym__exp, + STATE(19231), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2197), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(516), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [377908] = 28, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(11085), 1, + sym_integer_scon, + ACTIONS(11089), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11091), 1, + sym__symbolic_ident, + ACTIONS(11093), 1, + anon_sym_LPAREN, + ACTIONS(11095), 1, + anon_sym_op, + ACTIONS(11097), 1, + anon_sym_LBRACE, + ACTIONS(11099), 1, + anon_sym_POUND, + ACTIONS(11101), 1, + anon_sym_LBRACK, + ACTIONS(11103), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11105), 1, + anon_sym_let, + ACTIONS(11107), 1, + anon_sym_raise, + ACTIONS(11109), 1, + anon_sym_if, + ACTIONS(11111), 1, + anon_sym_while, + ACTIONS(11113), 1, + anon_sym_u201c, + ACTIONS(11115), 1, + anon_sym_u2018, + ACTIONS(11117), 1, + anon_sym_BQUOTE, + STATE(10226), 1, + sym_vid, + STATE(10780), 1, + sym__scon, + STATE(10790), 1, + sym_longvid, + STATE(17915), 1, + sym__exp, + STATE(19038), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11087), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4161), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [378020] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19078), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [378132] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13039), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [378244] = 28, + ACTIONS(5243), 1, + sym_integer_scon, + ACTIONS(5247), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5249), 1, + sym__symbolic_ident, + ACTIONS(5251), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_op, + ACTIONS(5255), 1, + anon_sym_LBRACE, + ACTIONS(5257), 1, + anon_sym_POUND, + ACTIONS(5259), 1, + anon_sym_LBRACK, + ACTIONS(5261), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5263), 1, + anon_sym_let, + ACTIONS(5265), 1, + anon_sym_u201c, + ACTIONS(5267), 1, + anon_sym_u2018, + ACTIONS(5269), 1, + anon_sym_BQUOTE, + ACTIONS(10667), 1, + anon_sym_raise, + ACTIONS(10669), 1, + anon_sym_if, + ACTIONS(10671), 1, + anon_sym_while, + ACTIONS(10673), 1, + anon_sym_case, + ACTIONS(10675), 1, + anon_sym_fn, + STATE(7438), 1, + sym_vid, + STATE(7820), 1, + sym__scon, + STATE(7821), 1, + sym_longvid, + STATE(13423), 1, + sym__exp, + STATE(18958), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5245), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1085), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [378356] = 28, + ACTIONS(5243), 1, + sym_integer_scon, + ACTIONS(5247), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5249), 1, + sym__symbolic_ident, + ACTIONS(5251), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_op, + ACTIONS(5255), 1, + anon_sym_LBRACE, + ACTIONS(5257), 1, + anon_sym_POUND, + ACTIONS(5259), 1, + anon_sym_LBRACK, + ACTIONS(5261), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5263), 1, + anon_sym_let, + ACTIONS(5265), 1, + anon_sym_u201c, + ACTIONS(5267), 1, + anon_sym_u2018, + ACTIONS(5269), 1, + anon_sym_BQUOTE, + ACTIONS(10667), 1, + anon_sym_raise, + ACTIONS(10669), 1, + anon_sym_if, + ACTIONS(10671), 1, + anon_sym_while, + ACTIONS(10673), 1, + anon_sym_case, + ACTIONS(10675), 1, + anon_sym_fn, + STATE(7438), 1, + sym_vid, + STATE(7820), 1, + sym__scon, + STATE(7821), 1, + sym_longvid, + STATE(13424), 1, + sym__exp, + STATE(18958), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5245), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1085), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [378468] = 28, + ACTIONS(5243), 1, + sym_integer_scon, + ACTIONS(5247), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5249), 1, + sym__symbolic_ident, + ACTIONS(5251), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_op, + ACTIONS(5255), 1, + anon_sym_LBRACE, + ACTIONS(5257), 1, + anon_sym_POUND, + ACTIONS(5259), 1, + anon_sym_LBRACK, + ACTIONS(5261), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5263), 1, + anon_sym_let, + ACTIONS(5265), 1, + anon_sym_u201c, + ACTIONS(5267), 1, + anon_sym_u2018, + ACTIONS(5269), 1, + anon_sym_BQUOTE, + ACTIONS(10667), 1, + anon_sym_raise, + ACTIONS(10669), 1, + anon_sym_if, + ACTIONS(10671), 1, + anon_sym_while, + ACTIONS(10673), 1, + anon_sym_case, + ACTIONS(10675), 1, + anon_sym_fn, + STATE(7438), 1, + sym_vid, + STATE(7820), 1, + sym__scon, + STATE(7821), 1, + sym_longvid, + STATE(13363), 1, + sym__exp, + STATE(18958), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5245), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1085), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [378580] = 28, + ACTIONS(10351), 1, + sym_integer_scon, + ACTIONS(10355), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10357), 1, + sym__symbolic_ident, + ACTIONS(10359), 1, + anon_sym_LPAREN, + ACTIONS(10361), 1, + anon_sym_op, + ACTIONS(10363), 1, + anon_sym_LBRACE, + ACTIONS(10365), 1, + anon_sym_POUND, + ACTIONS(10367), 1, + anon_sym_LBRACK, + ACTIONS(10369), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10371), 1, + anon_sym_let, + ACTIONS(10373), 1, + anon_sym_raise, + ACTIONS(10375), 1, + anon_sym_if, + ACTIONS(10377), 1, + anon_sym_while, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(10383), 1, + anon_sym_u201c, + ACTIONS(10385), 1, + anon_sym_u2018, + ACTIONS(10387), 1, + anon_sym_BQUOTE, + STATE(9031), 1, + sym__scon, + STATE(9035), 1, + sym_longvid, + STATE(9077), 1, + sym_vid, + STATE(15856), 1, + sym__exp, + STATE(18749), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10353), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4088), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [378692] = 28, + ACTIONS(10351), 1, + sym_integer_scon, + ACTIONS(10355), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10357), 1, + sym__symbolic_ident, + ACTIONS(10359), 1, + anon_sym_LPAREN, + ACTIONS(10361), 1, + anon_sym_op, + ACTIONS(10363), 1, + anon_sym_LBRACE, + ACTIONS(10365), 1, + anon_sym_POUND, + ACTIONS(10367), 1, + anon_sym_LBRACK, + ACTIONS(10369), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10371), 1, + anon_sym_let, + ACTIONS(10373), 1, + anon_sym_raise, + ACTIONS(10375), 1, + anon_sym_if, + ACTIONS(10377), 1, + anon_sym_while, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(10383), 1, + anon_sym_u201c, + ACTIONS(10385), 1, + anon_sym_u2018, + ACTIONS(10387), 1, + anon_sym_BQUOTE, + STATE(9031), 1, + sym__scon, + STATE(9035), 1, + sym_longvid, + STATE(9077), 1, + sym_vid, + STATE(15524), 1, + sym__exp, + STATE(18749), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10353), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4088), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [378804] = 28, + ACTIONS(10351), 1, + sym_integer_scon, + ACTIONS(10355), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10357), 1, + sym__symbolic_ident, + ACTIONS(10359), 1, + anon_sym_LPAREN, + ACTIONS(10361), 1, + anon_sym_op, + ACTIONS(10363), 1, + anon_sym_LBRACE, + ACTIONS(10365), 1, + anon_sym_POUND, + ACTIONS(10367), 1, + anon_sym_LBRACK, + ACTIONS(10369), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10371), 1, + anon_sym_let, + ACTIONS(10373), 1, + anon_sym_raise, + ACTIONS(10375), 1, + anon_sym_if, + ACTIONS(10377), 1, + anon_sym_while, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(10383), 1, + anon_sym_u201c, + ACTIONS(10385), 1, + anon_sym_u2018, + ACTIONS(10387), 1, + anon_sym_BQUOTE, + STATE(9031), 1, + sym__scon, + STATE(9035), 1, + sym_longvid, + STATE(9077), 1, + sym_vid, + STATE(15685), 1, + sym__exp, + STATE(18749), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10353), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4088), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [378916] = 28, + ACTIONS(10351), 1, + sym_integer_scon, + ACTIONS(10355), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10357), 1, + sym__symbolic_ident, + ACTIONS(10359), 1, + anon_sym_LPAREN, + ACTIONS(10361), 1, + anon_sym_op, + ACTIONS(10363), 1, + anon_sym_LBRACE, + ACTIONS(10365), 1, + anon_sym_POUND, + ACTIONS(10367), 1, + anon_sym_LBRACK, + ACTIONS(10369), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10371), 1, + anon_sym_let, + ACTIONS(10373), 1, + anon_sym_raise, + ACTIONS(10375), 1, + anon_sym_if, + ACTIONS(10377), 1, + anon_sym_while, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(10383), 1, + anon_sym_u201c, + ACTIONS(10385), 1, + anon_sym_u2018, + ACTIONS(10387), 1, + anon_sym_BQUOTE, + STATE(9031), 1, + sym__scon, + STATE(9035), 1, + sym_longvid, + STATE(9077), 1, + sym_vid, + STATE(16083), 1, + sym__exp, + STATE(18749), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10353), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4088), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [379028] = 28, + ACTIONS(10351), 1, + sym_integer_scon, + ACTIONS(10355), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10357), 1, + sym__symbolic_ident, + ACTIONS(10359), 1, + anon_sym_LPAREN, + ACTIONS(10361), 1, + anon_sym_op, + ACTIONS(10363), 1, + anon_sym_LBRACE, + ACTIONS(10365), 1, + anon_sym_POUND, + ACTIONS(10367), 1, + anon_sym_LBRACK, + ACTIONS(10369), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10371), 1, + anon_sym_let, + ACTIONS(10373), 1, + anon_sym_raise, + ACTIONS(10375), 1, + anon_sym_if, + ACTIONS(10377), 1, + anon_sym_while, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(10383), 1, + anon_sym_u201c, + ACTIONS(10385), 1, + anon_sym_u2018, + ACTIONS(10387), 1, + anon_sym_BQUOTE, + STATE(9031), 1, + sym__scon, + STATE(9035), 1, + sym_longvid, + STATE(9077), 1, + sym_vid, + STATE(16086), 1, + sym__exp, + STATE(18749), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10353), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4088), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [379140] = 28, + ACTIONS(5243), 1, + sym_integer_scon, + ACTIONS(5247), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5249), 1, + sym__symbolic_ident, + ACTIONS(5251), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_op, + ACTIONS(5255), 1, + anon_sym_LBRACE, + ACTIONS(5257), 1, + anon_sym_POUND, + ACTIONS(5259), 1, + anon_sym_LBRACK, + ACTIONS(5261), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5263), 1, + anon_sym_let, + ACTIONS(5265), 1, + anon_sym_u201c, + ACTIONS(5267), 1, + anon_sym_u2018, + ACTIONS(5269), 1, + anon_sym_BQUOTE, + ACTIONS(10667), 1, + anon_sym_raise, + ACTIONS(10669), 1, + anon_sym_if, + ACTIONS(10671), 1, + anon_sym_while, + ACTIONS(10673), 1, + anon_sym_case, + ACTIONS(10675), 1, + anon_sym_fn, + STATE(7438), 1, + sym_vid, + STATE(7820), 1, + sym__scon, + STATE(7821), 1, + sym_longvid, + STATE(13470), 1, + sym__exp, + STATE(18958), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5245), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1085), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [379252] = 28, + ACTIONS(5243), 1, + sym_integer_scon, + ACTIONS(5247), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5249), 1, + sym__symbolic_ident, + ACTIONS(5251), 1, + anon_sym_LPAREN, + ACTIONS(5253), 1, + anon_sym_op, + ACTIONS(5255), 1, + anon_sym_LBRACE, + ACTIONS(5257), 1, + anon_sym_POUND, + ACTIONS(5259), 1, + anon_sym_LBRACK, + ACTIONS(5261), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5263), 1, + anon_sym_let, + ACTIONS(5265), 1, + anon_sym_u201c, + ACTIONS(5267), 1, + anon_sym_u2018, + ACTIONS(5269), 1, + anon_sym_BQUOTE, + ACTIONS(10667), 1, + anon_sym_raise, + ACTIONS(10669), 1, + anon_sym_if, + ACTIONS(10671), 1, + anon_sym_while, + ACTIONS(10673), 1, + anon_sym_case, + ACTIONS(10675), 1, + anon_sym_fn, + STATE(7438), 1, + sym_vid, + STATE(7820), 1, + sym__scon, + STATE(7821), 1, + sym_longvid, + STATE(13471), 1, + sym__exp, + STATE(18958), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5245), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1085), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [379364] = 28, + ACTIONS(1467), 1, + sym_integer_scon, + ACTIONS(1471), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1473), 1, + sym__symbolic_ident, + ACTIONS(1475), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_op, + ACTIONS(1479), 1, + anon_sym_LBRACE, + ACTIONS(1481), 1, + anon_sym_POUND, + ACTIONS(1483), 1, + anon_sym_LBRACK, + ACTIONS(1485), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1487), 1, + anon_sym_let, + ACTIONS(1489), 1, + anon_sym_u201c, + ACTIONS(1491), 1, + anon_sym_u2018, + ACTIONS(1493), 1, + anon_sym_BQUOTE, + ACTIONS(10647), 1, + anon_sym_raise, + ACTIONS(10649), 1, + anon_sym_if, + ACTIONS(10651), 1, + anon_sym_while, + ACTIONS(10653), 1, + anon_sym_case, + ACTIONS(10655), 1, + anon_sym_fn, + STATE(5289), 1, + sym__scon, + STATE(5291), 1, + sym_vid, + STATE(5295), 1, + sym_longvid, + STATE(10165), 1, + sym__exp, + STATE(18842), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1469), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(488), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [379476] = 28, + ACTIONS(2433), 1, + sym_integer_scon, + ACTIONS(2437), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2439), 1, + sym__symbolic_ident, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_op, + ACTIONS(2445), 1, + anon_sym_LBRACE, + ACTIONS(2447), 1, + anon_sym_POUND, + ACTIONS(2449), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2453), 1, + anon_sym_let, + ACTIONS(2455), 1, + anon_sym_u201c, + ACTIONS(2457), 1, + anon_sym_u2018, + ACTIONS(2459), 1, + anon_sym_BQUOTE, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + ACTIONS(10961), 1, + anon_sym_raise, + ACTIONS(10963), 1, + anon_sym_if, + ACTIONS(10965), 1, + anon_sym_while, + STATE(6369), 1, + sym__scon, + STATE(6371), 1, + sym_longvid, + STATE(6533), 1, + sym_vid, + STATE(12719), 1, + sym__exp, + STATE(19237), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2435), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(526), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [379588] = 28, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(11221), 1, + sym_integer_scon, + ACTIONS(11225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11227), 1, + sym__symbolic_ident, + ACTIONS(11229), 1, + anon_sym_LPAREN, + ACTIONS(11231), 1, + anon_sym_op, + ACTIONS(11233), 1, + anon_sym_LBRACE, + ACTIONS(11235), 1, + anon_sym_POUND, + ACTIONS(11237), 1, + anon_sym_LBRACK, + ACTIONS(11239), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11241), 1, + anon_sym_let, + ACTIONS(11243), 1, + anon_sym_raise, + ACTIONS(11245), 1, + anon_sym_if, + ACTIONS(11247), 1, + anon_sym_while, + ACTIONS(11249), 1, + anon_sym_u201c, + ACTIONS(11251), 1, + anon_sym_u2018, + ACTIONS(11253), 1, + anon_sym_BQUOTE, + STATE(10688), 1, + sym_vid, + STATE(10765), 1, + sym_longvid, + STATE(11018), 1, + sym__scon, + STATE(17936), 1, + sym__exp, + STATE(18998), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11223), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4137), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [379700] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18722), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [379812] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13304), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [379924] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13305), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [380036] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13185), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [380148] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13251), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [380260] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13252), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [380372] = 28, + ACTIONS(1537), 1, + sym_integer_scon, + ACTIONS(1541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1543), 1, + sym__symbolic_ident, + ACTIONS(1545), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, + anon_sym_op, + ACTIONS(1549), 1, + anon_sym_LBRACE, + ACTIONS(1551), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1557), 1, + anon_sym_let, + ACTIONS(1559), 1, + anon_sym_u201c, + ACTIONS(1561), 1, + anon_sym_u2018, + ACTIONS(1563), 1, + anon_sym_BQUOTE, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + ACTIONS(11001), 1, + anon_sym_raise, + ACTIONS(11003), 1, + anon_sym_if, + ACTIONS(11005), 1, + anon_sym_while, + STATE(5677), 1, + sym_vid, + STATE(5751), 1, + sym__scon, + STATE(5752), 1, + sym_longvid, + STATE(12319), 1, + sym__exp, + STATE(19054), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(489), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [380484] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13058), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [380596] = 28, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(18655), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [380708] = 28, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(18040), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [380820] = 28, + ACTIONS(1467), 1, + sym_integer_scon, + ACTIONS(1471), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1473), 1, + sym__symbolic_ident, + ACTIONS(1475), 1, + anon_sym_LPAREN, + ACTIONS(1477), 1, + anon_sym_op, + ACTIONS(1479), 1, + anon_sym_LBRACE, + ACTIONS(1481), 1, + anon_sym_POUND, + ACTIONS(1483), 1, + anon_sym_LBRACK, + ACTIONS(1485), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1487), 1, + anon_sym_let, + ACTIONS(1489), 1, + anon_sym_u201c, + ACTIONS(1491), 1, + anon_sym_u2018, + ACTIONS(1493), 1, + anon_sym_BQUOTE, + ACTIONS(10647), 1, + anon_sym_raise, + ACTIONS(10649), 1, + anon_sym_if, + ACTIONS(10651), 1, + anon_sym_while, + ACTIONS(10653), 1, + anon_sym_case, + ACTIONS(10655), 1, + anon_sym_fn, + STATE(5289), 1, + sym__scon, + STATE(5291), 1, + sym_vid, + STATE(5295), 1, + sym_longvid, + STATE(10591), 1, + sym__exp, + STATE(18842), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1469), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(488), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [380932] = 28, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2601), 1, + anon_sym_raise, + ACTIONS(2603), 1, + anon_sym_if, + ACTIONS(2605), 1, + anon_sym_while, + ACTIONS(2607), 1, + anon_sym_case, + ACTIONS(2609), 1, + anon_sym_fn, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(16405), 1, + sym__exp, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4091), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [381044] = 28, + ACTIONS(5841), 1, + sym_integer_scon, + ACTIONS(5845), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5847), 1, + sym__symbolic_ident, + ACTIONS(5849), 1, + anon_sym_LPAREN, + ACTIONS(5851), 1, + anon_sym_op, + ACTIONS(5853), 1, + anon_sym_LBRACE, + ACTIONS(5855), 1, + anon_sym_POUND, + ACTIONS(5857), 1, + anon_sym_LBRACK, + ACTIONS(5859), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5861), 1, + anon_sym_let, + ACTIONS(5863), 1, + anon_sym_u201c, + ACTIONS(5865), 1, + anon_sym_u2018, + ACTIONS(5867), 1, + anon_sym_BQUOTE, + ACTIONS(10673), 1, + anon_sym_case, + ACTIONS(10675), 1, + anon_sym_fn, + ACTIONS(11431), 1, + anon_sym_raise, + ACTIONS(11433), 1, + anon_sym_if, + ACTIONS(11435), 1, + anon_sym_while, + STATE(8234), 1, + sym_vid, + STATE(8256), 1, + sym__scon, + STATE(8261), 1, + sym_longvid, + STATE(13628), 1, + sym__exp, + STATE(18751), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5843), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1114), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [381156] = 28, + ACTIONS(5841), 1, + sym_integer_scon, + ACTIONS(5845), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5847), 1, + sym__symbolic_ident, + ACTIONS(5849), 1, + anon_sym_LPAREN, + ACTIONS(5851), 1, + anon_sym_op, + ACTIONS(5853), 1, + anon_sym_LBRACE, + ACTIONS(5855), 1, + anon_sym_POUND, + ACTIONS(5857), 1, + anon_sym_LBRACK, + ACTIONS(5859), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5861), 1, + anon_sym_let, + ACTIONS(5863), 1, + anon_sym_u201c, + ACTIONS(5865), 1, + anon_sym_u2018, + ACTIONS(5867), 1, + anon_sym_BQUOTE, + ACTIONS(10673), 1, + anon_sym_case, + ACTIONS(10675), 1, + anon_sym_fn, + ACTIONS(11431), 1, + anon_sym_raise, + ACTIONS(11433), 1, + anon_sym_if, + ACTIONS(11435), 1, + anon_sym_while, + STATE(8234), 1, + sym_vid, + STATE(8256), 1, + sym__scon, + STATE(8261), 1, + sym_longvid, + STATE(13531), 1, + sym__exp, + STATE(18751), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5843), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1114), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [381268] = 28, + ACTIONS(5841), 1, + sym_integer_scon, + ACTIONS(5845), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5847), 1, + sym__symbolic_ident, + ACTIONS(5849), 1, + anon_sym_LPAREN, + ACTIONS(5851), 1, + anon_sym_op, + ACTIONS(5853), 1, + anon_sym_LBRACE, + ACTIONS(5855), 1, + anon_sym_POUND, + ACTIONS(5857), 1, + anon_sym_LBRACK, + ACTIONS(5859), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5861), 1, + anon_sym_let, + ACTIONS(5863), 1, + anon_sym_u201c, + ACTIONS(5865), 1, + anon_sym_u2018, + ACTIONS(5867), 1, + anon_sym_BQUOTE, + ACTIONS(10673), 1, + anon_sym_case, + ACTIONS(10675), 1, + anon_sym_fn, + ACTIONS(11431), 1, + anon_sym_raise, + ACTIONS(11433), 1, + anon_sym_if, + ACTIONS(11435), 1, + anon_sym_while, + STATE(8234), 1, + sym_vid, + STATE(8256), 1, + sym__scon, + STATE(8261), 1, + sym_longvid, + STATE(13554), 1, + sym__exp, + STATE(18751), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5843), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1114), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [381380] = 28, + ACTIONS(5841), 1, + sym_integer_scon, + ACTIONS(5845), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5847), 1, + sym__symbolic_ident, + ACTIONS(5849), 1, + anon_sym_LPAREN, + ACTIONS(5851), 1, + anon_sym_op, + ACTIONS(5853), 1, + anon_sym_LBRACE, + ACTIONS(5855), 1, + anon_sym_POUND, + ACTIONS(5857), 1, + anon_sym_LBRACK, + ACTIONS(5859), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5861), 1, + anon_sym_let, + ACTIONS(5863), 1, + anon_sym_u201c, + ACTIONS(5865), 1, + anon_sym_u2018, + ACTIONS(5867), 1, + anon_sym_BQUOTE, + ACTIONS(10673), 1, + anon_sym_case, + ACTIONS(10675), 1, + anon_sym_fn, + ACTIONS(11431), 1, + anon_sym_raise, + ACTIONS(11433), 1, + anon_sym_if, + ACTIONS(11435), 1, + anon_sym_while, + STATE(8234), 1, + sym_vid, + STATE(8256), 1, + sym__scon, + STATE(8261), 1, + sym_longvid, + STATE(13555), 1, + sym__exp, + STATE(18751), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5843), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1114), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [381492] = 28, + ACTIONS(2875), 1, + sym_integer_scon, + ACTIONS(2879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2881), 1, + sym__symbolic_ident, + ACTIONS(2883), 1, + anon_sym_LPAREN, + ACTIONS(2885), 1, + anon_sym_op, + ACTIONS(2887), 1, + anon_sym_LBRACE, + ACTIONS(2889), 1, + anon_sym_POUND, + ACTIONS(2891), 1, + anon_sym_LBRACK, + ACTIONS(2893), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2895), 1, + anon_sym_let, + ACTIONS(2897), 1, + anon_sym_u201c, + ACTIONS(2899), 1, + anon_sym_u2018, + ACTIONS(2901), 1, + anon_sym_BQUOTE, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + ACTIONS(11447), 1, + anon_sym_raise, + ACTIONS(11449), 1, + anon_sym_if, + ACTIONS(11451), 1, + anon_sym_while, + STATE(6716), 1, + sym__scon, + STATE(6717), 1, + sym_longvid, + STATE(6884), 1, + sym_vid, + STATE(13052), 1, + sym__exp, + STATE(19046), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2877), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(546), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [381604] = 28, + ACTIONS(2875), 1, + sym_integer_scon, + ACTIONS(2879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2881), 1, + sym__symbolic_ident, + ACTIONS(2883), 1, + anon_sym_LPAREN, + ACTIONS(2885), 1, + anon_sym_op, + ACTIONS(2887), 1, + anon_sym_LBRACE, + ACTIONS(2889), 1, + anon_sym_POUND, + ACTIONS(2891), 1, + anon_sym_LBRACK, + ACTIONS(2893), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2895), 1, + anon_sym_let, + ACTIONS(2897), 1, + anon_sym_u201c, + ACTIONS(2899), 1, + anon_sym_u2018, + ACTIONS(2901), 1, + anon_sym_BQUOTE, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + ACTIONS(11447), 1, + anon_sym_raise, + ACTIONS(11449), 1, + anon_sym_if, + ACTIONS(11451), 1, + anon_sym_while, + STATE(6716), 1, + sym__scon, + STATE(6717), 1, + sym_longvid, + STATE(6884), 1, + sym_vid, + STATE(13056), 1, + sym__exp, + STATE(19046), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2877), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(546), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [381716] = 28, + ACTIONS(2875), 1, + sym_integer_scon, + ACTIONS(2879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2881), 1, + sym__symbolic_ident, + ACTIONS(2883), 1, + anon_sym_LPAREN, + ACTIONS(2885), 1, + anon_sym_op, + ACTIONS(2887), 1, + anon_sym_LBRACE, + ACTIONS(2889), 1, + anon_sym_POUND, + ACTIONS(2891), 1, + anon_sym_LBRACK, + ACTIONS(2893), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2895), 1, + anon_sym_let, + ACTIONS(2897), 1, + anon_sym_u201c, + ACTIONS(2899), 1, + anon_sym_u2018, + ACTIONS(2901), 1, + anon_sym_BQUOTE, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + ACTIONS(11447), 1, + anon_sym_raise, + ACTIONS(11449), 1, + anon_sym_if, + ACTIONS(11451), 1, + anon_sym_while, + STATE(6716), 1, + sym__scon, + STATE(6717), 1, + sym_longvid, + STATE(6884), 1, + sym_vid, + STATE(13204), 1, + sym__exp, + STATE(19046), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2877), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(546), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [381828] = 28, + ACTIONS(2875), 1, + sym_integer_scon, + ACTIONS(2879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2881), 1, + sym__symbolic_ident, + ACTIONS(2883), 1, + anon_sym_LPAREN, + ACTIONS(2885), 1, + anon_sym_op, + ACTIONS(2887), 1, + anon_sym_LBRACE, + ACTIONS(2889), 1, + anon_sym_POUND, + ACTIONS(2891), 1, + anon_sym_LBRACK, + ACTIONS(2893), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2895), 1, + anon_sym_let, + ACTIONS(2897), 1, + anon_sym_u201c, + ACTIONS(2899), 1, + anon_sym_u2018, + ACTIONS(2901), 1, + anon_sym_BQUOTE, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + ACTIONS(11447), 1, + anon_sym_raise, + ACTIONS(11449), 1, + anon_sym_if, + ACTIONS(11451), 1, + anon_sym_while, + STATE(6716), 1, + sym__scon, + STATE(6717), 1, + sym_longvid, + STATE(6884), 1, + sym_vid, + STATE(13284), 1, + sym__exp, + STATE(19046), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2877), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(546), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [381940] = 28, + ACTIONS(2875), 1, + sym_integer_scon, + ACTIONS(2879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2881), 1, + sym__symbolic_ident, + ACTIONS(2883), 1, + anon_sym_LPAREN, + ACTIONS(2885), 1, + anon_sym_op, + ACTIONS(2887), 1, + anon_sym_LBRACE, + ACTIONS(2889), 1, + anon_sym_POUND, + ACTIONS(2891), 1, + anon_sym_LBRACK, + ACTIONS(2893), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2895), 1, + anon_sym_let, + ACTIONS(2897), 1, + anon_sym_u201c, + ACTIONS(2899), 1, + anon_sym_u2018, + ACTIONS(2901), 1, + anon_sym_BQUOTE, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + ACTIONS(11447), 1, + anon_sym_raise, + ACTIONS(11449), 1, + anon_sym_if, + ACTIONS(11451), 1, + anon_sym_while, + STATE(6716), 1, + sym__scon, + STATE(6717), 1, + sym_longvid, + STATE(6884), 1, + sym_vid, + STATE(13287), 1, + sym__exp, + STATE(19046), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2877), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(546), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [382052] = 28, + ACTIONS(5841), 1, + sym_integer_scon, + ACTIONS(5845), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5847), 1, + sym__symbolic_ident, + ACTIONS(5849), 1, + anon_sym_LPAREN, + ACTIONS(5851), 1, + anon_sym_op, + ACTIONS(5853), 1, + anon_sym_LBRACE, + ACTIONS(5855), 1, + anon_sym_POUND, + ACTIONS(5857), 1, + anon_sym_LBRACK, + ACTIONS(5859), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5861), 1, + anon_sym_let, + ACTIONS(5863), 1, + anon_sym_u201c, + ACTIONS(5865), 1, + anon_sym_u2018, + ACTIONS(5867), 1, + anon_sym_BQUOTE, + ACTIONS(10673), 1, + anon_sym_case, + ACTIONS(10675), 1, + anon_sym_fn, + ACTIONS(11431), 1, + anon_sym_raise, + ACTIONS(11433), 1, + anon_sym_if, + ACTIONS(11435), 1, + anon_sym_while, + STATE(8234), 1, + sym_vid, + STATE(8256), 1, + sym__scon, + STATE(8261), 1, + sym_longvid, + STATE(13556), 1, + sym__exp, + STATE(18751), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5843), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1114), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [382164] = 28, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(11453), 1, + sym_integer_scon, + ACTIONS(11457), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11459), 1, + sym__symbolic_ident, + ACTIONS(11461), 1, + anon_sym_LPAREN, + ACTIONS(11463), 1, + anon_sym_op, + ACTIONS(11465), 1, + anon_sym_LBRACE, + ACTIONS(11467), 1, + anon_sym_POUND, + ACTIONS(11469), 1, + anon_sym_LBRACK, + ACTIONS(11471), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11473), 1, + anon_sym_let, + ACTIONS(11475), 1, + anon_sym_raise, + ACTIONS(11477), 1, + anon_sym_if, + ACTIONS(11479), 1, + anon_sym_while, + ACTIONS(11481), 1, + anon_sym_u201c, + ACTIONS(11483), 1, + anon_sym_u2018, + ACTIONS(11485), 1, + anon_sym_BQUOTE, + STATE(10380), 1, + sym__scon, + STATE(10464), 1, + sym_longvid, + STATE(10670), 1, + sym_vid, + STATE(17705), 1, + sym__exp, + STATE(18877), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11455), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4155), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [382276] = 28, + ACTIONS(7), 1, + sym_integer_scon, + ACTIONS(11), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13), 1, + sym__symbolic_ident, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + anon_sym_op, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_POUND_LBRACK, + ACTIONS(27), 1, + anon_sym_let, + ACTIONS(29), 1, + anon_sym_raise, + ACTIONS(31), 1, + anon_sym_if, + ACTIONS(33), 1, + anon_sym_while, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(69), 1, + anon_sym_u201c, + ACTIONS(71), 1, + anon_sym_u2018, + ACTIONS(73), 1, + anon_sym_BQUOTE, + STATE(10287), 1, + sym_vid, + STATE(11359), 1, + sym__scon, + STATE(11478), 1, + sym_longvid, + STATE(18334), 1, + sym__exp, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(9), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4230), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [382388] = 28, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(11045), 1, + sym_integer_scon, + ACTIONS(11049), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11051), 1, + sym__symbolic_ident, + ACTIONS(11053), 1, + anon_sym_LPAREN, + ACTIONS(11055), 1, + anon_sym_op, + ACTIONS(11057), 1, + anon_sym_LBRACE, + ACTIONS(11059), 1, + anon_sym_POUND, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11065), 1, + anon_sym_let, + ACTIONS(11067), 1, + anon_sym_raise, + ACTIONS(11069), 1, + anon_sym_if, + ACTIONS(11071), 1, + anon_sym_while, + ACTIONS(11073), 1, + anon_sym_u201c, + ACTIONS(11075), 1, + anon_sym_u2018, + ACTIONS(11077), 1, + anon_sym_BQUOTE, + STATE(10611), 1, + sym__scon, + STATE(10612), 1, + sym_longvid, + STATE(10631), 1, + sym_vid, + STATE(17851), 1, + sym__exp, + STATE(19243), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11047), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4158), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [382500] = 28, + ACTIONS(967), 1, + sym_integer_scon, + ACTIONS(971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(973), 1, + sym__symbolic_ident, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, + anon_sym_op, + ACTIONS(979), 1, + anon_sym_LBRACE, + ACTIONS(983), 1, + anon_sym_POUND, + ACTIONS(985), 1, + anon_sym_LBRACK, + ACTIONS(987), 1, + anon_sym_POUND_LBRACK, + ACTIONS(989), 1, + anon_sym_let, + ACTIONS(991), 1, + anon_sym_u201c, + ACTIONS(993), 1, + anon_sym_u2018, + ACTIONS(995), 1, + anon_sym_BQUOTE, + ACTIONS(10775), 1, + anon_sym_raise, + ACTIONS(10777), 1, + anon_sym_if, + ACTIONS(10779), 1, + anon_sym_while, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + STATE(4229), 1, + sym_vid, + STATE(4233), 1, + sym__scon, + STATE(4234), 1, + sym_longvid, + STATE(9030), 1, + sym__exp, + STATE(19087), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(465), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [382612] = 28, + ACTIONS(5509), 1, + sym_integer_scon, + ACTIONS(5513), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5515), 1, + sym__symbolic_ident, + ACTIONS(5517), 1, + anon_sym_LPAREN, + ACTIONS(5519), 1, + anon_sym_op, + ACTIONS(5521), 1, + anon_sym_LBRACE, + ACTIONS(5523), 1, + anon_sym_POUND, + ACTIONS(5525), 1, + anon_sym_LBRACK, + ACTIONS(5527), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5529), 1, + anon_sym_let, + ACTIONS(5531), 1, + anon_sym_u201c, + ACTIONS(5533), 1, + anon_sym_u2018, + ACTIONS(5535), 1, + anon_sym_BQUOTE, + ACTIONS(10737), 1, + anon_sym_case, + ACTIONS(10739), 1, + anon_sym_fn, + ACTIONS(11487), 1, + anon_sym_raise, + ACTIONS(11489), 1, + anon_sym_if, + ACTIONS(11491), 1, + anon_sym_while, + STATE(7510), 1, + sym__scon, + STATE(7511), 1, + sym_longvid, + STATE(7867), 1, + sym_vid, + STATE(13386), 1, + sym__exp, + STATE(19219), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5511), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1100), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [382724] = 28, + ACTIONS(1089), 1, + sym_integer_scon, + ACTIONS(1093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1095), 1, + sym__symbolic_ident, + ACTIONS(1097), 1, + anon_sym_LPAREN, + ACTIONS(1099), 1, + anon_sym_op, + ACTIONS(1101), 1, + anon_sym_LBRACE, + ACTIONS(1103), 1, + anon_sym_POUND, + ACTIONS(1105), 1, + anon_sym_LBRACK, + ACTIONS(1107), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1109), 1, + anon_sym_let, + ACTIONS(1111), 1, + anon_sym_u201c, + ACTIONS(1113), 1, + anon_sym_u2018, + ACTIONS(1115), 1, + anon_sym_BQUOTE, + ACTIONS(10247), 1, + anon_sym_raise, + ACTIONS(10249), 1, + anon_sym_if, + ACTIONS(10251), 1, + anon_sym_while, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + STATE(4296), 1, + sym__scon, + STATE(4299), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(9310), 1, + sym__exp, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(476), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [382836] = 28, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(11493), 1, + sym_integer_scon, + ACTIONS(11497), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11499), 1, + sym__symbolic_ident, + ACTIONS(11501), 1, + anon_sym_LPAREN, + ACTIONS(11503), 1, + anon_sym_op, + ACTIONS(11505), 1, + anon_sym_LBRACE, + ACTIONS(11507), 1, + anon_sym_POUND, + ACTIONS(11509), 1, + anon_sym_LBRACK, + ACTIONS(11511), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11513), 1, + anon_sym_let, + ACTIONS(11515), 1, + anon_sym_raise, + ACTIONS(11517), 1, + anon_sym_if, + ACTIONS(11519), 1, + anon_sym_while, + ACTIONS(11521), 1, + anon_sym_u201c, + ACTIONS(11523), 1, + anon_sym_u2018, + ACTIONS(11525), 1, + anon_sym_BQUOTE, + STATE(10475), 1, + sym__scon, + STATE(10498), 1, + sym_longvid, + STATE(10787), 1, + sym_vid, + STATE(17810), 1, + sym__exp, + STATE(19019), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11495), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4151), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [382948] = 28, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10967), 1, + sym_integer_scon, + ACTIONS(10971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10973), 1, + sym__symbolic_ident, + ACTIONS(10975), 1, + anon_sym_LPAREN, + ACTIONS(10977), 1, + anon_sym_op, + ACTIONS(10979), 1, + anon_sym_LBRACE, + ACTIONS(10981), 1, + anon_sym_POUND, + ACTIONS(10983), 1, + anon_sym_LBRACK, + ACTIONS(10985), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10987), 1, + anon_sym_let, + ACTIONS(10989), 1, + anon_sym_raise, + ACTIONS(10991), 1, + anon_sym_if, + ACTIONS(10993), 1, + anon_sym_while, + ACTIONS(10995), 1, + anon_sym_u201c, + ACTIONS(10997), 1, + anon_sym_u2018, + ACTIONS(10999), 1, + anon_sym_BQUOTE, + STATE(11362), 1, + sym_vid, + STATE(11644), 1, + sym__scon, + STATE(11691), 1, + sym_longvid, + STATE(18335), 1, + sym__exp, + STATE(18986), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4244), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [383060] = 28, + ACTIONS(2945), 1, + sym_integer_scon, + ACTIONS(2949), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2951), 1, + sym__symbolic_ident, + ACTIONS(2953), 1, + anon_sym_LPAREN, + ACTIONS(2955), 1, + anon_sym_op, + ACTIONS(2957), 1, + anon_sym_LBRACE, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(2961), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2965), 1, + anon_sym_let, + ACTIONS(2967), 1, + anon_sym_u201c, + ACTIONS(2969), 1, + anon_sym_u2018, + ACTIONS(2971), 1, + anon_sym_BQUOTE, + ACTIONS(10721), 1, + anon_sym_raise, + ACTIONS(10723), 1, + anon_sym_if, + ACTIONS(10725), 1, + anon_sym_while, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + STATE(6771), 1, + sym__scon, + STATE(6772), 1, + sym_longvid, + STATE(6887), 1, + sym_vid, + STATE(13071), 1, + sym__exp, + STATE(19207), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2947), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(549), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [383172] = 28, + ACTIONS(2945), 1, + sym_integer_scon, + ACTIONS(2949), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2951), 1, + sym__symbolic_ident, + ACTIONS(2953), 1, + anon_sym_LPAREN, + ACTIONS(2955), 1, + anon_sym_op, + ACTIONS(2957), 1, + anon_sym_LBRACE, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(2961), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2965), 1, + anon_sym_let, + ACTIONS(2967), 1, + anon_sym_u201c, + ACTIONS(2969), 1, + anon_sym_u2018, + ACTIONS(2971), 1, + anon_sym_BQUOTE, + ACTIONS(10721), 1, + anon_sym_raise, + ACTIONS(10723), 1, + anon_sym_if, + ACTIONS(10725), 1, + anon_sym_while, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + STATE(6771), 1, + sym__scon, + STATE(6772), 1, + sym_longvid, + STATE(6887), 1, + sym_vid, + STATE(13073), 1, + sym__exp, + STATE(19207), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2947), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(549), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [383284] = 28, + ACTIONS(2945), 1, + sym_integer_scon, + ACTIONS(2949), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2951), 1, + sym__symbolic_ident, + ACTIONS(2953), 1, + anon_sym_LPAREN, + ACTIONS(2955), 1, + anon_sym_op, + ACTIONS(2957), 1, + anon_sym_LBRACE, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(2961), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2965), 1, + anon_sym_let, + ACTIONS(2967), 1, + anon_sym_u201c, + ACTIONS(2969), 1, + anon_sym_u2018, + ACTIONS(2971), 1, + anon_sym_BQUOTE, + ACTIONS(10721), 1, + anon_sym_raise, + ACTIONS(10723), 1, + anon_sym_if, + ACTIONS(10725), 1, + anon_sym_while, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + STATE(6771), 1, + sym__scon, + STATE(6772), 1, + sym_longvid, + STATE(6887), 1, + sym_vid, + STATE(13221), 1, + sym__exp, + STATE(19207), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2947), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(549), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [383396] = 28, + ACTIONS(2945), 1, + sym_integer_scon, + ACTIONS(2949), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2951), 1, + sym__symbolic_ident, + ACTIONS(2953), 1, + anon_sym_LPAREN, + ACTIONS(2955), 1, + anon_sym_op, + ACTIONS(2957), 1, + anon_sym_LBRACE, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(2961), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2965), 1, + anon_sym_let, + ACTIONS(2967), 1, + anon_sym_u201c, + ACTIONS(2969), 1, + anon_sym_u2018, + ACTIONS(2971), 1, + anon_sym_BQUOTE, + ACTIONS(10721), 1, + anon_sym_raise, + ACTIONS(10723), 1, + anon_sym_if, + ACTIONS(10725), 1, + anon_sym_while, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + STATE(6771), 1, + sym__scon, + STATE(6772), 1, + sym_longvid, + STATE(6887), 1, + sym_vid, + STATE(13040), 1, + sym__exp, + STATE(19207), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2947), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(549), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [383508] = 28, + ACTIONS(2945), 1, + sym_integer_scon, + ACTIONS(2949), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2951), 1, + sym__symbolic_ident, + ACTIONS(2953), 1, + anon_sym_LPAREN, + ACTIONS(2955), 1, + anon_sym_op, + ACTIONS(2957), 1, + anon_sym_LBRACE, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(2961), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2965), 1, + anon_sym_let, + ACTIONS(2967), 1, + anon_sym_u201c, + ACTIONS(2969), 1, + anon_sym_u2018, + ACTIONS(2971), 1, + anon_sym_BQUOTE, + ACTIONS(10721), 1, + anon_sym_raise, + ACTIONS(10723), 1, + anon_sym_if, + ACTIONS(10725), 1, + anon_sym_while, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + STATE(6771), 1, + sym__scon, + STATE(6772), 1, + sym_longvid, + STATE(6887), 1, + sym_vid, + STATE(13041), 1, + sym__exp, + STATE(19207), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2947), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(549), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [383620] = 28, + ACTIONS(11007), 1, + sym_integer_scon, + ACTIONS(11011), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11013), 1, + sym__symbolic_ident, + ACTIONS(11015), 1, + anon_sym_LPAREN, + ACTIONS(11017), 1, + anon_sym_op, + ACTIONS(11019), 1, + anon_sym_LBRACE, + ACTIONS(11021), 1, + anon_sym_POUND, + ACTIONS(11023), 1, + anon_sym_LBRACK, + ACTIONS(11025), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11027), 1, + anon_sym_let, + ACTIONS(11029), 1, + anon_sym_raise, + ACTIONS(11031), 1, + anon_sym_if, + ACTIONS(11033), 1, + anon_sym_while, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11039), 1, + anon_sym_u201c, + ACTIONS(11041), 1, + anon_sym_u2018, + ACTIONS(11043), 1, + anon_sym_BQUOTE, + STATE(11567), 1, + sym_vid, + STATE(11766), 1, + sym__scon, + STATE(11780), 1, + sym_longvid, + STATE(18210), 1, + sym__exp, + STATE(18767), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11009), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4273), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [383732] = 28, + ACTIONS(2665), 1, + sym_integer_scon, + ACTIONS(2669), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2671), 1, + sym__symbolic_ident, + ACTIONS(2673), 1, + anon_sym_LPAREN, + ACTIONS(2675), 1, + anon_sym_op, + ACTIONS(2677), 1, + anon_sym_LBRACE, + ACTIONS(2679), 1, + anon_sym_POUND, + ACTIONS(2681), 1, + anon_sym_LBRACK, + ACTIONS(2683), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2685), 1, + anon_sym_let, + ACTIONS(2687), 1, + anon_sym_u201c, + ACTIONS(2689), 1, + anon_sym_u2018, + ACTIONS(2691), 1, + anon_sym_BQUOTE, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + ACTIONS(11419), 1, + anon_sym_raise, + ACTIONS(11421), 1, + anon_sym_if, + ACTIONS(11423), 1, + anon_sym_while, + STATE(6607), 1, + sym__scon, + STATE(6608), 1, + sym_longvid, + STATE(6662), 1, + sym_vid, + STATE(13245), 1, + sym__exp, + STATE(18812), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2667), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(537), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [383844] = 28, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(11153), 1, + sym_integer_scon, + ACTIONS(11157), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11159), 1, + sym__symbolic_ident, + ACTIONS(11161), 1, + anon_sym_LPAREN, + ACTIONS(11163), 1, + anon_sym_op, + ACTIONS(11165), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_POUND, + ACTIONS(11169), 1, + anon_sym_LBRACK, + ACTIONS(11171), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11173), 1, + anon_sym_let, + ACTIONS(11175), 1, + anon_sym_raise, + ACTIONS(11177), 1, + anon_sym_if, + ACTIONS(11179), 1, + anon_sym_while, + ACTIONS(11181), 1, + anon_sym_u201c, + ACTIONS(11183), 1, + anon_sym_u2018, + ACTIONS(11185), 1, + anon_sym_BQUOTE, + STATE(10363), 1, + sym_vid, + STATE(10926), 1, + sym__scon, + STATE(10928), 1, + sym_longvid, + STATE(17929), 1, + sym__exp, + STATE(19259), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11155), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4165), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [383956] = 28, + ACTIONS(2265), 1, + sym_integer_scon, + ACTIONS(2269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2271), 1, + sym__symbolic_ident, + ACTIONS(2273), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_op, + ACTIONS(2277), 1, + anon_sym_LBRACE, + ACTIONS(2279), 1, + anon_sym_POUND, + ACTIONS(2281), 1, + anon_sym_LBRACK, + ACTIONS(2283), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2285), 1, + anon_sym_let, + ACTIONS(2287), 1, + anon_sym_u201c, + ACTIONS(2289), 1, + anon_sym_u2018, + ACTIONS(2291), 1, + anon_sym_BQUOTE, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + ACTIONS(11271), 1, + anon_sym_raise, + ACTIONS(11273), 1, + anon_sym_if, + ACTIONS(11275), 1, + anon_sym_while, + STATE(5951), 1, + sym_vid, + STATE(5956), 1, + sym__scon, + STATE(5958), 1, + sym_longvid, + STATE(12710), 1, + sym__exp, + STATE(18970), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2267), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(519), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [384068] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19187), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [384180] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12961), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [384292] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18912), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [384404] = 28, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(11453), 1, + sym_integer_scon, + ACTIONS(11457), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11459), 1, + sym__symbolic_ident, + ACTIONS(11461), 1, + anon_sym_LPAREN, + ACTIONS(11463), 1, + anon_sym_op, + ACTIONS(11465), 1, + anon_sym_LBRACE, + ACTIONS(11467), 1, + anon_sym_POUND, + ACTIONS(11469), 1, + anon_sym_LBRACK, + ACTIONS(11471), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11473), 1, + anon_sym_let, + ACTIONS(11475), 1, + anon_sym_raise, + ACTIONS(11477), 1, + anon_sym_if, + ACTIONS(11479), 1, + anon_sym_while, + ACTIONS(11481), 1, + anon_sym_u201c, + ACTIONS(11483), 1, + anon_sym_u2018, + ACTIONS(11485), 1, + anon_sym_BQUOTE, + STATE(10380), 1, + sym__scon, + STATE(10464), 1, + sym_longvid, + STATE(10670), 1, + sym_vid, + STATE(17822), 1, + sym__exp, + STATE(18877), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11455), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4155), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [384516] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12962), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [384628] = 28, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10677), 1, + sym_integer_scon, + ACTIONS(10681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10683), 1, + sym__symbolic_ident, + ACTIONS(10685), 1, + anon_sym_LPAREN, + ACTIONS(10687), 1, + anon_sym_op, + ACTIONS(10689), 1, + anon_sym_LBRACE, + ACTIONS(10691), 1, + anon_sym_POUND, + ACTIONS(10693), 1, + anon_sym_LBRACK, + ACTIONS(10695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10697), 1, + anon_sym_let, + ACTIONS(10699), 1, + anon_sym_raise, + ACTIONS(10701), 1, + anon_sym_if, + ACTIONS(10703), 1, + anon_sym_while, + ACTIONS(10705), 1, + anon_sym_u201c, + ACTIONS(10707), 1, + anon_sym_u2018, + ACTIONS(10709), 1, + anon_sym_BQUOTE, + STATE(8959), 1, + sym_vid, + STATE(9045), 1, + sym__scon, + STATE(9046), 1, + sym_longvid, + STATE(16116), 1, + sym__exp, + STATE(18752), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4089), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [384740] = 28, + ACTIONS(10291), 1, + anon_sym_case, + ACTIONS(10293), 1, + anon_sym_fn, + ACTIONS(10967), 1, + sym_integer_scon, + ACTIONS(10971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10973), 1, + sym__symbolic_ident, + ACTIONS(10975), 1, + anon_sym_LPAREN, + ACTIONS(10977), 1, + anon_sym_op, + ACTIONS(10979), 1, + anon_sym_LBRACE, + ACTIONS(10981), 1, + anon_sym_POUND, + ACTIONS(10983), 1, + anon_sym_LBRACK, + ACTIONS(10985), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10987), 1, + anon_sym_let, + ACTIONS(10989), 1, + anon_sym_raise, + ACTIONS(10991), 1, + anon_sym_if, + ACTIONS(10993), 1, + anon_sym_while, + ACTIONS(10995), 1, + anon_sym_u201c, + ACTIONS(10997), 1, + anon_sym_u2018, + ACTIONS(10999), 1, + anon_sym_BQUOTE, + STATE(11362), 1, + sym_vid, + STATE(11644), 1, + sym__scon, + STATE(11691), 1, + sym_longvid, + STATE(18167), 1, + sym__exp, + STATE(18986), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4244), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [384852] = 28, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(11119), 1, + sym_integer_scon, + ACTIONS(11123), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11125), 1, + sym__symbolic_ident, + ACTIONS(11127), 1, + anon_sym_LPAREN, + ACTIONS(11129), 1, + anon_sym_op, + ACTIONS(11131), 1, + anon_sym_LBRACE, + ACTIONS(11133), 1, + anon_sym_POUND, + ACTIONS(11135), 1, + anon_sym_LBRACK, + ACTIONS(11137), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11139), 1, + anon_sym_let, + ACTIONS(11141), 1, + anon_sym_raise, + ACTIONS(11143), 1, + anon_sym_if, + ACTIONS(11145), 1, + anon_sym_while, + ACTIONS(11147), 1, + anon_sym_u201c, + ACTIONS(11149), 1, + anon_sym_u2018, + ACTIONS(11151), 1, + anon_sym_BQUOTE, + STATE(11153), 1, + sym__scon, + STATE(11157), 1, + sym_longvid, + STATE(11752), 1, + sym_vid, + STATE(18484), 1, + sym__exp, + STATE(19204), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11121), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4204), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [384964] = 28, + ACTIONS(1327), 1, + sym_integer_scon, + ACTIONS(1331), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1333), 1, + sym__symbolic_ident, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + anon_sym_op, + ACTIONS(1339), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_POUND, + ACTIONS(1343), 1, + anon_sym_LBRACK, + ACTIONS(1345), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1347), 1, + anon_sym_let, + ACTIONS(1349), 1, + anon_sym_u201c, + ACTIONS(1351), 1, + anon_sym_u2018, + ACTIONS(1353), 1, + anon_sym_BQUOTE, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + ACTIONS(11265), 1, + anon_sym_raise, + ACTIONS(11267), 1, + anon_sym_if, + ACTIONS(11269), 1, + anon_sym_while, + STATE(4944), 1, + sym_vid, + STATE(5123), 1, + sym__scon, + STATE(5127), 1, + sym_longvid, + STATE(9866), 1, + sym__exp, + STATE(19209), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1329), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(480), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [385076] = 28, + ACTIONS(10155), 1, + sym_integer_scon, + ACTIONS(10159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10161), 1, + sym__symbolic_ident, + ACTIONS(10163), 1, + anon_sym_LPAREN, + ACTIONS(10165), 1, + anon_sym_op, + ACTIONS(10167), 1, + anon_sym_LBRACE, + ACTIONS(10169), 1, + anon_sym_POUND, + ACTIONS(10171), 1, + anon_sym_LBRACK, + ACTIONS(10173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10175), 1, + anon_sym_let, + ACTIONS(10177), 1, + anon_sym_raise, + ACTIONS(10179), 1, + anon_sym_if, + ACTIONS(10181), 1, + anon_sym_while, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10187), 1, + anon_sym_u201c, + ACTIONS(10189), 1, + anon_sym_u2018, + ACTIONS(10191), 1, + anon_sym_BQUOTE, + STATE(11565), 1, + sym__scon, + STATE(11568), 1, + sym_longvid, + STATE(11798), 1, + sym_vid, + STATE(18183), 1, + sym__exp, + STATE(19156), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4197), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [385188] = 28, + ACTIONS(10497), 1, + sym_integer_scon, + ACTIONS(10501), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10503), 1, + sym__symbolic_ident, + ACTIONS(10505), 1, + anon_sym_LPAREN, + ACTIONS(10507), 1, + anon_sym_op, + ACTIONS(10509), 1, + anon_sym_LBRACE, + ACTIONS(10511), 1, + anon_sym_POUND, + ACTIONS(10513), 1, + anon_sym_LBRACK, + ACTIONS(10515), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10517), 1, + anon_sym_let, + ACTIONS(10519), 1, + anon_sym_raise, + ACTIONS(10521), 1, + anon_sym_if, + ACTIONS(10523), 1, + anon_sym_while, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10529), 1, + anon_sym_u201c, + ACTIONS(10531), 1, + anon_sym_u2018, + ACTIONS(10533), 1, + anon_sym_BQUOTE, + STATE(10361), 1, + sym__scon, + STATE(10362), 1, + sym_longvid, + STATE(10758), 1, + sym_vid, + STATE(17922), 1, + sym__exp, + STATE(19039), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10499), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4126), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [385300] = 28, + ACTIONS(5383), 1, + sym_integer_scon, + ACTIONS(5387), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5389), 1, + sym__symbolic_ident, + ACTIONS(5391), 1, + anon_sym_LPAREN, + ACTIONS(5393), 1, + anon_sym_op, + ACTIONS(5395), 1, + anon_sym_LBRACE, + ACTIONS(5397), 1, + anon_sym_POUND, + ACTIONS(5399), 1, + anon_sym_LBRACK, + ACTIONS(5401), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5403), 1, + anon_sym_let, + ACTIONS(5405), 1, + anon_sym_u201c, + ACTIONS(5407), 1, + anon_sym_u2018, + ACTIONS(5409), 1, + anon_sym_BQUOTE, + ACTIONS(10657), 1, + anon_sym_raise, + ACTIONS(10659), 1, + anon_sym_if, + ACTIONS(10661), 1, + anon_sym_while, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + STATE(7656), 1, + sym__scon, + STATE(7657), 1, + sym_longvid, + STATE(8034), 1, + sym_vid, + STATE(13433), 1, + sym__exp, + STATE(18922), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5385), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1109), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [385412] = 28, + ACTIONS(1145), 1, + sym_integer_scon, + ACTIONS(1149), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1151), 1, + sym__symbolic_ident, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1155), 1, + anon_sym_op, + ACTIONS(1157), 1, + anon_sym_LBRACE, + ACTIONS(1159), 1, + anon_sym_POUND, + ACTIONS(1161), 1, + anon_sym_LBRACK, + ACTIONS(1163), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1165), 1, + anon_sym_let, + ACTIONS(1167), 1, + anon_sym_u201c, + ACTIONS(1169), 1, + anon_sym_u2018, + ACTIONS(1171), 1, + anon_sym_BQUOTE, + ACTIONS(10711), 1, + anon_sym_raise, + ACTIONS(10713), 1, + anon_sym_if, + ACTIONS(10715), 1, + anon_sym_while, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + STATE(4294), 1, + sym__scon, + STATE(4295), 1, + sym_longvid, + STATE(4558), 1, + sym_vid, + STATE(9188), 1, + sym__exp, + STATE(19170), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1147), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(472), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [385524] = 28, + ACTIONS(10183), 1, + anon_sym_case, + ACTIONS(10185), 1, + anon_sym_fn, + ACTIONS(10741), 1, + sym_integer_scon, + ACTIONS(10745), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10747), 1, + sym__symbolic_ident, + ACTIONS(10749), 1, + anon_sym_LPAREN, + ACTIONS(10751), 1, + anon_sym_op, + ACTIONS(10753), 1, + anon_sym_LBRACE, + ACTIONS(10755), 1, + anon_sym_POUND, + ACTIONS(10757), 1, + anon_sym_LBRACK, + ACTIONS(10759), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10761), 1, + anon_sym_let, + ACTIONS(10763), 1, + anon_sym_raise, + ACTIONS(10765), 1, + anon_sym_if, + ACTIONS(10767), 1, + anon_sym_while, + ACTIONS(10769), 1, + anon_sym_u201c, + ACTIONS(10771), 1, + anon_sym_u2018, + ACTIONS(10773), 1, + anon_sym_BQUOTE, + STATE(10197), 1, + sym__scon, + STATE(10198), 1, + sym_longvid, + STATE(10359), 1, + sym_vid, + STATE(17846), 1, + sym__exp, + STATE(18857), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10743), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4148), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [385636] = 28, + ACTIONS(967), 1, + sym_integer_scon, + ACTIONS(971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(973), 1, + sym__symbolic_ident, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, + anon_sym_op, + ACTIONS(979), 1, + anon_sym_LBRACE, + ACTIONS(983), 1, + anon_sym_POUND, + ACTIONS(985), 1, + anon_sym_LBRACK, + ACTIONS(987), 1, + anon_sym_POUND_LBRACK, + ACTIONS(989), 1, + anon_sym_let, + ACTIONS(991), 1, + anon_sym_u201c, + ACTIONS(993), 1, + anon_sym_u2018, + ACTIONS(995), 1, + anon_sym_BQUOTE, + ACTIONS(10775), 1, + anon_sym_raise, + ACTIONS(10777), 1, + anon_sym_if, + ACTIONS(10779), 1, + anon_sym_while, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + STATE(4229), 1, + sym_vid, + STATE(4233), 1, + sym__scon, + STATE(4234), 1, + sym_longvid, + STATE(9020), 1, + sym__exp, + STATE(19087), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(465), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [385748] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18908), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [385860] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12963), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [385972] = 28, + ACTIONS(3155), 1, + sym_integer_scon, + ACTIONS(3159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3161), 1, + sym__symbolic_ident, + ACTIONS(3163), 1, + anon_sym_LPAREN, + ACTIONS(3165), 1, + anon_sym_op, + ACTIONS(3167), 1, + anon_sym_LBRACE, + ACTIONS(3169), 1, + anon_sym_POUND, + ACTIONS(3171), 1, + anon_sym_LBRACK, + ACTIONS(3173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3175), 1, + anon_sym_let, + ACTIONS(3177), 1, + anon_sym_u201c, + ACTIONS(3179), 1, + anon_sym_u2018, + ACTIONS(3181), 1, + anon_sym_BQUOTE, + ACTIONS(10731), 1, + anon_sym_raise, + ACTIONS(10733), 1, + anon_sym_if, + ACTIONS(10735), 1, + anon_sym_while, + ACTIONS(10737), 1, + anon_sym_case, + ACTIONS(10739), 1, + anon_sym_fn, + STATE(6825), 1, + sym__scon, + STATE(6826), 1, + sym_longvid, + STATE(6891), 1, + sym_vid, + STATE(13087), 1, + sym__exp, + STATE(18907), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(558), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [386084] = 28, + ACTIONS(3155), 1, + sym_integer_scon, + ACTIONS(3159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3161), 1, + sym__symbolic_ident, + ACTIONS(3163), 1, + anon_sym_LPAREN, + ACTIONS(3165), 1, + anon_sym_op, + ACTIONS(3167), 1, + anon_sym_LBRACE, + ACTIONS(3169), 1, + anon_sym_POUND, + ACTIONS(3171), 1, + anon_sym_LBRACK, + ACTIONS(3173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3175), 1, + anon_sym_let, + ACTIONS(3177), 1, + anon_sym_u201c, + ACTIONS(3179), 1, + anon_sym_u2018, + ACTIONS(3181), 1, + anon_sym_BQUOTE, + ACTIONS(10731), 1, + anon_sym_raise, + ACTIONS(10733), 1, + anon_sym_if, + ACTIONS(10735), 1, + anon_sym_while, + ACTIONS(10737), 1, + anon_sym_case, + ACTIONS(10739), 1, + anon_sym_fn, + STATE(6825), 1, + sym__scon, + STATE(6826), 1, + sym_longvid, + STATE(6891), 1, + sym_vid, + STATE(13088), 1, + sym__exp, + STATE(18907), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(558), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [386196] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19189), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [386308] = 28, + ACTIONS(3155), 1, + sym_integer_scon, + ACTIONS(3159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3161), 1, + sym__symbolic_ident, + ACTIONS(3163), 1, + anon_sym_LPAREN, + ACTIONS(3165), 1, + anon_sym_op, + ACTIONS(3167), 1, + anon_sym_LBRACE, + ACTIONS(3169), 1, + anon_sym_POUND, + ACTIONS(3171), 1, + anon_sym_LBRACK, + ACTIONS(3173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3175), 1, + anon_sym_let, + ACTIONS(3177), 1, + anon_sym_u201c, + ACTIONS(3179), 1, + anon_sym_u2018, + ACTIONS(3181), 1, + anon_sym_BQUOTE, + ACTIONS(10731), 1, + anon_sym_raise, + ACTIONS(10733), 1, + anon_sym_if, + ACTIONS(10735), 1, + anon_sym_while, + ACTIONS(10737), 1, + anon_sym_case, + ACTIONS(10739), 1, + anon_sym_fn, + STATE(6825), 1, + sym__scon, + STATE(6826), 1, + sym_longvid, + STATE(6891), 1, + sym_vid, + STATE(13225), 1, + sym__exp, + STATE(18907), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(558), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [386420] = 28, + ACTIONS(3155), 1, + sym_integer_scon, + ACTIONS(3159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3161), 1, + sym__symbolic_ident, + ACTIONS(3163), 1, + anon_sym_LPAREN, + ACTIONS(3165), 1, + anon_sym_op, + ACTIONS(3167), 1, + anon_sym_LBRACE, + ACTIONS(3169), 1, + anon_sym_POUND, + ACTIONS(3171), 1, + anon_sym_LBRACK, + ACTIONS(3173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3175), 1, + anon_sym_let, + ACTIONS(3177), 1, + anon_sym_u201c, + ACTIONS(3179), 1, + anon_sym_u2018, + ACTIONS(3181), 1, + anon_sym_BQUOTE, + ACTIONS(10731), 1, + anon_sym_raise, + ACTIONS(10733), 1, + anon_sym_if, + ACTIONS(10735), 1, + anon_sym_while, + ACTIONS(10737), 1, + anon_sym_case, + ACTIONS(10739), 1, + anon_sym_fn, + STATE(6825), 1, + sym__scon, + STATE(6826), 1, + sym_longvid, + STATE(6891), 1, + sym_vid, + STATE(13068), 1, + sym__exp, + STATE(18907), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(558), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [386532] = 28, + ACTIONS(3155), 1, + sym_integer_scon, + ACTIONS(3159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3161), 1, + sym__symbolic_ident, + ACTIONS(3163), 1, + anon_sym_LPAREN, + ACTIONS(3165), 1, + anon_sym_op, + ACTIONS(3167), 1, + anon_sym_LBRACE, + ACTIONS(3169), 1, + anon_sym_POUND, + ACTIONS(3171), 1, + anon_sym_LBRACK, + ACTIONS(3173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3175), 1, + anon_sym_let, + ACTIONS(3177), 1, + anon_sym_u201c, + ACTIONS(3179), 1, + anon_sym_u2018, + ACTIONS(3181), 1, + anon_sym_BQUOTE, + ACTIONS(10731), 1, + anon_sym_raise, + ACTIONS(10733), 1, + anon_sym_if, + ACTIONS(10735), 1, + anon_sym_while, + ACTIONS(10737), 1, + anon_sym_case, + ACTIONS(10739), 1, + anon_sym_fn, + STATE(6825), 1, + sym__scon, + STATE(6826), 1, + sym_longvid, + STATE(6891), 1, + sym_vid, + STATE(13069), 1, + sym__exp, + STATE(18907), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(558), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [386644] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18993), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [386756] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19025), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [386868] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12966), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [386980] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19246), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [387092] = 28, + ACTIONS(3043), 1, + sym_integer_scon, + ACTIONS(3047), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3049), 1, + sym__symbolic_ident, + ACTIONS(3051), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, + anon_sym_op, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, + anon_sym_POUND, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3061), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3063), 1, + anon_sym_let, + ACTIONS(3065), 1, + anon_sym_u201c, + ACTIONS(3067), 1, + anon_sym_u2018, + ACTIONS(3069), 1, + anon_sym_BQUOTE, + ACTIONS(11255), 1, + anon_sym_raise, + ACTIONS(11257), 1, + anon_sym_if, + ACTIONS(11259), 1, + anon_sym_while, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + STATE(6577), 1, + sym_vid, + STATE(7195), 1, + sym__scon, + STATE(7197), 1, + sym_longvid, + STATE(13119), 1, + sym__exp, + STATE(18709), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(554), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [387204] = 28, + ACTIONS(3295), 1, + sym_integer_scon, + ACTIONS(3299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3301), 1, + sym__symbolic_ident, + ACTIONS(3303), 1, + anon_sym_LPAREN, + ACTIONS(3305), 1, + anon_sym_op, + ACTIONS(3307), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_POUND, + ACTIONS(3311), 1, + anon_sym_LBRACK, + ACTIONS(3313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3315), 1, + anon_sym_let, + ACTIONS(3317), 1, + anon_sym_u201c, + ACTIONS(3319), 1, + anon_sym_u2018, + ACTIONS(3321), 1, + anon_sym_BQUOTE, + ACTIONS(10243), 1, + anon_sym_case, + ACTIONS(10245), 1, + anon_sym_fn, + ACTIONS(11329), 1, + anon_sym_raise, + ACTIONS(11331), 1, + anon_sym_if, + ACTIONS(11333), 1, + anon_sym_while, + STATE(7064), 1, + sym_vid, + STATE(7403), 1, + sym__scon, + STATE(7404), 1, + sym_longvid, + STATE(13090), 1, + sym__exp, + STATE(18962), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(564), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [387316] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18904), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [387428] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12967), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [387540] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19040), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [387652] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12968), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [387764] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12969), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [387876] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19111), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [387988] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12970), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [388100] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12971), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [388212] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12972), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [388324] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19205), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [388436] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19167), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [388548] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12722), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [388660] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12723), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [388772] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12753), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [388884] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12715), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [388996] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19166), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [389108] = 28, + ACTIONS(2293), 1, + sym_integer_scon, + ACTIONS(2297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2299), 1, + sym__symbolic_ident, + ACTIONS(2301), 1, + anon_sym_LPAREN, + ACTIONS(2303), 1, + anon_sym_op, + ACTIONS(2305), 1, + anon_sym_LBRACE, + ACTIONS(2307), 1, + anon_sym_POUND, + ACTIONS(2309), 1, + anon_sym_LBRACK, + ACTIONS(2311), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2313), 1, + anon_sym_let, + ACTIONS(2315), 1, + anon_sym_u201c, + ACTIONS(2317), 1, + anon_sym_u2018, + ACTIONS(2319), 1, + anon_sym_BQUOTE, + ACTIONS(11335), 1, + anon_sym_raise, + ACTIONS(11337), 1, + anon_sym_if, + ACTIONS(11339), 1, + anon_sym_while, + ACTIONS(11341), 1, + anon_sym_case, + ACTIONS(11343), 1, + anon_sym_fn, + STATE(6016), 1, + sym__scon, + STATE(6017), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(12716), 1, + sym__exp, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2295), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(520), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [389220] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19153), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [389332] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19253), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [389444] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18770), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [389556] = 28, + ACTIONS(10829), 1, + sym_integer_scon, + ACTIONS(10833), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10835), 1, + sym__symbolic_ident, + ACTIONS(10837), 1, + anon_sym_LPAREN, + ACTIONS(10839), 1, + anon_sym_op, + ACTIONS(10841), 1, + anon_sym_LBRACE, + ACTIONS(10843), 1, + anon_sym_POUND, + ACTIONS(10845), 1, + anon_sym_LBRACK, + ACTIONS(10847), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10849), 1, + anon_sym_let, + ACTIONS(10851), 1, + anon_sym_raise, + ACTIONS(10853), 1, + anon_sym_if, + ACTIONS(10855), 1, + anon_sym_while, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(10861), 1, + anon_sym_u201c, + ACTIONS(10863), 1, + anon_sym_u2018, + ACTIONS(10865), 1, + anon_sym_BQUOTE, + STATE(9897), 1, + sym__scon, + STATE(9900), 1, + sym_longvid, + STATE(9905), 1, + sym_vid, + STATE(17237), 1, + sym__exp, + STATE(18913), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10831), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [389668] = 28, + ACTIONS(1781), 1, + anon_sym_case, + ACTIONS(1783), 1, + anon_sym_fn, + ACTIONS(11379), 1, + sym_integer_scon, + ACTIONS(11383), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11385), 1, + sym__symbolic_ident, + ACTIONS(11387), 1, + anon_sym_LPAREN, + ACTIONS(11389), 1, + anon_sym_op, + ACTIONS(11391), 1, + anon_sym_LBRACE, + ACTIONS(11393), 1, + anon_sym_POUND, + ACTIONS(11395), 1, + anon_sym_LBRACK, + ACTIONS(11397), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11399), 1, + anon_sym_let, + ACTIONS(11401), 1, + anon_sym_raise, + ACTIONS(11403), 1, + anon_sym_if, + ACTIONS(11405), 1, + anon_sym_while, + ACTIONS(11407), 1, + anon_sym_u201c, + ACTIONS(11409), 1, + anon_sym_u2018, + ACTIONS(11411), 1, + anon_sym_BQUOTE, + STATE(9231), 1, + sym_vid, + STATE(9435), 1, + sym__scon, + STATE(9437), 1, + sym_longvid, + STATE(16498), 1, + sym__exp, + STATE(18949), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11381), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4094), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [389780] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18966), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [389892] = 28, + ACTIONS(5509), 1, + sym_integer_scon, + ACTIONS(5513), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5515), 1, + sym__symbolic_ident, + ACTIONS(5517), 1, + anon_sym_LPAREN, + ACTIONS(5519), 1, + anon_sym_op, + ACTIONS(5521), 1, + anon_sym_LBRACE, + ACTIONS(5523), 1, + anon_sym_POUND, + ACTIONS(5525), 1, + anon_sym_LBRACK, + ACTIONS(5527), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5529), 1, + anon_sym_let, + ACTIONS(5531), 1, + anon_sym_u201c, + ACTIONS(5533), 1, + anon_sym_u2018, + ACTIONS(5535), 1, + anon_sym_BQUOTE, + ACTIONS(10737), 1, + anon_sym_case, + ACTIONS(10739), 1, + anon_sym_fn, + ACTIONS(11487), 1, + anon_sym_raise, + ACTIONS(11489), 1, + anon_sym_if, + ACTIONS(11491), 1, + anon_sym_while, + STATE(7510), 1, + sym__scon, + STATE(7511), 1, + sym_longvid, + STATE(7867), 1, + sym_vid, + STATE(13385), 1, + sym__exp, + STATE(19219), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5511), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1100), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [390004] = 28, + ACTIONS(5509), 1, + sym_integer_scon, + ACTIONS(5513), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5515), 1, + sym__symbolic_ident, + ACTIONS(5517), 1, + anon_sym_LPAREN, + ACTIONS(5519), 1, + anon_sym_op, + ACTIONS(5521), 1, + anon_sym_LBRACE, + ACTIONS(5523), 1, + anon_sym_POUND, + ACTIONS(5525), 1, + anon_sym_LBRACK, + ACTIONS(5527), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5529), 1, + anon_sym_let, + ACTIONS(5531), 1, + anon_sym_u201c, + ACTIONS(5533), 1, + anon_sym_u2018, + ACTIONS(5535), 1, + anon_sym_BQUOTE, + ACTIONS(10737), 1, + anon_sym_case, + ACTIONS(10739), 1, + anon_sym_fn, + ACTIONS(11487), 1, + anon_sym_raise, + ACTIONS(11489), 1, + anon_sym_if, + ACTIONS(11491), 1, + anon_sym_while, + STATE(7510), 1, + sym__scon, + STATE(7511), 1, + sym_longvid, + STATE(7867), 1, + sym_vid, + STATE(13387), 1, + sym__exp, + STATE(19219), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5511), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1100), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [390116] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19197), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [390228] = 28, + ACTIONS(5509), 1, + sym_integer_scon, + ACTIONS(5513), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5515), 1, + sym__symbolic_ident, + ACTIONS(5517), 1, + anon_sym_LPAREN, + ACTIONS(5519), 1, + anon_sym_op, + ACTIONS(5521), 1, + anon_sym_LBRACE, + ACTIONS(5523), 1, + anon_sym_POUND, + ACTIONS(5525), 1, + anon_sym_LBRACK, + ACTIONS(5527), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5529), 1, + anon_sym_let, + ACTIONS(5531), 1, + anon_sym_u201c, + ACTIONS(5533), 1, + anon_sym_u2018, + ACTIONS(5535), 1, + anon_sym_BQUOTE, + ACTIONS(10737), 1, + anon_sym_case, + ACTIONS(10739), 1, + anon_sym_fn, + ACTIONS(11487), 1, + anon_sym_raise, + ACTIONS(11489), 1, + anon_sym_if, + ACTIONS(11491), 1, + anon_sym_while, + STATE(7510), 1, + sym__scon, + STATE(7511), 1, + sym_longvid, + STATE(7867), 1, + sym_vid, + STATE(13512), 1, + sym__exp, + STATE(19219), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5511), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1100), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [390340] = 28, + ACTIONS(5509), 1, + sym_integer_scon, + ACTIONS(5513), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5515), 1, + sym__symbolic_ident, + ACTIONS(5517), 1, + anon_sym_LPAREN, + ACTIONS(5519), 1, + anon_sym_op, + ACTIONS(5521), 1, + anon_sym_LBRACE, + ACTIONS(5523), 1, + anon_sym_POUND, + ACTIONS(5525), 1, + anon_sym_LBRACK, + ACTIONS(5527), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5529), 1, + anon_sym_let, + ACTIONS(5531), 1, + anon_sym_u201c, + ACTIONS(5533), 1, + anon_sym_u2018, + ACTIONS(5535), 1, + anon_sym_BQUOTE, + ACTIONS(10737), 1, + anon_sym_case, + ACTIONS(10739), 1, + anon_sym_fn, + ACTIONS(11487), 1, + anon_sym_raise, + ACTIONS(11489), 1, + anon_sym_if, + ACTIONS(11491), 1, + anon_sym_while, + STATE(7510), 1, + sym__scon, + STATE(7511), 1, + sym_longvid, + STATE(7867), 1, + sym_vid, + STATE(13514), 1, + sym__exp, + STATE(19219), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5511), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1100), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [390452] = 28, + ACTIONS(5509), 1, + sym_integer_scon, + ACTIONS(5513), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5515), 1, + sym__symbolic_ident, + ACTIONS(5517), 1, + anon_sym_LPAREN, + ACTIONS(5519), 1, + anon_sym_op, + ACTIONS(5521), 1, + anon_sym_LBRACE, + ACTIONS(5523), 1, + anon_sym_POUND, + ACTIONS(5525), 1, + anon_sym_LBRACK, + ACTIONS(5527), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5529), 1, + anon_sym_let, + ACTIONS(5531), 1, + anon_sym_u201c, + ACTIONS(5533), 1, + anon_sym_u2018, + ACTIONS(5535), 1, + anon_sym_BQUOTE, + ACTIONS(10737), 1, + anon_sym_case, + ACTIONS(10739), 1, + anon_sym_fn, + ACTIONS(11487), 1, + anon_sym_raise, + ACTIONS(11489), 1, + anon_sym_if, + ACTIONS(11491), 1, + anon_sym_while, + STATE(7510), 1, + sym__scon, + STATE(7511), 1, + sym_longvid, + STATE(7867), 1, + sym_vid, + STATE(13517), 1, + sym__exp, + STATE(19219), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5511), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1100), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [390564] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18884), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [390676] = 28, + ACTIONS(5481), 1, + sym_integer_scon, + ACTIONS(5485), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5487), 1, + sym__symbolic_ident, + ACTIONS(5489), 1, + anon_sym_LPAREN, + ACTIONS(5491), 1, + anon_sym_op, + ACTIONS(5493), 1, + anon_sym_LBRACE, + ACTIONS(5495), 1, + anon_sym_POUND, + ACTIONS(5497), 1, + anon_sym_LBRACK, + ACTIONS(5499), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5501), 1, + anon_sym_let, + ACTIONS(5503), 1, + anon_sym_u201c, + ACTIONS(5505), 1, + anon_sym_u2018, + ACTIONS(5507), 1, + anon_sym_BQUOTE, + ACTIONS(10627), 1, + anon_sym_raise, + ACTIONS(10629), 1, + anon_sym_if, + ACTIONS(10631), 1, + anon_sym_while, + ACTIONS(10633), 1, + anon_sym_case, + ACTIONS(10635), 1, + anon_sym_fn, + STATE(7451), 1, + sym_vid, + STATE(7830), 1, + sym__scon, + STATE(7877), 1, + sym_longvid, + STATE(13466), 1, + sym__exp, + STATE(18911), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5483), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1102), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [390788] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18727), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [390900] = 28, + ACTIONS(8009), 1, + sym_integer_scon, + ACTIONS(8013), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8015), 1, + sym__symbolic_ident, + ACTIONS(8019), 1, + anon_sym_op, + ACTIONS(8021), 1, + anon_sym_LBRACE, + ACTIONS(8023), 1, + anon_sym_POUND, + ACTIONS(8025), 1, + anon_sym_LBRACK, + ACTIONS(8027), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8029), 1, + anon_sym_let, + ACTIONS(8031), 1, + anon_sym_raise, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_while, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(8041), 1, + anon_sym_u201c, + ACTIONS(8043), 1, + anon_sym_u2018, + ACTIONS(8045), 1, + anon_sym_BQUOTE, + ACTIONS(11527), 1, + anon_sym_LPAREN, + STATE(11539), 1, + sym_vid, + STATE(11804), 1, + sym__scon, + STATE(11810), 1, + sym_longvid, + STATE(18240), 1, + sym__exp, + STATE(18835), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8011), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4185), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [391012] = 28, + ACTIONS(8009), 1, + sym_integer_scon, + ACTIONS(8013), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8015), 1, + sym__symbolic_ident, + ACTIONS(8019), 1, + anon_sym_op, + ACTIONS(8021), 1, + anon_sym_LBRACE, + ACTIONS(8023), 1, + anon_sym_POUND, + ACTIONS(8025), 1, + anon_sym_LBRACK, + ACTIONS(8027), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8029), 1, + anon_sym_let, + ACTIONS(8031), 1, + anon_sym_raise, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_while, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(8041), 1, + anon_sym_u201c, + ACTIONS(8043), 1, + anon_sym_u2018, + ACTIONS(8045), 1, + anon_sym_BQUOTE, + ACTIONS(11527), 1, + anon_sym_LPAREN, + STATE(11539), 1, + sym_vid, + STATE(11804), 1, + sym__scon, + STATE(11810), 1, + sym_longvid, + STATE(18691), 1, + sym__exp, + STATE(18835), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8011), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4185), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [391124] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19158), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [391236] = 28, + ACTIONS(8009), 1, + sym_integer_scon, + ACTIONS(8013), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8015), 1, + sym__symbolic_ident, + ACTIONS(8019), 1, + anon_sym_op, + ACTIONS(8021), 1, + anon_sym_LBRACE, + ACTIONS(8023), 1, + anon_sym_POUND, + ACTIONS(8025), 1, + anon_sym_LBRACK, + ACTIONS(8027), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8029), 1, + anon_sym_let, + ACTIONS(8031), 1, + anon_sym_raise, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_while, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(8041), 1, + anon_sym_u201c, + ACTIONS(8043), 1, + anon_sym_u2018, + ACTIONS(8045), 1, + anon_sym_BQUOTE, + ACTIONS(11527), 1, + anon_sym_LPAREN, + STATE(11539), 1, + sym_vid, + STATE(11804), 1, + sym__scon, + STATE(11810), 1, + sym_longvid, + STATE(18022), 1, + sym__exp, + STATE(18835), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8011), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4185), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [391348] = 28, + ACTIONS(8009), 1, + sym_integer_scon, + ACTIONS(8013), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8015), 1, + sym__symbolic_ident, + ACTIONS(8019), 1, + anon_sym_op, + ACTIONS(8021), 1, + anon_sym_LBRACE, + ACTIONS(8023), 1, + anon_sym_POUND, + ACTIONS(8025), 1, + anon_sym_LBRACK, + ACTIONS(8027), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8029), 1, + anon_sym_let, + ACTIONS(8031), 1, + anon_sym_raise, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_while, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(8041), 1, + anon_sym_u201c, + ACTIONS(8043), 1, + anon_sym_u2018, + ACTIONS(8045), 1, + anon_sym_BQUOTE, + ACTIONS(11527), 1, + anon_sym_LPAREN, + STATE(11539), 1, + sym_vid, + STATE(11804), 1, + sym__scon, + STATE(11810), 1, + sym_longvid, + STATE(18537), 1, + sym__exp, + STATE(18835), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8011), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4185), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [391460] = 28, + ACTIONS(8009), 1, + sym_integer_scon, + ACTIONS(8013), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8015), 1, + sym__symbolic_ident, + ACTIONS(8019), 1, + anon_sym_op, + ACTIONS(8021), 1, + anon_sym_LBRACE, + ACTIONS(8023), 1, + anon_sym_POUND, + ACTIONS(8025), 1, + anon_sym_LBRACK, + ACTIONS(8027), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8029), 1, + anon_sym_let, + ACTIONS(8031), 1, + anon_sym_raise, + ACTIONS(8033), 1, + anon_sym_if, + ACTIONS(8035), 1, + anon_sym_while, + ACTIONS(8037), 1, + anon_sym_case, + ACTIONS(8039), 1, + anon_sym_fn, + ACTIONS(8041), 1, + anon_sym_u201c, + ACTIONS(8043), 1, + anon_sym_u2018, + ACTIONS(8045), 1, + anon_sym_BQUOTE, + ACTIONS(11527), 1, + anon_sym_LPAREN, + STATE(11539), 1, + sym_vid, + STATE(11804), 1, + sym__scon, + STATE(11810), 1, + sym_longvid, + STATE(18538), 1, + sym__exp, + STATE(18835), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8011), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4185), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [391572] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18763), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [391684] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19177), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [391796] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18756), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [391908] = 28, + ACTIONS(1117), 1, + sym_integer_scon, + ACTIONS(1121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1123), 1, + sym__symbolic_ident, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1127), 1, + anon_sym_op, + ACTIONS(1129), 1, + anon_sym_LBRACE, + ACTIONS(1131), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + anon_sym_LBRACK, + ACTIONS(1135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1137), 1, + anon_sym_let, + ACTIONS(1139), 1, + anon_sym_u201c, + ACTIONS(1141), 1, + anon_sym_u2018, + ACTIONS(1143), 1, + anon_sym_BQUOTE, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + ACTIONS(10917), 1, + anon_sym_raise, + ACTIONS(10919), 1, + anon_sym_if, + ACTIONS(10921), 1, + anon_sym_while, + STATE(4281), 1, + sym_vid, + STATE(4303), 1, + sym__scon, + STATE(4304), 1, + sym_longvid, + STATE(9418), 1, + sym__exp, + STATE(19088), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(471), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [392020] = 28, + ACTIONS(1985), 1, + sym_integer_scon, + ACTIONS(1989), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1991), 1, + sym__symbolic_ident, + ACTIONS(1993), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_op, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(1999), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_LBRACK, + ACTIONS(2003), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2005), 1, + anon_sym_let, + ACTIONS(2007), 1, + anon_sym_u201c, + ACTIONS(2009), 1, + anon_sym_u2018, + ACTIONS(2011), 1, + anon_sym_BQUOTE, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + ACTIONS(10923), 1, + anon_sym_raise, + ACTIONS(10925), 1, + anon_sym_if, + ACTIONS(10927), 1, + anon_sym_while, + STATE(6262), 1, + sym__scon, + STATE(6263), 1, + sym_longvid, + STATE(6485), 1, + sym_vid, + STATE(12724), 1, + sym__exp, + STATE(19171), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1987), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(533), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [392132] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18930), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [392244] = 28, + ACTIONS(10341), 1, + anon_sym_case, + ACTIONS(10343), 1, + anon_sym_fn, + ACTIONS(11119), 1, + sym_integer_scon, + ACTIONS(11123), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11125), 1, + sym__symbolic_ident, + ACTIONS(11127), 1, + anon_sym_LPAREN, + ACTIONS(11129), 1, + anon_sym_op, + ACTIONS(11131), 1, + anon_sym_LBRACE, + ACTIONS(11133), 1, + anon_sym_POUND, + ACTIONS(11135), 1, + anon_sym_LBRACK, + ACTIONS(11137), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11139), 1, + anon_sym_let, + ACTIONS(11141), 1, + anon_sym_raise, + ACTIONS(11143), 1, + anon_sym_if, + ACTIONS(11145), 1, + anon_sym_while, + ACTIONS(11147), 1, + anon_sym_u201c, + ACTIONS(11149), 1, + anon_sym_u2018, + ACTIONS(11151), 1, + anon_sym_BQUOTE, + STATE(11153), 1, + sym__scon, + STATE(11157), 1, + sym_longvid, + STATE(11752), 1, + sym_vid, + STATE(18247), 1, + sym__exp, + STATE(19204), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11121), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4204), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [392356] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19228), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [392468] = 28, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(11187), 1, + sym_integer_scon, + ACTIONS(11191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11193), 1, + sym__symbolic_ident, + ACTIONS(11195), 1, + anon_sym_LPAREN, + ACTIONS(11197), 1, + anon_sym_op, + ACTIONS(11199), 1, + anon_sym_LBRACE, + ACTIONS(11201), 1, + anon_sym_POUND, + ACTIONS(11203), 1, + anon_sym_LBRACK, + ACTIONS(11205), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11207), 1, + anon_sym_let, + ACTIONS(11209), 1, + anon_sym_raise, + ACTIONS(11211), 1, + anon_sym_if, + ACTIONS(11213), 1, + anon_sym_while, + ACTIONS(11215), 1, + anon_sym_u201c, + ACTIONS(11217), 1, + anon_sym_u2018, + ACTIONS(11219), 1, + anon_sym_BQUOTE, + STATE(11407), 1, + sym__scon, + STATE(11413), 1, + sym_longvid, + STATE(11743), 1, + sym_vid, + STATE(18254), 1, + sym__exp, + STATE(19106), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11189), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4255), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [392580] = 28, + ACTIONS(2875), 1, + sym_integer_scon, + ACTIONS(2879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2881), 1, + sym__symbolic_ident, + ACTIONS(2883), 1, + anon_sym_LPAREN, + ACTIONS(2885), 1, + anon_sym_op, + ACTIONS(2887), 1, + anon_sym_LBRACE, + ACTIONS(2889), 1, + anon_sym_POUND, + ACTIONS(2891), 1, + anon_sym_LBRACK, + ACTIONS(2893), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2895), 1, + anon_sym_let, + ACTIONS(2897), 1, + anon_sym_u201c, + ACTIONS(2899), 1, + anon_sym_u2018, + ACTIONS(2901), 1, + anon_sym_BQUOTE, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + ACTIONS(11447), 1, + anon_sym_raise, + ACTIONS(11449), 1, + anon_sym_if, + ACTIONS(11451), 1, + anon_sym_while, + STATE(6716), 1, + sym__scon, + STATE(6717), 1, + sym_longvid, + STATE(6884), 1, + sym_vid, + STATE(13290), 1, + sym__exp, + STATE(19046), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2877), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(546), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [392692] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19005), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [392804] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18732), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [392916] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(13009), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [393028] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18976), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [393140] = 28, + ACTIONS(8147), 1, + sym_integer_scon, + ACTIONS(8151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8153), 1, + sym__symbolic_ident, + ACTIONS(8157), 1, + anon_sym_op, + ACTIONS(8159), 1, + anon_sym_LBRACE, + ACTIONS(8161), 1, + anon_sym_POUND, + ACTIONS(8163), 1, + anon_sym_LBRACK, + ACTIONS(8165), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8167), 1, + anon_sym_let, + ACTIONS(8169), 1, + anon_sym_raise, + ACTIONS(8171), 1, + anon_sym_if, + ACTIONS(8173), 1, + anon_sym_while, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(8179), 1, + anon_sym_u201c, + ACTIONS(8181), 1, + anon_sym_u2018, + ACTIONS(8183), 1, + anon_sym_BQUOTE, + ACTIONS(11529), 1, + anon_sym_LPAREN, + STATE(11124), 1, + sym__scon, + STATE(11150), 1, + sym_longvid, + STATE(11447), 1, + sym_vid, + STATE(18315), 1, + sym__exp, + STATE(19138), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8149), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4215), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [393252] = 28, + ACTIONS(8147), 1, + sym_integer_scon, + ACTIONS(8151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8153), 1, + sym__symbolic_ident, + ACTIONS(8157), 1, + anon_sym_op, + ACTIONS(8159), 1, + anon_sym_LBRACE, + ACTIONS(8161), 1, + anon_sym_POUND, + ACTIONS(8163), 1, + anon_sym_LBRACK, + ACTIONS(8165), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8167), 1, + anon_sym_let, + ACTIONS(8169), 1, + anon_sym_raise, + ACTIONS(8171), 1, + anon_sym_if, + ACTIONS(8173), 1, + anon_sym_while, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(8179), 1, + anon_sym_u201c, + ACTIONS(8181), 1, + anon_sym_u2018, + ACTIONS(8183), 1, + anon_sym_BQUOTE, + ACTIONS(11529), 1, + anon_sym_LPAREN, + STATE(11124), 1, + sym__scon, + STATE(11150), 1, + sym_longvid, + STATE(11447), 1, + sym_vid, + STATE(17972), 1, + sym__exp, + STATE(19138), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8149), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4215), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [393364] = 28, + ACTIONS(8147), 1, + sym_integer_scon, + ACTIONS(8151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8153), 1, + sym__symbolic_ident, + ACTIONS(8157), 1, + anon_sym_op, + ACTIONS(8159), 1, + anon_sym_LBRACE, + ACTIONS(8161), 1, + anon_sym_POUND, + ACTIONS(8163), 1, + anon_sym_LBRACK, + ACTIONS(8165), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8167), 1, + anon_sym_let, + ACTIONS(8169), 1, + anon_sym_raise, + ACTIONS(8171), 1, + anon_sym_if, + ACTIONS(8173), 1, + anon_sym_while, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(8179), 1, + anon_sym_u201c, + ACTIONS(8181), 1, + anon_sym_u2018, + ACTIONS(8183), 1, + anon_sym_BQUOTE, + ACTIONS(11529), 1, + anon_sym_LPAREN, + STATE(11124), 1, + sym__scon, + STATE(11150), 1, + sym_longvid, + STATE(11447), 1, + sym_vid, + STATE(18031), 1, + sym__exp, + STATE(19138), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8149), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4215), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [393476] = 28, + ACTIONS(8147), 1, + sym_integer_scon, + ACTIONS(8151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8153), 1, + sym__symbolic_ident, + ACTIONS(8157), 1, + anon_sym_op, + ACTIONS(8159), 1, + anon_sym_LBRACE, + ACTIONS(8161), 1, + anon_sym_POUND, + ACTIONS(8163), 1, + anon_sym_LBRACK, + ACTIONS(8165), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8167), 1, + anon_sym_let, + ACTIONS(8169), 1, + anon_sym_raise, + ACTIONS(8171), 1, + anon_sym_if, + ACTIONS(8173), 1, + anon_sym_while, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(8179), 1, + anon_sym_u201c, + ACTIONS(8181), 1, + anon_sym_u2018, + ACTIONS(8183), 1, + anon_sym_BQUOTE, + ACTIONS(11529), 1, + anon_sym_LPAREN, + STATE(11124), 1, + sym__scon, + STATE(11150), 1, + sym_longvid, + STATE(11447), 1, + sym_vid, + STATE(18557), 1, + sym__exp, + STATE(19138), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8149), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4215), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [393588] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19074), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [393700] = 28, + ACTIONS(8147), 1, + sym_integer_scon, + ACTIONS(8151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8153), 1, + sym__symbolic_ident, + ACTIONS(8157), 1, + anon_sym_op, + ACTIONS(8159), 1, + anon_sym_LBRACE, + ACTIONS(8161), 1, + anon_sym_POUND, + ACTIONS(8163), 1, + anon_sym_LBRACK, + ACTIONS(8165), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8167), 1, + anon_sym_let, + ACTIONS(8169), 1, + anon_sym_raise, + ACTIONS(8171), 1, + anon_sym_if, + ACTIONS(8173), 1, + anon_sym_while, + ACTIONS(8175), 1, + anon_sym_case, + ACTIONS(8177), 1, + anon_sym_fn, + ACTIONS(8179), 1, + anon_sym_u201c, + ACTIONS(8181), 1, + anon_sym_u2018, + ACTIONS(8183), 1, + anon_sym_BQUOTE, + ACTIONS(11529), 1, + anon_sym_LPAREN, + STATE(11124), 1, + sym__scon, + STATE(11150), 1, + sym_longvid, + STATE(11447), 1, + sym_vid, + STATE(18558), 1, + sym__exp, + STATE(19138), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8149), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4215), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [393812] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19051), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [393924] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18916), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [394036] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19095), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [394148] = 28, + ACTIONS(2265), 1, + sym_integer_scon, + ACTIONS(2269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2271), 1, + sym__symbolic_ident, + ACTIONS(2273), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_op, + ACTIONS(2277), 1, + anon_sym_LBRACE, + ACTIONS(2279), 1, + anon_sym_POUND, + ACTIONS(2281), 1, + anon_sym_LBRACK, + ACTIONS(2283), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2285), 1, + anon_sym_let, + ACTIONS(2287), 1, + anon_sym_u201c, + ACTIONS(2289), 1, + anon_sym_u2018, + ACTIONS(2291), 1, + anon_sym_BQUOTE, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + ACTIONS(11271), 1, + anon_sym_raise, + ACTIONS(11273), 1, + anon_sym_if, + ACTIONS(11275), 1, + anon_sym_while, + STATE(5951), 1, + sym_vid, + STATE(5956), 1, + sym__scon, + STATE(5958), 1, + sym_longvid, + STATE(12734), 1, + sym__exp, + STATE(18970), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2267), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(519), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [394260] = 28, + ACTIONS(3365), 1, + sym_integer_scon, + ACTIONS(3369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3371), 1, + sym__symbolic_ident, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_op, + ACTIONS(3377), 1, + anon_sym_LBRACE, + ACTIONS(3379), 1, + anon_sym_POUND, + ACTIONS(3381), 1, + anon_sym_LBRACK, + ACTIONS(3383), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3385), 1, + anon_sym_let, + ACTIONS(3387), 1, + anon_sym_u201c, + ACTIONS(3389), 1, + anon_sym_u2018, + ACTIONS(3391), 1, + anon_sym_BQUOTE, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + ACTIONS(11413), 1, + anon_sym_raise, + ACTIONS(11415), 1, + anon_sym_if, + ACTIONS(11417), 1, + anon_sym_while, + STATE(6904), 1, + sym__scon, + STATE(6937), 1, + sym_longvid, + STATE(7314), 1, + sym_vid, + STATE(13121), 1, + sym__exp, + STATE(19107), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3367), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(567), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [394372] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(13010), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [394484] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(13011), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [394596] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19258), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [394708] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18974), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [394820] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(13017), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [394932] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19212), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [395044] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(13018), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [395156] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(13019), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [395268] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(13020), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [395380] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(13021), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [395492] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(13022), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [395604] = 28, + ACTIONS(5355), 1, + sym_integer_scon, + ACTIONS(5359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5361), 1, + sym__symbolic_ident, + ACTIONS(5363), 1, + anon_sym_LPAREN, + ACTIONS(5365), 1, + anon_sym_op, + ACTIONS(5367), 1, + anon_sym_LBRACE, + ACTIONS(5369), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_LBRACK, + ACTIONS(5373), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5375), 1, + anon_sym_let, + ACTIONS(5377), 1, + anon_sym_u201c, + ACTIONS(5379), 1, + anon_sym_u2018, + ACTIONS(5381), 1, + anon_sym_BQUOTE, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + ACTIONS(11531), 1, + anon_sym_raise, + ACTIONS(11533), 1, + anon_sym_if, + ACTIONS(11535), 1, + anon_sym_while, + STATE(7442), 1, + sym__scon, + STATE(7443), 1, + sym_longvid, + STATE(7529), 1, + sym_vid, + STATE(13354), 1, + sym__exp, + STATE(18773), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5357), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1089), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [395716] = 28, + ACTIONS(5355), 1, + sym_integer_scon, + ACTIONS(5359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5361), 1, + sym__symbolic_ident, + ACTIONS(5363), 1, + anon_sym_LPAREN, + ACTIONS(5365), 1, + anon_sym_op, + ACTIONS(5367), 1, + anon_sym_LBRACE, + ACTIONS(5369), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_LBRACK, + ACTIONS(5373), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5375), 1, + anon_sym_let, + ACTIONS(5377), 1, + anon_sym_u201c, + ACTIONS(5379), 1, + anon_sym_u2018, + ACTIONS(5381), 1, + anon_sym_BQUOTE, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + ACTIONS(11531), 1, + anon_sym_raise, + ACTIONS(11533), 1, + anon_sym_if, + ACTIONS(11535), 1, + anon_sym_while, + STATE(7442), 1, + sym__scon, + STATE(7443), 1, + sym_longvid, + STATE(7529), 1, + sym_vid, + STATE(13355), 1, + sym__exp, + STATE(18773), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5357), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1089), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [395828] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19178), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [395940] = 28, + ACTIONS(5355), 1, + sym_integer_scon, + ACTIONS(5359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5361), 1, + sym__symbolic_ident, + ACTIONS(5363), 1, + anon_sym_LPAREN, + ACTIONS(5365), 1, + anon_sym_op, + ACTIONS(5367), 1, + anon_sym_LBRACE, + ACTIONS(5369), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_LBRACK, + ACTIONS(5373), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5375), 1, + anon_sym_let, + ACTIONS(5377), 1, + anon_sym_u201c, + ACTIONS(5379), 1, + anon_sym_u2018, + ACTIONS(5381), 1, + anon_sym_BQUOTE, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + ACTIONS(11531), 1, + anon_sym_raise, + ACTIONS(11533), 1, + anon_sym_if, + ACTIONS(11535), 1, + anon_sym_while, + STATE(7442), 1, + sym__scon, + STATE(7443), 1, + sym_longvid, + STATE(7529), 1, + sym_vid, + STATE(13425), 1, + sym__exp, + STATE(18773), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5357), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1089), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [396052] = 28, + ACTIONS(5355), 1, + sym_integer_scon, + ACTIONS(5359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5361), 1, + sym__symbolic_ident, + ACTIONS(5363), 1, + anon_sym_LPAREN, + ACTIONS(5365), 1, + anon_sym_op, + ACTIONS(5367), 1, + anon_sym_LBRACE, + ACTIONS(5369), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_LBRACK, + ACTIONS(5373), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5375), 1, + anon_sym_let, + ACTIONS(5377), 1, + anon_sym_u201c, + ACTIONS(5379), 1, + anon_sym_u2018, + ACTIONS(5381), 1, + anon_sym_BQUOTE, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + ACTIONS(11531), 1, + anon_sym_raise, + ACTIONS(11533), 1, + anon_sym_if, + ACTIONS(11535), 1, + anon_sym_while, + STATE(7442), 1, + sym__scon, + STATE(7443), 1, + sym_longvid, + STATE(7529), 1, + sym_vid, + STATE(13440), 1, + sym__exp, + STATE(18773), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5357), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1089), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [396164] = 28, + ACTIONS(5355), 1, + sym_integer_scon, + ACTIONS(5359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5361), 1, + sym__symbolic_ident, + ACTIONS(5363), 1, + anon_sym_LPAREN, + ACTIONS(5365), 1, + anon_sym_op, + ACTIONS(5367), 1, + anon_sym_LBRACE, + ACTIONS(5369), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_LBRACK, + ACTIONS(5373), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5375), 1, + anon_sym_let, + ACTIONS(5377), 1, + anon_sym_u201c, + ACTIONS(5379), 1, + anon_sym_u2018, + ACTIONS(5381), 1, + anon_sym_BQUOTE, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + ACTIONS(11531), 1, + anon_sym_raise, + ACTIONS(11533), 1, + anon_sym_if, + ACTIONS(11535), 1, + anon_sym_while, + STATE(7442), 1, + sym__scon, + STATE(7443), 1, + sym_longvid, + STATE(7529), 1, + sym_vid, + STATE(13441), 1, + sym__exp, + STATE(18773), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5357), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1089), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [396276] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18828), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [396388] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(13023), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [396500] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18938), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [396612] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19124), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [396724] = 28, + ACTIONS(1607), 1, + sym_integer_scon, + ACTIONS(1611), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1613), 1, + sym__symbolic_ident, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1617), 1, + anon_sym_op, + ACTIONS(1619), 1, + anon_sym_LBRACE, + ACTIONS(1621), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1627), 1, + anon_sym_let, + ACTIONS(1629), 1, + anon_sym_u201c, + ACTIONS(1631), 1, + anon_sym_u2018, + ACTIONS(1633), 1, + anon_sym_BQUOTE, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + ACTIONS(11277), 1, + anon_sym_raise, + ACTIONS(11279), 1, + anon_sym_if, + ACTIONS(11281), 1, + anon_sym_while, + STATE(5457), 1, + sym__scon, + STATE(5458), 1, + sym_longvid, + STATE(5512), 1, + sym_vid, + STATE(12336), 1, + sym__exp, + STATE(19142), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1609), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(492), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [396836] = 28, + ACTIONS(1537), 1, + sym_integer_scon, + ACTIONS(1541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1543), 1, + sym__symbolic_ident, + ACTIONS(1545), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, + anon_sym_op, + ACTIONS(1549), 1, + anon_sym_LBRACE, + ACTIONS(1551), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1557), 1, + anon_sym_let, + ACTIONS(1559), 1, + anon_sym_u201c, + ACTIONS(1561), 1, + anon_sym_u2018, + ACTIONS(1563), 1, + anon_sym_BQUOTE, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + ACTIONS(11001), 1, + anon_sym_raise, + ACTIONS(11003), 1, + anon_sym_if, + ACTIONS(11005), 1, + anon_sym_while, + STATE(5677), 1, + sym_vid, + STATE(5751), 1, + sym__scon, + STATE(5752), 1, + sym_longvid, + STATE(12330), 1, + sym__exp, + STATE(19054), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(489), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [396948] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19257), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [397060] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18838), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [397172] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18989), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [397284] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19141), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [397396] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19198), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [397508] = 28, + ACTIONS(10829), 1, + sym_integer_scon, + ACTIONS(10833), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10835), 1, + sym__symbolic_ident, + ACTIONS(10837), 1, + anon_sym_LPAREN, + ACTIONS(10839), 1, + anon_sym_op, + ACTIONS(10841), 1, + anon_sym_LBRACE, + ACTIONS(10843), 1, + anon_sym_POUND, + ACTIONS(10845), 1, + anon_sym_LBRACK, + ACTIONS(10847), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10849), 1, + anon_sym_let, + ACTIONS(10851), 1, + anon_sym_raise, + ACTIONS(10853), 1, + anon_sym_if, + ACTIONS(10855), 1, + anon_sym_while, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(10861), 1, + anon_sym_u201c, + ACTIONS(10863), 1, + anon_sym_u2018, + ACTIONS(10865), 1, + anon_sym_BQUOTE, + STATE(9897), 1, + sym__scon, + STATE(9900), 1, + sym_longvid, + STATE(9905), 1, + sym_vid, + STATE(17236), 1, + sym__exp, + STATE(18913), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10831), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [397620] = 28, + ACTIONS(10829), 1, + sym_integer_scon, + ACTIONS(10833), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10835), 1, + sym__symbolic_ident, + ACTIONS(10837), 1, + anon_sym_LPAREN, + ACTIONS(10839), 1, + anon_sym_op, + ACTIONS(10841), 1, + anon_sym_LBRACE, + ACTIONS(10843), 1, + anon_sym_POUND, + ACTIONS(10845), 1, + anon_sym_LBRACK, + ACTIONS(10847), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10849), 1, + anon_sym_let, + ACTIONS(10851), 1, + anon_sym_raise, + ACTIONS(10853), 1, + anon_sym_if, + ACTIONS(10855), 1, + anon_sym_while, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(10861), 1, + anon_sym_u201c, + ACTIONS(10863), 1, + anon_sym_u2018, + ACTIONS(10865), 1, + anon_sym_BQUOTE, + STATE(9897), 1, + sym__scon, + STATE(9900), 1, + sym_longvid, + STATE(9905), 1, + sym_vid, + STATE(17340), 1, + sym__exp, + STATE(18913), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10831), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [397732] = 28, + ACTIONS(10829), 1, + sym_integer_scon, + ACTIONS(10833), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10835), 1, + sym__symbolic_ident, + ACTIONS(10837), 1, + anon_sym_LPAREN, + ACTIONS(10839), 1, + anon_sym_op, + ACTIONS(10841), 1, + anon_sym_LBRACE, + ACTIONS(10843), 1, + anon_sym_POUND, + ACTIONS(10845), 1, + anon_sym_LBRACK, + ACTIONS(10847), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10849), 1, + anon_sym_let, + ACTIONS(10851), 1, + anon_sym_raise, + ACTIONS(10853), 1, + anon_sym_if, + ACTIONS(10855), 1, + anon_sym_while, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(10861), 1, + anon_sym_u201c, + ACTIONS(10863), 1, + anon_sym_u2018, + ACTIONS(10865), 1, + anon_sym_BQUOTE, + STATE(9897), 1, + sym__scon, + STATE(9900), 1, + sym_longvid, + STATE(9905), 1, + sym_vid, + STATE(17374), 1, + sym__exp, + STATE(18913), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10831), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [397844] = 28, + ACTIONS(10829), 1, + sym_integer_scon, + ACTIONS(10833), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10835), 1, + sym__symbolic_ident, + ACTIONS(10837), 1, + anon_sym_LPAREN, + ACTIONS(10839), 1, + anon_sym_op, + ACTIONS(10841), 1, + anon_sym_LBRACE, + ACTIONS(10843), 1, + anon_sym_POUND, + ACTIONS(10845), 1, + anon_sym_LBRACK, + ACTIONS(10847), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10849), 1, + anon_sym_let, + ACTIONS(10851), 1, + anon_sym_raise, + ACTIONS(10853), 1, + anon_sym_if, + ACTIONS(10855), 1, + anon_sym_while, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(10861), 1, + anon_sym_u201c, + ACTIONS(10863), 1, + anon_sym_u2018, + ACTIONS(10865), 1, + anon_sym_BQUOTE, + STATE(9897), 1, + sym__scon, + STATE(9900), 1, + sym_longvid, + STATE(9905), 1, + sym_vid, + STATE(17298), 1, + sym__exp, + STATE(18913), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10831), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [397956] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19260), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [398068] = 28, + ACTIONS(10829), 1, + sym_integer_scon, + ACTIONS(10833), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10835), 1, + sym__symbolic_ident, + ACTIONS(10837), 1, + anon_sym_LPAREN, + ACTIONS(10839), 1, + anon_sym_op, + ACTIONS(10841), 1, + anon_sym_LBRACE, + ACTIONS(10843), 1, + anon_sym_POUND, + ACTIONS(10845), 1, + anon_sym_LBRACK, + ACTIONS(10847), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10849), 1, + anon_sym_let, + ACTIONS(10851), 1, + anon_sym_raise, + ACTIONS(10853), 1, + anon_sym_if, + ACTIONS(10855), 1, + anon_sym_while, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(10861), 1, + anon_sym_u201c, + ACTIONS(10863), 1, + anon_sym_u2018, + ACTIONS(10865), 1, + anon_sym_BQUOTE, + STATE(9897), 1, + sym__scon, + STATE(9900), 1, + sym_longvid, + STATE(9905), 1, + sym_vid, + STATE(17299), 1, + sym__exp, + STATE(18913), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10831), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4106), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [398180] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18955), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [398292] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19118), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [398404] = 28, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(11453), 1, + sym_integer_scon, + ACTIONS(11457), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11459), 1, + sym__symbolic_ident, + ACTIONS(11461), 1, + anon_sym_LPAREN, + ACTIONS(11463), 1, + anon_sym_op, + ACTIONS(11465), 1, + anon_sym_LBRACE, + ACTIONS(11467), 1, + anon_sym_POUND, + ACTIONS(11469), 1, + anon_sym_LBRACK, + ACTIONS(11471), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11473), 1, + anon_sym_let, + ACTIONS(11475), 1, + anon_sym_raise, + ACTIONS(11477), 1, + anon_sym_if, + ACTIONS(11479), 1, + anon_sym_while, + ACTIONS(11481), 1, + anon_sym_u201c, + ACTIONS(11483), 1, + anon_sym_u2018, + ACTIONS(11485), 1, + anon_sym_BQUOTE, + STATE(10380), 1, + sym__scon, + STATE(10464), 1, + sym_longvid, + STATE(10670), 1, + sym_vid, + STATE(17802), 1, + sym__exp, + STATE(18877), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11455), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4155), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [398516] = 28, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(11453), 1, + sym_integer_scon, + ACTIONS(11457), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11459), 1, + sym__symbolic_ident, + ACTIONS(11461), 1, + anon_sym_LPAREN, + ACTIONS(11463), 1, + anon_sym_op, + ACTIONS(11465), 1, + anon_sym_LBRACE, + ACTIONS(11467), 1, + anon_sym_POUND, + ACTIONS(11469), 1, + anon_sym_LBRACK, + ACTIONS(11471), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11473), 1, + anon_sym_let, + ACTIONS(11475), 1, + anon_sym_raise, + ACTIONS(11477), 1, + anon_sym_if, + ACTIONS(11479), 1, + anon_sym_while, + ACTIONS(11481), 1, + anon_sym_u201c, + ACTIONS(11483), 1, + anon_sym_u2018, + ACTIONS(11485), 1, + anon_sym_BQUOTE, + STATE(10380), 1, + sym__scon, + STATE(10464), 1, + sym_longvid, + STATE(10670), 1, + sym_vid, + STATE(17816), 1, + sym__exp, + STATE(18877), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11455), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4155), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [398628] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18717), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [398740] = 28, + ACTIONS(3225), 1, + sym_integer_scon, + ACTIONS(3229), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3231), 1, + sym__symbolic_ident, + ACTIONS(3233), 1, + anon_sym_LPAREN, + ACTIONS(3235), 1, + anon_sym_op, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + anon_sym_POUND, + ACTIONS(3241), 1, + anon_sym_LBRACK, + ACTIONS(3243), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3245), 1, + anon_sym_let, + ACTIONS(3247), 1, + anon_sym_u201c, + ACTIONS(3249), 1, + anon_sym_u2018, + ACTIONS(3251), 1, + anon_sym_BQUOTE, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + ACTIONS(11289), 1, + anon_sym_raise, + ACTIONS(11291), 1, + anon_sym_if, + ACTIONS(11293), 1, + anon_sym_while, + STATE(6912), 1, + sym_vid, + STATE(7284), 1, + sym__scon, + STATE(7286), 1, + sym_longvid, + STATE(13201), 1, + sym__exp, + STATE(18725), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3227), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [398852] = 28, + ACTIONS(1607), 1, + sym_integer_scon, + ACTIONS(1611), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1613), 1, + sym__symbolic_ident, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1617), 1, + anon_sym_op, + ACTIONS(1619), 1, + anon_sym_LBRACE, + ACTIONS(1621), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1627), 1, + anon_sym_let, + ACTIONS(1629), 1, + anon_sym_u201c, + ACTIONS(1631), 1, + anon_sym_u2018, + ACTIONS(1633), 1, + anon_sym_BQUOTE, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + ACTIONS(11277), 1, + anon_sym_raise, + ACTIONS(11279), 1, + anon_sym_if, + ACTIONS(11281), 1, + anon_sym_while, + STATE(5457), 1, + sym__scon, + STATE(5458), 1, + sym_longvid, + STATE(5512), 1, + sym_vid, + STATE(12333), 1, + sym__exp, + STATE(19142), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1609), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(492), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [398964] = 28, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(11453), 1, + sym_integer_scon, + ACTIONS(11457), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11459), 1, + sym__symbolic_ident, + ACTIONS(11461), 1, + anon_sym_LPAREN, + ACTIONS(11463), 1, + anon_sym_op, + ACTIONS(11465), 1, + anon_sym_LBRACE, + ACTIONS(11467), 1, + anon_sym_POUND, + ACTIONS(11469), 1, + anon_sym_LBRACK, + ACTIONS(11471), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11473), 1, + anon_sym_let, + ACTIONS(11475), 1, + anon_sym_raise, + ACTIONS(11477), 1, + anon_sym_if, + ACTIONS(11479), 1, + anon_sym_while, + ACTIONS(11481), 1, + anon_sym_u201c, + ACTIONS(11483), 1, + anon_sym_u2018, + ACTIONS(11485), 1, + anon_sym_BQUOTE, + STATE(10380), 1, + sym__scon, + STATE(10464), 1, + sym_longvid, + STATE(10670), 1, + sym_vid, + STATE(17820), 1, + sym__exp, + STATE(18877), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11455), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4155), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [399076] = 28, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(11453), 1, + sym_integer_scon, + ACTIONS(11457), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11459), 1, + sym__symbolic_ident, + ACTIONS(11461), 1, + anon_sym_LPAREN, + ACTIONS(11463), 1, + anon_sym_op, + ACTIONS(11465), 1, + anon_sym_LBRACE, + ACTIONS(11467), 1, + anon_sym_POUND, + ACTIONS(11469), 1, + anon_sym_LBRACK, + ACTIONS(11471), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11473), 1, + anon_sym_let, + ACTIONS(11475), 1, + anon_sym_raise, + ACTIONS(11477), 1, + anon_sym_if, + ACTIONS(11479), 1, + anon_sym_while, + ACTIONS(11481), 1, + anon_sym_u201c, + ACTIONS(11483), 1, + anon_sym_u2018, + ACTIONS(11485), 1, + anon_sym_BQUOTE, + STATE(10380), 1, + sym__scon, + STATE(10464), 1, + sym_longvid, + STATE(10670), 1, + sym_vid, + STATE(17823), 1, + sym__exp, + STATE(18877), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11455), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4155), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [399188] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18990), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [399300] = 28, + ACTIONS(10857), 1, + anon_sym_case, + ACTIONS(10859), 1, + anon_sym_fn, + ACTIONS(11453), 1, + sym_integer_scon, + ACTIONS(11457), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11459), 1, + sym__symbolic_ident, + ACTIONS(11461), 1, + anon_sym_LPAREN, + ACTIONS(11463), 1, + anon_sym_op, + ACTIONS(11465), 1, + anon_sym_LBRACE, + ACTIONS(11467), 1, + anon_sym_POUND, + ACTIONS(11469), 1, + anon_sym_LBRACK, + ACTIONS(11471), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11473), 1, + anon_sym_let, + ACTIONS(11475), 1, + anon_sym_raise, + ACTIONS(11477), 1, + anon_sym_if, + ACTIONS(11479), 1, + anon_sym_while, + ACTIONS(11481), 1, + anon_sym_u201c, + ACTIONS(11483), 1, + anon_sym_u2018, + ACTIONS(11485), 1, + anon_sym_BQUOTE, + STATE(10380), 1, + sym__scon, + STATE(10464), 1, + sym_longvid, + STATE(10670), 1, + sym_vid, + STATE(17825), 1, + sym__exp, + STATE(18877), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11455), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4155), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [399412] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18771), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [399524] = 28, + ACTIONS(8899), 1, + sym_integer_scon, + ACTIONS(8903), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8905), 1, + sym__symbolic_ident, + ACTIONS(8907), 1, + anon_sym_LPAREN, + ACTIONS(8909), 1, + anon_sym_op, + ACTIONS(8911), 1, + anon_sym_LBRACE, + ACTIONS(8913), 1, + anon_sym_POUND, + ACTIONS(8915), 1, + anon_sym_LBRACK, + ACTIONS(8917), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8919), 1, + anon_sym_let, + ACTIONS(8921), 1, + anon_sym_u201c, + ACTIONS(8923), 1, + anon_sym_u2018, + ACTIONS(8925), 1, + anon_sym_BQUOTE, + ACTIONS(10623), 1, + anon_sym_case, + ACTIONS(10625), 1, + anon_sym_fn, + ACTIONS(10929), 1, + anon_sym_raise, + ACTIONS(10931), 1, + anon_sym_if, + ACTIONS(10933), 1, + anon_sym_while, + STATE(8237), 1, + sym__scon, + STATE(8239), 1, + sym_longvid, + STATE(8264), 1, + sym_vid, + STATE(13606), 1, + sym__exp, + STATE(18720), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8901), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(2511), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [399636] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19024), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [399748] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19229), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [399860] = 28, + ACTIONS(1117), 1, + sym_integer_scon, + ACTIONS(1121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1123), 1, + sym__symbolic_ident, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1127), 1, + anon_sym_op, + ACTIONS(1129), 1, + anon_sym_LBRACE, + ACTIONS(1131), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + anon_sym_LBRACK, + ACTIONS(1135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1137), 1, + anon_sym_let, + ACTIONS(1139), 1, + anon_sym_u201c, + ACTIONS(1141), 1, + anon_sym_u2018, + ACTIONS(1143), 1, + anon_sym_BQUOTE, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + ACTIONS(10917), 1, + anon_sym_raise, + ACTIONS(10919), 1, + anon_sym_if, + ACTIONS(10921), 1, + anon_sym_while, + STATE(4281), 1, + sym_vid, + STATE(4303), 1, + sym__scon, + STATE(4304), 1, + sym_longvid, + STATE(9416), 1, + sym__exp, + STATE(19088), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(471), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [399972] = 28, + ACTIONS(1117), 1, + sym_integer_scon, + ACTIONS(1121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1123), 1, + sym__symbolic_ident, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1127), 1, + anon_sym_op, + ACTIONS(1129), 1, + anon_sym_LBRACE, + ACTIONS(1131), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + anon_sym_LBRACK, + ACTIONS(1135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1137), 1, + anon_sym_let, + ACTIONS(1139), 1, + anon_sym_u201c, + ACTIONS(1141), 1, + anon_sym_u2018, + ACTIONS(1143), 1, + anon_sym_BQUOTE, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + ACTIONS(10917), 1, + anon_sym_raise, + ACTIONS(10919), 1, + anon_sym_if, + ACTIONS(10921), 1, + anon_sym_while, + STATE(4281), 1, + sym_vid, + STATE(4303), 1, + sym__scon, + STATE(4304), 1, + sym_longvid, + STATE(9210), 1, + sym__exp, + STATE(19088), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(471), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [400084] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19000), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [400196] = 28, + ACTIONS(1117), 1, + sym_integer_scon, + ACTIONS(1121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1123), 1, + sym__symbolic_ident, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1127), 1, + anon_sym_op, + ACTIONS(1129), 1, + anon_sym_LBRACE, + ACTIONS(1131), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + anon_sym_LBRACK, + ACTIONS(1135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1137), 1, + anon_sym_let, + ACTIONS(1139), 1, + anon_sym_u201c, + ACTIONS(1141), 1, + anon_sym_u2018, + ACTIONS(1143), 1, + anon_sym_BQUOTE, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + ACTIONS(10917), 1, + anon_sym_raise, + ACTIONS(10919), 1, + anon_sym_if, + ACTIONS(10921), 1, + anon_sym_while, + STATE(4281), 1, + sym_vid, + STATE(4303), 1, + sym__scon, + STATE(4304), 1, + sym_longvid, + STATE(9395), 1, + sym__exp, + STATE(19088), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(471), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [400308] = 28, + ACTIONS(1117), 1, + sym_integer_scon, + ACTIONS(1121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1123), 1, + sym__symbolic_ident, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1127), 1, + anon_sym_op, + ACTIONS(1129), 1, + anon_sym_LBRACE, + ACTIONS(1131), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + anon_sym_LBRACK, + ACTIONS(1135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1137), 1, + anon_sym_let, + ACTIONS(1139), 1, + anon_sym_u201c, + ACTIONS(1141), 1, + anon_sym_u2018, + ACTIONS(1143), 1, + anon_sym_BQUOTE, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + ACTIONS(10917), 1, + anon_sym_raise, + ACTIONS(10919), 1, + anon_sym_if, + ACTIONS(10921), 1, + anon_sym_while, + STATE(4281), 1, + sym_vid, + STATE(4303), 1, + sym__scon, + STATE(4304), 1, + sym_longvid, + STATE(9396), 1, + sym__exp, + STATE(19088), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(471), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [400420] = 28, + ACTIONS(1117), 1, + sym_integer_scon, + ACTIONS(1121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1123), 1, + sym__symbolic_ident, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1127), 1, + anon_sym_op, + ACTIONS(1129), 1, + anon_sym_LBRACE, + ACTIONS(1131), 1, + anon_sym_POUND, + ACTIONS(1133), 1, + anon_sym_LBRACK, + ACTIONS(1135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1137), 1, + anon_sym_let, + ACTIONS(1139), 1, + anon_sym_u201c, + ACTIONS(1141), 1, + anon_sym_u2018, + ACTIONS(1143), 1, + anon_sym_BQUOTE, + ACTIONS(10781), 1, + anon_sym_case, + ACTIONS(10783), 1, + anon_sym_fn, + ACTIONS(10917), 1, + anon_sym_raise, + ACTIONS(10919), 1, + anon_sym_if, + ACTIONS(10921), 1, + anon_sym_while, + STATE(4281), 1, + sym_vid, + STATE(4303), 1, + sym__scon, + STATE(4304), 1, + sym_longvid, + STATE(9397), 1, + sym__exp, + STATE(19088), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(471), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [400532] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19154), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [400644] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18850), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [400756] = 28, + ACTIONS(1257), 1, + sym_integer_scon, + ACTIONS(1261), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1263), 1, + sym__symbolic_ident, + ACTIONS(1265), 1, + anon_sym_LPAREN, + ACTIONS(1267), 1, + anon_sym_op, + ACTIONS(1269), 1, + anon_sym_LBRACE, + ACTIONS(1271), 1, + anon_sym_POUND, + ACTIONS(1273), 1, + anon_sym_LBRACK, + ACTIONS(1275), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1277), 1, + anon_sym_let, + ACTIONS(1279), 1, + anon_sym_u201c, + ACTIONS(1281), 1, + anon_sym_u2018, + ACTIONS(1283), 1, + anon_sym_BQUOTE, + ACTIONS(10253), 1, + anon_sym_case, + ACTIONS(10255), 1, + anon_sym_fn, + ACTIONS(10443), 1, + anon_sym_raise, + ACTIONS(10445), 1, + anon_sym_if, + ACTIONS(10447), 1, + anon_sym_while, + STATE(5015), 1, + sym_vid, + STATE(5082), 1, + sym__scon, + STATE(5095), 1, + sym_longvid, + STATE(9504), 1, + sym__exp, + STATE(19100), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1259), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(477), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [400868] = 28, + ACTIONS(1327), 1, + sym_integer_scon, + ACTIONS(1331), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1333), 1, + sym__symbolic_ident, + ACTIONS(1335), 1, + anon_sym_LPAREN, + ACTIONS(1337), 1, + anon_sym_op, + ACTIONS(1339), 1, + anon_sym_LBRACE, + ACTIONS(1341), 1, + anon_sym_POUND, + ACTIONS(1343), 1, + anon_sym_LBRACK, + ACTIONS(1345), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1347), 1, + anon_sym_let, + ACTIONS(1349), 1, + anon_sym_u201c, + ACTIONS(1351), 1, + anon_sym_u2018, + ACTIONS(1353), 1, + anon_sym_BQUOTE, + ACTIONS(10717), 1, + anon_sym_case, + ACTIONS(10719), 1, + anon_sym_fn, + ACTIONS(11265), 1, + anon_sym_raise, + ACTIONS(11267), 1, + anon_sym_if, + ACTIONS(11269), 1, + anon_sym_while, + STATE(4944), 1, + sym_vid, + STATE(5123), 1, + sym__scon, + STATE(5127), 1, + sym_longvid, + STATE(9977), 1, + sym__exp, + STATE(19209), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1329), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(480), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [400980] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19169), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [401092] = 28, + ACTIONS(1397), 1, + sym_integer_scon, + ACTIONS(1401), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1403), 1, + sym__symbolic_ident, + ACTIONS(1405), 1, + anon_sym_LPAREN, + ACTIONS(1407), 1, + anon_sym_op, + ACTIONS(1409), 1, + anon_sym_LBRACE, + ACTIONS(1411), 1, + anon_sym_POUND, + ACTIONS(1413), 1, + anon_sym_LBRACK, + ACTIONS(1415), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1417), 1, + anon_sym_let, + ACTIONS(1419), 1, + anon_sym_u201c, + ACTIONS(1421), 1, + anon_sym_u2018, + ACTIONS(1423), 1, + anon_sym_BQUOTE, + ACTIONS(10653), 1, + anon_sym_case, + ACTIONS(10655), 1, + anon_sym_fn, + ACTIONS(11283), 1, + anon_sym_raise, + ACTIONS(11285), 1, + anon_sym_if, + ACTIONS(11287), 1, + anon_sym_while, + STATE(4954), 1, + sym_vid, + STATE(4983), 1, + sym__scon, + STATE(4984), 1, + sym_longvid, + STATE(9960), 1, + sym__exp, + STATE(18872), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1399), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(483), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [401204] = 28, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(11345), 1, + sym_integer_scon, + ACTIONS(11349), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11351), 1, + sym__symbolic_ident, + ACTIONS(11353), 1, + anon_sym_LPAREN, + ACTIONS(11355), 1, + anon_sym_op, + ACTIONS(11357), 1, + anon_sym_LBRACE, + ACTIONS(11359), 1, + anon_sym_POUND, + ACTIONS(11361), 1, + anon_sym_LBRACK, + ACTIONS(11363), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11365), 1, + anon_sym_let, + ACTIONS(11367), 1, + anon_sym_raise, + ACTIONS(11369), 1, + anon_sym_if, + ACTIONS(11371), 1, + anon_sym_while, + ACTIONS(11373), 1, + anon_sym_u201c, + ACTIONS(11375), 1, + anon_sym_u2018, + ACTIONS(11377), 1, + anon_sym_BQUOTE, + STATE(9225), 1, + sym_vid, + STATE(9404), 1, + sym__scon, + STATE(9412), 1, + sym_longvid, + STATE(16449), 1, + sym__exp, + STATE(18753), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11347), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4093), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [401316] = 28, + ACTIONS(1915), 1, + sym_integer_scon, + ACTIONS(1919), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1921), 1, + sym__symbolic_ident, + ACTIONS(1923), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_op, + ACTIONS(1927), 1, + anon_sym_LBRACE, + ACTIONS(1929), 1, + anon_sym_POUND, + ACTIONS(1931), 1, + anon_sym_LBRACK, + ACTIONS(1933), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1935), 1, + anon_sym_let, + ACTIONS(1937), 1, + anon_sym_u201c, + ACTIONS(1939), 1, + anon_sym_u2018, + ACTIONS(1941), 1, + anon_sym_BQUOTE, + ACTIONS(10233), 1, + anon_sym_case, + ACTIONS(10235), 1, + anon_sym_fn, + ACTIONS(10257), 1, + anon_sym_raise, + ACTIONS(10259), 1, + anon_sym_if, + ACTIONS(10261), 1, + anon_sym_while, + STATE(5857), 1, + sym__scon, + STATE(5862), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(12739), 1, + sym__exp, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1917), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(504), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [401428] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19211), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [401540] = 28, + ACTIONS(5355), 1, + sym_integer_scon, + ACTIONS(5359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5361), 1, + sym__symbolic_ident, + ACTIONS(5363), 1, + anon_sym_LPAREN, + ACTIONS(5365), 1, + anon_sym_op, + ACTIONS(5367), 1, + anon_sym_LBRACE, + ACTIONS(5369), 1, + anon_sym_POUND, + ACTIONS(5371), 1, + anon_sym_LBRACK, + ACTIONS(5373), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5375), 1, + anon_sym_let, + ACTIONS(5377), 1, + anon_sym_u201c, + ACTIONS(5379), 1, + anon_sym_u2018, + ACTIONS(5381), 1, + anon_sym_BQUOTE, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + ACTIONS(11531), 1, + anon_sym_raise, + ACTIONS(11533), 1, + anon_sym_if, + ACTIONS(11535), 1, + anon_sym_while, + STATE(7442), 1, + sym__scon, + STATE(7443), 1, + sym_longvid, + STATE(7529), 1, + sym_vid, + STATE(13353), 1, + sym__exp, + STATE(18773), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5357), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1089), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [401652] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18840), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [401764] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18946), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [401876] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13084), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [401988] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18860), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [402100] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19129), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [402212] = 28, + ACTIONS(3437), 1, + sym_integer_scon, + ACTIONS(3441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3443), 1, + sym__symbolic_ident, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_op, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_POUND, + ACTIONS(3453), 1, + anon_sym_LBRACK, + ACTIONS(3455), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3457), 1, + anon_sym_let, + ACTIONS(3459), 1, + anon_sym_u201c, + ACTIONS(3461), 1, + anon_sym_u2018, + ACTIONS(3463), 1, + anon_sym_BQUOTE, + ACTIONS(10945), 1, + anon_sym_raise, + ACTIONS(10947), 1, + anon_sym_if, + ACTIONS(10949), 1, + anon_sym_while, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + STATE(6895), 1, + sym__scon, + STATE(6896), 1, + sym_longvid, + STATE(7063), 1, + sym_vid, + STATE(13140), 1, + sym__exp, + STATE(19215), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3439), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(571), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [402324] = 28, + ACTIONS(3437), 1, + sym_integer_scon, + ACTIONS(3441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3443), 1, + sym__symbolic_ident, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_op, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_POUND, + ACTIONS(3453), 1, + anon_sym_LBRACK, + ACTIONS(3455), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3457), 1, + anon_sym_let, + ACTIONS(3459), 1, + anon_sym_u201c, + ACTIONS(3461), 1, + anon_sym_u2018, + ACTIONS(3463), 1, + anon_sym_BQUOTE, + ACTIONS(10945), 1, + anon_sym_raise, + ACTIONS(10947), 1, + anon_sym_if, + ACTIONS(10949), 1, + anon_sym_while, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + STATE(6895), 1, + sym__scon, + STATE(6896), 1, + sym_longvid, + STATE(7063), 1, + sym_vid, + STATE(13141), 1, + sym__exp, + STATE(19215), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3439), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(571), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [402436] = 28, + ACTIONS(3437), 1, + sym_integer_scon, + ACTIONS(3441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3443), 1, + sym__symbolic_ident, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_op, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_POUND, + ACTIONS(3453), 1, + anon_sym_LBRACK, + ACTIONS(3455), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3457), 1, + anon_sym_let, + ACTIONS(3459), 1, + anon_sym_u201c, + ACTIONS(3461), 1, + anon_sym_u2018, + ACTIONS(3463), 1, + anon_sym_BQUOTE, + ACTIONS(10945), 1, + anon_sym_raise, + ACTIONS(10947), 1, + anon_sym_if, + ACTIONS(10949), 1, + anon_sym_while, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + STATE(6895), 1, + sym__scon, + STATE(6896), 1, + sym_longvid, + STATE(7063), 1, + sym_vid, + STATE(13285), 1, + sym__exp, + STATE(19215), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3439), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(571), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [402548] = 28, + ACTIONS(3437), 1, + sym_integer_scon, + ACTIONS(3441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3443), 1, + sym__symbolic_ident, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_op, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_POUND, + ACTIONS(3453), 1, + anon_sym_LBRACK, + ACTIONS(3455), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3457), 1, + anon_sym_let, + ACTIONS(3459), 1, + anon_sym_u201c, + ACTIONS(3461), 1, + anon_sym_u2018, + ACTIONS(3463), 1, + anon_sym_BQUOTE, + ACTIONS(10945), 1, + anon_sym_raise, + ACTIONS(10947), 1, + anon_sym_if, + ACTIONS(10949), 1, + anon_sym_while, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + STATE(6895), 1, + sym__scon, + STATE(6896), 1, + sym_longvid, + STATE(7063), 1, + sym_vid, + STATE(13116), 1, + sym__exp, + STATE(19215), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3439), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(571), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [402660] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19044), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [402772] = 28, + ACTIONS(3437), 1, + sym_integer_scon, + ACTIONS(3441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3443), 1, + sym__symbolic_ident, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_op, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_POUND, + ACTIONS(3453), 1, + anon_sym_LBRACK, + ACTIONS(3455), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3457), 1, + anon_sym_let, + ACTIONS(3459), 1, + anon_sym_u201c, + ACTIONS(3461), 1, + anon_sym_u2018, + ACTIONS(3463), 1, + anon_sym_BQUOTE, + ACTIONS(10945), 1, + anon_sym_raise, + ACTIONS(10947), 1, + anon_sym_if, + ACTIONS(10949), 1, + anon_sym_while, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + STATE(6895), 1, + sym__scon, + STATE(6896), 1, + sym_longvid, + STATE(7063), 1, + sym_vid, + STATE(13117), 1, + sym__exp, + STATE(19215), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3439), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(571), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [402884] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18858), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [402996] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13085), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [403108] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13086), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [403220] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19121), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [403332] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13100), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [403444] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18848), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [403556] = 28, + ACTIONS(10389), 1, + sym_integer_scon, + ACTIONS(10393), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10395), 1, + sym__symbolic_ident, + ACTIONS(10397), 1, + anon_sym_LPAREN, + ACTIONS(10399), 1, + anon_sym_op, + ACTIONS(10401), 1, + anon_sym_LBRACE, + ACTIONS(10403), 1, + anon_sym_POUND, + ACTIONS(10405), 1, + anon_sym_LBRACK, + ACTIONS(10407), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10409), 1, + anon_sym_let, + ACTIONS(10411), 1, + anon_sym_raise, + ACTIONS(10413), 1, + anon_sym_if, + ACTIONS(10415), 1, + anon_sym_while, + ACTIONS(10417), 1, + anon_sym_case, + ACTIONS(10419), 1, + anon_sym_fn, + ACTIONS(10421), 1, + anon_sym_u201c, + ACTIONS(10423), 1, + anon_sym_u2018, + ACTIONS(10425), 1, + anon_sym_BQUOTE, + STATE(8871), 1, + sym__scon, + STATE(8892), 1, + sym_vid, + STATE(8909), 1, + sym_longvid, + STATE(15330), 1, + sym__exp, + STATE(19240), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10391), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4081), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [403668] = 28, + ACTIONS(10459), 1, + sym_integer_scon, + ACTIONS(10463), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10465), 1, + sym__symbolic_ident, + ACTIONS(10467), 1, + anon_sym_LPAREN, + ACTIONS(10469), 1, + anon_sym_op, + ACTIONS(10471), 1, + anon_sym_LBRACE, + ACTIONS(10473), 1, + anon_sym_POUND, + ACTIONS(10475), 1, + anon_sym_LBRACK, + ACTIONS(10477), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10479), 1, + anon_sym_let, + ACTIONS(10481), 1, + anon_sym_raise, + ACTIONS(10483), 1, + anon_sym_if, + ACTIONS(10485), 1, + anon_sym_while, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(10491), 1, + anon_sym_u201c, + ACTIONS(10493), 1, + anon_sym_u2018, + ACTIONS(10495), 1, + anon_sym_BQUOTE, + STATE(9534), 1, + sym_vid, + STATE(9568), 1, + sym__scon, + STATE(9570), 1, + sym_longvid, + STATE(17344), 1, + sym__exp, + STATE(18883), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10461), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4123), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [403780] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19079), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [403892] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13107), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [404004] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13114), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [404116] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13147), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [404228] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18834), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [404340] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13148), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [404452] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13165), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [404564] = 28, + ACTIONS(3687), 1, + sym_integer_scon, + ACTIONS(3691), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3693), 1, + sym__symbolic_ident, + ACTIONS(3695), 1, + anon_sym_LPAREN, + ACTIONS(3697), 1, + anon_sym_op, + ACTIONS(3699), 1, + anon_sym_LBRACE, + ACTIONS(3701), 1, + anon_sym_POUND, + ACTIONS(3703), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3707), 1, + anon_sym_let, + ACTIONS(3709), 1, + anon_sym_u201c, + ACTIONS(3711), 1, + anon_sym_u2018, + ACTIONS(3713), 1, + anon_sym_BQUOTE, + ACTIONS(10637), 1, + anon_sym_raise, + ACTIONS(10639), 1, + anon_sym_if, + ACTIONS(10641), 1, + anon_sym_while, + ACTIONS(10643), 1, + anon_sym_case, + ACTIONS(10645), 1, + anon_sym_fn, + STATE(7127), 1, + sym__scon, + STATE(7128), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(13170), 1, + sym__exp, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3689), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(594), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [404676] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19020), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [404788] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19186), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [404900] = 28, + ACTIONS(3507), 1, + sym_integer_scon, + ACTIONS(3511), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3513), 1, + sym__symbolic_ident, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_op, + ACTIONS(3519), 1, + anon_sym_LBRACE, + ACTIONS(3521), 1, + anon_sym_POUND, + ACTIONS(3523), 1, + anon_sym_LBRACK, + ACTIONS(3525), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3527), 1, + anon_sym_let, + ACTIONS(3529), 1, + anon_sym_u201c, + ACTIONS(3531), 1, + anon_sym_u2018, + ACTIONS(3533), 1, + anon_sym_BQUOTE, + ACTIONS(10633), 1, + anon_sym_case, + ACTIONS(10635), 1, + anon_sym_fn, + ACTIONS(10955), 1, + anon_sym_raise, + ACTIONS(10957), 1, + anon_sym_if, + ACTIONS(10959), 1, + anon_sym_while, + STATE(6951), 1, + sym__scon, + STATE(6952), 1, + sym_longvid, + STATE(7068), 1, + sym_vid, + STATE(13149), 1, + sym__exp, + STATE(18811), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3509), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(574), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [405012] = 28, + ACTIONS(3507), 1, + sym_integer_scon, + ACTIONS(3511), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3513), 1, + sym__symbolic_ident, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_op, + ACTIONS(3519), 1, + anon_sym_LBRACE, + ACTIONS(3521), 1, + anon_sym_POUND, + ACTIONS(3523), 1, + anon_sym_LBRACK, + ACTIONS(3525), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3527), 1, + anon_sym_let, + ACTIONS(3529), 1, + anon_sym_u201c, + ACTIONS(3531), 1, + anon_sym_u2018, + ACTIONS(3533), 1, + anon_sym_BQUOTE, + ACTIONS(10633), 1, + anon_sym_case, + ACTIONS(10635), 1, + anon_sym_fn, + ACTIONS(10955), 1, + anon_sym_raise, + ACTIONS(10957), 1, + anon_sym_if, + ACTIONS(10959), 1, + anon_sym_while, + STATE(6951), 1, + sym__scon, + STATE(6952), 1, + sym_longvid, + STATE(7068), 1, + sym_vid, + STATE(13157), 1, + sym__exp, + STATE(18811), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3509), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(574), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [405124] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18809), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [405236] = 28, + ACTIONS(3507), 1, + sym_integer_scon, + ACTIONS(3511), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3513), 1, + sym__symbolic_ident, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_op, + ACTIONS(3519), 1, + anon_sym_LBRACE, + ACTIONS(3521), 1, + anon_sym_POUND, + ACTIONS(3523), 1, + anon_sym_LBRACK, + ACTIONS(3525), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3527), 1, + anon_sym_let, + ACTIONS(3529), 1, + anon_sym_u201c, + ACTIONS(3531), 1, + anon_sym_u2018, + ACTIONS(3533), 1, + anon_sym_BQUOTE, + ACTIONS(10633), 1, + anon_sym_case, + ACTIONS(10635), 1, + anon_sym_fn, + ACTIONS(10955), 1, + anon_sym_raise, + ACTIONS(10957), 1, + anon_sym_if, + ACTIONS(10959), 1, + anon_sym_while, + STATE(6951), 1, + sym__scon, + STATE(6952), 1, + sym_longvid, + STATE(7068), 1, + sym_vid, + STATE(13297), 1, + sym__exp, + STATE(18811), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3509), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(574), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [405348] = 28, + ACTIONS(3507), 1, + sym_integer_scon, + ACTIONS(3511), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3513), 1, + sym__symbolic_ident, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_op, + ACTIONS(3519), 1, + anon_sym_LBRACE, + ACTIONS(3521), 1, + anon_sym_POUND, + ACTIONS(3523), 1, + anon_sym_LBRACK, + ACTIONS(3525), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3527), 1, + anon_sym_let, + ACTIONS(3529), 1, + anon_sym_u201c, + ACTIONS(3531), 1, + anon_sym_u2018, + ACTIONS(3533), 1, + anon_sym_BQUOTE, + ACTIONS(10633), 1, + anon_sym_case, + ACTIONS(10635), 1, + anon_sym_fn, + ACTIONS(10955), 1, + anon_sym_raise, + ACTIONS(10957), 1, + anon_sym_if, + ACTIONS(10959), 1, + anon_sym_while, + STATE(6951), 1, + sym__scon, + STATE(6952), 1, + sym_longvid, + STATE(7068), 1, + sym_vid, + STATE(13134), 1, + sym__exp, + STATE(18811), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3509), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(574), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [405460] = 28, + ACTIONS(3507), 1, + sym_integer_scon, + ACTIONS(3511), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3513), 1, + sym__symbolic_ident, + ACTIONS(3515), 1, + anon_sym_LPAREN, + ACTIONS(3517), 1, + anon_sym_op, + ACTIONS(3519), 1, + anon_sym_LBRACE, + ACTIONS(3521), 1, + anon_sym_POUND, + ACTIONS(3523), 1, + anon_sym_LBRACK, + ACTIONS(3525), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3527), 1, + anon_sym_let, + ACTIONS(3529), 1, + anon_sym_u201c, + ACTIONS(3531), 1, + anon_sym_u2018, + ACTIONS(3533), 1, + anon_sym_BQUOTE, + ACTIONS(10633), 1, + anon_sym_case, + ACTIONS(10635), 1, + anon_sym_fn, + ACTIONS(10955), 1, + anon_sym_raise, + ACTIONS(10957), 1, + anon_sym_if, + ACTIONS(10959), 1, + anon_sym_while, + STATE(6951), 1, + sym__scon, + STATE(6952), 1, + sym_longvid, + STATE(7068), 1, + sym_vid, + STATE(13135), 1, + sym__exp, + STATE(18811), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3509), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(574), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [405572] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19037), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [405684] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19191), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [405796] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18820), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [405908] = 28, + ACTIONS(3365), 1, + sym_integer_scon, + ACTIONS(3369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3371), 1, + sym__symbolic_ident, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_op, + ACTIONS(3377), 1, + anon_sym_LBRACE, + ACTIONS(3379), 1, + anon_sym_POUND, + ACTIONS(3381), 1, + anon_sym_LBRACK, + ACTIONS(3383), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3385), 1, + anon_sym_let, + ACTIONS(3387), 1, + anon_sym_u201c, + ACTIONS(3389), 1, + anon_sym_u2018, + ACTIONS(3391), 1, + anon_sym_BQUOTE, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + ACTIONS(11413), 1, + anon_sym_raise, + ACTIONS(11415), 1, + anon_sym_if, + ACTIONS(11417), 1, + anon_sym_while, + STATE(6904), 1, + sym__scon, + STATE(6937), 1, + sym_longvid, + STATE(7314), 1, + sym_vid, + STATE(13229), 1, + sym__exp, + STATE(19107), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3367), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(567), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [406020] = 28, + ACTIONS(10579), 1, + sym_integer_scon, + ACTIONS(10583), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10585), 1, + sym__symbolic_ident, + ACTIONS(10587), 1, + anon_sym_LPAREN, + ACTIONS(10589), 1, + anon_sym_op, + ACTIONS(10591), 1, + anon_sym_LBRACE, + ACTIONS(10593), 1, + anon_sym_POUND, + ACTIONS(10595), 1, + anon_sym_LBRACK, + ACTIONS(10597), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10599), 1, + anon_sym_let, + ACTIONS(10601), 1, + anon_sym_raise, + ACTIONS(10603), 1, + anon_sym_if, + ACTIONS(10605), 1, + anon_sym_while, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(10611), 1, + anon_sym_u201c, + ACTIONS(10613), 1, + anon_sym_u2018, + ACTIONS(10615), 1, + anon_sym_BQUOTE, + STATE(9540), 1, + sym_vid, + STATE(9630), 1, + sym__scon, + STATE(9632), 1, + sym_longvid, + STATE(17352), 1, + sym__exp, + STATE(18975), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10581), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4122), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [406132] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18982), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [406244] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19143), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [406356] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18711), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [406468] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18824), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [406580] = 28, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(11493), 1, + sym_integer_scon, + ACTIONS(11497), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11499), 1, + sym__symbolic_ident, + ACTIONS(11501), 1, + anon_sym_LPAREN, + ACTIONS(11503), 1, + anon_sym_op, + ACTIONS(11505), 1, + anon_sym_LBRACE, + ACTIONS(11507), 1, + anon_sym_POUND, + ACTIONS(11509), 1, + anon_sym_LBRACK, + ACTIONS(11511), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11513), 1, + anon_sym_let, + ACTIONS(11515), 1, + anon_sym_raise, + ACTIONS(11517), 1, + anon_sym_if, + ACTIONS(11519), 1, + anon_sym_while, + ACTIONS(11521), 1, + anon_sym_u201c, + ACTIONS(11523), 1, + anon_sym_u2018, + ACTIONS(11525), 1, + anon_sym_BQUOTE, + STATE(10475), 1, + sym__scon, + STATE(10498), 1, + sym_longvid, + STATE(10787), 1, + sym_vid, + STATE(17863), 1, + sym__exp, + STATE(19019), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11495), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4151), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [406692] = 28, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(11493), 1, + sym_integer_scon, + ACTIONS(11497), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11499), 1, + sym__symbolic_ident, + ACTIONS(11501), 1, + anon_sym_LPAREN, + ACTIONS(11503), 1, + anon_sym_op, + ACTIONS(11505), 1, + anon_sym_LBRACE, + ACTIONS(11507), 1, + anon_sym_POUND, + ACTIONS(11509), 1, + anon_sym_LBRACK, + ACTIONS(11511), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11513), 1, + anon_sym_let, + ACTIONS(11515), 1, + anon_sym_raise, + ACTIONS(11517), 1, + anon_sym_if, + ACTIONS(11519), 1, + anon_sym_while, + ACTIONS(11521), 1, + anon_sym_u201c, + ACTIONS(11523), 1, + anon_sym_u2018, + ACTIONS(11525), 1, + anon_sym_BQUOTE, + STATE(10475), 1, + sym__scon, + STATE(10498), 1, + sym_longvid, + STATE(10787), 1, + sym_vid, + STATE(17791), 1, + sym__exp, + STATE(19019), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11495), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4151), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [406804] = 28, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(11493), 1, + sym_integer_scon, + ACTIONS(11497), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11499), 1, + sym__symbolic_ident, + ACTIONS(11501), 1, + anon_sym_LPAREN, + ACTIONS(11503), 1, + anon_sym_op, + ACTIONS(11505), 1, + anon_sym_LBRACE, + ACTIONS(11507), 1, + anon_sym_POUND, + ACTIONS(11509), 1, + anon_sym_LBRACK, + ACTIONS(11511), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11513), 1, + anon_sym_let, + ACTIONS(11515), 1, + anon_sym_raise, + ACTIONS(11517), 1, + anon_sym_if, + ACTIONS(11519), 1, + anon_sym_while, + ACTIONS(11521), 1, + anon_sym_u201c, + ACTIONS(11523), 1, + anon_sym_u2018, + ACTIONS(11525), 1, + anon_sym_BQUOTE, + STATE(10475), 1, + sym__scon, + STATE(10498), 1, + sym_longvid, + STATE(10787), 1, + sym_vid, + STATE(17860), 1, + sym__exp, + STATE(19019), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11495), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4151), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [406916] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(18910), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [407028] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(12736), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [407140] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(12737), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [407252] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(12794), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [407364] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(12732), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [407476] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19010), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [407588] = 28, + ACTIONS(2405), 1, + sym_integer_scon, + ACTIONS(2409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2411), 1, + sym__symbolic_ident, + ACTIONS(2413), 1, + anon_sym_LPAREN, + ACTIONS(2415), 1, + anon_sym_op, + ACTIONS(2417), 1, + anon_sym_LBRACE, + ACTIONS(2419), 1, + anon_sym_POUND, + ACTIONS(2421), 1, + anon_sym_LBRACK, + ACTIONS(2423), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2425), 1, + anon_sym_let, + ACTIONS(2427), 1, + anon_sym_u201c, + ACTIONS(2429), 1, + anon_sym_u2018, + ACTIONS(2431), 1, + anon_sym_BQUOTE, + ACTIONS(11437), 1, + anon_sym_raise, + ACTIONS(11439), 1, + anon_sym_if, + ACTIONS(11441), 1, + anon_sym_while, + ACTIONS(11443), 1, + anon_sym_case, + ACTIONS(11445), 1, + anon_sym_fn, + STATE(6097), 1, + sym__scon, + STATE(6098), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(12733), 1, + sym__exp, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2407), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(525), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [407700] = 28, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(11493), 1, + sym_integer_scon, + ACTIONS(11497), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11499), 1, + sym__symbolic_ident, + ACTIONS(11501), 1, + anon_sym_LPAREN, + ACTIONS(11503), 1, + anon_sym_op, + ACTIONS(11505), 1, + anon_sym_LBRACE, + ACTIONS(11507), 1, + anon_sym_POUND, + ACTIONS(11509), 1, + anon_sym_LBRACK, + ACTIONS(11511), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11513), 1, + anon_sym_let, + ACTIONS(11515), 1, + anon_sym_raise, + ACTIONS(11517), 1, + anon_sym_if, + ACTIONS(11519), 1, + anon_sym_while, + ACTIONS(11521), 1, + anon_sym_u201c, + ACTIONS(11523), 1, + anon_sym_u2018, + ACTIONS(11525), 1, + anon_sym_BQUOTE, + STATE(10475), 1, + sym__scon, + STATE(10498), 1, + sym_longvid, + STATE(10787), 1, + sym_vid, + STATE(17864), 1, + sym__exp, + STATE(19019), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11495), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4151), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [407812] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19116), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [407924] = 28, + ACTIONS(37), 1, + anon_sym_case, + ACTIONS(39), 1, + anon_sym_fn, + ACTIONS(11493), 1, + sym_integer_scon, + ACTIONS(11497), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11499), 1, + sym__symbolic_ident, + ACTIONS(11501), 1, + anon_sym_LPAREN, + ACTIONS(11503), 1, + anon_sym_op, + ACTIONS(11505), 1, + anon_sym_LBRACE, + ACTIONS(11507), 1, + anon_sym_POUND, + ACTIONS(11509), 1, + anon_sym_LBRACK, + ACTIONS(11511), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11513), 1, + anon_sym_let, + ACTIONS(11515), 1, + anon_sym_raise, + ACTIONS(11517), 1, + anon_sym_if, + ACTIONS(11519), 1, + anon_sym_while, + ACTIONS(11521), 1, + anon_sym_u201c, + ACTIONS(11523), 1, + anon_sym_u2018, + ACTIONS(11525), 1, + anon_sym_BQUOTE, + STATE(10475), 1, + sym__scon, + STATE(10498), 1, + sym_longvid, + STATE(10787), 1, + sym_vid, + STATE(17866), 1, + sym__exp, + STATE(19019), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11495), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4151), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [408036] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(19232), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [408148] = 28, + ACTIONS(5537), 1, + sym_integer_scon, + ACTIONS(5541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5543), 1, + sym__symbolic_ident, + ACTIONS(5545), 1, + anon_sym_LPAREN, + ACTIONS(5547), 1, + anon_sym_op, + ACTIONS(5549), 1, + anon_sym_LBRACE, + ACTIONS(5551), 1, + anon_sym_POUND, + ACTIONS(5553), 1, + anon_sym_LBRACK, + ACTIONS(5555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5557), 1, + anon_sym_let, + ACTIONS(5559), 1, + anon_sym_u201c, + ACTIONS(5561), 1, + anon_sym_u2018, + ACTIONS(5563), 1, + anon_sym_BQUOTE, + ACTIONS(10237), 1, + anon_sym_raise, + ACTIONS(10239), 1, + anon_sym_if, + ACTIONS(10241), 1, + anon_sym_while, + ACTIONS(10243), 1, + anon_sym_case, + ACTIONS(10245), 1, + anon_sym_fn, + STATE(7568), 1, + sym__scon, + STATE(7569), 1, + sym_longvid, + STATE(7716), 1, + sym_vid, + STATE(13493), 1, + sym__exp, + STATE(19114), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1097), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [408260] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18774), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [408372] = 28, + ACTIONS(1803), 1, + sym_integer_scon, + ACTIONS(1807), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1809), 1, + sym__symbolic_ident, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + anon_sym_op, + ACTIONS(1815), 1, + anon_sym_LBRACE, + ACTIONS(1817), 1, + anon_sym_POUND, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1821), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1823), 1, + anon_sym_let, + ACTIONS(1825), 1, + anon_sym_u201c, + ACTIONS(1827), 1, + anon_sym_u2018, + ACTIONS(1829), 1, + anon_sym_BQUOTE, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + ACTIONS(11425), 1, + anon_sym_raise, + ACTIONS(11427), 1, + anon_sym_if, + ACTIONS(11429), 1, + anon_sym_while, + STATE(5962), 1, + sym__scon, + STATE(5963), 1, + sym_longvid, + STATE(6481), 1, + sym_vid, + STATE(12757), 1, + sym__exp, + STATE(19226), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1805), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(501), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [408484] = 28, + ACTIONS(1803), 1, + sym_integer_scon, + ACTIONS(1807), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1809), 1, + sym__symbolic_ident, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + anon_sym_op, + ACTIONS(1815), 1, + anon_sym_LBRACE, + ACTIONS(1817), 1, + anon_sym_POUND, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1821), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1823), 1, + anon_sym_let, + ACTIONS(1825), 1, + anon_sym_u201c, + ACTIONS(1827), 1, + anon_sym_u2018, + ACTIONS(1829), 1, + anon_sym_BQUOTE, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + ACTIONS(11425), 1, + anon_sym_raise, + ACTIONS(11427), 1, + anon_sym_if, + ACTIONS(11429), 1, + anon_sym_while, + STATE(5962), 1, + sym__scon, + STATE(5963), 1, + sym_longvid, + STATE(6481), 1, + sym_vid, + STATE(12745), 1, + sym__exp, + STATE(19226), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1805), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(501), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [408596] = 28, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10101), 1, + anon_sym_raise, + ACTIONS(10103), 1, + anon_sym_if, + ACTIONS(10105), 1, + anon_sym_while, + ACTIONS(10107), 1, + anon_sym_case, + ACTIONS(10109), 1, + anon_sym_fn, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18862), 1, + sym__exp, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4350), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [408708] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19193), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [408820] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19196), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [408932] = 28, + ACTIONS(2945), 1, + sym_integer_scon, + ACTIONS(2949), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2951), 1, + sym__symbolic_ident, + ACTIONS(2953), 1, + anon_sym_LPAREN, + ACTIONS(2955), 1, + anon_sym_op, + ACTIONS(2957), 1, + anon_sym_LBRACE, + ACTIONS(2959), 1, + anon_sym_POUND, + ACTIONS(2961), 1, + anon_sym_LBRACK, + ACTIONS(2963), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2965), 1, + anon_sym_let, + ACTIONS(2967), 1, + anon_sym_u201c, + ACTIONS(2969), 1, + anon_sym_u2018, + ACTIONS(2971), 1, + anon_sym_BQUOTE, + ACTIONS(10721), 1, + anon_sym_raise, + ACTIONS(10723), 1, + anon_sym_if, + ACTIONS(10725), 1, + anon_sym_while, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + STATE(6771), 1, + sym__scon, + STATE(6772), 1, + sym_longvid, + STATE(6887), 1, + sym_vid, + STATE(13074), 1, + sym__exp, + STATE(19207), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2947), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(549), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [409044] = 28, + ACTIONS(3437), 1, + sym_integer_scon, + ACTIONS(3441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3443), 1, + sym__symbolic_ident, + ACTIONS(3445), 1, + anon_sym_LPAREN, + ACTIONS(3447), 1, + anon_sym_op, + ACTIONS(3449), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_POUND, + ACTIONS(3453), 1, + anon_sym_LBRACK, + ACTIONS(3455), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3457), 1, + anon_sym_let, + ACTIONS(3459), 1, + anon_sym_u201c, + ACTIONS(3461), 1, + anon_sym_u2018, + ACTIONS(3463), 1, + anon_sym_BQUOTE, + ACTIONS(10945), 1, + anon_sym_raise, + ACTIONS(10947), 1, + anon_sym_if, + ACTIONS(10949), 1, + anon_sym_while, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + STATE(6895), 1, + sym__scon, + STATE(6896), 1, + sym_longvid, + STATE(7063), 1, + sym_vid, + STATE(13143), 1, + sym__exp, + STATE(19215), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3439), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(571), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [409156] = 28, + ACTIONS(3599), 1, + sym_integer_scon, + ACTIONS(3603), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3605), 1, + sym__symbolic_ident, + ACTIONS(3607), 1, + anon_sym_LPAREN, + ACTIONS(3609), 1, + anon_sym_op, + ACTIONS(3611), 1, + anon_sym_LBRACE, + ACTIONS(3613), 1, + anon_sym_POUND, + ACTIONS(3615), 1, + anon_sym_LBRACK, + ACTIONS(3617), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3619), 1, + anon_sym_let, + ACTIONS(3621), 1, + anon_sym_u201c, + ACTIONS(3623), 1, + anon_sym_u2018, + ACTIONS(3625), 1, + anon_sym_BQUOTE, + ACTIONS(10449), 1, + anon_sym_raise, + ACTIONS(10451), 1, + anon_sym_if, + ACTIONS(10453), 1, + anon_sym_while, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + STATE(7067), 1, + sym__scon, + STATE(7069), 1, + sym_longvid, + STATE(7182), 1, + sym_vid, + STATE(13215), 1, + sym__exp, + STATE(18750), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3601), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(585), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [409268] = 28, + ACTIONS(5649), 1, + sym_integer_scon, + ACTIONS(5653), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5655), 1, + sym__symbolic_ident, + ACTIONS(5657), 1, + anon_sym_LPAREN, + ACTIONS(5659), 1, + anon_sym_op, + ACTIONS(5661), 1, + anon_sym_LBRACE, + ACTIONS(5663), 1, + anon_sym_POUND, + ACTIONS(5665), 1, + anon_sym_LBRACK, + ACTIONS(5667), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5669), 1, + anon_sym_let, + ACTIONS(5671), 1, + anon_sym_u201c, + ACTIONS(5673), 1, + anon_sym_u2018, + ACTIONS(5675), 1, + anon_sym_BQUOTE, + ACTIONS(10569), 1, + anon_sym_raise, + ACTIONS(10571), 1, + anon_sym_if, + ACTIONS(10573), 1, + anon_sym_while, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + STATE(7660), 1, + sym__scon, + STATE(7661), 1, + sym_longvid, + STATE(7832), 1, + sym_vid, + STATE(13348), 1, + sym__exp, + STATE(18984), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5651), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(1103), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [409380] = 28, + ACTIONS(2503), 1, + sym_integer_scon, + ACTIONS(2507), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2509), 1, + sym__symbolic_ident, + ACTIONS(2511), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + anon_sym_op, + ACTIONS(2515), 1, + anon_sym_LBRACE, + ACTIONS(2517), 1, + anon_sym_POUND, + ACTIONS(2519), 1, + anon_sym_LBRACK, + ACTIONS(2521), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2523), 1, + anon_sym_let, + ACTIONS(2525), 1, + anon_sym_u201c, + ACTIONS(2527), 1, + anon_sym_u2018, + ACTIONS(2529), 1, + anon_sym_BQUOTE, + ACTIONS(10819), 1, + anon_sym_raise, + ACTIONS(10821), 1, + anon_sym_if, + ACTIONS(10823), 1, + anon_sym_while, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + STATE(6193), 1, + sym__scon, + STATE(6194), 1, + sym_longvid, + STATE(6370), 1, + sym_vid, + STATE(12764), 1, + sym__exp, + STATE(19132), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2505), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(529), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [409492] = 28, + ACTIONS(10525), 1, + anon_sym_case, + ACTIONS(10527), 1, + anon_sym_fn, + ACTIONS(10867), 1, + sym_integer_scon, + ACTIONS(10871), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10873), 1, + sym__symbolic_ident, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_op, + ACTIONS(10879), 1, + anon_sym_LBRACE, + ACTIONS(10881), 1, + anon_sym_POUND, + ACTIONS(10883), 1, + anon_sym_LBRACK, + ACTIONS(10885), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10887), 1, + anon_sym_let, + ACTIONS(10889), 1, + anon_sym_raise, + ACTIONS(10891), 1, + anon_sym_if, + ACTIONS(10893), 1, + anon_sym_while, + ACTIONS(10895), 1, + anon_sym_u201c, + ACTIONS(10897), 1, + anon_sym_u2018, + ACTIONS(10899), 1, + anon_sym_BQUOTE, + STATE(9688), 1, + sym_vid, + STATE(9952), 1, + sym__scon, + STATE(9957), 1, + sym_longvid, + STATE(17307), 1, + sym__exp, + STATE(19255), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10869), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4107), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [409604] = 28, + ACTIONS(2735), 1, + sym_integer_scon, + ACTIONS(2739), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2741), 1, + sym__symbolic_ident, + ACTIONS(2743), 1, + anon_sym_LPAREN, + ACTIONS(2745), 1, + anon_sym_op, + ACTIONS(2747), 1, + anon_sym_LBRACE, + ACTIONS(2749), 1, + anon_sym_POUND, + ACTIONS(2751), 1, + anon_sym_LBRACK, + ACTIONS(2753), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2755), 1, + anon_sym_let, + ACTIONS(2757), 1, + anon_sym_u201c, + ACTIONS(2759), 1, + anon_sym_u2018, + ACTIONS(2761), 1, + anon_sym_BQUOTE, + ACTIONS(10663), 1, + anon_sym_case, + ACTIONS(10665), 1, + anon_sym_fn, + ACTIONS(10911), 1, + anon_sym_raise, + ACTIONS(10913), 1, + anon_sym_if, + ACTIONS(10915), 1, + anon_sym_while, + STATE(7228), 1, + sym__scon, + STATE(7230), 1, + sym_longvid, + STATE(7336), 1, + sym_vid, + STATE(13262), 1, + sym__exp, + STATE(18980), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2737), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(540), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [409716] = 28, + ACTIONS(1985), 1, + sym_integer_scon, + ACTIONS(1989), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1991), 1, + sym__symbolic_ident, + ACTIONS(1993), 1, + anon_sym_LPAREN, + ACTIONS(1995), 1, + anon_sym_op, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(1999), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_LBRACK, + ACTIONS(2003), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2005), 1, + anon_sym_let, + ACTIONS(2007), 1, + anon_sym_u201c, + ACTIONS(2009), 1, + anon_sym_u2018, + ACTIONS(2011), 1, + anon_sym_BQUOTE, + ACTIONS(10455), 1, + anon_sym_case, + ACTIONS(10457), 1, + anon_sym_fn, + ACTIONS(10923), 1, + anon_sym_raise, + ACTIONS(10925), 1, + anon_sym_if, + ACTIONS(10927), 1, + anon_sym_while, + STATE(6262), 1, + sym__scon, + STATE(6263), 1, + sym_longvid, + STATE(6485), 1, + sym_vid, + STATE(12775), 1, + sym__exp, + STATE(19171), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1987), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(533), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [409828] = 28, + ACTIONS(2195), 1, + sym_integer_scon, + ACTIONS(2199), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2201), 1, + sym__symbolic_ident, + ACTIONS(2203), 1, + anon_sym_LPAREN, + ACTIONS(2205), 1, + anon_sym_op, + ACTIONS(2207), 1, + anon_sym_LBRACE, + ACTIONS(2209), 1, + anon_sym_POUND, + ACTIONS(2211), 1, + anon_sym_LBRACK, + ACTIONS(2213), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2215), 1, + anon_sym_let, + ACTIONS(2217), 1, + anon_sym_u201c, + ACTIONS(2219), 1, + anon_sym_u2018, + ACTIONS(2221), 1, + anon_sym_BQUOTE, + ACTIONS(10935), 1, + anon_sym_raise, + ACTIONS(10937), 1, + anon_sym_if, + ACTIONS(10939), 1, + anon_sym_while, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + STATE(6315), 1, + sym__scon, + STATE(6316), 1, + sym_longvid, + STATE(6515), 1, + sym_vid, + STATE(12781), 1, + sym__exp, + STATE(19231), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2197), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(516), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [409940] = 28, + ACTIONS(2433), 1, + sym_integer_scon, + ACTIONS(2437), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2439), 1, + sym__symbolic_ident, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_op, + ACTIONS(2445), 1, + anon_sym_LBRACE, + ACTIONS(2447), 1, + anon_sym_POUND, + ACTIONS(2449), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2453), 1, + anon_sym_let, + ACTIONS(2455), 1, + anon_sym_u201c, + ACTIONS(2457), 1, + anon_sym_u2018, + ACTIONS(2459), 1, + anon_sym_BQUOTE, + ACTIONS(10727), 1, + anon_sym_case, + ACTIONS(10729), 1, + anon_sym_fn, + ACTIONS(10961), 1, + anon_sym_raise, + ACTIONS(10963), 1, + anon_sym_if, + ACTIONS(10965), 1, + anon_sym_while, + STATE(6369), 1, + sym__scon, + STATE(6371), 1, + sym_longvid, + STATE(6533), 1, + sym_vid, + STATE(12787), 1, + sym__exp, + STATE(19237), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2435), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(526), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [410052] = 28, + ACTIONS(1537), 1, + sym_integer_scon, + ACTIONS(1541), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1543), 1, + sym__symbolic_ident, + ACTIONS(1545), 1, + anon_sym_LPAREN, + ACTIONS(1547), 1, + anon_sym_op, + ACTIONS(1549), 1, + anon_sym_LBRACE, + ACTIONS(1551), 1, + anon_sym_POUND, + ACTIONS(1553), 1, + anon_sym_LBRACK, + ACTIONS(1555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1557), 1, + anon_sym_let, + ACTIONS(1559), 1, + anon_sym_u201c, + ACTIONS(1561), 1, + anon_sym_u2018, + ACTIONS(1563), 1, + anon_sym_BQUOTE, + ACTIONS(10825), 1, + anon_sym_case, + ACTIONS(10827), 1, + anon_sym_fn, + ACTIONS(11001), 1, + anon_sym_raise, + ACTIONS(11003), 1, + anon_sym_if, + ACTIONS(11005), 1, + anon_sym_while, + STATE(5677), 1, + sym_vid, + STATE(5751), 1, + sym__scon, + STATE(5752), 1, + sym_longvid, + STATE(12382), 1, + sym__exp, + STATE(19054), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1539), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(489), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [410164] = 28, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(11045), 1, + sym_integer_scon, + ACTIONS(11049), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11051), 1, + sym__symbolic_ident, + ACTIONS(11053), 1, + anon_sym_LPAREN, + ACTIONS(11055), 1, + anon_sym_op, + ACTIONS(11057), 1, + anon_sym_LBRACE, + ACTIONS(11059), 1, + anon_sym_POUND, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11065), 1, + anon_sym_let, + ACTIONS(11067), 1, + anon_sym_raise, + ACTIONS(11069), 1, + anon_sym_if, + ACTIONS(11071), 1, + anon_sym_while, + ACTIONS(11073), 1, + anon_sym_u201c, + ACTIONS(11075), 1, + anon_sym_u2018, + ACTIONS(11077), 1, + anon_sym_BQUOTE, + STATE(10611), 1, + sym__scon, + STATE(10612), 1, + sym_longvid, + STATE(10631), 1, + sym_vid, + STATE(17910), 1, + sym__exp, + STATE(19243), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11047), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4158), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [410276] = 28, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(11153), 1, + sym_integer_scon, + ACTIONS(11157), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11159), 1, + sym__symbolic_ident, + ACTIONS(11161), 1, + anon_sym_LPAREN, + ACTIONS(11163), 1, + anon_sym_op, + ACTIONS(11165), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_POUND, + ACTIONS(11169), 1, + anon_sym_LBRACK, + ACTIONS(11171), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11173), 1, + anon_sym_let, + ACTIONS(11175), 1, + anon_sym_raise, + ACTIONS(11177), 1, + anon_sym_if, + ACTIONS(11179), 1, + anon_sym_while, + ACTIONS(11181), 1, + anon_sym_u201c, + ACTIONS(11183), 1, + anon_sym_u2018, + ACTIONS(11185), 1, + anon_sym_BQUOTE, + STATE(10363), 1, + sym_vid, + STATE(10926), 1, + sym__scon, + STATE(10928), 1, + sym_longvid, + STATE(17942), 1, + sym__exp, + STATE(19259), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11155), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4165), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [410388] = 28, + ACTIONS(3043), 1, + sym_integer_scon, + ACTIONS(3047), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3049), 1, + sym__symbolic_ident, + ACTIONS(3051), 1, + anon_sym_LPAREN, + ACTIONS(3053), 1, + anon_sym_op, + ACTIONS(3055), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, + anon_sym_POUND, + ACTIONS(3059), 1, + anon_sym_LBRACK, + ACTIONS(3061), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3063), 1, + anon_sym_let, + ACTIONS(3065), 1, + anon_sym_u201c, + ACTIONS(3067), 1, + anon_sym_u2018, + ACTIONS(3069), 1, + anon_sym_BQUOTE, + ACTIONS(11255), 1, + anon_sym_raise, + ACTIONS(11257), 1, + anon_sym_if, + ACTIONS(11259), 1, + anon_sym_while, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + STATE(6577), 1, + sym_vid, + STATE(7195), 1, + sym__scon, + STATE(7197), 1, + sym_longvid, + STATE(13034), 1, + sym__exp, + STATE(18709), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3045), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(554), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [410500] = 28, + ACTIONS(2265), 1, + sym_integer_scon, + ACTIONS(2269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2271), 1, + sym__symbolic_ident, + ACTIONS(2273), 1, + anon_sym_LPAREN, + ACTIONS(2275), 1, + anon_sym_op, + ACTIONS(2277), 1, + anon_sym_LBRACE, + ACTIONS(2279), 1, + anon_sym_POUND, + ACTIONS(2281), 1, + anon_sym_LBRACK, + ACTIONS(2283), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2285), 1, + anon_sym_let, + ACTIONS(2287), 1, + anon_sym_u201c, + ACTIONS(2289), 1, + anon_sym_u2018, + ACTIONS(2291), 1, + anon_sym_BQUOTE, + ACTIONS(10951), 1, + anon_sym_case, + ACTIONS(10953), 1, + anon_sym_fn, + ACTIONS(11271), 1, + anon_sym_raise, + ACTIONS(11273), 1, + anon_sym_if, + ACTIONS(11275), 1, + anon_sym_while, + STATE(5951), 1, + sym_vid, + STATE(5956), 1, + sym__scon, + STATE(5958), 1, + sym_longvid, + STATE(12802), 1, + sym__exp, + STATE(18970), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2267), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(519), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [410612] = 28, + ACTIONS(1607), 1, + sym_integer_scon, + ACTIONS(1611), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1613), 1, + sym__symbolic_ident, + ACTIONS(1615), 1, + anon_sym_LPAREN, + ACTIONS(1617), 1, + anon_sym_op, + ACTIONS(1619), 1, + anon_sym_LBRACE, + ACTIONS(1621), 1, + anon_sym_POUND, + ACTIONS(1623), 1, + anon_sym_LBRACK, + ACTIONS(1625), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1627), 1, + anon_sym_let, + ACTIONS(1629), 1, + anon_sym_u201c, + ACTIONS(1631), 1, + anon_sym_u2018, + ACTIONS(1633), 1, + anon_sym_BQUOTE, + ACTIONS(10941), 1, + anon_sym_case, + ACTIONS(10943), 1, + anon_sym_fn, + ACTIONS(11277), 1, + anon_sym_raise, + ACTIONS(11279), 1, + anon_sym_if, + ACTIONS(11281), 1, + anon_sym_while, + STATE(5457), 1, + sym__scon, + STATE(5458), 1, + sym_longvid, + STATE(5512), 1, + sym_vid, + STATE(12400), 1, + sym__exp, + STATE(19142), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1609), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(492), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [410724] = 28, + ACTIONS(3225), 1, + sym_integer_scon, + ACTIONS(3229), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3231), 1, + sym__symbolic_ident, + ACTIONS(3233), 1, + anon_sym_LPAREN, + ACTIONS(3235), 1, + anon_sym_op, + ACTIONS(3237), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + anon_sym_POUND, + ACTIONS(3241), 1, + anon_sym_LBRACK, + ACTIONS(3243), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3245), 1, + anon_sym_let, + ACTIONS(3247), 1, + anon_sym_u201c, + ACTIONS(3249), 1, + anon_sym_u2018, + ACTIONS(3251), 1, + anon_sym_BQUOTE, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + ACTIONS(11289), 1, + anon_sym_raise, + ACTIONS(11291), 1, + anon_sym_if, + ACTIONS(11293), 1, + anon_sym_while, + STATE(6912), 1, + sym_vid, + STATE(7284), 1, + sym__scon, + STATE(7286), 1, + sym_longvid, + STATE(13055), 1, + sym__exp, + STATE(18725), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3227), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [410836] = 28, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(11345), 1, + sym_integer_scon, + ACTIONS(11349), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11351), 1, + sym__symbolic_ident, + ACTIONS(11353), 1, + anon_sym_LPAREN, + ACTIONS(11355), 1, + anon_sym_op, + ACTIONS(11357), 1, + anon_sym_LBRACE, + ACTIONS(11359), 1, + anon_sym_POUND, + ACTIONS(11361), 1, + anon_sym_LBRACK, + ACTIONS(11363), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11365), 1, + anon_sym_let, + ACTIONS(11367), 1, + anon_sym_raise, + ACTIONS(11369), 1, + anon_sym_if, + ACTIONS(11371), 1, + anon_sym_while, + ACTIONS(11373), 1, + anon_sym_u201c, + ACTIONS(11375), 1, + anon_sym_u2018, + ACTIONS(11377), 1, + anon_sym_BQUOTE, + STATE(9225), 1, + sym_vid, + STATE(9404), 1, + sym__scon, + STATE(9412), 1, + sym_longvid, + STATE(16501), 1, + sym__exp, + STATE(18753), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11347), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4093), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [410948] = 28, + ACTIONS(3365), 1, + sym_integer_scon, + ACTIONS(3369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3371), 1, + sym__symbolic_ident, + ACTIONS(3373), 1, + anon_sym_LPAREN, + ACTIONS(3375), 1, + anon_sym_op, + ACTIONS(3377), 1, + anon_sym_LBRACE, + ACTIONS(3379), 1, + anon_sym_POUND, + ACTIONS(3381), 1, + anon_sym_LBRACK, + ACTIONS(3383), 1, + anon_sym_POUND_LBRACK, + ACTIONS(3385), 1, + anon_sym_let, + ACTIONS(3387), 1, + anon_sym_u201c, + ACTIONS(3389), 1, + anon_sym_u2018, + ACTIONS(3391), 1, + anon_sym_BQUOTE, + ACTIONS(10575), 1, + anon_sym_case, + ACTIONS(10577), 1, + anon_sym_fn, + ACTIONS(11413), 1, + anon_sym_raise, + ACTIONS(11415), 1, + anon_sym_if, + ACTIONS(11417), 1, + anon_sym_while, + STATE(6904), 1, + sym__scon, + STATE(6937), 1, + sym_longvid, + STATE(7314), 1, + sym_vid, + STATE(13081), 1, + sym__exp, + STATE(19107), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3367), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(567), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [411060] = 28, + ACTIONS(1803), 1, + sym_integer_scon, + ACTIONS(1807), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1809), 1, + sym__symbolic_ident, + ACTIONS(1811), 1, + anon_sym_LPAREN, + ACTIONS(1813), 1, + anon_sym_op, + ACTIONS(1815), 1, + anon_sym_LBRACE, + ACTIONS(1817), 1, + anon_sym_POUND, + ACTIONS(1819), 1, + anon_sym_LBRACK, + ACTIONS(1821), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1823), 1, + anon_sym_let, + ACTIONS(1825), 1, + anon_sym_u201c, + ACTIONS(1827), 1, + anon_sym_u2018, + ACTIONS(1829), 1, + anon_sym_BQUOTE, + ACTIONS(11261), 1, + anon_sym_case, + ACTIONS(11263), 1, + anon_sym_fn, + ACTIONS(11425), 1, + anon_sym_raise, + ACTIONS(11427), 1, + anon_sym_if, + ACTIONS(11429), 1, + anon_sym_while, + STATE(5962), 1, + sym__scon, + STATE(5963), 1, + sym_longvid, + STATE(6481), 1, + sym_vid, + STATE(12837), 1, + sym__exp, + STATE(19226), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1805), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(501), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [411172] = 28, + ACTIONS(2055), 1, + sym_integer_scon, + ACTIONS(2059), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2061), 1, + sym__symbolic_ident, + ACTIONS(2063), 1, + anon_sym_LPAREN, + ACTIONS(2065), 1, + anon_sym_op, + ACTIONS(2067), 1, + anon_sym_LBRACE, + ACTIONS(2069), 1, + anon_sym_POUND, + ACTIONS(2071), 1, + anon_sym_LBRACK, + ACTIONS(2073), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2075), 1, + anon_sym_let, + ACTIONS(2077), 1, + anon_sym_u201c, + ACTIONS(2079), 1, + anon_sym_u2018, + ACTIONS(2081), 1, + anon_sym_BQUOTE, + ACTIONS(10427), 1, + anon_sym_raise, + ACTIONS(10429), 1, + anon_sym_if, + ACTIONS(10431), 1, + anon_sym_while, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + STATE(5861), 1, + sym_vid, + STATE(6077), 1, + sym__scon, + STATE(6080), 1, + sym_longvid, + STATE(12846), 1, + sym__exp, + STATE(18806), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2057), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(510), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [411284] = 28, + ACTIONS(10459), 1, + sym_integer_scon, + ACTIONS(10463), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10465), 1, + sym__symbolic_ident, + ACTIONS(10467), 1, + anon_sym_LPAREN, + ACTIONS(10469), 1, + anon_sym_op, + ACTIONS(10471), 1, + anon_sym_LBRACE, + ACTIONS(10473), 1, + anon_sym_POUND, + ACTIONS(10475), 1, + anon_sym_LBRACK, + ACTIONS(10477), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10479), 1, + anon_sym_let, + ACTIONS(10481), 1, + anon_sym_raise, + ACTIONS(10483), 1, + anon_sym_if, + ACTIONS(10485), 1, + anon_sym_while, + ACTIONS(10487), 1, + anon_sym_case, + ACTIONS(10489), 1, + anon_sym_fn, + ACTIONS(10491), 1, + anon_sym_u201c, + ACTIONS(10493), 1, + anon_sym_u2018, + ACTIONS(10495), 1, + anon_sym_BQUOTE, + STATE(9534), 1, + sym_vid, + STATE(9568), 1, + sym__scon, + STATE(9570), 1, + sym_longvid, + STATE(17357), 1, + sym__exp, + STATE(18883), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10461), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4123), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [411396] = 28, + ACTIONS(10579), 1, + sym_integer_scon, + ACTIONS(10583), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10585), 1, + sym__symbolic_ident, + ACTIONS(10587), 1, + anon_sym_LPAREN, + ACTIONS(10589), 1, + anon_sym_op, + ACTIONS(10591), 1, + anon_sym_LBRACE, + ACTIONS(10593), 1, + anon_sym_POUND, + ACTIONS(10595), 1, + anon_sym_LBRACK, + ACTIONS(10597), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10599), 1, + anon_sym_let, + ACTIONS(10601), 1, + anon_sym_raise, + ACTIONS(10603), 1, + anon_sym_if, + ACTIONS(10605), 1, + anon_sym_while, + ACTIONS(10607), 1, + anon_sym_case, + ACTIONS(10609), 1, + anon_sym_fn, + ACTIONS(10611), 1, + anon_sym_u201c, + ACTIONS(10613), 1, + anon_sym_u2018, + ACTIONS(10615), 1, + anon_sym_BQUOTE, + STATE(9540), 1, + sym_vid, + STATE(9630), 1, + sym__scon, + STATE(9632), 1, + sym_longvid, + STATE(17363), 1, + sym__exp, + STATE(18975), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10581), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4122), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [411508] = 28, + ACTIONS(2125), 1, + sym_integer_scon, + ACTIONS(2129), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2131), 1, + sym__symbolic_ident, + ACTIONS(2133), 1, + anon_sym_LPAREN, + ACTIONS(2135), 1, + anon_sym_op, + ACTIONS(2137), 1, + anon_sym_LBRACE, + ACTIONS(2139), 1, + anon_sym_POUND, + ACTIONS(2141), 1, + anon_sym_LBRACK, + ACTIONS(2143), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2145), 1, + anon_sym_let, + ACTIONS(2147), 1, + anon_sym_u201c, + ACTIONS(2149), 1, + anon_sym_u2018, + ACTIONS(2151), 1, + anon_sym_BQUOTE, + ACTIONS(10301), 1, + anon_sym_raise, + ACTIONS(10303), 1, + anon_sym_if, + ACTIONS(10305), 1, + anon_sym_while, + ACTIONS(10307), 1, + anon_sym_case, + ACTIONS(10309), 1, + anon_sym_fn, + STATE(5869), 1, + sym_vid, + STATE(6372), 1, + sym__scon, + STATE(6426), 1, + sym_longvid, + STATE(12852), 1, + sym__exp, + STATE(19086), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2127), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(513), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [411620] = 28, + ACTIONS(1677), 1, + sym_integer_scon, + ACTIONS(1681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1683), 1, + sym__symbolic_ident, + ACTIONS(1685), 1, + anon_sym_LPAREN, + ACTIONS(1687), 1, + anon_sym_op, + ACTIONS(1689), 1, + anon_sym_LBRACE, + ACTIONS(1691), 1, + anon_sym_POUND, + ACTIONS(1693), 1, + anon_sym_LBRACK, + ACTIONS(1695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1697), 1, + anon_sym_let, + ACTIONS(1699), 1, + anon_sym_u201c, + ACTIONS(1701), 1, + anon_sym_u2018, + ACTIONS(1703), 1, + anon_sym_BQUOTE, + ACTIONS(10433), 1, + anon_sym_case, + ACTIONS(10435), 1, + anon_sym_fn, + ACTIONS(10437), 1, + anon_sym_raise, + ACTIONS(10439), 1, + anon_sym_if, + ACTIONS(10441), 1, + anon_sym_while, + STATE(5518), 1, + sym__scon, + STATE(5519), 1, + sym_longvid, + STATE(5575), 1, + sym_vid, + STATE(12441), 1, + sym__exp, + STATE(19199), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(495), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [411732] = 28, + ACTIONS(10351), 1, + sym_integer_scon, + ACTIONS(10355), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10357), 1, + sym__symbolic_ident, + ACTIONS(10359), 1, + anon_sym_LPAREN, + ACTIONS(10361), 1, + anon_sym_op, + ACTIONS(10363), 1, + anon_sym_LBRACE, + ACTIONS(10365), 1, + anon_sym_POUND, + ACTIONS(10367), 1, + anon_sym_LBRACK, + ACTIONS(10369), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10371), 1, + anon_sym_let, + ACTIONS(10373), 1, + anon_sym_raise, + ACTIONS(10375), 1, + anon_sym_if, + ACTIONS(10377), 1, + anon_sym_while, + ACTIONS(10379), 1, + anon_sym_case, + ACTIONS(10381), 1, + anon_sym_fn, + ACTIONS(10383), 1, + anon_sym_u201c, + ACTIONS(10385), 1, + anon_sym_u2018, + ACTIONS(10387), 1, + anon_sym_BQUOTE, + STATE(9031), 1, + sym__scon, + STATE(9035), 1, + sym_longvid, + STATE(9077), 1, + sym_vid, + STATE(15859), 1, + sym__exp, + STATE(18749), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10353), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4088), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [411844] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18832), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [411956] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18772), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [412068] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18937), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [412180] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18830), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [412292] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19065), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [412404] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18866), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [412516] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19148), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [412628] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18897), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [412740] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19213), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [412852] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18915), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [412964] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18712), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [413076] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18927), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [413188] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18755), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [413300] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18940), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [413412] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18814), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [413524] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(18952), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [413636] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18865), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [413748] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(18964), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [413860] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18929), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [413972] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(18979), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [414084] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18968), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [414196] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(18987), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [414308] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19261), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [414420] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19003), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [414532] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19056), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [414644] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19016), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [414756] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19096), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [414868] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19032), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [414980] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19125), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [415092] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19041), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [415204] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19155), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [415316] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19050), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [415428] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19192), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [415540] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19058), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [415652] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19217), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [415764] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19067), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [415876] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19242), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [415988] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19071), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [416100] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19018), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [416212] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18721), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [416324] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18736), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [416436] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18757), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [416548] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18775), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [416660] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18822), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [416772] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18841), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [416884] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18853), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [416996] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18868), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [417108] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18881), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [417220] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18895), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [417332] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18776), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [417444] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18902), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [417556] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18909), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [417668] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18921), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [417780] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18942), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [417892] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18967), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [418004] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18983), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [418116] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18992), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [418228] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18777), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [418340] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19008), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [418452] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19015), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [418564] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19023), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [418676] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19030), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [418788] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19042), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [418900] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18778), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [419012] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18779), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [419124] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19047), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [419236] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19053), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [419348] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19061), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [419460] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19072), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [419572] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19080), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [419684] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19089), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [419796] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19098), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [419908] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18780), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [420020] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18781), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [420132] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18782), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [420244] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18783), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [420356] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18784), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [420468] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18785), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [420580] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18786), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [420692] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19105), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [420804] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18787), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [420916] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19115), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [421028] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18788), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [421140] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19120), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [421252] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18789), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [421364] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18790), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [421476] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18791), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [421588] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18792), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [421700] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19127), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [421812] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19130), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [421924] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18793), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [422036] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(19135), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [422148] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18794), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [422260] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18795), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [422372] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18796), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [422484] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18797), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [422596] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18798), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [422708] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18799), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [422820] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18800), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [422932] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18801), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [423044] = 28, + ACTIONS(11035), 1, + anon_sym_case, + ACTIONS(11037), 1, + anon_sym_fn, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11317), 1, + anon_sym_raise, + ACTIONS(11319), 1, + anon_sym_if, + ACTIONS(11321), 1, + anon_sym_while, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(18737), 1, + sym__exp, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4561), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [423156] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18738), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [423268] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18802), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [423380] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18837), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [423492] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18875), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [423604] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18905), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [423716] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18918), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [423828] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18935), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [423940] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18944), 1, + sym__exp, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [424052] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(18957), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [424164] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(18972), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [424276] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(18981), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [424388] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(18995), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [424500] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19011), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [424612] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19026), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [424724] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19036), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [424836] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19045), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [424948] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19052), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [425060] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19062), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [425172] = 28, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10139), 1, + anon_sym_raise, + ACTIONS(10141), 1, + anon_sym_if, + ACTIONS(10143), 1, + anon_sym_while, + ACTIONS(10145), 1, + anon_sym_case, + ACTIONS(10147), 1, + anon_sym_fn, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(19068), 1, + sym__exp, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7191), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(4292), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [425284] = 28, + ACTIONS(2805), 1, + sym_integer_scon, + ACTIONS(2809), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2811), 1, + sym__symbolic_ident, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(2815), 1, + anon_sym_op, + ACTIONS(2817), 1, + anon_sym_LBRACE, + ACTIONS(2819), 1, + anon_sym_POUND, + ACTIONS(2821), 1, + anon_sym_LBRACK, + ACTIONS(2823), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2825), 1, + anon_sym_let, + ACTIONS(2827), 1, + anon_sym_u201c, + ACTIONS(2829), 1, + anon_sym_u2018, + ACTIONS(2831), 1, + anon_sym_BQUOTE, + ACTIONS(10907), 1, + anon_sym_case, + ACTIONS(10909), 1, + anon_sym_fn, + ACTIONS(11079), 1, + anon_sym_raise, + ACTIONS(11081), 1, + anon_sym_if, + ACTIONS(11083), 1, + anon_sym_while, + STATE(6661), 1, + sym__scon, + STATE(6663), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(13258), 1, + sym__exp, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2807), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(10184), 10, + sym_app_exp, + sym_typed_exp, + sym_conj_exp, + sym_disj_exp, + sym_handle_exp, + sym_raise_exp, + sym_cond_exp, + sym_iter_exp, + sym_case_exp, + sym_fn_exp, + STATE(543), 15, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + [425396] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(393), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(391), 45, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + anon_sym_list, + [425457] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(381), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(379), 45, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + anon_sym_list, + [425518] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(397), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(395), 44, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + anon_sym_list, + [425581] = 5, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(385), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(383), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [425646] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(401), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(399), 45, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + anon_sym_list, + [425707] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(492), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(490), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [425766] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(504), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(502), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [425825] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(508), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(506), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [425884] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(512), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(510), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [425943] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(496), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(494), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [426002] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(500), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(498), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [426061] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(89), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(85), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [426120] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(516), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(514), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [426179] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(419), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(417), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [426238] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(484), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(482), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [426297] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(488), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(486), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [426356] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(430), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(428), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [426415] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(480), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(478), 43, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_End, + anon_sym_Termination, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [426474] = 23, + ACTIONS(11541), 1, + sym_integer_scon, + ACTIONS(11547), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11550), 1, + sym__symbolic_ident, + ACTIONS(11553), 1, + anon_sym_LPAREN, + ACTIONS(11556), 1, + anon_sym_op, + ACTIONS(11559), 1, + anon_sym_LBRACE, + ACTIONS(11562), 1, + anon_sym_POUND, + ACTIONS(11565), 1, + anon_sym_LBRACK, + ACTIONS(11568), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11571), 1, + anon_sym_let, + ACTIONS(11574), 1, + anon_sym_u201c, + ACTIONS(11577), 1, + anon_sym_u2018, + ACTIONS(11580), 1, + anon_sym_BQUOTE, + STATE(8871), 1, + sym__scon, + STATE(8892), 1, + sym_vid, + STATE(8909), 1, + sym_longvid, + STATE(19240), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11544), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1001), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + STATE(4079), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [426572] = 23, + ACTIONS(10389), 1, + sym_integer_scon, + ACTIONS(10393), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10395), 1, + sym__symbolic_ident, + ACTIONS(10397), 1, + anon_sym_LPAREN, + ACTIONS(10399), 1, + anon_sym_op, + ACTIONS(10401), 1, + anon_sym_LBRACE, + ACTIONS(10403), 1, + anon_sym_POUND, + ACTIONS(10405), 1, + anon_sym_LBRACK, + ACTIONS(10407), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10409), 1, + anon_sym_let, + ACTIONS(10421), 1, + anon_sym_u201c, + ACTIONS(10423), 1, + anon_sym_u2018, + ACTIONS(10425), 1, + anon_sym_BQUOTE, + STATE(8871), 1, + sym__scon, + STATE(8892), 1, + sym_vid, + STATE(8909), 1, + sym_longvid, + STATE(19240), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10391), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(997), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + STATE(4079), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [426670] = 23, + ACTIONS(10389), 1, + sym_integer_scon, + ACTIONS(10393), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10395), 1, + sym__symbolic_ident, + ACTIONS(10397), 1, + anon_sym_LPAREN, + ACTIONS(10399), 1, + anon_sym_op, + ACTIONS(10401), 1, + anon_sym_LBRACE, + ACTIONS(10403), 1, + anon_sym_POUND, + ACTIONS(10405), 1, + anon_sym_LBRACK, + ACTIONS(10407), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10409), 1, + anon_sym_let, + ACTIONS(10421), 1, + anon_sym_u201c, + ACTIONS(10423), 1, + anon_sym_u2018, + ACTIONS(10425), 1, + anon_sym_BQUOTE, + STATE(8871), 1, + sym__scon, + STATE(8892), 1, + sym_vid, + STATE(8909), 1, + sym_longvid, + STATE(19240), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10391), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(965), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + STATE(4080), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [426768] = 23, + ACTIONS(10677), 1, + sym_integer_scon, + ACTIONS(10681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10683), 1, + sym__symbolic_ident, + ACTIONS(10685), 1, + anon_sym_LPAREN, + ACTIONS(10687), 1, + anon_sym_op, + ACTIONS(10689), 1, + anon_sym_LBRACE, + ACTIONS(10691), 1, + anon_sym_POUND, + ACTIONS(10693), 1, + anon_sym_LBRACK, + ACTIONS(10695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10697), 1, + anon_sym_let, + ACTIONS(10705), 1, + anon_sym_u201c, + ACTIONS(10707), 1, + anon_sym_u2018, + ACTIONS(10709), 1, + anon_sym_BQUOTE, + STATE(8959), 1, + sym_vid, + STATE(9045), 1, + sym__scon, + STATE(9046), 1, + sym_longvid, + STATE(18752), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(997), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(999), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + STATE(4090), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [426865] = 23, + ACTIONS(11583), 1, + sym_integer_scon, + ACTIONS(11589), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11592), 1, + sym__symbolic_ident, + ACTIONS(11595), 1, + anon_sym_LPAREN, + ACTIONS(11598), 1, + anon_sym_op, + ACTIONS(11601), 1, + anon_sym_LBRACE, + ACTIONS(11604), 1, + anon_sym_POUND, + ACTIONS(11607), 1, + anon_sym_LBRACK, + ACTIONS(11610), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11613), 1, + anon_sym_let, + ACTIONS(11616), 1, + anon_sym_u201c, + ACTIONS(11619), 1, + anon_sym_u2018, + ACTIONS(11622), 1, + anon_sym_BQUOTE, + STATE(8961), 1, + sym_vid, + STATE(9111), 1, + sym__scon, + STATE(9112), 1, + sym_longvid, + STATE(18849), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11586), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1001), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(1024), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + STATE(4083), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [426962] = 23, + ACTIONS(10351), 1, + sym_integer_scon, + ACTIONS(10355), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10357), 1, + sym__symbolic_ident, + ACTIONS(10359), 1, + anon_sym_LPAREN, + ACTIONS(10361), 1, + anon_sym_op, + ACTIONS(10363), 1, + anon_sym_LBRACE, + ACTIONS(10365), 1, + anon_sym_POUND, + ACTIONS(10367), 1, + anon_sym_LBRACK, + ACTIONS(10369), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10371), 1, + anon_sym_let, + ACTIONS(10383), 1, + anon_sym_u201c, + ACTIONS(10385), 1, + anon_sym_u2018, + ACTIONS(10387), 1, + anon_sym_BQUOTE, + STATE(9031), 1, + sym__scon, + STATE(9035), 1, + sym_longvid, + STATE(9077), 1, + sym_vid, + STATE(18749), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(10353), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + STATE(4085), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [427059] = 23, + ACTIONS(11625), 1, + sym_integer_scon, + ACTIONS(11631), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11634), 1, + sym__symbolic_ident, + ACTIONS(11637), 1, + anon_sym_LPAREN, + ACTIONS(11640), 1, + anon_sym_op, + ACTIONS(11643), 1, + anon_sym_LBRACE, + ACTIONS(11646), 1, + anon_sym_POUND, + ACTIONS(11649), 1, + anon_sym_LBRACK, + ACTIONS(11652), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11655), 1, + anon_sym_let, + ACTIONS(11658), 1, + anon_sym_u201c, + ACTIONS(11661), 1, + anon_sym_u2018, + ACTIONS(11664), 1, + anon_sym_BQUOTE, + STATE(9031), 1, + sym__scon, + STATE(9035), 1, + sym_longvid, + STATE(9077), 1, + sym_vid, + STATE(18749), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(11628), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + STATE(4085), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [427156] = 23, + ACTIONS(10785), 1, + sym_integer_scon, + ACTIONS(10789), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10791), 1, + sym__symbolic_ident, + ACTIONS(10793), 1, + anon_sym_LPAREN, + ACTIONS(10795), 1, + anon_sym_op, + ACTIONS(10797), 1, + anon_sym_LBRACE, + ACTIONS(10799), 1, + anon_sym_POUND, + ACTIONS(10801), 1, + anon_sym_LBRACK, + ACTIONS(10803), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10805), 1, + anon_sym_let, + ACTIONS(10813), 1, + anon_sym_u201c, + ACTIONS(10815), 1, + anon_sym_u2018, + ACTIONS(10817), 1, + anon_sym_BQUOTE, + STATE(8961), 1, + sym_vid, + STATE(9111), 1, + sym__scon, + STATE(9112), 1, + sym_longvid, + STATE(18849), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10787), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(997), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(999), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + STATE(4083), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [427253] = 23, + ACTIONS(10785), 1, + sym_integer_scon, + ACTIONS(10789), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10791), 1, + sym__symbolic_ident, + ACTIONS(10793), 1, + anon_sym_LPAREN, + ACTIONS(10795), 1, + anon_sym_op, + ACTIONS(10797), 1, + anon_sym_LBRACE, + ACTIONS(10799), 1, + anon_sym_POUND, + ACTIONS(10801), 1, + anon_sym_LBRACK, + ACTIONS(10803), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10805), 1, + anon_sym_let, + ACTIONS(10813), 1, + anon_sym_u201c, + ACTIONS(10815), 1, + anon_sym_u2018, + ACTIONS(10817), 1, + anon_sym_BQUOTE, + STATE(8961), 1, + sym_vid, + STATE(9111), 1, + sym__scon, + STATE(9112), 1, + sym_longvid, + STATE(18849), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10787), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(965), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(981), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + STATE(4086), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [427350] = 23, + ACTIONS(10351), 1, + sym_integer_scon, + ACTIONS(10355), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10357), 1, + sym__symbolic_ident, + ACTIONS(10359), 1, + anon_sym_LPAREN, + ACTIONS(10361), 1, + anon_sym_op, + ACTIONS(10363), 1, + anon_sym_LBRACE, + ACTIONS(10365), 1, + anon_sym_POUND, + ACTIONS(10367), 1, + anon_sym_LBRACK, + ACTIONS(10369), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10371), 1, + anon_sym_let, + ACTIONS(10383), 1, + anon_sym_u201c, + ACTIONS(10385), 1, + anon_sym_u2018, + ACTIONS(10387), 1, + anon_sym_BQUOTE, + STATE(9031), 1, + sym__scon, + STATE(9035), 1, + sym_longvid, + STATE(9077), 1, + sym_vid, + STATE(18749), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(10353), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + STATE(4084), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [427447] = 23, + ACTIONS(10677), 1, + sym_integer_scon, + ACTIONS(10681), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10683), 1, + sym__symbolic_ident, + ACTIONS(10685), 1, + anon_sym_LPAREN, + ACTIONS(10687), 1, + anon_sym_op, + ACTIONS(10689), 1, + anon_sym_LBRACE, + ACTIONS(10691), 1, + anon_sym_POUND, + ACTIONS(10693), 1, + anon_sym_LBRACK, + ACTIONS(10695), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10697), 1, + anon_sym_let, + ACTIONS(10705), 1, + anon_sym_u201c, + ACTIONS(10707), 1, + anon_sym_u2018, + ACTIONS(10709), 1, + anon_sym_BQUOTE, + STATE(8959), 1, + sym_vid, + STATE(9045), 1, + sym__scon, + STATE(9046), 1, + sym_longvid, + STATE(18752), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10679), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(965), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(981), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + STATE(4082), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [427544] = 23, + ACTIONS(11667), 1, + sym_integer_scon, + ACTIONS(11673), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11676), 1, + sym__symbolic_ident, + ACTIONS(11679), 1, + anon_sym_LPAREN, + ACTIONS(11682), 1, + anon_sym_op, + ACTIONS(11685), 1, + anon_sym_LBRACE, + ACTIONS(11688), 1, + anon_sym_POUND, + ACTIONS(11691), 1, + anon_sym_LBRACK, + ACTIONS(11694), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11697), 1, + anon_sym_let, + ACTIONS(11700), 1, + anon_sym_u201c, + ACTIONS(11703), 1, + anon_sym_u2018, + ACTIONS(11706), 1, + anon_sym_BQUOTE, + STATE(8959), 1, + sym_vid, + STATE(9045), 1, + sym__scon, + STATE(9046), 1, + sym_longvid, + STATE(18752), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11670), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1001), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(1024), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + STATE(4090), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [427641] = 23, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(981), 4, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(965), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + STATE(4098), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [427737] = 23, + ACTIONS(11709), 1, + sym_integer_scon, + ACTIONS(11715), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11718), 1, + sym__symbolic_ident, + ACTIONS(11721), 1, + anon_sym_LPAREN, + ACTIONS(11724), 1, + anon_sym_op, + ACTIONS(11727), 1, + anon_sym_LBRACE, + ACTIONS(11730), 1, + anon_sym_POUND, + ACTIONS(11733), 1, + anon_sym_LBRACK, + ACTIONS(11736), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11739), 1, + anon_sym_let, + ACTIONS(11742), 1, + anon_sym_u201c, + ACTIONS(11745), 1, + anon_sym_u2018, + ACTIONS(11748), 1, + anon_sym_BQUOTE, + STATE(9225), 1, + sym_vid, + STATE(9404), 1, + sym__scon, + STATE(9412), 1, + sym_longvid, + STATE(18753), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(11712), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + STATE(4092), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [427833] = 23, + ACTIONS(11345), 1, + sym_integer_scon, + ACTIONS(11349), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11351), 1, + sym__symbolic_ident, + ACTIONS(11353), 1, + anon_sym_LPAREN, + ACTIONS(11355), 1, + anon_sym_op, + ACTIONS(11357), 1, + anon_sym_LBRACE, + ACTIONS(11359), 1, + anon_sym_POUND, + ACTIONS(11361), 1, + anon_sym_LBRACK, + ACTIONS(11363), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11365), 1, + anon_sym_let, + ACTIONS(11373), 1, + anon_sym_u201c, + ACTIONS(11375), 1, + anon_sym_u2018, + ACTIONS(11377), 1, + anon_sym_BQUOTE, + STATE(9225), 1, + sym_vid, + STATE(9404), 1, + sym__scon, + STATE(9412), 1, + sym_longvid, + STATE(18753), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(11347), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + STATE(4096), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [427929] = 23, + ACTIONS(11379), 1, + sym_integer_scon, + ACTIONS(11383), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11385), 1, + sym__symbolic_ident, + ACTIONS(11387), 1, + anon_sym_LPAREN, + ACTIONS(11389), 1, + anon_sym_op, + ACTIONS(11391), 1, + anon_sym_LBRACE, + ACTIONS(11393), 1, + anon_sym_POUND, + ACTIONS(11395), 1, + anon_sym_LBRACK, + ACTIONS(11397), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11399), 1, + anon_sym_let, + ACTIONS(11407), 1, + anon_sym_u201c, + ACTIONS(11409), 1, + anon_sym_u2018, + ACTIONS(11411), 1, + anon_sym_BQUOTE, + STATE(9231), 1, + sym_vid, + STATE(9435), 1, + sym__scon, + STATE(9437), 1, + sym_longvid, + STATE(18949), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(11381), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + STATE(4095), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [428025] = 23, + ACTIONS(11379), 1, + sym_integer_scon, + ACTIONS(11383), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11385), 1, + sym__symbolic_ident, + ACTIONS(11387), 1, + anon_sym_LPAREN, + ACTIONS(11389), 1, + anon_sym_op, + ACTIONS(11391), 1, + anon_sym_LBRACE, + ACTIONS(11393), 1, + anon_sym_POUND, + ACTIONS(11395), 1, + anon_sym_LBRACK, + ACTIONS(11397), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11399), 1, + anon_sym_let, + ACTIONS(11407), 1, + anon_sym_u201c, + ACTIONS(11409), 1, + anon_sym_u2018, + ACTIONS(11411), 1, + anon_sym_BQUOTE, + STATE(9231), 1, + sym_vid, + STATE(9435), 1, + sym__scon, + STATE(9437), 1, + sym_longvid, + STATE(18949), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(11381), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + STATE(4097), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [428121] = 23, + ACTIONS(11345), 1, + sym_integer_scon, + ACTIONS(11349), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11351), 1, + sym__symbolic_ident, + ACTIONS(11353), 1, + anon_sym_LPAREN, + ACTIONS(11355), 1, + anon_sym_op, + ACTIONS(11357), 1, + anon_sym_LBRACE, + ACTIONS(11359), 1, + anon_sym_POUND, + ACTIONS(11361), 1, + anon_sym_LBRACK, + ACTIONS(11363), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11365), 1, + anon_sym_let, + ACTIONS(11373), 1, + anon_sym_u201c, + ACTIONS(11375), 1, + anon_sym_u2018, + ACTIONS(11377), 1, + anon_sym_BQUOTE, + STATE(9225), 1, + sym_vid, + STATE(9404), 1, + sym__scon, + STATE(9412), 1, + sym_longvid, + STATE(18753), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(11347), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + STATE(4092), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [428217] = 23, + ACTIONS(11751), 1, + sym_integer_scon, + ACTIONS(11757), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11760), 1, + sym__symbolic_ident, + ACTIONS(11763), 1, + anon_sym_LPAREN, + ACTIONS(11766), 1, + anon_sym_op, + ACTIONS(11769), 1, + anon_sym_LBRACE, + ACTIONS(11772), 1, + anon_sym_POUND, + ACTIONS(11775), 1, + anon_sym_LBRACK, + ACTIONS(11778), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11781), 1, + anon_sym_let, + ACTIONS(11784), 1, + anon_sym_u201c, + ACTIONS(11787), 1, + anon_sym_u2018, + ACTIONS(11790), 1, + anon_sym_BQUOTE, + STATE(9231), 1, + sym_vid, + STATE(9435), 1, + sym__scon, + STATE(9437), 1, + sym_longvid, + STATE(18949), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(11754), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + STATE(4097), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [428313] = 23, + ACTIONS(2573), 1, + sym_integer_scon, + ACTIONS(2577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(2579), 1, + sym__symbolic_ident, + ACTIONS(2581), 1, + anon_sym_LPAREN, + ACTIONS(2587), 1, + anon_sym_op, + ACTIONS(2589), 1, + anon_sym_LBRACE, + ACTIONS(2591), 1, + anon_sym_POUND, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2595), 1, + anon_sym_POUND_LBRACK, + ACTIONS(2599), 1, + anon_sym_let, + ACTIONS(2611), 1, + anon_sym_u201c, + ACTIONS(2613), 1, + anon_sym_u2018, + ACTIONS(2615), 1, + anon_sym_BQUOTE, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(999), 4, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + ACTIONS(2575), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(997), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + STATE(4099), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [428409] = 23, + ACTIONS(11793), 1, + sym_integer_scon, + ACTIONS(11799), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11802), 1, + sym__symbolic_ident, + ACTIONS(11805), 1, + anon_sym_LPAREN, + ACTIONS(11808), 1, + anon_sym_op, + ACTIONS(11811), 1, + anon_sym_LBRACE, + ACTIONS(11814), 1, + anon_sym_POUND, + ACTIONS(11817), 1, + anon_sym_LBRACK, + ACTIONS(11820), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11823), 1, + anon_sym_let, + ACTIONS(11826), 1, + anon_sym_u201c, + ACTIONS(11829), 1, + anon_sym_u2018, + ACTIONS(11832), 1, + anon_sym_BQUOTE, + STATE(9317), 1, + sym__scon, + STATE(9318), 1, + sym_vid, + STATE(9320), 1, + sym_longvid, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1024), 4, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + ACTIONS(11796), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1001), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + STATE(4099), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [428505] = 22, + ACTIONS(10459), 1, + sym_integer_scon, + ACTIONS(10463), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10465), 1, + sym__symbolic_ident, + ACTIONS(10467), 1, + anon_sym_LPAREN, + ACTIONS(10469), 1, + anon_sym_op, + ACTIONS(10471), 1, + anon_sym_LBRACE, + ACTIONS(10473), 1, + anon_sym_POUND, + ACTIONS(10475), 1, + anon_sym_LBRACK, + ACTIONS(10477), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10479), 1, + anon_sym_let, + ACTIONS(10491), 1, + anon_sym_u201c, + ACTIONS(10493), 1, + anon_sym_u2018, + ACTIONS(10495), 1, + anon_sym_BQUOTE, + STATE(9534), 1, + sym_vid, + STATE(9568), 1, + sym__scon, + STATE(9570), 1, + sym_longvid, + STATE(18883), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10461), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + STATE(4120), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [428598] = 22, + ACTIONS(11835), 1, + sym_integer_scon, + ACTIONS(11841), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11844), 1, + sym__symbolic_ident, + ACTIONS(11847), 1, + anon_sym_LPAREN, + ACTIONS(11850), 1, + anon_sym_op, + ACTIONS(11853), 1, + anon_sym_LBRACE, + ACTIONS(11856), 1, + anon_sym_POUND, + ACTIONS(11859), 1, + anon_sym_LBRACK, + ACTIONS(11862), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11865), 1, + anon_sym_let, + ACTIONS(11868), 1, + anon_sym_u201c, + ACTIONS(11871), 1, + anon_sym_u2018, + ACTIONS(11874), 1, + anon_sym_BQUOTE, + STATE(9540), 1, + sym_vid, + STATE(9630), 1, + sym__scon, + STATE(9632), 1, + sym_longvid, + STATE(18975), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11838), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + STATE(4101), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [428691] = 5, + ACTIONS(11877), 1, + anon_sym_PIPE, + STATE(4115), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 37, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [428750] = 23, + ACTIONS(10829), 1, + sym_integer_scon, + ACTIONS(10833), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10835), 1, + sym__symbolic_ident, + ACTIONS(10837), 1, + anon_sym_LPAREN, + ACTIONS(10839), 1, + anon_sym_op, + ACTIONS(10841), 1, + anon_sym_LBRACE, + ACTIONS(10843), 1, + anon_sym_POUND, + ACTIONS(10845), 1, + anon_sym_LBRACK, + ACTIONS(10847), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10849), 1, + anon_sym_let, + ACTIONS(10861), 1, + anon_sym_u201c, + ACTIONS(10863), 1, + anon_sym_u2018, + ACTIONS(10865), 1, + anon_sym_BQUOTE, + STATE(9897), 1, + sym__scon, + STATE(9900), 1, + sym_longvid, + STATE(9905), 1, + sym_vid, + STATE(18913), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(10831), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + STATE(4111), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [428845] = 5, + ACTIONS(11877), 1, + anon_sym_PIPE, + STATE(4115), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(426), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 37, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [428904] = 5, + ACTIONS(11877), 1, + anon_sym_PIPE, + STATE(4119), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(415), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(413), 37, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [428963] = 23, + ACTIONS(10829), 1, + sym_integer_scon, + ACTIONS(10833), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10835), 1, + sym__symbolic_ident, + ACTIONS(10837), 1, + anon_sym_LPAREN, + ACTIONS(10839), 1, + anon_sym_op, + ACTIONS(10841), 1, + anon_sym_LBRACE, + ACTIONS(10843), 1, + anon_sym_POUND, + ACTIONS(10845), 1, + anon_sym_LBRACK, + ACTIONS(10847), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10849), 1, + anon_sym_let, + ACTIONS(10861), 1, + anon_sym_u201c, + ACTIONS(10863), 1, + anon_sym_u2018, + ACTIONS(10865), 1, + anon_sym_BQUOTE, + STATE(9897), 1, + sym__scon, + STATE(9900), 1, + sym_longvid, + STATE(9905), 1, + sym_vid, + STATE(18913), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(10831), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + STATE(4103), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [429058] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(10867), 1, + sym_integer_scon, + ACTIONS(10871), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10873), 1, + sym__symbolic_ident, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_op, + ACTIONS(10879), 1, + anon_sym_LBRACE, + ACTIONS(10881), 1, + anon_sym_POUND, + ACTIONS(10883), 1, + anon_sym_LBRACK, + ACTIONS(10885), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10887), 1, + anon_sym_let, + ACTIONS(10895), 1, + anon_sym_u201c, + ACTIONS(10897), 1, + anon_sym_u2018, + ACTIONS(10899), 1, + anon_sym_BQUOTE, + STATE(9688), 1, + sym_vid, + STATE(9952), 1, + sym__scon, + STATE(9957), 1, + sym_longvid, + STATE(19255), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10869), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 7, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + STATE(4108), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [429153] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(10867), 1, + sym_integer_scon, + ACTIONS(10871), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10873), 1, + sym__symbolic_ident, + ACTIONS(10875), 1, + anon_sym_LPAREN, + ACTIONS(10877), 1, + anon_sym_op, + ACTIONS(10879), 1, + anon_sym_LBRACE, + ACTIONS(10881), 1, + anon_sym_POUND, + ACTIONS(10883), 1, + anon_sym_LBRACK, + ACTIONS(10885), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10887), 1, + anon_sym_let, + ACTIONS(10895), 1, + anon_sym_u201c, + ACTIONS(10897), 1, + anon_sym_u2018, + ACTIONS(10899), 1, + anon_sym_BQUOTE, + STATE(9688), 1, + sym_vid, + STATE(9952), 1, + sym__scon, + STATE(9957), 1, + sym_longvid, + STATE(19255), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10869), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 7, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + STATE(4110), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [429248] = 5, + ACTIONS(11877), 1, + anon_sym_PIPE, + STATE(4124), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 37, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [429307] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(11879), 1, + sym_integer_scon, + ACTIONS(11885), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11888), 1, + sym__symbolic_ident, + ACTIONS(11891), 1, + anon_sym_LPAREN, + ACTIONS(11894), 1, + anon_sym_op, + ACTIONS(11897), 1, + anon_sym_LBRACE, + ACTIONS(11900), 1, + anon_sym_POUND, + ACTIONS(11903), 1, + anon_sym_LBRACK, + ACTIONS(11906), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11909), 1, + anon_sym_let, + ACTIONS(11912), 1, + anon_sym_u201c, + ACTIONS(11915), 1, + anon_sym_u2018, + ACTIONS(11918), 1, + anon_sym_BQUOTE, + STATE(9688), 1, + sym_vid, + STATE(9952), 1, + sym__scon, + STATE(9957), 1, + sym_longvid, + STATE(19255), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11882), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 7, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + STATE(4110), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [429402] = 23, + ACTIONS(11921), 1, + sym_integer_scon, + ACTIONS(11927), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11930), 1, + sym__symbolic_ident, + ACTIONS(11933), 1, + anon_sym_LPAREN, + ACTIONS(11936), 1, + anon_sym_op, + ACTIONS(11939), 1, + anon_sym_LBRACE, + ACTIONS(11942), 1, + anon_sym_POUND, + ACTIONS(11945), 1, + anon_sym_LBRACK, + ACTIONS(11948), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11951), 1, + anon_sym_let, + ACTIONS(11954), 1, + anon_sym_u201c, + ACTIONS(11957), 1, + anon_sym_u2018, + ACTIONS(11960), 1, + anon_sym_BQUOTE, + STATE(9897), 1, + sym__scon, + STATE(9900), 1, + sym_longvid, + STATE(9905), 1, + sym_vid, + STATE(18913), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(11924), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + STATE(4111), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [429497] = 23, + ACTIONS(1747), 1, + sym_integer_scon, + ACTIONS(1751), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1753), 1, + sym__symbolic_ident, + ACTIONS(1761), 1, + anon_sym_op, + ACTIONS(1763), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + anon_sym_LBRACK, + ACTIONS(1769), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1773), 1, + anon_sym_let, + ACTIONS(1785), 1, + anon_sym_u201c, + ACTIONS(1787), 1, + anon_sym_u2018, + ACTIONS(1789), 1, + anon_sym_BQUOTE, + ACTIONS(10311), 1, + anon_sym_LPAREN, + STATE(9828), 1, + sym_vid, + STATE(9923), 1, + sym__scon, + STATE(9924), 1, + sym_longvid, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1749), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BSLASH_BSLASH, + STATE(4113), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [429592] = 23, + ACTIONS(1747), 1, + sym_integer_scon, + ACTIONS(1751), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(1753), 1, + sym__symbolic_ident, + ACTIONS(1761), 1, + anon_sym_op, + ACTIONS(1763), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + anon_sym_LBRACK, + ACTIONS(1769), 1, + anon_sym_POUND_LBRACK, + ACTIONS(1773), 1, + anon_sym_let, + ACTIONS(1785), 1, + anon_sym_u201c, + ACTIONS(1787), 1, + anon_sym_u2018, + ACTIONS(1789), 1, + anon_sym_BQUOTE, + ACTIONS(10311), 1, + anon_sym_LPAREN, + STATE(9828), 1, + sym_vid, + STATE(9923), 1, + sym__scon, + STATE(9924), 1, + sym_longvid, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(1749), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BSLASH_BSLASH, + STATE(4121), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [429687] = 25, + ACTIONS(11965), 1, + anon_sym_do, + ACTIONS(11968), 1, + anon_sym_val, + ACTIONS(11971), 1, + anon_sym_fun, + ACTIONS(11974), 1, + anon_sym_type, + ACTIONS(11977), 1, + anon_sym_datatype, + ACTIONS(11980), 1, + anon_sym_abstype, + ACTIONS(11983), 1, + anon_sym_exception, + ACTIONS(11986), 1, + anon_sym_local, + ACTIONS(11989), 1, + anon_sym_open, + ACTIONS(11992), 1, + anon_sym_infix, + ACTIONS(11995), 1, + anon_sym_infixr, + ACTIONS(11998), 1, + anon_sym_nonfix, + ACTIONS(12001), 1, + anon_sym_structure, + ACTIONS(12004), 1, + anon_sym_signature, + ACTIONS(12007), 1, + anon_sym_functor, + ACTIONS(12010), 1, + anon_sym_Definition, + ACTIONS(12013), 1, + anon_sym_Datatype_COLON, + ACTIONS(12016), 1, + anon_sym_Theorem, + STATE(13136), 1, + sym_signature_sigdec, + STATE(13192), 1, + sym_functor_fctdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11963), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + STATE(4114), 2, + sym__topdec, + aux_sym__program_repeat1, + STATE(13230), 7, + sym__strdec, + sym__sigdec, + sym__fctdec, + sym_hol_definition, + sym_hol_definition_with_proof, + sym_hol_datatype, + sym_hol_theorem_with_proof, + STATE(13093), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [429786] = 5, + ACTIONS(12019), 1, + anon_sym_PIPE, + STATE(4115), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(419), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(417), 37, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [429845] = 5, + ACTIONS(11877), 1, + anon_sym_PIPE, + STATE(4102), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(415), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(413), 37, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [429904] = 5, + ACTIONS(11877), 1, + anon_sym_PIPE, + STATE(4104), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 37, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [429963] = 26, + ACTIONS(43), 1, + anon_sym_fun, + ACTIONS(57), 1, + anon_sym_infix, + ACTIONS(77), 1, + anon_sym_Datatype_COLON, + ACTIONS(12022), 1, + ts_builtin_sym_end, + ACTIONS(12024), 1, + anon_sym_SEMI, + ACTIONS(12026), 1, + anon_sym_do, + ACTIONS(12028), 1, + anon_sym_val, + ACTIONS(12030), 1, + anon_sym_type, + ACTIONS(12032), 1, + anon_sym_datatype, + ACTIONS(12034), 1, + anon_sym_abstype, + ACTIONS(12036), 1, + anon_sym_exception, + ACTIONS(12038), 1, + anon_sym_local, + ACTIONS(12040), 1, + anon_sym_open, + ACTIONS(12042), 1, + anon_sym_infixr, + ACTIONS(12044), 1, + anon_sym_nonfix, + ACTIONS(12046), 1, + anon_sym_structure, + ACTIONS(12048), 1, + anon_sym_signature, + ACTIONS(12050), 1, + anon_sym_functor, + ACTIONS(12052), 1, + anon_sym_Definition, + ACTIONS(12054), 1, + anon_sym_Theorem, + STATE(13136), 1, + sym_signature_sigdec, + STATE(13192), 1, + sym_functor_fctdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(4114), 2, + sym__topdec, + aux_sym__program_repeat1, + STATE(13230), 7, + sym__strdec, + sym__sigdec, + sym__fctdec, + sym_hol_definition, + sym_hol_definition_with_proof, + sym_hol_datatype, + sym_hol_theorem_with_proof, + STATE(13093), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [430064] = 4, + STATE(4115), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 38, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [430121] = 22, + ACTIONS(12056), 1, + sym_integer_scon, + ACTIONS(12062), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12065), 1, + sym__symbolic_ident, + ACTIONS(12068), 1, + anon_sym_LPAREN, + ACTIONS(12071), 1, + anon_sym_op, + ACTIONS(12074), 1, + anon_sym_LBRACE, + ACTIONS(12077), 1, + anon_sym_POUND, + ACTIONS(12080), 1, + anon_sym_LBRACK, + ACTIONS(12083), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12086), 1, + anon_sym_let, + ACTIONS(12089), 1, + anon_sym_u201c, + ACTIONS(12092), 1, + anon_sym_u2018, + ACTIONS(12095), 1, + anon_sym_BQUOTE, + STATE(9534), 1, + sym_vid, + STATE(9568), 1, + sym__scon, + STATE(9570), 1, + sym_longvid, + STATE(18883), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12059), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + STATE(4120), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [430214] = 23, + ACTIONS(12098), 1, + sym_integer_scon, + ACTIONS(12104), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12107), 1, + sym__symbolic_ident, + ACTIONS(12110), 1, + anon_sym_LPAREN, + ACTIONS(12113), 1, + anon_sym_op, + ACTIONS(12116), 1, + anon_sym_LBRACE, + ACTIONS(12119), 1, + anon_sym_POUND, + ACTIONS(12122), 1, + anon_sym_LBRACK, + ACTIONS(12125), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12128), 1, + anon_sym_let, + ACTIONS(12131), 1, + anon_sym_u201c, + ACTIONS(12134), 1, + anon_sym_u2018, + ACTIONS(12137), 1, + anon_sym_BQUOTE, + STATE(9828), 1, + sym_vid, + STATE(9923), 1, + sym__scon, + STATE(9924), 1, + sym_longvid, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(12101), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BSLASH_BSLASH, + STATE(4121), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [430309] = 22, + ACTIONS(10579), 1, + sym_integer_scon, + ACTIONS(10583), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10585), 1, + sym__symbolic_ident, + ACTIONS(10587), 1, + anon_sym_LPAREN, + ACTIONS(10589), 1, + anon_sym_op, + ACTIONS(10591), 1, + anon_sym_LBRACE, + ACTIONS(10593), 1, + anon_sym_POUND, + ACTIONS(10595), 1, + anon_sym_LBRACK, + ACTIONS(10597), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10599), 1, + anon_sym_let, + ACTIONS(10611), 1, + anon_sym_u201c, + ACTIONS(10613), 1, + anon_sym_u2018, + ACTIONS(10615), 1, + anon_sym_BQUOTE, + STATE(9540), 1, + sym_vid, + STATE(9630), 1, + sym__scon, + STATE(9632), 1, + sym_longvid, + STATE(18975), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10581), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + STATE(4125), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [430402] = 22, + ACTIONS(10459), 1, + sym_integer_scon, + ACTIONS(10463), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10465), 1, + sym__symbolic_ident, + ACTIONS(10467), 1, + anon_sym_LPAREN, + ACTIONS(10469), 1, + anon_sym_op, + ACTIONS(10471), 1, + anon_sym_LBRACE, + ACTIONS(10473), 1, + anon_sym_POUND, + ACTIONS(10475), 1, + anon_sym_LBRACK, + ACTIONS(10477), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10479), 1, + anon_sym_let, + ACTIONS(10491), 1, + anon_sym_u201c, + ACTIONS(10493), 1, + anon_sym_u2018, + ACTIONS(10495), 1, + anon_sym_BQUOTE, + STATE(9534), 1, + sym_vid, + STATE(9568), 1, + sym__scon, + STATE(9570), 1, + sym_longvid, + STATE(18883), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10461), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + STATE(4100), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [430495] = 4, + STATE(4115), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(426), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 38, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [430552] = 22, + ACTIONS(10579), 1, + sym_integer_scon, + ACTIONS(10583), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10585), 1, + sym__symbolic_ident, + ACTIONS(10587), 1, + anon_sym_LPAREN, + ACTIONS(10589), 1, + anon_sym_op, + ACTIONS(10591), 1, + anon_sym_LBRACE, + ACTIONS(10593), 1, + anon_sym_POUND, + ACTIONS(10595), 1, + anon_sym_LBRACK, + ACTIONS(10597), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10599), 1, + anon_sym_let, + ACTIONS(10611), 1, + anon_sym_u201c, + ACTIONS(10613), 1, + anon_sym_u2018, + ACTIONS(10615), 1, + anon_sym_BQUOTE, + STATE(9540), 1, + sym_vid, + STATE(9630), 1, + sym__scon, + STATE(9632), 1, + sym_longvid, + STATE(18975), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10581), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + STATE(4101), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [430645] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(10497), 1, + sym_integer_scon, + ACTIONS(10501), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10503), 1, + sym__symbolic_ident, + ACTIONS(10505), 1, + anon_sym_LPAREN, + ACTIONS(10507), 1, + anon_sym_op, + ACTIONS(10509), 1, + anon_sym_LBRACE, + ACTIONS(10511), 1, + anon_sym_POUND, + ACTIONS(10513), 1, + anon_sym_LBRACK, + ACTIONS(10515), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10517), 1, + anon_sym_let, + ACTIONS(10529), 1, + anon_sym_u201c, + ACTIONS(10531), 1, + anon_sym_u2018, + ACTIONS(10533), 1, + anon_sym_BQUOTE, + STATE(10361), 1, + sym__scon, + STATE(10362), 1, + sym_longvid, + STATE(10758), 1, + sym_vid, + STATE(19039), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10499), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + STATE(4172), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [430739] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12156), 1, + anon_sym_IN, + ACTIONS(12160), 1, + anon_sym_DOLLAR, + ACTIONS(12162), 1, + anon_sym_PLUS, + ACTIONS(12164), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12144), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12146), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12150), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12152), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12154), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12148), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12140), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(522), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + ACTIONS(12158), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [430817] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12156), 1, + anon_sym_IN, + ACTIONS(12160), 1, + anon_sym_DOLLAR, + ACTIONS(12162), 1, + anon_sym_PLUS, + ACTIONS(12164), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12144), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12146), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12150), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12152), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12154), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12148), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12140), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(432), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + ACTIONS(12158), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [430895] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(10535), 1, + sym_integer_scon, + ACTIONS(10539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10541), 1, + sym__symbolic_ident, + ACTIONS(10543), 1, + anon_sym_LPAREN, + ACTIONS(10545), 1, + anon_sym_op, + ACTIONS(10547), 1, + anon_sym_LBRACE, + ACTIONS(10549), 1, + anon_sym_POUND, + ACTIONS(10551), 1, + anon_sym_LBRACK, + ACTIONS(10553), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10555), 1, + anon_sym_let, + ACTIONS(10563), 1, + anon_sym_u201c, + ACTIONS(10565), 1, + anon_sym_u2018, + ACTIONS(10567), 1, + anon_sym_BQUOTE, + STATE(10469), 1, + sym__scon, + STATE(10471), 1, + sym_longvid, + STATE(10814), 1, + sym_vid, + STATE(18831), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + STATE(4153), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [430989] = 22, + ACTIONS(10313), 1, + sym_integer_scon, + ACTIONS(10317), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10319), 1, + sym__symbolic_ident, + ACTIONS(10321), 1, + anon_sym_LPAREN, + ACTIONS(10323), 1, + anon_sym_op, + ACTIONS(10325), 1, + anon_sym_LBRACE, + ACTIONS(10327), 1, + anon_sym_POUND, + ACTIONS(10329), 1, + anon_sym_LBRACK, + ACTIONS(10331), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10333), 1, + anon_sym_let, + ACTIONS(10345), 1, + anon_sym_u201c, + ACTIONS(10347), 1, + anon_sym_u2018, + ACTIONS(10349), 1, + anon_sym_BQUOTE, + STATE(10089), 1, + sym__scon, + STATE(10090), 1, + sym_longvid, + STATE(10314), 1, + sym_vid, + STATE(18920), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10315), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + STATE(4131), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [431081] = 22, + ACTIONS(10313), 1, + sym_integer_scon, + ACTIONS(10317), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10319), 1, + sym__symbolic_ident, + ACTIONS(10321), 1, + anon_sym_LPAREN, + ACTIONS(10323), 1, + anon_sym_op, + ACTIONS(10325), 1, + anon_sym_LBRACE, + ACTIONS(10327), 1, + anon_sym_POUND, + ACTIONS(10329), 1, + anon_sym_LBRACK, + ACTIONS(10331), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10333), 1, + anon_sym_let, + ACTIONS(10345), 1, + anon_sym_u201c, + ACTIONS(10347), 1, + anon_sym_u2018, + ACTIONS(10349), 1, + anon_sym_BQUOTE, + STATE(10089), 1, + sym__scon, + STATE(10090), 1, + sym_longvid, + STATE(10314), 1, + sym_vid, + STATE(18920), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10315), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + STATE(4132), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [431173] = 22, + ACTIONS(12166), 1, + sym_integer_scon, + ACTIONS(12172), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12175), 1, + sym__symbolic_ident, + ACTIONS(12178), 1, + anon_sym_LPAREN, + ACTIONS(12181), 1, + anon_sym_op, + ACTIONS(12184), 1, + anon_sym_LBRACE, + ACTIONS(12187), 1, + anon_sym_POUND, + ACTIONS(12190), 1, + anon_sym_LBRACK, + ACTIONS(12193), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12196), 1, + anon_sym_let, + ACTIONS(12199), 1, + anon_sym_u201c, + ACTIONS(12202), 1, + anon_sym_u2018, + ACTIONS(12205), 1, + anon_sym_BQUOTE, + STATE(10089), 1, + sym__scon, + STATE(10090), 1, + sym_longvid, + STATE(10314), 1, + sym_vid, + STATE(18920), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12169), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + STATE(4132), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [431265] = 23, + ACTIONS(11453), 1, + sym_integer_scon, + ACTIONS(11457), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11459), 1, + sym__symbolic_ident, + ACTIONS(11461), 1, + anon_sym_LPAREN, + ACTIONS(11463), 1, + anon_sym_op, + ACTIONS(11465), 1, + anon_sym_LBRACE, + ACTIONS(11467), 1, + anon_sym_POUND, + ACTIONS(11469), 1, + anon_sym_LBRACK, + ACTIONS(11471), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11473), 1, + anon_sym_let, + ACTIONS(11481), 1, + anon_sym_u201c, + ACTIONS(11483), 1, + anon_sym_u2018, + ACTIONS(11485), 1, + anon_sym_BQUOTE, + STATE(10380), 1, + sym__scon, + STATE(10464), 1, + sym_longvid, + STATE(10670), 1, + sym_vid, + STATE(18877), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(11455), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + STATE(4169), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [431359] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12156), 1, + anon_sym_IN, + ACTIONS(12160), 1, + anon_sym_DOLLAR, + ACTIONS(12162), 1, + anon_sym_PLUS, + ACTIONS(12164), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12144), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12146), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12150), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12152), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12154), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12148), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12140), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(470), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + ACTIONS(12158), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [431437] = 27, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12210), 1, + anon_sym_RPAREN, + ACTIONS(12212), 1, + anon_sym_SEMI, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12216), 1, + anon_sym_do, + ACTIONS(12218), 1, + anon_sym_val, + ACTIONS(12220), 1, + anon_sym_fun, + ACTIONS(12222), 1, + anon_sym_type, + ACTIONS(12224), 1, + anon_sym_datatype, + ACTIONS(12226), 1, + anon_sym_abstype, + ACTIONS(12228), 1, + anon_sym_exception, + ACTIONS(12230), 1, + anon_sym_local, + ACTIONS(12232), 1, + anon_sym_open, + ACTIONS(12234), 1, + anon_sym_infix, + ACTIONS(12236), 1, + anon_sym_infixr, + ACTIONS(12238), 1, + anon_sym_nonfix, + ACTIONS(12240), 1, + anon_sym_struct, + ACTIONS(12242), 1, + anon_sym_structure, + STATE(9316), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(22510), 1, + aux_sym_longvid_repeat1, + STATE(24328), 1, + sym__strexp, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8449), 2, + sym__strdec, + aux_sym_fctapp_strexp_repeat1, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [431539] = 22, + ACTIONS(12244), 1, + sym_integer_scon, + ACTIONS(12250), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12253), 1, + sym__symbolic_ident, + ACTIONS(12256), 1, + anon_sym_LPAREN, + ACTIONS(12259), 1, + anon_sym_op, + ACTIONS(12262), 1, + anon_sym_LBRACE, + ACTIONS(12265), 1, + anon_sym_POUND, + ACTIONS(12268), 1, + anon_sym_LBRACK, + ACTIONS(12271), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12274), 1, + anon_sym_let, + ACTIONS(12277), 1, + anon_sym_u201c, + ACTIONS(12280), 1, + anon_sym_u2018, + ACTIONS(12283), 1, + anon_sym_BQUOTE, + STATE(10363), 1, + sym_vid, + STATE(10926), 1, + sym__scon, + STATE(10928), 1, + sym_longvid, + STATE(19259), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12247), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + STATE(4136), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [431631] = 22, + ACTIONS(11221), 1, + sym_integer_scon, + ACTIONS(11225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11227), 1, + sym__symbolic_ident, + ACTIONS(11229), 1, + anon_sym_LPAREN, + ACTIONS(11231), 1, + anon_sym_op, + ACTIONS(11233), 1, + anon_sym_LBRACE, + ACTIONS(11235), 1, + anon_sym_POUND, + ACTIONS(11237), 1, + anon_sym_LBRACK, + ACTIONS(11239), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11241), 1, + anon_sym_let, + ACTIONS(11249), 1, + anon_sym_u201c, + ACTIONS(11251), 1, + anon_sym_u2018, + ACTIONS(11253), 1, + anon_sym_BQUOTE, + STATE(10688), 1, + sym_vid, + STATE(10765), 1, + sym_longvid, + STATE(11018), 1, + sym__scon, + STATE(18998), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11223), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + STATE(4138), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [431723] = 22, + ACTIONS(11221), 1, + sym_integer_scon, + ACTIONS(11225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11227), 1, + sym__symbolic_ident, + ACTIONS(11229), 1, + anon_sym_LPAREN, + ACTIONS(11231), 1, + anon_sym_op, + ACTIONS(11233), 1, + anon_sym_LBRACE, + ACTIONS(11235), 1, + anon_sym_POUND, + ACTIONS(11237), 1, + anon_sym_LBRACK, + ACTIONS(11239), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11241), 1, + anon_sym_let, + ACTIONS(11249), 1, + anon_sym_u201c, + ACTIONS(11251), 1, + anon_sym_u2018, + ACTIONS(11253), 1, + anon_sym_BQUOTE, + STATE(10688), 1, + sym_vid, + STATE(10765), 1, + sym_longvid, + STATE(11018), 1, + sym__scon, + STATE(18998), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11223), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + STATE(4141), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [431815] = 22, + ACTIONS(11153), 1, + sym_integer_scon, + ACTIONS(11157), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11159), 1, + sym__symbolic_ident, + ACTIONS(11161), 1, + anon_sym_LPAREN, + ACTIONS(11163), 1, + anon_sym_op, + ACTIONS(11165), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_POUND, + ACTIONS(11169), 1, + anon_sym_LBRACK, + ACTIONS(11171), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11173), 1, + anon_sym_let, + ACTIONS(11181), 1, + anon_sym_u201c, + ACTIONS(11183), 1, + anon_sym_u2018, + ACTIONS(11185), 1, + anon_sym_BQUOTE, + STATE(10363), 1, + sym_vid, + STATE(10926), 1, + sym__scon, + STATE(10928), 1, + sym_longvid, + STATE(19259), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11155), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + STATE(4136), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [431907] = 27, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12216), 1, + anon_sym_do, + ACTIONS(12218), 1, + anon_sym_val, + ACTIONS(12220), 1, + anon_sym_fun, + ACTIONS(12222), 1, + anon_sym_type, + ACTIONS(12224), 1, + anon_sym_datatype, + ACTIONS(12226), 1, + anon_sym_abstype, + ACTIONS(12228), 1, + anon_sym_exception, + ACTIONS(12230), 1, + anon_sym_local, + ACTIONS(12232), 1, + anon_sym_open, + ACTIONS(12234), 1, + anon_sym_infix, + ACTIONS(12236), 1, + anon_sym_infixr, + ACTIONS(12238), 1, + anon_sym_nonfix, + ACTIONS(12240), 1, + anon_sym_struct, + ACTIONS(12242), 1, + anon_sym_structure, + ACTIONS(12286), 1, + anon_sym_RPAREN, + ACTIONS(12288), 1, + anon_sym_SEMI, + STATE(9316), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(22510), 1, + aux_sym_longvid_repeat1, + STATE(23791), 1, + sym__strexp, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8447), 2, + sym__strdec, + aux_sym_fctapp_strexp_repeat1, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [432009] = 22, + ACTIONS(12290), 1, + sym_integer_scon, + ACTIONS(12296), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12299), 1, + sym__symbolic_ident, + ACTIONS(12302), 1, + anon_sym_LPAREN, + ACTIONS(12305), 1, + anon_sym_op, + ACTIONS(12308), 1, + anon_sym_LBRACE, + ACTIONS(12311), 1, + anon_sym_POUND, + ACTIONS(12314), 1, + anon_sym_LBRACK, + ACTIONS(12317), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12320), 1, + anon_sym_let, + ACTIONS(12323), 1, + anon_sym_u201c, + ACTIONS(12326), 1, + anon_sym_u2018, + ACTIONS(12329), 1, + anon_sym_BQUOTE, + STATE(10688), 1, + sym_vid, + STATE(10765), 1, + sym_longvid, + STATE(11018), 1, + sym__scon, + STATE(18998), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12293), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + STATE(4141), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [432101] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12160), 1, + anon_sym_DOLLAR, + ACTIONS(12162), 1, + anon_sym_PLUS, + ACTIONS(12164), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12146), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 33, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [432165] = 12, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12156), 1, + anon_sym_IN, + ACTIONS(12160), 1, + anon_sym_DOLLAR, + ACTIONS(12162), 1, + anon_sym_PLUS, + ACTIONS(12164), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12144), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12146), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12154), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12140), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12158), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + [432237] = 22, + ACTIONS(10263), 1, + sym_integer_scon, + ACTIONS(10267), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10269), 1, + sym__symbolic_ident, + ACTIONS(10271), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_op, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10277), 1, + anon_sym_POUND, + ACTIONS(10279), 1, + anon_sym_LBRACK, + ACTIONS(10281), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10283), 1, + anon_sym_let, + ACTIONS(10295), 1, + anon_sym_u201c, + ACTIONS(10297), 1, + anon_sym_u2018, + ACTIONS(10299), 1, + anon_sym_BQUOTE, + STATE(10294), 1, + sym_vid, + STATE(10934), 1, + sym__scon, + STATE(10938), 1, + sym_longvid, + STATE(18723), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10265), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + STATE(4145), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [432329] = 22, + ACTIONS(10263), 1, + sym_integer_scon, + ACTIONS(10267), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10269), 1, + sym__symbolic_ident, + ACTIONS(10271), 1, + anon_sym_LPAREN, + ACTIONS(10273), 1, + anon_sym_op, + ACTIONS(10275), 1, + anon_sym_LBRACE, + ACTIONS(10277), 1, + anon_sym_POUND, + ACTIONS(10279), 1, + anon_sym_LBRACK, + ACTIONS(10281), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10283), 1, + anon_sym_let, + ACTIONS(10295), 1, + anon_sym_u201c, + ACTIONS(10297), 1, + anon_sym_u2018, + ACTIONS(10299), 1, + anon_sym_BQUOTE, + STATE(10294), 1, + sym_vid, + STATE(10934), 1, + sym__scon, + STATE(10938), 1, + sym_longvid, + STATE(18723), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10265), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + STATE(4146), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [432421] = 22, + ACTIONS(12332), 1, + sym_integer_scon, + ACTIONS(12338), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12341), 1, + sym__symbolic_ident, + ACTIONS(12344), 1, + anon_sym_LPAREN, + ACTIONS(12347), 1, + anon_sym_op, + ACTIONS(12350), 1, + anon_sym_LBRACE, + ACTIONS(12353), 1, + anon_sym_POUND, + ACTIONS(12356), 1, + anon_sym_LBRACK, + ACTIONS(12359), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12362), 1, + anon_sym_let, + ACTIONS(12365), 1, + anon_sym_u201c, + ACTIONS(12368), 1, + anon_sym_u2018, + ACTIONS(12371), 1, + anon_sym_BQUOTE, + STATE(10294), 1, + sym_vid, + STATE(10934), 1, + sym__scon, + STATE(10938), 1, + sym_longvid, + STATE(18723), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12335), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + STATE(4146), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [432513] = 7, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12162), 1, + anon_sym_PLUS, + ACTIONS(12164), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12146), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + [432575] = 22, + ACTIONS(10741), 1, + sym_integer_scon, + ACTIONS(10745), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10747), 1, + sym__symbolic_ident, + ACTIONS(10749), 1, + anon_sym_LPAREN, + ACTIONS(10751), 1, + anon_sym_op, + ACTIONS(10753), 1, + anon_sym_LBRACE, + ACTIONS(10755), 1, + anon_sym_POUND, + ACTIONS(10757), 1, + anon_sym_LBRACK, + ACTIONS(10759), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10761), 1, + anon_sym_let, + ACTIONS(10769), 1, + anon_sym_u201c, + ACTIONS(10771), 1, + anon_sym_u2018, + ACTIONS(10773), 1, + anon_sym_BQUOTE, + STATE(10197), 1, + sym__scon, + STATE(10198), 1, + sym_longvid, + STATE(10359), 1, + sym_vid, + STATE(18857), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10743), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + STATE(4149), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [432667] = 22, + ACTIONS(10741), 1, + sym_integer_scon, + ACTIONS(10745), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10747), 1, + sym__symbolic_ident, + ACTIONS(10749), 1, + anon_sym_LPAREN, + ACTIONS(10751), 1, + anon_sym_op, + ACTIONS(10753), 1, + anon_sym_LBRACE, + ACTIONS(10755), 1, + anon_sym_POUND, + ACTIONS(10757), 1, + anon_sym_LBRACK, + ACTIONS(10759), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10761), 1, + anon_sym_let, + ACTIONS(10769), 1, + anon_sym_u201c, + ACTIONS(10771), 1, + anon_sym_u2018, + ACTIONS(10773), 1, + anon_sym_BQUOTE, + STATE(10197), 1, + sym__scon, + STATE(10198), 1, + sym_longvid, + STATE(10359), 1, + sym_vid, + STATE(18857), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10743), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + STATE(4174), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [432759] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(12374), 1, + sym_integer_scon, + ACTIONS(12380), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12383), 1, + sym__symbolic_ident, + ACTIONS(12386), 1, + anon_sym_LPAREN, + ACTIONS(12389), 1, + anon_sym_op, + ACTIONS(12392), 1, + anon_sym_LBRACE, + ACTIONS(12395), 1, + anon_sym_POUND, + ACTIONS(12398), 1, + anon_sym_LBRACK, + ACTIONS(12401), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12404), 1, + anon_sym_let, + ACTIONS(12407), 1, + anon_sym_u201c, + ACTIONS(12410), 1, + anon_sym_u2018, + ACTIONS(12413), 1, + anon_sym_BQUOTE, + STATE(10361), 1, + sym__scon, + STATE(10362), 1, + sym_longvid, + STATE(10758), 1, + sym_vid, + STATE(19039), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12377), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + STATE(4150), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [432853] = 23, + ACTIONS(11493), 1, + sym_integer_scon, + ACTIONS(11497), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11499), 1, + sym__symbolic_ident, + ACTIONS(11501), 1, + anon_sym_LPAREN, + ACTIONS(11503), 1, + anon_sym_op, + ACTIONS(11505), 1, + anon_sym_LBRACE, + ACTIONS(11507), 1, + anon_sym_POUND, + ACTIONS(11509), 1, + anon_sym_LBRACK, + ACTIONS(11511), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11513), 1, + anon_sym_let, + ACTIONS(11521), 1, + anon_sym_u201c, + ACTIONS(11523), 1, + anon_sym_u2018, + ACTIONS(11525), 1, + anon_sym_BQUOTE, + STATE(10475), 1, + sym__scon, + STATE(10498), 1, + sym_longvid, + STATE(10787), 1, + sym_vid, + STATE(19019), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(11495), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + STATE(4157), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [432947] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [433003] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(10535), 1, + sym_integer_scon, + ACTIONS(10539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10541), 1, + sym__symbolic_ident, + ACTIONS(10543), 1, + anon_sym_LPAREN, + ACTIONS(10545), 1, + anon_sym_op, + ACTIONS(10547), 1, + anon_sym_LBRACE, + ACTIONS(10549), 1, + anon_sym_POUND, + ACTIONS(10551), 1, + anon_sym_LBRACK, + ACTIONS(10553), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10555), 1, + anon_sym_let, + ACTIONS(10563), 1, + anon_sym_u201c, + ACTIONS(10565), 1, + anon_sym_u2018, + ACTIONS(10567), 1, + anon_sym_BQUOTE, + STATE(10469), 1, + sym__scon, + STATE(10471), 1, + sym_longvid, + STATE(10814), 1, + sym_vid, + STATE(18831), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + STATE(4164), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [433097] = 23, + ACTIONS(12422), 1, + sym_integer_scon, + ACTIONS(12428), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12431), 1, + sym__symbolic_ident, + ACTIONS(12434), 1, + anon_sym_LPAREN, + ACTIONS(12437), 1, + anon_sym_op, + ACTIONS(12440), 1, + anon_sym_LBRACE, + ACTIONS(12443), 1, + anon_sym_POUND, + ACTIONS(12446), 1, + anon_sym_LBRACK, + ACTIONS(12449), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12452), 1, + anon_sym_let, + ACTIONS(12455), 1, + anon_sym_u201c, + ACTIONS(12458), 1, + anon_sym_u2018, + ACTIONS(12461), 1, + anon_sym_BQUOTE, + STATE(10475), 1, + sym__scon, + STATE(10498), 1, + sym_longvid, + STATE(10787), 1, + sym_vid, + STATE(19019), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(12425), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + STATE(4154), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [433191] = 23, + ACTIONS(11453), 1, + sym_integer_scon, + ACTIONS(11457), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11459), 1, + sym__symbolic_ident, + ACTIONS(11461), 1, + anon_sym_LPAREN, + ACTIONS(11463), 1, + anon_sym_op, + ACTIONS(11465), 1, + anon_sym_LBRACE, + ACTIONS(11467), 1, + anon_sym_POUND, + ACTIONS(11469), 1, + anon_sym_LBRACK, + ACTIONS(11471), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11473), 1, + anon_sym_let, + ACTIONS(11481), 1, + anon_sym_u201c, + ACTIONS(11483), 1, + anon_sym_u2018, + ACTIONS(11485), 1, + anon_sym_BQUOTE, + STATE(10380), 1, + sym__scon, + STATE(10464), 1, + sym_longvid, + STATE(10670), 1, + sym_vid, + STATE(18877), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(11455), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + STATE(4133), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [433285] = 14, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12156), 1, + anon_sym_IN, + ACTIONS(12160), 1, + anon_sym_DOLLAR, + ACTIONS(12162), 1, + anon_sym_PLUS, + ACTIONS(12164), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12144), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12146), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12150), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12152), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12154), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12140), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12158), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [433361] = 23, + ACTIONS(11493), 1, + sym_integer_scon, + ACTIONS(11497), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11499), 1, + sym__symbolic_ident, + ACTIONS(11501), 1, + anon_sym_LPAREN, + ACTIONS(11503), 1, + anon_sym_op, + ACTIONS(11505), 1, + anon_sym_LBRACE, + ACTIONS(11507), 1, + anon_sym_POUND, + ACTIONS(11509), 1, + anon_sym_LBRACK, + ACTIONS(11511), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11513), 1, + anon_sym_let, + ACTIONS(11521), 1, + anon_sym_u201c, + ACTIONS(11523), 1, + anon_sym_u2018, + ACTIONS(11525), 1, + anon_sym_BQUOTE, + STATE(10475), 1, + sym__scon, + STATE(10498), 1, + sym_longvid, + STATE(10787), 1, + sym_vid, + STATE(19019), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(11495), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + STATE(4154), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [433455] = 22, + ACTIONS(11045), 1, + sym_integer_scon, + ACTIONS(11049), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11051), 1, + sym__symbolic_ident, + ACTIONS(11053), 1, + anon_sym_LPAREN, + ACTIONS(11055), 1, + anon_sym_op, + ACTIONS(11057), 1, + anon_sym_LBRACE, + ACTIONS(11059), 1, + anon_sym_POUND, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11065), 1, + anon_sym_let, + ACTIONS(11073), 1, + anon_sym_u201c, + ACTIONS(11075), 1, + anon_sym_u2018, + ACTIONS(11077), 1, + anon_sym_BQUOTE, + STATE(10611), 1, + sym__scon, + STATE(10612), 1, + sym_longvid, + STATE(10631), 1, + sym_vid, + STATE(19243), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11047), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + STATE(4159), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [433547] = 22, + ACTIONS(11045), 1, + sym_integer_scon, + ACTIONS(11049), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11051), 1, + sym__symbolic_ident, + ACTIONS(11053), 1, + anon_sym_LPAREN, + ACTIONS(11055), 1, + anon_sym_op, + ACTIONS(11057), 1, + anon_sym_LBRACE, + ACTIONS(11059), 1, + anon_sym_POUND, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11065), 1, + anon_sym_let, + ACTIONS(11073), 1, + anon_sym_u201c, + ACTIONS(11075), 1, + anon_sym_u2018, + ACTIONS(11077), 1, + anon_sym_BQUOTE, + STATE(10611), 1, + sym__scon, + STATE(10612), 1, + sym_longvid, + STATE(10631), 1, + sym_vid, + STATE(19243), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11047), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + STATE(4160), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [433639] = 22, + ACTIONS(12464), 1, + sym_integer_scon, + ACTIONS(12470), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12473), 1, + sym__symbolic_ident, + ACTIONS(12476), 1, + anon_sym_LPAREN, + ACTIONS(12479), 1, + anon_sym_op, + ACTIONS(12482), 1, + anon_sym_LBRACE, + ACTIONS(12485), 1, + anon_sym_POUND, + ACTIONS(12488), 1, + anon_sym_LBRACK, + ACTIONS(12491), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12494), 1, + anon_sym_let, + ACTIONS(12497), 1, + anon_sym_u201c, + ACTIONS(12500), 1, + anon_sym_u2018, + ACTIONS(12503), 1, + anon_sym_BQUOTE, + STATE(10611), 1, + sym__scon, + STATE(10612), 1, + sym_longvid, + STATE(10631), 1, + sym_vid, + STATE(19243), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12467), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + STATE(4160), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [433731] = 22, + ACTIONS(11085), 1, + sym_integer_scon, + ACTIONS(11089), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11091), 1, + sym__symbolic_ident, + ACTIONS(11093), 1, + anon_sym_LPAREN, + ACTIONS(11095), 1, + anon_sym_op, + ACTIONS(11097), 1, + anon_sym_LBRACE, + ACTIONS(11099), 1, + anon_sym_POUND, + ACTIONS(11101), 1, + anon_sym_LBRACK, + ACTIONS(11103), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11105), 1, + anon_sym_let, + ACTIONS(11113), 1, + anon_sym_u201c, + ACTIONS(11115), 1, + anon_sym_u2018, + ACTIONS(11117), 1, + anon_sym_BQUOTE, + STATE(10226), 1, + sym_vid, + STATE(10780), 1, + sym__scon, + STATE(10790), 1, + sym_longvid, + STATE(19038), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11087), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + STATE(4163), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [433823] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12156), 1, + anon_sym_IN, + ACTIONS(12160), 1, + anon_sym_DOLLAR, + ACTIONS(12162), 1, + anon_sym_PLUS, + ACTIONS(12164), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12144), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12146), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12152), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12154), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12140), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12158), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [433897] = 22, + ACTIONS(11085), 1, + sym_integer_scon, + ACTIONS(11089), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11091), 1, + sym__symbolic_ident, + ACTIONS(11093), 1, + anon_sym_LPAREN, + ACTIONS(11095), 1, + anon_sym_op, + ACTIONS(11097), 1, + anon_sym_LBRACE, + ACTIONS(11099), 1, + anon_sym_POUND, + ACTIONS(11101), 1, + anon_sym_LBRACK, + ACTIONS(11103), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11105), 1, + anon_sym_let, + ACTIONS(11113), 1, + anon_sym_u201c, + ACTIONS(11115), 1, + anon_sym_u2018, + ACTIONS(11117), 1, + anon_sym_BQUOTE, + STATE(10226), 1, + sym_vid, + STATE(10780), 1, + sym__scon, + STATE(10790), 1, + sym_longvid, + STATE(19038), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11087), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + STATE(4173), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [433989] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(12506), 1, + sym_integer_scon, + ACTIONS(12512), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12515), 1, + sym__symbolic_ident, + ACTIONS(12518), 1, + anon_sym_LPAREN, + ACTIONS(12521), 1, + anon_sym_op, + ACTIONS(12524), 1, + anon_sym_LBRACE, + ACTIONS(12527), 1, + anon_sym_POUND, + ACTIONS(12530), 1, + anon_sym_LBRACK, + ACTIONS(12533), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12536), 1, + anon_sym_let, + ACTIONS(12539), 1, + anon_sym_u201c, + ACTIONS(12542), 1, + anon_sym_u2018, + ACTIONS(12545), 1, + anon_sym_BQUOTE, + STATE(10469), 1, + sym__scon, + STATE(10471), 1, + sym_longvid, + STATE(10814), 1, + sym_vid, + STATE(18831), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12509), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + STATE(4164), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [434083] = 22, + ACTIONS(11153), 1, + sym_integer_scon, + ACTIONS(11157), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11159), 1, + sym__symbolic_ident, + ACTIONS(11161), 1, + anon_sym_LPAREN, + ACTIONS(11163), 1, + anon_sym_op, + ACTIONS(11165), 1, + anon_sym_LBRACE, + ACTIONS(11167), 1, + anon_sym_POUND, + ACTIONS(11169), 1, + anon_sym_LBRACK, + ACTIONS(11171), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11173), 1, + anon_sym_let, + ACTIONS(11181), 1, + anon_sym_u201c, + ACTIONS(11183), 1, + anon_sym_u2018, + ACTIONS(11185), 1, + anon_sym_BQUOTE, + STATE(10363), 1, + sym_vid, + STATE(10926), 1, + sym__scon, + STATE(10928), 1, + sym_longvid, + STATE(19259), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11155), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + STATE(4139), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [434175] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12156), 1, + anon_sym_IN, + ACTIONS(12160), 1, + anon_sym_DOLLAR, + ACTIONS(12162), 1, + anon_sym_PLUS, + ACTIONS(12164), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12144), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12146), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12152), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12154), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12140), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12158), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [434249] = 10, + ACTIONS(520), 1, + anon_sym_IN, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12160), 1, + anon_sym_DOLLAR, + ACTIONS(12162), 1, + anon_sym_PLUS, + ACTIONS(12164), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12146), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12140), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12158), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 20, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + [434317] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12160), 1, + anon_sym_DOLLAR, + ACTIONS(12162), 1, + anon_sym_PLUS, + ACTIONS(12164), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12146), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 33, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [434381] = 23, + ACTIONS(12548), 1, + sym_integer_scon, + ACTIONS(12554), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12557), 1, + sym__symbolic_ident, + ACTIONS(12560), 1, + anon_sym_LPAREN, + ACTIONS(12563), 1, + anon_sym_op, + ACTIONS(12566), 1, + anon_sym_LBRACE, + ACTIONS(12569), 1, + anon_sym_POUND, + ACTIONS(12572), 1, + anon_sym_LBRACK, + ACTIONS(12575), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12578), 1, + anon_sym_let, + ACTIONS(12581), 1, + anon_sym_u201c, + ACTIONS(12584), 1, + anon_sym_u2018, + ACTIONS(12587), 1, + anon_sym_BQUOTE, + STATE(10380), 1, + sym__scon, + STATE(10464), 1, + sym_longvid, + STATE(10670), 1, + sym_vid, + STATE(18877), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(12551), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + STATE(4169), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [434475] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12164), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 37, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [434533] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12164), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 37, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [434591] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(10497), 1, + sym_integer_scon, + ACTIONS(10501), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10503), 1, + sym__symbolic_ident, + ACTIONS(10505), 1, + anon_sym_LPAREN, + ACTIONS(10507), 1, + anon_sym_op, + ACTIONS(10509), 1, + anon_sym_LBRACE, + ACTIONS(10511), 1, + anon_sym_POUND, + ACTIONS(10513), 1, + anon_sym_LBRACK, + ACTIONS(10515), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10517), 1, + anon_sym_let, + ACTIONS(10529), 1, + anon_sym_u201c, + ACTIONS(10531), 1, + anon_sym_u2018, + ACTIONS(10533), 1, + anon_sym_BQUOTE, + STATE(10361), 1, + sym__scon, + STATE(10362), 1, + sym_longvid, + STATE(10758), 1, + sym_vid, + STATE(19039), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10499), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + STATE(4150), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [434685] = 22, + ACTIONS(12590), 1, + sym_integer_scon, + ACTIONS(12596), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12599), 1, + sym__symbolic_ident, + ACTIONS(12602), 1, + anon_sym_LPAREN, + ACTIONS(12605), 1, + anon_sym_op, + ACTIONS(12608), 1, + anon_sym_LBRACE, + ACTIONS(12611), 1, + anon_sym_POUND, + ACTIONS(12614), 1, + anon_sym_LBRACK, + ACTIONS(12617), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12620), 1, + anon_sym_let, + ACTIONS(12623), 1, + anon_sym_u201c, + ACTIONS(12626), 1, + anon_sym_u2018, + ACTIONS(12629), 1, + anon_sym_BQUOTE, + STATE(10226), 1, + sym_vid, + STATE(10780), 1, + sym__scon, + STATE(10790), 1, + sym_longvid, + STATE(19038), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12593), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + STATE(4173), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [434777] = 22, + ACTIONS(12632), 1, + sym_integer_scon, + ACTIONS(12638), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12641), 1, + sym__symbolic_ident, + ACTIONS(12644), 1, + anon_sym_LPAREN, + ACTIONS(12647), 1, + anon_sym_op, + ACTIONS(12650), 1, + anon_sym_LBRACE, + ACTIONS(12653), 1, + anon_sym_POUND, + ACTIONS(12656), 1, + anon_sym_LBRACK, + ACTIONS(12659), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12662), 1, + anon_sym_let, + ACTIONS(12665), 1, + anon_sym_u201c, + ACTIONS(12668), 1, + anon_sym_u2018, + ACTIONS(12671), 1, + anon_sym_BQUOTE, + STATE(10197), 1, + sym__scon, + STATE(10198), 1, + sym_longvid, + STATE(10359), 1, + sym_vid, + STATE(18857), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12635), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + STATE(4174), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [434869] = 12, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + [434940] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12694), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [434993] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12698), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [435046] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12702), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [435099] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12706), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [435152] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12710), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [435205] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12714), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [435258] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12718), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [435311] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12722), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [435364] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12726), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [435417] = 22, + ACTIONS(8009), 1, + sym_integer_scon, + ACTIONS(8013), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8015), 1, + sym__symbolic_ident, + ACTIONS(8019), 1, + anon_sym_op, + ACTIONS(8021), 1, + anon_sym_LBRACE, + ACTIONS(8023), 1, + anon_sym_POUND, + ACTIONS(8025), 1, + anon_sym_LBRACK, + ACTIONS(8027), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8029), 1, + anon_sym_let, + ACTIONS(8041), 1, + anon_sym_u201c, + ACTIONS(8043), 1, + anon_sym_u2018, + ACTIONS(8045), 1, + anon_sym_BQUOTE, + ACTIONS(11527), 1, + anon_sym_LPAREN, + STATE(11539), 1, + sym_vid, + STATE(11804), 1, + sym__scon, + STATE(11810), 1, + sym_longvid, + STATE(18835), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8011), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + STATE(4186), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [435508] = 22, + ACTIONS(8009), 1, + sym_integer_scon, + ACTIONS(8013), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8015), 1, + sym__symbolic_ident, + ACTIONS(8019), 1, + anon_sym_op, + ACTIONS(8021), 1, + anon_sym_LBRACE, + ACTIONS(8023), 1, + anon_sym_POUND, + ACTIONS(8025), 1, + anon_sym_LBRACK, + ACTIONS(8027), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8029), 1, + anon_sym_let, + ACTIONS(8041), 1, + anon_sym_u201c, + ACTIONS(8043), 1, + anon_sym_u2018, + ACTIONS(8045), 1, + anon_sym_BQUOTE, + ACTIONS(11527), 1, + anon_sym_LPAREN, + STATE(11539), 1, + sym_vid, + STATE(11804), 1, + sym__scon, + STATE(11810), 1, + sym_longvid, + STATE(18835), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8011), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + STATE(4187), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [435599] = 22, + ACTIONS(12728), 1, + sym_integer_scon, + ACTIONS(12734), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12737), 1, + sym__symbolic_ident, + ACTIONS(12740), 1, + anon_sym_LPAREN, + ACTIONS(12743), 1, + anon_sym_op, + ACTIONS(12746), 1, + anon_sym_LBRACE, + ACTIONS(12749), 1, + anon_sym_POUND, + ACTIONS(12752), 1, + anon_sym_LBRACK, + ACTIONS(12755), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12758), 1, + anon_sym_let, + ACTIONS(12761), 1, + anon_sym_u201c, + ACTIONS(12764), 1, + anon_sym_u2018, + ACTIONS(12767), 1, + anon_sym_BQUOTE, + STATE(11539), 1, + sym_vid, + STATE(11804), 1, + sym__scon, + STATE(11810), 1, + sym_longvid, + STATE(18835), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12731), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + STATE(4187), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [435690] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12772), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [435743] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12776), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [435796] = 7, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 33, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + [435857] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [435912] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(432), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [435989] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12786), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [436042] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12790), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [436095] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12794), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [436148] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12798), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [436201] = 22, + ACTIONS(10155), 1, + sym_integer_scon, + ACTIONS(10159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10161), 1, + sym__symbolic_ident, + ACTIONS(10163), 1, + anon_sym_LPAREN, + ACTIONS(10165), 1, + anon_sym_op, + ACTIONS(10167), 1, + anon_sym_LBRACE, + ACTIONS(10169), 1, + anon_sym_POUND, + ACTIONS(10171), 1, + anon_sym_LBRACK, + ACTIONS(10173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10175), 1, + anon_sym_let, + ACTIONS(10187), 1, + anon_sym_u201c, + ACTIONS(10189), 1, + anon_sym_u2018, + ACTIONS(10191), 1, + anon_sym_BQUOTE, + STATE(11565), 1, + sym__scon, + STATE(11568), 1, + sym_longvid, + STATE(11798), 1, + sym_vid, + STATE(19156), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + STATE(4202), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [436292] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 36, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [436349] = 14, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [436424] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [436479] = 22, + ACTIONS(12800), 1, + sym_integer_scon, + ACTIONS(12806), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12809), 1, + sym__symbolic_ident, + ACTIONS(12812), 1, + anon_sym_LPAREN, + ACTIONS(12815), 1, + anon_sym_op, + ACTIONS(12818), 1, + anon_sym_LBRACE, + ACTIONS(12821), 1, + anon_sym_POUND, + ACTIONS(12824), 1, + anon_sym_LBRACK, + ACTIONS(12827), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12830), 1, + anon_sym_let, + ACTIONS(12833), 1, + anon_sym_u201c, + ACTIONS(12836), 1, + anon_sym_u2018, + ACTIONS(12839), 1, + anon_sym_BQUOTE, + STATE(11124), 1, + sym__scon, + STATE(11150), 1, + sym_longvid, + STATE(11447), 1, + sym_vid, + STATE(19138), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12803), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + STATE(4201), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [436570] = 22, + ACTIONS(10155), 1, + sym_integer_scon, + ACTIONS(10159), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10161), 1, + sym__symbolic_ident, + ACTIONS(10163), 1, + anon_sym_LPAREN, + ACTIONS(10165), 1, + anon_sym_op, + ACTIONS(10167), 1, + anon_sym_LBRACE, + ACTIONS(10169), 1, + anon_sym_POUND, + ACTIONS(10171), 1, + anon_sym_LBRACK, + ACTIONS(10173), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10175), 1, + anon_sym_let, + ACTIONS(10187), 1, + anon_sym_u201c, + ACTIONS(10189), 1, + anon_sym_u2018, + ACTIONS(10191), 1, + anon_sym_BQUOTE, + STATE(11565), 1, + sym__scon, + STATE(11568), 1, + sym_longvid, + STATE(11798), 1, + sym_vid, + STATE(19156), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10157), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + STATE(4209), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [436661] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12844), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [436714] = 22, + ACTIONS(11119), 1, + sym_integer_scon, + ACTIONS(11123), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11125), 1, + sym__symbolic_ident, + ACTIONS(11127), 1, + anon_sym_LPAREN, + ACTIONS(11129), 1, + anon_sym_op, + ACTIONS(11131), 1, + anon_sym_LBRACE, + ACTIONS(11133), 1, + anon_sym_POUND, + ACTIONS(11135), 1, + anon_sym_LBRACK, + ACTIONS(11137), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11139), 1, + anon_sym_let, + ACTIONS(11147), 1, + anon_sym_u201c, + ACTIONS(11149), 1, + anon_sym_u2018, + ACTIONS(11151), 1, + anon_sym_BQUOTE, + STATE(11153), 1, + sym__scon, + STATE(11157), 1, + sym_longvid, + STATE(11752), 1, + sym_vid, + STATE(19204), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11121), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + STATE(4252), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [436805] = 23, + ACTIONS(1001), 1, + anon_sym_SEMI, + ACTIONS(12846), 1, + sym_integer_scon, + ACTIONS(12852), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12855), 1, + sym__symbolic_ident, + ACTIONS(12858), 1, + anon_sym_LPAREN, + ACTIONS(12861), 1, + anon_sym_op, + ACTIONS(12864), 1, + anon_sym_LBRACE, + ACTIONS(12867), 1, + anon_sym_POUND, + ACTIONS(12870), 1, + anon_sym_LBRACK, + ACTIONS(12873), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12876), 1, + anon_sym_let, + ACTIONS(12879), 1, + anon_sym_u201c, + ACTIONS(12882), 1, + anon_sym_u2018, + ACTIONS(12885), 1, + anon_sym_BQUOTE, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12849), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 5, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + STATE(4205), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [436898] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12890), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [436951] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 32, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [437014] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12894), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [437067] = 22, + ACTIONS(12896), 1, + sym_integer_scon, + ACTIONS(12902), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12905), 1, + sym__symbolic_ident, + ACTIONS(12908), 1, + anon_sym_LPAREN, + ACTIONS(12911), 1, + anon_sym_op, + ACTIONS(12914), 1, + anon_sym_LBRACE, + ACTIONS(12917), 1, + anon_sym_POUND, + ACTIONS(12920), 1, + anon_sym_LBRACK, + ACTIONS(12923), 1, + anon_sym_POUND_LBRACK, + ACTIONS(12926), 1, + anon_sym_let, + ACTIONS(12929), 1, + anon_sym_u201c, + ACTIONS(12932), 1, + anon_sym_u2018, + ACTIONS(12935), 1, + anon_sym_BQUOTE, + STATE(11565), 1, + sym__scon, + STATE(11568), 1, + sym_longvid, + STATE(11798), 1, + sym_vid, + STATE(19156), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12899), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + STATE(4209), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [437158] = 22, + ACTIONS(10193), 1, + sym_integer_scon, + ACTIONS(10197), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10199), 1, + sym__symbolic_ident, + ACTIONS(10201), 1, + anon_sym_LPAREN, + ACTIONS(10203), 1, + anon_sym_op, + ACTIONS(10205), 1, + anon_sym_LBRACE, + ACTIONS(10207), 1, + anon_sym_POUND, + ACTIONS(10209), 1, + anon_sym_LBRACK, + ACTIONS(10211), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10213), 1, + anon_sym_let, + ACTIONS(10221), 1, + anon_sym_u201c, + ACTIONS(10223), 1, + anon_sym_u2018, + ACTIONS(10225), 1, + anon_sym_BQUOTE, + STATE(11171), 1, + sym_vid, + STATE(11751), 1, + sym__scon, + STATE(11755), 1, + sym_longvid, + STATE(18888), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10195), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + STATE(4216), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [437249] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12940), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [437302] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12944), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [437355] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12948), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [437408] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12952), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [437461] = 22, + ACTIONS(8147), 1, + sym_integer_scon, + ACTIONS(8151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8153), 1, + sym__symbolic_ident, + ACTIONS(8157), 1, + anon_sym_op, + ACTIONS(8159), 1, + anon_sym_LBRACE, + ACTIONS(8161), 1, + anon_sym_POUND, + ACTIONS(8163), 1, + anon_sym_LBRACK, + ACTIONS(8165), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8167), 1, + anon_sym_let, + ACTIONS(8179), 1, + anon_sym_u201c, + ACTIONS(8181), 1, + anon_sym_u2018, + ACTIONS(8183), 1, + anon_sym_BQUOTE, + ACTIONS(11529), 1, + anon_sym_LPAREN, + STATE(11124), 1, + sym__scon, + STATE(11150), 1, + sym_longvid, + STATE(11447), 1, + sym_vid, + STATE(19138), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8149), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + STATE(4235), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [437552] = 22, + ACTIONS(10193), 1, + sym_integer_scon, + ACTIONS(10197), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10199), 1, + sym__symbolic_ident, + ACTIONS(10201), 1, + anon_sym_LPAREN, + ACTIONS(10203), 1, + anon_sym_op, + ACTIONS(10205), 1, + anon_sym_LBRACE, + ACTIONS(10207), 1, + anon_sym_POUND, + ACTIONS(10209), 1, + anon_sym_LBRACK, + ACTIONS(10211), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10213), 1, + anon_sym_let, + ACTIONS(10221), 1, + anon_sym_u201c, + ACTIONS(10223), 1, + anon_sym_u2018, + ACTIONS(10225), 1, + anon_sym_BQUOTE, + STATE(11171), 1, + sym_vid, + STATE(11751), 1, + sym__scon, + STATE(11755), 1, + sym_longvid, + STATE(18888), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10195), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + STATE(4225), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [437643] = 23, + ACTIONS(965), 1, + anon_sym_SEMI, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 5, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + STATE(4221), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [437736] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12956), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [437789] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12960), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [437842] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12964), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [437895] = 23, + ACTIONS(997), 1, + anon_sym_SEMI, + ACTIONS(5789), 1, + sym_integer_scon, + ACTIONS(5793), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(5795), 1, + sym__symbolic_ident, + ACTIONS(5797), 1, + anon_sym_LPAREN, + ACTIONS(5799), 1, + anon_sym_op, + ACTIONS(5801), 1, + anon_sym_LBRACE, + ACTIONS(5803), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5811), 1, + anon_sym_let, + ACTIONS(5825), 1, + anon_sym_u201c, + ACTIONS(5827), 1, + anon_sym_u2018, + ACTIONS(5829), 1, + anon_sym_BQUOTE, + STATE(11420), 1, + sym_vid, + STATE(11508), 1, + sym__scon, + STATE(11596), 1, + sym_longvid, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(5791), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 5, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + STATE(4205), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [437988] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12968), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [438041] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12972), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [438094] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(522), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [438171] = 22, + ACTIONS(12974), 1, + sym_integer_scon, + ACTIONS(12980), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12983), 1, + sym__symbolic_ident, + ACTIONS(12986), 1, + anon_sym_LPAREN, + ACTIONS(12989), 1, + anon_sym_op, + ACTIONS(12992), 1, + anon_sym_LBRACE, + ACTIONS(12995), 1, + anon_sym_POUND, + ACTIONS(12998), 1, + anon_sym_LBRACK, + ACTIONS(13001), 1, + anon_sym_POUND_LBRACK, + ACTIONS(13004), 1, + anon_sym_let, + ACTIONS(13007), 1, + anon_sym_u201c, + ACTIONS(13010), 1, + anon_sym_u2018, + ACTIONS(13013), 1, + anon_sym_BQUOTE, + STATE(11171), 1, + sym_vid, + STATE(11751), 1, + sym__scon, + STATE(11755), 1, + sym_longvid, + STATE(18888), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12977), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + STATE(4225), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [438262] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13018), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [438315] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13022), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [438368] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [438423] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13026), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [438476] = 23, + ACTIONS(7), 1, + sym_integer_scon, + ACTIONS(11), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13), 1, + sym__symbolic_ident, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + anon_sym_op, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_POUND_LBRACK, + ACTIONS(27), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_u201c, + ACTIONS(71), 1, + anon_sym_u2018, + ACTIONS(73), 1, + anon_sym_BQUOTE, + STATE(10287), 1, + sym_vid, + STATE(11359), 1, + sym__scon, + STATE(11478), 1, + sym_longvid, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(965), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(9), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 4, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + STATE(4232), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [438569] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13030), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [438622] = 23, + ACTIONS(7), 1, + sym_integer_scon, + ACTIONS(11), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13), 1, + sym__symbolic_ident, + ACTIONS(15), 1, + anon_sym_LPAREN, + ACTIONS(17), 1, + anon_sym_op, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(21), 1, + anon_sym_POUND, + ACTIONS(23), 1, + anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_POUND_LBRACK, + ACTIONS(27), 1, + anon_sym_let, + ACTIONS(69), 1, + anon_sym_u201c, + ACTIONS(71), 1, + anon_sym_u2018, + ACTIONS(73), 1, + anon_sym_BQUOTE, + STATE(10287), 1, + sym_vid, + STATE(11359), 1, + sym__scon, + STATE(11478), 1, + sym_longvid, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(997), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(9), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 4, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + STATE(4260), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [438715] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13034), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [438768] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13038), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [438821] = 22, + ACTIONS(8147), 1, + sym_integer_scon, + ACTIONS(8151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(8153), 1, + sym__symbolic_ident, + ACTIONS(8157), 1, + anon_sym_op, + ACTIONS(8159), 1, + anon_sym_LBRACE, + ACTIONS(8161), 1, + anon_sym_POUND, + ACTIONS(8163), 1, + anon_sym_LBRACK, + ACTIONS(8165), 1, + anon_sym_POUND_LBRACK, + ACTIONS(8167), 1, + anon_sym_let, + ACTIONS(8179), 1, + anon_sym_u201c, + ACTIONS(8181), 1, + anon_sym_u2018, + ACTIONS(8183), 1, + anon_sym_BQUOTE, + ACTIONS(11529), 1, + anon_sym_LPAREN, + STATE(11124), 1, + sym__scon, + STATE(11150), 1, + sym_longvid, + STATE(11447), 1, + sym_vid, + STATE(19138), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(8149), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + STATE(4201), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [438912] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13042), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [438965] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13046), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [439018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13050), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [439071] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13054), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [439124] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13058), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [439177] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13062), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [439230] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13066), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [439283] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13070), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [439336] = 22, + ACTIONS(10967), 1, + sym_integer_scon, + ACTIONS(10971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10973), 1, + sym__symbolic_ident, + ACTIONS(10975), 1, + anon_sym_LPAREN, + ACTIONS(10977), 1, + anon_sym_op, + ACTIONS(10979), 1, + anon_sym_LBRACE, + ACTIONS(10981), 1, + anon_sym_POUND, + ACTIONS(10983), 1, + anon_sym_LBRACK, + ACTIONS(10985), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10987), 1, + anon_sym_let, + ACTIONS(10995), 1, + anon_sym_u201c, + ACTIONS(10997), 1, + anon_sym_u2018, + ACTIONS(10999), 1, + anon_sym_BQUOTE, + STATE(11362), 1, + sym_vid, + STATE(11644), 1, + sym__scon, + STATE(11691), 1, + sym_longvid, + STATE(18986), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + STATE(4247), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [439427] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13074), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [439480] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13078), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [439533] = 22, + ACTIONS(10967), 1, + sym_integer_scon, + ACTIONS(10971), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10973), 1, + sym__symbolic_ident, + ACTIONS(10975), 1, + anon_sym_LPAREN, + ACTIONS(10977), 1, + anon_sym_op, + ACTIONS(10979), 1, + anon_sym_LBRACE, + ACTIONS(10981), 1, + anon_sym_POUND, + ACTIONS(10983), 1, + anon_sym_LBRACK, + ACTIONS(10985), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10987), 1, + anon_sym_let, + ACTIONS(10995), 1, + anon_sym_u201c, + ACTIONS(10997), 1, + anon_sym_u2018, + ACTIONS(10999), 1, + anon_sym_BQUOTE, + STATE(11362), 1, + sym_vid, + STATE(11644), 1, + sym__scon, + STATE(11691), 1, + sym_longvid, + STATE(18986), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10969), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + STATE(4253), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [439624] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13082), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [439677] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13086), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [439730] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [439803] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [439876] = 22, + ACTIONS(11119), 1, + sym_integer_scon, + ACTIONS(11123), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11125), 1, + sym__symbolic_ident, + ACTIONS(11127), 1, + anon_sym_LPAREN, + ACTIONS(11129), 1, + anon_sym_op, + ACTIONS(11131), 1, + anon_sym_LBRACE, + ACTIONS(11133), 1, + anon_sym_POUND, + ACTIONS(11135), 1, + anon_sym_LBRACK, + ACTIONS(11137), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11139), 1, + anon_sym_let, + ACTIONS(11147), 1, + anon_sym_u201c, + ACTIONS(11149), 1, + anon_sym_u2018, + ACTIONS(11151), 1, + anon_sym_BQUOTE, + STATE(11153), 1, + sym__scon, + STATE(11157), 1, + sym_longvid, + STATE(11752), 1, + sym_vid, + STATE(19204), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11121), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + STATE(4274), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [439967] = 22, + ACTIONS(13088), 1, + sym_integer_scon, + ACTIONS(13094), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13097), 1, + sym__symbolic_ident, + ACTIONS(13100), 1, + anon_sym_LPAREN, + ACTIONS(13103), 1, + anon_sym_op, + ACTIONS(13106), 1, + anon_sym_LBRACE, + ACTIONS(13109), 1, + anon_sym_POUND, + ACTIONS(13112), 1, + anon_sym_LBRACK, + ACTIONS(13115), 1, + anon_sym_POUND_LBRACK, + ACTIONS(13118), 1, + anon_sym_let, + ACTIONS(13121), 1, + anon_sym_u201c, + ACTIONS(13124), 1, + anon_sym_u2018, + ACTIONS(13127), 1, + anon_sym_BQUOTE, + STATE(11362), 1, + sym_vid, + STATE(11644), 1, + sym__scon, + STATE(11691), 1, + sym_longvid, + STATE(18986), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13091), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + STATE(4253), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [440058] = 10, + ACTIONS(520), 1, + anon_sym_IN, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + [440125] = 22, + ACTIONS(11187), 1, + sym_integer_scon, + ACTIONS(11191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11193), 1, + sym__symbolic_ident, + ACTIONS(11195), 1, + anon_sym_LPAREN, + ACTIONS(11197), 1, + anon_sym_op, + ACTIONS(11199), 1, + anon_sym_LBRACE, + ACTIONS(11201), 1, + anon_sym_POUND, + ACTIONS(11203), 1, + anon_sym_LBRACK, + ACTIONS(11205), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11207), 1, + anon_sym_let, + ACTIONS(11215), 1, + anon_sym_u201c, + ACTIONS(11217), 1, + anon_sym_u2018, + ACTIONS(11219), 1, + anon_sym_BQUOTE, + STATE(11407), 1, + sym__scon, + STATE(11413), 1, + sym_longvid, + STATE(11743), 1, + sym_vid, + STATE(19106), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11189), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + STATE(4258), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [440216] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13132), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [440269] = 22, + ACTIONS(13134), 1, + sym_integer_scon, + ACTIONS(13140), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13143), 1, + sym__symbolic_ident, + ACTIONS(13146), 1, + anon_sym_LPAREN, + ACTIONS(13149), 1, + anon_sym_op, + ACTIONS(13152), 1, + anon_sym_LBRACE, + ACTIONS(13155), 1, + anon_sym_POUND, + ACTIONS(13158), 1, + anon_sym_LBRACK, + ACTIONS(13161), 1, + anon_sym_POUND_LBRACK, + ACTIONS(13164), 1, + anon_sym_let, + ACTIONS(13167), 1, + anon_sym_u201c, + ACTIONS(13170), 1, + anon_sym_u2018, + ACTIONS(13173), 1, + anon_sym_BQUOTE, + STATE(11567), 1, + sym_vid, + STATE(11766), 1, + sym__scon, + STATE(11780), 1, + sym_longvid, + STATE(18767), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13137), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + STATE(4257), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [440360] = 22, + ACTIONS(11187), 1, + sym_integer_scon, + ACTIONS(11191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11193), 1, + sym__symbolic_ident, + ACTIONS(11195), 1, + anon_sym_LPAREN, + ACTIONS(11197), 1, + anon_sym_op, + ACTIONS(11199), 1, + anon_sym_LBRACE, + ACTIONS(11201), 1, + anon_sym_POUND, + ACTIONS(11203), 1, + anon_sym_LBRACK, + ACTIONS(11205), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11207), 1, + anon_sym_let, + ACTIONS(11215), 1, + anon_sym_u201c, + ACTIONS(11217), 1, + anon_sym_u2018, + ACTIONS(11219), 1, + anon_sym_BQUOTE, + STATE(11407), 1, + sym__scon, + STATE(11413), 1, + sym_longvid, + STATE(11743), 1, + sym_vid, + STATE(19106), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11189), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + STATE(4259), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [440451] = 22, + ACTIONS(13176), 1, + sym_integer_scon, + ACTIONS(13182), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13185), 1, + sym__symbolic_ident, + ACTIONS(13188), 1, + anon_sym_LPAREN, + ACTIONS(13191), 1, + anon_sym_op, + ACTIONS(13194), 1, + anon_sym_LBRACE, + ACTIONS(13197), 1, + anon_sym_POUND, + ACTIONS(13200), 1, + anon_sym_LBRACK, + ACTIONS(13203), 1, + anon_sym_POUND_LBRACK, + ACTIONS(13206), 1, + anon_sym_let, + ACTIONS(13209), 1, + anon_sym_u201c, + ACTIONS(13212), 1, + anon_sym_u2018, + ACTIONS(13215), 1, + anon_sym_BQUOTE, + STATE(11407), 1, + sym__scon, + STATE(11413), 1, + sym_longvid, + STATE(11743), 1, + sym_vid, + STATE(19106), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13179), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + STATE(4259), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [440542] = 23, + ACTIONS(13218), 1, + sym_integer_scon, + ACTIONS(13224), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13227), 1, + sym__symbolic_ident, + ACTIONS(13230), 1, + anon_sym_LPAREN, + ACTIONS(13233), 1, + anon_sym_op, + ACTIONS(13236), 1, + anon_sym_LBRACE, + ACTIONS(13239), 1, + anon_sym_POUND, + ACTIONS(13242), 1, + anon_sym_LBRACK, + ACTIONS(13245), 1, + anon_sym_POUND_LBRACK, + ACTIONS(13248), 1, + anon_sym_let, + ACTIONS(13251), 1, + anon_sym_u201c, + ACTIONS(13254), 1, + anon_sym_u2018, + ACTIONS(13257), 1, + anon_sym_BQUOTE, + STATE(10287), 1, + sym_vid, + STATE(11359), 1, + sym__scon, + STATE(11478), 1, + sym_longvid, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1001), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(1024), 4, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + ACTIONS(13221), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(4260), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [440635] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 32, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [440698] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 36, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_u201d, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [440755] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13262), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [440808] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13266), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [440861] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13270), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [440914] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [440967] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13274), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [441020] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13278), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [441073] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13282), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [441126] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13286), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [441179] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13290), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [441232] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13294), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [441285] = 22, + ACTIONS(11007), 1, + sym_integer_scon, + ACTIONS(11011), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11013), 1, + sym__symbolic_ident, + ACTIONS(11015), 1, + anon_sym_LPAREN, + ACTIONS(11017), 1, + anon_sym_op, + ACTIONS(11019), 1, + anon_sym_LBRACE, + ACTIONS(11021), 1, + anon_sym_POUND, + ACTIONS(11023), 1, + anon_sym_LBRACK, + ACTIONS(11025), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11027), 1, + anon_sym_let, + ACTIONS(11039), 1, + anon_sym_u201c, + ACTIONS(11041), 1, + anon_sym_u2018, + ACTIONS(11043), 1, + anon_sym_BQUOTE, + STATE(11567), 1, + sym_vid, + STATE(11766), 1, + sym__scon, + STATE(11780), 1, + sym_longvid, + STATE(18767), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11009), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + STATE(4275), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [441376] = 22, + ACTIONS(13296), 1, + sym_integer_scon, + ACTIONS(13302), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13305), 1, + sym__symbolic_ident, + ACTIONS(13308), 1, + anon_sym_LPAREN, + ACTIONS(13311), 1, + anon_sym_op, + ACTIONS(13314), 1, + anon_sym_LBRACE, + ACTIONS(13317), 1, + anon_sym_POUND, + ACTIONS(13320), 1, + anon_sym_LBRACK, + ACTIONS(13323), 1, + anon_sym_POUND_LBRACK, + ACTIONS(13326), 1, + anon_sym_let, + ACTIONS(13329), 1, + anon_sym_u201c, + ACTIONS(13332), 1, + anon_sym_u2018, + ACTIONS(13335), 1, + anon_sym_BQUOTE, + STATE(11153), 1, + sym__scon, + STATE(11157), 1, + sym_longvid, + STATE(11752), 1, + sym_vid, + STATE(19204), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13299), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + STATE(4274), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [441467] = 22, + ACTIONS(11007), 1, + sym_integer_scon, + ACTIONS(11011), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11013), 1, + sym__symbolic_ident, + ACTIONS(11015), 1, + anon_sym_LPAREN, + ACTIONS(11017), 1, + anon_sym_op, + ACTIONS(11019), 1, + anon_sym_LBRACE, + ACTIONS(11021), 1, + anon_sym_POUND, + ACTIONS(11023), 1, + anon_sym_LBRACK, + ACTIONS(11025), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11027), 1, + anon_sym_let, + ACTIONS(11039), 1, + anon_sym_u201c, + ACTIONS(11041), 1, + anon_sym_u2018, + ACTIONS(11043), 1, + anon_sym_BQUOTE, + STATE(11567), 1, + sym_vid, + STATE(11766), 1, + sym__scon, + STATE(11780), 1, + sym_longvid, + STATE(18767), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11009), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + STATE(4257), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [441558] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13340), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [441611] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13344), 31, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [441664] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13050), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [441716] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13350), 1, + anon_sym_RBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5264), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [441796] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13370), 1, + anon_sym_RBRACK, + STATE(5270), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [441876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13026), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [441928] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13372), 1, + anon_sym_RPAREN, + STATE(5438), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [442008] = 22, + ACTIONS(13374), 1, + sym_integer_scon, + ACTIONS(13380), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13383), 1, + sym__symbolic_ident, + ACTIONS(13386), 1, + anon_sym_LPAREN, + ACTIONS(13389), 1, + anon_sym_op, + ACTIONS(13392), 1, + anon_sym_LBRACE, + ACTIONS(13395), 1, + anon_sym_POUND, + ACTIONS(13398), 1, + anon_sym_LBRACK, + ACTIONS(13401), 1, + anon_sym_POUND_LBRACK, + ACTIONS(13404), 1, + anon_sym_let, + ACTIONS(13407), 1, + anon_sym_u201c, + ACTIONS(13410), 1, + anon_sym_u2018, + ACTIONS(13413), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13377), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + STATE(4283), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [442098] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13042), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [442150] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13066), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [442202] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13416), 1, + anon_sym_RPAREN, + STATE(5371), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [442282] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13418), 1, + anon_sym_RBRACE, + STATE(5319), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [442362] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13420), 1, + anon_sym_RBRACK, + STATE(5320), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [442442] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13422), 1, + anon_sym_RPAREN, + STATE(5407), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [442522] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13424), 1, + anon_sym_RBRACE, + STATE(5334), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [442602] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13426), 1, + anon_sym_RBRACK, + STATE(5335), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [442682] = 22, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + STATE(4308), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [442772] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [442824] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13034), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [442876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13038), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [442928] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13034), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [442980] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13046), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [443032] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13050), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [443084] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13038), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [443136] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13054), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [443188] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13058), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [443240] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13062), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [443292] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13034), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [443344] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13038), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [443396] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13428), 1, + anon_sym_RPAREN, + STATE(5445), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [443476] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13074), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [443528] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13430), 1, + anon_sym_RPAREN, + STATE(5355), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [443608] = 22, + ACTIONS(10117), 1, + sym_integer_scon, + ACTIONS(10121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10123), 1, + sym__symbolic_ident, + ACTIONS(10125), 1, + anon_sym_LPAREN, + ACTIONS(10127), 1, + anon_sym_op, + ACTIONS(10129), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_POUND, + ACTIONS(10133), 1, + anon_sym_LBRACK, + ACTIONS(10135), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10137), 1, + anon_sym_let, + ACTIONS(10149), 1, + anon_sym_u201c, + ACTIONS(10151), 1, + anon_sym_u2018, + ACTIONS(10153), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10119), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + STATE(4502), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [443698] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13432), 1, + anon_sym_RBRACE, + STATE(5266), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [443778] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13434), 1, + anon_sym_RBRACK, + STATE(5274), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [443858] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13078), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [443910] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13436), 1, + anon_sym_RBRACE, + STATE(5220), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [443990] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13278), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444042] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13438), 1, + anon_sym_RBRACK, + STATE(5223), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [444122] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12890), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444174] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13086), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444226] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12948), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444278] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12952), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444330] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12964), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444382] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12968), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444434] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13046), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444486] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13046), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444538] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13050), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444590] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13018), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444642] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12894), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444694] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13054), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444746] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12956), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444798] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13058), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444850] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13062), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444902] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12960), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [444954] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13074), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [445006] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13440), 1, + anon_sym_RPAREN, + STATE(5447), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [445086] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13442), 1, + anon_sym_RBRACE, + STATE(5309), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [445166] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13444), 1, + anon_sym_RBRACK, + STATE(5312), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [445246] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13078), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [445298] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13278), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [445350] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13070), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [445402] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13082), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [445454] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13132), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [445506] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13054), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [445558] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13058), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [445610] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12890), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [445662] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13086), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [445714] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13446), 1, + anon_sym_COLON, + STATE(5736), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [445794] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12948), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [445846] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12952), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [445898] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13282), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [445950] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12964), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [446002] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12968), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [446054] = 22, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + STATE(4555), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [446144] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13018), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [446196] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13294), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [446248] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13448), 1, + anon_sym_COLON, + STATE(5581), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [446328] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12894), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [446380] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12956), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [446432] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12698), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [446484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13062), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [446536] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12772), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [446588] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13450), 1, + anon_sym_RPAREN, + STATE(5369), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [446668] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13042), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [446720] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13452), 1, + anon_sym_RBRACE, + STATE(5230), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [446800] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13454), 1, + anon_sym_RBRACK, + STATE(5238), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [446880] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13456), 1, + anon_sym_COLON, + STATE(5598), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [446960] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12776), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [447012] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12786), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [447064] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13458), 1, + anon_sym_COLON, + STATE(5612), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [447144] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12798), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [447196] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13074), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [447248] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13460), 1, + anon_sym_COLON, + STATE(5614), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [447328] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12960), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [447380] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13070), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [447432] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13462), 1, + anon_sym_COLON, + STATE(5616), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [447512] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13082), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [447564] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13464), 1, + anon_sym_COLON, + STATE(5618), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [447644] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12844), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [447696] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12972), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [447748] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13466), 1, + anon_sym_COLON, + STATE(5621), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [447828] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13132), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [447880] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13078), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [447932] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13468), 1, + anon_sym_COLON, + STATE(5625), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [448012] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13344), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [448064] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13030), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [448116] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13282), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [448168] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13262), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [448220] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13470), 1, + anon_sym_COLON, + STATE(5630), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [448300] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13266), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [448352] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13294), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [448404] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13270), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [448456] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13274), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [448508] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13472), 1, + anon_sym_COLON, + STATE(5633), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [448588] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13474), 1, + anon_sym_COLON, + STATE(5640), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [448668] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13278), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [448720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12890), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [448772] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13086), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [448824] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13476), 1, + anon_sym_COLON, + STATE(5643), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [448904] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13286), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [448956] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13478), 1, + anon_sym_COLON, + STATE(5645), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [449036] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13290), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [449088] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13480), 1, + anon_sym_COLON, + STATE(5648), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [449168] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13482), 1, + anon_sym_COLON, + STATE(5650), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [449248] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13340), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [449300] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13022), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [449352] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13484), 1, + anon_sym_COLON, + STATE(5652), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [449432] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12694), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [449484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12702), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [449536] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13486), 1, + anon_sym_COLON, + STATE(5654), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [449616] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12948), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [449668] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13488), 1, + anon_sym_COLON, + STATE(5656), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [449748] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12698), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [449800] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12952), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [449852] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13490), 1, + anon_sym_COLON, + STATE(5660), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [449932] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12772), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [449984] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12776), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [450036] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12964), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [450088] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13492), 1, + anon_sym_COLON, + STATE(5662), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [450168] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12706), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [450220] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12710), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [450272] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12714), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [450324] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12718), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [450376] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13494), 1, + anon_sym_COLON, + STATE(5664), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [450456] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12786), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [450508] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13496), 1, + anon_sym_RPAREN, + STATE(5452), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [450588] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12722), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [450640] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13498), 1, + anon_sym_COLON, + STATE(5666), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [450720] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [450774] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13500), 1, + anon_sym_RBRACE, + STATE(5214), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [450854] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13502), 1, + anon_sym_RBRACK, + STATE(5215), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [450934] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12798), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [450986] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12726), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [451038] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13504), 1, + anon_sym_COLON, + STATE(5668), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [451118] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12844), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [451170] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12790), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [451222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12968), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [451274] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13018), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [451326] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13506), 1, + anon_sym_COLON, + STATE(5670), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [451406] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12972), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [451458] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13508), 1, + anon_sym_COLON, + STATE(5671), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [451538] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13510), 1, + anon_sym_COLON, + STATE(5672), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [451618] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13344), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [451670] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13030), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [451722] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12794), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [451774] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13512), 1, + anon_sym_COLON, + STATE(5673), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [451854] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13262), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [451906] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13266), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [451958] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12940), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [452010] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13514), 1, + anon_sym_RPAREN, + STATE(5353), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [452090] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12944), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [452142] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13516), 1, + anon_sym_COLON, + STATE(5675), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [452222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13270), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [452274] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13518), 1, + anon_sym_COLON, + STATE(5676), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [452354] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13274), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [452406] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13286), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [452458] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13520), 1, + anon_sym_COLON, + STATE(5853), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [452538] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13290), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [452590] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13340), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [452642] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13022), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [452694] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13522), 1, + anon_sym_COLON, + STATE(5678), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [452774] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13524), 1, + anon_sym_COLON, + STATE(5679), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [452854] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12694), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [452906] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12702), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [452958] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13526), 1, + anon_sym_COLON, + STATE(5680), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [453038] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12706), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [453090] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13528), 1, + anon_sym_COLON, + STATE(5681), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [453170] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12710), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [453222] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13530), 1, + anon_sym_COLON, + STATE(5682), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [453302] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13532), 1, + anon_sym_COLON, + STATE(5683), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [453382] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13534), 1, + anon_sym_COLON, + STATE(5684), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [453462] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13536), 1, + anon_sym_RBRACE, + STATE(5258), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [453542] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13538), 1, + anon_sym_COLON, + STATE(5685), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [453622] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13540), 1, + anon_sym_COLON, + STATE(5686), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [453702] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13542), 1, + anon_sym_COLON, + STATE(5687), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [453782] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13544), 1, + anon_sym_COLON, + STATE(5688), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [453862] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13546), 1, + anon_sym_COLON, + STATE(5689), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [453942] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13548), 1, + anon_sym_COLON, + STATE(5690), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [454022] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13550), 1, + anon_sym_COLON, + STATE(5691), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [454102] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13552), 1, + anon_sym_COLON, + STATE(5692), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [454182] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13554), 1, + anon_sym_COLON, + STATE(5693), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [454262] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13556), 1, + anon_sym_COLON, + STATE(5694), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [454342] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13558), 1, + anon_sym_COLON, + STATE(5695), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [454422] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13066), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [454474] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13026), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [454526] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13560), 1, + anon_sym_RPAREN, + STATE(5444), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [454606] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13562), 1, + anon_sym_COLON, + STATE(5696), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [454686] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13564), 1, + anon_sym_RBRACE, + STATE(5347), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [454766] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13566), 1, + anon_sym_RBRACK, + STATE(5350), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [454846] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13568), 1, + anon_sym_COLON, + STATE(5697), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [454926] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12714), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [454978] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12718), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [455030] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13570), 1, + anon_sym_COLON, + STATE(5699), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [455110] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12722), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [455162] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12726), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [455214] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13572), 1, + anon_sym_COLON, + STATE(5700), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [455294] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13574), 1, + anon_sym_RPAREN, + STATE(5395), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [455374] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13576), 1, + anon_sym_RBRACE, + STATE(5279), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [455454] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13578), 1, + anon_sym_COLON, + STATE(5701), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [455534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12894), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [455586] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12956), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [455638] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13580), 1, + anon_sym_COLON, + STATE(5702), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [455718] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13582), 1, + anon_sym_RBRACK, + STATE(5285), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [455798] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12790), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [455850] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12794), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [455902] = 22, + ACTIONS(13584), 1, + sym_integer_scon, + ACTIONS(13590), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13593), 1, + sym__symbolic_ident, + ACTIONS(13596), 1, + anon_sym_LPAREN, + ACTIONS(13599), 1, + anon_sym_op, + ACTIONS(13602), 1, + anon_sym_LBRACE, + ACTIONS(13605), 1, + anon_sym_POUND, + ACTIONS(13608), 1, + anon_sym_LBRACK, + ACTIONS(13611), 1, + anon_sym_POUND_LBRACK, + ACTIONS(13614), 1, + anon_sym_let, + ACTIONS(13617), 1, + anon_sym_u201c, + ACTIONS(13620), 1, + anon_sym_u2018, + ACTIONS(13623), 1, + anon_sym_BQUOTE, + STATE(11932), 1, + sym__scon, + STATE(11933), 1, + sym_vid, + STATE(11934), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13587), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + STATE(4502), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [455992] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13626), 1, + anon_sym_COLON, + STATE(5703), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [456072] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12960), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [456124] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12940), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [456176] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13628), 1, + anon_sym_RPAREN, + STATE(5359), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [456256] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13630), 1, + anon_sym_RBRACE, + STATE(5303), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [456336] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13632), 1, + anon_sym_COLON, + STATE(5704), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [456416] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13634), 1, + anon_sym_RBRACK, + STATE(5305), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [456496] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13070), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [456548] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13082), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [456600] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13636), 1, + anon_sym_COLON, + STATE(5705), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [456680] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13638), 1, + anon_sym_COLON, + STATE(5706), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [456760] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13132), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [456812] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13640), 1, + anon_sym_COLON, + STATE(5707), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [456892] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12944), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [456944] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13642), 1, + anon_sym_COLON, + STATE(5708), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [457024] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13644), 1, + anon_sym_RBRACK, + STATE(5265), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [457104] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13646), 1, + anon_sym_COLON, + STATE(5709), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [457184] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13282), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [457236] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13294), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [457288] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13648), 1, + anon_sym_COLON, + STATE(5711), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [457368] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13650), 1, + anon_sym_COLON, + STATE(5712), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [457448] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13652), 1, + anon_sym_COLON, + STATE(5713), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [457528] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [457582] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12698), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [457634] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13654), 1, + anon_sym_COLON, + STATE(5714), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [457714] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12772), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [457766] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12776), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [457818] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13656), 1, + anon_sym_COLON, + STATE(5715), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [457898] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12786), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [457950] = 22, + ACTIONS(13658), 1, + sym_integer_scon, + ACTIONS(13664), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13667), 1, + sym__symbolic_ident, + ACTIONS(13670), 1, + anon_sym_LPAREN, + ACTIONS(13673), 1, + anon_sym_op, + ACTIONS(13676), 1, + anon_sym_LBRACE, + ACTIONS(13679), 1, + anon_sym_POUND, + ACTIONS(13682), 1, + anon_sym_LBRACK, + ACTIONS(13685), 1, + anon_sym_POUND_LBRACK, + ACTIONS(13688), 1, + anon_sym_let, + ACTIONS(13691), 1, + anon_sym_u201c, + ACTIONS(13694), 1, + anon_sym_u2018, + ACTIONS(13697), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13661), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(1024), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + STATE(4532), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [458040] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13700), 1, + anon_sym_COLON, + STATE(5716), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [458120] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12798), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [458172] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12844), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [458224] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12972), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [458276] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13702), 1, + anon_sym_COLON, + STATE(5717), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [458356] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13704), 1, + anon_sym_COLON, + STATE(5720), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [458436] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13344), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [458488] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13030), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [458540] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13706), 1, + anon_sym_COLON, + STATE(5721), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [458620] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13262), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [458672] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13266), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [458724] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13270), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [458776] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13708), 1, + anon_sym_COLON, + STATE(5722), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [458856] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13710), 1, + anon_sym_COLON, + STATE(5723), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [458936] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13712), 1, + anon_sym_COLON, + STATE(5724), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [459016] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13714), 1, + anon_sym_COLON, + STATE(5725), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [459096] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13716), 1, + anon_sym_COLON, + STATE(5726), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [459176] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13718), 1, + anon_sym_COLON, + STATE(5727), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [459256] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13720), 1, + anon_sym_COLON, + STATE(5728), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [459336] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13722), 1, + anon_sym_COLON, + STATE(5729), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [459416] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13724), 1, + anon_sym_COLON, + STATE(5730), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [459496] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13726), 1, + anon_sym_COLON, + STATE(5731), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [459576] = 22, + ACTIONS(10079), 1, + sym_integer_scon, + ACTIONS(10083), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(10085), 1, + sym__symbolic_ident, + ACTIONS(10087), 1, + anon_sym_LPAREN, + ACTIONS(10089), 1, + anon_sym_op, + ACTIONS(10091), 1, + anon_sym_LBRACE, + ACTIONS(10093), 1, + anon_sym_POUND, + ACTIONS(10095), 1, + anon_sym_LBRACK, + ACTIONS(10097), 1, + anon_sym_POUND_LBRACK, + ACTIONS(10099), 1, + anon_sym_let, + ACTIONS(10111), 1, + anon_sym_u201c, + ACTIONS(10113), 1, + anon_sym_u2018, + ACTIONS(10115), 1, + anon_sym_BQUOTE, + STATE(12263), 1, + sym__scon, + STATE(12266), 1, + sym_vid, + STATE(12267), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(10081), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + STATE(4532), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [459666] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13728), 1, + anon_sym_COLON, + STATE(5732), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [459746] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13730), 1, + anon_sym_COLON, + STATE(5733), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [459826] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13026), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [459878] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13042), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [459930] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13066), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [459982] = 22, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(981), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + STATE(4565), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [460072] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13732), 1, + anon_sym_RPAREN, + STATE(5363), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [460152] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13734), 1, + anon_sym_RBRACE, + STATE(5275), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [460232] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [460286] = 22, + ACTIONS(11295), 1, + sym_integer_scon, + ACTIONS(11299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(11301), 1, + sym__symbolic_ident, + ACTIONS(11303), 1, + anon_sym_LPAREN, + ACTIONS(11305), 1, + anon_sym_op, + ACTIONS(11307), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_POUND, + ACTIONS(11311), 1, + anon_sym_LBRACK, + ACTIONS(11313), 1, + anon_sym_POUND_LBRACK, + ACTIONS(11315), 1, + anon_sym_let, + ACTIONS(11323), 1, + anon_sym_u201c, + ACTIONS(11325), 1, + anon_sym_u2018, + ACTIONS(11327), 1, + anon_sym_BQUOTE, + STATE(12120), 1, + sym__scon, + STATE(12121), 1, + sym_vid, + STATE(12122), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(11297), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(999), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + STATE(4283), 16, + sym__atexp, + sym_scon_exp, + sym_vid_exp, + sym_record_exp, + sym_recordsel_exp, + sym_unit_exp, + sym_tuple_exp, + sym_list_exp, + sym_vec_exp, + sym_sequence_exp, + sym_let_exp, + sym_paren_exp, + sym_quoted_term, + sym_quoted_type, + sym_backquote, + aux_sym_app_exp_repeat1, + [460376] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13274), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [460428] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13286), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [460480] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13290), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [460532] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13736), 1, + anon_sym_RBRACK, + STATE(5251), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [460612] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13340), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [460664] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13738), 1, + anon_sym_RPAREN, + STATE(5403), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [460744] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13740), 1, + anon_sym_RBRACE, + STATE(5282), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [460824] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13742), 1, + anon_sym_RBRACK, + STATE(5283), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [460904] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13022), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [460956] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12694), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461008] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12702), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461060] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12706), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461112] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461164] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12710), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461216] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461268] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12714), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461320] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12718), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461372] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12722), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461424] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12726), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461476] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12790), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461528] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12794), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461580] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12940), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461632] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12944), 30, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [461684] = 17, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + ACTIONS(13744), 1, + anon_sym_COLON, + STATE(5674), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [461764] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(300), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [461841] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5849), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [461918] = 16, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(119), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(123), 1, + anon_sym_case, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(88), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(133), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(135), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(129), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(137), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(127), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(95), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [461995] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12798), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [462046] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13086), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [462097] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(323), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [462174] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12948), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [462225] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13046), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [462276] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13050), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [462327] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(72), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [462404] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12952), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [462455] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(46), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [462532] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13054), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [462583] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(341), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [462660] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12964), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [462711] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(342), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [462788] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13018), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [462839] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13058), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [462890] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5584), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [462967] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5750), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [463044] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12972), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [463095] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12968), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [463146] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13018), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [463197] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13062), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [463248] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(4261), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [463325] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(343), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [463402] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12944), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [463453] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13074), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [463504] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12894), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [463555] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12894), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [463606] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(344), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [463683] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12956), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [463734] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5416), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [463811] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5639), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [463888] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12960), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [463939] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(5399), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [464016] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13274), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [464067] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(311), 1, + anon_sym_LBRACK, + ACTIONS(313), 1, + anon_sym_if, + ACTIONS(315), 1, + anon_sym_case, + ACTIONS(323), 1, + anon_sym_DASH, + STATE(445), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(325), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(327), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(321), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(329), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(319), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(403), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [464144] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(293), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [464221] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13070), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [464272] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13082), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [464323] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13286), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [464374] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13290), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [464425] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13132), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [464476] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(311), 1, + anon_sym_LBRACK, + ACTIONS(313), 1, + anon_sym_if, + ACTIONS(315), 1, + anon_sym_case, + ACTIONS(323), 1, + anon_sym_DASH, + STATE(448), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(325), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(327), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(321), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(329), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(319), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(403), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [464553] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13282), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [464604] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(311), 1, + anon_sym_LBRACK, + ACTIONS(313), 1, + anon_sym_if, + ACTIONS(315), 1, + anon_sym_case, + ACTIONS(323), 1, + anon_sym_DASH, + STATE(451), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(325), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(327), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(321), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(329), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(319), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(403), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [464681] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(345), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [464758] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13294), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [464809] = 16, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_if, + ACTIONS(363), 1, + anon_sym_case, + ACTIONS(371), 1, + anon_sym_DASH, + STATE(419), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(373), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(375), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(369), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(377), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(367), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(430), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [464886] = 16, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(119), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(123), 1, + anon_sym_case, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(74), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(133), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(135), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(129), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(137), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(127), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(95), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [464963] = 16, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(291), 1, + anon_sym_case, + ACTIONS(299), 1, + anon_sym_DASH, + STATE(431), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(301), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(303), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(297), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(305), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(295), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(364), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [465040] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12698), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [465091] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13078), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [465142] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12956), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [465193] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12960), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [465244] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(311), 1, + anon_sym_LBRACK, + ACTIONS(313), 1, + anon_sym_if, + ACTIONS(315), 1, + anon_sym_case, + ACTIONS(323), 1, + anon_sym_DASH, + STATE(454), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(325), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(327), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(321), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(329), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(319), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(403), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [465321] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(346), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [465398] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(318), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [465475] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13070), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [465526] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(4077), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [465603] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13082), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [465654] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5343), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [465731] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5583), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [465808] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13340), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [465859] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(202), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [465936] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13030), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [465987] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12706), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [466038] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13132), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [466089] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(349), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [466166] = 16, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_if, + ACTIONS(363), 1, + anon_sym_case, + ACTIONS(371), 1, + anon_sym_DASH, + STATE(421), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(373), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(375), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(369), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(377), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(367), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(430), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [466243] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5629), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [466320] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5631), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [466397] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13278), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [466448] = 16, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_if, + ACTIONS(363), 1, + anon_sym_case, + ACTIONS(371), 1, + anon_sym_DASH, + STATE(422), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(373), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(375), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(369), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(377), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(367), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(430), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [466525] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13282), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [466576] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5242), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [466653] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5599), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [466730] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(324), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [466807] = 16, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(119), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(123), 1, + anon_sym_case, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(83), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(133), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(135), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(129), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(137), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(127), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(95), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [466884] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(4262), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [466961] = 16, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_if, + ACTIONS(363), 1, + anon_sym_case, + ACTIONS(371), 1, + anon_sym_DASH, + STATE(423), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(373), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(375), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(369), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(377), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(367), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(430), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [467038] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(325), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [467115] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13278), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [467166] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5286), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [467243] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5613), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [467320] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13022), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [467371] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(4198), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [467448] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12890), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [467499] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5450), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [467576] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12694), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [467627] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5315), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [467704] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5615), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [467781] = 5, + ACTIONS(13816), 1, + anon_sym_PIPE, + STATE(4685), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 33, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [467836] = 5, + ACTIONS(13816), 1, + anon_sym_PIPE, + STATE(4685), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(426), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 33, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [467891] = 5, + ACTIONS(13818), 1, + anon_sym_PIPE, + STATE(4685), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(419), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(417), 33, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [467946] = 4, + STATE(4685), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 34, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [467999] = 4, + STATE(4685), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(426), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 34, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [468052] = 5, + ACTIONS(13816), 1, + anon_sym_PIPE, + STATE(4686), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(415), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(413), 33, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [468107] = 5, + ACTIONS(13816), 1, + anon_sym_PIPE, + STATE(4687), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 33, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [468162] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12702), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [468213] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13086), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [468264] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(282), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [468341] = 16, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_if, + ACTIONS(363), 1, + anon_sym_case, + ACTIONS(371), 1, + anon_sym_DASH, + STATE(424), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(373), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(375), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(369), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(377), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(367), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(430), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [468418] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(5426), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [468495] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5297), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [468572] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5617), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [468649] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5511), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [468726] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12948), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [468777] = 16, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_if, + ACTIONS(195), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(231), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(205), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(207), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(201), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(209), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(199), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(352), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [468854] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5299), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [468931] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5619), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [469008] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12694), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [469059] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5382), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [469136] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12952), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [469187] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12772), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [469238] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13294), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [469289] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5288), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [469366] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5622), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [469443] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5638), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [469520] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12698), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [469571] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12706), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [469622] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(347), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [469699] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12964), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [469750] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5338), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [469827] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5627), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [469904] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12772), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [469955] = 16, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_if, + ACTIONS(363), 1, + anon_sym_case, + ACTIONS(371), 1, + anon_sym_DASH, + STATE(408), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(373), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(375), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(369), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(377), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(367), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(430), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [470032] = 16, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(291), 1, + anon_sym_case, + ACTIONS(299), 1, + anon_sym_DASH, + STATE(410), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(301), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(303), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(297), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(305), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(295), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(364), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [470109] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12776), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [470160] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5302), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [470237] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5632), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [470314] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(4077), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [470391] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5600), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [470468] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5601), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [470545] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5602), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [470622] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5201), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [470699] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5637), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [470776] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(326), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [470853] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12710), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [470904] = 16, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(119), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(123), 1, + anon_sym_case, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(87), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(133), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(135), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(129), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(137), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(127), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(95), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [470981] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12786), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [471032] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12714), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [471083] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(327), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [471160] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5296), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [471237] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5642), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [471314] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12718), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [471365] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12722), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [471416] = 16, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_if, + ACTIONS(363), 1, + anon_sym_case, + ACTIONS(371), 1, + anon_sym_DASH, + STATE(425), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(373), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(375), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(369), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(377), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(367), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(430), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [471493] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(311), 1, + anon_sym_LBRACK, + ACTIONS(313), 1, + anon_sym_if, + ACTIONS(315), 1, + anon_sym_case, + ACTIONS(323), 1, + anon_sym_DASH, + STATE(369), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(325), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(327), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(321), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(329), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(319), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(403), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [471570] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(311), 1, + anon_sym_LBRACK, + ACTIONS(313), 1, + anon_sym_if, + ACTIONS(315), 1, + anon_sym_case, + ACTIONS(323), 1, + anon_sym_DASH, + STATE(375), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(325), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(327), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(321), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(329), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(319), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(403), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [471647] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5603), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [471724] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5234), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [471801] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5644), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [471878] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12726), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [471929] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12798), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [471980] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5604), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [472057] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5605), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [472134] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(311), 1, + anon_sym_LBRACK, + ACTIONS(313), 1, + anon_sym_if, + ACTIONS(315), 1, + anon_sym_case, + ACTIONS(323), 1, + anon_sym_DASH, + STATE(387), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(325), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(327), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(321), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(329), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(319), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(403), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [472211] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5606), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [472288] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5241), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [472365] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5646), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [472442] = 5, + ACTIONS(13833), 1, + anon_sym_DASH_GT, + ACTIONS(13835), 1, + anon_sym_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(385), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(383), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [472497] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(63), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [472574] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5607), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [472651] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5608), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [472728] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(311), 1, + anon_sym_LBRACK, + ACTIONS(313), 1, + anon_sym_if, + ACTIONS(315), 1, + anon_sym_case, + ACTIONS(323), 1, + anon_sym_DASH, + STATE(385), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(325), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(327), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(321), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(329), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(319), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(403), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [472805] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5609), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [472882] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5649), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [472959] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(192), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [473036] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5610), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [473113] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5611), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [473190] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5651), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [473267] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5634), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [473344] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5635), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [473421] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(311), 1, + anon_sym_LBRACK, + ACTIONS(313), 1, + anon_sym_if, + ACTIONS(315), 1, + anon_sym_case, + ACTIONS(323), 1, + anon_sym_DASH, + STATE(391), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(325), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(327), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(321), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(329), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(319), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(403), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [473498] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(229), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [473575] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5636), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [473652] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(193), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [473729] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5653), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [473806] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(298), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [473883] = 4, + ACTIONS(13833), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(397), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(395), 33, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_list, + [473936] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(194), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [474013] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5655), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [474090] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(64), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [474167] = 16, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_if, + ACTIONS(195), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(233), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(205), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(207), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(201), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(209), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(199), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(352), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [474244] = 16, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_if, + ACTIONS(195), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(234), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(205), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(207), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(201), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(209), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(199), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(352), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [474321] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(328), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [474398] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5659), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [474475] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12844), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [474526] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12972), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [474577] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12790), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [474628] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12794), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [474679] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(195), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [474756] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5661), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [474833] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(73), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [474910] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13344), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [474961] = 16, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(335), 1, + anon_sym_LBRACK, + ACTIONS(337), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_DASH, + STATE(390), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(349), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(351), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(345), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(353), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(343), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(446), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [475038] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12940), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [475089] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12968), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [475140] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5663), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [475217] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13030), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [475268] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(360), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [475345] = 16, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_if, + ACTIONS(195), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(235), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(205), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(207), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(201), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(209), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(199), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(352), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [475422] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(5448), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [475499] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12944), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [475550] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5665), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [475627] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13262), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [475678] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5667), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [475755] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13266), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [475806] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5582), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [475883] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(301), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [475960] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(65), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [476037] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5669), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [476114] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5357), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [476191] = 16, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_if, + ACTIONS(195), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(236), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(205), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(207), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(201), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(209), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(199), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(352), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [476268] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12702), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [476319] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(302), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [476396] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(329), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [476473] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(4077), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [476550] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(5377), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [476627] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(196), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [476704] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(303), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [476781] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(197), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [476858] = 16, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(335), 1, + anon_sym_LBRACK, + ACTIONS(337), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_DASH, + STATE(377), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(349), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(351), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(345), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(353), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(343), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(446), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [476935] = 16, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(119), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(123), 1, + anon_sym_case, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(80), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(133), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(135), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(129), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(137), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(127), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(95), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [477012] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(348), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [477089] = 16, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_if, + ACTIONS(195), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(237), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(205), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(207), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(201), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(209), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(199), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(352), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [477166] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13270), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [477217] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13274), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [477268] = 16, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(119), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(123), 1, + anon_sym_case, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(82), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(133), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(135), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(129), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(137), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(127), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(95), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [477345] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(5378), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [477422] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(198), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [477499] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(5386), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [477576] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(5391), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [477653] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(66), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [477730] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(199), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [477807] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13286), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [477858] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(5394), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [477935] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(304), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [478012] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(305), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [478089] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(5425), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [478166] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(5410), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [478243] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12890), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [478294] = 16, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_if, + ACTIONS(195), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(238), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(205), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(207), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(201), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(209), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(199), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(352), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [478371] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(306), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [478448] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13290), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [478499] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(5411), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [478576] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(339), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [478653] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(4251), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [478730] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(307), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [478807] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13340), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [478858] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(200), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [478935] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13270), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [478986] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(201), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [479063] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5810), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [479140] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5414), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [479217] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13274), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [479268] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13022), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [479319] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5657), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [479396] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(330), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [479473] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(5396), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [479550] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(331), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [479627] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13344), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [479678] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(5412), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [479755] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(5352), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [479832] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5413), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [479909] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12786), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [479960] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(5443), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [480037] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [480088] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(5451), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [480165] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(4192), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [480242] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(401), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(399), 34, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_list, + [480293] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13018), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [480344] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13086), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [480395] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(4077), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [480472] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5432), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [480549] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(5367), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [480626] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12894), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [480677] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5433), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [480754] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5435), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [480831] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5436), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [480908] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(203), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [480985] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(5393), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [481062] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12956), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [481113] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5439), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [481190] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(313), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [481267] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5440), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [481344] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5441), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [481421] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12960), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [481472] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5442), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [481549] = 16, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_if, + ACTIONS(363), 1, + anon_sym_case, + ACTIONS(371), 1, + anon_sym_DASH, + STATE(426), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(373), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(375), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(369), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(377), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(367), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(430), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [481626] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5429), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [481703] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5362), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [481780] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5365), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [481857] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13070), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [481908] = 16, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(291), 1, + anon_sym_case, + ACTIONS(299), 1, + anon_sym_DASH, + STATE(378), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(301), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(303), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(297), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(305), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(295), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(364), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [481985] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13262), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [482036] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12694), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [482087] = 16, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_if, + ACTIONS(363), 1, + anon_sym_case, + ACTIONS(371), 1, + anon_sym_DASH, + STATE(434), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(373), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(375), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(369), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(377), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(367), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(430), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [482164] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12890), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [482215] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13286), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [482266] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12702), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [482317] = 16, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_if, + ACTIONS(363), 1, + anon_sym_case, + ACTIONS(371), 1, + anon_sym_DASH, + STATE(443), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(373), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(375), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(369), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(377), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(367), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(430), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [482394] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13082), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [482445] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13132), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [482496] = 16, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(119), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(123), 1, + anon_sym_case, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(94), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(133), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(135), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(129), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(137), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(127), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(95), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [482573] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5379), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [482650] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(287), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [482727] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12710), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [482778] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12714), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [482829] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(67), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [482906] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12706), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [482957] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5243), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [483034] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(340), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [483111] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12718), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [483162] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(68), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [483239] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13282), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [483290] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12710), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [483341] = 16, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_if, + ACTIONS(195), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(239), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(205), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(207), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(201), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(209), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(199), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(352), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [483418] = 16, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_if, + ACTIONS(195), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(240), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(205), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(207), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(201), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(209), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(199), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(352), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [483495] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(4077), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [483572] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5586), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [483649] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5587), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [483726] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(334), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [483803] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12714), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [483854] = 16, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_if, + ACTIONS(363), 1, + anon_sym_case, + ACTIONS(371), 1, + anon_sym_DASH, + STATE(444), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(373), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(375), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(369), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(377), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(367), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(430), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [483931] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5588), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [484008] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5851), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [484085] = 16, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_if, + ACTIONS(195), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(241), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(205), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(207), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(201), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(209), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(199), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(352), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [484162] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5589), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [484239] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13290), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [484290] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5590), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [484367] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12718), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [484418] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5591), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [484495] = 16, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(119), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(123), 1, + anon_sym_case, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(90), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(133), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(135), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(129), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(137), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(127), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(95), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [484572] = 16, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(119), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(123), 1, + anon_sym_case, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(91), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(133), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(135), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(129), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(137), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(127), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(95), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [484649] = 16, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(291), 1, + anon_sym_case, + ACTIONS(299), 1, + anon_sym_DASH, + STATE(411), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(301), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(303), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(297), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(305), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(295), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(364), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [484726] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5592), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [484803] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5593), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [484880] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5594), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [484957] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5595), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [485034] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(310), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [485111] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12948), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [485162] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(223), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [485239] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5760), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [485316] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(278), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [485393] = 16, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(119), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(123), 1, + anon_sym_case, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(86), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(133), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(135), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(129), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(137), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(127), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(95), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [485470] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12722), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [485521] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12726), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [485572] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4134), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [485649] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12790), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [485700] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12722), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [485751] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(69), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [485828] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13026), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [485879] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12844), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [485930] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(311), 1, + anon_sym_LBRACK, + ACTIONS(313), 1, + anon_sym_if, + ACTIONS(315), 1, + anon_sym_case, + ACTIONS(323), 1, + anon_sym_DASH, + STATE(386), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(325), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(327), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(321), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(329), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(319), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(403), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [486007] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5596), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [486084] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12794), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [486135] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(4077), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [486212] = 16, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_if, + ACTIONS(363), 1, + anon_sym_case, + ACTIONS(371), 1, + anon_sym_DASH, + STATE(402), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(373), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(375), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(369), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(377), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(367), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(430), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [486289] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13821), 1, + anon_sym_if, + ACTIONS(13823), 1, + anon_sym_case, + ACTIONS(13829), 1, + anon_sym_DASH, + STATE(5597), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13831), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13827), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13825), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [486366] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13042), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [486417] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(5401), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [486494] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13026), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [486545] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5348), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [486622] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12940), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [486673] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5424), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [486750] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13266), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [486801] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5423), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [486878] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [486929] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12726), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [486980] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13066), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [487031] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(5417), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [487108] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(279), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [487185] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(393), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(391), 34, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_list, + [487236] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(5384), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [487313] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5427), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [487390] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13042), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [487441] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [487492] = 16, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_if, + ACTIONS(195), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(243), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(205), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(207), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(201), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(209), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(199), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(352), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [487569] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(338), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [487646] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(4254), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [487723] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5428), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [487800] = 16, + ACTIONS(355), 1, + anon_sym_LPAREN, + ACTIONS(357), 1, + anon_sym_LBRACE, + ACTIONS(359), 1, + anon_sym_LBRACK, + ACTIONS(361), 1, + anon_sym_if, + ACTIONS(363), 1, + anon_sym_case, + ACTIONS(371), 1, + anon_sym_DASH, + STATE(379), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(373), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(375), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(369), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(377), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(367), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(430), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [487877] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(5203), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [487954] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5434), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [488031] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(285), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [488108] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(311), 1, + anon_sym_LBRACK, + ACTIONS(313), 1, + anon_sym_if, + ACTIONS(315), 1, + anon_sym_case, + ACTIONS(323), 1, + anon_sym_DASH, + STATE(449), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(325), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(327), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(321), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(329), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(319), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(403), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [488185] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5446), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [488262] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(205), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [488339] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5388), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [488416] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5397), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [488493] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13034), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [488544] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13038), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [488595] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5431), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [488672] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4077), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [488749] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(5415), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [488826] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4142), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [488903] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4143), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [488980] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4147), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [489057] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4156), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [489134] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13804), 1, + anon_sym_if, + ACTIONS(13806), 1, + anon_sym_case, + ACTIONS(13812), 1, + anon_sym_DASH, + STATE(5647), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13814), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13810), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13808), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [489211] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5405), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [489288] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4162), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [489365] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4166), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [489442] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(5383), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [489519] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5421), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [489596] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5368), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [489673] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13046), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [489724] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4167), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [489801] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13294), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [489852] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4168), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [489929] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4170), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [490006] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4171), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [490083] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(4077), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [490160] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12698), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [490211] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4127), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [490288] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(5211), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [490365] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(5212), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [490442] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(5213), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [490519] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13050), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [490570] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12772), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [490621] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(5216), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [490698] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(5217), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [490775] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13026), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [490826] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12776), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [490877] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5811), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [490954] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(5218), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [491031] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12786), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [491082] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(4224), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [491159] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(5389), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [491236] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(47), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [491313] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(5221), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [491390] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13873), 1, + anon_sym_if, + ACTIONS(13875), 1, + anon_sym_case, + ACTIONS(13881), 1, + anon_sym_DASH, + STATE(4128), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13883), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13879), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13877), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [491467] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(5229), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [491544] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5585), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [491621] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(70), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [491698] = 16, + ACTIONS(259), 1, + anon_sym_LPAREN, + ACTIONS(261), 1, + anon_sym_LBRACE, + ACTIONS(263), 1, + anon_sym_LBRACK, + ACTIONS(265), 1, + anon_sym_if, + ACTIONS(267), 1, + anon_sym_case, + ACTIONS(275), 1, + anon_sym_DASH, + STATE(350), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(277), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(279), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(273), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(281), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(271), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(314), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [491775] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13780), 1, + anon_sym_if, + ACTIONS(13782), 1, + anon_sym_case, + ACTIONS(13788), 1, + anon_sym_DASH, + STATE(5406), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13790), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13786), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13784), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [491852] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(381), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(379), 34, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_list, + [491903] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12944), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [491954] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(5231), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [492031] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(5232), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [492108] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(5235), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [492185] = 16, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_if, + ACTIONS(195), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(242), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(205), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(207), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(201), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(209), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(199), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(352), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [492262] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(311), 1, + anon_sym_LBRACK, + ACTIONS(313), 1, + anon_sym_if, + ACTIONS(315), 1, + anon_sym_case, + ACTIONS(323), 1, + anon_sym_DASH, + STATE(382), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(325), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(327), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(321), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(329), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(319), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(403), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [492339] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12798), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [492390] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12844), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [492441] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(5360), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [492518] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12972), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [492569] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(5370), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [492646] = 16, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(291), 1, + anon_sym_case, + ACTIONS(299), 1, + anon_sym_DASH, + STATE(409), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(301), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(303), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(297), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(305), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(295), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(364), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [492723] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13344), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [492774] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13066), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [492825] = 16, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(291), 1, + anon_sym_case, + ACTIONS(299), 1, + anon_sym_DASH, + STATE(437), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(301), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(303), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(297), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(305), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(295), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(364), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [492902] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5735), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [492979] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13042), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [493030] = 16, + ACTIONS(307), 1, + anon_sym_LPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(311), 1, + anon_sym_LBRACK, + ACTIONS(313), 1, + anon_sym_if, + ACTIONS(315), 1, + anon_sym_case, + ACTIONS(323), 1, + anon_sym_DASH, + STATE(441), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(325), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(327), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(321), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(329), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(319), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(403), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [493107] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13054), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [493158] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13030), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [493209] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5424), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [493286] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13885), 1, + anon_sym_if, + ACTIONS(13887), 1, + anon_sym_case, + ACTIONS(13893), 1, + anon_sym_DASH, + STATE(5236), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13895), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13891), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13889), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [493363] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5831), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [493440] = 16, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(119), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(123), 1, + anon_sym_case, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(84), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(133), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(135), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(129), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(137), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(127), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(95), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [493517] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5837), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [493594] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [493647] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13058), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [493698] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13340), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [493749] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(5390), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [493826] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(5381), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [493903] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(5361), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [493980] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(5374), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [494057] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13022), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [494108] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13066), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [494159] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13262), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [494210] = 16, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(165), 1, + anon_sym_LBRACE, + ACTIONS(167), 1, + anon_sym_LBRACK, + ACTIONS(169), 1, + anon_sym_if, + ACTIONS(171), 1, + anon_sym_case, + ACTIONS(179), 1, + anon_sym_DASH, + STATE(266), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(181), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(183), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(177), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(185), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(175), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(262), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [494287] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5737), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [494364] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5738), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [494441] = 16, + ACTIONS(187), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(191), 1, + anon_sym_LBRACK, + ACTIONS(193), 1, + anon_sym_if, + ACTIONS(195), 1, + anon_sym_case, + ACTIONS(203), 1, + anon_sym_DASH, + STATE(356), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(197), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(205), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(207), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(201), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(209), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(11), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(199), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(352), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [494518] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5739), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [494595] = 5, + ACTIONS(13816), 1, + anon_sym_PIPE, + STATE(4683), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(415), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(413), 33, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [494650] = 5, + ACTIONS(13816), 1, + anon_sym_PIPE, + STATE(4684), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 33, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [494705] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(337), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [494782] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5740), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [494859] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(5373), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [494936] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(4207), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [495013] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5741), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [495090] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(4175), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [495167] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5453), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [495244] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13062), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [495295] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5742), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [495372] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13034), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [495423] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13266), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [495474] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5743), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [495551] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5744), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [495628] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(4190), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [495705] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5745), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [495782] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13074), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [495833] = 16, + ACTIONS(235), 1, + anon_sym_LPAREN, + ACTIONS(237), 1, + anon_sym_LBRACE, + ACTIONS(239), 1, + anon_sym_LBRACK, + ACTIONS(241), 1, + anon_sym_if, + ACTIONS(243), 1, + anon_sym_case, + ACTIONS(251), 1, + anon_sym_DASH, + STATE(322), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(253), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(255), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(249), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(257), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(247), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(288), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [495910] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5746), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [495987] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13861), 1, + anon_sym_if, + ACTIONS(13863), 1, + anon_sym_case, + ACTIONS(13869), 1, + anon_sym_DASH, + STATE(5408), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(173), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13871), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13867), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(9), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13865), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [496064] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5747), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [496141] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13078), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [496192] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5748), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [496269] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13038), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [496320] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(5400), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [496397] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(259), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [496474] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(5449), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [496551] = 16, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(119), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(123), 1, + anon_sym_case, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(78), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(133), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(135), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(129), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(137), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(127), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(95), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [496628] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(5420), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [496705] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13849), 1, + anon_sym_if, + ACTIONS(13851), 1, + anon_sym_case, + ACTIONS(13857), 1, + anon_sym_DASH, + STATE(5430), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13859), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13855), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13853), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [496782] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12790), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [496833] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12952), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [496884] = 16, + ACTIONS(139), 1, + anon_sym_LPAREN, + ACTIONS(141), 1, + anon_sym_LBRACE, + ACTIONS(143), 1, + anon_sym_LBRACK, + ACTIONS(145), 1, + anon_sym_if, + ACTIONS(147), 1, + anon_sym_case, + ACTIONS(155), 1, + anon_sym_DASH, + STATE(177), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(149), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(157), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(159), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(153), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(161), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(7), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(151), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(172), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [496961] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12964), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [497012] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(4199), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [497089] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5641), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [497166] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(71), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [497243] = 16, + ACTIONS(83), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACE, + ACTIONS(91), 1, + anon_sym_LBRACK, + ACTIONS(93), 1, + anon_sym_if, + ACTIONS(95), 1, + anon_sym_case, + ACTIONS(103), 1, + anon_sym_DASH, + STATE(49), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(97), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(105), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(107), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(101), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(109), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(3), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(99), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(52), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [497320] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5710), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [497397] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5719), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [497474] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(250), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [497551] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13078), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [497602] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12968), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [497653] = 16, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(291), 1, + anon_sym_case, + ACTIONS(299), 1, + anon_sym_DASH, + STATE(412), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(301), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(303), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(297), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(305), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(295), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(364), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [497730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13278), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [497781] = 16, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(291), 1, + anon_sym_case, + ACTIONS(299), 1, + anon_sym_DASH, + STATE(413), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(301), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(303), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(297), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(305), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(295), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(364), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [497858] = 16, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(335), 1, + anon_sym_LBRACK, + ACTIONS(337), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_DASH, + STATE(453), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(349), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(351), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(345), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(353), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(343), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(446), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [497935] = 16, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(291), 1, + anon_sym_case, + ACTIONS(299), 1, + anon_sym_DASH, + STATE(414), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(301), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(303), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(297), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(305), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(295), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(364), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [498012] = 16, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(291), 1, + anon_sym_case, + ACTIONS(299), 1, + anon_sym_DASH, + STATE(415), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(301), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(303), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(297), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(305), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(295), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(364), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [498089] = 16, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(335), 1, + anon_sym_LBRACK, + ACTIONS(337), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_DASH, + STATE(455), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(349), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(351), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(345), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(353), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(343), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(446), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [498166] = 16, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(335), 1, + anon_sym_LBRACK, + ACTIONS(337), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_DASH, + STATE(456), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(349), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(351), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(345), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(353), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(343), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(446), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [498243] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13034), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [498294] = 16, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(335), 1, + anon_sym_LBRACK, + ACTIONS(337), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_DASH, + STATE(457), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(349), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(351), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(345), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(353), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(343), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(446), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [498371] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(271), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [498448] = 16, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(335), 1, + anon_sym_LBRACK, + ACTIONS(337), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_DASH, + STATE(458), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(349), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(351), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(345), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(353), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(343), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(446), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [498525] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13038), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [498576] = 16, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(335), 1, + anon_sym_LBRACK, + ACTIONS(337), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_DASH, + STATE(459), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(349), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(351), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(345), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(353), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(343), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(446), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [498653] = 16, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(335), 1, + anon_sym_LBRACK, + ACTIONS(337), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_DASH, + STATE(460), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(349), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(351), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(345), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(353), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(343), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(446), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [498730] = 16, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(335), 1, + anon_sym_LBRACK, + ACTIONS(337), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_DASH, + STATE(461), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(349), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(351), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(345), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(353), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(343), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(446), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [498807] = 16, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(335), 1, + anon_sym_LBRACK, + ACTIONS(337), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_DASH, + STATE(462), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(349), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(351), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(345), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(353), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(343), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(446), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [498884] = 16, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(335), 1, + anon_sym_LBRACK, + ACTIONS(337), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_DASH, + STATE(463), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(349), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(351), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(345), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(353), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(343), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(446), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [498961] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12794), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [499012] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(4077), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [499089] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5843), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [499166] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5845), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [499243] = 16, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(291), 1, + anon_sym_case, + ACTIONS(299), 1, + anon_sym_DASH, + STATE(407), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(301), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(303), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(297), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(305), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(295), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(364), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [499320] = 16, + ACTIONS(115), 1, + anon_sym_LPAREN, + ACTIONS(117), 1, + anon_sym_LBRACE, + ACTIONS(119), 1, + anon_sym_LBRACK, + ACTIONS(121), 1, + anon_sym_if, + ACTIONS(123), 1, + anon_sym_case, + ACTIONS(131), 1, + anon_sym_DASH, + STATE(93), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(133), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(135), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(129), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(137), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(127), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(95), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [499397] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(4250), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [499474] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12940), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [499525] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(4077), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [499602] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(5409), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [499679] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13046), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [499730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13050), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [499781] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(272), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [499858] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(273), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [499935] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13270), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [499986] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13054), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [500037] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5620), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [500114] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5807), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [500191] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5808), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [500268] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5623), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [500345] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5812), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [500422] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5813), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [500499] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(274), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [500576] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5815), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [500653] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5816), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [500730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13058), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [500781] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5818), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [500858] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5819), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [500935] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5624), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [501012] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5821), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [501089] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5822), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [501166] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(5398), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [501243] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5823), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [501320] = 16, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(291), 1, + anon_sym_case, + ACTIONS(299), 1, + anon_sym_DASH, + STATE(416), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(301), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(303), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(297), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(305), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(295), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(364), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [501397] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5824), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [501474] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13062), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [501525] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5825), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [501602] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(275), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [501679] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5826), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [501756] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5827), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [501833] = 16, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, + anon_sym_LBRACE, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(289), 1, + anon_sym_if, + ACTIONS(291), 1, + anon_sym_case, + ACTIONS(299), 1, + anon_sym_DASH, + STATE(417), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(293), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(301), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(303), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(297), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(305), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(20), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(295), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(364), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [501910] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5828), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [501987] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5846), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [502064] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5829), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [502141] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13074), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [502192] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5830), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [502269] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13792), 1, + anon_sym_if, + ACTIONS(13794), 1, + anon_sym_case, + ACTIONS(13800), 1, + anon_sym_DASH, + STATE(5358), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(245), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13802), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13798), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(15), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13796), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [502346] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5832), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [502423] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13354), 1, + anon_sym_if, + ACTIONS(13356), 1, + anon_sym_case, + ACTIONS(13362), 1, + anon_sym_DASH, + STATE(5387), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(125), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13364), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13360), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(6), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13358), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [502500] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5833), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [502577] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(276), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [502654] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5834), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [502731] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12776), 29, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [502782] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5850), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [502859] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5835), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [502936] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5626), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [503013] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5836), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [503090] = 16, + ACTIONS(331), 1, + anon_sym_LPAREN, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(335), 1, + anon_sym_LBRACK, + ACTIONS(337), 1, + anon_sym_if, + ACTIONS(339), 1, + anon_sym_case, + ACTIONS(347), 1, + anon_sym_DASH, + STATE(397), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(341), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(349), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(351), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(345), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(353), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(23), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(343), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(446), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [503167] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5838), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [503244] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5628), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [503321] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5839), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [503398] = 16, + ACTIONS(211), 1, + anon_sym_LPAREN, + ACTIONS(213), 1, + anon_sym_LBRACE, + ACTIONS(215), 1, + anon_sym_LBRACK, + ACTIONS(217), 1, + anon_sym_if, + ACTIONS(219), 1, + anon_sym_case, + ACTIONS(227), 1, + anon_sym_DASH, + STATE(277), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(221), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(229), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(231), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(225), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(233), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(12), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(223), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(246), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [503475] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5840), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [503552] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5841), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [503629] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13768), 1, + anon_sym_if, + ACTIONS(13770), 1, + anon_sym_case, + ACTIONS(13776), 1, + anon_sym_DASH, + STATE(5842), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(317), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13778), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13774), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(22), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13772), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [503706] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5847), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [503783] = 16, + ACTIONS(13746), 1, + anon_sym_LPAREN, + ACTIONS(13748), 1, + anon_sym_LBRACE, + ACTIONS(13750), 1, + anon_sym_LBRACK, + ACTIONS(13752), 1, + anon_sym_if, + ACTIONS(13754), 1, + anon_sym_case, + ACTIONS(13760), 1, + anon_sym_DASH, + STATE(5848), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(365), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13762), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13764), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13758), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + ACTIONS(13766), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(26), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13756), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(5437), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [503860] = 16, + ACTIONS(13346), 1, + anon_sym_LPAREN, + ACTIONS(13348), 1, + anon_sym_LBRACE, + ACTIONS(13352), 1, + anon_sym_LBRACK, + ACTIONS(13837), 1, + anon_sym_if, + ACTIONS(13839), 1, + anon_sym_case, + ACTIONS(13845), 1, + anon_sym_DASH, + STATE(5354), 1, + sym__hol_term, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(269), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + ACTIONS(13366), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(13847), 2, + anon_sym_u00ac, + anon_sym_TILDE, + ACTIONS(13368), 3, + sym_hol_number, + sym_hol_string, + sym_hol_character, + ACTIONS(13843), 3, + anon_sym_u2203_BANG, + anon_sym_u2200, + anon_sym_u03bb, + STATE(17), 3, + sym_hol_identifier, + sym__hol_application_lhs, + sym_hol_application, + ACTIONS(13841), 10, + anon_sym_OLEAST, + anon_sym_LEAST, + anon_sym_some, + anon_sym_QMARK_BANG_BANG, + anon_sym_QMARK_BANG, + anon_sym_u2203, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AT, + anon_sym_BSLASH, + STATE(4072), 10, + sym_hol_cond, + sym_hol_case, + sym_hol_binder, + sym_hol_left_unary_term, + sym_hol_binary_term, + sym_hol_annotated, + sym_hol_tuple, + sym_hol_list, + sym_hol_set, + sym__hol_literal, + [503937] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(13899), 1, + anon_sym_RPAREN, + STATE(22391), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [504015] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12702), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [504065] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(13915), 1, + anon_sym_IN, + ACTIONS(13919), 1, + anon_sym_DOLLAR, + ACTIONS(13921), 1, + anon_sym_PLUS, + ACTIONS(13923), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13903), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(13905), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(13909), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(13911), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(470), 3, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + ACTIONS(13913), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(13907), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(13901), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13917), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [504139] = 5, + ACTIONS(13925), 1, + anon_sym_PIPE, + STATE(5345), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(415), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(413), 32, + anon_sym_then, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [504193] = 5, + ACTIONS(13925), 1, + anon_sym_PIPE, + STATE(5349), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 32, + anon_sym_then, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [504247] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12972), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [504297] = 4, + STATE(5228), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(405), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [504349] = 5, + ACTIONS(13927), 1, + anon_sym_PIPE, + STATE(5228), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(426), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(424), 31, + anon_sym_of, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [504403] = 5, + ACTIONS(13927), 1, + anon_sym_PIPE, + STATE(5228), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(405), 31, + anon_sym_of, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [504457] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12894), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [504507] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(13919), 1, + anon_sym_DOLLAR, + ACTIONS(13921), 1, + anon_sym_PLUS, + ACTIONS(13923), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13905), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 29, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [504567] = 12, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(13915), 1, + anon_sym_IN, + ACTIONS(13919), 1, + anon_sym_DOLLAR, + ACTIONS(13921), 1, + anon_sym_PLUS, + ACTIONS(13923), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13903), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(13905), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(13913), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(13901), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 11, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(13917), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [504635] = 7, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(13921), 1, + anon_sym_PLUS, + ACTIONS(13923), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13905), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 30, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + [504693] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13929), 1, + anon_sym_RBRACE, + ACTIONS(13931), 1, + anon_sym_SEMI, + STATE(21872), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [504771] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13933), 1, + anon_sym_RBRACK, + STATE(21876), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [504849] = 14, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(13915), 1, + anon_sym_IN, + ACTIONS(13919), 1, + anon_sym_DOLLAR, + ACTIONS(13921), 1, + anon_sym_PLUS, + ACTIONS(13923), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13903), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(13905), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(13909), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(13911), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(13913), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(13901), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 7, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(13917), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [504921] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(13915), 1, + anon_sym_IN, + ACTIONS(13919), 1, + anon_sym_DOLLAR, + ACTIONS(13921), 1, + anon_sym_PLUS, + ACTIONS(13923), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13903), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(13905), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(13911), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(13913), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(13901), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 9, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(13917), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [504991] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(13915), 1, + anon_sym_IN, + ACTIONS(13919), 1, + anon_sym_DOLLAR, + ACTIONS(13921), 1, + anon_sym_PLUS, + ACTIONS(13923), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13903), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(13905), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(13911), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(13913), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(13901), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 9, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(13917), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [505061] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12948), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [505111] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13935), 1, + anon_sym_RBRACE, + STATE(23950), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [505189] = 10, + ACTIONS(520), 1, + anon_sym_IN, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(13919), 1, + anon_sym_DOLLAR, + ACTIONS(13921), 1, + anon_sym_PLUS, + ACTIONS(13923), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13905), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(13901), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13917), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 16, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + [505253] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13042), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [505303] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13937), 1, + anon_sym_RBRACK, + STATE(23956), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [505381] = 5, + ACTIONS(13925), 1, + anon_sym_PIPE, + STATE(5337), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(415), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(413), 32, + anon_sym_then, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [505435] = 5, + ACTIONS(13925), 1, + anon_sym_PIPE, + STATE(5339), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 32, + anon_sym_then, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [505489] = 4, + STATE(5228), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(426), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(424), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [505541] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13054), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [505591] = 5, + ACTIONS(13939), 1, + anon_sym_PIPE, + STATE(5228), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(419), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(417), 31, + anon_sym_of, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [505645] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(13919), 1, + anon_sym_DOLLAR, + ACTIONS(13921), 1, + anon_sym_PLUS, + ACTIONS(13923), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13905), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 29, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [505705] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13942), 1, + anon_sym_RBRACE, + STATE(24532), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [505783] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(13923), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 33, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [505837] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(13923), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 33, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [505891] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13074), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [505941] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(13944), 1, + anon_sym_RPAREN, + STATE(22424), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [506019] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(13915), 1, + anon_sym_IN, + ACTIONS(13919), 1, + anon_sym_DOLLAR, + ACTIONS(13921), 1, + anon_sym_PLUS, + ACTIONS(13923), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13903), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(13905), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(13909), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(13911), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(522), 3, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + ACTIONS(13913), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(13907), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(13901), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13917), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [506093] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(13915), 1, + anon_sym_IN, + ACTIONS(13919), 1, + anon_sym_DOLLAR, + ACTIONS(13921), 1, + anon_sym_PLUS, + ACTIONS(13923), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13903), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(13905), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(13909), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(13911), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(432), 3, + anon_sym_PIPE, + anon_sym_End, + anon_sym_Termination, + ACTIONS(13913), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(13907), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(13901), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(13917), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [506167] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12956), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [506217] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13946), 1, + anon_sym_RBRACK, + STATE(24553), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [506295] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12776), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [506345] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12952), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [506395] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(13948), 1, + anon_sym_RPAREN, + STATE(23084), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [506473] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(13950), 1, + anon_sym_RPAREN, + STATE(22237), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [506551] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(13952), 1, + anon_sym_RPAREN, + STATE(22284), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [506629] = 5, + ACTIONS(13954), 1, + anon_sym_PIPE, + STATE(5249), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(415), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(413), 32, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [506683] = 5, + ACTIONS(13954), 1, + anon_sym_PIPE, + STATE(5250), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 32, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [506737] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12706), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [506787] = 5, + ACTIONS(13956), 1, + anon_sym_PIPE, + STATE(5313), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(415), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(413), 32, + anon_sym_else, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [506841] = 5, + ACTIONS(13956), 1, + anon_sym_PIPE, + STATE(5321), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 32, + anon_sym_else, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [506895] = 5, + ACTIONS(13954), 1, + anon_sym_PIPE, + STATE(5255), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 32, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [506949] = 5, + ACTIONS(13954), 1, + anon_sym_PIPE, + STATE(5255), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(426), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 32, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [507003] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13958), 1, + anon_sym_RBRACK, + STATE(22545), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [507081] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12418), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [507131] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12960), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [507181] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13030), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [507231] = 5, + ACTIONS(13960), 1, + anon_sym_PIPE, + STATE(5255), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(419), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(417), 32, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [507285] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12790), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [507335] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12710), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [507385] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13963), 1, + anon_sym_RBRACE, + STATE(23236), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [507463] = 4, + STATE(5255), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 33, + anon_sym_PIPE, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [507515] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13070), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [507565] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13344), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [507615] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12944), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [507665] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12714), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [507715] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13965), 1, + anon_sym_RBRACE, + STATE(23766), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [507793] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13967), 1, + anon_sym_RBRACK, + STATE(23239), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [507871] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13969), 1, + anon_sym_RBRACE, + STATE(21680), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [507949] = 4, + STATE(5255), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(426), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 33, + anon_sym_PIPE, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [508001] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13082), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [508051] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13262), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [508101] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13971), 1, + anon_sym_RBRACK, + STATE(22708), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [508179] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12718), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [508229] = 5, + ACTIONS(13927), 1, + anon_sym_PIPE, + STATE(5208), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(405), 31, + anon_sym_of, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [508283] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12964), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [508333] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13973), 1, + anon_sym_RBRACK, + STATE(21746), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [508411] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13975), 1, + anon_sym_RBRACE, + STATE(21558), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [508489] = 5, + ACTIONS(13954), 1, + anon_sym_PIPE, + STATE(5259), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(415), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(413), 32, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [508543] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12722), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [508593] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13132), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [508643] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13977), 1, + anon_sym_RBRACE, + STATE(22668), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [508721] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13266), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [508771] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12694), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [508821] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13979), 1, + anon_sym_RBRACE, + STATE(24356), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [508899] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13981), 1, + anon_sym_RBRACK, + STATE(24358), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [508977] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13066), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [509027] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13983), 1, + anon_sym_RBRACK, + STATE(22674), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [509105] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(13985), 1, + anon_sym_RPAREN, + STATE(22045), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [509183] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13278), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [509233] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(13987), 1, + anon_sym_RPAREN, + STATE(24014), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [509311] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13034), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [509361] = 5, + ACTIONS(13927), 1, + anon_sym_PIPE, + STATE(5207), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(415), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(413), 31, + anon_sym_of, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [509415] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13026), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [509465] = 5, + ACTIONS(13954), 1, + anon_sym_PIPE, + STATE(5267), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 32, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [509519] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12968), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [509569] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12726), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [509619] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13038), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [509669] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(13989), 1, + anon_sym_RPAREN, + STATE(24581), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [509747] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(13991), 1, + anon_sym_RPAREN, + STATE(23331), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [509825] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12772), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [509875] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(13993), 1, + anon_sym_RPAREN, + STATE(23685), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [509953] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12794), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [510003] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13050), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [510053] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(13995), 1, + anon_sym_RPAREN, + STATE(24421), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [510131] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13997), 1, + anon_sym_RBRACE, + STATE(24187), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [510209] = 5, + ACTIONS(13927), 1, + anon_sym_PIPE, + STATE(5226), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(405), 31, + anon_sym_of, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [510263] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(13999), 1, + anon_sym_RBRACK, + STATE(24192), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [510341] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13046), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [510391] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12890), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [510441] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12786), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [510491] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(14001), 1, + anon_sym_RBRACE, + STATE(21600), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [510569] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13282), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [510619] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13058), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [510669] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(14003), 1, + anon_sym_RBRACK, + STATE(21622), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [510747] = 5, + ACTIONS(13956), 1, + anon_sym_PIPE, + STATE(5324), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 32, + anon_sym_else, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [510801] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14005), 38, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_do, + anon_sym_of, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_End, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [510851] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(14009), 1, + anon_sym_RPAREN, + STATE(22851), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [510929] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13270), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [510979] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13274), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [511029] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13078), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [511079] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(14011), 1, + anon_sym_RBRACE, + STATE(23734), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [511157] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(14013), 1, + anon_sym_RBRACK, + STATE(23743), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [511235] = 5, + ACTIONS(13956), 1, + anon_sym_PIPE, + STATE(5324), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(426), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 32, + anon_sym_else, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [511289] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13018), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [511339] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13286), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [511389] = 5, + ACTIONS(14015), 1, + anon_sym_PIPE, + STATE(5324), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(419), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(417), 32, + anon_sym_else, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [511443] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13086), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [511493] = 4, + STATE(5324), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 33, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [511545] = 4, + STATE(5324), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(426), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 33, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [511597] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13290), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [511647] = 5, + ACTIONS(13956), 1, + anon_sym_PIPE, + STATE(5326), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(415), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(413), 32, + anon_sym_else, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [511701] = 5, + ACTIONS(13956), 1, + anon_sym_PIPE, + STATE(5327), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 32, + anon_sym_else, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [511755] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13062), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [511805] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13340), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [511855] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12940), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [511905] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(14018), 1, + anon_sym_RBRACE, + STATE(23864), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [511983] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(14020), 1, + anon_sym_RBRACK, + STATE(24002), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [512061] = 5, + ACTIONS(13927), 1, + anon_sym_PIPE, + STATE(5209), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(415), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(413), 31, + anon_sym_of, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [512115] = 5, + ACTIONS(13925), 1, + anon_sym_PIPE, + STATE(5342), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 32, + anon_sym_then, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [512169] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(14022), 1, + anon_sym_RPAREN, + STATE(24232), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [512247] = 5, + ACTIONS(13925), 1, + anon_sym_PIPE, + STATE(5342), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(426), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 32, + anon_sym_then, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [512301] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12698), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [512351] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13022), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [512401] = 5, + ACTIONS(14024), 1, + anon_sym_PIPE, + STATE(5342), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(419), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(417), 32, + anon_sym_then, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [512455] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(14027), 1, + anon_sym_RPAREN, + STATE(24377), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [512533] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12798), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [512583] = 4, + STATE(5342), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(407), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(405), 33, + anon_sym_then, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [512635] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(12844), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [512685] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(14029), 1, + anon_sym_RBRACE, + STATE(23608), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [512763] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14031), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [512837] = 4, + STATE(5342), 1, + aux_sym_hol_case_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(426), 7, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(424), 33, + anon_sym_then, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + anon_sym_o, + [512889] = 17, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(14033), 1, + anon_sym_RBRACK, + STATE(23613), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [512967] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + anon_sym_Datatype_COLON, + ACTIONS(13294), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_BQUOTE, + anon_sym_Definition, + anon_sym_Theorem, + [513017] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14035), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 32, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [513070] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14037), 1, + anon_sym_COMMA, + ACTIONS(14039), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [513145] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14035), 1, + anon_sym_o, + ACTIONS(14055), 1, + anon_sym_IN, + ACTIONS(14059), 1, + anon_sym_DOLLAR, + ACTIONS(14061), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(432), 2, + anon_sym_else, + anon_sym_PIPE, + ACTIONS(14043), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14045), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14049), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14051), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14053), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14047), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14041), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14057), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [513218] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14063), 1, + anon_sym_COMMA, + ACTIONS(14065), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [513293] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(504), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(502), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [513342] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14071), 1, + anon_sym_SLASH_BSLASH, + ACTIONS(14083), 1, + anon_sym_IN, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14077), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14079), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14069), 3, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + ACTIONS(14081), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14075), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14067), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14085), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [513415] = 7, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14095), 1, + anon_sym_PLUS, + ACTIONS(14097), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14093), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 29, + anon_sym_PIPE, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + [513472] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14099), 1, + anon_sym_COMMA, + ACTIONS(14101), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [513547] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14117), 1, + anon_sym_IN, + ACTIONS(14121), 1, + anon_sym_DOLLAR, + ACTIONS(14123), 1, + anon_sym_PLUS, + ACTIONS(14125), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(432), 2, + anon_sym_then, + anon_sym_PIPE, + ACTIONS(14105), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14107), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14111), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14113), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14115), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14109), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14103), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14119), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [513620] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14117), 1, + anon_sym_IN, + ACTIONS(14121), 1, + anon_sym_DOLLAR, + ACTIONS(14123), 1, + anon_sym_PLUS, + ACTIONS(14125), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14105), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14107), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14113), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14115), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14103), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 8, + anon_sym_then, + anon_sym_PIPE, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14119), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [513689] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 32, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [513742] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14127), 1, + anon_sym_COMMA, + ACTIONS(14129), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [513817] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [513868] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14083), 1, + anon_sym_IN, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(522), 2, + anon_sym_End, + anon_sym_Termination, + ACTIONS(14071), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14077), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14079), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14081), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14075), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14067), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14085), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [513941] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(508), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(506), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [513990] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14095), 1, + anon_sym_PLUS, + ACTIONS(14097), 1, + anon_sym_o, + ACTIONS(14139), 1, + anon_sym_IN, + ACTIONS(14143), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14093), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14133), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14135), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14137), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14131), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 8, + anon_sym_PIPE, + anon_sym_Proof, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14141), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [514059] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14161), 1, + anon_sym_IN, + ACTIONS(14165), 1, + anon_sym_DOLLAR, + ACTIONS(14167), 1, + anon_sym_PLUS, + ACTIONS(14169), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(522), 2, + anon_sym_of, + anon_sym_PIPE, + ACTIONS(14149), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14151), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14155), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14157), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14159), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14153), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14145), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14163), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [514132] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14171), 1, + anon_sym_COMMA, + ACTIONS(14173), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [514207] = 14, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14095), 1, + anon_sym_PLUS, + ACTIONS(14097), 1, + anon_sym_o, + ACTIONS(14139), 1, + anon_sym_IN, + ACTIONS(14143), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14093), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14133), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14135), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14175), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14137), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14131), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 6, + anon_sym_PIPE, + anon_sym_Proof, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14141), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [514278] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14177), 1, + anon_sym_COMMA, + ACTIONS(14179), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [514353] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(512), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(510), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [514402] = 10, + ACTIONS(520), 1, + anon_sym_IN, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14121), 1, + anon_sym_DOLLAR, + ACTIONS(14123), 1, + anon_sym_PLUS, + ACTIONS(14125), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14107), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14103), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14119), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 15, + anon_sym_then, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + [514465] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14117), 1, + anon_sym_IN, + ACTIONS(14121), 1, + anon_sym_DOLLAR, + ACTIONS(14123), 1, + anon_sym_PLUS, + ACTIONS(14125), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14105), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14107), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14113), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14115), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14103), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 8, + anon_sym_then, + anon_sym_PIPE, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14119), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [514534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(516), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(514), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [514583] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(496), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(494), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [514632] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14035), 1, + anon_sym_o, + ACTIONS(14059), 1, + anon_sym_DOLLAR, + ACTIONS(14061), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14045), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [514691] = 12, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14035), 1, + anon_sym_o, + ACTIONS(14055), 1, + anon_sym_IN, + ACTIONS(14059), 1, + anon_sym_DOLLAR, + ACTIONS(14061), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14043), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14045), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14053), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14041), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 10, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14057), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [514758] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14083), 1, + anon_sym_IN, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(432), 2, + anon_sym_End, + anon_sym_Termination, + ACTIONS(14071), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14077), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14079), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14081), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14075), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14067), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14085), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [514831] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [514882] = 14, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14117), 1, + anon_sym_IN, + ACTIONS(14121), 1, + anon_sym_DOLLAR, + ACTIONS(14123), 1, + anon_sym_PLUS, + ACTIONS(14125), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14105), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14107), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14111), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14113), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14115), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14103), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 6, + anon_sym_then, + anon_sym_PIPE, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14119), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [514953] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14071), 1, + anon_sym_u2227, + ACTIONS(14083), 1, + anon_sym_IN, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14077), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14079), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14081), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14181), 3, + anon_sym_End, + anon_sym_Termination, + anon_sym_SLASH_BSLASH, + ACTIONS(14075), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14067), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14085), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [515026] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14097), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 32, + anon_sym_PIPE, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [515079] = 12, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14117), 1, + anon_sym_IN, + ACTIONS(14121), 1, + anon_sym_DOLLAR, + ACTIONS(14123), 1, + anon_sym_PLUS, + ACTIONS(14125), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14105), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14107), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14115), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14103), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 10, + anon_sym_then, + anon_sym_PIPE, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14119), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [515146] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(488), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(486), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [515195] = 7, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14035), 1, + anon_sym_o, + ACTIONS(14061), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14045), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 29, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + [515252] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14183), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [515325] = 13, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14161), 1, + anon_sym_IN, + ACTIONS(14165), 1, + anon_sym_DOLLAR, + ACTIONS(14167), 1, + anon_sym_PLUS, + ACTIONS(14169), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14149), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14151), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14157), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14159), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14145), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 8, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14163), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [515394] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14097), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 32, + anon_sym_PIPE, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [515447] = 7, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14123), 1, + anon_sym_PLUS, + ACTIONS(14125), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14107), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 29, + anon_sym_then, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + [515504] = 14, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14035), 1, + anon_sym_o, + ACTIONS(14055), 1, + anon_sym_IN, + ACTIONS(14059), 1, + anon_sym_DOLLAR, + ACTIONS(14061), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14043), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14045), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14049), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14051), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14053), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14041), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 6, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14057), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [515575] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [515626] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14095), 1, + anon_sym_PLUS, + ACTIONS(14097), 1, + anon_sym_o, + ACTIONS(14139), 1, + anon_sym_IN, + ACTIONS(14143), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14093), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14133), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14135), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14137), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14131), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 8, + anon_sym_PIPE, + anon_sym_Proof, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14141), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [515695] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14035), 1, + anon_sym_o, + ACTIONS(14055), 1, + anon_sym_IN, + ACTIONS(14059), 1, + anon_sym_DOLLAR, + ACTIONS(14061), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14043), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14045), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14051), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14053), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14041), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 8, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14057), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [515764] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14185), 1, + anon_sym_COMMA, + ACTIONS(14187), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [515839] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14035), 1, + anon_sym_o, + ACTIONS(14055), 1, + anon_sym_IN, + ACTIONS(14059), 1, + anon_sym_DOLLAR, + ACTIONS(14061), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(470), 2, + anon_sym_else, + anon_sym_PIPE, + ACTIONS(14043), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14045), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14049), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14051), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14053), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14047), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14041), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14057), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [515912] = 10, + ACTIONS(520), 1, + anon_sym_IN, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14165), 1, + anon_sym_DOLLAR, + ACTIONS(14167), 1, + anon_sym_PLUS, + ACTIONS(14169), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14151), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14145), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14163), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 15, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + [515975] = 12, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14095), 1, + anon_sym_PLUS, + ACTIONS(14097), 1, + anon_sym_o, + ACTIONS(14139), 1, + anon_sym_IN, + ACTIONS(14143), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14093), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14133), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14137), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14131), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 10, + anon_sym_PIPE, + anon_sym_Proof, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14141), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [516042] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14095), 1, + anon_sym_PLUS, + ACTIONS(14097), 1, + anon_sym_o, + ACTIONS(14139), 1, + anon_sym_IN, + ACTIONS(14143), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(522), 2, + anon_sym_PIPE, + anon_sym_Proof, + ACTIONS(14093), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14133), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14135), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14175), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14137), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14189), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14131), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14141), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [516115] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14121), 1, + anon_sym_DOLLAR, + ACTIONS(14123), 1, + anon_sym_PLUS, + ACTIONS(14125), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14107), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_then, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [516174] = 10, + ACTIONS(520), 1, + anon_sym_IN, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14095), 1, + anon_sym_PLUS, + ACTIONS(14097), 1, + anon_sym_o, + ACTIONS(14143), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14093), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14131), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14141), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 15, + anon_sym_PIPE, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + [516237] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(484), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(482), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [516286] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14191), 1, + anon_sym_COMMA, + ACTIONS(14193), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [516361] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(480), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(478), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [516410] = 5, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14169), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [516463] = 14, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14083), 1, + anon_sym_IN, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14077), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14079), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14081), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14069), 4, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14075), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14067), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14085), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [516534] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14195), 1, + anon_sym_COMMA, + ACTIONS(14197), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [516609] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14161), 1, + anon_sym_IN, + ACTIONS(14165), 1, + anon_sym_DOLLAR, + ACTIONS(14167), 1, + anon_sym_PLUS, + ACTIONS(14169), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(432), 2, + anon_sym_of, + anon_sym_PIPE, + ACTIONS(14149), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14151), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14155), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14157), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14159), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14153), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14145), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14163), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [516682] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14095), 1, + anon_sym_PLUS, + ACTIONS(14097), 1, + anon_sym_o, + ACTIONS(14143), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14093), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_PIPE, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [516741] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14035), 1, + anon_sym_o, + ACTIONS(14055), 1, + anon_sym_IN, + ACTIONS(14059), 1, + anon_sym_DOLLAR, + ACTIONS(14061), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14043), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14045), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14051), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14053), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14041), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 8, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14057), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [516810] = 10, + ACTIONS(520), 1, + anon_sym_IN, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14035), 1, + anon_sym_o, + ACTIONS(14059), 1, + anon_sym_DOLLAR, + ACTIONS(14061), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14045), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14041), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14057), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 15, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + [516873] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14035), 1, + anon_sym_o, + ACTIONS(14059), 1, + anon_sym_DOLLAR, + ACTIONS(14061), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14045), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [516932] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14161), 1, + anon_sym_IN, + ACTIONS(14165), 1, + anon_sym_DOLLAR, + ACTIONS(14167), 1, + anon_sym_PLUS, + ACTIONS(14169), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(470), 2, + anon_sym_of, + anon_sym_PIPE, + ACTIONS(14149), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14151), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14155), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14157), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14159), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14153), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14145), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14163), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [517005] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14071), 1, + anon_sym_SLASH_BSLASH, + ACTIONS(14083), 1, + anon_sym_IN, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14077), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14079), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14081), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14181), 3, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + ACTIONS(14075), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14067), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14085), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [517078] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14095), 1, + anon_sym_PLUS, + ACTIONS(14097), 1, + anon_sym_o, + ACTIONS(14143), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14093), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_PIPE, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [517137] = 14, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14083), 1, + anon_sym_IN, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14077), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14079), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14081), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14075), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14181), 4, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14067), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14085), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [517208] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14121), 1, + anon_sym_DOLLAR, + ACTIONS(14123), 1, + anon_sym_PLUS, + ACTIONS(14125), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14107), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_then, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [517267] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(500), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(498), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [517316] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(419), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(417), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [517365] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14125), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 32, + anon_sym_then, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [517418] = 5, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14169), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [517471] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(492), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(490), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [517520] = 8, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14165), 1, + anon_sym_DOLLAR, + ACTIONS(14167), 1, + anon_sym_PLUS, + ACTIONS(14169), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14151), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [517579] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(430), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(428), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [517628] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14117), 1, + anon_sym_IN, + ACTIONS(14121), 1, + anon_sym_DOLLAR, + ACTIONS(14123), 1, + anon_sym_PLUS, + ACTIONS(14125), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(470), 2, + anon_sym_then, + anon_sym_PIPE, + ACTIONS(14105), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14107), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14111), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14113), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14115), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14109), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14103), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14119), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [517701] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14095), 1, + anon_sym_PLUS, + ACTIONS(14097), 1, + anon_sym_o, + ACTIONS(14139), 1, + anon_sym_IN, + ACTIONS(14143), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(470), 2, + anon_sym_PIPE, + anon_sym_Proof, + ACTIONS(14093), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14133), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14135), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14175), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14137), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14189), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14131), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14141), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [517774] = 12, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14161), 1, + anon_sym_IN, + ACTIONS(14165), 1, + anon_sym_DOLLAR, + ACTIONS(14167), 1, + anon_sym_PLUS, + ACTIONS(14169), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14149), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14151), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14159), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14145), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 10, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14163), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [517841] = 7, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14167), 1, + anon_sym_PLUS, + ACTIONS(14169), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14151), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 29, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + [517898] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 32, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [517951] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14117), 1, + anon_sym_IN, + ACTIONS(14121), 1, + anon_sym_DOLLAR, + ACTIONS(14123), 1, + anon_sym_PLUS, + ACTIONS(14125), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(522), 2, + anon_sym_then, + anon_sym_PIPE, + ACTIONS(14105), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14107), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14111), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14113), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14115), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14109), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14103), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14119), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [518024] = 8, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14165), 1, + anon_sym_DOLLAR, + ACTIONS(14167), 1, + anon_sym_PLUS, + ACTIONS(14169), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14151), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [518083] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [518142] = 12, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14083), 1, + anon_sym_IN, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14071), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14081), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14067), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 10, + anon_sym_End, + anon_sym_Termination, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14085), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [518209] = 14, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14161), 1, + anon_sym_IN, + ACTIONS(14165), 1, + anon_sym_DOLLAR, + ACTIONS(14167), 1, + anon_sym_PLUS, + ACTIONS(14169), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14149), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14151), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14155), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14157), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14159), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14145), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 6, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14163), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [518280] = 7, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 29, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + [518337] = 14, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14083), 1, + anon_sym_IN, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14071), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14077), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14079), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14081), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14067), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 6, + anon_sym_End, + anon_sym_Termination, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14085), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [518408] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(89), 8, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_o, + ACTIONS(85), 32, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [518457] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14199), 1, + anon_sym_COMMA, + ACTIONS(14201), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [518532] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14083), 1, + anon_sym_IN, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14071), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14079), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14081), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14067), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 8, + anon_sym_End, + anon_sym_Termination, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14085), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [518601] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14083), 1, + anon_sym_IN, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14071), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14079), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14081), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14067), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 8, + anon_sym_End, + anon_sym_Termination, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14085), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [518670] = 10, + ACTIONS(520), 1, + anon_sym_IN, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14067), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14085), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 15, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + [518733] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [518792] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14035), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 32, + anon_sym_else, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [518845] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14203), 1, + anon_sym_COMMA, + ACTIONS(14205), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [518920] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14207), 1, + anon_sym_COMMA, + ACTIONS(14209), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [518995] = 13, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14161), 1, + anon_sym_IN, + ACTIONS(14165), 1, + anon_sym_DOLLAR, + ACTIONS(14167), 1, + anon_sym_PLUS, + ACTIONS(14169), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14149), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14151), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14157), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14159), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14145), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 8, + anon_sym_of, + anon_sym_PIPE, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14163), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [519064] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14211), 1, + anon_sym_COMMA, + ACTIONS(14213), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [519139] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14095), 1, + anon_sym_PLUS, + ACTIONS(14097), 1, + anon_sym_o, + ACTIONS(14139), 1, + anon_sym_IN, + ACTIONS(14143), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(432), 2, + anon_sym_PIPE, + anon_sym_Proof, + ACTIONS(14093), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14133), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14135), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14175), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14137), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14189), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14131), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14141), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [519212] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14125), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 32, + anon_sym_then, + anon_sym_PIPE, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [519265] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14071), 1, + anon_sym_u2227, + ACTIONS(14083), 1, + anon_sym_IN, + ACTIONS(14087), 1, + anon_sym_DOLLAR, + ACTIONS(14089), 1, + anon_sym_PLUS, + ACTIONS(14091), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14073), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14077), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14079), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14069), 3, + anon_sym_End, + anon_sym_Termination, + anon_sym_SLASH_BSLASH, + ACTIONS(14081), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14075), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14067), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14085), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [519338] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14035), 1, + anon_sym_o, + ACTIONS(14055), 1, + anon_sym_IN, + ACTIONS(14059), 1, + anon_sym_DOLLAR, + ACTIONS(14061), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(522), 2, + anon_sym_else, + anon_sym_PIPE, + ACTIONS(14043), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14045), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14049), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14051), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14053), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14047), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14041), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14057), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [519411] = 16, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14215), 1, + anon_sym_COMMA, + ACTIONS(14217), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [519486] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14221), 1, + anon_sym_of, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [519558] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [519606] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [519656] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [519704] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [519752] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [519800] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [519848] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [519896] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [519944] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [519992] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520040] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520088] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520136] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520184] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520232] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520280] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520328] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520376] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520424] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520472] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520520] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520568] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520616] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520664] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520712] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520760] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520808] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520856] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520904] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [520952] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521000] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521048] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521096] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521144] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521192] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521240] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521288] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521336] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521384] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521432] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521480] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521528] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521576] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521624] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521672] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521768] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521816] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521864] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521912] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [521960] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522008] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522056] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522104] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522152] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522200] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522248] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522296] = 15, + ACTIONS(522), 1, + anon_sym_then, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [522368] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522416] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522464] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522514] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522562] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522610] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522660] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522708] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522756] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522804] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522852] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522900] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522948] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [522996] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523044] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523092] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523140] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523188] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523236] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523284] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523332] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523380] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523428] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523476] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523524] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523572] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523620] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523668] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523716] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523764] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523812] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523860] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523908] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [523956] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524004] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524052] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524100] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524148] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524196] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524244] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524292] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524340] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524388] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524436] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524532] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524580] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524628] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524676] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524724] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524772] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524820] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524868] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524916] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [524964] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [525012] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [525060] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [525108] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [525156] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [525204] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [525252] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [525302] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [525350] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [525400] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [525448] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [525496] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [525546] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [525594] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [525642] = 25, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14279), 1, + anon_sym_LPAREN, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14289), 1, + anon_sym_rec, + ACTIONS(14291), 1, + anon_sym__, + STATE(8207), 1, + sym_tyvarseq, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(13979), 1, + sym__valbind, + STATE(14139), 1, + sym_valbind, + STATE(14662), 1, + sym_tyvar, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20091), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [525734] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14293), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [525806] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14069), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [525878] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14297), 1, + anon_sym_else, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [525950] = 15, + ACTIONS(432), 1, + anon_sym_then, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [526022] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14181), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [526094] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14323), 1, + anon_sym_DOLLAR, + ACTIONS(14325), 1, + anon_sym_PLUS, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14321), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 27, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [526152] = 12, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14323), 1, + anon_sym_DOLLAR, + ACTIONS(14325), 1, + anon_sym_PLUS, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(14335), 1, + anon_sym_IN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14321), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14331), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14333), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14329), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 9, + anon_sym_Proof, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14337), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [526218] = 7, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14325), 1, + anon_sym_PLUS, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14321), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + [526274] = 14, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14323), 1, + anon_sym_DOLLAR, + ACTIONS(14325), 1, + anon_sym_PLUS, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(14335), 1, + anon_sym_IN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14321), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14331), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14339), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14341), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14333), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(518), 5, + anon_sym_Proof, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14329), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14337), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [526344] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14323), 1, + anon_sym_DOLLAR, + ACTIONS(14325), 1, + anon_sym_PLUS, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(14335), 1, + anon_sym_IN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14321), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14331), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14341), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14333), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14329), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 7, + anon_sym_Proof, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14337), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [526412] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14323), 1, + anon_sym_DOLLAR, + ACTIONS(14325), 1, + anon_sym_PLUS, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(14335), 1, + anon_sym_IN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14321), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14331), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14341), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14333), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14329), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 7, + anon_sym_Proof, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14337), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [526480] = 10, + ACTIONS(520), 1, + anon_sym_IN, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14323), 1, + anon_sym_DOLLAR, + ACTIONS(14325), 1, + anon_sym_PLUS, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14321), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14329), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14337), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 14, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + [526542] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14323), 1, + anon_sym_DOLLAR, + ACTIONS(14325), 1, + anon_sym_PLUS, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14321), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 27, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [526600] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 31, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [526652] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 31, + anon_sym_Proof, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [526704] = 15, + ACTIONS(522), 1, + anon_sym_Proof, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14323), 1, + anon_sym_DOLLAR, + ACTIONS(14325), 1, + anon_sym_PLUS, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(14335), 1, + anon_sym_IN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14321), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14331), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14339), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14341), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14333), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14343), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14329), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14337), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [526776] = 15, + ACTIONS(432), 1, + anon_sym_Proof, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14323), 1, + anon_sym_DOLLAR, + ACTIONS(14325), 1, + anon_sym_PLUS, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(14335), 1, + anon_sym_IN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14321), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14331), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14339), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14341), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14333), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14343), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14329), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14337), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [526848] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14345), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [526920] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14347), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [526992] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 27, + anon_sym_else, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [527050] = 12, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 9, + anon_sym_else, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [527116] = 7, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_else, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + [527172] = 14, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(518), 5, + anon_sym_else, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [527242] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 7, + anon_sym_else, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [527310] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 7, + anon_sym_else, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [527378] = 10, + ACTIONS(520), 1, + anon_sym_IN, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 14, + anon_sym_else, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + [527440] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 27, + anon_sym_else, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [527498] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 31, + anon_sym_else, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [527550] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 31, + anon_sym_else, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [527602] = 15, + ACTIONS(522), 1, + anon_sym_else, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [527674] = 15, + ACTIONS(432), 1, + anon_sym_else, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [527746] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14349), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [527818] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14351), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [527890] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14353), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [527962] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14355), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528034] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14357), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528106] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14359), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528178] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14361), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528250] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14363), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528322] = 8, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 27, + anon_sym_of, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528380] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14365), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528452] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14367), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528524] = 12, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 9, + anon_sym_of, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528590] = 7, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_of, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + [528646] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14369), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528718] = 14, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(518), 5, + anon_sym_of, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528788] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14371), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528860] = 13, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 7, + anon_sym_of, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528928] = 13, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 7, + anon_sym_of, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [528996] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14373), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [529068] = 10, + ACTIONS(520), 1, + anon_sym_IN, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 14, + anon_sym_of, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + [529130] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14375), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [529202] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14377), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [529274] = 8, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 27, + anon_sym_of, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [529332] = 5, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 31, + anon_sym_of, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [529384] = 5, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 31, + anon_sym_of, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [529436] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14379), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [529508] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14323), 1, + anon_sym_DOLLAR, + ACTIONS(14325), 1, + anon_sym_PLUS, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(14335), 1, + anon_sym_IN, + ACTIONS(14381), 1, + anon_sym_Proof, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14321), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14331), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14339), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14341), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14333), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14343), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14329), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14337), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [529580] = 15, + ACTIONS(522), 1, + anon_sym_of, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [529652] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14383), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [529724] = 15, + ACTIONS(432), 1, + anon_sym_of, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [529796] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14385), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [529868] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14387), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [529940] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14389), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530012] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14391), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530084] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14393), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530156] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14395), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530228] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14397), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530300] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14399), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530372] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14401), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530444] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14403), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530516] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14405), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530588] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14407), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530660] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14409), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530732] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14411), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530804] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14413), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530876] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14323), 1, + anon_sym_DOLLAR, + ACTIONS(14325), 1, + anon_sym_PLUS, + ACTIONS(14327), 1, + anon_sym_o, + ACTIONS(14335), 1, + anon_sym_IN, + ACTIONS(14415), 1, + anon_sym_Proof, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14321), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14331), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14339), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14341), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14333), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14343), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14329), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14337), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [530948] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14419), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14417), 36, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_do, + anon_sym_of, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_as, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_End, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [530996] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14421), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [531068] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14423), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [531140] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14425), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [531212] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14427), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [531284] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14429), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [531356] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14431), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [531428] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14433), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [531500] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14435), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [531572] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14437), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [531644] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14439), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [531716] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14311), 1, + anon_sym_IN, + ACTIONS(14315), 1, + anon_sym_DOLLAR, + ACTIONS(14317), 1, + anon_sym_PLUS, + ACTIONS(14319), 1, + anon_sym_o, + ACTIONS(14441), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14299), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14301), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14305), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14307), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14309), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14303), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14295), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14313), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [531788] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14443), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [531860] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14445), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [531932] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14447), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532004] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14449), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532076] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14451), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532148] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14453), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532220] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14455), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532292] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [532340] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14457), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532412] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14459), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532484] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14461), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532556] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14463), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532628] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14465), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532700] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14467), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532772] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14469), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532844] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14471), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532916] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14473), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [532988] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14475), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [533060] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14477), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [533132] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14479), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [533204] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14481), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [533276] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14483), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [533348] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14485), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [533420] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14487), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [533492] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14489), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [533564] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14491), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [533636] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14493), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [533708] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14495), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [533780] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [533830] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14497), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [533902] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14499), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [533974] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14501), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534046] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14503), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534118] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14505), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534190] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14507), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534262] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14509), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534334] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14511), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534406] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14513), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534478] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14515), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534550] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14517), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534622] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14519), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534694] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14521), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534766] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14523), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534838] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14525), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534910] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14527), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [534982] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14529), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [535054] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14531), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [535126] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14533), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [535198] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [535248] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14535), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [535320] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14537), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [535392] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14539), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [535464] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14541), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [535536] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14543), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [535608] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14545), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [535680] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14547), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [535752] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14549), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [535824] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14551), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [535896] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14553), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [535968] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14555), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [536040] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14557), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [536112] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14559), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [536184] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14561), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [536256] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14563), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [536328] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14567), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14565), 36, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_do, + anon_sym_of, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_as, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_End, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [536376] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14569), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [536448] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14571), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [536520] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14573), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [536592] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14575), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [536664] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14577), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [536736] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14579), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [536808] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14581), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [536880] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14583), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [536952] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14585), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [537024] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14587), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [537096] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14589), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [537168] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14591), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [537240] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14593), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [537312] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14595), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [537384] = 25, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14279), 1, + anon_sym_LPAREN, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(14597), 1, + anon_sym_rec, + STATE(8251), 1, + sym_tyvarseq, + STATE(12147), 1, + sym_valbind, + STATE(13276), 1, + sym__valbind, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14662), 1, + sym_tyvar, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(19313), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [537476] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 27, + anon_sym_then, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [537534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [537582] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [537630] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [537678] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [537726] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [537774] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [537822] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [537870] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [537918] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [537966] = 12, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 9, + anon_sym_then, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [538032] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538080] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538128] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538176] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538224] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538272] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538320] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538368] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538416] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538464] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538512] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538560] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538608] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538656] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538704] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538752] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538800] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538848] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538896] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538944] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [538992] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539040] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539088] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539136] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539184] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539232] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539280] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539328] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539376] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539424] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539472] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539520] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539568] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539616] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539664] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539712] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539760] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539808] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539856] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539904] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [539952] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [540000] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [540048] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [540096] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [540144] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [540194] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 28, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [540242] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14599), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [540314] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14601), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [540386] = 25, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14279), 1, + anon_sym_LPAREN, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(14603), 1, + anon_sym_rec, + STATE(8249), 1, + sym_tyvarseq, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(13979), 1, + sym__valbind, + STATE(14011), 1, + sym_valbind, + STATE(14662), 1, + sym_tyvar, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20158), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [540478] = 7, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 28, + anon_sym_then, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + [540534] = 14, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(518), 5, + anon_sym_then, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [540604] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14605), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [540676] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14607), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [540748] = 25, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14279), 1, + anon_sym_LPAREN, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(14609), 1, + anon_sym_rec, + STATE(8262), 1, + sym_tyvarseq, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(13979), 1, + sym__valbind, + STATE(14017), 1, + sym_valbind, + STATE(14662), 1, + sym_tyvar, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20189), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [540840] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14611), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [540912] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14613), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [540984] = 25, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14279), 1, + anon_sym_LPAREN, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(14615), 1, + anon_sym_rec, + STATE(8276), 1, + sym_tyvarseq, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(13979), 1, + sym__valbind, + STATE(14159), 1, + sym_valbind, + STATE(14662), 1, + sym_tyvar, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20228), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [541076] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14617), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [541148] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14619), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [541220] = 25, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14279), 1, + anon_sym_LPAREN, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(14621), 1, + anon_sym_rec, + STATE(8161), 1, + sym_tyvarseq, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(13979), 1, + sym__valbind, + STATE(14035), 1, + sym_valbind, + STATE(14662), 1, + sym_tyvar, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20269), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [541312] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14623), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [541384] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14625), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [541456] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14627), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [541528] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14629), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [541600] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14631), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [541672] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14633), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [541744] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14635), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [541816] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14637), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [541888] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14639), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [541960] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14641), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [542032] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 7, + anon_sym_then, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [542100] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14643), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [542172] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14645), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [542244] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14647), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [542316] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14649), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [542388] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14651), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [542460] = 13, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 7, + anon_sym_then, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [542528] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14653), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [542600] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14655), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [542672] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14657), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [542744] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14659), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [542816] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14259), 1, + anon_sym_IN, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(14661), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14247), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14253), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14255), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14257), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14251), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [542888] = 10, + ACTIONS(520), 1, + anon_sym_IN, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14245), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14261), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + ACTIONS(518), 14, + anon_sym_then, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + [542950] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [543000] = 8, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14263), 1, + anon_sym_DOLLAR, + ACTIONS(14265), 1, + anon_sym_PLUS, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14249), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 27, + anon_sym_then, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [543058] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 31, + anon_sym_then, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [543110] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14663), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [543182] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14665), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [543254] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14667), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [543326] = 5, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(14267), 1, + anon_sym_o, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(520), 6, + anon_sym_EQ, + anon_sym_IN, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(518), 31, + anon_sym_then, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + anon_sym_DOLLAR, + anon_sym_INSERT, + anon_sym_PLUS, + [543378] = 15, + ACTIONS(14147), 1, + anon_sym_COLON, + ACTIONS(14235), 1, + anon_sym_IN, + ACTIONS(14239), 1, + anon_sym_DOLLAR, + ACTIONS(14241), 1, + anon_sym_PLUS, + ACTIONS(14243), 1, + anon_sym_o, + ACTIONS(14669), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14223), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(14225), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(14229), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(14231), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(14233), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(14227), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(14219), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14237), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [543450] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [543500] = 15, + ACTIONS(12142), 1, + anon_sym_COLON, + ACTIONS(12682), 1, + anon_sym_IN, + ACTIONS(12686), 1, + anon_sym_DOLLAR, + ACTIONS(12688), 1, + anon_sym_PLUS, + ACTIONS(12690), 1, + anon_sym_o, + ACTIONS(14671), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12676), 2, + anon_sym_u2227, + anon_sym_SLASH_BSLASH, + ACTIONS(12678), 2, + anon_sym_COLON_COLON, + anon_sym_INSERT, + ACTIONS(12780), 2, + anon_sym_EQ_EQ_GT, + anon_sym_u21d2, + ACTIONS(12782), 2, + anon_sym_BSLASH_SLASH, + anon_sym_u2228, + ACTIONS(12680), 3, + anon_sym_u2209, + anon_sym_NOTIN, + anon_sym_u2208, + ACTIONS(12778), 4, + anon_sym_u21ce, + anon_sym_LT_EQ_SLASH_EQ_GT, + anon_sym_LT_EQ_GT, + anon_sym_u21d4, + ACTIONS(12674), 5, + anon_sym_EQ, + anon_sym_u2286, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LT, + ACTIONS(12684), 13, + anon_sym_u227c, + anon_sym_LT_LT_EQ, + anon_sym_PERMUTES, + anon_sym_HAS_SIZE, + anon_sym_u2282, + anon_sym_PSUBSET, + anon_sym_u2265, + anon_sym_GT_EQ, + anon_sym_u2264, + anon_sym_u2286u1d63, + anon_sym_RSUBSET, + anon_sym_u2260, + anon_sym_LT_GT, + [543572] = 24, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14683), 1, + anon_sym_COMMA, + ACTIONS(14685), 1, + anon_sym_RPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(7939), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17933), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23131), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8382), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [543661] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [543708] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [543755] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [543802] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [543849] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [543898] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [543945] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [543992] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544039] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [544086] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544133] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544227] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544274] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544321] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544368] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544415] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544462] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544509] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544556] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544603] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544650] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544697] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [544744] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544791] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544838] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544885] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [544932] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14697), 1, + anon_sym_COMMA, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14701), 1, + anon_sym_RBRACK, + STATE(5885), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17715), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23080), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [545021] = 24, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14279), 1, + anon_sym_LPAREN, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + STATE(8217), 1, + sym_tyvarseq, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14085), 1, + sym__valbind, + STATE(14139), 1, + sym_valbind, + STATE(14662), 1, + sym_tyvar, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20091), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [545110] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [545157] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14705), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17840), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23618), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [545246] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14707), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23945), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [545335] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [545382] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14709), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24250), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [545471] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [545518] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [545565] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14711), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24547), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [545654] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [545701] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [545748] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [545795] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [545842] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [545889] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [545936] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [545983] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [546030] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [546077] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [546124] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [546171] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [546218] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [546265] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14713), 1, + anon_sym_COMMA, + ACTIONS(14715), 1, + anon_sym_RBRACK, + STATE(5907), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17950), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23603), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [546354] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [546401] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14717), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17829), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(21515), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [546490] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14719), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(21877), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [546579] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14721), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22185), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [546668] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [546715] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14723), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22361), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [546804] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [546851] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [546898] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [546945] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [546992] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [547039] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [547086] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [547133] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [547180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [547227] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [547274] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [547321] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [547368] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14725), 1, + anon_sym_COMMA, + ACTIONS(14727), 1, + anon_sym_RBRACK, + STATE(5926), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17797), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(21719), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [547457] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [547504] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14729), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17878), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(21847), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [547593] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14731), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(21940), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [547682] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14733), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22034), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [547771] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [547818] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14735), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22078), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [547907] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14737), 1, + anon_sym_COMMA, + ACTIONS(14739), 1, + anon_sym_RBRACK, + STATE(5933), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17937), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22489), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [547996] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [548043] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14741), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17754), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22647), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [548132] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14743), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22752), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [548221] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14745), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22840), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [548310] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [548357] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14747), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22878), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [548446] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14749), 1, + anon_sym_COMMA, + ACTIONS(14751), 1, + anon_sym_RBRACK, + STATE(5940), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17896), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23143), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [548535] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [548582] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14753), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17919), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23224), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [548671] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14755), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23278), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [548760] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14757), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23326), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [548849] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [548896] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14759), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23353), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [548985] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549032] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549079] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549126] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549173] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549220] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549267] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549314] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549361] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549408] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [549457] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549504] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549551] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549598] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549645] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549692] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549739] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [549786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [549833] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [549880] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [549927] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [549974] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550021] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14761), 1, + anon_sym_COMMA, + ACTIONS(14763), 1, + anon_sym_RBRACK, + STATE(5975), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17752), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22063), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [550110] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550157] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550204] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550251] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550298] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14765), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(21892), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [550387] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550434] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550481] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14767), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17723), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22569), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [550570] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550617] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550664] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550711] = 24, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14769), 1, + anon_sym_COMMA, + ACTIONS(14771), 1, + anon_sym_RPAREN, + STATE(7639), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17859), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22604), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [550800] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550847] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550894] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550941] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [550988] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551035] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551082] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551129] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551176] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551223] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551317] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551364] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14773), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22529), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [551453] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551500] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551547] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551594] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551641] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551688] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551735] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551782] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551829] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551923] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [551970] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [552017] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [552064] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [552111] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [552158] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [552205] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [552252] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [552299] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [552346] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [552395] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [552442] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [552489] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [552536] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [552583] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [552630] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [552677] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [552724] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [552771] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [552818] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [552865] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [552912] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [552959] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553006] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553053] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553100] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553147] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553194] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553241] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553288] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553335] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553382] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553429] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553476] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553523] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553570] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553617] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553664] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553711] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553758] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553805] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553852] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553899] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553946] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [553993] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554040] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554087] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554134] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554181] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554228] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554275] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554322] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [554369] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554416] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554463] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554510] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554557] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554604] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554651] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554698] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554745] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554792] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554839] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554886] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554933] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [554980] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555027] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555074] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555121] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555168] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [555215] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [555262] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [555309] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555358] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [555407] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555454] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555501] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555550] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555597] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555644] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555693] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555740] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555787] = 24, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14279), 1, + anon_sym_LPAREN, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + STATE(8278), 1, + sym_tyvarseq, + STATE(12147), 1, + sym_valbind, + STATE(13210), 1, + sym__valbind, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14662), 1, + sym_tyvar, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(19313), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [555876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [555923] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [555970] = 24, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14683), 1, + anon_sym_COMMA, + ACTIONS(14685), 1, + anon_sym_RPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(7939), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17933), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23131), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8293), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [556059] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556106] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556155] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556202] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556249] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556296] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556343] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556390] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556437] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556531] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556578] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556625] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556672] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556719] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556766] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556813] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556860] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556907] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [556954] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557001] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557048] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557095] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557142] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557189] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557236] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557283] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557330] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557377] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557424] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557471] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557518] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557565] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557612] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557659] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557706] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557753] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557800] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557847] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557894] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557941] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [557988] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558035] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558082] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558129] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558176] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558223] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558317] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558364] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558411] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558458] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558505] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558552] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558599] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558646] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558693] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558740] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558787] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558834] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558881] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558928] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [558975] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559022] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559069] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559116] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559163] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559210] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559257] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559304] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559351] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559398] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559445] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559492] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559539] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559588] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559635] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559682] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559729] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559776] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559823] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559872] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559919] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [559966] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560013] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560060] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560107] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560154] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560201] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560248] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560295] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560342] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560389] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560436] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560483] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560530] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560577] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [560626] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560673] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560767] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560814] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560861] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560908] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [560955] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561002] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561049] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561096] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561143] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561190] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561237] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561284] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561331] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561378] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561425] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561472] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561519] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561566] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561613] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561660] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561707] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561754] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561801] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561848] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561895] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561942] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [561989] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562036] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562083] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562130] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562177] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562224] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562271] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562318] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562365] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562412] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562459] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562506] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562553] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562600] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562647] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562694] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562741] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562788] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562835] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562882] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562929] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [562976] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563023] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563070] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563117] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563164] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563211] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563258] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563305] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563352] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563399] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563446] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563493] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563540] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563587] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563634] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [563683] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563777] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563824] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563871] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563918] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [563965] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [564012] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [564061] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [564108] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [564155] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [564202] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564249] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564296] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564343] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564390] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564437] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564531] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564578] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564625] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564672] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564719] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564766] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564813] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564860] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564907] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [564954] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565001] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565048] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565095] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565142] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565189] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565236] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565283] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565330] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565377] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565424] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565471] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565518] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565565] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565612] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565659] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565706] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565753] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565800] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565847] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565894] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565941] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [565988] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566035] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566082] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566129] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566176] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566223] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566317] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566364] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566411] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566458] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566505] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566552] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566599] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566646] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566693] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [566740] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [566787] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [566834] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [566881] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [566928] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [566975] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567022] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567069] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567116] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567163] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567210] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567257] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567304] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567351] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567398] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567445] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567492] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567539] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567586] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567633] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567680] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567727] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567774] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567821] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567868] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567915] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [567962] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568009] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568056] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568103] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568150] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568197] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568244] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568291] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568338] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568385] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568432] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568479] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568526] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568573] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568620] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568667] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568714] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568761] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568808] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568855] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568902] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568949] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [568996] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569043] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569090] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569137] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569184] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569231] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569278] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569325] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569372] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569419] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569466] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569513] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569560] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569607] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569654] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569701] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569748] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569795] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569842] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569889] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569936] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [569983] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570030] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570077] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570124] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570171] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570218] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570265] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570312] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570359] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570406] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570453] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570500] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570547] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570594] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570641] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570688] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570735] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570782] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570829] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570923] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [570970] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571017] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571064] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571111] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571158] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571205] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571252] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571299] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571346] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571393] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571440] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571487] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571581] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571628] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571675] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571722] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571769] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571816] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571863] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571910] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [571957] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572004] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572051] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572098] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572145] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572192] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572239] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572286] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572333] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572380] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572427] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572474] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572521] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572568] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572615] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572662] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572709] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572756] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572803] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572850] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572897] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572944] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [572991] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573038] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573085] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573132] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573179] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573226] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573273] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573320] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573367] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573414] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573461] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573508] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573555] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573602] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573649] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573696] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573743] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573790] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573837] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573884] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573931] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [573978] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574025] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574072] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574119] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574166] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574213] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574260] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574307] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574354] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574401] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574448] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574495] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [574542] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574589] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574636] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574683] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [574730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574777] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574824] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [574871] = 24, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14279), 1, + anon_sym_LPAREN, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + STATE(8252), 1, + sym_tyvarseq, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14011), 1, + sym_valbind, + STATE(14085), 1, + sym__valbind, + STATE(14662), 1, + sym_tyvar, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20158), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [574960] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575007] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575054] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575101] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575148] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575195] = 24, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14279), 1, + anon_sym_LPAREN, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + STATE(8266), 1, + sym_tyvarseq, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14017), 1, + sym_valbind, + STATE(14085), 1, + sym__valbind, + STATE(14662), 1, + sym_tyvar, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20189), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [575284] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575331] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575378] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575425] = 24, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14279), 1, + anon_sym_LPAREN, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + STATE(8282), 1, + sym_tyvarseq, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14085), 1, + sym__valbind, + STATE(14159), 1, + sym_valbind, + STATE(14662), 1, + sym_tyvar, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20228), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [575514] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575561] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575608] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575655] = 24, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14279), 1, + anon_sym_LPAREN, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + STATE(8164), 1, + sym_tyvarseq, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14035), 1, + sym_valbind, + STATE(14085), 1, + sym__valbind, + STATE(14662), 1, + sym_tyvar, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20269), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [575744] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575791] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575838] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575885] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575932] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [575979] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576026] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576073] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576120] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [576167] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [576216] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576263] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576310] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576357] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576404] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576498] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576545] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576639] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576686] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576733] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [576780] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576827] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576874] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576921] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [576968] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577015] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577062] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577109] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577156] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577250] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577297] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577344] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577391] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577438] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577485] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577532] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577579] = 24, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14699), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14775), 1, + anon_sym_RBRACK, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(22385), 1, + sym_ellipsis_listpat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [577668] = 24, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14683), 1, + anon_sym_COMMA, + ACTIONS(14685), 1, + anon_sym_RPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(7939), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17933), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23131), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8381), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [577757] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [577806] = 24, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14683), 1, + anon_sym_COMMA, + ACTIONS(14685), 1, + anon_sym_RPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(7939), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17933), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23131), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8383), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [577895] = 24, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14683), 1, + anon_sym_COMMA, + ACTIONS(14685), 1, + anon_sym_RPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(7939), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17933), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23131), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8337), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [577984] = 24, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14683), 1, + anon_sym_COMMA, + ACTIONS(14685), 1, + anon_sym_RPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(7939), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17933), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(23131), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8380), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [578073] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 27, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578120] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578166] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578212] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578258] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578304] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578350] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578396] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578442] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578488] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578580] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578626] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578672] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578718] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578764] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578810] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578856] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578902] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578948] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [578994] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [579040] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [579086] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [579132] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [579178] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [579224] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [579270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [579316] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [579362] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [579408] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [579454] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [579500] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [579546] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [579592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [579638] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [579684] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [579730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [579776] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [579822] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [579868] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [579914] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [579960] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [580006] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [580052] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [580098] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [580144] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [580190] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [580236] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [580282] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [580328] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [580374] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [580420] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [580466] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [580514] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [580560] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [580608] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [580654] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [580702] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14779), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14777), 34, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_do, + anon_sym_of, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_End, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [580748] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [580794] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [580840] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [580886] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [580932] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [580978] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581024] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581070] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581116] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581162] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581208] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581254] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581300] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581346] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581392] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581438] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581530] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581576] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581622] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581668] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581714] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581760] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581806] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581852] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581898] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581944] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [581990] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582036] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582082] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582128] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582174] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582220] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582266] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582312] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582358] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582404] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582450] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582496] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582542] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582588] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582634] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582680] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582726] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582772] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582818] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582864] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582910] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [582956] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [583002] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [583048] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [583094] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [583140] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [583186] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [583232] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583278] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [583324] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583370] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583416] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583462] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583508] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583554] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583600] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583646] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583692] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583738] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583784] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583830] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583922] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [583968] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584014] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584060] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584152] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584198] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584244] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584290] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584336] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584382] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584428] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584474] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584520] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584566] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584612] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584658] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584704] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584750] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584796] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584842] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584888] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584934] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [584980] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585026] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585072] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585118] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585164] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585210] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585256] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585302] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585348] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585394] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585440] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585486] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585532] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585578] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585624] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585670] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585716] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [585762] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [585808] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [585854] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [585900] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [585946] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [585992] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586038] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586084] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586130] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586176] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586268] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586314] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586360] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586406] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586452] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586498] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586544] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586590] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586636] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586682] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586728] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586774] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586820] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586866] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586912] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [586958] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587004] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587050] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587096] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587142] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587188] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587234] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587280] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587326] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587372] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587418] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587464] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587510] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587556] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587602] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587648] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587694] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587740] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587832] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587878] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587924] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [587970] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588016] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588062] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588108] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588154] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588200] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588246] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588292] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588338] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588384] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588430] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588476] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588522] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588568] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588614] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588660] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588706] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588752] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588798] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588844] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588890] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588936] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [588982] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589028] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589074] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589120] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589166] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589212] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589258] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589304] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589350] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589396] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589442] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589488] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589580] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589626] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589672] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589718] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589764] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589810] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589856] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589902] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589948] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [589994] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590040] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590086] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590132] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590178] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590224] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590316] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590362] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590408] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590454] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590500] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590546] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590638] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590684] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590776] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590822] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590868] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590914] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [590960] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591006] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591052] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591098] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591144] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591190] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591236] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591282] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591328] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591374] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591420] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591466] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591512] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591558] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591604] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591650] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591696] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591742] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591788] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591834] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591880] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591926] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [591972] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592064] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592110] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592156] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592202] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592248] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592294] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592340] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592386] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592432] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592478] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592524] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592570] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592616] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592662] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592708] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592754] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592800] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592846] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592892] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592938] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [592984] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593030] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593076] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593122] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593168] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593214] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593260] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593306] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [593354] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [593400] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [593446] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [593494] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593540] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [593586] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593632] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593678] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593724] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593770] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593816] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593862] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593908] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [593954] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594000] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594046] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594092] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594138] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594184] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594230] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594276] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594322] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594368] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594414] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [594460] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594506] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594552] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594598] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594644] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594690] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594736] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594782] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594828] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594874] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594920] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [594966] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595012] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595058] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595104] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595150] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595196] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595242] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595288] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595334] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595380] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595426] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595472] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595518] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595564] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595610] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595656] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595702] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595748] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595794] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595840] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595886] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [595932] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [595978] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596024] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596070] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596116] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596162] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596208] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596254] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596300] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596346] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596392] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596438] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596530] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596576] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596622] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596668] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596714] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596760] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596806] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596852] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596898] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596944] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [596990] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [597036] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597082] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597128] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597174] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597220] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597266] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597312] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597358] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597404] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597450] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597496] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597542] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597588] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597634] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597680] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597726] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597772] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597818] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597864] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597910] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [597956] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598002] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598048] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598094] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598140] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598186] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [598232] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598278] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598324] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598370] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598416] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598462] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598508] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598554] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598600] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598646] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598692] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598738] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598784] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598830] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598922] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [598968] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [599014] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [599060] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [599106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [599152] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599198] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599244] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599290] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [599336] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599382] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599428] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599474] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599520] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599566] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599612] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599658] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599704] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599750] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599796] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599842] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599888] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599934] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [599980] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600026] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600072] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600118] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600164] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600210] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600256] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600302] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600348] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600394] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600440] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600486] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600532] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600578] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600624] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600670] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600716] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600762] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600808] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600854] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600900] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [600946] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [600992] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [601038] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [601084] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [601130] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [601176] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [601222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [601268] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [601314] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [601360] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [601406] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [601452] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [601498] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [601544] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [601592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [601638] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [601684] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [601730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [601776] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [601822] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [601868] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [601914] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [601960] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [602006] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602052] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602098] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602144] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602190] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602236] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602282] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602328] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602374] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [602420] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602466] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602512] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602558] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602604] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602650] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602696] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602742] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602788] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602834] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602880] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602926] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [602972] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603064] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603110] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603156] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603202] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603248] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603294] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603340] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603386] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603432] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603478] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603524] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603570] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603616] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603662] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603708] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603754] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603800] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603846] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603892] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603938] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [603984] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604030] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604076] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604122] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604168] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604214] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604260] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604306] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604352] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604398] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604444] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [604490] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604536] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604582] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [604628] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [604674] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604766] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604812] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604858] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604904] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604950] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [604996] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605042] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605088] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605134] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605226] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605272] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605318] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605364] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605410] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605456] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605502] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605548] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605594] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605640] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605686] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605732] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605778] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605824] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605870] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605916] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [605962] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606008] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606054] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606100] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606146] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606192] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606238] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606284] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606330] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606376] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606422] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606468] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606514] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606560] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606606] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606652] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606698] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606744] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606790] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606836] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606882] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606928] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [606974] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607020] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607066] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607112] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [607160] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607206] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607252] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607298] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607344] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [607390] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607438] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [607484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607530] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14783), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14781), 34, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_do, + anon_sym_of, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_End, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [607576] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14787), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14785), 34, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_do, + anon_sym_of, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_End, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [607622] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(981), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(965), 34, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_do, + anon_sym_of, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_End, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [607668] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607714] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607762] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607808] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607854] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [607900] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607946] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [607992] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608038] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608084] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608130] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608176] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608268] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [608314] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608360] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608406] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608452] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608498] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608544] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608590] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608636] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608682] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608728] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608774] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [608820] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608866] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608912] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [608958] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609004] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609050] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609096] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609142] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609188] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609234] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609280] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609326] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609372] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609418] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609464] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609510] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609556] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609602] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609648] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609694] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609740] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609832] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609878] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609924] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [609970] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610016] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610062] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610108] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610154] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610200] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610246] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610292] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610338] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610384] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610430] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610476] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610522] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610568] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610614] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610660] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610706] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610752] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610798] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610844] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610890] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610936] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [610982] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611028] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611074] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611120] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611166] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611212] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611258] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611304] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611350] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611396] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611442] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611488] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611580] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611626] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611672] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611718] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611764] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611810] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611856] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611902] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [611948] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [611994] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612040] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [612086] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612132] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612178] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [612224] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612316] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612362] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612408] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612454] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612500] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612546] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612638] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612684] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612776] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612822] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [612868] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612914] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [612960] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613006] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613052] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613098] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [613144] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613190] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14791), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14789), 34, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_do, + anon_sym_of, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_End, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [613236] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613282] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [613328] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613374] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613420] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613466] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613512] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613558] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613604] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613650] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613696] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613742] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613788] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613834] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613880] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613926] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [613972] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614064] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614110] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614156] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614202] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614248] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614294] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [614340] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614386] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614432] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614478] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614524] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614570] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614616] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614662] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614708] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614754] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614800] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614846] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614892] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614938] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [614984] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615030] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615076] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615122] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615168] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615214] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615260] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615306] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615352] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615398] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615444] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615490] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615536] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615582] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615628] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615674] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615766] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615812] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615858] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615904] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615950] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [615996] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616042] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616088] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616134] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616226] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616272] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616318] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616364] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616410] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616456] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616502] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616548] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616594] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616640] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616686] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616732] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616778] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [616824] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [616870] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616916] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [616962] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617008] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617054] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617100] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617146] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [617192] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617238] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617284] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617330] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [617376] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617422] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617468] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617514] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617560] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617606] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617652] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617698] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617744] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617790] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [617836] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [617882] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617928] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [617974] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618020] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618066] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618112] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618158] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618204] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618250] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [618296] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618342] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14793), 34, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_do, + anon_sym_of, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_End, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [618388] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618434] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618480] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618526] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618572] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618618] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618664] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618710] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618756] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [618802] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 26, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [618848] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14797), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [618931] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14799), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [619014] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619059] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619104] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619149] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619194] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619239] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619284] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619329] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619374] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619419] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619464] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619509] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619554] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619599] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619644] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [619689] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619734] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619779] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619824] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619869] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619914] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [619959] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620004] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620049] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620094] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620139] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620184] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620229] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620274] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620319] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620364] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620409] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620454] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620499] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620544] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620589] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620634] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620679] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620724] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620769] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620814] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620859] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620904] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620949] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [620994] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621039] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621084] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621129] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621174] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621219] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621309] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621354] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621399] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621444] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621489] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621579] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621624] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621669] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621714] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [621759] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [621804] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [621849] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621894] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621939] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [621984] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14801), 1, + anon_sym_COMMA, + ACTIONS(14803), 1, + anon_sym_RPAREN, + STATE(7509), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17747), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [622067] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14805), 1, + anon_sym_COMMA, + ACTIONS(14807), 1, + anon_sym_RPAREN, + STATE(7525), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17763), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [622150] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [622195] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14827), 1, + anon_sym_PIPE, + ACTIONS(14829), 1, + anon_sym__, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17695), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(21109), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [622278] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14831), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [622361] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14833), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [622444] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14835), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17724), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [622527] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [622572] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [622617] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [622662] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [622707] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [622752] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [622797] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [622842] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [622887] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [622932] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [622977] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623022] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623067] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623112] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623157] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623202] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14837), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17729), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [623285] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623330] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [623377] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [623422] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [623467] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623512] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623557] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623602] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623647] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623692] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623737] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623782] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623827] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14683), 1, + anon_sym_COMMA, + ACTIONS(14685), 1, + anon_sym_RPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(7939), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17933), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8293), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [623910] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [623955] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624000] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624045] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624090] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624135] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624225] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624315] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624360] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624405] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624450] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624495] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624540] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624585] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624630] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624675] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624765] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624810] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624855] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14839), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [624938] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [624983] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625028] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625073] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625118] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625163] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [625208] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625253] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625298] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625343] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625388] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625433] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14841), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [625516] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625561] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625606] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625651] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625696] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625741] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [625786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625831] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625921] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [625966] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626011] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626056] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626101] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626146] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626191] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626236] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626281] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626326] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626371] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626416] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626461] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626506] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626551] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626596] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626641] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626686] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626731] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626776] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626821] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626866] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626911] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [626956] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627001] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627046] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627091] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627136] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627181] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627226] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627271] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627316] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627361] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627406] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627496] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627541] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627586] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627631] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627676] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627721] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627766] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627811] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627856] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [627903] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627948] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [627993] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14843), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(13115), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20313), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [628076] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [628121] = 25, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14851), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14855), 1, + anon_sym_LPAREN, + ACTIONS(14857), 1, + anon_sym_op, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14865), 1, + anon_sym_PIPE, + ACTIONS(14867), 1, + anon_sym__, + STATE(8390), 1, + sym_tyvarseq, + STATE(8786), 1, + sym_vid, + STATE(13649), 1, + sym__fmatch, + STATE(13991), 1, + sym__fvalbind, + STATE(14005), 1, + sym_fmrule, + STATE(14147), 1, + sym_fvalbind, + STATE(14319), 1, + sym_tyvar, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24380), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [628210] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14869), 1, + anon_sym_COMMA, + ACTIONS(14871), 1, + anon_sym_RPAREN, + STATE(7950), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17787), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [628293] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [628338] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14873), 1, + anon_sym_COMMA, + ACTIONS(14875), 1, + anon_sym_RPAREN, + STATE(7641), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17740), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [628421] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [628466] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [628511] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [628556] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14843), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(13115), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20313), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [628639] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14843), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(13115), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20313), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [628722] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14877), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17765), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [628805] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [628850] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14879), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17855), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [628933] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [628978] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [629023] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [629068] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [629113] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [629158] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [629203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [629248] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14881), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [629331] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14883), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [629414] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [629459] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [629504] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [629549] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14885), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [629632] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [629677] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [629722] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [629767] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [629812] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [629857] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [629902] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [629947] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [629992] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630037] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630082] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630127] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630172] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630217] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630262] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630307] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630352] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630397] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630442] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630487] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630532] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630577] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630622] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630667] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630712] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630757] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630802] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630847] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630892] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630937] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [630982] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631027] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631072] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631117] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631162] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631207] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631252] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631297] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631342] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631387] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631432] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631477] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631522] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631567] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631612] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631657] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631702] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631747] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631792] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631837] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631882] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631927] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [631972] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632017] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632062] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632107] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632152] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632197] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632242] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632287] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632332] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632377] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [632422] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632467] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632512] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632557] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632602] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632647] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632692] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632737] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632782] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632827] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632872] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632917] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [632962] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633007] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633052] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633097] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633142] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633187] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633232] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633277] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633322] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633367] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633412] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633457] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633502] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633547] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633637] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633682] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633727] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633772] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633817] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633862] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633907] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633952] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [633997] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634042] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634087] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634132] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634177] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634267] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634312] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634357] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634402] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634447] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634492] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634537] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634582] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634627] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634672] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634717] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634762] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634807] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634852] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [634897] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634942] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [634987] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635032] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635077] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635122] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635167] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635212] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635257] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635302] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635347] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [635392] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635437] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635482] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635527] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635572] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635617] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635662] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635707] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635752] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635797] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635842] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635887] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635932] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [635977] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636022] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636067] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636112] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636157] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636202] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636247] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636292] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636337] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636382] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636427] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636472] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636517] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636562] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636607] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636652] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636697] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636742] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636787] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636832] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636877] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636922] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [636967] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637012] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637057] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637102] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637147] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637192] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637237] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637282] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637327] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637372] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637417] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637462] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637507] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [637552] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637597] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637642] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637687] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637732] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637777] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637822] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637867] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [637912] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14887), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [637995] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638040] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638085] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638130] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638175] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638220] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638265] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638310] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638355] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14889), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(15311), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20090), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [638438] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14889), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(15311), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20090), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [638521] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638566] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638611] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638656] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638701] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638746] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638791] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638836] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14891), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17755), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20157), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [638919] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [638964] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639009] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14891), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17755), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20157), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [639092] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639137] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639182] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639227] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639272] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639317] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639362] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [639407] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14893), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17773), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20188), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [639490] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639535] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639580] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14893), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17773), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20188), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [639663] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639708] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639753] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639798] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639843] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639888] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [639933] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [639978] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [640023] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [640068] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [640113] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [640158] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [640203] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14895), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(9274), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20227), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [640286] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14895), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(9274), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20227), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [640369] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [640414] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14827), 1, + anon_sym_PIPE, + ACTIONS(14829), 1, + anon_sym__, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17695), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(21109), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [640497] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [640542] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14897), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17803), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20268), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [640625] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14897), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17803), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20268), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [640708] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [640753] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14899), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17568), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20287), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [640836] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14899), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17568), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20287), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [640919] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [640964] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14901), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16631), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20353), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [641047] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14901), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16631), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20353), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [641130] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [641175] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [641220] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [641265] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14903), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [641348] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [641393] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14905), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [641476] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14907), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [641559] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [641604] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [641649] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [641694] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [641739] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [641784] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [641829] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [641874] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [641919] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [641964] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642009] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642054] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642099] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642144] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642189] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642234] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642279] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642324] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642369] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642414] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642459] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642504] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642549] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642594] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642639] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642684] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642729] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642774] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642819] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642864] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642909] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642954] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [642999] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14911), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(14909), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + STATE(7943), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [643076] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14769), 1, + anon_sym_COMMA, + ACTIONS(14771), 1, + anon_sym_RPAREN, + STATE(7639), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17859), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [643159] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14913), 1, + anon_sym_COMMA, + ACTIONS(14915), 1, + anon_sym_RPAREN, + STATE(7940), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17960), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [643242] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14917), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17784), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [643325] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14919), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17965), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [643408] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14921), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [643491] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14923), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [643574] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14927), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(14925), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + STATE(8060), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [643651] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14929), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [643734] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14931), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [643817] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14933), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [643900] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14935), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [643983] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14937), 1, + anon_sym_COMMA, + ACTIONS(14939), 1, + anon_sym_RPAREN, + STATE(7972), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17934), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [644066] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14941), 1, + anon_sym_COMMA, + ACTIONS(14943), 1, + anon_sym_RPAREN, + STATE(7951), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17805), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [644149] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14945), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17862), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [644232] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14947), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17879), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [644315] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14949), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [644398] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14951), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [644481] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14953), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [644564] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14955), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [644647] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14957), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [644730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [644775] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14959), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [644858] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [644903] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14827), 1, + anon_sym_PIPE, + ACTIONS(14829), 1, + anon_sym__, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17695), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(21109), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [644986] = 25, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14851), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(14961), 1, + anon_sym_LPAREN, + ACTIONS(14963), 1, + anon_sym_op, + ACTIONS(14965), 1, + anon_sym_PIPE, + STATE(8393), 1, + sym_tyvarseq, + STATE(8794), 1, + sym_vid, + STATE(11217), 1, + sym_fmrule, + STATE(12248), 1, + sym_fvalbind, + STATE(12923), 1, + sym__fmatch, + STATE(13209), 1, + sym__fvalbind, + STATE(14319), 1, + sym_tyvar, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(22124), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [645075] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [645120] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [645165] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14967), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [645248] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [645293] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [645338] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [645383] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14969), 1, + anon_sym_COMMA, + ACTIONS(14971), 1, + anon_sym_RPAREN, + STATE(8103), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17893), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [645466] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14973), 1, + anon_sym_COMMA, + ACTIONS(14975), 1, + anon_sym_RPAREN, + STATE(7973), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17943), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [645549] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [645594] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [645639] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14977), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17739), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [645722] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14979), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17759), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [645805] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [645850] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [645895] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [645940] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [645985] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646030] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646075] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646120] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646165] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14981), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [646248] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14983), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [646331] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646376] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646421] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646466] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646511] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646556] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646601] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646646] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14985), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [646729] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14987), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [646812] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646857] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646902] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646947] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [646992] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647037] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14989), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [647120] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(14991), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [647203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647248] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647293] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647338] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647383] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647428] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647473] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647518] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647563] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647608] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647653] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647698] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647743] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647788] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647833] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647878] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647923] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [647968] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648013] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648058] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648103] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648148] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648193] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648238] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648283] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648328] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648373] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648418] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648463] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648508] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648553] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648598] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648643] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14889), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(15311), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20090), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [648726] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14993), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(12974), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20336), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [648809] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648854] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [648899] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14993), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(12974), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20336), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [648982] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14993), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(12974), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20336), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [649065] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14995), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(9075), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20374), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [649148] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14995), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(9075), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20374), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [649231] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14891), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17755), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20157), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [649314] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14997), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(12979), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20392), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [649397] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14997), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(12979), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20392), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [649480] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14997), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(12979), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20392), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [649563] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14999), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(15082), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20412), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [649646] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14999), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(15082), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20412), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [649729] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14893), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17773), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20188), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [649812] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15001), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(12984), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20427), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [649895] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15001), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(12984), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20427), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [649978] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15001), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(12984), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20427), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [650061] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15003), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17588), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20459), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [650144] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15003), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17588), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20459), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [650227] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14895), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(9274), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20227), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [650310] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15005), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(13271), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20444), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [650393] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(15007), 1, + anon_sym_COMMA, + ACTIONS(15009), 1, + anon_sym_RPAREN, + STATE(8110), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17897), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [650476] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15005), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(13271), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20444), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [650559] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15005), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(13271), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20444), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [650642] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15011), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17590), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20470), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [650725] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15011), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17590), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20470), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [650808] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14897), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17803), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20268), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [650891] = 19, + ACTIONS(15013), 1, + sym_integer_scon, + ACTIONS(15019), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15022), 1, + sym__symbolic_ident, + ACTIONS(15025), 1, + anon_sym_LPAREN, + ACTIONS(15030), 1, + anon_sym_op, + ACTIONS(15033), 1, + anon_sym_LBRACE, + ACTIONS(15038), 1, + anon_sym_LBRACK, + ACTIONS(15041), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15044), 1, + anon_sym__, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15036), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(15016), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(15028), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + STATE(8060), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [650968] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15047), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(12620), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20505), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [651051] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15047), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(12620), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20505), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [651134] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15047), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(12620), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20505), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [651217] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15049), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(9106), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20478), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [651300] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15049), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(9106), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20478), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [651383] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14899), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17568), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20287), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [651466] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15051), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(12992), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20535), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [651549] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15051), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(12992), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20535), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [651632] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15051), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(12992), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20535), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [651715] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15053), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17600), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20488), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [651798] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15053), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17600), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20488), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [651881] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14901), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16631), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20353), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [651964] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15055), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(12625), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20546), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [652047] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15055), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(12625), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20546), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [652130] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15055), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(12625), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20546), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [652213] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15057), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16646), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20523), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [652296] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15057), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16646), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20523), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [652379] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14995), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(9075), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20374), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [652462] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15059), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(12630), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20555), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [652545] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15059), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(12630), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20555), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [652628] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15059), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(12630), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20555), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [652711] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15061), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17613), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20563), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [652794] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15061), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17613), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20563), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [652877] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(14999), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(15082), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20412), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [652960] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15063), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(12999), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20592), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [653043] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15063), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(12999), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20592), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [653126] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15063), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(12999), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20592), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [653209] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15065), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17616), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20577), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [653292] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15065), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17616), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20577), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [653375] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15003), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17588), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20459), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [653458] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15067), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(12635), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20617), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [653541] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15067), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(12635), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20617), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [653624] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15067), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(12635), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20617), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [653707] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15069), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(8937), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20605), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [653790] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15069), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(8937), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20605), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [653873] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15011), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17590), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20470), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [653956] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15071), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(13004), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20627), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [654039] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15071), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(13004), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20627), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [654122] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15071), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(13004), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20627), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [654205] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15073), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16028), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20634), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [654288] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15073), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16028), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20634), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [654371] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15049), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(9106), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20478), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [654454] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(15075), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17914), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [654537] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15077), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(12640), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20643), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [654620] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15077), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(12640), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20643), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [654703] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15077), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(12640), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20643), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [654786] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15079), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16649), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20686), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [654869] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15079), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16649), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20686), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [654952] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15053), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17600), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20488), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [655035] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(15081), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(17920), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [655118] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15083), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(13012), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20650), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [655201] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15083), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(13012), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20650), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [655284] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15083), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(13012), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20650), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [655367] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15085), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16651), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20696), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [655450] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15085), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16651), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20696), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [655533] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15057), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16646), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20523), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [655616] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15087), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(11849), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20655), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [655699] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15087), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(11849), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20655), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [655782] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15087), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(11849), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20655), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [655865] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15089), 1, + anon_sym_PIPE, + STATE(7190), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(15382), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20722), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [655948] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15089), 1, + anon_sym_PIPE, + STATE(7312), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(15382), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20722), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [656031] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15061), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17613), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20563), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [656114] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15091), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(11856), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20662), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [656197] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15091), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(11856), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20662), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [656280] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15091), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(11856), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20662), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [656363] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15065), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17616), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20577), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [656446] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15093), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(12647), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20673), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [656529] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15093), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(12647), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20673), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [656612] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15093), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(12647), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20673), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [656695] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15069), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(8937), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20605), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [656778] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15095), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(12651), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20705), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [656861] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15095), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(12651), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20705), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [656944] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15095), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(12651), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20705), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [657027] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15073), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16028), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20634), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [657110] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15097), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(12656), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20715), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [657193] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15097), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(12656), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20715), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [657276] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15097), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(12656), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20715), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [657359] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(15099), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [657442] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15079), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16649), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20686), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [657525] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(15101), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [657608] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15103), 1, + anon_sym_PIPE, + STATE(10209), 1, + sym__match, + STATE(11870), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20725), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [657691] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15103), 1, + anon_sym_PIPE, + STATE(10341), 1, + sym__match, + STATE(11870), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20725), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [657774] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15103), 1, + anon_sym_PIPE, + STATE(10408), 1, + sym__match, + STATE(11870), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20725), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [657857] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15085), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16651), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20696), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [657940] = 22, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15089), 1, + anon_sym_PIPE, + STATE(6606), 1, + sym__match, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(15382), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20722), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [658023] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(15105), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [658106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_BQUOTE, + [658151] = 25, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14851), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15107), 1, + anon_sym_LPAREN, + ACTIONS(15109), 1, + anon_sym_op, + ACTIONS(15111), 1, + anon_sym_PIPE, + STATE(8408), 1, + sym_tyvarseq, + STATE(8802), 1, + sym_vid, + STATE(13649), 1, + sym__fmatch, + STATE(13672), 1, + sym_fmrule, + STATE(13991), 1, + sym__fvalbind, + STATE(14091), 1, + sym_fvalbind, + STATE(14319), 1, + sym_tyvar, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24417), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [658240] = 25, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14851), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15113), 1, + anon_sym_LPAREN, + ACTIONS(15115), 1, + anon_sym_op, + ACTIONS(15117), 1, + anon_sym_PIPE, + STATE(8410), 1, + sym_tyvarseq, + STATE(8810), 1, + sym_vid, + STATE(13649), 1, + sym__fmatch, + STATE(13677), 1, + sym_fmrule, + STATE(13991), 1, + sym__fvalbind, + STATE(14102), 1, + sym_fvalbind, + STATE(14319), 1, + sym_tyvar, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24444), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [658329] = 25, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14851), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15119), 1, + anon_sym_LPAREN, + ACTIONS(15121), 1, + anon_sym_op, + ACTIONS(15123), 1, + anon_sym_PIPE, + STATE(8412), 1, + sym_tyvarseq, + STATE(8825), 1, + sym_vid, + STATE(13649), 1, + sym__fmatch, + STATE(13991), 1, + sym__fvalbind, + STATE(14110), 1, + sym_fmrule, + STATE(14193), 1, + sym_fvalbind, + STATE(14319), 1, + sym_tyvar, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24471), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [658418] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + ACTIONS(15125), 1, + anon_sym_RPAREN, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [658501] = 25, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14851), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15127), 1, + anon_sym_LPAREN, + ACTIONS(15129), 1, + anon_sym_op, + ACTIONS(15131), 1, + anon_sym_PIPE, + STATE(8413), 1, + sym_tyvarseq, + STATE(8750), 1, + sym_vid, + STATE(13649), 1, + sym__fmatch, + STATE(13684), 1, + sym_fmrule, + STATE(13991), 1, + sym__fvalbind, + STATE(14115), 1, + sym_fvalbind, + STATE(14319), 1, + sym_tyvar, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24499), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [658590] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14683), 1, + anon_sym_COMMA, + ACTIONS(14685), 1, + anon_sym_RPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(7939), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17933), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8381), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [658673] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14683), 1, + anon_sym_COMMA, + ACTIONS(14685), 1, + anon_sym_RPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(7939), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17933), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8382), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [658756] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14683), 1, + anon_sym_COMMA, + ACTIONS(14685), 1, + anon_sym_RPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(7939), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17933), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8383), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [658839] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14683), 1, + anon_sym_COMMA, + ACTIONS(14685), 1, + anon_sym_RPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(7939), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17933), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8337), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [658922] = 22, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14683), 1, + anon_sym_COMMA, + ACTIONS(14685), 1, + anon_sym_RPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(7939), 1, + aux_sym_record_exp_repeat1, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17933), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8380), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [659005] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 25, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659050] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659094] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659138] = 21, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14035), 1, + sym_valbind, + STATE(14085), 1, + sym__valbind, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20269), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [659218] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659262] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659306] = 21, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14030), 1, + sym__valbind, + STATE(14035), 1, + sym_valbind, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20269), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [659386] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659430] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659474] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659518] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659562] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659606] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659650] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659694] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659738] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659782] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659826] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659870] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659914] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [659958] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660002] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660046] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660090] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660134] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660178] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660222] = 21, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + ACTIONS(14703), 1, + anon_sym_COMMA, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + STATE(18411), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [660302] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660346] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660390] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660434] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660478] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660522] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660566] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660610] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660654] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660698] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660742] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660830] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660874] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660918] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [660962] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 4, + anon_sym_COLON, + anon_sym_fun, + anon_sym_with, + anon_sym_infix, + ACTIONS(14005), 31, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [661006] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661050] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661094] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661138] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661182] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661226] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661270] = 21, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14085), 1, + sym__valbind, + STATE(14139), 1, + sym_valbind, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20091), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [661350] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661394] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661438] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661482] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661526] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661570] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661614] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661658] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661702] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661746] = 21, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14030), 1, + sym__valbind, + STATE(14139), 1, + sym_valbind, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20091), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [661826] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661870] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661914] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [661958] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662002] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662046] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662090] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662134] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662178] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662266] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662310] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662354] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662398] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662442] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662486] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662530] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662574] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662618] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662662] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662706] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662750] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662794] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662838] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662882] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662926] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [662970] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663014] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663058] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663102] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663146] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663190] = 21, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14011), 1, + sym_valbind, + STATE(14085), 1, + sym__valbind, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20158), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [663270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663314] = 21, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(12147), 1, + sym_valbind, + STATE(13210), 1, + sym__valbind, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(19313), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [663394] = 21, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14011), 1, + sym_valbind, + STATE(14030), 1, + sym__valbind, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20158), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [663474] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663518] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663562] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663606] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663650] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663694] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663738] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663782] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663826] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663870] = 21, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14017), 1, + sym_valbind, + STATE(14085), 1, + sym__valbind, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20189), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [663950] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [663994] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664038] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664082] = 21, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14017), 1, + sym_valbind, + STATE(14030), 1, + sym__valbind, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20189), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [664162] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664206] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664250] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664294] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664338] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664382] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664426] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664470] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664514] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664558] = 21, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14085), 1, + sym__valbind, + STATE(14159), 1, + sym_valbind, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20228), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [664638] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664682] = 21, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(12147), 1, + sym_valbind, + STATE(13037), 1, + sym__valbind, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(19313), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [664762] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664806] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664850] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [664894] = 21, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(14030), 1, + sym__valbind, + STATE(14159), 1, + sym_valbind, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20228), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [664974] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [665018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [665062] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [665106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [665150] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [665194] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 24, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_BQUOTE, + [665238] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16650), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20686), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [665315] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(21109), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [665392] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13279), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20313), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [665469] = 20, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(12804), 1, + sym_valbind, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(19313), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [665546] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(8392), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14909), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(14911), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7943), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [665621] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20313), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [665698] = 20, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13536), 1, + sym_valbind, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20091), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [665775] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(15312), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20090), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [665852] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(12975), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20336), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [665929] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20336), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [666006] = 20, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13536), 1, + sym_valbind, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20158), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [666083] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20374), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [666160] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17757), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20157), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [666237] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(12980), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20392), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [666314] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20392), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [666391] = 20, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13536), 1, + sym_valbind, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20189), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [666468] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20412), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [666545] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17774), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20188), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [666622] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(12985), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20427), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [666699] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20090), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [666776] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20427), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [666853] = 20, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13536), 1, + sym_valbind, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20228), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [666930] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20459), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [667007] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(9276), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20227), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [667084] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13272), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20444), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [667161] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20444), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [667238] = 20, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13536), 1, + sym_valbind, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20269), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [667315] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20470), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [667392] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17804), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20268), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [667469] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(12621), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20505), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [667546] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20505), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [667623] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20478), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [667700] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17569), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20287), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [667777] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20157), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [667854] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(12993), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20535), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [667931] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20535), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [668008] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20488), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [668085] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16632), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20353), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [668162] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(12626), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20546), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [668239] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20546), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [668316] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20523), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [668393] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(9180), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20374), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [668470] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(12631), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20555), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [668547] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20555), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [668624] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20563), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [668701] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(15084), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20412), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [668778] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13000), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20592), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [668855] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20188), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [668932] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(8385), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14909), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(14911), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7943), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [669007] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20577), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [669084] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17589), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20459), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [669161] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(12636), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20617), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [669238] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20617), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [669315] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20605), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [669392] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17591), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20470), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [669469] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13005), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20627), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [669546] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20627), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [669623] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20634), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [669700] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(9107), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20478), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [669777] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(12641), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20643), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [669854] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20643), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [669931] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20227), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [670008] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20686), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [670085] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17601), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20488), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [670162] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13013), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20650), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [670239] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20650), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [670316] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20696), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [670393] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16647), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20523), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [670470] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(11850), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20655), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [670547] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20655), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [670624] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20268), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [670701] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20722), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [670778] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17614), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20563), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [670855] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(11857), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20662), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [670932] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20662), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [671009] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(17617), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20577), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [671086] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(12648), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20673), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [671163] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20673), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [671240] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(8939), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20605), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [671317] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20287), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [671394] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(12652), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20705), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [671471] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20705), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [671548] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16984), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(21109), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [671625] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16029), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20634), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [671702] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(7424), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20353), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [671779] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(12657), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20715), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [671856] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20715), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [671933] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(11871), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20725), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [672010] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20725), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [672087] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(16652), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20696), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [672164] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(15383), 1, + sym_mrule, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20722), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [672241] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(8414), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14909), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(14911), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7943), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [672316] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(8407), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14909), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(14911), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7943), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [672391] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(8409), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14909), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(14911), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7943), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [672466] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(8411), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14909), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(14911), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(7943), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [672541] = 20, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(10415), 1, + sym_mrule, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20592), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [672618] = 19, + ACTIONS(7), 1, + sym_integer_scon, + ACTIONS(11), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15135), 1, + anon_sym_op, + STATE(10287), 1, + sym_vid, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(13026), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(9), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24912), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [672692] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(19017), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [672766] = 19, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20569), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [672840] = 18, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(14911), 4, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + STATE(8401), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [672912] = 19, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(20621), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8388), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [672986] = 22, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14857), 1, + anon_sym_op, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14865), 1, + anon_sym_PIPE, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15137), 1, + anon_sym_LPAREN, + STATE(8786), 1, + sym_vid, + STATE(13649), 1, + sym__fmatch, + STATE(14005), 1, + sym_fmrule, + STATE(14107), 1, + sym__fvalbind, + STATE(14147), 1, + sym_fvalbind, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24380), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [673066] = 18, + ACTIONS(15139), 1, + sym_integer_scon, + ACTIONS(15145), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15148), 1, + sym__symbolic_ident, + ACTIONS(15151), 1, + anon_sym_LPAREN, + ACTIONS(15154), 1, + anon_sym_op, + ACTIONS(15157), 1, + anon_sym_LBRACE, + ACTIONS(15160), 1, + anon_sym_LBRACK, + ACTIONS(15163), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15166), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15036), 4, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(15142), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(8391), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [673138] = 19, + ACTIONS(7), 1, + sym_integer_scon, + ACTIONS(11), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15135), 1, + anon_sym_op, + STATE(10287), 1, + sym_vid, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(13026), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(9), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(25057), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [673212] = 22, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(14963), 1, + anon_sym_op, + ACTIONS(14965), 1, + anon_sym_PIPE, + ACTIONS(15169), 1, + anon_sym_LPAREN, + STATE(8794), 1, + sym_vid, + STATE(11217), 1, + sym_fmrule, + STATE(12248), 1, + sym_fvalbind, + STATE(12923), 1, + sym__fmatch, + STATE(13046), 1, + sym__fvalbind, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(22124), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [673292] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17911), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [673366] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(19150), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [673440] = 18, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(14911), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + STATE(8400), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [673512] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(17916), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [673586] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14419), 4, + anon_sym_COLON, + anon_sym_fun, + anon_sym_with, + anon_sym_infix, + ACTIONS(14417), 29, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [673628] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18843), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [673702] = 18, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(14927), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + STATE(8404), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [673774] = 18, + ACTIONS(14809), 1, + sym_integer_scon, + ACTIONS(14813), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14815), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14819), 1, + anon_sym_op, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14811), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + ACTIONS(14927), 4, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + STATE(8391), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [673846] = 19, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20727), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [673920] = 19, + ACTIONS(14269), 1, + sym_integer_scon, + ACTIONS(14273), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14277), 1, + sym__symbolic_ident, + ACTIONS(14281), 1, + anon_sym_op, + ACTIONS(14283), 1, + anon_sym_LBRACE, + ACTIONS(14285), 1, + anon_sym_LBRACK, + ACTIONS(14287), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14291), 1, + anon_sym__, + ACTIONS(15133), 1, + anon_sym_LPAREN, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(20729), 1, + sym__pat, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14271), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(20128), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(8396), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [673994] = 18, + ACTIONS(15171), 1, + sym_integer_scon, + ACTIONS(15177), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15180), 1, + sym__symbolic_ident, + ACTIONS(15183), 1, + anon_sym_LPAREN, + ACTIONS(15186), 1, + anon_sym_op, + ACTIONS(15189), 1, + anon_sym_LBRACE, + ACTIONS(15192), 1, + anon_sym_LBRACK, + ACTIONS(15195), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15198), 1, + anon_sym__, + STATE(13817), 1, + sym_vid, + STATE(13948), 1, + sym__scon, + STATE(13950), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15036), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(15174), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(8404), 11, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + aux_sym_app_pat_repeat1, + [674066] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18851), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [674140] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14567), 4, + anon_sym_COLON, + anon_sym_fun, + anon_sym_with, + anon_sym_infix, + ACTIONS(14565), 29, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [674182] = 19, + ACTIONS(7), 1, + sym_integer_scon, + ACTIONS(11), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15135), 1, + anon_sym_op, + STATE(10287), 1, + sym_vid, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(13026), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(9), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24905), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [674256] = 22, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15109), 1, + anon_sym_op, + ACTIONS(15111), 1, + anon_sym_PIPE, + ACTIONS(15201), 1, + anon_sym_LPAREN, + STATE(8802), 1, + sym_vid, + STATE(13649), 1, + sym__fmatch, + STATE(13672), 1, + sym_fmrule, + STATE(14091), 1, + sym_fvalbind, + STATE(14107), 1, + sym__fvalbind, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24417), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [674336] = 19, + ACTIONS(7), 1, + sym_integer_scon, + ACTIONS(11), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15135), 1, + anon_sym_op, + STATE(10287), 1, + sym_vid, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(13026), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(9), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24860), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [674410] = 22, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15115), 1, + anon_sym_op, + ACTIONS(15117), 1, + anon_sym_PIPE, + ACTIONS(15203), 1, + anon_sym_LPAREN, + STATE(8810), 1, + sym_vid, + STATE(13649), 1, + sym__fmatch, + STATE(13677), 1, + sym_fmrule, + STATE(14102), 1, + sym_fvalbind, + STATE(14107), 1, + sym__fvalbind, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24444), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [674490] = 19, + ACTIONS(7), 1, + sym_integer_scon, + ACTIONS(11), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15135), 1, + anon_sym_op, + STATE(10287), 1, + sym_vid, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(13026), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(9), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(25005), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [674564] = 22, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15121), 1, + anon_sym_op, + ACTIONS(15123), 1, + anon_sym_PIPE, + ACTIONS(15205), 1, + anon_sym_LPAREN, + STATE(8825), 1, + sym_vid, + STATE(13649), 1, + sym__fmatch, + STATE(14107), 1, + sym__fvalbind, + STATE(14110), 1, + sym_fmrule, + STATE(14193), 1, + sym_fvalbind, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24471), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [674644] = 22, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15129), 1, + anon_sym_op, + ACTIONS(15131), 1, + anon_sym_PIPE, + ACTIONS(15207), 1, + anon_sym_LPAREN, + STATE(8750), 1, + sym_vid, + STATE(13649), 1, + sym__fmatch, + STATE(13684), 1, + sym_fmrule, + STATE(14107), 1, + sym__fvalbind, + STATE(14115), 1, + sym_fvalbind, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24499), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [674724] = 19, + ACTIONS(7), 1, + sym_integer_scon, + ACTIONS(11), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(13), 1, + sym__symbolic_ident, + ACTIONS(14817), 1, + anon_sym_LPAREN, + ACTIONS(14821), 1, + anon_sym_LBRACE, + ACTIONS(14823), 1, + anon_sym_LBRACK, + ACTIONS(14825), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14829), 1, + anon_sym__, + ACTIONS(15135), 1, + anon_sym_op, + STATE(10287), 1, + sym_vid, + STATE(13580), 1, + sym__scon, + STATE(13582), 1, + sym_longvid, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(13026), 3, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(9), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24987), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [674798] = 19, + ACTIONS(14673), 1, + sym_integer_scon, + ACTIONS(14677), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14679), 1, + sym__symbolic_ident, + ACTIONS(14681), 1, + anon_sym_LPAREN, + ACTIONS(14687), 1, + anon_sym_op, + ACTIONS(14689), 1, + anon_sym_LBRACE, + ACTIONS(14691), 1, + anon_sym_LBRACK, + ACTIONS(14693), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14695), 1, + anon_sym__, + STATE(13139), 1, + sym_vid, + STATE(13259), 1, + sym__scon, + STATE(13265), 1, + sym_longvid, + STATE(18729), 1, + sym__pat, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14675), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(17486), 4, + sym_app_pat, + sym_typed_pat, + sym_conj_pat, + sym_disj_pat, + STATE(7936), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [674872] = 19, + ACTIONS(15209), 1, + anon_sym_SEMI, + ACTIONS(15211), 1, + anon_sym_in, + ACTIONS(15213), 1, + anon_sym_do, + ACTIONS(15215), 1, + anon_sym_val, + ACTIONS(15217), 1, + anon_sym_fun, + ACTIONS(15219), 1, + anon_sym_type, + ACTIONS(15221), 1, + anon_sym_datatype, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15225), 1, + anon_sym_exception, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15229), 1, + anon_sym_open, + ACTIONS(15231), 1, + anon_sym_infix, + ACTIONS(15233), 1, + anon_sym_infixr, + ACTIONS(15235), 1, + anon_sym_nonfix, + ACTIONS(15237), 1, + anon_sym_structure, + STATE(8427), 1, + aux_sym_let_strexp_repeat1, + STATE(14270), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [674945] = 19, + ACTIONS(15213), 1, + anon_sym_do, + ACTIONS(15215), 1, + anon_sym_val, + ACTIONS(15217), 1, + anon_sym_fun, + ACTIONS(15219), 1, + anon_sym_type, + ACTIONS(15221), 1, + anon_sym_datatype, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15225), 1, + anon_sym_exception, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15229), 1, + anon_sym_open, + ACTIONS(15231), 1, + anon_sym_infix, + ACTIONS(15233), 1, + anon_sym_infixr, + ACTIONS(15235), 1, + anon_sym_nonfix, + ACTIONS(15237), 1, + anon_sym_structure, + ACTIONS(15239), 1, + anon_sym_SEMI, + ACTIONS(15241), 1, + anon_sym_in, + STATE(8446), 1, + aux_sym_let_strexp_repeat1, + STATE(14270), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [675018] = 19, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15243), 1, + anon_sym_SEMI, + ACTIONS(15245), 1, + anon_sym_end, + ACTIONS(15247), 1, + anon_sym_do, + ACTIONS(15249), 1, + anon_sym_val, + ACTIONS(15251), 1, + anon_sym_fun, + ACTIONS(15253), 1, + anon_sym_type, + ACTIONS(15255), 1, + anon_sym_datatype, + ACTIONS(15257), 1, + anon_sym_exception, + ACTIONS(15259), 1, + anon_sym_open, + ACTIONS(15261), 1, + anon_sym_infix, + ACTIONS(15263), 1, + anon_sym_infixr, + ACTIONS(15265), 1, + anon_sym_nonfix, + ACTIONS(15267), 1, + anon_sym_structure, + STATE(8439), 1, + aux_sym_struct_strexp_repeat1, + STATE(14245), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [675091] = 21, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14857), 1, + anon_sym_op, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14865), 1, + anon_sym_PIPE, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15137), 1, + anon_sym_LPAREN, + STATE(8786), 1, + sym_vid, + STATE(13542), 1, + sym_fvalbind, + STATE(13649), 1, + sym__fmatch, + STATE(14005), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24380), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [675168] = 19, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15247), 1, + anon_sym_do, + ACTIONS(15249), 1, + anon_sym_val, + ACTIONS(15251), 1, + anon_sym_fun, + ACTIONS(15253), 1, + anon_sym_type, + ACTIONS(15255), 1, + anon_sym_datatype, + ACTIONS(15257), 1, + anon_sym_exception, + ACTIONS(15259), 1, + anon_sym_open, + ACTIONS(15261), 1, + anon_sym_infix, + ACTIONS(15263), 1, + anon_sym_infixr, + ACTIONS(15265), 1, + anon_sym_nonfix, + ACTIONS(15267), 1, + anon_sym_structure, + ACTIONS(15269), 1, + anon_sym_SEMI, + ACTIONS(15271), 1, + anon_sym_end, + STATE(8424), 1, + aux_sym_local_strdec_repeat1, + STATE(14272), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [675241] = 19, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15247), 1, + anon_sym_do, + ACTIONS(15249), 1, + anon_sym_val, + ACTIONS(15251), 1, + anon_sym_fun, + ACTIONS(15253), 1, + anon_sym_type, + ACTIONS(15255), 1, + anon_sym_datatype, + ACTIONS(15257), 1, + anon_sym_exception, + ACTIONS(15259), 1, + anon_sym_open, + ACTIONS(15261), 1, + anon_sym_infix, + ACTIONS(15263), 1, + anon_sym_infixr, + ACTIONS(15265), 1, + anon_sym_nonfix, + ACTIONS(15267), 1, + anon_sym_structure, + ACTIONS(15273), 1, + anon_sym_SEMI, + ACTIONS(15275), 1, + anon_sym_end, + STATE(8436), 1, + aux_sym_local_strdec_repeat1, + STATE(14272), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [675314] = 19, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15247), 1, + anon_sym_do, + ACTIONS(15249), 1, + anon_sym_val, + ACTIONS(15251), 1, + anon_sym_fun, + ACTIONS(15253), 1, + anon_sym_type, + ACTIONS(15255), 1, + anon_sym_datatype, + ACTIONS(15257), 1, + anon_sym_exception, + ACTIONS(15259), 1, + anon_sym_open, + ACTIONS(15261), 1, + anon_sym_infix, + ACTIONS(15263), 1, + anon_sym_infixr, + ACTIONS(15265), 1, + anon_sym_nonfix, + ACTIONS(15267), 1, + anon_sym_structure, + ACTIONS(15269), 1, + anon_sym_SEMI, + ACTIONS(15277), 1, + anon_sym_end, + STATE(8424), 1, + aux_sym_local_strdec_repeat1, + STATE(14272), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [675387] = 19, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15247), 1, + anon_sym_do, + ACTIONS(15249), 1, + anon_sym_val, + ACTIONS(15251), 1, + anon_sym_fun, + ACTIONS(15253), 1, + anon_sym_type, + ACTIONS(15255), 1, + anon_sym_datatype, + ACTIONS(15257), 1, + anon_sym_exception, + ACTIONS(15259), 1, + anon_sym_open, + ACTIONS(15261), 1, + anon_sym_infix, + ACTIONS(15263), 1, + anon_sym_infixr, + ACTIONS(15265), 1, + anon_sym_nonfix, + ACTIONS(15267), 1, + anon_sym_structure, + ACTIONS(15279), 1, + anon_sym_SEMI, + ACTIONS(15281), 1, + anon_sym_end, + STATE(8430), 1, + aux_sym_struct_strexp_repeat1, + STATE(14245), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [675460] = 19, + ACTIONS(15283), 1, + anon_sym_SEMI, + ACTIONS(15286), 1, + anon_sym_end, + ACTIONS(15288), 1, + anon_sym_do, + ACTIONS(15291), 1, + anon_sym_val, + ACTIONS(15294), 1, + anon_sym_fun, + ACTIONS(15297), 1, + anon_sym_type, + ACTIONS(15300), 1, + anon_sym_datatype, + ACTIONS(15303), 1, + anon_sym_abstype, + ACTIONS(15306), 1, + anon_sym_exception, + ACTIONS(15309), 1, + anon_sym_local, + ACTIONS(15312), 1, + anon_sym_open, + ACTIONS(15315), 1, + anon_sym_infix, + ACTIONS(15318), 1, + anon_sym_infixr, + ACTIONS(15321), 1, + anon_sym_nonfix, + ACTIONS(15324), 1, + anon_sym_structure, + STATE(8424), 1, + aux_sym_local_strdec_repeat1, + STATE(14272), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [675533] = 19, + ACTIONS(15213), 1, + anon_sym_do, + ACTIONS(15215), 1, + anon_sym_val, + ACTIONS(15217), 1, + anon_sym_fun, + ACTIONS(15219), 1, + anon_sym_type, + ACTIONS(15221), 1, + anon_sym_datatype, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15225), 1, + anon_sym_exception, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15229), 1, + anon_sym_open, + ACTIONS(15231), 1, + anon_sym_infix, + ACTIONS(15233), 1, + anon_sym_infixr, + ACTIONS(15235), 1, + anon_sym_nonfix, + ACTIONS(15237), 1, + anon_sym_structure, + ACTIONS(15327), 1, + anon_sym_SEMI, + ACTIONS(15329), 1, + anon_sym_in, + STATE(8426), 1, + aux_sym_let_strexp_repeat1, + STATE(14270), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [675606] = 19, + ACTIONS(15213), 1, + anon_sym_do, + ACTIONS(15215), 1, + anon_sym_val, + ACTIONS(15217), 1, + anon_sym_fun, + ACTIONS(15219), 1, + anon_sym_type, + ACTIONS(15221), 1, + anon_sym_datatype, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15225), 1, + anon_sym_exception, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15229), 1, + anon_sym_open, + ACTIONS(15231), 1, + anon_sym_infix, + ACTIONS(15233), 1, + anon_sym_infixr, + ACTIONS(15235), 1, + anon_sym_nonfix, + ACTIONS(15237), 1, + anon_sym_structure, + ACTIONS(15331), 1, + anon_sym_SEMI, + ACTIONS(15333), 1, + anon_sym_in, + STATE(8432), 1, + aux_sym_let_strexp_repeat1, + STATE(14270), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [675679] = 19, + ACTIONS(15213), 1, + anon_sym_do, + ACTIONS(15215), 1, + anon_sym_val, + ACTIONS(15217), 1, + anon_sym_fun, + ACTIONS(15219), 1, + anon_sym_type, + ACTIONS(15221), 1, + anon_sym_datatype, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15225), 1, + anon_sym_exception, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15229), 1, + anon_sym_open, + ACTIONS(15231), 1, + anon_sym_infix, + ACTIONS(15233), 1, + anon_sym_infixr, + ACTIONS(15235), 1, + anon_sym_nonfix, + ACTIONS(15237), 1, + anon_sym_structure, + ACTIONS(15331), 1, + anon_sym_SEMI, + ACTIONS(15335), 1, + anon_sym_in, + STATE(8432), 1, + aux_sym_let_strexp_repeat1, + STATE(14270), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [675752] = 19, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15247), 1, + anon_sym_do, + ACTIONS(15249), 1, + anon_sym_val, + ACTIONS(15251), 1, + anon_sym_fun, + ACTIONS(15253), 1, + anon_sym_type, + ACTIONS(15255), 1, + anon_sym_datatype, + ACTIONS(15257), 1, + anon_sym_exception, + ACTIONS(15259), 1, + anon_sym_open, + ACTIONS(15261), 1, + anon_sym_infix, + ACTIONS(15263), 1, + anon_sym_infixr, + ACTIONS(15265), 1, + anon_sym_nonfix, + ACTIONS(15267), 1, + anon_sym_structure, + ACTIONS(15337), 1, + anon_sym_SEMI, + ACTIONS(15339), 1, + anon_sym_end, + STATE(8422), 1, + aux_sym_local_strdec_repeat1, + STATE(14272), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [675825] = 19, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15247), 1, + anon_sym_do, + ACTIONS(15249), 1, + anon_sym_val, + ACTIONS(15251), 1, + anon_sym_fun, + ACTIONS(15253), 1, + anon_sym_type, + ACTIONS(15255), 1, + anon_sym_datatype, + ACTIONS(15257), 1, + anon_sym_exception, + ACTIONS(15259), 1, + anon_sym_open, + ACTIONS(15261), 1, + anon_sym_infix, + ACTIONS(15263), 1, + anon_sym_infixr, + ACTIONS(15265), 1, + anon_sym_nonfix, + ACTIONS(15267), 1, + anon_sym_structure, + ACTIONS(15341), 1, + anon_sym_SEMI, + ACTIONS(15343), 1, + anon_sym_end, + STATE(8420), 1, + aux_sym_local_strdec_repeat1, + STATE(14272), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [675898] = 19, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15247), 1, + anon_sym_do, + ACTIONS(15249), 1, + anon_sym_val, + ACTIONS(15251), 1, + anon_sym_fun, + ACTIONS(15253), 1, + anon_sym_type, + ACTIONS(15255), 1, + anon_sym_datatype, + ACTIONS(15257), 1, + anon_sym_exception, + ACTIONS(15259), 1, + anon_sym_open, + ACTIONS(15261), 1, + anon_sym_infix, + ACTIONS(15263), 1, + anon_sym_infixr, + ACTIONS(15265), 1, + anon_sym_nonfix, + ACTIONS(15267), 1, + anon_sym_structure, + ACTIONS(15345), 1, + anon_sym_SEMI, + ACTIONS(15347), 1, + anon_sym_end, + STATE(8440), 1, + aux_sym_struct_strexp_repeat1, + STATE(14245), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [675971] = 18, + ACTIONS(15349), 1, + anon_sym_RPAREN, + ACTIONS(15351), 1, + anon_sym_SEMI, + ACTIONS(15354), 1, + anon_sym_do, + ACTIONS(15357), 1, + anon_sym_val, + ACTIONS(15360), 1, + anon_sym_fun, + ACTIONS(15363), 1, + anon_sym_type, + ACTIONS(15366), 1, + anon_sym_datatype, + ACTIONS(15369), 1, + anon_sym_abstype, + ACTIONS(15372), 1, + anon_sym_exception, + ACTIONS(15375), 1, + anon_sym_local, + ACTIONS(15378), 1, + anon_sym_open, + ACTIONS(15381), 1, + anon_sym_infix, + ACTIONS(15384), 1, + anon_sym_infixr, + ACTIONS(15387), 1, + anon_sym_nonfix, + ACTIONS(15390), 1, + anon_sym_structure, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8431), 2, + sym__strdec, + aux_sym_fctapp_strexp_repeat1, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [676042] = 19, + ACTIONS(15393), 1, + anon_sym_SEMI, + ACTIONS(15396), 1, + anon_sym_in, + ACTIONS(15398), 1, + anon_sym_do, + ACTIONS(15401), 1, + anon_sym_val, + ACTIONS(15404), 1, + anon_sym_fun, + ACTIONS(15407), 1, + anon_sym_type, + ACTIONS(15410), 1, + anon_sym_datatype, + ACTIONS(15413), 1, + anon_sym_abstype, + ACTIONS(15416), 1, + anon_sym_exception, + ACTIONS(15419), 1, + anon_sym_local, + ACTIONS(15422), 1, + anon_sym_open, + ACTIONS(15425), 1, + anon_sym_infix, + ACTIONS(15428), 1, + anon_sym_infixr, + ACTIONS(15431), 1, + anon_sym_nonfix, + ACTIONS(15434), 1, + anon_sym_structure, + STATE(8432), 1, + aux_sym_let_strexp_repeat1, + STATE(14270), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [676115] = 19, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15247), 1, + anon_sym_do, + ACTIONS(15249), 1, + anon_sym_val, + ACTIONS(15251), 1, + anon_sym_fun, + ACTIONS(15253), 1, + anon_sym_type, + ACTIONS(15255), 1, + anon_sym_datatype, + ACTIONS(15257), 1, + anon_sym_exception, + ACTIONS(15259), 1, + anon_sym_open, + ACTIONS(15261), 1, + anon_sym_infix, + ACTIONS(15263), 1, + anon_sym_infixr, + ACTIONS(15265), 1, + anon_sym_nonfix, + ACTIONS(15267), 1, + anon_sym_structure, + ACTIONS(15269), 1, + anon_sym_SEMI, + ACTIONS(15437), 1, + anon_sym_end, + STATE(8424), 1, + aux_sym_local_strdec_repeat1, + STATE(14272), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [676188] = 19, + ACTIONS(15213), 1, + anon_sym_do, + ACTIONS(15215), 1, + anon_sym_val, + ACTIONS(15217), 1, + anon_sym_fun, + ACTIONS(15219), 1, + anon_sym_type, + ACTIONS(15221), 1, + anon_sym_datatype, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15225), 1, + anon_sym_exception, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15229), 1, + anon_sym_open, + ACTIONS(15231), 1, + anon_sym_infix, + ACTIONS(15233), 1, + anon_sym_infixr, + ACTIONS(15235), 1, + anon_sym_nonfix, + ACTIONS(15237), 1, + anon_sym_structure, + ACTIONS(15439), 1, + anon_sym_SEMI, + ACTIONS(15441), 1, + anon_sym_in, + STATE(8437), 1, + aux_sym_let_strexp_repeat1, + STATE(14270), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [676261] = 21, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15109), 1, + anon_sym_op, + ACTIONS(15111), 1, + anon_sym_PIPE, + ACTIONS(15201), 1, + anon_sym_LPAREN, + STATE(8802), 1, + sym_vid, + STATE(13542), 1, + sym_fvalbind, + STATE(13649), 1, + sym__fmatch, + STATE(13672), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24417), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [676338] = 19, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15247), 1, + anon_sym_do, + ACTIONS(15249), 1, + anon_sym_val, + ACTIONS(15251), 1, + anon_sym_fun, + ACTIONS(15253), 1, + anon_sym_type, + ACTIONS(15255), 1, + anon_sym_datatype, + ACTIONS(15257), 1, + anon_sym_exception, + ACTIONS(15259), 1, + anon_sym_open, + ACTIONS(15261), 1, + anon_sym_infix, + ACTIONS(15263), 1, + anon_sym_infixr, + ACTIONS(15265), 1, + anon_sym_nonfix, + ACTIONS(15267), 1, + anon_sym_structure, + ACTIONS(15269), 1, + anon_sym_SEMI, + ACTIONS(15443), 1, + anon_sym_end, + STATE(8424), 1, + aux_sym_local_strdec_repeat1, + STATE(14272), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [676411] = 19, + ACTIONS(15213), 1, + anon_sym_do, + ACTIONS(15215), 1, + anon_sym_val, + ACTIONS(15217), 1, + anon_sym_fun, + ACTIONS(15219), 1, + anon_sym_type, + ACTIONS(15221), 1, + anon_sym_datatype, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15225), 1, + anon_sym_exception, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15229), 1, + anon_sym_open, + ACTIONS(15231), 1, + anon_sym_infix, + ACTIONS(15233), 1, + anon_sym_infixr, + ACTIONS(15235), 1, + anon_sym_nonfix, + ACTIONS(15237), 1, + anon_sym_structure, + ACTIONS(15331), 1, + anon_sym_SEMI, + ACTIONS(15445), 1, + anon_sym_in, + STATE(8432), 1, + aux_sym_let_strexp_repeat1, + STATE(14270), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [676484] = 21, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15115), 1, + anon_sym_op, + ACTIONS(15117), 1, + anon_sym_PIPE, + ACTIONS(15203), 1, + anon_sym_LPAREN, + STATE(8810), 1, + sym_vid, + STATE(13542), 1, + sym_fvalbind, + STATE(13649), 1, + sym__fmatch, + STATE(13677), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24444), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [676561] = 19, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15247), 1, + anon_sym_do, + ACTIONS(15249), 1, + anon_sym_val, + ACTIONS(15251), 1, + anon_sym_fun, + ACTIONS(15253), 1, + anon_sym_type, + ACTIONS(15255), 1, + anon_sym_datatype, + ACTIONS(15257), 1, + anon_sym_exception, + ACTIONS(15259), 1, + anon_sym_open, + ACTIONS(15261), 1, + anon_sym_infix, + ACTIONS(15263), 1, + anon_sym_infixr, + ACTIONS(15265), 1, + anon_sym_nonfix, + ACTIONS(15267), 1, + anon_sym_structure, + ACTIONS(15345), 1, + anon_sym_SEMI, + ACTIONS(15447), 1, + anon_sym_end, + STATE(8440), 1, + aux_sym_struct_strexp_repeat1, + STATE(14245), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [676634] = 19, + ACTIONS(15449), 1, + anon_sym_SEMI, + ACTIONS(15452), 1, + anon_sym_end, + ACTIONS(15454), 1, + anon_sym_do, + ACTIONS(15457), 1, + anon_sym_val, + ACTIONS(15460), 1, + anon_sym_fun, + ACTIONS(15463), 1, + anon_sym_type, + ACTIONS(15466), 1, + anon_sym_datatype, + ACTIONS(15469), 1, + anon_sym_abstype, + ACTIONS(15472), 1, + anon_sym_exception, + ACTIONS(15475), 1, + anon_sym_local, + ACTIONS(15478), 1, + anon_sym_open, + ACTIONS(15481), 1, + anon_sym_infix, + ACTIONS(15484), 1, + anon_sym_infixr, + ACTIONS(15487), 1, + anon_sym_nonfix, + ACTIONS(15490), 1, + anon_sym_structure, + STATE(8440), 1, + aux_sym_struct_strexp_repeat1, + STATE(14245), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [676707] = 21, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15121), 1, + anon_sym_op, + ACTIONS(15123), 1, + anon_sym_PIPE, + ACTIONS(15205), 1, + anon_sym_LPAREN, + STATE(8825), 1, + sym_vid, + STATE(13542), 1, + sym_fvalbind, + STATE(13649), 1, + sym__fmatch, + STATE(14110), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24471), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [676784] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 3, + anon_sym_fun, + anon_sym_with, + anon_sym_infix, + ACTIONS(12416), 29, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_of, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [676825] = 19, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15247), 1, + anon_sym_do, + ACTIONS(15249), 1, + anon_sym_val, + ACTIONS(15251), 1, + anon_sym_fun, + ACTIONS(15253), 1, + anon_sym_type, + ACTIONS(15255), 1, + anon_sym_datatype, + ACTIONS(15257), 1, + anon_sym_exception, + ACTIONS(15259), 1, + anon_sym_open, + ACTIONS(15261), 1, + anon_sym_infix, + ACTIONS(15263), 1, + anon_sym_infixr, + ACTIONS(15265), 1, + anon_sym_nonfix, + ACTIONS(15267), 1, + anon_sym_structure, + ACTIONS(15493), 1, + anon_sym_SEMI, + ACTIONS(15495), 1, + anon_sym_end, + STATE(8433), 1, + aux_sym_local_strdec_repeat1, + STATE(14272), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [676898] = 21, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15129), 1, + anon_sym_op, + ACTIONS(15131), 1, + anon_sym_PIPE, + ACTIONS(15207), 1, + anon_sym_LPAREN, + STATE(8750), 1, + sym_vid, + STATE(13542), 1, + sym_fvalbind, + STATE(13649), 1, + sym__fmatch, + STATE(13684), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24499), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [676975] = 21, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(14963), 1, + anon_sym_op, + ACTIONS(14965), 1, + anon_sym_PIPE, + ACTIONS(15169), 1, + anon_sym_LPAREN, + STATE(8794), 1, + sym_vid, + STATE(11217), 1, + sym_fmrule, + STATE(12839), 1, + sym_fvalbind, + STATE(12923), 1, + sym__fmatch, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(22124), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [677052] = 19, + ACTIONS(15213), 1, + anon_sym_do, + ACTIONS(15215), 1, + anon_sym_val, + ACTIONS(15217), 1, + anon_sym_fun, + ACTIONS(15219), 1, + anon_sym_type, + ACTIONS(15221), 1, + anon_sym_datatype, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15225), 1, + anon_sym_exception, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15229), 1, + anon_sym_open, + ACTIONS(15231), 1, + anon_sym_infix, + ACTIONS(15233), 1, + anon_sym_infixr, + ACTIONS(15235), 1, + anon_sym_nonfix, + ACTIONS(15237), 1, + anon_sym_structure, + ACTIONS(15331), 1, + anon_sym_SEMI, + ACTIONS(15497), 1, + anon_sym_in, + STATE(8432), 1, + aux_sym_let_strexp_repeat1, + STATE(14270), 1, + sym__strdec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [677125] = 18, + ACTIONS(12234), 1, + anon_sym_infix, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15499), 1, + anon_sym_RPAREN, + ACTIONS(15501), 1, + anon_sym_SEMI, + ACTIONS(15503), 1, + anon_sym_do, + ACTIONS(15505), 1, + anon_sym_val, + ACTIONS(15507), 1, + anon_sym_fun, + ACTIONS(15509), 1, + anon_sym_type, + ACTIONS(15511), 1, + anon_sym_datatype, + ACTIONS(15513), 1, + anon_sym_exception, + ACTIONS(15515), 1, + anon_sym_open, + ACTIONS(15517), 1, + anon_sym_infixr, + ACTIONS(15519), 1, + anon_sym_nonfix, + ACTIONS(15521), 1, + anon_sym_structure, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8431), 2, + sym__strdec, + aux_sym_fctapp_strexp_repeat1, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [677196] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [677239] = 18, + ACTIONS(12234), 1, + anon_sym_infix, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15227), 1, + anon_sym_local, + ACTIONS(15501), 1, + anon_sym_SEMI, + ACTIONS(15503), 1, + anon_sym_do, + ACTIONS(15505), 1, + anon_sym_val, + ACTIONS(15507), 1, + anon_sym_fun, + ACTIONS(15509), 1, + anon_sym_type, + ACTIONS(15511), 1, + anon_sym_datatype, + ACTIONS(15513), 1, + anon_sym_exception, + ACTIONS(15515), 1, + anon_sym_open, + ACTIONS(15517), 1, + anon_sym_infixr, + ACTIONS(15519), 1, + anon_sym_nonfix, + ACTIONS(15521), 1, + anon_sym_structure, + ACTIONS(15527), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8431), 2, + sym__strdec, + aux_sym_fctapp_strexp_repeat1, + STATE(14122), 15, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + sym_structure_strdec, + sym_local_strdec, + [677310] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15533), 26, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [677352] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15549), 1, + anon_sym_EQ, + ACTIONS(15551), 1, + anon_sym_COLON, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + STATE(8483), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [677426] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15561), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [677466] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15563), 1, + anon_sym_EQ, + ACTIONS(15565), 1, + anon_sym_COLON, + STATE(8465), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [677540] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15571), 26, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [677582] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15575), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [677622] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15577), 1, + anon_sym_EQ, + ACTIONS(15579), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [677696] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15583), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [677736] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15585), 1, + anon_sym_EQ, + ACTIONS(15587), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [677810] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15589), 1, + anon_sym_EQ, + ACTIONS(15591), 1, + anon_sym_COLON, + STATE(8463), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [677884] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15595), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [677924] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15597), 1, + anon_sym_EQ, + ACTIONS(15599), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [677998] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15603), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [678038] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15605), 1, + anon_sym_EQ, + ACTIONS(15607), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [678112] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15611), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [678152] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15613), 1, + anon_sym_EQ, + ACTIONS(15615), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [678226] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15617), 1, + anon_sym_EQ, + ACTIONS(15619), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [678300] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15623), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [678340] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15627), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [678380] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15631), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [678420] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15633), 1, + anon_sym_EQ, + ACTIONS(15635), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [678494] = 19, + ACTIONS(15637), 1, + sym_integer_scon, + ACTIONS(15643), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15646), 1, + sym__symbolic_ident, + ACTIONS(15649), 1, + anon_sym_LPAREN, + ACTIONS(15652), 1, + anon_sym_op, + ACTIONS(15655), 1, + anon_sym_LBRACE, + ACTIONS(15660), 1, + anon_sym_LBRACK, + ACTIONS(15663), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15666), 1, + anon_sym__, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15658), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(15640), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [678566] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15669), 1, + anon_sym_EQ, + ACTIONS(15671), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [678640] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15673), 1, + anon_sym_EQ, + ACTIONS(15675), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [678714] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15677), 1, + anon_sym_EQ, + ACTIONS(15679), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [678788] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15681), 1, + anon_sym_EQ, + ACTIONS(15683), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [678862] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15685), 1, + anon_sym_EQ, + ACTIONS(15687), 1, + anon_sym_COLON, + STATE(8478), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [678936] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [678978] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15689), 1, + anon_sym_EQ, + ACTIONS(15691), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [679052] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15693), 1, + anon_sym_EQ, + ACTIONS(15695), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [679126] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15699), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [679166] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15701), 1, + anon_sym_EQ, + ACTIONS(15703), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [679240] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15707), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [679280] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15709), 1, + anon_sym_EQ, + ACTIONS(15711), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [679354] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [679396] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15715), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [679436] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15717), 1, + anon_sym_EQ, + ACTIONS(15719), 1, + anon_sym_COLON, + STATE(8461), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [679510] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15721), 1, + anon_sym_EQ, + ACTIONS(15723), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [679584] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15725), 1, + anon_sym_EQ, + ACTIONS(15727), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [679658] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15729), 1, + anon_sym_EQ, + ACTIONS(15731), 1, + anon_sym_COLON, + STATE(8471), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [679732] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15735), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [679772] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [679814] = 20, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + ACTIONS(15737), 1, + anon_sym_EQ, + ACTIONS(15739), 1, + anon_sym_COLON, + STATE(8470), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [679888] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 28, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [679928] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15741), 1, + anon_sym_SEMI, + ACTIONS(15743), 1, + anon_sym_in, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + STATE(8710), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [679997] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15595), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [680036] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [680075] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15769), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [680144] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15771), 1, + anon_sym_SEMI, + ACTIONS(15773), 1, + anon_sym_in, + STATE(8500), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [680213] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15775), 1, + anon_sym_SEMI, + ACTIONS(15777), 1, + anon_sym_end, + ACTIONS(15779), 1, + anon_sym_do, + ACTIONS(15781), 1, + anon_sym_val, + ACTIONS(15783), 1, + anon_sym_fun, + ACTIONS(15785), 1, + anon_sym_type, + ACTIONS(15787), 1, + anon_sym_datatype, + ACTIONS(15789), 1, + anon_sym_exception, + ACTIONS(15791), 1, + anon_sym_open, + ACTIONS(15793), 1, + anon_sym_infix, + ACTIONS(15795), 1, + anon_sym_infixr, + ACTIONS(15797), 1, + anon_sym_nonfix, + STATE(8557), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [680282] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15799), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [680351] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15715), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [680390] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15603), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [680429] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15699), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [680468] = 18, + ACTIONS(15801), 1, + anon_sym_SEMI, + ACTIONS(15804), 1, + anon_sym_in, + ACTIONS(15806), 1, + anon_sym_do, + ACTIONS(15809), 1, + anon_sym_val, + ACTIONS(15812), 1, + anon_sym_fun, + ACTIONS(15815), 1, + anon_sym_type, + ACTIONS(15818), 1, + anon_sym_datatype, + ACTIONS(15821), 1, + anon_sym_abstype, + ACTIONS(15824), 1, + anon_sym_exception, + ACTIONS(15827), 1, + anon_sym_local, + ACTIONS(15830), 1, + anon_sym_open, + ACTIONS(15833), 1, + anon_sym_infix, + ACTIONS(15836), 1, + anon_sym_infixr, + ACTIONS(15839), 1, + anon_sym_nonfix, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [680537] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15707), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [680576] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15779), 1, + anon_sym_do, + ACTIONS(15781), 1, + anon_sym_val, + ACTIONS(15783), 1, + anon_sym_fun, + ACTIONS(15785), 1, + anon_sym_type, + ACTIONS(15787), 1, + anon_sym_datatype, + ACTIONS(15789), 1, + anon_sym_exception, + ACTIONS(15791), 1, + anon_sym_open, + ACTIONS(15793), 1, + anon_sym_infix, + ACTIONS(15795), 1, + anon_sym_infixr, + ACTIONS(15797), 1, + anon_sym_nonfix, + ACTIONS(15842), 1, + anon_sym_SEMI, + ACTIONS(15844), 1, + anon_sym_end, + STATE(8535), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [680645] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15846), 1, + anon_sym_SEMI, + ACTIONS(15848), 1, + anon_sym_in, + STATE(8511), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [680714] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15850), 1, + anon_sym_SEMI, + ACTIONS(15852), 1, + anon_sym_in, + STATE(8510), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [680783] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15779), 1, + anon_sym_do, + ACTIONS(15781), 1, + anon_sym_val, + ACTIONS(15783), 1, + anon_sym_fun, + ACTIONS(15785), 1, + anon_sym_type, + ACTIONS(15787), 1, + anon_sym_datatype, + ACTIONS(15789), 1, + anon_sym_exception, + ACTIONS(15791), 1, + anon_sym_open, + ACTIONS(15793), 1, + anon_sym_infix, + ACTIONS(15795), 1, + anon_sym_infixr, + ACTIONS(15797), 1, + anon_sym_nonfix, + ACTIONS(15854), 1, + anon_sym_SEMI, + ACTIONS(15856), 1, + anon_sym_end, + STATE(8587), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [680852] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15858), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [680921] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15860), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [680990] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15611), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [681029] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [681070] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15631), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [681109] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15571), 25, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [681150] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15575), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [681189] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15862), 1, + anon_sym_SEMI, + ACTIONS(15864), 1, + anon_sym_in, + STATE(8519), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [681258] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15779), 1, + anon_sym_do, + ACTIONS(15781), 1, + anon_sym_val, + ACTIONS(15783), 1, + anon_sym_fun, + ACTIONS(15785), 1, + anon_sym_type, + ACTIONS(15787), 1, + anon_sym_datatype, + ACTIONS(15789), 1, + anon_sym_exception, + ACTIONS(15791), 1, + anon_sym_open, + ACTIONS(15793), 1, + anon_sym_infix, + ACTIONS(15795), 1, + anon_sym_infixr, + ACTIONS(15797), 1, + anon_sym_nonfix, + ACTIONS(15866), 1, + anon_sym_SEMI, + ACTIONS(15868), 1, + anon_sym_end, + STATE(8571), 1, + aux_sym_local_dec_repeat1, + STATE(14316), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [681327] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15870), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [681396] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15533), 25, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [681437] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15872), 1, + anon_sym_SEMI, + ACTIONS(15874), 1, + anon_sym_in, + STATE(8497), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [681506] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15878), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15876), 27, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [681545] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15882), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15880), 27, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [681584] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15627), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [681623] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15884), 1, + anon_sym_SEMI, + ACTIONS(15886), 1, + anon_sym_in, + STATE(8528), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [681692] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [681731] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15888), 1, + anon_sym_SEMI, + ACTIONS(15890), 1, + anon_sym_in, + STATE(8531), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [681800] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15892), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [681869] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15894), 1, + anon_sym_SEMI, + ACTIONS(15896), 1, + anon_sym_in, + STATE(8530), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [681938] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15898), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [682007] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15900), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [682076] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15623), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [682115] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15902), 1, + anon_sym_SEMI, + ACTIONS(15904), 1, + anon_sym_in, + STATE(8715), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [682184] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15583), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [682223] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15779), 1, + anon_sym_do, + ACTIONS(15781), 1, + anon_sym_val, + ACTIONS(15783), 1, + anon_sym_fun, + ACTIONS(15785), 1, + anon_sym_type, + ACTIONS(15787), 1, + anon_sym_datatype, + ACTIONS(15789), 1, + anon_sym_exception, + ACTIONS(15791), 1, + anon_sym_open, + ACTIONS(15793), 1, + anon_sym_infix, + ACTIONS(15795), 1, + anon_sym_infixr, + ACTIONS(15797), 1, + anon_sym_nonfix, + ACTIONS(15906), 1, + anon_sym_SEMI, + ACTIONS(15908), 1, + anon_sym_end, + STATE(8738), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [682292] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15595), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [682331] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15910), 1, + anon_sym_SEMI, + ACTIONS(15912), 1, + anon_sym_in, + STATE(8539), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [682400] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15603), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [682439] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15914), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [682508] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15916), 1, + anon_sym_SEMI, + ACTIONS(15918), 1, + anon_sym_in, + STATE(8542), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [682577] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15715), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [682616] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15920), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [682685] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15627), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [682724] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15611), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [682763] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15627), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [682802] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15922), 1, + anon_sym_SEMI, + ACTIONS(15924), 1, + anon_sym_in, + STATE(8547), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [682871] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15926), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [682940] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15930), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15928), 27, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [682979] = 5, + ACTIONS(15936), 1, + anon_sym_STAR, + STATE(8559), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15932), 25, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [683022] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15940), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15938), 27, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [683061] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15779), 1, + anon_sym_do, + ACTIONS(15781), 1, + anon_sym_val, + ACTIONS(15783), 1, + anon_sym_fun, + ACTIONS(15785), 1, + anon_sym_type, + ACTIONS(15787), 1, + anon_sym_datatype, + ACTIONS(15789), 1, + anon_sym_exception, + ACTIONS(15791), 1, + anon_sym_open, + ACTIONS(15793), 1, + anon_sym_infix, + ACTIONS(15795), 1, + anon_sym_infixr, + ACTIONS(15797), 1, + anon_sym_nonfix, + ACTIONS(15942), 1, + anon_sym_SEMI, + ACTIONS(15944), 1, + anon_sym_end, + STATE(8566), 1, + aux_sym_local_dec_repeat1, + STATE(14316), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [683130] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15699), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [683169] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15946), 1, + anon_sym_SEMI, + ACTIONS(15948), 1, + anon_sym_in, + STATE(8555), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [683238] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [683279] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15950), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [683348] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15595), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [683387] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15779), 1, + anon_sym_do, + ACTIONS(15781), 1, + anon_sym_val, + ACTIONS(15783), 1, + anon_sym_fun, + ACTIONS(15785), 1, + anon_sym_type, + ACTIONS(15787), 1, + anon_sym_datatype, + ACTIONS(15789), 1, + anon_sym_exception, + ACTIONS(15791), 1, + anon_sym_open, + ACTIONS(15793), 1, + anon_sym_infix, + ACTIONS(15795), 1, + anon_sym_infixr, + ACTIONS(15797), 1, + anon_sym_nonfix, + ACTIONS(15906), 1, + anon_sym_SEMI, + ACTIONS(15952), 1, + anon_sym_end, + STATE(8738), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [683456] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15954), 1, + anon_sym_SEMI, + ACTIONS(15956), 1, + anon_sym_in, + STATE(8567), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [683525] = 5, + ACTIONS(15936), 1, + anon_sym_STAR, + STATE(8560), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15958), 25, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [683568] = 5, + ACTIONS(15962), 1, + anon_sym_STAR, + STATE(8560), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14005), 25, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [683611] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15965), 1, + anon_sym_SEMI, + ACTIONS(15967), 1, + anon_sym_in, + STATE(8563), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [683680] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15969), 1, + anon_sym_SEMI, + ACTIONS(15971), 1, + anon_sym_in, + STATE(8564), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [683749] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15973), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [683818] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(15975), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [683887] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15623), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [683926] = 18, + ACTIONS(15977), 1, + anon_sym_SEMI, + ACTIONS(15980), 1, + anon_sym_end, + ACTIONS(15982), 1, + anon_sym_do, + ACTIONS(15985), 1, + anon_sym_val, + ACTIONS(15988), 1, + anon_sym_fun, + ACTIONS(15991), 1, + anon_sym_type, + ACTIONS(15994), 1, + anon_sym_datatype, + ACTIONS(15997), 1, + anon_sym_abstype, + ACTIONS(16000), 1, + anon_sym_exception, + ACTIONS(16003), 1, + anon_sym_local, + ACTIONS(16006), 1, + anon_sym_open, + ACTIONS(16009), 1, + anon_sym_infix, + ACTIONS(16012), 1, + anon_sym_infixr, + ACTIONS(16015), 1, + anon_sym_nonfix, + STATE(8566), 1, + aux_sym_local_dec_repeat1, + STATE(14316), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [683995] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16018), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [684064] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15707), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [684103] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15533), 25, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [684144] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16020), 1, + anon_sym_SEMI, + ACTIONS(16022), 1, + anon_sym_in, + STATE(8572), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [684213] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15779), 1, + anon_sym_do, + ACTIONS(15781), 1, + anon_sym_val, + ACTIONS(15783), 1, + anon_sym_fun, + ACTIONS(15785), 1, + anon_sym_type, + ACTIONS(15787), 1, + anon_sym_datatype, + ACTIONS(15789), 1, + anon_sym_exception, + ACTIONS(15791), 1, + anon_sym_open, + ACTIONS(15793), 1, + anon_sym_infix, + ACTIONS(15795), 1, + anon_sym_infixr, + ACTIONS(15797), 1, + anon_sym_nonfix, + ACTIONS(15942), 1, + anon_sym_SEMI, + ACTIONS(16024), 1, + anon_sym_end, + STATE(8566), 1, + aux_sym_local_dec_repeat1, + STATE(14316), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [684282] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16026), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [684351] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15603), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [684390] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15779), 1, + anon_sym_do, + ACTIONS(15781), 1, + anon_sym_val, + ACTIONS(15783), 1, + anon_sym_fun, + ACTIONS(15785), 1, + anon_sym_type, + ACTIONS(15787), 1, + anon_sym_datatype, + ACTIONS(15789), 1, + anon_sym_exception, + ACTIONS(15791), 1, + anon_sym_open, + ACTIONS(15793), 1, + anon_sym_infix, + ACTIONS(15795), 1, + anon_sym_infixr, + ACTIONS(15797), 1, + anon_sym_nonfix, + ACTIONS(16028), 1, + anon_sym_SEMI, + ACTIONS(16030), 1, + anon_sym_end, + STATE(8711), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [684459] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15611), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [684498] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15735), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [684537] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16032), 1, + anon_sym_SEMI, + ACTIONS(16034), 1, + anon_sym_in, + STATE(8580), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [684606] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15631), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [684645] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15735), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [684684] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16036), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [684753] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16038), 1, + anon_sym_SEMI, + ACTIONS(16040), 1, + anon_sym_in, + STATE(8584), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [684822] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16042), 1, + anon_sym_SEMI, + ACTIONS(16044), 1, + anon_sym_in, + STATE(8583), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [684891] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16046), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [684960] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16048), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685029] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16050), 1, + anon_sym_SEMI, + ACTIONS(16052), 1, + anon_sym_in, + STATE(8586), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685098] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16054), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685167] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15779), 1, + anon_sym_do, + ACTIONS(15781), 1, + anon_sym_val, + ACTIONS(15783), 1, + anon_sym_fun, + ACTIONS(15785), 1, + anon_sym_type, + ACTIONS(15787), 1, + anon_sym_datatype, + ACTIONS(15789), 1, + anon_sym_exception, + ACTIONS(15791), 1, + anon_sym_open, + ACTIONS(15793), 1, + anon_sym_infix, + ACTIONS(15795), 1, + anon_sym_infixr, + ACTIONS(15797), 1, + anon_sym_nonfix, + ACTIONS(15906), 1, + anon_sym_SEMI, + ACTIONS(16056), 1, + anon_sym_end, + STATE(8738), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685236] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16058), 1, + anon_sym_SEMI, + ACTIONS(16060), 1, + anon_sym_in, + STATE(8589), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685305] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16062), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685374] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16064), 1, + anon_sym_SEMI, + ACTIONS(16066), 1, + anon_sym_in, + STATE(8591), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685443] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16068), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685512] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16070), 1, + anon_sym_SEMI, + ACTIONS(16072), 1, + anon_sym_in, + STATE(8593), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685581] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16074), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685650] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16076), 1, + anon_sym_SEMI, + ACTIONS(16078), 1, + anon_sym_in, + STATE(8595), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685719] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16080), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685788] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16082), 1, + anon_sym_SEMI, + ACTIONS(16084), 1, + anon_sym_in, + STATE(8597), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685857] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16086), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685926] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16088), 1, + anon_sym_SEMI, + ACTIONS(16090), 1, + anon_sym_in, + STATE(8600), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [685995] = 4, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16096), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16092), 26, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [686036] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16098), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [686105] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16100), 1, + anon_sym_SEMI, + ACTIONS(16102), 1, + anon_sym_in, + STATE(8602), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [686174] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16104), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [686243] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16106), 1, + anon_sym_SEMI, + ACTIONS(16108), 1, + anon_sym_in, + STATE(8604), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [686312] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16110), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [686381] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16112), 1, + anon_sym_SEMI, + ACTIONS(16114), 1, + anon_sym_in, + STATE(8606), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [686450] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16116), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [686519] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16118), 1, + anon_sym_SEMI, + ACTIONS(16120), 1, + anon_sym_in, + STATE(8608), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [686588] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16122), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [686657] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16124), 1, + anon_sym_SEMI, + ACTIONS(16126), 1, + anon_sym_in, + STATE(8610), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [686726] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16128), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [686795] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16130), 1, + anon_sym_SEMI, + ACTIONS(16132), 1, + anon_sym_in, + STATE(8612), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [686864] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16134), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [686933] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16136), 1, + anon_sym_SEMI, + ACTIONS(16138), 1, + anon_sym_in, + STATE(8614), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687002] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16140), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687071] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16142), 1, + anon_sym_SEMI, + ACTIONS(16144), 1, + anon_sym_in, + STATE(8616), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687140] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16146), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687209] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16148), 1, + anon_sym_SEMI, + ACTIONS(16150), 1, + anon_sym_in, + STATE(8618), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687278] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16152), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687347] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16154), 1, + anon_sym_SEMI, + ACTIONS(16156), 1, + anon_sym_in, + STATE(8620), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687416] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16158), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687485] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16160), 1, + anon_sym_SEMI, + ACTIONS(16162), 1, + anon_sym_in, + STATE(8622), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687554] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16164), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687623] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16166), 1, + anon_sym_SEMI, + ACTIONS(16168), 1, + anon_sym_in, + STATE(8624), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687692] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16170), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687761] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16172), 1, + anon_sym_SEMI, + ACTIONS(16174), 1, + anon_sym_in, + STATE(8626), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687830] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16176), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687899] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16178), 1, + anon_sym_SEMI, + ACTIONS(16180), 1, + anon_sym_in, + STATE(8628), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [687968] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16182), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688037] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16184), 1, + anon_sym_SEMI, + ACTIONS(16186), 1, + anon_sym_in, + STATE(8742), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15583), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [688145] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16188), 1, + anon_sym_SEMI, + ACTIONS(16190), 1, + anon_sym_in, + STATE(8632), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688214] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16192), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688283] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16194), 1, + anon_sym_SEMI, + ACTIONS(16196), 1, + anon_sym_in, + STATE(8634), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688352] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16198), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688421] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16200), 1, + anon_sym_SEMI, + ACTIONS(16202), 1, + anon_sym_in, + STATE(8636), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688490] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16204), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688559] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16206), 1, + anon_sym_SEMI, + ACTIONS(16208), 1, + anon_sym_in, + STATE(8638), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688628] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16210), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688697] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16212), 1, + anon_sym_SEMI, + ACTIONS(16214), 1, + anon_sym_in, + STATE(8640), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688766] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16216), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688835] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16218), 1, + anon_sym_SEMI, + ACTIONS(16220), 1, + anon_sym_in, + STATE(8642), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688904] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16222), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [688973] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16224), 1, + anon_sym_SEMI, + ACTIONS(16226), 1, + anon_sym_in, + STATE(8644), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689042] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16228), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689111] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16230), 1, + anon_sym_SEMI, + ACTIONS(16232), 1, + anon_sym_in, + STATE(8646), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689180] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16234), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689249] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16236), 1, + anon_sym_SEMI, + ACTIONS(16238), 1, + anon_sym_in, + STATE(8648), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689318] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16240), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689387] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16242), 1, + anon_sym_SEMI, + ACTIONS(16244), 1, + anon_sym_in, + STATE(8650), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689456] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16246), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689525] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16248), 1, + anon_sym_SEMI, + ACTIONS(16250), 1, + anon_sym_in, + STATE(8652), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689594] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16252), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689663] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16254), 1, + anon_sym_SEMI, + ACTIONS(16256), 1, + anon_sym_in, + STATE(8654), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689732] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16258), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689801] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16260), 1, + anon_sym_SEMI, + ACTIONS(16262), 1, + anon_sym_in, + STATE(8656), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689870] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16264), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [689939] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16266), 1, + anon_sym_SEMI, + ACTIONS(16268), 1, + anon_sym_in, + STATE(8658), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690008] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16270), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690077] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16272), 1, + anon_sym_SEMI, + ACTIONS(16274), 1, + anon_sym_in, + STATE(8660), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690146] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16276), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690215] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16278), 1, + anon_sym_SEMI, + ACTIONS(16280), 1, + anon_sym_in, + STATE(8662), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690284] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16282), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690353] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16284), 1, + anon_sym_SEMI, + ACTIONS(16286), 1, + anon_sym_in, + STATE(8664), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690422] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16288), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690491] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16290), 1, + anon_sym_SEMI, + ACTIONS(16292), 1, + anon_sym_in, + STATE(8666), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690560] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16294), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690629] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16296), 1, + anon_sym_SEMI, + ACTIONS(16298), 1, + anon_sym_in, + STATE(8668), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690698] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16300), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690767] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16302), 1, + anon_sym_SEMI, + ACTIONS(16304), 1, + anon_sym_in, + STATE(8670), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690836] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16306), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690905] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16308), 1, + anon_sym_SEMI, + ACTIONS(16310), 1, + anon_sym_in, + STATE(8672), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [690974] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16312), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691043] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16314), 1, + anon_sym_SEMI, + ACTIONS(16316), 1, + anon_sym_in, + STATE(8674), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691112] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16318), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691181] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16320), 1, + anon_sym_SEMI, + ACTIONS(16322), 1, + anon_sym_in, + STATE(8676), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691250] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16324), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691319] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16326), 1, + anon_sym_SEMI, + ACTIONS(16328), 1, + anon_sym_in, + STATE(8678), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691388] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16330), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691457] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16332), 1, + anon_sym_SEMI, + ACTIONS(16334), 1, + anon_sym_in, + STATE(8680), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691526] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16336), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691595] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16338), 1, + anon_sym_SEMI, + ACTIONS(16340), 1, + anon_sym_in, + STATE(8682), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691664] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16342), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691733] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16344), 1, + anon_sym_SEMI, + ACTIONS(16346), 1, + anon_sym_in, + STATE(8684), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691802] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16348), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691871] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16350), 1, + anon_sym_SEMI, + ACTIONS(16352), 1, + anon_sym_in, + STATE(8686), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [691940] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16354), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692009] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16356), 1, + anon_sym_SEMI, + ACTIONS(16358), 1, + anon_sym_in, + STATE(8688), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692078] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16360), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692147] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16362), 1, + anon_sym_SEMI, + ACTIONS(16364), 1, + anon_sym_in, + STATE(8690), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692216] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16366), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692285] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16368), 1, + anon_sym_SEMI, + ACTIONS(16370), 1, + anon_sym_in, + STATE(8692), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692354] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16372), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692423] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16374), 1, + anon_sym_SEMI, + ACTIONS(16376), 1, + anon_sym_in, + STATE(8694), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692492] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16378), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692561] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16380), 1, + anon_sym_SEMI, + ACTIONS(16382), 1, + anon_sym_in, + STATE(8696), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692630] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16384), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692699] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16386), 1, + anon_sym_SEMI, + ACTIONS(16388), 1, + anon_sym_in, + STATE(8698), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692768] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16390), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692837] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16392), 1, + anon_sym_SEMI, + ACTIONS(16394), 1, + anon_sym_in, + STATE(8700), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692906] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16396), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [692975] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16398), 1, + anon_sym_SEMI, + ACTIONS(16400), 1, + anon_sym_in, + STATE(8702), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [693044] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16402), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [693113] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16404), 1, + anon_sym_SEMI, + ACTIONS(16406), 1, + anon_sym_in, + STATE(8704), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [693182] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16408), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [693251] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16410), 1, + anon_sym_SEMI, + ACTIONS(16412), 1, + anon_sym_in, + STATE(8706), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [693320] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16414), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [693389] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16416), 1, + anon_sym_SEMI, + ACTIONS(16418), 1, + anon_sym_in, + STATE(8708), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [693458] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16420), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [693527] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15561), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [693566] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16422), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [693635] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15779), 1, + anon_sym_do, + ACTIONS(15781), 1, + anon_sym_val, + ACTIONS(15783), 1, + anon_sym_fun, + ACTIONS(15785), 1, + anon_sym_type, + ACTIONS(15787), 1, + anon_sym_datatype, + ACTIONS(15789), 1, + anon_sym_exception, + ACTIONS(15791), 1, + anon_sym_open, + ACTIONS(15793), 1, + anon_sym_infix, + ACTIONS(15795), 1, + anon_sym_infixr, + ACTIONS(15797), 1, + anon_sym_nonfix, + ACTIONS(15906), 1, + anon_sym_SEMI, + ACTIONS(16424), 1, + anon_sym_end, + STATE(8738), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [693704] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16428), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16426), 27, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [693743] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15779), 1, + anon_sym_do, + ACTIONS(15781), 1, + anon_sym_val, + ACTIONS(15783), 1, + anon_sym_fun, + ACTIONS(15785), 1, + anon_sym_type, + ACTIONS(15787), 1, + anon_sym_datatype, + ACTIONS(15789), 1, + anon_sym_exception, + ACTIONS(15791), 1, + anon_sym_open, + ACTIONS(15793), 1, + anon_sym_infix, + ACTIONS(15795), 1, + anon_sym_infixr, + ACTIONS(15797), 1, + anon_sym_nonfix, + ACTIONS(16430), 1, + anon_sym_SEMI, + ACTIONS(16432), 1, + anon_sym_end, + STATE(8551), 1, + aux_sym_local_dec_repeat1, + STATE(14316), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [693812] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15699), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [693851] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16434), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [693920] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16438), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16436), 27, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [693959] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16440), 1, + anon_sym_SEMI, + ACTIONS(16442), 1, + anon_sym_in, + STATE(8719), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [694028] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15707), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [694067] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16444), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [694136] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15571), 25, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [694177] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15561), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [694216] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15533), 25, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [694257] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15575), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [694296] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15631), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [694335] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16446), 1, + anon_sym_SEMI, + ACTIONS(16448), 1, + anon_sym_in, + STATE(8730), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [694404] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15583), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [694443] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(16450), 1, + anon_sym_SEMI, + ACTIONS(16452), 1, + anon_sym_in, + STATE(8729), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [694512] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16456), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16454), 27, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [694551] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16458), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [694620] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16460), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [694689] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15715), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [694728] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15623), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [694767] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15735), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [694806] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15561), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [694845] = 4, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16464), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16462), 26, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [694886] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [694925] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15571), 25, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [694966] = 18, + ACTIONS(15821), 1, + anon_sym_abstype, + ACTIONS(15827), 1, + anon_sym_local, + ACTIONS(16466), 1, + anon_sym_SEMI, + ACTIONS(16469), 1, + anon_sym_end, + ACTIONS(16471), 1, + anon_sym_do, + ACTIONS(16474), 1, + anon_sym_val, + ACTIONS(16477), 1, + anon_sym_fun, + ACTIONS(16480), 1, + anon_sym_type, + ACTIONS(16483), 1, + anon_sym_datatype, + ACTIONS(16486), 1, + anon_sym_exception, + ACTIONS(16489), 1, + anon_sym_open, + ACTIONS(16492), 1, + anon_sym_infix, + ACTIONS(16495), 1, + anon_sym_infixr, + ACTIONS(16498), 1, + anon_sym_nonfix, + STATE(8738), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [695035] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15575), 27, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695074] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16501), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(12420), 27, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [695113] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695154] = 18, + ACTIONS(15223), 1, + anon_sym_abstype, + ACTIONS(15745), 1, + anon_sym_do, + ACTIONS(15747), 1, + anon_sym_val, + ACTIONS(15749), 1, + anon_sym_fun, + ACTIONS(15751), 1, + anon_sym_type, + ACTIONS(15753), 1, + anon_sym_datatype, + ACTIONS(15755), 1, + anon_sym_exception, + ACTIONS(15757), 1, + anon_sym_local, + ACTIONS(15759), 1, + anon_sym_open, + ACTIONS(15761), 1, + anon_sym_infix, + ACTIONS(15763), 1, + anon_sym_infixr, + ACTIONS(15765), 1, + anon_sym_nonfix, + ACTIONS(15767), 1, + anon_sym_SEMI, + ACTIONS(16503), 1, + anon_sym_in, + STATE(8504), 1, + aux_sym_let_exp_repeat1, + STATE(14237), 1, + sym__dec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14238), 14, + sym__dec_no_local, + sym_do_dec, + sym_val_dec, + sym_fun_dec, + sym_type_dec, + sym_datatype_dec, + sym_datarepl_dec, + sym_abstype_dec, + sym_exception_dec, + sym_local_dec, + sym_open_dec, + sym_infix_dec, + sym_infixr_dec, + sym_nonfix_dec, + [695223] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15533), 24, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695263] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15611), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695301] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15631), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695339] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15715), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695377] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15627), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695415] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15571), 24, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695455] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15707), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695493] = 18, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + STATE(8487), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [695561] = 18, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + STATE(8489), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [695629] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15699), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695667] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15623), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695705] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15533), 24, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695745] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15707), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695783] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15533), 24, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695823] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15735), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695861] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695899] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15735), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695937] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15575), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [695975] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15561), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696013] = 4, + ACTIONS(16509), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16505), 25, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [696053] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15561), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696091] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15699), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696129] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15571), 24, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696169] = 18, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14857), 1, + anon_sym_op, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15137), 1, + anon_sym_LPAREN, + STATE(8786), 1, + sym_vid, + STATE(14101), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24380), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [696237] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15623), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696275] = 18, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(14963), 1, + anon_sym_op, + ACTIONS(15169), 1, + anon_sym_LPAREN, + STATE(8794), 1, + sym_vid, + STATE(12060), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(22124), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [696343] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15575), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696381] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15595), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696419] = 18, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(14963), 1, + anon_sym_op, + ACTIONS(15169), 1, + anon_sym_LPAREN, + STATE(8794), 1, + sym_vid, + STATE(11832), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(22124), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [696487] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15627), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696525] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15583), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696563] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15571), 24, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696603] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15575), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696641] = 5, + ACTIONS(16511), 1, + anon_sym_STAR, + STATE(8793), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15932), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [696683] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15583), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696721] = 18, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14857), 1, + anon_sym_op, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15137), 1, + anon_sym_LPAREN, + STATE(8786), 1, + sym_vid, + STATE(13331), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24380), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [696789] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15595), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696827] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12416), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [696867] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15603), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696905] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696943] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15611), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [696981] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15627), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697019] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15631), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697057] = 18, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + STATE(8456), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [697125] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15715), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697163] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15595), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697201] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15603), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697239] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697277] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15611), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697315] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15631), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697353] = 5, + ACTIONS(16511), 1, + anon_sym_STAR, + STATE(8795), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15958), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [697395] = 18, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + STATE(8466), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [697463] = 5, + ACTIONS(16513), 1, + anon_sym_STAR, + STATE(8795), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14005), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [697505] = 18, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + STATE(8473), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [697573] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697613] = 5, + ACTIONS(16516), 1, + anon_sym_STAR, + STATE(8806), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15932), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [697655] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15699), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697693] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15715), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697731] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15707), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697769] = 18, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + STATE(8479), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [697837] = 18, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + STATE(8475), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [697905] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15603), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697943] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [697983] = 5, + ACTIONS(16516), 1, + anon_sym_STAR, + STATE(8807), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15958), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [698025] = 5, + ACTIONS(16518), 1, + anon_sym_STAR, + STATE(8807), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14005), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [698067] = 5, + ACTIONS(16521), 1, + anon_sym_STAR, + STATE(8817), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15932), 25, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [698109] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15735), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [698147] = 18, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + STATE(8481), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [698215] = 18, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + STATE(8488), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [698283] = 18, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15109), 1, + anon_sym_op, + ACTIONS(15201), 1, + anon_sym_LPAREN, + STATE(8802), 1, + sym_vid, + STATE(13673), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24417), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [698351] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15623), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [698389] = 18, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15109), 1, + anon_sym_op, + ACTIONS(15201), 1, + anon_sym_LPAREN, + STATE(8802), 1, + sym_vid, + STATE(13331), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24417), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [698457] = 18, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15115), 1, + anon_sym_op, + ACTIONS(15203), 1, + anon_sym_LPAREN, + STATE(8810), 1, + sym_vid, + STATE(13678), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24444), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [698525] = 18, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15115), 1, + anon_sym_op, + ACTIONS(15203), 1, + anon_sym_LPAREN, + STATE(8810), 1, + sym_vid, + STATE(13331), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24444), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [698593] = 5, + ACTIONS(16521), 1, + anon_sym_STAR, + STATE(8820), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15958), 25, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [698635] = 18, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15121), 1, + anon_sym_op, + ACTIONS(15205), 1, + anon_sym_LPAREN, + STATE(8825), 1, + sym_vid, + STATE(14111), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24471), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [698703] = 18, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15121), 1, + anon_sym_op, + ACTIONS(15205), 1, + anon_sym_LPAREN, + STATE(8825), 1, + sym_vid, + STATE(13331), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24471), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [698771] = 5, + ACTIONS(16523), 1, + anon_sym_STAR, + STATE(8820), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14005), 25, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [698813] = 18, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15129), 1, + anon_sym_op, + ACTIONS(15207), 1, + anon_sym_LPAREN, + STATE(8750), 1, + sym_vid, + STATE(13685), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24499), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [698881] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15561), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [698919] = 18, + ACTIONS(14845), 1, + sym_integer_scon, + ACTIONS(14849), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(14853), 1, + sym__symbolic_ident, + ACTIONS(14859), 1, + anon_sym_LBRACE, + ACTIONS(14861), 1, + anon_sym_LBRACK, + ACTIONS(14863), 1, + anon_sym_POUND_LBRACK, + ACTIONS(14867), 1, + anon_sym__, + ACTIONS(15129), 1, + anon_sym_op, + ACTIONS(15207), 1, + anon_sym_LPAREN, + STATE(8750), 1, + sym_vid, + STATE(13331), 1, + sym_fmrule, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24773), 1, + sym_longvid, + STATE(24798), 1, + sym__scon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14847), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24499), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [698987] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15583), 26, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [699025] = 18, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + STATE(8472), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [699093] = 18, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + STATE(8474), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [699161] = 18, + ACTIONS(15535), 1, + sym_integer_scon, + ACTIONS(15539), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(15541), 1, + sym__symbolic_ident, + ACTIONS(15543), 1, + anon_sym_LPAREN, + ACTIONS(15545), 1, + anon_sym_op, + ACTIONS(15547), 1, + anon_sym_LBRACE, + ACTIONS(15553), 1, + anon_sym_LBRACK, + ACTIONS(15555), 1, + anon_sym_POUND_LBRACK, + ACTIONS(15557), 1, + anon_sym__, + STATE(8458), 1, + aux_sym_fmrule_repeat1, + STATE(14283), 1, + sym_vid, + STATE(14287), 1, + sym__scon, + STATE(14288), 1, + sym_longvid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15537), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(14222), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [699229] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13276), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [699266] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15735), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [699303] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [699342] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13060), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [699379] = 4, + ACTIONS(16530), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16526), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [699418] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13072), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [699455] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15533), 23, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [699494] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12950), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [699531] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12962), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [699568] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12966), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [699605] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13076), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [699642] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13016), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [699679] = 5, + ACTIONS(16532), 1, + anon_sym_STAR, + STATE(8938), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15958), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [699720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15611), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [699757] = 17, + ACTIONS(16534), 1, + sym_integer_scon, + ACTIONS(16538), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(16540), 1, + sym__symbolic_ident, + ACTIONS(16542), 1, + anon_sym_LPAREN, + ACTIONS(16544), 1, + anon_sym_op, + ACTIONS(16546), 1, + anon_sym_LBRACE, + ACTIONS(16548), 1, + anon_sym_LBRACK, + ACTIONS(16550), 1, + anon_sym_POUND_LBRACK, + ACTIONS(16552), 1, + anon_sym__, + STATE(11435), 1, + sym_vid, + STATE(19175), 1, + aux_sym_longvid_repeat1, + STATE(24822), 1, + sym__scon, + STATE(24823), 1, + sym_longvid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16536), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24769), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [699822] = 17, + ACTIONS(16534), 1, + sym_integer_scon, + ACTIONS(16538), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(16540), 1, + sym__symbolic_ident, + ACTIONS(16542), 1, + anon_sym_LPAREN, + ACTIONS(16544), 1, + anon_sym_op, + ACTIONS(16546), 1, + anon_sym_LBRACE, + ACTIONS(16548), 1, + anon_sym_LBRACK, + ACTIONS(16550), 1, + anon_sym_POUND_LBRACK, + ACTIONS(16552), 1, + anon_sym__, + STATE(11435), 1, + sym_vid, + STATE(19175), 1, + aux_sym_longvid_repeat1, + STATE(24822), 1, + sym__scon, + STATE(24823), 1, + sym_longvid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16536), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24799), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [699887] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15611), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [699924] = 4, + ACTIONS(16554), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16505), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [699963] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15623), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [700000] = 5, + ACTIONS(16558), 1, + anon_sym_PIPE, + STATE(8849), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16556), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [700041] = 5, + ACTIONS(16558), 1, + anon_sym_PIPE, + STATE(8849), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16562), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [700082] = 5, + ACTIONS(16566), 1, + anon_sym_PIPE, + STATE(8849), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14793), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [700123] = 4, + ACTIONS(16569), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16505), 25, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [700162] = 17, + ACTIONS(16534), 1, + sym_integer_scon, + ACTIONS(16538), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(16540), 1, + sym__symbolic_ident, + ACTIONS(16542), 1, + anon_sym_LPAREN, + ACTIONS(16544), 1, + anon_sym_op, + ACTIONS(16546), 1, + anon_sym_LBRACE, + ACTIONS(16548), 1, + anon_sym_LBRACK, + ACTIONS(16550), 1, + anon_sym_POUND_LBRACK, + ACTIONS(16552), 1, + anon_sym__, + STATE(11435), 1, + sym_vid, + STATE(19175), 1, + aux_sym_longvid_repeat1, + STATE(24822), 1, + sym__scon, + STATE(24823), 1, + sym_longvid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16536), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24835), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [700227] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12892), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [700264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12954), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [700301] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15603), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [700338] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15623), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [700375] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12416), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [700414] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15595), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [700451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [700488] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [700527] = 5, + ACTIONS(16571), 1, + anon_sym_STAR, + STATE(8897), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15932), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [700568] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12958), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [700605] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15735), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [700642] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13068), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [700679] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15561), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [700716] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 25, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [700753] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12888), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [700790] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12724), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [700827] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12792), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [700864] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13084), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [700901] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13080), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [700938] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13032), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [700975] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13130), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701012] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15571), 23, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [701051] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13280), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701088] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13292), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701125] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12946), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701162] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15571), 23, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [701201] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15603), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [701238] = 17, + ACTIONS(16534), 1, + sym_integer_scon, + ACTIONS(16538), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(16540), 1, + sym__symbolic_ident, + ACTIONS(16542), 1, + anon_sym_LPAREN, + ACTIONS(16544), 1, + anon_sym_op, + ACTIONS(16546), 1, + anon_sym_LBRACE, + ACTIONS(16548), 1, + anon_sym_LBRACK, + ACTIONS(16550), 1, + anon_sym_POUND_LBRACK, + ACTIONS(16552), 1, + anon_sym__, + STATE(11435), 1, + sym_vid, + STATE(19175), 1, + aux_sym_longvid_repeat1, + STATE(24822), 1, + sym__scon, + STATE(24823), 1, + sym_longvid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16536), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24813), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [701303] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12696), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701340] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15575), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [701377] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15699), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [701414] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [701451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12770), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701488] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12774), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701525] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15627), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [701562] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12416), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701599] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12720), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701636] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12788), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701673] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12796), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701710] = 5, + ACTIONS(16532), 1, + anon_sym_STAR, + STATE(8840), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15932), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [701751] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13024), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701788] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12842), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701825] = 5, + ACTIONS(16577), 1, + anon_sym_COMMA, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16573), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_POUND, + anon_sym_let, + anon_sym_raise, + anon_sym_if, + anon_sym_while, + anon_sym_case, + anon_sym_fn, + anon_sym_BQUOTE, + ACTIONS(16575), 14, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + [701866] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15575), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [701903] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12970), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [701940] = 5, + ACTIONS(16571), 1, + anon_sym_STAR, + STATE(8906), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15958), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [701981] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13342), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15631), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [702055] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13040), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702092] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15583), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [702129] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13028), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702166] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13260), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15595), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [702240] = 5, + ACTIONS(16580), 1, + anon_sym_STAR, + STATE(8911), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15932), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [702281] = 5, + ACTIONS(16582), 1, + anon_sym_STAR, + STATE(8906), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14005), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [702322] = 17, + ACTIONS(16534), 1, + sym_integer_scon, + ACTIONS(16538), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(16540), 1, + sym__symbolic_ident, + ACTIONS(16542), 1, + anon_sym_LPAREN, + ACTIONS(16544), 1, + anon_sym_op, + ACTIONS(16546), 1, + anon_sym_LBRACE, + ACTIONS(16548), 1, + anon_sym_LBRACK, + ACTIONS(16550), 1, + anon_sym_POUND_LBRACK, + ACTIONS(16552), 1, + anon_sym__, + STATE(11435), 1, + sym_vid, + STATE(19175), 1, + aux_sym_longvid_repeat1, + STATE(24822), 1, + sym__scon, + STATE(24823), 1, + sym_longvid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16536), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24794), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [702387] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15715), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [702424] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13036), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702461] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12416), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702500] = 5, + ACTIONS(16580), 1, + anon_sym_STAR, + STATE(8924), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15958), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [702541] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13264), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702578] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13268), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702615] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15533), 23, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [702654] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13272), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702691] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15707), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [702728] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15583), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [702765] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13284), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702802] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13064), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702839] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13044), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13288), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702913] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15561), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [702950] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13048), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [702987] = 5, + ACTIONS(16585), 1, + anon_sym_STAR, + STATE(8924), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14005), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [703028] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13338), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [703065] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13020), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [703102] = 4, + ACTIONS(16588), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16505), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [703141] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12938), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [703178] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12692), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [703215] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15707), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [703252] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13052), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [703289] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12700), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [703326] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12704), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [703363] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15699), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [703400] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12708), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [703437] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12712), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [703474] = 5, + ACTIONS(16558), 1, + anon_sym_PIPE, + STATE(8847), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16590), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [703515] = 5, + ACTIONS(16594), 1, + anon_sym_STAR, + STATE(8938), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14005), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [703556] = 5, + ACTIONS(16558), 1, + anon_sym_PIPE, + STATE(8848), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16556), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [703597] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12942), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [703634] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15631), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [703671] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13056), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [703708] = 17, + ACTIONS(16534), 1, + sym_integer_scon, + ACTIONS(16538), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(16540), 1, + sym__symbolic_ident, + ACTIONS(16542), 1, + anon_sym_LPAREN, + ACTIONS(16544), 1, + anon_sym_op, + ACTIONS(16546), 1, + anon_sym_LBRACE, + ACTIONS(16548), 1, + anon_sym_LBRACK, + ACTIONS(16550), 1, + anon_sym_POUND_LBRACK, + ACTIONS(16552), 1, + anon_sym__, + STATE(11435), 1, + sym_vid, + STATE(19175), 1, + aux_sym_longvid_repeat1, + STATE(24822), 1, + sym__scon, + STATE(24823), 1, + sym_longvid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16536), 4, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + STATE(24829), 10, + sym__atpat, + sym_wildcard_pat, + sym_scon_pat, + sym_vid_pat, + sym_record_pat, + sym_unit_pat, + sym_tuple_pat, + sym_list_pat, + sym_vec_pat, + sym_paren_pat, + [703773] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12716), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [703810] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15627), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [703847] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15715), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [703884] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12784), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [703921] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [703957] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [703993] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [704029] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [704065] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [704101] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [704137] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [704173] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [704209] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15523), 24, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [704247] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [704285] = 5, + ACTIONS(16597), 1, + anon_sym_STAR, + STATE(8966), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15932), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [704325] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13026), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13024), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [704361] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13042), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13040), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [704397] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13026), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13024), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [704433] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13066), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13064), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [704469] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13042), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13040), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [704505] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13066), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13064), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [704541] = 5, + ACTIONS(16599), 1, + anon_sym_STAR, + STATE(8965), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14005), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [704581] = 5, + ACTIONS(16597), 1, + anon_sym_STAR, + STATE(8965), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15958), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [704621] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15699), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [704657] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15707), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [704693] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15533), 22, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [704731] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15735), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [704767] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15561), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [704803] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15571), 22, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [704841] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15575), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [704877] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15583), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [704913] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15595), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [704949] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15603), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [704985] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15611), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [705021] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15631), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [705057] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [705093] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16604), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16602), 25, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_with, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [705129] = 4, + ACTIONS(16606), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16505), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [705167] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15715), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [705203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15523), 25, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [705239] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15627), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [705275] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15623), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [705311] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12416), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [705349] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [705387] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12416), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [705423] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [705459] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [705495] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [705531] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [705567] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [705603] = 4, + ACTIONS(16608), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16505), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [705641] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [705677] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [705713] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [705749] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [705785] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [705821] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [705857] = 4, + ACTIONS(16610), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16505), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [705895] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [705931] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [705967] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12416), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [706003] = 5, + ACTIONS(16614), 1, + anon_sym_COLON, + ACTIONS(16616), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16612), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [706043] = 7, + ACTIONS(16614), 1, + anon_sym_COLON, + ACTIONS(16616), 1, + anon_sym_andalso, + ACTIONS(16622), 1, + anon_sym_orelse, + ACTIONS(16624), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16620), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [706087] = 7, + ACTIONS(16614), 1, + anon_sym_COLON, + ACTIONS(16616), 1, + anon_sym_andalso, + ACTIONS(16622), 1, + anon_sym_orelse, + ACTIONS(16624), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16628), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [706131] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706167] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706239] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706275] = 5, + ACTIONS(16632), 1, + anon_sym_STAR, + STATE(9013), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15958), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [706315] = 5, + ACTIONS(16634), 1, + anon_sym_STAR, + STATE(9013), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14005), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [706355] = 5, + ACTIONS(16632), 1, + anon_sym_STAR, + STATE(9012), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15932), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [706395] = 4, + ACTIONS(16637), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16526), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [706433] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706469] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706505] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706541] = 7, + ACTIONS(16614), 1, + anon_sym_COLON, + ACTIONS(16616), 1, + anon_sym_andalso, + ACTIONS(16622), 1, + anon_sym_orelse, + ACTIONS(16624), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16639), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [706585] = 8, + ACTIONS(16614), 1, + anon_sym_COLON, + ACTIONS(16616), 1, + anon_sym_andalso, + ACTIONS(16622), 1, + anon_sym_orelse, + ACTIONS(16624), 1, + anon_sym_handle, + ACTIONS(16645), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16643), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [706631] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706667] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706703] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706739] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706775] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706811] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706847] = 8, + ACTIONS(16614), 1, + anon_sym_COLON, + ACTIONS(16616), 1, + anon_sym_andalso, + ACTIONS(16622), 1, + anon_sym_orelse, + ACTIONS(16624), 1, + anon_sym_handle, + ACTIONS(16649), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16643), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [706893] = 4, + ACTIONS(16651), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16526), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [706931] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [706967] = 7, + ACTIONS(16614), 1, + anon_sym_COLON, + ACTIONS(16616), 1, + anon_sym_andalso, + ACTIONS(16622), 1, + anon_sym_orelse, + ACTIONS(16624), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16653), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [707011] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [707047] = 4, + ACTIONS(16657), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16526), 24, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [707085] = 4, + ACTIONS(16614), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16659), 23, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [707123] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [707161] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [707197] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16665), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16663), 25, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_with, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [707233] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16669), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16667), 25, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_with, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [707269] = 5, + ACTIONS(16671), 1, + anon_sym_PIPE, + STATE(9040), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16556), 22, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [707309] = 5, + ACTIONS(16671), 1, + anon_sym_PIPE, + STATE(9040), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16562), 22, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [707349] = 5, + ACTIONS(16673), 1, + anon_sym_PIPE, + STATE(9040), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14793), 22, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [707389] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [707425] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [707461] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [707497] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [707533] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13034), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13032), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [707569] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13038), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13036), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [707605] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13046), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13044), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [707641] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13050), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13048), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [707677] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13054), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13052), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [707713] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13058), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13056), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [707749] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13062), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13060), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [707785] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13074), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13072), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [707821] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13078), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13076), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [707857] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13278), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13276), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [707893] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12890), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12888), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [707929] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13086), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13084), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [707965] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12948), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12946), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708001] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12952), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12950), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708037] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12964), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12962), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708073] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12968), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12966), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708109] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13018), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13016), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708145] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12894), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12892), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708181] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12956), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12954), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708217] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12960), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12958), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708253] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13070), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13068), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708289] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13082), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13080), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708325] = 5, + ACTIONS(16676), 1, + anon_sym_PIPE, + STATE(9069), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16556), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [708365] = 5, + ACTIONS(16676), 1, + anon_sym_PIPE, + STATE(9069), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16562), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [708405] = 5, + ACTIONS(16678), 1, + anon_sym_PIPE, + STATE(9069), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14793), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [708445] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13132), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13130), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708481] = 4, + ACTIONS(16681), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16501), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(12420), 23, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [708519] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13282), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13280), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708555] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [708591] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [708627] = 5, + ACTIONS(16671), 1, + anon_sym_PIPE, + STATE(9038), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16590), 22, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [708667] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [708703] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [708739] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13294), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13292), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708775] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12698), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12696), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708811] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12772), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12770), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708847] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12776), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12774), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708883] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12786), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12784), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708919] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12798), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12796), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708955] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12844), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12842), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [708991] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12972), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12970), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709027] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13344), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13342), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709063] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [709099] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13030), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13028), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709135] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13262), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13260), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709171] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13266), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13264), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709207] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13270), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13268), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709243] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13274), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13272), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709279] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13286), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13284), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709315] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13290), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13288), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709351] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13340), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13338), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709387] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13022), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(13020), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709423] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12694), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12692), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709459] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12702), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12700), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709495] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12706), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12704), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709531] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12710), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12708), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709567] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12714), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12712), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709603] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12718), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12716), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709639] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12722), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12720), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709675] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12726), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12724), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709711] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [709749] = 5, + ACTIONS(16676), 1, + anon_sym_PIPE, + STATE(9067), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16590), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [709789] = 5, + ACTIONS(16676), 1, + anon_sym_PIPE, + STATE(9068), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16556), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [709829] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12790), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12788), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709865] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12794), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12792), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709901] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12940), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12938), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709937] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13034), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13032), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [709973] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13038), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13036), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710009] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13046), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13044), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710045] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13050), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13048), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710081] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12944), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + ACTIONS(12942), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710117] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13054), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13052), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710153] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13058), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13056), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710189] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13062), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13060), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710225] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13074), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13072), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710261] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13078), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13076), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710297] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13278), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13276), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710333] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [710371] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12890), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12888), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710407] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13086), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13084), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710443] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12948), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12946), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710479] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12952), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12950), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710515] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12964), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12962), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710551] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12968), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12966), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710587] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13018), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13016), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710623] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12894), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12892), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710659] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12956), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12954), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710695] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12960), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12958), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710731] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13070), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13068), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710767] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13082), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13080), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710803] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [710839] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13132), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13130), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710875] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13282), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13280), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710911] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [710947] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13294), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13292), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [710983] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12698), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12696), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711019] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12772), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12770), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711055] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12776), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12774), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711091] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12786), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12784), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711127] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12798), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12796), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711163] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12844), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12842), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711199] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12972), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12970), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711235] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13344), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13342), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711271] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13030), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13028), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711307] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13262), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13260), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711343] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13266), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13264), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711379] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13270), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13268), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711415] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13274), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13272), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13286), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13284), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711487] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13290), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13288), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711523] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13340), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13338), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711559] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13022), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(13020), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711595] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12694), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12692), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711631] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12702), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12700), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711667] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12706), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12704), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711703] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12710), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12708), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711739] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12714), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12712), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711775] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12718), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12716), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711811] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12722), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12720), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711847] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12726), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12724), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711883] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12790), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12788), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711919] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12794), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12792), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711955] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12940), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12938), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [711991] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12944), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + ACTIONS(12942), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [712027] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [712063] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [712101] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [712137] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [712173] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [712209] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [712245] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [712281] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [712317] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [712353] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [712389] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [712425] = 5, + ACTIONS(16671), 1, + anon_sym_PIPE, + STATE(9039), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16556), 22, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [712465] = 5, + ACTIONS(16683), 1, + anon_sym_STAR, + STATE(9478), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15932), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [712504] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16653), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [712547] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 23, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [712584] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12702), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12700), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [712619] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [712654] = 4, + ACTIONS(16693), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16505), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [712691] = 7, + ACTIONS(16695), 1, + anon_sym_COLON, + ACTIONS(16697), 1, + anon_sym_andalso, + ACTIONS(16699), 1, + anon_sym_orelse, + ACTIONS(16701), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16639), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [712734] = 8, + ACTIONS(16695), 1, + anon_sym_COLON, + ACTIONS(16697), 1, + anon_sym_andalso, + ACTIONS(16699), 1, + anon_sym_orelse, + ACTIONS(16701), 1, + anon_sym_handle, + ACTIONS(16703), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16643), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [712779] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16639), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [712822] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [712859] = 7, + ACTIONS(16695), 1, + anon_sym_COLON, + ACTIONS(16697), 1, + anon_sym_andalso, + ACTIONS(16699), 1, + anon_sym_orelse, + ACTIONS(16701), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16653), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [712902] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [712937] = 8, + ACTIONS(16624), 1, + anon_sym_handle, + ACTIONS(16705), 1, + anon_sym_COLON, + ACTIONS(16707), 1, + anon_sym_andalso, + ACTIONS(16709), 1, + anon_sym_orelse, + ACTIONS(16711), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16643), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [712982] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [713017] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [713054] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [713089] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [713124] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [713159] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [713194] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [713229] = 4, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16659), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [713266] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [713301] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15571), 21, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [713338] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 23, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [713375] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [713410] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [713445] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [713480] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12706), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12704), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [713515] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12710), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12708), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [713550] = 4, + ACTIONS(16705), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16659), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [713587] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [713622] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12714), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12712), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [713657] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12718), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12716), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [713692] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [713727] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12722), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12720), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [713762] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12894), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12892), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [713797] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12956), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12954), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [713832] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12726), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12724), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [713867] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12960), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12958), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [713902] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [713937] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13070), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13068), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [713972] = 4, + ACTIONS(16695), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16659), 23, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [714009] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [714044] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13030), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13028), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [714079] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [714114] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13082), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13080), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [714149] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13132), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13130), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [714184] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [714219] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [714254] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [714289] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [714324] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13282), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13280), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [714359] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [714394] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [714429] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [714464] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [714499] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [714534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [714569] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13340), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13338), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [714604] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [714639] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [714676] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [714711] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [714746] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13022), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13020), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [714781] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13262), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13260), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [714816] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [714851] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [714888] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16715), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16713), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [714931] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12972), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12970), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [714966] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [715001] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12790), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12788), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [715036] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [715071] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [715106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [715141] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [715176] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12794), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12792), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [715211] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [715248] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [715285] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [715320] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12940), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12938), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [715355] = 4, + ACTIONS(16717), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16505), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [715392] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [715429] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [715466] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15713), 24, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [715501] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16721), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16719), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [715544] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [715581] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [715616] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15625), 24, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [715651] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [715686] = 4, + ACTIONS(16723), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16526), 22, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [715723] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [715758] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [715793] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [715828] = 5, + ACTIONS(16725), 1, + anon_sym_PIPE, + STATE(9384), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16590), 22, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [715867] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 22, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [715904] = 5, + ACTIONS(16725), 1, + anon_sym_PIPE, + STATE(9390), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16556), 22, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [715943] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [715978] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [716013] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [716048] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 22, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [716085] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14567), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14565), 23, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_as, + anon_sym_structure, + [716120] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12944), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12942), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [716155] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [716190] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [716225] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [716260] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [716295] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [716330] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [716365] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [716400] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [716435] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [716470] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [716505] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [716542] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [716577] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [716612] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [716647] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [716682] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [716717] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [716752] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [716787] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [716822] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [716857] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12416), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [716894] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16729), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16727), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [716937] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16733), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16731), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [716980] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16737), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16735), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [717023] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16741), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16739), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [717066] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16745), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16743), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [717109] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12420), 7, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON_GT, + anon_sym_Datatype_COLON, + ACTIONS(16501), 19, + sym__alphaAlphaNumeric_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [717144] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16749), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16747), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [717187] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13042), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13040), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12772), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12770), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717257] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [717294] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [717329] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12416), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717364] = 4, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16462), 6, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON_GT, + anon_sym_Datatype_COLON, + ACTIONS(16464), 19, + sym__alphaAlphaNumeric_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [717401] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13034), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13032), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717436] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13026), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13024), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717471] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [717506] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13038), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13036), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717541] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13046), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13044), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717576] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13050), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13048), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717611] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13054), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13052), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717646] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13058), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13056), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717681] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13062), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13060), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717716] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13074), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13072), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717751] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [717788] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13078), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13076), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717823] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13066), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13064), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717858] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13278), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13276), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717893] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12890), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12888), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717928] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [717963] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13086), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13084), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [717998] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12948), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12946), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [718033] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12952), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12950), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [718068] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [718103] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12964), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12962), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [718138] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12968), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12966), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [718173] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [718208] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [718243] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [718278] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [718313] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [718348] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [718383] = 8, + ACTIONS(16695), 1, + anon_sym_COLON, + ACTIONS(16697), 1, + anon_sym_andalso, + ACTIONS(16699), 1, + anon_sym_orelse, + ACTIONS(16701), 1, + anon_sym_handle, + ACTIONS(16751), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16643), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [718428] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 23, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [718465] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [718500] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [718535] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [718570] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12786), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12784), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [718605] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13344), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13342), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [718640] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [718675] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [718710] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [718745] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [718780] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [718815] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12798), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12796), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [718850] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [718885] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [718920] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [718955] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [718990] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [719025] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [719060] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 23, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [719097] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [719132] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [719167] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [719202] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [719237] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [719272] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12844), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12842), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [719307] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [719342] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [719377] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [719412] = 5, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16612), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [719451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12776), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12774), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [719486] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16620), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [719529] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16628), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [719572] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [719607] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [719642] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [719677] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [719712] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14419), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14417), 23, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_as, + anon_sym_structure, + [719747] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [719782] = 5, + ACTIONS(16725), 1, + anon_sym_PIPE, + STATE(9391), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16556), 22, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [719821] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [719856] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [719891] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [719926] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [719963] = 4, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16092), 6, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON_GT, + anon_sym_Datatype_COLON, + ACTIONS(16096), 19, + sym__alphaAlphaNumeric_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [720000] = 5, + ACTIONS(16725), 1, + anon_sym_PIPE, + STATE(9391), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16562), 22, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [720039] = 5, + ACTIONS(16753), 1, + anon_sym_PIPE, + STATE(9391), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14793), 22, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [720078] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [720113] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [720148] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16758), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16756), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [720191] = 5, + ACTIONS(16705), 1, + anon_sym_COLON, + ACTIONS(16707), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16612), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [720230] = 7, + ACTIONS(16624), 1, + anon_sym_handle, + ACTIONS(16705), 1, + anon_sym_COLON, + ACTIONS(16707), 1, + anon_sym_andalso, + ACTIONS(16709), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16620), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [720273] = 7, + ACTIONS(16624), 1, + anon_sym_handle, + ACTIONS(16705), 1, + anon_sym_COLON, + ACTIONS(16707), 1, + anon_sym_andalso, + ACTIONS(16709), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16628), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [720316] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13018), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13016), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [720351] = 4, + ACTIONS(16760), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16526), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [720388] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [720423] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [720458] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [720495] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [720530] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [720565] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [720600] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13286), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13284), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [720635] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [720670] = 5, + ACTIONS(16695), 1, + anon_sym_COLON, + ACTIONS(16697), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16612), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [720709] = 7, + ACTIONS(16695), 1, + anon_sym_COLON, + ACTIONS(16697), 1, + anon_sym_andalso, + ACTIONS(16699), 1, + anon_sym_orelse, + ACTIONS(16701), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16620), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [720752] = 7, + ACTIONS(16695), 1, + anon_sym_COLON, + ACTIONS(16697), 1, + anon_sym_andalso, + ACTIONS(16699), 1, + anon_sym_orelse, + ACTIONS(16701), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16628), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [720795] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [720830] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [720865] = 4, + ACTIONS(16762), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16526), 23, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [720902] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [720937] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [720972] = 7, + ACTIONS(16624), 1, + anon_sym_handle, + ACTIONS(16705), 1, + anon_sym_COLON, + ACTIONS(16707), 1, + anon_sym_andalso, + ACTIONS(16709), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16639), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [721015] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [721050] = 8, + ACTIONS(16624), 1, + anon_sym_handle, + ACTIONS(16705), 1, + anon_sym_COLON, + ACTIONS(16707), 1, + anon_sym_andalso, + ACTIONS(16709), 1, + anon_sym_orelse, + ACTIONS(16764), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16643), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [721095] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13290), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13288), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [721130] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15533), 21, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [721167] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721202] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721237] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [721274] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721309] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [721344] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [721379] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [721414] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [721449] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721519] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721554] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721589] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [721624] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [721659] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721694] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12694), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12692), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [721729] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721764] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13266), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13264), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [721799] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721834] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721869] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721904] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721939] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [721974] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722009] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722044] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722079] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722114] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13270), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13268), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [722149] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722184] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722219] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722254] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722289] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722324] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722359] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722394] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722429] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13274), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13272), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [722464] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722499] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722569] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722604] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722639] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722674] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722709] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722744] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722779] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722814] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722849] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722884] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722919] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722954] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [722989] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [723024] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [723059] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [723094] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [723131] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [723166] = 5, + ACTIONS(16683), 1, + anon_sym_STAR, + STATE(9479), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15958), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [723205] = 5, + ACTIONS(16766), 1, + anon_sym_STAR, + STATE(9479), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14005), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [723244] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [723279] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 25, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [723314] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [723349] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13294), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13292), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [723384] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + [723419] = 7, + ACTIONS(16685), 1, + anon_sym_COLON, + ACTIONS(16687), 1, + anon_sym_andalso, + ACTIONS(16689), 1, + anon_sym_orelse, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16771), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16769), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [723462] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12698), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12696), 15, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [723497] = 5, + ACTIONS(16773), 1, + anon_sym_STAR, + STATE(9680), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 21, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [723535] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [723569] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [723603] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [723637] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [723671] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [723705] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [723739] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [723773] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [723807] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [723841] = 4, + ACTIONS(16775), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16526), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [723877] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [723911] = 4, + ACTIONS(16777), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16659), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [723947] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [723981] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724015] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724049] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724083] = 7, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(16781), 1, + anon_sym_COLON, + ACTIONS(16783), 1, + anon_sym_andalso, + ACTIONS(16785), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16787), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16779), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [724125] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724159] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724193] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724227] = 4, + ACTIONS(16789), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16659), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [724263] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724297] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724331] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724365] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724399] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724433] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724467] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [724501] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724535] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724571] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [724607] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724641] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [724675] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [724709] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [724743] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724777] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724811] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724845] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724879] = 5, + ACTIONS(16781), 1, + anon_sym_COLON, + ACTIONS(16783), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16612), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [724917] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [724951] = 7, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(16781), 1, + anon_sym_COLON, + ACTIONS(16783), 1, + anon_sym_andalso, + ACTIONS(16785), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16620), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [724993] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15533), 20, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [725029] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [725063] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [725099] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [725133] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [725167] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [725201] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [725235] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [725269] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [725303] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [725337] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [725371] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [725405] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [725439] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [725473] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [725507] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [725541] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [725575] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [725609] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [725643] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 22, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [725679] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 22, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [725715] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 22, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [725751] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [725785] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [725819] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [725855] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12416), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [725889] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [725925] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 22, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [725961] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [725995] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [726029] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [726063] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [726097] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [726131] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [726165] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [726199] = 5, + ACTIONS(16791), 1, + anon_sym_STAR, + STATE(9642), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [726237] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [726271] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [726305] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726339] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [726373] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726407] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726441] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726475] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726509] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726543] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726577] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726611] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726645] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [726679] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726713] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726747] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726781] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726815] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726849] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726883] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [726917] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [726951] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [726985] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727019] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 22, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [727053] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727087] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727121] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727155] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727189] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727223] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727257] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727291] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727325] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727359] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727393] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727427] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727461] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727495] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727529] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727563] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727597] = 5, + ACTIONS(16793), 1, + anon_sym_STAR, + STATE(9715), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [727635] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727669] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727703] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727737] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727771] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727805] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [727841] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727875] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727909] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727943] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [727977] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [728011] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [728045] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [728079] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [728113] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [728147] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [728181] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [728215] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [728249] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [728283] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [728317] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [728351] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [728387] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [728421] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [728455] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [728489] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [728523] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [728557] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [728591] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [728625] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [728659] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [728693] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [728727] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [728761] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [728795] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [728829] = 5, + ACTIONS(16791), 1, + anon_sym_STAR, + STATE(9643), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [728867] = 5, + ACTIONS(16795), 1, + anon_sym_STAR, + STATE(9643), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [728905] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [728939] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [728973] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [729007] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729041] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729075] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729109] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729143] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729177] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729211] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729245] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729279] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [729313] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [729347] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 22, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [729383] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729417] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729485] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729519] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729553] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729587] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729621] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [729655] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [729689] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729723] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729757] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729791] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729825] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729859] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729893] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729927] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729961] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [729995] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 22, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [730031] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [730065] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730099] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730133] = 5, + ACTIONS(16773), 1, + anon_sym_STAR, + STATE(9681), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 21, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [730171] = 5, + ACTIONS(16798), 1, + anon_sym_STAR, + STATE(9681), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 21, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [730209] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730243] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730277] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730311] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730345] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730379] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730413] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [730447] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730481] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730515] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730549] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [730583] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730617] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730651] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730685] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730719] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730753] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730787] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [730821] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730855] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730889] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [730923] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [730957] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [730991] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [731025] = 7, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(16781), 1, + anon_sym_COLON, + ACTIONS(16783), 1, + anon_sym_andalso, + ACTIONS(16785), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16628), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [731067] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [731101] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [731137] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [731171] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [731205] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [731239] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [731273] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [731307] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [731341] = 5, + ACTIONS(16793), 1, + anon_sym_STAR, + STATE(9716), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [731379] = 5, + ACTIONS(16801), 1, + anon_sym_STAR, + STATE(9716), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [731417] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [731451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [731485] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [731519] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [731555] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [731589] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [731623] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 22, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [731659] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [731693] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [731727] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 22, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [731763] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 22, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [731799] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [731833] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [731867] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [731901] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [731935] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [731969] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [732003] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [732037] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [732071] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732105] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732139] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732173] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732209] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732243] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732277] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [732311] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732345] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732379] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732413] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732447] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732483] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732517] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732551] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [732585] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [732621] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732655] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732689] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 22, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732725] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732759] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732793] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 22, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732829] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732863] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732897] = 4, + ACTIONS(16804), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16505), 22, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [732933] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [732967] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733001] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733035] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733069] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733103] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733139] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [733173] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733207] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733241] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733275] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [733309] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733343] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733377] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733411] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733445] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733479] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733513] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733547] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733581] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [733615] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [733649] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733685] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733719] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733753] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733789] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [733825] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733859] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [733893] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [733927] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733961] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [733995] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [734029] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [734063] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [734097] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [734131] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [734165] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16808), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16806), 22, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [734199] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [734233] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [734267] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [734301] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [734335] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [734369] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [734403] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [734437] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [734471] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 22, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [734507] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [734541] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [734575] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [734609] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [734643] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 22, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [734679] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [734713] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [734747] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [734781] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [734815] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [734849] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [734883] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [734917] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [734951] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [734985] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735019] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735053] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735087] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735121] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735155] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [735189] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735223] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13026), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13024), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [735257] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735291] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735325] = 7, + ACTIONS(16812), 1, + sym__alphaAlphaNumeric_ident, + STATE(9316), 1, + sym_strid, + STATE(22510), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9831), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + ACTIONS(16810), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(16815), 17, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [735367] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [735403] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735437] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735471] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [735505] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16819), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16817), 22, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [735539] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [735575] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [735609] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [735643] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735677] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735711] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13042), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13040), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [735745] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13066), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13064), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [735779] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [735813] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735849] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [735883] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16823), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16821), 22, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [735917] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [735951] = 7, + ACTIONS(16701), 1, + anon_sym_handle, + ACTIONS(16777), 1, + anon_sym_COLON, + ACTIONS(16825), 1, + anon_sym_andalso, + ACTIONS(16827), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16639), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [735993] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736027] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16831), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16829), 22, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [736061] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16835), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16833), 22, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [736095] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15571), 20, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [736131] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [736165] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16839), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16837), 22, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [736199] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736233] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736267] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736303] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736337] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736371] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 22, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736407] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [736441] = 5, + ACTIONS(16845), 1, + anon_sym_SEMI, + STATE(9863), 1, + aux_sym_sequence_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16843), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(16841), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_POUND, + anon_sym_let, + anon_sym_raise, + anon_sym_if, + anon_sym_while, + anon_sym_case, + anon_sym_fn, + anon_sym_BQUOTE, + [736479] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736513] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736547] = 8, + ACTIONS(16701), 1, + anon_sym_handle, + ACTIONS(16777), 1, + anon_sym_COLON, + ACTIONS(16825), 1, + anon_sym_andalso, + ACTIONS(16827), 1, + anon_sym_orelse, + ACTIONS(16848), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16643), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [736591] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736625] = 4, + ACTIONS(16850), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16526), 22, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [736661] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [736697] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736733] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 22, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736769] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736803] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736837] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736871] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [736905] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736939] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [736973] = 7, + ACTIONS(16854), 1, + sym__alphaAlphaNumeric_ident, + STATE(9316), 1, + sym_strid, + STATE(22510), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9831), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + ACTIONS(16852), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(16856), 17, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [737015] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737051] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737085] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737119] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737153] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737187] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 15, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [737221] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737255] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737289] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737323] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737357] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737391] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737425] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737461] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737497] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737531] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [737567] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737601] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737635] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [737669] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737705] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 22, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [737741] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [737775] = 5, + ACTIONS(16858), 1, + anon_sym_SEMI, + STATE(9901), 1, + aux_sym_sequence_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16843), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(16841), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_raise, + anon_sym_if, + anon_sym_while, + anon_sym_case, + anon_sym_fn, + anon_sym_BQUOTE, + [737813] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [737847] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [737881] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [737915] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [737949] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [737985] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [738019] = 7, + ACTIONS(16789), 1, + anon_sym_COLON, + ACTIONS(16861), 1, + anon_sym_andalso, + ACTIONS(16863), 1, + anon_sym_orelse, + ACTIONS(16865), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16639), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [738061] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [738095] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16869), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16867), 22, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [738129] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [738163] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [738197] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [738231] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [738265] = 5, + ACTIONS(16777), 1, + anon_sym_COLON, + ACTIONS(16825), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16612), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [738303] = 7, + ACTIONS(16701), 1, + anon_sym_handle, + ACTIONS(16777), 1, + anon_sym_COLON, + ACTIONS(16825), 1, + anon_sym_andalso, + ACTIONS(16827), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16620), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [738345] = 7, + ACTIONS(16701), 1, + anon_sym_handle, + ACTIONS(16777), 1, + anon_sym_COLON, + ACTIONS(16825), 1, + anon_sym_andalso, + ACTIONS(16827), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16628), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [738387] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [738421] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [738455] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [738489] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [738523] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [738557] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13034), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13032), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [738591] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13038), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13036), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [738625] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13046), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13044), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [738659] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [738693] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13050), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13048), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [738727] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [738761] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [738795] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13054), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13052), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [738829] = 5, + ACTIONS(16789), 1, + anon_sym_COLON, + ACTIONS(16861), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16612), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [738867] = 7, + ACTIONS(16789), 1, + anon_sym_COLON, + ACTIONS(16861), 1, + anon_sym_andalso, + ACTIONS(16863), 1, + anon_sym_orelse, + ACTIONS(16865), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16620), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [738909] = 7, + ACTIONS(16789), 1, + anon_sym_COLON, + ACTIONS(16861), 1, + anon_sym_andalso, + ACTIONS(16863), 1, + anon_sym_orelse, + ACTIONS(16865), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16628), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [738951] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13058), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13056), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [738985] = 4, + ACTIONS(16781), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16659), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [739021] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13062), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13060), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739055] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13074), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13072), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739089] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13078), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13076), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739123] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [739157] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13278), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13276), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739191] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [739225] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [739261] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16873), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16871), 22, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [739295] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12890), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12888), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739329] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13086), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13084), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739363] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12948), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12946), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739397] = 5, + ACTIONS(16875), 1, + anon_sym_STAR, + STATE(9948), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15958), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [739435] = 5, + ACTIONS(16877), 1, + anon_sym_STAR, + STATE(9948), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14005), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [739473] = 5, + ACTIONS(16875), 1, + anon_sym_STAR, + STATE(9947), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15932), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [739511] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12952), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12950), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739545] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [739579] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [739613] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12964), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12962), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739647] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12968), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12966), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739681] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13018), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13016), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739715] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [739749] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [739783] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12894), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12892), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739817] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12956), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12954), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739851] = 7, + ACTIONS(16789), 1, + anon_sym_COLON, + ACTIONS(16861), 1, + anon_sym_andalso, + ACTIONS(16863), 1, + anon_sym_orelse, + ACTIONS(16865), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16653), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [739893] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12960), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12958), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [739927] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [739961] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [739995] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13070), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13068), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [740029] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [740063] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [740097] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13082), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13080), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [740131] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [740165] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [740199] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [740235] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13132), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13130), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [740269] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13282), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13280), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [740303] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13294), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13292), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [740337] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [740371] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [740405] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [740439] = 8, + ACTIONS(16701), 1, + anon_sym_handle, + ACTIONS(16777), 1, + anon_sym_COLON, + ACTIONS(16825), 1, + anon_sym_andalso, + ACTIONS(16827), 1, + anon_sym_orelse, + ACTIONS(16880), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16643), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [740483] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [740517] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12698), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12696), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [740551] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [740587] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12772), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12770), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [740621] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [740657] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12776), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12774), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [740691] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [740725] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [740759] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [740793] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [740827] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12786), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12784), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [740861] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12798), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12796), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [740895] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12844), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12842), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [740929] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12972), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12970), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [740963] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [740997] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13344), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13342), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741031] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [741065] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [741099] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13030), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13028), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741133] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13262), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13260), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741167] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13266), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13264), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741201] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13270), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13268), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741235] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13274), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13272), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741269] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13286), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13284), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741303] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13290), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13288), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741337] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13340), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13338), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741371] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13022), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(13020), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741405] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12694), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12692), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741439] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12702), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12700), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741473] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [741507] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12706), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12704), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741541] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12710), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12708), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741575] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [741609] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [741643] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [741677] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12714), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12712), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741711] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12718), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12716), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741745] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12722), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12720), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741779] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12726), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12724), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741813] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12790), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12788), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [741847] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [741881] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [741915] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [741949] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [741983] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12794), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12792), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [742017] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [742051] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12940), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12938), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [742085] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [742119] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [742153] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [742187] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [742221] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [742257] = 7, + ACTIONS(16691), 1, + anon_sym_handle, + ACTIONS(16781), 1, + anon_sym_COLON, + ACTIONS(16783), 1, + anon_sym_andalso, + ACTIONS(16785), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 3, + anon_sym_and, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16639), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [742299] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [742333] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [742367] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [742401] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 24, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [742435] = 5, + ACTIONS(16886), 1, + anon_sym_and, + STATE(10035), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16884), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16882), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [742473] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [742507] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [742541] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [742575] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [742609] = 5, + ACTIONS(16893), 1, + anon_sym_and, + STATE(10042), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16891), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16889), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [742647] = 5, + ACTIONS(16900), 1, + anon_sym_and, + STATE(10043), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16898), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16896), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [742685] = 5, + ACTIONS(16900), 1, + anon_sym_and, + STATE(10035), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16898), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16896), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [742723] = 5, + ACTIONS(16907), 1, + anon_sym_and, + STATE(10035), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16905), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16903), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [742761] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [742795] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12944), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_BSLASH_BSLASH, + ACTIONS(12942), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [742829] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [742863] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [742897] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [742930] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [742963] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [742996] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [743029] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743062] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743095] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743128] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743161] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743194] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743227] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743260] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743293] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [743328] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [743361] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743394] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743427] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [743460] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743493] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743526] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743559] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743625] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743658] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743691] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743724] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743757] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [743790] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743823] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743856] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743889] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743922] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743955] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [743988] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [744021] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744054] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744087] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744120] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [744153] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [744186] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [744219] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [744254] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744287] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744320] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [744353] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744386] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744419] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744452] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744485] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744518] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744551] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744584] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [744617] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [744650] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744683] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744716] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744749] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744782] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744815] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744848] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744881] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744914] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744947] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [744980] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745013] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [745046] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [745079] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [745114] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745147] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745213] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745246] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745279] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745312] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745345] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [745378] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [745411] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745444] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745477] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745510] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745543] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745576] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745609] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745642] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745675] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745708] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [745743] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [745776] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745809] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745842] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745875] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745908] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745941] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [745974] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746007] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746040] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746073] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746139] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [746172] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746205] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746238] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746271] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746304] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746337] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746370] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [746403] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746436] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746469] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746502] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [746535] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [746568] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [746601] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746634] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746667] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746700] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746733] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746766] = 7, + ACTIONS(16865), 1, + anon_sym_handle, + ACTIONS(16910), 1, + anon_sym_COLON, + ACTIONS(16912), 1, + anon_sym_andalso, + ACTIONS(16914), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16620), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [746807] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [746840] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [746873] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [746906] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [746939] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [746972] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [747005] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747038] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747071] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747104] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747137] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747170] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [747203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747236] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747269] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [747304] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747337] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [747370] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [747405] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(981), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(965), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [747438] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [747471] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [747504] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747537] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747570] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747603] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747636] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747669] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747702] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747735] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747768] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747801] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [747834] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747867] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747900] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [747933] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747966] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [747999] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [748032] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748065] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748098] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748131] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748164] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [748197] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748230] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14779), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14777), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [748263] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748296] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748329] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748362] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748395] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748428] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748461] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748494] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748527] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [748560] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [748593] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748626] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748659] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748692] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748725] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748758] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748791] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [748824] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748857] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [748890] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748923] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748956] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [748989] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749022] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749055] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749088] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749121] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749154] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749187] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749220] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749253] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749286] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749319] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749352] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749385] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749418] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749517] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749550] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749583] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749616] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749649] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749682] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749715] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [749748] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749781] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749814] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749847] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749880] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749913] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749946] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [749979] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750012] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750045] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750078] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750111] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750144] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750177] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750210] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [750243] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750276] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750309] = 6, + ACTIONS(16918), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(16920), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10625), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16916), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(16922), 17, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [750348] = 6, + ACTIONS(16918), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(16920), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10625), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16924), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(16926), 17, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [750387] = 6, + ACTIONS(16918), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(16920), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10625), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16928), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(16930), 17, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [750426] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750459] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750492] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750525] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750558] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750591] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750624] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [750657] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [750690] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [750723] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750756] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750789] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750822] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13026), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13024), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [750855] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [750888] = 7, + ACTIONS(16865), 1, + anon_sym_handle, + ACTIONS(16910), 1, + anon_sym_COLON, + ACTIONS(16912), 1, + anon_sym_andalso, + ACTIONS(16914), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16628), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [750929] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [750962] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [750995] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12416), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [751028] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [751061] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [751094] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [751127] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [751160] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [751193] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [751226] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [751259] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [751292] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [751325] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [751358] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [751391] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [751426] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [751459] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(12416), 21, + ts_builtin_sym_end, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [751494] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [751527] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [751560] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [751593] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [751626] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [751661] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [751694] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [751727] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [751760] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [751793] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [751828] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [751861] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [751894] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [751927] = 4, + ACTIONS(16932), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16505), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [751962] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [751995] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [752030] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752063] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [752096] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [752129] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752162] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752195] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [752228] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [752263] = 5, + ACTIONS(16934), 1, + anon_sym_STAR, + STATE(10367), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [752300] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [752333] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [752366] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752401] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14783), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14781), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [752434] = 5, + ACTIONS(16936), 1, + anon_sym_STAR, + STATE(10335), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(14005), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [752471] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [752504] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [752537] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [752572] = 5, + ACTIONS(16939), 1, + anon_sym_STAR, + STATE(10402), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [752609] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752642] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14787), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14785), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [752675] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752708] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752741] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752776] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752809] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752842] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752877] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752910] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752943] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [752976] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [753009] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [753042] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [753075] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [753108] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [753141] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [753176] = 5, + ACTIONS(16941), 1, + anon_sym_STAR, + STATE(10445), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [753213] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [753246] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [753279] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [753312] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [753345] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [753378] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [753411] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [753446] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [753479] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [753512] = 5, + ACTIONS(16934), 1, + anon_sym_STAR, + STATE(10368), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [753549] = 5, + ACTIONS(16943), 1, + anon_sym_STAR, + STATE(10368), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [753586] = 5, + ACTIONS(16946), 1, + anon_sym_STAR, + STATE(10458), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [753623] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [753656] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [753689] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [753722] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [753755] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [753788] = 5, + ACTIONS(16948), 1, + anon_sym_STAR, + STATE(10462), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [753825] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [753858] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [753893] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [753926] = 5, + ACTIONS(16950), 1, + anon_sym_STAR, + STATE(10467), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15932), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [753963] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [753996] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754029] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754062] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754095] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754128] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754161] = 4, + ACTIONS(16952), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [754196] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754229] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754262] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754295] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [754328] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [754361] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [754396] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754429] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754462] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [754495] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754528] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754561] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(16954), 1, + anon_sym_STAR, + STATE(10482), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 21, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [754598] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754631] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754664] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754697] = 5, + ACTIONS(16939), 1, + anon_sym_STAR, + STATE(10403), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [754734] = 5, + ACTIONS(16956), 1, + anon_sym_STAR, + STATE(10403), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [754771] = 4, + ACTIONS(16959), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 21, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [754806] = 5, + ACTIONS(16961), 1, + anon_sym_STAR, + STATE(10820), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15932), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [754843] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [754876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754909] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14791), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14789), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [754942] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [754975] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755008] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755041] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755074] = 5, + ACTIONS(16963), 1, + anon_sym_STAR, + STATE(10494), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [755111] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755144] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14793), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [755177] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [755210] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [755243] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [755276] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [755309] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [755344] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [755377] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755410] = 5, + ACTIONS(16965), 1, + anon_sym_STAR, + STATE(10515), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [755447] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755480] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755513] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755546] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755579] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755612] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755645] = 5, + ACTIONS(16967), 1, + anon_sym_STAR, + STATE(10522), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [755682] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(16969), 1, + anon_sym_STAR, + STATE(10541), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [755719] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755752] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755785] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [755818] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755851] = 4, + ACTIONS(16971), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [755886] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [755921] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755954] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [755987] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [756020] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [756053] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [756086] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756119] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [756152] = 5, + ACTIONS(16941), 1, + anon_sym_STAR, + STATE(10446), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [756189] = 5, + ACTIONS(16973), 1, + anon_sym_STAR, + STATE(10446), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [756226] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756259] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756292] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756325] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756358] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756391] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756424] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756457] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756490] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756523] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756556] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756589] = 5, + ACTIONS(16946), 1, + anon_sym_STAR, + STATE(10459), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [756626] = 5, + ACTIONS(16976), 1, + anon_sym_STAR, + STATE(10459), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [756663] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756696] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [756729] = 5, + ACTIONS(16948), 1, + anon_sym_STAR, + STATE(10463), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [756766] = 5, + ACTIONS(16979), 1, + anon_sym_STAR, + STATE(10463), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [756803] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [756836] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [756869] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [756902] = 5, + ACTIONS(16950), 1, + anon_sym_STAR, + STATE(10468), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15958), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [756939] = 5, + ACTIONS(16982), 1, + anon_sym_STAR, + STATE(10468), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [756976] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [757009] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757042] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [757075] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757108] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757141] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757176] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [757209] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757242] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757275] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [757308] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757343] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757376] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757409] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(16954), 1, + anon_sym_STAR, + STATE(10483), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 21, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [757446] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(16985), 1, + anon_sym_STAR, + STATE(10483), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 21, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [757483] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757516] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757549] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757582] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757615] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757648] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757681] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [757714] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757747] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [757780] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [757813] = 5, + ACTIONS(16963), 1, + anon_sym_STAR, + STATE(10495), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [757850] = 5, + ACTIONS(16988), 1, + anon_sym_STAR, + STATE(10495), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [757887] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [757920] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [757953] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [757986] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [758019] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [758052] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [758085] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [758118] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [758151] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [758186] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [758219] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [758252] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [758285] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [758318] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [758351] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [758386] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [758419] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [758452] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [758485] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [758518] = 5, + ACTIONS(16965), 1, + anon_sym_STAR, + STATE(10516), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [758555] = 5, + ACTIONS(16991), 1, + anon_sym_STAR, + STATE(10516), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [758592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [758625] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [758658] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [758691] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [758724] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [758757] = 5, + ACTIONS(16967), 1, + anon_sym_STAR, + STATE(10523), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [758794] = 5, + ACTIONS(16994), 1, + anon_sym_STAR, + STATE(10523), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [758831] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [758864] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [758897] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [758930] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [758963] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [758996] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [759029] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [759062] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [759097] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [759132] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [759165] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [759198] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [759231] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [759264] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [759299] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [759332] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [759365] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [759398] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(16969), 1, + anon_sym_STAR, + STATE(10542), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [759435] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(16997), 1, + anon_sym_STAR, + STATE(10542), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [759472] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [759505] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [759538] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [759571] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [759604] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [759637] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [759670] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [759703] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [759736] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [759769] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [759802] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [759835] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [759868] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [759901] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [759934] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [759967] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760000] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760033] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760066] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760099] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760132] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760165] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760198] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760231] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760297] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760330] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [760363] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760396] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760429] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [760462] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760495] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760528] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [760561] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760594] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760627] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760660] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760693] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760726] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [760759] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [760792] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [760825] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 20, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [760860] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760893] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760926] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760959] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [760992] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [761025] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [761058] = 7, + ACTIONS(16865), 1, + anon_sym_handle, + ACTIONS(16910), 1, + anon_sym_COLON, + ACTIONS(16912), 1, + anon_sym_andalso, + ACTIONS(16914), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17002), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17000), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [761099] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [761132] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [761165] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [761198] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [761231] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [761264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [761297] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [761330] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [761363] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [761396] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [761429] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [761462] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [761495] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [761528] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [761561] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [761594] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [761627] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [761660] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [761693] = 4, + ACTIONS(17006), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17008), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17004), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [761728] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [761761] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [761794] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [761827] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [761860] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [761893] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [761926] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [761959] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [761992] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [762025] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762058] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [762091] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [762124] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [762157] = 6, + ACTIONS(16918), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(16920), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10625), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17010), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(17012), 17, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [762196] = 6, + ACTIONS(17016), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17019), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10625), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17014), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(17022), 17, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [762235] = 4, + ACTIONS(17024), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16526), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [762270] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [762303] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [762336] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [762369] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [762402] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762435] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [762468] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762501] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [762534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762567] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762600] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762633] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762666] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762699] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762732] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762765] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762798] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [762831] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762864] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762897] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762930] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762963] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [762996] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [763029] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [763062] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [763095] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [763128] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [763163] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [763196] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [763229] = 6, + ACTIONS(16918), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(16920), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10625), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17026), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(17028), 17, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [763268] = 15, + ACTIONS(17030), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17032), 1, + anon_sym_RPAREN, + ACTIONS(17034), 1, + anon_sym_SEMI, + ACTIONS(17036), 1, + anon_sym_val, + ACTIONS(17038), 1, + anon_sym_type, + ACTIONS(17040), 1, + anon_sym_datatype, + ACTIONS(17042), 1, + anon_sym_exception, + ACTIONS(17044), 1, + anon_sym_structure, + ACTIONS(17046), 1, + anon_sym_eqtype, + ACTIONS(17048), 1, + anon_sym_include, + ACTIONS(17050), 1, + anon_sym_sharing, + STATE(24960), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12105), 2, + sym__spec, + aux_sym_fctbind_repeat1, + STATE(15139), 10, + sym_val_spec, + sym_type_spec, + sym_eqtype_spec, + sym_datatype_spec, + sym_datarepl_spec, + sym_exception_spec, + sym_structure_spec, + sym_include_spec, + sym_sharingtype_spec, + sym_sharing_spec, + [763325] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [763358] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [763391] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [763424] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [763457] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [763490] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [763525] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [763558] = 5, + ACTIONS(17054), 1, + anon_sym_PIPE, + STATE(10776), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17056), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17052), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [763595] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [763628] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [763661] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [763694] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [763727] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [763760] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [763793] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 20, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [763828] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [763861] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17060), 3, + anon_sym_fun, + anon_sym_with, + anon_sym_infix, + ACTIONS(17058), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [763894] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [763927] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [763960] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [763993] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [764026] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [764059] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [764092] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [764125] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [764158] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [764193] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [764226] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [764259] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [764292] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [764325] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [764358] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [764391] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [764424] = 5, + ACTIONS(17054), 1, + anon_sym_PIPE, + STATE(10788), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17064), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17062), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [764461] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [764494] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [764529] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [764562] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [764595] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [764628] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [764661] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [764694] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [764727] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [764762] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [764795] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [764828] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [764861] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [764894] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [764927] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17068), 3, + anon_sym_fun, + anon_sym_with, + anon_sym_infix, + ACTIONS(17066), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [764960] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [764993] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [765026] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [765061] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [765094] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [765127] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [765162] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [765195] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [765228] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [765261] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [765294] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [765327] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [765362] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [765395] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [765428] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [765461] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [765494] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [765527] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [765560] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [765593] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [765626] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [765659] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [765692] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [765725] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [765758] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [765791] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [765824] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [765857] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [765890] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [765923] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [765956] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [765989] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [766022] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [766055] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [766088] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [766121] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [766154] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17072), 3, + anon_sym_fun, + anon_sym_with, + anon_sym_infix, + ACTIONS(17070), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [766187] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [766220] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [766253] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [766286] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [766319] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [766352] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [766385] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [766418] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [766451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [766484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [766517] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [766550] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [766583] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [766616] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [766649] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [766682] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [766715] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [766750] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [766783] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [766816] = 4, + ACTIONS(17076), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17078), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17074), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [766851] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [766884] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [766917] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [766950] = 5, + ACTIONS(17054), 1, + anon_sym_PIPE, + STATE(10665), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17082), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17080), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [766987] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [767020] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [767053] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [767086] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [767119] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [767152] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [767185] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [767218] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [767251] = 5, + ACTIONS(17084), 1, + anon_sym_PIPE, + STATE(10776), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17068), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17066), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [767288] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [767321] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [767354] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [767387] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [767420] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [767453] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [767486] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [767519] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [767552] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [767585] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [767618] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [767651] = 5, + ACTIONS(17054), 1, + anon_sym_PIPE, + STATE(10776), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17082), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17080), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [767688] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [767721] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [767754] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [767787] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [767820] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [767853] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [767886] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [767921] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [767954] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [767987] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [768022] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [768057] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [768090] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [768123] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [768156] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [768189] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [768222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [768255] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [768288] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [768321] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [768354] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [768387] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [768420] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [768453] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [768486] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [768519] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [768552] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 20, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [768587] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [768620] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [768653] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [768686] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [768719] = 5, + ACTIONS(16961), 1, + anon_sym_STAR, + STATE(10335), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(15958), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [768756] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [768789] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 21, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [768824] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [768857] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [768890] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 20, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [768925] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [768958] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [768991] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [769024] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [769057] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13066), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13064), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [769090] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [769123] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [769156] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [769189] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [769222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [769255] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [769288] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [769321] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [769354] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [769387] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [769420] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [769453] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [769486] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [769519] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [769552] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [769585] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [769618] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [769651] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [769684] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [769717] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [769750] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [769783] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [769816] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [769849] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [769882] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [769915] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [769948] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [769981] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [770014] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [770047] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [770080] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 20, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [770115] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [770148] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [770181] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [770214] = 4, + ACTIONS(17091), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17089), 3, + anon_sym_COLON, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17087), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [770249] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [770282] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [770315] = 7, + ACTIONS(16865), 1, + anon_sym_handle, + ACTIONS(16910), 1, + anon_sym_COLON, + ACTIONS(16912), 1, + anon_sym_andalso, + ACTIONS(16914), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16639), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [770356] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [770389] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [770422] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [770455] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [770488] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [770521] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [770554] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [770587] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [770620] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [770653] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [770686] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 20, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [770721] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [770754] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [770787] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [770820] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [770853] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [770886] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [770919] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [770952] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [770985] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [771051] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [771084] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771117] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771150] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13042), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13040), 13, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [771183] = 4, + ACTIONS(16910), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16659), 21, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [771218] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771251] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [771284] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771317] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771350] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [771383] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [771416] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771449] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [771482] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771515] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771548] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771581] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [771614] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771647] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771680] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771713] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [771746] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771779] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [771812] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771845] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [771878] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771911] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [771944] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [771977] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [772010] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [772043] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [772076] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [772109] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [772142] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [772175] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [772208] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [772243] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [772276] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [772309] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [772342] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [772375] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [772408] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [772441] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [772474] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [772507] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [772540] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [772575] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [772608] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [772641] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [772674] = 5, + ACTIONS(16910), 1, + anon_sym_COLON, + ACTIONS(16912), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16612), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [772711] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [772744] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [772777] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [772810] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [772843] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [772876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [772909] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [772942] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [772975] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [773008] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [773041] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [773074] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [773107] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + [773140] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + [773173] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [773206] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [773239] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [773272] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [773305] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [773338] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [773371] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [773404] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [773437] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [773470] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [773503] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [773536] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [773569] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [773602] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [773635] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [773668] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [773701] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [773734] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [773767] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [773800] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [773835] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [773868] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 23, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [773901] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [773934] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [773967] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774000] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774033] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774066] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774099] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774132] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774165] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774198] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774231] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774297] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774330] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774363] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774396] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774429] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774462] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774495] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774528] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774561] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774594] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774627] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774660] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774693] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774726] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774759] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774792] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774825] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774858] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774891] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774924] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774957] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [774990] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [775023] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [775056] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [775089] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 21, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [775124] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775157] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775190] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775223] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775256] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [775289] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [775322] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775355] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775388] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775421] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 14, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775454] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [775486] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(17093), 1, + anon_sym_STAR, + STATE(11024), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [775522] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [775554] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775586] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [775618] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [775650] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775682] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775714] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(17096), 1, + anon_sym_STAR, + STATE(11032), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [775750] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(17098), 1, + anon_sym_STAR, + STATE(11032), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [775786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775818] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775850] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [775882] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [775914] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [775946] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [775978] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [776010] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [776042] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [776074] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [776106] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [776138] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [776170] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [776202] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [776234] = 5, + ACTIONS(17101), 1, + anon_sym_STAR, + STATE(11294), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [776270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [776302] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [776336] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [776368] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [776400] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [776432] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12702), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12700), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [776464] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [776496] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13066), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(13064), 21, + ts_builtin_sym_end, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [776528] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [776560] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [776592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [776624] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(17103), 1, + anon_sym_STAR, + STATE(11060), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [776660] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(17105), 1, + anon_sym_STAR, + STATE(11060), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [776696] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [776728] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [776760] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [776792] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [776824] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [776856] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [776888] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [776920] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [776952] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [776984] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777016] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777048] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [777080] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777112] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12952), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12950), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [777144] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777176] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777208] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777240] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777272] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777304] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777336] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [777368] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [777400] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [777432] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [777464] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777496] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [777528] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777560] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [777624] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [777656] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [777688] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [777752] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777784] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777816] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [777848] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [777880] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [777912] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [777944] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [777978] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [778010] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [778042] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [778074] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [778106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778138] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778170] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778202] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778234] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [778266] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [778298] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778330] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [778362] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [778394] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778426] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778458] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778490] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778522] = 4, + ACTIONS(17108), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16526), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [778556] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [778588] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778620] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778652] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778684] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778716] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [778748] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778780] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [778812] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [778844] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [778878] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [778910] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [778942] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [778974] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [779008] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [779040] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [779072] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [779104] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [779136] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [779168] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [779200] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [779232] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [779264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [779296] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [779330] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [779362] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [779394] = 5, + ACTIONS(17110), 1, + anon_sym_STAR, + STATE(11392), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [779430] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [779462] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [779494] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [779526] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [779558] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [779590] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [779622] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [779654] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [779686] = 5, + ACTIONS(17114), 1, + anon_sym_EQ, + ACTIONS(17116), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17118), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17112), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [779722] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [779754] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [779786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [779818] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [779850] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [779882] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [779914] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [779946] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [779978] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [780010] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [780042] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [780074] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [780106] = 5, + ACTIONS(17120), 1, + anon_sym_STAR, + STATE(11410), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [780142] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [780174] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [780206] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [780238] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [780270] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [780304] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [780336] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13294), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13292), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [780368] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12964), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12962), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [780400] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [780432] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [780464] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14419), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(14417), 20, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [780496] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [780528] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [780560] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [780592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [780624] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [780656] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [780688] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [780720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [780752] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [780784] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12698), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12696), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [780816] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [780848] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [780882] = 5, + ACTIONS(17124), 1, + anon_sym_PIPE, + STATE(11191), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17127), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17122), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [780918] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [780950] = 5, + ACTIONS(17129), 1, + anon_sym_STAR, + STATE(11425), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15932), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [780986] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12772), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12770), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [781018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12776), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12774), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [781050] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [781082] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [781114] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [781146] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [781178] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [781210] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [781242] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [781276] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [781308] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [781340] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [781372] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [781404] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [781436] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [781468] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [781500] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [781532] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [781564] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12786), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12784), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [781596] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [781628] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [781660] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [781692] = 5, + ACTIONS(17131), 1, + anon_sym_STAR, + STATE(11444), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15932), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [781728] = 5, + ACTIONS(17135), 1, + anon_sym_PIPE, + STATE(11786), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17137), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17133), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [781764] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [781796] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [781828] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [781860] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [781892] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [781924] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12706), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12704), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [781956] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12710), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12708), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [781988] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [782020] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [782052] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [782086] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [782118] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12714), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12712), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [782150] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [782182] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [782214] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [782246] = 4, + ACTIONS(17139), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [782280] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12790), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12788), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [782312] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12718), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12716), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [782344] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [782376] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [782408] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13086), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13084), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [782440] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [782472] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [782504] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [782536] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [782568] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [782600] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12722), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12720), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [782632] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12726), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12724), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [782664] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [782696] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [782728] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [782760] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 19, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [782794] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [782826] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [782858] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [782890] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [782922] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [782954] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [782986] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [783018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [783050] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [783082] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12794), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12792), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [783114] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [783146] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [783178] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12798), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12796), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [783210] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12844), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12842), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [783242] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [783274] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [783306] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [783338] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [783370] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [783402] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(17141), 1, + anon_sym_STAR, + STATE(11527), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [783438] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [783470] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [783502] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [783536] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [783568] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [783600] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [783634] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [783666] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [783698] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [783730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [783762] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [783794] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [783826] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [783858] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [783890] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [783922] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12972), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12970), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [783954] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [783986] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [784018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [784050] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [784082] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [784114] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [784146] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [784178] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [784210] = 5, + ACTIONS(17101), 1, + anon_sym_STAR, + STATE(11295), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [784246] = 5, + ACTIONS(17143), 1, + anon_sym_STAR, + STATE(11295), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [784282] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(17146), 1, + anon_sym_STAR, + STATE(11540), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [784318] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [784350] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [784382] = 4, + ACTIONS(17148), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16505), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [784416] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12940), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12938), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [784448] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [784480] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [784512] = 5, + ACTIONS(17135), 1, + anon_sym_PIPE, + STATE(11191), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17152), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17150), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [784548] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [784580] = 5, + ACTIONS(17156), 1, + anon_sym_COLON, + ACTIONS(17160), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17158), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17154), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [784616] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [784648] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [784680] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [784714] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [784746] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [784778] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [784810] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [784842] = 4, + ACTIONS(17162), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [784876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [784908] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [784940] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [784972] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [785004] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [785036] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [785068] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 19, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [785102] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [785134] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [785166] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [785200] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [785232] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [785264] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [785298] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [785330] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [785362] = 5, + ACTIONS(17166), 1, + anon_sym_EQ, + ACTIONS(17168), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17170), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17164), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [785398] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [785432] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [785464] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [785496] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [785528] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [785560] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [785592] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [785624] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [785656] = 5, + ACTIONS(17172), 1, + anon_sym_and, + STATE(11341), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16891), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16889), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [785692] = 5, + ACTIONS(17175), 1, + anon_sym_and, + STATE(11342), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16898), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16896), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [785728] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [785760] = 5, + ACTIONS(17175), 1, + anon_sym_and, + STATE(11790), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16898), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16896), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [785796] = 5, + ACTIONS(17178), 1, + anon_sym_and, + STATE(11790), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16905), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16903), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [785832] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [785864] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [785898] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17183), 3, + anon_sym_fun, + anon_sym_with, + anon_sym_infix, + ACTIONS(17181), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [785930] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [785962] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [785994] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [786026] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [786058] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [786090] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17187), 3, + anon_sym_fun, + anon_sym_with, + anon_sym_infix, + ACTIONS(17185), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [786122] = 5, + ACTIONS(17189), 1, + anon_sym_and, + STATE(11352), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17187), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17185), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [786158] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12948), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12946), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [786190] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [786222] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [786256] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [786288] = 5, + ACTIONS(17192), 1, + anon_sym_STAR, + STATE(11633), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [786324] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [786356] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13034), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13032), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [786388] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [786420] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [786452] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [786484] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [786516] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [786548] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [786580] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13344), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13342), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [786612] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [786644] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [786676] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [786708] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [786740] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [786772] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [786804] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [786836] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [786868] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [786900] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [786932] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [786964] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [786996] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [787028] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [787060] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [787092] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [787124] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [787156] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [787188] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [787220] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [787252] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [787284] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [787316] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13078), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13076), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [787348] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [787380] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [787412] = 5, + ACTIONS(17110), 1, + anon_sym_STAR, + STATE(11394), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [787448] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [787480] = 5, + ACTIONS(17194), 1, + anon_sym_STAR, + STATE(11394), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [787516] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [787548] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [787580] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [787612] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [787644] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [787676] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [787708] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [787740] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [787772] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [787804] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [787836] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [787868] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [787900] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [787932] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [787964] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [787996] = 5, + ACTIONS(17120), 1, + anon_sym_STAR, + STATE(11411), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [788032] = 5, + ACTIONS(17197), 1, + anon_sym_STAR, + STATE(11411), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [788068] = 5, + ACTIONS(17200), 1, + anon_sym_STAR, + STATE(11672), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [788104] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [788136] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [788170] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [788202] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [788234] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [788266] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [788298] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [788330] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [788362] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [788394] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [788426] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [788458] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [788490] = 5, + ACTIONS(17129), 1, + anon_sym_STAR, + STATE(11426), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15958), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [788526] = 5, + ACTIONS(17202), 1, + anon_sym_STAR, + STATE(11426), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [788562] = 4, + ACTIONS(17205), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [788596] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [788628] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [788660] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [788692] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [788724] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [788756] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [788788] = 5, + ACTIONS(17156), 1, + anon_sym_COLON, + ACTIONS(17160), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17209), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17207), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [788824] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13026), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(13024), 21, + ts_builtin_sym_end, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [788856] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [788888] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [788920] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [788952] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [788986] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [789018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [789050] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [789082] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [789114] = 5, + ACTIONS(17131), 1, + anon_sym_STAR, + STATE(11445), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15958), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [789150] = 5, + ACTIONS(17211), 1, + anon_sym_STAR, + STATE(11445), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [789186] = 5, + ACTIONS(17214), 1, + anon_sym_STAR, + STATE(11749), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15932), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [789222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [789254] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [789286] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [789318] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [789350] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [789382] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [789414] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [789446] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [789478] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [789510] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [789542] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [789574] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [789606] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [789638] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [789670] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [789704] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [789736] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [789768] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [789800] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13018), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13016), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [789832] = 4, + ACTIONS(17216), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [789866] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17220), 3, + anon_sym_fun, + anon_sym_with, + anon_sym_infix, + ACTIONS(17218), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [789898] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [789930] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [789962] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [789994] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [790026] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [790058] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [790090] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [790122] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [790154] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [790188] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [790220] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13038), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13036), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [790252] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [790284] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12944), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12942), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [790316] = 4, + ACTIONS(17222), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [790350] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [790382] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [790414] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [790446] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [790478] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [790510] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [790544] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [790576] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [790608] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [790640] = 4, + ACTIONS(17224), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16505), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [790674] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12894), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12892), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [790706] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [790738] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [790770] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [790802] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [790834] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12956), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12954), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [790866] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [790898] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [790930] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12960), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12958), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [790962] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [790996] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13070), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13068), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [791028] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [791060] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [791092] = 4, + ACTIONS(17226), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [791126] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13046), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13044), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [791158] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [791190] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [791222] = 5, + ACTIONS(17156), 1, + anon_sym_COLON, + ACTIONS(17160), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17230), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17228), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [791258] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [791290] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [791322] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [791354] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [791386] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [791418] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [791452] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [791484] = 5, + ACTIONS(17232), 1, + anon_sym_STAR, + STATE(11807), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [791520] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [791552] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(17234), 1, + anon_sym_STAR, + STATE(11024), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [791588] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [791622] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [791654] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13082), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13080), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [791686] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [791718] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [791750] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [791782] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [791814] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(17141), 1, + anon_sym_STAR, + STATE(11528), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [791850] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(17236), 1, + anon_sym_STAR, + STATE(11528), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [791886] = 5, + ACTIONS(17239), 1, + anon_sym_STAR, + STATE(11863), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [791922] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [791954] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [791986] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [792018] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [792050] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [792082] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [792114] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [792146] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [792178] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [792210] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [792242] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(17146), 1, + anon_sym_STAR, + STATE(11541), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [792278] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(17241), 1, + anon_sym_STAR, + STATE(11541), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [792314] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [792346] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(17244), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 21, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [792380] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13050), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13048), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [792412] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13054), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13052), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [792444] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [792476] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [792508] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [792540] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [792572] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [792604] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [792636] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [792668] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [792700] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [792732] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [792764] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [792796] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [792828] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [792860] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13058), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13056), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [792892] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [792924] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [792956] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [792988] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [793020] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [793052] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [793084] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13062), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13060), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [793116] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [793148] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [793180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [793212] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [793244] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [793276] = 4, + ACTIONS(17246), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [793310] = 5, + ACTIONS(17156), 1, + anon_sym_COLON, + ACTIONS(17160), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17250), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17248), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [793346] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [793378] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [793410] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [793442] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [793474] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [793506] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [793538] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13282), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13280), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [793570] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [793602] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [793634] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [793666] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [793698] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [793730] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [793762] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [793794] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [793826] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [793858] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13278), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13276), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [793890] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [793922] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [793954] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [793986] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(17234), 1, + anon_sym_STAR, + STATE(11519), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [794022] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [794054] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [794086] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [794118] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [794150] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [794182] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [794214] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [794246] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [794278] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [794310] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [794342] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [794374] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(17096), 1, + anon_sym_STAR, + STATE(11031), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [794410] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + [794442] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [794474] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [794506] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [794538] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [794570] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [794602] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [794634] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [794666] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [794698] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [794730] = 4, + ACTIONS(17252), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [794764] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [794796] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [794828] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [794860] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [794892] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [794924] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [794956] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [794988] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [795020] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [795052] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [795084] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [795116] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [795148] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [795180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [795212] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [795244] = 5, + ACTIONS(17192), 1, + anon_sym_STAR, + STATE(11634), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [795280] = 5, + ACTIONS(17254), 1, + anon_sym_STAR, + STATE(11634), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [795316] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(17103), 1, + anon_sym_STAR, + STATE(11059), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [795352] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [795384] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [795416] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [795448] = 5, + ACTIONS(17156), 1, + anon_sym_COLON, + ACTIONS(17160), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17259), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17257), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [795484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [795516] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [795548] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [795580] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [795612] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [795644] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [795676] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [795708] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13074), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13072), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [795740] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [795772] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [795804] = 4, + ACTIONS(17261), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [795838] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [795870] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [795902] = 5, + ACTIONS(17156), 1, + anon_sym_COLON, + ACTIONS(17160), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17265), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17263), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [795938] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [795970] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [796002] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [796034] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [796066] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [796098] = 5, + ACTIONS(17269), 1, + anon_sym_and, + STATE(11823), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17271), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17267), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [796134] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13132), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13130), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [796166] = 4, + ACTIONS(17273), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [796200] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [796232] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [796264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [796296] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [796328] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [796360] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [796392] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12890), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12888), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [796424] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [796456] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [796488] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [796520] = 5, + ACTIONS(17200), 1, + anon_sym_STAR, + STATE(11673), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [796556] = 5, + ACTIONS(17275), 1, + anon_sym_STAR, + STATE(11673), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [796592] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(17278), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 21, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [796626] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [796658] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [796690] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [796722] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [796754] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [796786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [796818] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [796850] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [796882] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [796914] = 4, + ACTIONS(17280), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [796948] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [796980] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [797012] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [797044] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [797076] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [797108] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [797140] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [797172] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [797204] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [797236] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [797268] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [797300] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [797332] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [797364] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [797396] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [797428] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [797460] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [797492] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [797524] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [797556] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [797588] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [797620] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [797652] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [797684] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [797716] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [797748] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [797780] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [797812] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [797844] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [797876] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [797908] = 5, + ACTIONS(17156), 1, + anon_sym_COLON, + ACTIONS(17160), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17284), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17282), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [797944] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [797976] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [798008] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [798040] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14567), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(14565), 20, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [798072] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [798104] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [798136] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [798168] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [798200] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [798232] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [798264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [798296] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [798328] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [798360] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [798392] = 5, + ACTIONS(17156), 1, + anon_sym_COLON, + ACTIONS(17160), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17288), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17286), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [798428] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [798460] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [798492] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [798524] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [798556] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [798588] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [798620] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [798652] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [798684] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [798716] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [798748] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [798780] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [798812] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [798844] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [798876] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [798908] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [798940] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [798972] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [799004] = 5, + ACTIONS(17214), 1, + anon_sym_STAR, + STATE(11753), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15958), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [799040] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 20, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [799074] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [799106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [799138] = 5, + ACTIONS(17290), 1, + anon_sym_STAR, + STATE(11753), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [799174] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 19, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [799208] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [799240] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [799272] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [799304] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [799336] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [799368] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [799400] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [799432] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [799464] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [799496] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [799528] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [799560] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [799592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [799624] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [799656] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [799688] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [799720] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [799752] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [799784] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [799816] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [799848] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [799880] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [799912] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [799944] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_BQUOTE, + [799976] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [800008] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [800040] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [800072] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [800104] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [800136] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 19, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [800170] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [800202] = 5, + ACTIONS(17135), 1, + anon_sym_PIPE, + STATE(11191), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17295), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17293), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [800238] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [800270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [800302] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [800334] = 5, + ACTIONS(17297), 1, + anon_sym_and, + STATE(11790), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16884), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16882), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_where, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [800370] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [800402] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [800434] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [800466] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [800498] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13030), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13028), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [800530] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [800562] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [800594] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [800626] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [800658] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_BQUOTE, + [800690] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [800722] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [800754] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_BQUOTE, + [800786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [800818] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [800850] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13262), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13260), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [800882] = 5, + ACTIONS(17232), 1, + anon_sym_STAR, + STATE(11808), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [800918] = 5, + ACTIONS(17300), 1, + anon_sym_STAR, + STATE(11808), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [800954] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13266), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13264), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [800986] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [801018] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12968), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12966), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [801050] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13270), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13268), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [801082] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [801114] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [801146] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13274), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13272), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [801178] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [801210] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [801242] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [801274] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13286), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13284), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [801306] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [801338] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [801370] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [801402] = 5, + ACTIONS(17269), 1, + anon_sym_and, + STATE(11352), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17305), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17303), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [801438] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [801470] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [801502] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [801534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [801566] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [801600] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [801632] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [801664] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [801696] = 5, + ACTIONS(17135), 1, + anon_sym_PIPE, + STATE(11303), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17295), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17293), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [801732] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13290), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13288), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [801764] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13340), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13338), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [801796] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [801828] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [801860] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [801892] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [801924] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [801956] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [801988] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [802020] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [802052] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [802084] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [802116] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [802148] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [802180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [802212] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [802244] = 5, + ACTIONS(17307), 1, + anon_sym_PIPE, + STATE(11851), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16590), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [802280] = 5, + ACTIONS(17307), 1, + anon_sym_PIPE, + STATE(11852), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [802316] = 5, + ACTIONS(17307), 1, + anon_sym_PIPE, + STATE(11853), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [802352] = 5, + ACTIONS(17307), 1, + anon_sym_PIPE, + STATE(11853), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16562), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [802388] = 5, + ACTIONS(17309), 1, + anon_sym_PIPE, + STATE(11853), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14793), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [802424] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [802456] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [802488] = 5, + ACTIONS(17312), 1, + anon_sym_PIPE, + STATE(11858), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16590), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [802524] = 5, + ACTIONS(17312), 1, + anon_sym_PIPE, + STATE(11859), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [802560] = 5, + ACTIONS(17312), 1, + anon_sym_PIPE, + STATE(11860), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [802596] = 5, + ACTIONS(17312), 1, + anon_sym_PIPE, + STATE(11860), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16562), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [802632] = 5, + ACTIONS(17314), 1, + anon_sym_PIPE, + STATE(11860), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14793), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [802668] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [802700] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [802732] = 5, + ACTIONS(17239), 1, + anon_sym_STAR, + STATE(11864), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [802768] = 5, + ACTIONS(17317), 1, + anon_sym_STAR, + STATE(11864), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [802804] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [802836] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [802868] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 20, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [802902] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [802934] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [802966] = 5, + ACTIONS(17320), 1, + anon_sym_PIPE, + STATE(11872), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16590), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [803002] = 5, + ACTIONS(17320), 1, + anon_sym_PIPE, + STATE(11873), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [803038] = 5, + ACTIONS(17320), 1, + anon_sym_PIPE, + STATE(11874), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [803074] = 5, + ACTIONS(17320), 1, + anon_sym_PIPE, + STATE(11874), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16562), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [803110] = 5, + ACTIONS(17322), 1, + anon_sym_PIPE, + STATE(11874), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14793), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [803146] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [803178] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13022), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(13020), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [803210] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12694), 11, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + ACTIONS(12692), 12, + ts_builtin_sym_end, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_SEMI, + anon_sym_u201c, + anon_sym_u2018, + [803242] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [803274] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [803306] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [803338] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [803370] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [803402] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [803434] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [803466] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [803498] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [803530] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [803562] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [803594] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [803626] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [803658] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [803690] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [803722] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [803754] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_BQUOTE, + [803786] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [803818] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [803850] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [803882] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [803914] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [803946] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 22, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [803978] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [804010] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_BQUOTE, + [804042] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BQUOTE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [804074] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 13, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_BQUOTE, + [804106] = 5, + ACTIONS(17325), 1, + anon_sym_PIPE, + STATE(12650), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 18, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [804141] = 5, + ACTIONS(17329), 1, + anon_sym_and, + STATE(12095), 1, + aux_sym__sigbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17331), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17327), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [804176] = 17, + ACTIONS(17333), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17335), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17337), 1, + sym__symbolic_ident, + ACTIONS(17339), 1, + anon_sym_LPAREN, + ACTIONS(17341), 1, + anon_sym_LBRACE, + STATE(16377), 1, + sym_tyvar, + STATE(16378), 1, + sym_longtycon, + STATE(16394), 1, + sym_tycon, + STATE(18050), 1, + sym_tyseq, + STATE(18689), 1, + sym__ty, + STATE(18953), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17880), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18613), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16379), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [804235] = 17, + ACTIONS(17333), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17335), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17337), 1, + sym__symbolic_ident, + ACTIONS(17339), 1, + anon_sym_LPAREN, + ACTIONS(17341), 1, + anon_sym_LBRACE, + STATE(16377), 1, + sym_tyvar, + STATE(16378), 1, + sym_longtycon, + STATE(16394), 1, + sym_tycon, + STATE(18050), 1, + sym_tyseq, + STATE(18690), 1, + sym__ty, + STATE(18953), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17880), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18613), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16379), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [804294] = 17, + ACTIONS(17343), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17345), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17347), 1, + sym__symbolic_ident, + ACTIONS(17349), 1, + anon_sym_LPAREN, + ACTIONS(17351), 1, + anon_sym_LBRACE, + STATE(11048), 1, + sym_tycon, + STATE(11729), 1, + sym_tyvar, + STATE(11747), 1, + sym_longtycon, + STATE(12713), 1, + sym__ty, + STATE(18089), 1, + sym_tyseq, + STATE(19034), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12720), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13092), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [804353] = 17, + ACTIONS(17343), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17345), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17347), 1, + sym__symbolic_ident, + ACTIONS(17349), 1, + anon_sym_LPAREN, + ACTIONS(17351), 1, + anon_sym_LBRACE, + STATE(11048), 1, + sym_tycon, + STATE(11729), 1, + sym_tyvar, + STATE(11747), 1, + sym_longtycon, + STATE(12714), 1, + sym__ty, + STATE(18089), 1, + sym_tyseq, + STATE(19034), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12720), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13092), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [804412] = 5, + ACTIONS(17355), 1, + anon_sym_and, + STATE(12107), 1, + aux_sym__fctbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17357), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17353), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [804447] = 17, + ACTIONS(17359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17361), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17363), 1, + sym__symbolic_ident, + ACTIONS(17365), 1, + anon_sym_LPAREN, + ACTIONS(17367), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(8749), 1, + sym_longtycon, + STATE(8764), 1, + sym_tyvar, + STATE(8787), 1, + sym_tycon, + STATE(18155), 1, + sym_tyseq, + STATE(19055), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(8981), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9270), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [804506] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [804537] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [804568] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 19, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [804601] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [804632] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [804663] = 17, + ACTIONS(17369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17371), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17373), 1, + sym__symbolic_ident, + ACTIONS(17375), 1, + anon_sym_LPAREN, + ACTIONS(17377), 1, + anon_sym_LBRACE, + STATE(14124), 1, + sym_longtycon, + STATE(14142), 1, + sym_tycon, + STATE(14199), 1, + sym_tyvar, + STATE(14957), 1, + sym__ty, + STATE(18325), 1, + sym_tyseq, + STATE(19236), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14361), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14562), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14123), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [804722] = 17, + ACTIONS(17369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17371), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17373), 1, + sym__symbolic_ident, + ACTIONS(17375), 1, + anon_sym_LPAREN, + ACTIONS(17377), 1, + anon_sym_LBRACE, + STATE(14124), 1, + sym_longtycon, + STATE(14142), 1, + sym_tycon, + STATE(14199), 1, + sym_tyvar, + STATE(14958), 1, + sym__ty, + STATE(18325), 1, + sym_tyseq, + STATE(19236), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14361), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14562), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14123), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [804781] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 19, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [804814] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [804845] = 17, + ACTIONS(17379), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17381), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17383), 1, + sym__symbolic_ident, + ACTIONS(17385), 1, + anon_sym_LPAREN, + ACTIONS(17387), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(11043), 1, + sym_longtycon, + STATE(11306), 1, + sym_tycon, + STATE(11785), 1, + sym_tyvar, + STATE(18573), 1, + sym_tyseq, + STATE(19241), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12926), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13213), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11049), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [804904] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [804935] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [804966] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [804997] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805028] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [805059] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [805090] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [805121] = 17, + ACTIONS(17343), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17345), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17347), 1, + sym__symbolic_ident, + ACTIONS(17349), 1, + anon_sym_LPAREN, + ACTIONS(17351), 1, + anon_sym_LBRACE, + STATE(11048), 1, + sym_tycon, + STATE(11729), 1, + sym_tyvar, + STATE(11747), 1, + sym_longtycon, + STATE(13318), 1, + sym__ty, + STATE(18089), 1, + sym_tyseq, + STATE(19034), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12720), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13092), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [805180] = 17, + ACTIONS(17343), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17345), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17347), 1, + sym__symbolic_ident, + ACTIONS(17349), 1, + anon_sym_LPAREN, + ACTIONS(17351), 1, + anon_sym_LBRACE, + STATE(11048), 1, + sym_tycon, + STATE(11729), 1, + sym_tyvar, + STATE(11747), 1, + sym_longtycon, + STATE(13319), 1, + sym__ty, + STATE(18089), 1, + sym_tyseq, + STATE(19034), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12720), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13092), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [805239] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805301] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805332] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805363] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805394] = 17, + ACTIONS(17389), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17391), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17393), 1, + sym__symbolic_ident, + ACTIONS(17395), 1, + anon_sym_LPAREN, + ACTIONS(17397), 1, + anon_sym_LBRACE, + STATE(8967), 1, + sym_tyvar, + STATE(8968), 1, + sym_longtycon, + STATE(8982), 1, + sym_tycon, + STATE(10743), 1, + sym__ty, + STATE(18278), 1, + sym_tyseq, + STATE(18734), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(9760), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10626), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8969), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [805453] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805484] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805515] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805546] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805577] = 17, + ACTIONS(17399), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17401), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17403), 1, + sym__symbolic_ident, + ACTIONS(17405), 1, + anon_sym_LPAREN, + ACTIONS(17407), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(14340), 1, + sym_tycon, + STATE(14370), 1, + sym_tyvar, + STATE(14373), 1, + sym_longtycon, + STATE(18241), 1, + sym_tyseq, + STATE(19239), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15129), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15483), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14374), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [805636] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [805667] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805698] = 17, + ACTIONS(17409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17411), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17413), 1, + sym__symbolic_ident, + ACTIONS(17415), 1, + anon_sym_LPAREN, + ACTIONS(17417), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(14318), 1, + sym_tycon, + STATE(14389), 1, + sym_longtycon, + STATE(14392), 1, + sym_tyvar, + STATE(18437), 1, + sym_tyseq, + STATE(19165), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15031), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15250), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14363), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [805757] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805788] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805819] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805850] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805881] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805912] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805943] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [805974] = 17, + ACTIONS(17419), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17421), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17423), 1, + sym__symbolic_ident, + ACTIONS(17425), 1, + anon_sym_LPAREN, + ACTIONS(17427), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(11097), 1, + sym_tyvar, + STATE(11099), 1, + sym_longtycon, + STATE(11318), 1, + sym_tycon, + STATE(18091), 1, + sym_tyseq, + STATE(18891), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12991), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13270), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11100), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [806033] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806064] = 5, + ACTIONS(17431), 1, + anon_sym_and, + STATE(12329), 1, + aux_sym__strbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17433), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17429), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [806099] = 14, + ACTIONS(17435), 1, + anon_sym_SEMI, + ACTIONS(17438), 1, + anon_sym_end, + ACTIONS(17440), 1, + anon_sym_val, + ACTIONS(17443), 1, + anon_sym_type, + ACTIONS(17446), 1, + anon_sym_datatype, + ACTIONS(17449), 1, + anon_sym_exception, + ACTIONS(17452), 1, + anon_sym_structure, + ACTIONS(17455), 1, + anon_sym_eqtype, + ACTIONS(17458), 1, + anon_sym_include, + ACTIONS(17461), 1, + anon_sym_sharing, + STATE(11956), 1, + aux_sym_sig_sigexp_repeat1, + STATE(15720), 1, + sym__spec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15139), 10, + sym_val_spec, + sym_type_spec, + sym_eqtype_spec, + sym_datatype_spec, + sym_datarepl_spec, + sym_exception_spec, + sym_structure_spec, + sym_include_spec, + sym_sharingtype_spec, + sym_sharing_spec, + [806152] = 17, + ACTIONS(17464), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17466), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17468), 1, + sym__symbolic_ident, + ACTIONS(17470), 1, + anon_sym_LPAREN, + ACTIONS(17472), 1, + anon_sym_LBRACE, + STATE(14212), 1, + sym_tyvar, + STATE(14221), 1, + sym_longtycon, + STATE(14300), 1, + sym_tycon, + STATE(15079), 1, + sym__ty, + STATE(18626), 1, + sym_tyseq, + STATE(18833), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14495), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15090), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14235), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [806211] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806242] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [806273] = 17, + ACTIONS(17474), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17476), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17478), 1, + sym__symbolic_ident, + ACTIONS(17480), 1, + anon_sym_LPAREN, + ACTIONS(17482), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(12097), 1, + sym_tyvar, + STATE(12098), 1, + sym_longtycon, + STATE(12141), 1, + sym_tycon, + STATE(18549), 1, + sym_tyseq, + STATE(18947), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13106), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13502), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12099), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [806332] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [806363] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806394] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806425] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806456] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806487] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806518] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806549] = 17, + ACTIONS(17464), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17466), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17468), 1, + sym__symbolic_ident, + ACTIONS(17470), 1, + anon_sym_LPAREN, + ACTIONS(17472), 1, + anon_sym_LBRACE, + STATE(14212), 1, + sym_tyvar, + STATE(14221), 1, + sym_longtycon, + STATE(14300), 1, + sym_tycon, + STATE(14973), 1, + sym__ty, + STATE(18626), 1, + sym_tyseq, + STATE(18833), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14495), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15090), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14235), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [806608] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806639] = 17, + ACTIONS(17484), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17486), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17488), 1, + sym__symbolic_ident, + ACTIONS(17490), 1, + anon_sym_LPAREN, + ACTIONS(17492), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15574), 1, + sym_tyvar, + STATE(15578), 1, + sym_longtycon, + STATE(16139), 1, + sym_tycon, + STATE(18281), 1, + sym_tyseq, + STATE(18728), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17173), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17963), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15583), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [806698] = 5, + ACTIONS(17329), 1, + anon_sym_and, + STATE(11906), 1, + aux_sym__sigbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17496), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17494), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [806733] = 11, + ACTIONS(17498), 1, + anon_sym_LPAREN, + ACTIONS(17502), 1, + anon_sym_COLON, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13391), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(17500), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + ACTIONS(17508), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [806780] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [806811] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806842] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806873] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806904] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806935] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806966] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [806997] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807028] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807059] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807090] = 17, + ACTIONS(17512), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17514), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17516), 1, + sym__symbolic_ident, + ACTIONS(17518), 1, + anon_sym_LPAREN, + ACTIONS(17520), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15871), 1, + sym_tyvar, + STATE(15895), 1, + sym_longtycon, + STATE(16331), 1, + sym_tycon, + STATE(18057), 1, + sym_tyseq, + STATE(19185), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17793), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15898), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [807149] = 5, + ACTIONS(17355), 1, + anon_sym_and, + STATE(11911), 1, + aux_sym__fctbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17524), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17522), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [807184] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807215] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807246] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807277] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807308] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807339] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807370] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807401] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807432] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807463] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807494] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807525] = 17, + ACTIONS(17526), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17528), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17530), 1, + sym__symbolic_ident, + ACTIONS(17532), 1, + anon_sym_LPAREN, + ACTIONS(17534), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15486), 1, + sym_tycon, + STATE(16138), 1, + sym_tyvar, + STATE(16141), 1, + sym_longtycon, + STATE(18272), 1, + sym_tyseq, + STATE(19184), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17209), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17847), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16142), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [807584] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807615] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807646] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807677] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807708] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807739] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807770] = 17, + ACTIONS(17536), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17538), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17540), 1, + sym__symbolic_ident, + ACTIONS(17542), 1, + anon_sym_LPAREN, + ACTIONS(17544), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15770), 1, + sym_tycon, + STATE(15963), 1, + sym_tyvar, + STATE(16342), 1, + sym_longtycon, + STATE(18579), 1, + sym_tyseq, + STATE(18730), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17227), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17918), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15888), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [807829] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807860] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807891] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807922] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_BQUOTE, + [807953] = 17, + ACTIONS(17546), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17548), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17550), 1, + sym__symbolic_ident, + ACTIONS(17552), 1, + anon_sym_LPAREN, + ACTIONS(17554), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(8752), 1, + sym_tyvar, + STATE(8755), 1, + sym_longtycon, + STATE(8800), 1, + sym_tycon, + STATE(18319), 1, + sym_tyseq, + STATE(19083), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(8994), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9399), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8756), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808012] = 17, + ACTIONS(17556), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17558), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17560), 1, + sym__symbolic_ident, + ACTIONS(17562), 1, + anon_sym_LPAREN, + ACTIONS(17564), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(8746), 1, + sym_tycon, + STATE(8799), 1, + sym_tyvar, + STATE(8801), 1, + sym_longtycon, + STATE(18531), 1, + sym_tyseq, + STATE(18766), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(9001), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9413), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8743), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808071] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24937), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808130] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23514), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808189] = 17, + ACTIONS(17586), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17588), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17590), 1, + sym__symbolic_ident, + ACTIONS(17592), 1, + anon_sym_LPAREN, + ACTIONS(17594), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15587), 1, + sym_tyvar, + STATE(15592), 1, + sym_longtycon, + STATE(15989), 1, + sym_tycon, + STATE(18239), 1, + sym_tyseq, + STATE(18999), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17254), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17764), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15593), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808248] = 17, + ACTIONS(17596), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17598), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17600), 1, + sym__symbolic_ident, + ACTIONS(17602), 1, + anon_sym_LPAREN, + ACTIONS(17604), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15790), 1, + sym_tyvar, + STATE(15816), 1, + sym_longtycon, + STATE(16078), 1, + sym_tycon, + STATE(18360), 1, + sym_tyseq, + STATE(18706), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17267), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17786), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15817), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808307] = 17, + ACTIONS(17606), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17608), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17610), 1, + sym__symbolic_ident, + ACTIONS(17612), 1, + anon_sym_LPAREN, + ACTIONS(17614), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(8714), 1, + sym_tyvar, + STATE(8718), 1, + sym_longtycon, + STATE(8731), 1, + sym_tycon, + STATE(18030), 1, + sym_tyseq, + STATE(19160), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(8845), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9015), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8722), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808366] = 17, + ACTIONS(17616), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17618), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17620), 1, + sym__symbolic_ident, + ACTIONS(17622), 1, + anon_sym_LPAREN, + ACTIONS(17624), 1, + anon_sym_LBRACE, + STATE(10321), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(10962), 1, + sym_tyvar, + STATE(10970), 1, + sym_longtycon, + STATE(18099), 1, + sym_tyseq, + STATE(18936), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12281), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12663), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10088), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808425] = 17, + ACTIONS(17626), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17628), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17630), 1, + sym__symbolic_ident, + ACTIONS(17632), 1, + anon_sym_LPAREN, + ACTIONS(17634), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15244), 1, + sym_tycon, + STATE(15288), 1, + sym_tyvar, + STATE(15296), 1, + sym_longtycon, + STATE(18186), 1, + sym_tyseq, + STATE(19190), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16468), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17279), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15299), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808484] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24900), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808543] = 17, + ACTIONS(17636), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17638), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17640), 1, + sym__symbolic_ident, + ACTIONS(17642), 1, + anon_sym_LPAREN, + ACTIONS(17644), 1, + anon_sym_LBRACE, + STATE(17869), 1, + sym_tycon, + STATE(17946), 1, + sym_tyvar, + STATE(17947), 1, + sym_longtycon, + STATE(18035), 1, + sym_tyseq, + STATE(19057), 1, + aux_sym_longvid_repeat1, + STATE(19594), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19126), 2, + sym__paren_ty, + sym_paren_ty, + STATE(20256), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17948), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808602] = 17, + ACTIONS(17646), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17648), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17650), 1, + sym__symbolic_ident, + ACTIONS(17652), 1, + anon_sym_LPAREN, + ACTIONS(17654), 1, + anon_sym_LBRACE, + STATE(13799), 1, + sym_tycon, + STATE(13980), 1, + sym_tyvar, + STATE(13981), 1, + sym_longtycon, + STATE(14350), 1, + sym__ty, + STATE(18246), 1, + sym_tyseq, + STATE(18889), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14293), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14380), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13982), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808661] = 17, + ACTIONS(17656), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17658), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17660), 1, + sym__symbolic_ident, + ACTIONS(17662), 1, + anon_sym_LPAREN, + ACTIONS(17664), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15246), 1, + sym_tyvar, + STATE(15318), 1, + sym_tycon, + STATE(15333), 1, + sym_longtycon, + STATE(18505), 1, + sym_tyseq, + STATE(19063), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16474), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17283), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15355), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808720] = 17, + ACTIONS(17666), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17668), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17670), 1, + sym__symbolic_ident, + ACTIONS(17672), 1, + anon_sym_LPAREN, + ACTIONS(17674), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(11354), 1, + sym_tycon, + STATE(11824), 1, + sym_tyvar, + STATE(11826), 1, + sym_longtycon, + STATE(17996), 1, + sym_tyseq, + STATE(18827), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12678), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13101), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11828), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808779] = 17, + ACTIONS(17636), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17638), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17640), 1, + sym__symbolic_ident, + ACTIONS(17642), 1, + anon_sym_LPAREN, + ACTIONS(17644), 1, + anon_sym_LBRACE, + STATE(17869), 1, + sym_tycon, + STATE(17946), 1, + sym_tyvar, + STATE(17947), 1, + sym_longtycon, + STATE(18035), 1, + sym_tyseq, + STATE(19057), 1, + aux_sym_longvid_repeat1, + STATE(19786), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19126), 2, + sym__paren_ty, + sym_paren_ty, + STATE(20256), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17948), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808838] = 17, + ACTIONS(17676), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17678), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17680), 1, + sym__symbolic_ident, + ACTIONS(17682), 1, + anon_sym_LPAREN, + ACTIONS(17684), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(11169), 1, + sym_tyvar, + STATE(11170), 1, + sym_longtycon, + STATE(11516), 1, + sym_tycon, + STATE(18065), 1, + sym_tyseq, + STATE(18754), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12687), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13183), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11172), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [808897] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [808928] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [808959] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 19, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [808992] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [809023] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [809054] = 17, + ACTIONS(17686), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17688), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17690), 1, + sym__symbolic_ident, + ACTIONS(17692), 1, + anon_sym_LPAREN, + ACTIONS(17694), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(10696), 1, + sym_tyvar, + STATE(10698), 1, + sym_longtycon, + STATE(10877), 1, + sym_tycon, + STATE(18123), 1, + sym_tyseq, + STATE(18747), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12292), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12692), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10700), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [809113] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 19, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [809146] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [809177] = 17, + ACTIONS(17636), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17638), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17640), 1, + sym__symbolic_ident, + ACTIONS(17642), 1, + anon_sym_LPAREN, + ACTIONS(17644), 1, + anon_sym_LBRACE, + STATE(8522), 1, + sym__ty, + STATE(17869), 1, + sym_tycon, + STATE(17946), 1, + sym_tyvar, + STATE(17947), 1, + sym_longtycon, + STATE(18035), 1, + sym_tyseq, + STATE(19057), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19126), 2, + sym__paren_ty, + sym_paren_ty, + STATE(20256), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17948), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [809236] = 17, + ACTIONS(17636), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17638), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17640), 1, + sym__symbolic_ident, + ACTIONS(17642), 1, + anon_sym_LPAREN, + ACTIONS(17644), 1, + anon_sym_LBRACE, + STATE(8523), 1, + sym__ty, + STATE(17869), 1, + sym_tycon, + STATE(17946), 1, + sym_tyvar, + STATE(17947), 1, + sym_longtycon, + STATE(18035), 1, + sym_tyseq, + STATE(19057), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19126), 2, + sym__paren_ty, + sym_paren_ty, + STATE(20256), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17948), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [809295] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [809326] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [809357] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [809388] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [809419] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [809450] = 17, + ACTIONS(17696), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17698), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17700), 1, + sym__symbolic_ident, + ACTIONS(17702), 1, + anon_sym_LPAREN, + ACTIONS(17704), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(10796), 1, + sym_tyvar, + STATE(10797), 1, + sym_longtycon, + STATE(10974), 1, + sym_tycon, + STATE(18228), 1, + sym_tyseq, + STATE(18710), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12302), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12697), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10798), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [809509] = 17, + ACTIONS(17706), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17708), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17710), 1, + sym__symbolic_ident, + ACTIONS(17712), 1, + anon_sym_LPAREN, + ACTIONS(17714), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15931), 1, + sym_tyvar, + STATE(16202), 1, + sym_tycon, + STATE(16213), 1, + sym_longtycon, + STATE(18663), 1, + sym_tyseq, + STATE(19060), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16770), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17750), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16162), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [809568] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [809599] = 17, + ACTIONS(17716), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17718), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17720), 1, + sym__symbolic_ident, + ACTIONS(17722), 1, + anon_sym_LPAREN, + ACTIONS(17724), 1, + anon_sym_LBRACE, + STATE(10171), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(10971), 1, + sym_tyvar, + STATE(10975), 1, + sym_longtycon, + STATE(18499), 1, + sym_tyseq, + STATE(18870), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12307), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12703), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11012), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [809658] = 17, + ACTIONS(17726), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17728), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17730), 1, + sym__symbolic_ident, + ACTIONS(17732), 1, + anon_sym_LPAREN, + ACTIONS(17734), 1, + anon_sym_LBRACE, + STATE(10112), 1, + sym_tyvar, + STATE(10113), 1, + sym_longtycon, + STATE(10219), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(18678), 1, + sym_tyseq, + STATE(18726), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12310), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12707), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10114), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [809717] = 17, + ACTIONS(17736), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17738), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17740), 1, + sym__symbolic_ident, + ACTIONS(17742), 1, + anon_sym_LPAREN, + ACTIONS(17744), 1, + anon_sym_LBRACE, + STATE(17852), 1, + sym_tyvar, + STATE(17853), 1, + sym_tycon, + STATE(17856), 1, + sym_longtycon, + STATE(18143), 1, + sym_tyseq, + STATE(18969), 1, + aux_sym_longvid_repeat1, + STATE(22181), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19227), 2, + sym__paren_ty, + sym_paren_ty, + STATE(21326), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17857), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [809776] = 17, + ACTIONS(17746), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17748), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17750), 1, + sym__symbolic_ident, + ACTIONS(17752), 1, + anon_sym_LPAREN, + ACTIONS(17754), 1, + anon_sym_LBRACE, + STATE(9859), 1, + sym_tyvar, + STATE(9860), 1, + sym_longtycon, + STATE(9893), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(18055), 1, + sym_tyseq, + STATE(19133), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11233), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12313), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9861), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [809835] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [809866] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [809897] = 17, + ACTIONS(17756), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17758), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17760), 1, + sym__symbolic_ident, + ACTIONS(17762), 1, + anon_sym_LPAREN, + ACTIONS(17764), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15533), 1, + sym_tyvar, + STATE(15549), 1, + sym_tycon, + STATE(15591), 1, + sym_longtycon, + STATE(18202), 1, + sym_tyseq, + STATE(19176), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17289), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17843), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15619), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [809956] = 17, + ACTIONS(17766), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17768), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17770), 1, + sym__symbolic_ident, + ACTIONS(17772), 1, + anon_sym_LPAREN, + ACTIONS(17774), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(16010), 1, + sym_tycon, + STATE(16258), 1, + sym_longtycon, + STATE(16287), 1, + sym_tyvar, + STATE(18277), 1, + sym_tyseq, + STATE(18856), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17300), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17874), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15645), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [810015] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [810046] = 17, + ACTIONS(17776), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17778), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17780), 1, + sym__symbolic_ident, + ACTIONS(17782), 1, + anon_sym_LPAREN, + ACTIONS(17784), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(11127), 1, + sym_tyvar, + STATE(11131), 1, + sym_longtycon, + STATE(11488), 1, + sym_tycon, + STATE(18371), 1, + sym_tyseq, + STATE(19091), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12721), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13094), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11132), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [810105] = 4, + ACTIONS(17786), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16526), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [810138] = 5, + ACTIONS(17790), 1, + anon_sym_and, + STATE(12053), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17793), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17788), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [810173] = 17, + ACTIONS(17795), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17797), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17799), 1, + sym__symbolic_ident, + ACTIONS(17801), 1, + anon_sym_LPAREN, + ACTIONS(17803), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15036), 1, + sym_tyvar, + STATE(15037), 1, + sym_longtycon, + STATE(15104), 1, + sym_tycon, + STATE(18584), 1, + sym_tyseq, + STATE(19220), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15890), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16485), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15038), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [810232] = 17, + ACTIONS(17805), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17807), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17809), 1, + sym__symbolic_ident, + ACTIONS(17811), 1, + anon_sym_LPAREN, + ACTIONS(17813), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(8541), 1, + sym_tycon, + STATE(8552), 1, + sym_tyvar, + STATE(8568), 1, + sym_longtycon, + STATE(18640), 1, + sym_tyseq, + STATE(19110), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(8927), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9028), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8569), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [810291] = 4, + ACTIONS(16681), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16501), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(12420), 18, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [810324] = 17, + ACTIONS(17815), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17817), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17819), 1, + sym__symbolic_ident, + ACTIONS(17821), 1, + anon_sym_LPAREN, + ACTIONS(17823), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(10472), 1, + sym_tyvar, + STATE(10473), 1, + sym_longtycon, + STATE(10583), 1, + sym_tycon, + STATE(18686), 1, + sym_tyseq, + STATE(19112), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12322), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12725), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10474), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [810383] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24902), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [810442] = 5, + ACTIONS(17827), 1, + anon_sym_and, + STATE(12059), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17830), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17825), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [810477] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17127), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17122), 20, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [810508] = 17, + ACTIONS(17832), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17834), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17836), 1, + sym__symbolic_ident, + ACTIONS(17838), 1, + anon_sym_LPAREN, + ACTIONS(17840), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(10507), 1, + sym_tyvar, + STATE(10509), 1, + sym_longtycon, + STATE(10643), 1, + sym_tycon, + STATE(18361), 1, + sym_tyseq, + STATE(19206), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12326), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12727), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10510), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [810567] = 17, + ACTIONS(17842), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17844), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17846), 1, + sym__symbolic_ident, + ACTIONS(17848), 1, + anon_sym_LPAREN, + ACTIONS(17850), 1, + anon_sym_LBRACE, + STATE(8980), 1, + sym__ty, + STATE(9531), 1, + sym_tyvar, + STATE(9902), 1, + sym_tycon, + STATE(9929), 1, + sym_longtycon, + STATE(18238), 1, + sym_tyseq, + STATE(19163), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11299), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12052), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9530), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [810626] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24741), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [810685] = 5, + ACTIONS(17852), 1, + anon_sym_and, + STATE(12064), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16669), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(16667), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [810720] = 17, + ACTIONS(17855), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17857), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17859), 1, + sym__symbolic_ident, + ACTIONS(17861), 1, + anon_sym_LPAREN, + ACTIONS(17863), 1, + anon_sym_LBRACE, + STATE(9721), 1, + sym_tyvar, + STATE(9722), 1, + sym_longtycon, + STATE(9951), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(18632), 1, + sym_tyseq, + STATE(19033), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11313), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12331), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9723), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [810779] = 17, + ACTIONS(17842), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17844), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17846), 1, + sym__symbolic_ident, + ACTIONS(17848), 1, + anon_sym_LPAREN, + ACTIONS(17850), 1, + anon_sym_LBRACE, + STATE(9531), 1, + sym_tyvar, + STATE(9902), 1, + sym_tycon, + STATE(9929), 1, + sym_longtycon, + STATE(12859), 1, + sym__ty, + STATE(18238), 1, + sym_tyseq, + STATE(19163), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11299), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12052), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9530), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [810838] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 4, + ts_builtin_sym_end, + sym__symbolic_ident, + anon_sym_SEMI, + anon_sym_Datatype_COLON, + ACTIONS(12418), 18, + sym__alphaAlphaNumeric_ident, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Theorem, + [810869] = 17, + ACTIONS(17865), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17867), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17869), 1, + sym__symbolic_ident, + ACTIONS(17871), 1, + anon_sym_LPAREN, + ACTIONS(17873), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(11246), 1, + sym_tyvar, + STATE(11248), 1, + sym_longtycon, + STATE(11827), 1, + sym_tycon, + STATE(18349), 1, + sym_tyseq, + STATE(19203), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13163), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11249), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [810928] = 5, + ACTIONS(17877), 1, + anon_sym_and, + STATE(12069), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17880), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17875), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [810963] = 17, + ACTIONS(17882), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17884), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17886), 1, + sym__symbolic_ident, + ACTIONS(17888), 1, + anon_sym_LPAREN, + ACTIONS(17890), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(14990), 1, + sym_tycon, + STATE(15093), 1, + sym_tyvar, + STATE(15094), 1, + sym_longtycon, + STATE(18405), 1, + sym_tyseq, + STATE(18815), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16249), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16489), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15096), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [811022] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811053] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811084] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 18, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811117] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811148] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811179] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 18, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811212] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811243] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811274] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811305] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811336] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811367] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811398] = 14, + ACTIONS(17892), 1, + anon_sym_SEMI, + ACTIONS(17894), 1, + anon_sym_end, + ACTIONS(17896), 1, + anon_sym_val, + ACTIONS(17898), 1, + anon_sym_type, + ACTIONS(17900), 1, + anon_sym_datatype, + ACTIONS(17902), 1, + anon_sym_exception, + ACTIONS(17904), 1, + anon_sym_structure, + ACTIONS(17906), 1, + anon_sym_eqtype, + ACTIONS(17908), 1, + anon_sym_include, + ACTIONS(17910), 1, + anon_sym_sharing, + STATE(12510), 1, + aux_sym_sig_sigexp_repeat1, + STATE(15720), 1, + sym__spec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15139), 10, + sym_val_spec, + sym_type_spec, + sym_eqtype_spec, + sym_datatype_spec, + sym_datarepl_spec, + sym_exception_spec, + sym_structure_spec, + sym_include_spec, + sym_sharingtype_spec, + sym_sharing_spec, + [811451] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811482] = 17, + ACTIONS(17912), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17914), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17916), 1, + sym__symbolic_ident, + ACTIONS(17918), 1, + anon_sym_LPAREN, + ACTIONS(17920), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(14246), 1, + sym_longtycon, + STATE(14259), 1, + sym_tycon, + STATE(14271), 1, + sym_tyvar, + STATE(18567), 1, + sym_tyseq, + STATE(18934), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14601), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14986), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14242), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [811541] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811572] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811603] = 17, + ACTIONS(17922), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17924), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17926), 1, + sym__symbolic_ident, + ACTIONS(17928), 1, + anon_sym_LPAREN, + ACTIONS(17930), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(10390), 1, + sym_tyvar, + STATE(10391), 1, + sym_longtycon, + STATE(10629), 1, + sym_tycon, + STATE(18609), 1, + sym_tyseq, + STATE(18894), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12341), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12742), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10392), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [811662] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [811693] = 17, + ACTIONS(17932), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17934), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17936), 1, + sym__symbolic_ident, + ACTIONS(17938), 1, + anon_sym_LPAREN, + ACTIONS(17940), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(11409), 1, + sym_tycon, + STATE(11738), 1, + sym_tyvar, + STATE(11741), 1, + sym_longtycon, + STATE(18556), 1, + sym_tyseq, + STATE(18959), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12747), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13202), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11750), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [811752] = 17, + ACTIONS(17942), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17944), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17946), 1, + sym__symbolic_ident, + ACTIONS(17948), 1, + anon_sym_LPAREN, + ACTIONS(17950), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(11200), 1, + sym_tyvar, + STATE(11226), 1, + sym_longtycon, + STATE(11769), 1, + sym_tycon, + STATE(18036), 1, + sym_tyseq, + STATE(18760), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12750), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13217), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11227), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [811811] = 17, + ACTIONS(17952), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17954), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17956), 1, + sym__symbolic_ident, + ACTIONS(17958), 1, + anon_sym_LPAREN, + ACTIONS(17960), 1, + anon_sym_LBRACE, + STATE(10323), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(10686), 1, + sym_tyvar, + STATE(10727), 1, + sym_longtycon, + STATE(18574), 1, + sym_tyseq, + STATE(19172), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12352), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12751), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10760), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [811870] = 5, + ACTIONS(17964), 1, + anon_sym_and, + STATE(12093), 1, + aux_sym__strbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17967), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17962), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [811905] = 4, + ACTIONS(17973), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17971), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17969), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [811938] = 5, + ACTIONS(17977), 1, + anon_sym_and, + STATE(12095), 1, + aux_sym__sigbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17980), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17975), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [811973] = 17, + ACTIONS(17982), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17984), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17986), 1, + sym__symbolic_ident, + ACTIONS(17988), 1, + anon_sym_LPAREN, + ACTIONS(17990), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15268), 1, + sym_tyvar, + STATE(15270), 1, + sym_longtycon, + STATE(15305), 1, + sym_tycon, + STATE(18112), 1, + sym_tyseq, + STATE(18714), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16496), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17332), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15271), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [812032] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812063] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812094] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812127] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812158] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812189] = 17, + ACTIONS(17992), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17994), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17996), 1, + sym__symbolic_ident, + ACTIONS(17998), 1, + anon_sym_LPAREN, + ACTIONS(18000), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15320), 1, + sym_tycon, + STATE(15391), 1, + sym_tyvar, + STATE(15394), 1, + sym_longtycon, + STATE(18517), 1, + sym_tyseq, + STATE(19250), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16499), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17341), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15399), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [812248] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 19, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812281] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812312] = 13, + ACTIONS(17906), 1, + anon_sym_eqtype, + ACTIONS(17910), 1, + anon_sym_sharing, + ACTIONS(18002), 1, + anon_sym_RPAREN, + ACTIONS(18004), 1, + anon_sym_SEMI, + ACTIONS(18006), 1, + anon_sym_val, + ACTIONS(18008), 1, + anon_sym_type, + ACTIONS(18010), 1, + anon_sym_datatype, + ACTIONS(18012), 1, + anon_sym_exception, + ACTIONS(18014), 1, + anon_sym_structure, + ACTIONS(18016), 1, + anon_sym_include, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12600), 2, + sym__spec, + aux_sym_fctbind_repeat1, + STATE(15139), 10, + sym_val_spec, + sym_type_spec, + sym_eqtype_spec, + sym_datatype_spec, + sym_datarepl_spec, + sym_exception_spec, + sym_structure_spec, + sym_include_spec, + sym_sharingtype_spec, + sym_sharing_spec, + [812363] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812394] = 5, + ACTIONS(18020), 1, + anon_sym_and, + STATE(12107), 1, + aux_sym__fctbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18023), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(18018), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [812429] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812460] = 17, + ACTIONS(18025), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18027), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18029), 1, + sym__symbolic_ident, + ACTIONS(18031), 1, + anon_sym_LPAREN, + ACTIONS(18033), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(8501), 1, + sym_tycon, + STATE(8503), 1, + sym_tyvar, + STATE(8505), 1, + sym_longtycon, + STATE(18692), 1, + sym_tyseq, + STATE(18844), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(8850), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9032), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8520), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [812519] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812550] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812581] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812612] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812643] = 17, + ACTIONS(18035), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18037), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18039), 1, + sym__symbolic_ident, + ACTIONS(18041), 1, + anon_sym_LPAREN, + ACTIONS(18043), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15158), 1, + sym_tycon, + STATE(15319), 1, + sym_tyvar, + STATE(15321), 1, + sym_longtycon, + STATE(18179), 1, + sym_tyseq, + STATE(19256), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16506), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17355), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15484), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [812702] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [812735] = 17, + ACTIONS(18045), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18047), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18049), 1, + sym__symbolic_ident, + ACTIONS(18051), 1, + anon_sym_LPAREN, + ACTIONS(18053), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(8480), 1, + sym_tyvar, + STATE(8482), 1, + sym_longtycon, + STATE(8485), 1, + sym_tycon, + STATE(18414), 1, + sym_tyseq, + STATE(18731), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(8762), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8832), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8450), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [812794] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [812825] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [812856] = 17, + ACTIONS(18055), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18057), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18059), 1, + sym__symbolic_ident, + ACTIONS(18061), 1, + anon_sym_LPAREN, + ACTIONS(18063), 1, + anon_sym_LBRACE, + STATE(9655), 1, + sym_tyvar, + STATE(9656), 1, + sym_longtycon, + STATE(10034), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(18639), 1, + sym_tyseq, + STATE(18741), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11427), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12355), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9657), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [812915] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [812946] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [812977] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813008] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813039] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813070] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813101] = 17, + ACTIONS(18065), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18067), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18069), 1, + sym__symbolic_ident, + ACTIONS(18071), 1, + anon_sym_LPAREN, + ACTIONS(18073), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(14988), 1, + sym_tycon, + STATE(15091), 1, + sym_tyvar, + STATE(15092), 1, + sym_longtycon, + STATE(18280), 1, + sym_tyseq, + STATE(18874), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15849), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16509), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15095), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [813160] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813191] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813253] = 17, + ACTIONS(18075), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18077), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18079), 1, + sym__symbolic_ident, + ACTIONS(18081), 1, + anon_sym_LPAREN, + ACTIONS(18083), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(10342), 1, + sym_tyvar, + STATE(10343), 1, + sym_longtycon, + STATE(10619), 1, + sym_tycon, + STATE(18392), 1, + sym_tyseq, + STATE(18977), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12358), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12758), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10344), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [813312] = 17, + ACTIONS(18085), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18087), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18089), 1, + sym__symbolic_ident, + ACTIONS(18091), 1, + anon_sym_LPAREN, + ACTIONS(18093), 1, + anon_sym_LBRACE, + STATE(9544), 1, + sym_tyvar, + STATE(9545), 1, + sym_longtycon, + STATE(9794), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(18489), 1, + sym_tyseq, + STATE(19097), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11466), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12362), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9550), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [813371] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [813402] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [813433] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [813464] = 17, + ACTIONS(18095), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18097), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18099), 1, + sym__symbolic_ident, + ACTIONS(18101), 1, + anon_sym_LPAREN, + ACTIONS(18103), 1, + anon_sym_LBRACE, + STATE(9752), 1, + sym_tyvar, + STATE(9753), 1, + sym_longtycon, + STATE(9872), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(18587), 1, + sym_tyseq, + STATE(19159), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11481), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12366), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [813523] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [813556] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813587] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813618] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813649] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813680] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [813711] = 17, + ACTIONS(18105), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18107), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18109), 1, + sym__symbolic_ident, + ACTIONS(18111), 1, + anon_sym_LPAREN, + ACTIONS(18113), 1, + anon_sym_LBRACE, + STATE(9787), 1, + sym_tyvar, + STATE(9805), 1, + sym_longtycon, + STATE(9941), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(17970), 1, + sym_tyseq, + STATE(19195), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11491), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12369), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9806), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [813770] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813801] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813832] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813863] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [813894] = 5, + ACTIONS(18117), 1, + anon_sym_and, + STATE(12260), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18119), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(18115), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [813929] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [813960] = 17, + ACTIONS(18121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18123), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18125), 1, + sym__symbolic_ident, + ACTIONS(18127), 1, + anon_sym_LPAREN, + ACTIONS(18129), 1, + anon_sym_LBRACE, + STATE(9332), 1, + sym_tyvar, + STATE(9340), 1, + sym_longtycon, + STATE(9425), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(18067), 1, + sym_tyseq, + STATE(19233), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(10386), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11505), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9346), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [814019] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [814050] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [814081] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [814112] = 17, + ACTIONS(18131), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18133), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18135), 1, + sym__symbolic_ident, + ACTIONS(18137), 1, + anon_sym_LPAREN, + ACTIONS(18139), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(10843), 1, + sym_tyvar, + STATE(10856), 1, + sym_longtycon, + STATE(10906), 1, + sym_tycon, + STATE(18127), 1, + sym_tyseq, + STATE(19164), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12378), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12788), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10861), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [814171] = 17, + ACTIONS(18141), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18143), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18145), 1, + sym__symbolic_ident, + ACTIONS(18147), 1, + anon_sym_LPAREN, + ACTIONS(18149), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(14797), 1, + sym_tyvar, + STATE(14805), 1, + sym_tycon, + STATE(14806), 1, + sym_longtycon, + STATE(18090), 1, + sym_tyseq, + STATE(18892), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15303), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15754), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14817), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [814230] = 17, + ACTIONS(18151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18153), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18155), 1, + sym__symbolic_ident, + ACTIONS(18157), 1, + anon_sym_LPAREN, + ACTIONS(18159), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15310), 1, + sym_tycon, + STATE(15433), 1, + sym_tyvar, + STATE(15435), 1, + sym_longtycon, + STATE(18443), 1, + sym_tyseq, + STATE(18716), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16515), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17371), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15443), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [814289] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [814320] = 17, + ACTIONS(18161), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18163), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18165), 1, + sym__symbolic_ident, + ACTIONS(18167), 1, + anon_sym_LPAREN, + ACTIONS(18169), 1, + anon_sym_LBRACE, + STATE(17223), 1, + sym_tyvar, + STATE(17224), 1, + sym_tycon, + STATE(17226), 1, + sym_longtycon, + STATE(18306), 1, + sym_tyseq, + STATE(19085), 1, + aux_sym_longvid_repeat1, + STATE(20718), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18486), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18823), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17228), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [814379] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 19, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [814412] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [814443] = 17, + ACTIONS(18171), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18173), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18175), 1, + sym__symbolic_ident, + ACTIONS(18177), 1, + anon_sym_LPAREN, + ACTIONS(18179), 1, + anon_sym_LBRACE, + STATE(13432), 1, + sym_longtycon, + STATE(13491), 1, + sym_tyvar, + STATE(13509), 1, + sym_tycon, + STATE(13545), 1, + sym__ty, + STATE(18064), 1, + sym_tyseq, + STATE(19208), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13920), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14169), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13357), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [814502] = 17, + ACTIONS(18171), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18173), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18175), 1, + sym__symbolic_ident, + ACTIONS(18177), 1, + anon_sym_LPAREN, + ACTIONS(18179), 1, + anon_sym_LBRACE, + STATE(13432), 1, + sym_longtycon, + STATE(13491), 1, + sym_tyvar, + STATE(13509), 1, + sym_tycon, + STATE(13552), 1, + sym__ty, + STATE(18064), 1, + sym_tyseq, + STATE(19208), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13920), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14169), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13357), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [814561] = 17, + ACTIONS(18181), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18183), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18185), 1, + sym__symbolic_ident, + ACTIONS(18187), 1, + anon_sym_LPAREN, + ACTIONS(18189), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15229), 1, + sym_tycon, + STATE(15464), 1, + sym_tyvar, + STATE(15465), 1, + sym_longtycon, + STATE(18513), 1, + sym_tyseq, + STATE(18821), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16521), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17377), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15467), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [814620] = 17, + ACTIONS(18191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18193), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18195), 1, + sym__symbolic_ident, + ACTIONS(18197), 1, + anon_sym_LPAREN, + ACTIONS(18199), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15273), 1, + sym_tycon, + STATE(15337), 1, + sym_tyvar, + STATE(15397), 1, + sym_longtycon, + STATE(18580), 1, + sym_tyseq, + STATE(19069), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16670), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17381), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15132), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [814679] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [814710] = 17, + ACTIONS(18171), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18173), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18175), 1, + sym__symbolic_ident, + ACTIONS(18177), 1, + anon_sym_LPAREN, + ACTIONS(18179), 1, + anon_sym_LBRACE, + STATE(13432), 1, + sym_longtycon, + STATE(13491), 1, + sym_tyvar, + STATE(13509), 1, + sym_tycon, + STATE(13570), 1, + sym__ty, + STATE(18064), 1, + sym_tyseq, + STATE(19208), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13920), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14169), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13357), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [814769] = 17, + ACTIONS(18171), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18173), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18175), 1, + sym__symbolic_ident, + ACTIONS(18177), 1, + anon_sym_LPAREN, + ACTIONS(18179), 1, + anon_sym_LBRACE, + STATE(13432), 1, + sym_longtycon, + STATE(13491), 1, + sym_tyvar, + STATE(13509), 1, + sym_tycon, + STATE(13575), 1, + sym__ty, + STATE(18064), 1, + sym_tyseq, + STATE(19208), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13920), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14169), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13357), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [814828] = 14, + ACTIONS(17896), 1, + anon_sym_val, + ACTIONS(17898), 1, + anon_sym_type, + ACTIONS(17900), 1, + anon_sym_datatype, + ACTIONS(17902), 1, + anon_sym_exception, + ACTIONS(17904), 1, + anon_sym_structure, + ACTIONS(17906), 1, + anon_sym_eqtype, + ACTIONS(17908), 1, + anon_sym_include, + ACTIONS(17910), 1, + anon_sym_sharing, + ACTIONS(18201), 1, + anon_sym_SEMI, + ACTIONS(18203), 1, + anon_sym_end, + STATE(12175), 1, + aux_sym_sig_sigexp_repeat1, + STATE(15720), 1, + sym__spec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15139), 10, + sym_val_spec, + sym_type_spec, + sym_eqtype_spec, + sym_datatype_spec, + sym_datarepl_spec, + sym_exception_spec, + sym_structure_spec, + sym_include_spec, + sym_sharingtype_spec, + sym_sharing_spec, + [814881] = 17, + ACTIONS(18205), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18207), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18209), 1, + sym__symbolic_ident, + ACTIONS(18211), 1, + anon_sym_LPAREN, + ACTIONS(18213), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15228), 1, + sym_tyvar, + STATE(15231), 1, + sym_longtycon, + STATE(15316), 1, + sym_tycon, + STATE(18638), 1, + sym_tyseq, + STATE(18707), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16527), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17388), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15233), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [814940] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [814971] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [815002] = 17, + ACTIONS(18215), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18217), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18219), 1, + sym__symbolic_ident, + ACTIONS(18221), 1, + anon_sym_LPAREN, + ACTIONS(18223), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(10417), 1, + sym_tyvar, + STATE(10419), 1, + sym_longtycon, + STATE(10855), 1, + sym_tycon, + STATE(18693), 1, + sym_tyseq, + STATE(18854), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12383), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12792), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10420), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [815061] = 17, + ACTIONS(18225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18227), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18229), 1, + sym__symbolic_ident, + ACTIONS(18231), 1, + anon_sym_LPAREN, + ACTIONS(18233), 1, + anon_sym_LBRACE, + STATE(10674), 1, + sym__ty, + STATE(16710), 1, + sym_tyvar, + STATE(16719), 1, + sym_longtycon, + STATE(17062), 1, + sym_tycon, + STATE(18417), 1, + sym_tyseq, + STATE(18965), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18180), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18769), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16720), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [815120] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [815151] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [815182] = 14, + ACTIONS(17896), 1, + anon_sym_val, + ACTIONS(17898), 1, + anon_sym_type, + ACTIONS(17900), 1, + anon_sym_datatype, + ACTIONS(17902), 1, + anon_sym_exception, + ACTIONS(17904), 1, + anon_sym_structure, + ACTIONS(17906), 1, + anon_sym_eqtype, + ACTIONS(17908), 1, + anon_sym_include, + ACTIONS(17910), 1, + anon_sym_sharing, + ACTIONS(18235), 1, + anon_sym_SEMI, + ACTIONS(18237), 1, + anon_sym_end, + STATE(11956), 1, + aux_sym_sig_sigexp_repeat1, + STATE(15720), 1, + sym__spec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15139), 10, + sym_val_spec, + sym_type_spec, + sym_eqtype_spec, + sym_datatype_spec, + sym_datarepl_spec, + sym_exception_spec, + sym_structure_spec, + sym_include_spec, + sym_sharingtype_spec, + sym_sharing_spec, + [815235] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [815266] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [815299] = 17, + ACTIONS(18239), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18241), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18243), 1, + sym__symbolic_ident, + ACTIONS(18245), 1, + anon_sym_LPAREN, + ACTIONS(18247), 1, + anon_sym_LBRACE, + STATE(9834), 1, + sym_tyvar, + STATE(9856), 1, + sym_tycon, + STATE(9881), 1, + sym_longtycon, + STATE(10334), 1, + sym__ty, + STATE(17998), 1, + sym_tyseq, + STATE(18919), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11543), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12385), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9899), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [815358] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [815389] = 17, + ACTIONS(18225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18227), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18229), 1, + sym__symbolic_ident, + ACTIONS(18231), 1, + anon_sym_LPAREN, + ACTIONS(18233), 1, + anon_sym_LBRACE, + STATE(10743), 1, + sym__ty, + STATE(16710), 1, + sym_tyvar, + STATE(16719), 1, + sym_longtycon, + STATE(17062), 1, + sym_tycon, + STATE(18417), 1, + sym_tyseq, + STATE(18965), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18180), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18769), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16720), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [815448] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [815479] = 17, + ACTIONS(18249), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18251), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18253), 1, + sym__symbolic_ident, + ACTIONS(18255), 1, + anon_sym_LPAREN, + ACTIONS(18257), 1, + anon_sym_LBRACE, + STATE(14230), 1, + sym_tycon, + STATE(14264), 1, + sym_tyvar, + STATE(14302), 1, + sym_longtycon, + STATE(15079), 1, + sym__ty, + STATE(18116), 1, + sym_tyseq, + STATE(19027), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14513), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15112), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14228), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [815538] = 17, + ACTIONS(18249), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18251), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18253), 1, + sym__symbolic_ident, + ACTIONS(18255), 1, + anon_sym_LPAREN, + ACTIONS(18257), 1, + anon_sym_LBRACE, + STATE(14230), 1, + sym_tycon, + STATE(14264), 1, + sym_tyvar, + STATE(14302), 1, + sym_longtycon, + STATE(14973), 1, + sym__ty, + STATE(18116), 1, + sym_tyseq, + STATE(19027), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14513), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15112), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14228), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [815597] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [815628] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [815659] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [815690] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [815721] = 17, + ACTIONS(18259), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18261), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18263), 1, + sym__symbolic_ident, + ACTIONS(18265), 1, + anon_sym_LPAREN, + ACTIONS(18267), 1, + anon_sym_LBRACE, + STATE(9302), 1, + sym_tycon, + STATE(9428), 1, + sym_tyvar, + STATE(9481), 1, + sym_longtycon, + STATE(10334), 1, + sym__ty, + STATE(18003), 1, + sym_tyseq, + STATE(19099), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(10404), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11572), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9183), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [815780] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [815811] = 17, + ACTIONS(18269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18271), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18273), 1, + sym__symbolic_ident, + ACTIONS(18275), 1, + anon_sym_LPAREN, + ACTIONS(18277), 1, + anon_sym_LBRACE, + STATE(9368), 1, + sym_tycon, + STATE(9381), 1, + sym_tyvar, + STATE(9417), 1, + sym_longtycon, + STATE(11338), 1, + sym__ty, + STATE(18119), 1, + sym_tyseq, + STATE(19137), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(10320), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11118), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9420), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [815870] = 17, + ACTIONS(18279), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18281), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18283), 1, + sym__symbolic_ident, + ACTIONS(18285), 1, + anon_sym_LPAREN, + ACTIONS(18287), 1, + anon_sym_LBRACE, + STATE(14042), 1, + sym_tycon, + STATE(14069), 1, + sym_tyvar, + STATE(14071), 1, + sym_longtycon, + STATE(14350), 1, + sym__ty, + STATE(18020), 1, + sym_tyseq, + STATE(19102), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14232), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14343), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14072), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [815929] = 17, + ACTIONS(18269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18271), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18273), 1, + sym__symbolic_ident, + ACTIONS(18275), 1, + anon_sym_LPAREN, + ACTIONS(18277), 1, + anon_sym_LBRACE, + STATE(9368), 1, + sym_tycon, + STATE(9381), 1, + sym_tyvar, + STATE(9417), 1, + sym_longtycon, + STATE(11339), 1, + sym__ty, + STATE(18119), 1, + sym_tyseq, + STATE(19137), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(10320), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11118), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9420), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [815988] = 17, + ACTIONS(18269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18271), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18273), 1, + sym__symbolic_ident, + ACTIONS(18275), 1, + anon_sym_LPAREN, + ACTIONS(18277), 1, + anon_sym_LBRACE, + STATE(8522), 1, + sym__ty, + STATE(9368), 1, + sym_tycon, + STATE(9381), 1, + sym_tyvar, + STATE(9417), 1, + sym_longtycon, + STATE(18119), 1, + sym_tyseq, + STATE(19137), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(10320), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11118), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9420), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [816047] = 17, + ACTIONS(18269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18271), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18273), 1, + sym__symbolic_ident, + ACTIONS(18275), 1, + anon_sym_LPAREN, + ACTIONS(18277), 1, + anon_sym_LBRACE, + STATE(8523), 1, + sym__ty, + STATE(9368), 1, + sym_tycon, + STATE(9381), 1, + sym_tyvar, + STATE(9417), 1, + sym_longtycon, + STATE(18119), 1, + sym_tyseq, + STATE(19137), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(10320), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11118), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9420), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [816106] = 17, + ACTIONS(18289), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18291), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18293), 1, + sym__symbolic_ident, + ACTIONS(18295), 1, + anon_sym_LPAREN, + ACTIONS(18297), 1, + anon_sym_LBRACE, + STATE(10309), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(10418), 1, + sym_tyvar, + STATE(10441), 1, + sym_longtycon, + STATE(18011), 1, + sym_tyseq, + STATE(18808), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12395), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10584), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [816165] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [816196] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816227] = 17, + ACTIONS(18299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18301), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18303), 1, + sym__symbolic_ident, + ACTIONS(18305), 1, + anon_sym_LPAREN, + ACTIONS(18307), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(10484), 1, + sym_tycon, + STATE(10800), 1, + sym_tyvar, + STATE(10804), 1, + sym_longtycon, + STATE(18017), 1, + sym_tyseq, + STATE(18941), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12401), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12808), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10815), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [816286] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816317] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816348] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816379] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816410] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816441] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816472] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816503] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816565] = 5, + ACTIONS(18309), 1, + anon_sym_STAR, + STATE(12611), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15932), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [816600] = 17, + ACTIONS(18311), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18313), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18315), 1, + sym__symbolic_ident, + ACTIONS(18317), 1, + anon_sym_LPAREN, + ACTIONS(18319), 1, + anon_sym_LBRACE, + STATE(9520), 1, + sym_tycon, + STATE(9874), 1, + sym_tyvar, + STATE(9877), 1, + sym_longtycon, + STATE(10334), 1, + sym__ty, + STATE(18019), 1, + sym_tyseq, + STATE(19076), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11617), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12405), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9879), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [816659] = 17, + ACTIONS(18321), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18323), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18325), 1, + sym__symbolic_ident, + ACTIONS(18327), 1, + anon_sym_LPAREN, + ACTIONS(18329), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(14593), 1, + sym_tyvar, + STATE(14595), 1, + sym_longtycon, + STATE(14629), 1, + sym_tycon, + STATE(18025), 1, + sym_tyseq, + STATE(19168), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15210), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16092), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14596), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [816718] = 17, + ACTIONS(18331), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18333), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18335), 1, + sym__symbolic_ident, + ACTIONS(18337), 1, + anon_sym_LPAREN, + ACTIONS(18339), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(16490), 1, + sym_tyvar, + STATE(16492), 1, + sym_tycon, + STATE(16493), 1, + sym_longtycon, + STATE(17978), 1, + sym_tyseq, + STATE(19235), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17837), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18213), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16503), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [816777] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816808] = 17, + ACTIONS(18341), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18343), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18345), 1, + sym__symbolic_ident, + ACTIONS(18347), 1, + anon_sym_LPAREN, + ACTIONS(18349), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(14613), 1, + sym_tyvar, + STATE(14615), 1, + sym_longtycon, + STATE(14641), 1, + sym_tycon, + STATE(18028), 1, + sym_tyseq, + STATE(19147), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15212), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16124), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14616), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [816867] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816898] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816929] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816960] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [816991] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [817022] = 17, + ACTIONS(18351), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18353), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18355), 1, + sym__symbolic_ident, + ACTIONS(18357), 1, + anon_sym_LPAREN, + ACTIONS(18359), 1, + anon_sym_LBRACE, + STATE(15165), 1, + sym_tyvar, + STATE(15183), 1, + sym_tycon, + STATE(15218), 1, + sym_longtycon, + STATE(17373), 1, + sym__ty, + STATE(18366), 1, + sym_tyseq, + STATE(19224), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16663), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17646), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15236), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [817081] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [817112] = 17, + ACTIONS(18361), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18363), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18365), 1, + sym__symbolic_ident, + ACTIONS(18367), 1, + anon_sym_LPAREN, + ACTIONS(18369), 1, + anon_sym_LBRACE, + STATE(13255), 1, + sym_tycon, + STATE(13316), 1, + sym_tyvar, + STATE(13322), 1, + sym_longtycon, + STATE(13545), 1, + sym__ty, + STATE(18114), 1, + sym_tyseq, + STATE(18950), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13543), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14103), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13323), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [817171] = 17, + ACTIONS(18361), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18363), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18365), 1, + sym__symbolic_ident, + ACTIONS(18367), 1, + anon_sym_LPAREN, + ACTIONS(18369), 1, + anon_sym_LBRACE, + STATE(13255), 1, + sym_tycon, + STATE(13316), 1, + sym_tyvar, + STATE(13322), 1, + sym_longtycon, + STATE(13552), 1, + sym__ty, + STATE(18114), 1, + sym_tyseq, + STATE(18950), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13543), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14103), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13323), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [817230] = 17, + ACTIONS(18371), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18373), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18375), 1, + sym__symbolic_ident, + ACTIONS(18377), 1, + anon_sym_LPAREN, + ACTIONS(18379), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(10497), 1, + sym_tyvar, + STATE(10501), 1, + sym_longtycon, + STATE(10679), 1, + sym_tycon, + STATE(18033), 1, + sym_tyseq, + STATE(18739), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12412), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12816), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10504), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [817289] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [817320] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [817351] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [817382] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [817413] = 17, + ACTIONS(18381), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18383), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18385), 1, + sym__symbolic_ident, + ACTIONS(18387), 1, + anon_sym_LPAREN, + ACTIONS(18389), 1, + anon_sym_LBRACE, + STATE(9543), 1, + sym_tyvar, + STATE(9546), 1, + sym_longtycon, + STATE(9711), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(18038), 1, + sym_tyseq, + STATE(19077), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11650), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12418), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9551), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [817472] = 17, + ACTIONS(18361), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18363), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18365), 1, + sym__symbolic_ident, + ACTIONS(18367), 1, + anon_sym_LPAREN, + ACTIONS(18369), 1, + anon_sym_LBRACE, + STATE(13255), 1, + sym_tycon, + STATE(13316), 1, + sym_tyvar, + STATE(13322), 1, + sym_longtycon, + STATE(13570), 1, + sym__ty, + STATE(18114), 1, + sym_tyseq, + STATE(18950), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13543), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14103), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13323), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [817531] = 17, + ACTIONS(18361), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18363), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18365), 1, + sym__symbolic_ident, + ACTIONS(18367), 1, + anon_sym_LPAREN, + ACTIONS(18369), 1, + anon_sym_LBRACE, + STATE(13255), 1, + sym_tycon, + STATE(13316), 1, + sym_tyvar, + STATE(13322), 1, + sym_longtycon, + STATE(13575), 1, + sym__ty, + STATE(18114), 1, + sym_tyseq, + STATE(18950), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13543), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14103), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13323), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [817590] = 17, + ACTIONS(18391), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18393), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18395), 1, + sym__symbolic_ident, + ACTIONS(18397), 1, + anon_sym_LPAREN, + ACTIONS(18399), 1, + anon_sym_LBRACE, + STATE(9737), 1, + sym_tyvar, + STATE(9738), 1, + sym_longtycon, + STATE(9772), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(18052), 1, + sym_tyseq, + STATE(19179), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11661), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12429), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9739), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [817649] = 17, + ACTIONS(18401), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18403), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18405), 1, + sym__symbolic_ident, + ACTIONS(18407), 1, + anon_sym_LPAREN, + ACTIONS(18409), 1, + anon_sym_LBRACE, + STATE(16967), 1, + sym_tyvar, + STATE(16977), 1, + sym_tycon, + STATE(16978), 1, + sym_longtycon, + STATE(17373), 1, + sym__ty, + STATE(18125), 1, + sym_tyseq, + STATE(18914), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18461), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18932), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16983), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [817708] = 17, + ACTIONS(18411), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18413), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18415), 1, + sym__symbolic_ident, + ACTIONS(18417), 1, + anon_sym_LPAREN, + ACTIONS(18419), 1, + anon_sym_LBRACE, + STATE(12698), 1, + sym_tycon, + STATE(12876), 1, + sym_tyvar, + STATE(12877), 1, + sym_longtycon, + STATE(13199), 1, + sym__ty, + STATE(18049), 1, + sym_tyseq, + STATE(18961), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13498), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13602), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12879), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [817767] = 17, + ACTIONS(18421), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18423), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18425), 1, + sym__symbolic_ident, + ACTIONS(18427), 1, + anon_sym_LPAREN, + ACTIONS(18429), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(14997), 1, + sym_tyvar, + STATE(14998), 1, + sym_longtycon, + STATE(15025), 1, + sym_tycon, + STATE(18054), 1, + sym_tyseq, + STATE(19113), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16159), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16531), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14999), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [817826] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [817857] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [817888] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [817919] = 17, + ACTIONS(18411), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18413), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18415), 1, + sym__symbolic_ident, + ACTIONS(18417), 1, + anon_sym_LPAREN, + ACTIONS(18419), 1, + anon_sym_LBRACE, + STATE(12698), 1, + sym_tycon, + STATE(12876), 1, + sym_tyvar, + STATE(12877), 1, + sym_longtycon, + STATE(13241), 1, + sym__ty, + STATE(18049), 1, + sym_tyseq, + STATE(18961), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13498), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13602), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12879), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [817978] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [818009] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [818040] = 17, + ACTIONS(18431), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18433), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18435), 1, + sym__symbolic_ident, + ACTIONS(18437), 1, + anon_sym_LPAREN, + ACTIONS(18439), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15011), 1, + sym_tyvar, + STATE(15012), 1, + sym_longtycon, + STATE(15029), 1, + sym_tycon, + STATE(18066), 1, + sym_tyseq, + STATE(18896), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16212), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16534), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15014), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [818099] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [818130] = 17, + ACTIONS(18441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18443), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18445), 1, + sym__symbolic_ident, + ACTIONS(18447), 1, + anon_sym_LPAREN, + ACTIONS(18449), 1, + anon_sym_LBRACE, + STATE(14133), 1, + sym_tycon, + STATE(14150), 1, + sym_tyvar, + STATE(14151), 1, + sym_longtycon, + STATE(14933), 1, + sym__ty, + STATE(18161), 1, + sym_tyseq, + STATE(18761), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14387), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14549), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14156), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [818189] = 17, + ACTIONS(18441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18443), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18445), 1, + sym__symbolic_ident, + ACTIONS(18447), 1, + anon_sym_LPAREN, + ACTIONS(18449), 1, + anon_sym_LBRACE, + STATE(14133), 1, + sym_tycon, + STATE(14150), 1, + sym_tyvar, + STATE(14151), 1, + sym_longtycon, + STATE(14934), 1, + sym__ty, + STATE(18161), 1, + sym_tyseq, + STATE(18761), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14387), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14549), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14156), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [818248] = 17, + ACTIONS(18451), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18453), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18455), 1, + sym__symbolic_ident, + ACTIONS(18457), 1, + anon_sym_LPAREN, + ACTIONS(18459), 1, + anon_sym_LBRACE, + STATE(9777), 1, + sym_tyvar, + STATE(9778), 1, + sym_longtycon, + STATE(9841), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(18069), 1, + sym_tyseq, + STATE(19173), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11674), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12433), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9782), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [818307] = 17, + ACTIONS(18441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18443), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18445), 1, + sym__symbolic_ident, + ACTIONS(18447), 1, + anon_sym_LPAREN, + ACTIONS(18449), 1, + anon_sym_LBRACE, + STATE(8522), 1, + sym__ty, + STATE(14133), 1, + sym_tycon, + STATE(14150), 1, + sym_tyvar, + STATE(14151), 1, + sym_longtycon, + STATE(18161), 1, + sym_tyseq, + STATE(18761), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14387), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14549), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14156), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [818366] = 17, + ACTIONS(18441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18443), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18445), 1, + sym__symbolic_ident, + ACTIONS(18447), 1, + anon_sym_LPAREN, + ACTIONS(18449), 1, + anon_sym_LBRACE, + STATE(8523), 1, + sym__ty, + STATE(14133), 1, + sym_tycon, + STATE(14150), 1, + sym_tyvar, + STATE(14151), 1, + sym_longtycon, + STATE(18161), 1, + sym_tyseq, + STATE(18761), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14387), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14549), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14156), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [818425] = 5, + ACTIONS(18463), 1, + anon_sym_and, + STATE(12410), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18465), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(18461), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [818460] = 17, + ACTIONS(18467), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18469), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18471), 1, + sym__symbolic_ident, + ACTIONS(18473), 1, + anon_sym_LPAREN, + ACTIONS(18475), 1, + anon_sym_LBRACE, + STATE(9272), 1, + sym_tyvar, + STATE(9273), 1, + sym_longtycon, + STATE(9358), 1, + sym_tycon, + STATE(10334), 1, + sym__ty, + STATE(18077), 1, + sym_tyseq, + STATE(18878), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(10436), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11684), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9275), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [818519] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [818550] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [818581] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(18477), 1, + anon_sym_STAR, + STATE(12272), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [818616] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [818647] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(12416), 20, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_of, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [818678] = 17, + ACTIONS(18479), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18481), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18483), 1, + sym__symbolic_ident, + ACTIONS(18485), 1, + anon_sym_LPAREN, + ACTIONS(18487), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(14382), 1, + sym_tycon, + STATE(14383), 1, + sym_tyvar, + STATE(14386), 1, + sym_longtycon, + STATE(18083), 1, + sym_tyseq, + STATE(18988), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15006), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15226), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14325), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [818737] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23754), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [818796] = 17, + ACTIONS(18489), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18491), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18493), 1, + sym__symbolic_ident, + ACTIONS(18495), 1, + anon_sym_LPAREN, + ACTIONS(18497), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(16653), 1, + sym_tyvar, + STATE(16654), 1, + sym_tycon, + STATE(16655), 1, + sym_longtycon, + STATE(18565), 1, + sym_tyseq, + STATE(19090), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17711), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17981), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16657), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [818855] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13042), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [818886] = 11, + ACTIONS(17498), 1, + anon_sym_LPAREN, + ACTIONS(17502), 1, + anon_sym_COLON, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13373), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(17500), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + ACTIONS(17508), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [818933] = 5, + ACTIONS(18117), 1, + anon_sym_and, + STATE(12053), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18501), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(18499), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [818968] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12418), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [818999] = 5, + ACTIONS(18503), 1, + anon_sym_STAR, + STATE(12287), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [819034] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13032), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13034), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [819065] = 17, + ACTIONS(18505), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18507), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18509), 1, + sym__symbolic_ident, + ACTIONS(18511), 1, + anon_sym_LPAREN, + ACTIONS(18513), 1, + anon_sym_LBRACE, + STATE(9036), 1, + sym__ty, + STATE(18107), 1, + sym_tycon, + STATE(18244), 1, + sym_tyvar, + STATE(18253), 1, + sym_longtycon, + STATE(18522), 1, + sym_tyseq, + STATE(19182), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(21163), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24228), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(24751), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18279), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [819124] = 17, + ACTIONS(18515), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18517), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18519), 1, + sym__symbolic_ident, + ACTIONS(18521), 1, + anon_sym_LPAREN, + ACTIONS(18523), 1, + anon_sym_LBRACE, + STATE(13028), 1, + sym_tycon, + STATE(13257), 1, + sym_tyvar, + STATE(13277), 1, + sym_longtycon, + STATE(13552), 1, + sym__ty, + STATE(18633), 1, + sym_tyseq, + STATE(18829), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13590), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13867), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13281), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [819183] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13024), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13026), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [819214] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13036), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13038), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [819245] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21642), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [819304] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13044), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13046), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [819335] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13048), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13050), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [819366] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_BQUOTE, + [819397] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(18477), 1, + anon_sym_STAR, + STATE(12273), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [819432] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(18525), 1, + anon_sym_STAR, + STATE(12273), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [819467] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13052), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13054), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [819498] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13056), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13058), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [819529] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21878), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [819588] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13060), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13062), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [819619] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13072), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13074), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [819650] = 17, + ACTIONS(18505), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18507), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18509), 1, + sym__symbolic_ident, + ACTIONS(18511), 1, + anon_sym_LPAREN, + ACTIONS(18513), 1, + anon_sym_LBRACE, + STATE(8980), 1, + sym__ty, + STATE(18107), 1, + sym_tycon, + STATE(18244), 1, + sym_tyvar, + STATE(18253), 1, + sym_longtycon, + STATE(18522), 1, + sym_tyseq, + STATE(19182), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(21163), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24228), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(24751), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18279), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [819709] = 17, + ACTIONS(18515), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18517), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18519), 1, + sym__symbolic_ident, + ACTIONS(18521), 1, + anon_sym_LPAREN, + ACTIONS(18523), 1, + anon_sym_LBRACE, + STATE(13028), 1, + sym_tycon, + STATE(13257), 1, + sym_tyvar, + STATE(13277), 1, + sym_longtycon, + STATE(13575), 1, + sym__ty, + STATE(18633), 1, + sym_tyseq, + STATE(18829), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13590), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13867), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13281), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [819768] = 4, + ACTIONS(18528), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [819801] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22677), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [819860] = 17, + ACTIONS(18530), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18532), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18534), 1, + sym__symbolic_ident, + ACTIONS(18536), 1, + anon_sym_LPAREN, + ACTIONS(18538), 1, + anon_sym_LBRACE, + STATE(11913), 1, + sym_tyvar, + STATE(11914), 1, + sym_longtycon, + STATE(11959), 1, + sym_tycon, + STATE(13199), 1, + sym__ty, + STATE(18178), 1, + sym_tyseq, + STATE(19249), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13095), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13416), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11915), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [819919] = 5, + ACTIONS(18540), 1, + anon_sym_STAR, + STATE(12339), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15932), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [819954] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23242), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [820013] = 17, + ACTIONS(18530), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18532), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18534), 1, + sym__symbolic_ident, + ACTIONS(18536), 1, + anon_sym_LPAREN, + ACTIONS(18538), 1, + anon_sym_LBRACE, + STATE(11913), 1, + sym_tyvar, + STATE(11914), 1, + sym_longtycon, + STATE(11959), 1, + sym_tycon, + STATE(13241), 1, + sym__ty, + STATE(18178), 1, + sym_tyseq, + STATE(19249), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13095), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13416), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11915), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [820072] = 5, + ACTIONS(18503), 1, + anon_sym_STAR, + STATE(12288), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [820107] = 5, + ACTIONS(18542), 1, + anon_sym_STAR, + STATE(12288), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [820142] = 5, + ACTIONS(18545), 1, + anon_sym_STAR, + STATE(12345), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15932), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [820177] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23614), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [820236] = 17, + ACTIONS(18547), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18549), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18551), 1, + sym__symbolic_ident, + ACTIONS(18553), 1, + anon_sym_LPAREN, + ACTIONS(18555), 1, + anon_sym_LBRACE, + STATE(8882), 1, + sym_tyvar, + STATE(8916), 1, + sym_longtycon, + STATE(8946), 1, + sym_tycon, + STATE(10040), 1, + sym__ty, + STATE(18276), 1, + sym_tyseq, + STATE(18917), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(9186), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9497), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8914), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [820295] = 4, + ACTIONS(18557), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [820328] = 17, + ACTIONS(18547), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18549), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18551), 1, + sym__symbolic_ident, + ACTIONS(18553), 1, + anon_sym_LPAREN, + ACTIONS(18555), 1, + anon_sym_LBRACE, + STATE(8882), 1, + sym_tyvar, + STATE(8916), 1, + sym_longtycon, + STATE(8946), 1, + sym_tycon, + STATE(10041), 1, + sym__ty, + STATE(18276), 1, + sym_tyseq, + STATE(18917), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(9186), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9497), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8914), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [820387] = 17, + ACTIONS(18547), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18549), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18551), 1, + sym__symbolic_ident, + ACTIONS(18553), 1, + anon_sym_LPAREN, + ACTIONS(18555), 1, + anon_sym_LBRACE, + STATE(8522), 1, + sym__ty, + STATE(8882), 1, + sym_tyvar, + STATE(8916), 1, + sym_longtycon, + STATE(8946), 1, + sym_tycon, + STATE(18276), 1, + sym_tyseq, + STATE(18917), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(9186), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9497), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8914), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [820446] = 17, + ACTIONS(18547), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18549), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18551), 1, + sym__symbolic_ident, + ACTIONS(18553), 1, + anon_sym_LPAREN, + ACTIONS(18555), 1, + anon_sym_LBRACE, + STATE(8523), 1, + sym__ty, + STATE(8882), 1, + sym_tyvar, + STATE(8916), 1, + sym_longtycon, + STATE(8946), 1, + sym_tycon, + STATE(18276), 1, + sym_tyseq, + STATE(18917), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(9186), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9497), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8914), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [820505] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13076), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13078), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [820536] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23958), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [820595] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13066), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [820626] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13276), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13278), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [820657] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12888), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12890), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [820688] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13084), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13086), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [820719] = 4, + ACTIONS(18559), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [820752] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12946), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12948), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [820783] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12950), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12952), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [820814] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12962), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12964), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [820845] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24194), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [820904] = 4, + ACTIONS(18561), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16505), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [820937] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24360), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [820996] = 5, + ACTIONS(18563), 1, + anon_sym_STAR, + STATE(12320), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(15932), 17, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [821031] = 4, + ACTIONS(18565), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16505), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [821064] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24699), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [821123] = 5, + ACTIONS(18567), 1, + anon_sym_STAR, + STATE(12324), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(15932), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [821158] = 4, + ACTIONS(18569), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [821191] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12966), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12968), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [821222] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24359), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [821281] = 5, + ACTIONS(18571), 1, + anon_sym_STAR, + STATE(12337), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(15932), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [821316] = 5, + ACTIONS(18573), 1, + anon_sym_STAR, + STATE(12372), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15932), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [821351] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21803), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [821410] = 8, + ACTIONS(18575), 1, + anon_sym_COLON, + ACTIONS(18577), 1, + anon_sym_andalso, + ACTIONS(18579), 1, + anon_sym_orelse, + ACTIONS(18581), 1, + anon_sym_handle, + ACTIONS(18583), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [821451] = 5, + ACTIONS(18563), 1, + anon_sym_STAR, + STATE(12321), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(15958), 17, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [821486] = 5, + ACTIONS(18585), 1, + anon_sym_STAR, + STATE(12321), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 17, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [821521] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(18588), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [821554] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24689), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [821613] = 5, + ACTIONS(18567), 1, + anon_sym_STAR, + STATE(12325), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(15958), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [821648] = 5, + ACTIONS(18590), 1, + anon_sym_STAR, + STATE(12325), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(14005), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [821683] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(18593), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [821716] = 17, + ACTIONS(18595), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18597), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18599), 1, + sym__symbolic_ident, + ACTIONS(18601), 1, + anon_sym_LPAREN, + ACTIONS(18603), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(8908), 1, + sym_tycon, + STATE(8930), 1, + sym_longtycon, + STATE(8934), 1, + sym_tyvar, + STATE(17990), 1, + sym_tyseq, + STATE(19081), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(9261), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9868), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8834), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [821775] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13016), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13018), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [821806] = 5, + ACTIONS(17431), 1, + anon_sym_and, + STATE(12093), 1, + aux_sym__strbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18607), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(18605), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [821841] = 7, + ACTIONS(18575), 1, + anon_sym_COLON, + ACTIONS(18577), 1, + anon_sym_andalso, + ACTIONS(18579), 1, + anon_sym_orelse, + ACTIONS(18581), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16653), 15, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [821880] = 4, + ACTIONS(18609), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [821913] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22819), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [821972] = 7, + ACTIONS(18611), 1, + anon_sym_COLON, + ACTIONS(18613), 1, + anon_sym_andalso, + ACTIONS(18615), 1, + anon_sym_orelse, + ACTIONS(18617), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16653), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [822011] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(18619), 1, + anon_sym_STAR, + STATE(12393), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [822046] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21623), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [822105] = 8, + ACTIONS(18611), 1, + anon_sym_COLON, + ACTIONS(18613), 1, + anon_sym_andalso, + ACTIONS(18615), 1, + anon_sym_orelse, + ACTIONS(18617), 1, + anon_sym_handle, + ACTIONS(18621), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [822146] = 5, + ACTIONS(18571), 1, + anon_sym_STAR, + STATE(12338), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(15958), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [822181] = 5, + ACTIONS(18623), 1, + anon_sym_STAR, + STATE(12338), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(14005), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [822216] = 5, + ACTIONS(18540), 1, + anon_sym_STAR, + STATE(12340), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15958), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [822251] = 5, + ACTIONS(18626), 1, + anon_sym_STAR, + STATE(12340), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [822286] = 4, + ACTIONS(18629), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [822319] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22314), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [822378] = 17, + ACTIONS(18515), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18517), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18519), 1, + sym__symbolic_ident, + ACTIONS(18521), 1, + anon_sym_LPAREN, + ACTIONS(18523), 1, + anon_sym_LBRACE, + STATE(13028), 1, + sym_tycon, + STATE(13257), 1, + sym_tyvar, + STATE(13277), 1, + sym_longtycon, + STATE(13545), 1, + sym__ty, + STATE(18633), 1, + sym_tyseq, + STATE(18829), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13590), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13867), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13281), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [822437] = 17, + ACTIONS(18631), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18633), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18635), 1, + sym__symbolic_ident, + ACTIONS(18637), 1, + anon_sym_LPAREN, + ACTIONS(18639), 1, + anon_sym_LBRACE, + STATE(13376), 1, + sym_tycon, + STATE(13446), 1, + sym_tyvar, + STATE(13465), 1, + sym_longtycon, + STATE(13552), 1, + sym__ty, + STATE(18679), 1, + sym_tyseq, + STATE(19048), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13916), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14168), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13474), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [822496] = 5, + ACTIONS(18545), 1, + anon_sym_STAR, + STATE(12346), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15958), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [822531] = 5, + ACTIONS(18641), 1, + anon_sym_STAR, + STATE(12346), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [822566] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(18644), 1, + anon_sym_STAR, + STATE(12416), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [822601] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23122), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [822660] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(18646), 1, + anon_sym_STAR, + STATE(12427), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [822695] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23842), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [822754] = 7, + ACTIONS(18648), 1, + anon_sym_COLON, + ACTIONS(18650), 1, + anon_sym_andalso, + ACTIONS(18652), 1, + anon_sym_orelse, + ACTIONS(18654), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16653), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [822793] = 4, + ACTIONS(18656), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [822826] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12892), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12894), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [822857] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24645), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [822916] = 4, + ACTIONS(18658), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [822949] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12954), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12956), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [822980] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22853), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [823039] = 4, + ACTIONS(18660), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16505), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [823072] = 17, + ACTIONS(18515), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18517), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18519), 1, + sym__symbolic_ident, + ACTIONS(18521), 1, + anon_sym_LPAREN, + ACTIONS(18523), 1, + anon_sym_LBRACE, + STATE(13028), 1, + sym_tycon, + STATE(13257), 1, + sym_tyvar, + STATE(13277), 1, + sym_longtycon, + STATE(13570), 1, + sym__ty, + STATE(18633), 1, + sym_tyseq, + STATE(18829), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13590), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13867), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13281), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [823131] = 17, + ACTIONS(18631), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18633), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18635), 1, + sym__symbolic_ident, + ACTIONS(18637), 1, + anon_sym_LPAREN, + ACTIONS(18639), 1, + anon_sym_LBRACE, + STATE(13376), 1, + sym_tycon, + STATE(13446), 1, + sym_tyvar, + STATE(13465), 1, + sym_longtycon, + STATE(13575), 1, + sym__ty, + STATE(18679), 1, + sym_tyseq, + STATE(19048), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13916), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14168), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13474), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [823190] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22989), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [823249] = 4, + ACTIONS(18662), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [823282] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22062), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [823341] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12958), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12960), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [823372] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13068), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13070), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [823403] = 4, + ACTIONS(18664), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [823436] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13080), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13082), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [823467] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21590), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [823526] = 4, + ACTIONS(18666), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16526), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [823559] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13130), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13132), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [823590] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22287), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [823649] = 5, + ACTIONS(18573), 1, + anon_sym_STAR, + STATE(12373), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(15958), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [823684] = 5, + ACTIONS(18668), 1, + anon_sym_STAR, + STATE(12373), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14005), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [823719] = 7, + ACTIONS(18575), 1, + anon_sym_COLON, + ACTIONS(18577), 1, + anon_sym_andalso, + ACTIONS(18579), 1, + anon_sym_orelse, + ACTIONS(18581), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 15, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [823758] = 7, + ACTIONS(18575), 1, + anon_sym_COLON, + ACTIONS(18577), 1, + anon_sym_andalso, + ACTIONS(18579), 1, + anon_sym_orelse, + ACTIONS(18581), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 15, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [823797] = 17, + ACTIONS(18671), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18673), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18675), 1, + sym__symbolic_ident, + ACTIONS(18677), 1, + anon_sym_LPAREN, + ACTIONS(18679), 1, + anon_sym_LBRACE, + STATE(12024), 1, + sym_tyvar, + STATE(12025), 1, + sym_longtycon, + STATE(12046), 1, + sym_tycon, + STATE(13199), 1, + sym__ty, + STATE(18363), 1, + sym_tyseq, + STATE(18764), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13171), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13378), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12026), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [823856] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23211), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [823915] = 4, + ACTIONS(18681), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [823948] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24311), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [824007] = 7, + ACTIONS(18575), 1, + anon_sym_COLON, + ACTIONS(18577), 1, + anon_sym_andalso, + ACTIONS(18579), 1, + anon_sym_orelse, + ACTIONS(18581), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 15, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [824046] = 4, + ACTIONS(18575), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 18, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [824079] = 8, + ACTIONS(18575), 1, + anon_sym_COLON, + ACTIONS(18577), 1, + anon_sym_andalso, + ACTIONS(18579), 1, + anon_sym_orelse, + ACTIONS(18581), 1, + anon_sym_handle, + ACTIONS(18683), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [824120] = 4, + ACTIONS(18685), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [824153] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24493), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [824212] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(18687), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [824245] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13280), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13282), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [824276] = 17, + ACTIONS(18671), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18673), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18675), 1, + sym__symbolic_ident, + ACTIONS(18677), 1, + anon_sym_LPAREN, + ACTIONS(18679), 1, + anon_sym_LBRACE, + STATE(12024), 1, + sym_tyvar, + STATE(12025), 1, + sym_longtycon, + STATE(12046), 1, + sym_tycon, + STATE(13241), 1, + sym__ty, + STATE(18363), 1, + sym_tyseq, + STATE(18764), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13171), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13378), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12026), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [824335] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21495), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [824394] = 7, + ACTIONS(18611), 1, + anon_sym_COLON, + ACTIONS(18613), 1, + anon_sym_andalso, + ACTIONS(18615), 1, + anon_sym_orelse, + ACTIONS(18617), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [824433] = 7, + ACTIONS(18611), 1, + anon_sym_COLON, + ACTIONS(18613), 1, + anon_sym_andalso, + ACTIONS(18615), 1, + anon_sym_orelse, + ACTIONS(18617), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [824472] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22785), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [824531] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 21, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_in, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [824562] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(18619), 1, + anon_sym_STAR, + STATE(12394), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [824597] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(18689), 1, + anon_sym_STAR, + STATE(12394), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [824632] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(18692), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [824665] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24964), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [824724] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23811), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [824783] = 7, + ACTIONS(18611), 1, + anon_sym_COLON, + ACTIONS(18613), 1, + anon_sym_andalso, + ACTIONS(18615), 1, + anon_sym_orelse, + ACTIONS(18617), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [824822] = 4, + ACTIONS(18611), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 19, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [824855] = 8, + ACTIONS(18611), 1, + anon_sym_COLON, + ACTIONS(18613), 1, + anon_sym_andalso, + ACTIONS(18615), 1, + anon_sym_orelse, + ACTIONS(18617), 1, + anon_sym_handle, + ACTIONS(18694), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [824896] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(18696), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [824929] = 17, + ACTIONS(17369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17371), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17373), 1, + sym__symbolic_ident, + ACTIONS(17375), 1, + anon_sym_LPAREN, + ACTIONS(17377), 1, + anon_sym_LBRACE, + STATE(14124), 1, + sym_longtycon, + STATE(14142), 1, + sym_tycon, + STATE(14199), 1, + sym_tyvar, + STATE(14942), 1, + sym__ty, + STATE(18325), 1, + sym_tyseq, + STATE(19236), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14361), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14562), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14123), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [824988] = 17, + ACTIONS(17369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17371), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17373), 1, + sym__symbolic_ident, + ACTIONS(17375), 1, + anon_sym_LPAREN, + ACTIONS(17377), 1, + anon_sym_LBRACE, + STATE(14124), 1, + sym_longtycon, + STATE(14142), 1, + sym_tycon, + STATE(14199), 1, + sym_tyvar, + STATE(14943), 1, + sym__ty, + STATE(18325), 1, + sym_tyseq, + STATE(19236), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14361), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14562), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14123), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [825047] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21399), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [825106] = 4, + ACTIONS(18698), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [825139] = 17, + ACTIONS(17369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17371), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17373), 1, + sym__symbolic_ident, + ACTIONS(17375), 1, + anon_sym_LPAREN, + ACTIONS(17377), 1, + anon_sym_LBRACE, + STATE(8522), 1, + sym__ty, + STATE(14124), 1, + sym_longtycon, + STATE(14142), 1, + sym_tycon, + STATE(14199), 1, + sym_tyvar, + STATE(18325), 1, + sym_tyseq, + STATE(19236), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14361), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14562), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14123), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [825198] = 17, + ACTIONS(17369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17371), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17373), 1, + sym__symbolic_ident, + ACTIONS(17375), 1, + anon_sym_LPAREN, + ACTIONS(17377), 1, + anon_sym_LBRACE, + STATE(8523), 1, + sym__ty, + STATE(14124), 1, + sym_longtycon, + STATE(14142), 1, + sym_tycon, + STATE(14199), 1, + sym_tyvar, + STATE(18325), 1, + sym_tyseq, + STATE(19236), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14361), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14562), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14123), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [825257] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24933), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [825316] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21718), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [825375] = 5, + ACTIONS(18463), 1, + anon_sym_and, + STATE(12059), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18702), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(18700), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [825410] = 5, + ACTIONS(18706), 1, + anon_sym_and, + STATE(12506), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18708), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(18704), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [825445] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(18710), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 20, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [825478] = 17, + ACTIONS(17389), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17391), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17393), 1, + sym__symbolic_ident, + ACTIONS(17395), 1, + anon_sym_LPAREN, + ACTIONS(17397), 1, + anon_sym_LBRACE, + STATE(8967), 1, + sym_tyvar, + STATE(8968), 1, + sym_longtycon, + STATE(8982), 1, + sym_tycon, + STATE(10674), 1, + sym__ty, + STATE(18278), 1, + sym_tyseq, + STATE(18734), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(9760), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10626), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8969), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [825537] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21948), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [825596] = 8, + ACTIONS(18648), 1, + anon_sym_COLON, + ACTIONS(18650), 1, + anon_sym_andalso, + ACTIONS(18652), 1, + anon_sym_orelse, + ACTIONS(18654), 1, + anon_sym_handle, + ACTIONS(18712), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [825637] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(18644), 1, + anon_sym_STAR, + STATE(12417), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [825672] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(18714), 1, + anon_sym_STAR, + STATE(12417), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [825707] = 4, + ACTIONS(18717), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [825740] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13292), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13294), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [825771] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12696), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12698), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [825802] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12770), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12772), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [825833] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12774), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12776), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [825864] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12784), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12786), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [825895] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12796), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12798), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [825926] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12842), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12844), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [825957] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22157), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [826016] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(18646), 1, + anon_sym_STAR, + STATE(12428), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [826051] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(18719), 1, + anon_sym_STAR, + STATE(12428), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [826086] = 4, + ACTIONS(18722), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [826119] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22397), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [826178] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12970), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12972), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [826209] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13344), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [826240] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(18724), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 20, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [826273] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22648), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [826332] = 7, + ACTIONS(18648), 1, + anon_sym_COLON, + ACTIONS(18650), 1, + anon_sym_andalso, + ACTIONS(18652), 1, + anon_sym_orelse, + ACTIONS(18654), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [826371] = 7, + ACTIONS(18648), 1, + anon_sym_COLON, + ACTIONS(18650), 1, + anon_sym_andalso, + ACTIONS(18652), 1, + anon_sym_orelse, + ACTIONS(18654), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [826410] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22880), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [826469] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23060), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [826528] = 7, + ACTIONS(18648), 1, + anon_sym_COLON, + ACTIONS(18650), 1, + anon_sym_andalso, + ACTIONS(18652), 1, + anon_sym_orelse, + ACTIONS(18654), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [826567] = 4, + ACTIONS(18648), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 19, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [826600] = 8, + ACTIONS(18648), 1, + anon_sym_COLON, + ACTIONS(18650), 1, + anon_sym_andalso, + ACTIONS(18652), 1, + anon_sym_orelse, + ACTIONS(18654), 1, + anon_sym_handle, + ACTIONS(18726), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [826641] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23328), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [826700] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23545), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [826759] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23816), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [826818] = 17, + ACTIONS(18728), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18730), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18732), 1, + sym__symbolic_ident, + ACTIONS(18734), 1, + anon_sym_LPAREN, + ACTIONS(18736), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(16354), 1, + sym_tyvar, + STATE(16355), 1, + sym_tycon, + STATE(16356), 1, + sym_longtycon, + STATE(18222), 1, + sym_tyseq, + STATE(19144), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17730), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18331), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16357), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [826877] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24163), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [826936] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24452), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [826995] = 5, + ACTIONS(18575), 1, + anon_sym_COLON, + ACTIONS(18577), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 17, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [827030] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13028), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13030), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [827061] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24627), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [827120] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22153), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [827179] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13260), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13262), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [827210] = 17, + ACTIONS(18631), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18633), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18635), 1, + sym__symbolic_ident, + ACTIONS(18637), 1, + anon_sym_LPAREN, + ACTIONS(18639), 1, + anon_sym_LBRACE, + STATE(13376), 1, + sym_tycon, + STATE(13446), 1, + sym_tyvar, + STATE(13465), 1, + sym_longtycon, + STATE(13545), 1, + sym__ty, + STATE(18679), 1, + sym_tyseq, + STATE(19048), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13916), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14168), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13474), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [827269] = 17, + ACTIONS(18738), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18740), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18742), 1, + sym__symbolic_ident, + ACTIONS(18744), 1, + anon_sym_LPAREN, + ACTIONS(18746), 1, + anon_sym_LBRACE, + STATE(13108), 1, + sym_tyvar, + STATE(13111), 1, + sym_longtycon, + STATE(13232), 1, + sym_tycon, + STATE(13552), 1, + sym__ty, + STATE(18530), 1, + sym_tyseq, + STATE(18893), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13668), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14052), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13112), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [827328] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22482), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [827387] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22151), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [827446] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23197), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [827505] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22115), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [827564] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13264), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13266), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [827595] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13268), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13270), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [827626] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22805), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [827685] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13272), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13274), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [827716] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23707), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [827775] = 5, + ACTIONS(18611), 1, + anon_sym_COLON, + ACTIONS(18613), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [827810] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13284), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13286), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [827841] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24560), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [827900] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13288), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13290), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [827931] = 17, + ACTIONS(18631), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18633), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18635), 1, + sym__symbolic_ident, + ACTIONS(18637), 1, + anon_sym_LPAREN, + ACTIONS(18639), 1, + anon_sym_LBRACE, + STATE(13376), 1, + sym_tycon, + STATE(13446), 1, + sym_tyvar, + STATE(13465), 1, + sym_longtycon, + STATE(13570), 1, + sym__ty, + STATE(18679), 1, + sym_tyseq, + STATE(19048), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13916), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14168), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13474), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [827990] = 17, + ACTIONS(18738), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18740), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18742), 1, + sym__symbolic_ident, + ACTIONS(18744), 1, + anon_sym_LPAREN, + ACTIONS(18746), 1, + anon_sym_LBRACE, + STATE(13108), 1, + sym_tyvar, + STATE(13111), 1, + sym_longtycon, + STATE(13232), 1, + sym_tycon, + STATE(13575), 1, + sym__ty, + STATE(18530), 1, + sym_tyseq, + STATE(18893), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13668), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14052), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13112), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828049] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21716), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828108] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24703), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828167] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13340), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [828198] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13020), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(13022), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [828229] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12692), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12694), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [828260] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22586), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828319] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12700), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12702), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [828350] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23810), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828409] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21690), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828468] = 17, + ACTIONS(18748), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18750), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18752), 1, + sym__symbolic_ident, + ACTIONS(18754), 1, + anon_sym_LPAREN, + ACTIONS(18756), 1, + anon_sym_LBRACE, + STATE(12726), 1, + sym_tyvar, + STATE(12728), 1, + sym_longtycon, + STATE(12838), 1, + sym_tycon, + STATE(13199), 1, + sym__ty, + STATE(18478), 1, + sym_tyseq, + STATE(19043), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13365), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13656), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12729), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828527] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21961), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828586] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22203), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828645] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22394), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828704] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22608), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828763] = 17, + ACTIONS(18748), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18750), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18752), 1, + sym__symbolic_ident, + ACTIONS(18754), 1, + anon_sym_LPAREN, + ACTIONS(18756), 1, + anon_sym_LBRACE, + STATE(12726), 1, + sym_tyvar, + STATE(12728), 1, + sym_longtycon, + STATE(12838), 1, + sym_tycon, + STATE(13241), 1, + sym__ty, + STATE(18478), 1, + sym_tyseq, + STATE(19043), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13365), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13656), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12729), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828822] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22852), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828881] = 17, + ACTIONS(17842), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17844), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17846), 1, + sym__symbolic_ident, + ACTIONS(17848), 1, + anon_sym_LPAREN, + ACTIONS(17850), 1, + anon_sym_LBRACE, + STATE(9036), 1, + sym__ty, + STATE(9531), 1, + sym_tyvar, + STATE(9902), 1, + sym_tycon, + STATE(9929), 1, + sym_longtycon, + STATE(18238), 1, + sym_tyseq, + STATE(19163), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11299), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12052), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9530), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828940] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23098), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [828999] = 5, + ACTIONS(18648), 1, + anon_sym_COLON, + ACTIONS(18650), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [829034] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23405), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [829093] = 17, + ACTIONS(18758), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18760), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18762), 1, + sym__symbolic_ident, + ACTIONS(18764), 1, + anon_sym_LPAREN, + ACTIONS(18766), 1, + anon_sym_LBRACE, + STATE(17714), 1, + sym_tyvar, + STATE(17753), 1, + sym_longtycon, + STATE(17850), 1, + sym_tycon, + STATE(18407), 1, + sym_tyseq, + STATE(18939), 1, + aux_sym_longvid_repeat1, + STATE(21342), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18948), 2, + sym__paren_ty, + sym_paren_ty, + STATE(20400), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17799), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [829152] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23630), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [829211] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12704), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12706), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [829242] = 17, + ACTIONS(18758), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18760), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18762), 1, + sym__symbolic_ident, + ACTIONS(18764), 1, + anon_sym_LPAREN, + ACTIONS(18766), 1, + anon_sym_LBRACE, + STATE(17714), 1, + sym_tyvar, + STATE(17753), 1, + sym_longtycon, + STATE(17850), 1, + sym_tycon, + STATE(18407), 1, + sym_tyseq, + STATE(18939), 1, + aux_sym_longvid_repeat1, + STATE(21343), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18948), 2, + sym__paren_ty, + sym_paren_ty, + STATE(20400), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17799), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [829301] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12708), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12710), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [829332] = 17, + ACTIONS(18758), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18760), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18762), 1, + sym__symbolic_ident, + ACTIONS(18764), 1, + anon_sym_LPAREN, + ACTIONS(18766), 1, + anon_sym_LBRACE, + STATE(8522), 1, + sym__ty, + STATE(17714), 1, + sym_tyvar, + STATE(17753), 1, + sym_longtycon, + STATE(17850), 1, + sym_tycon, + STATE(18407), 1, + sym_tyseq, + STATE(18939), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18948), 2, + sym__paren_ty, + sym_paren_ty, + STATE(20400), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17799), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [829391] = 17, + ACTIONS(18758), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18760), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18762), 1, + sym__symbolic_ident, + ACTIONS(18764), 1, + anon_sym_LPAREN, + ACTIONS(18766), 1, + anon_sym_LBRACE, + STATE(8523), 1, + sym__ty, + STATE(17714), 1, + sym_tyvar, + STATE(17753), 1, + sym_longtycon, + STATE(17850), 1, + sym_tycon, + STATE(18407), 1, + sym_tyseq, + STATE(18939), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18948), 2, + sym__paren_ty, + sym_paren_ty, + STATE(20400), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17799), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [829450] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23831), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [829509] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12712), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12714), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [829540] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24064), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [829599] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12716), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12718), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [829630] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12720), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12722), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [829661] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12724), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12726), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [829692] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24335), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [829751] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24704), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [829810] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24326), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [829869] = 5, + ACTIONS(18706), 1, + anon_sym_and, + STATE(12064), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18770), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(18768), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [829904] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23205), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [829963] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21724), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830022] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22463), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830081] = 14, + ACTIONS(17896), 1, + anon_sym_val, + ACTIONS(17898), 1, + anon_sym_type, + ACTIONS(17900), 1, + anon_sym_datatype, + ACTIONS(17902), 1, + anon_sym_exception, + ACTIONS(17904), 1, + anon_sym_structure, + ACTIONS(17906), 1, + anon_sym_eqtype, + ACTIONS(17908), 1, + anon_sym_include, + ACTIONS(17910), 1, + anon_sym_sharing, + ACTIONS(18235), 1, + anon_sym_SEMI, + ACTIONS(18772), 1, + anon_sym_end, + STATE(11956), 1, + aux_sym_sig_sigexp_repeat1, + STATE(15720), 1, + sym__spec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15139), 10, + sym_val_spec, + sym_type_spec, + sym_eqtype_spec, + sym_datatype_spec, + sym_datarepl_spec, + sym_exception_spec, + sym_structure_spec, + sym_include_spec, + sym_sharingtype_spec, + sym_sharing_spec, + [830134] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23216), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830193] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24195), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830252] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21548), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830311] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12788), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12790), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [830342] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12792), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12794), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [830373] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21851), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830432] = 17, + ACTIONS(18774), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18776), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18778), 1, + sym__symbolic_ident, + ACTIONS(18780), 1, + anon_sym_LPAREN, + ACTIONS(18782), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15688), 1, + sym_tyvar, + STATE(15726), 1, + sym_tycon, + STATE(15745), 1, + sym_longtycon, + STATE(17974), 1, + sym_tyseq, + STATE(19214), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17625), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17876), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15746), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830491] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12938), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12940), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [830522] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22120), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830581] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22370), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830640] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22644), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830699] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(22920), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830758] = 17, + ACTIONS(17464), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17466), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17468), 1, + sym__symbolic_ident, + ACTIONS(17470), 1, + anon_sym_LPAREN, + ACTIONS(17472), 1, + anon_sym_LBRACE, + STATE(9036), 1, + sym__ty, + STATE(14212), 1, + sym_tyvar, + STATE(14221), 1, + sym_longtycon, + STATE(14300), 1, + sym_tycon, + STATE(18626), 1, + sym_tyseq, + STATE(18833), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14495), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15090), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14235), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830817] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23178), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830876] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23299), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830935] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23389), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [830994] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23442), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831053] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23501), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831112] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23546), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831171] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23604), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831230] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23670), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831289] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23757), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831348] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23812), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831407] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23881), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831466] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23964), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831525] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24018), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831584] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24077), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831643] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24132), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831702] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24181), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831761] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24255), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831820] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24316), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831879] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24374), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831938] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24431), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [831997] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24500), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832056] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24549), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832115] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24594), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832174] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24642), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832233] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24693), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832292] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21370), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832351] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21390), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832410] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21409), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832469] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21429), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832528] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21449), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832587] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21469), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832646] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21488), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832705] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21508), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832764] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21528), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832823] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21547), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832882] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(21567), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [832941] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25002), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833000] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24951), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833059] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24974), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833118] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24923), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833177] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24995), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833236] = 17, + ACTIONS(17464), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17466), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17468), 1, + sym__symbolic_ident, + ACTIONS(17470), 1, + anon_sym_LPAREN, + ACTIONS(17472), 1, + anon_sym_LBRACE, + STATE(8980), 1, + sym__ty, + STATE(14212), 1, + sym_tyvar, + STATE(14221), 1, + sym_longtycon, + STATE(14300), 1, + sym_tycon, + STATE(18626), 1, + sym_tyseq, + STATE(18833), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14495), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15090), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14235), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833295] = 17, + ACTIONS(18784), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18786), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18788), 1, + sym__symbolic_ident, + ACTIONS(18790), 1, + anon_sym_LPAREN, + ACTIONS(18792), 1, + anon_sym_LBRACE, + STATE(12071), 1, + sym_tyvar, + STATE(12072), 1, + sym_longtycon, + STATE(12086), 1, + sym_tycon, + STATE(13199), 1, + sym__ty, + STATE(18191), 1, + sym_tyseq, + STATE(18991), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13035), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13477), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12073), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833354] = 17, + ACTIONS(18784), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18786), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18788), 1, + sym__symbolic_ident, + ACTIONS(18790), 1, + anon_sym_LPAREN, + ACTIONS(18792), 1, + anon_sym_LBRACE, + STATE(12071), 1, + sym_tyvar, + STATE(12072), 1, + sym_longtycon, + STATE(12086), 1, + sym_tycon, + STATE(13241), 1, + sym__ty, + STATE(18191), 1, + sym_tyseq, + STATE(18991), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13035), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13477), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12073), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833413] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24976), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833472] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24999), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833531] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25006), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833590] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25052), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833649] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24884), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833708] = 17, + ACTIONS(18794), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18796), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18798), 1, + sym__symbolic_ident, + ACTIONS(18800), 1, + anon_sym_LPAREN, + ACTIONS(18802), 1, + anon_sym_LBRACE, + STATE(11204), 1, + sym_tyvar, + STATE(11214), 1, + sym_longtycon, + STATE(11525), 1, + sym_tycon, + STATE(13219), 1, + sym__ty, + STATE(18006), 1, + sym_tyseq, + STATE(19180), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12706), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13062), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11439), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833767] = 17, + ACTIONS(18794), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18796), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18798), 1, + sym__symbolic_ident, + ACTIONS(18800), 1, + anon_sym_LPAREN, + ACTIONS(18802), 1, + anon_sym_LBRACE, + STATE(11204), 1, + sym_tyvar, + STATE(11214), 1, + sym_longtycon, + STATE(11525), 1, + sym_tycon, + STATE(13220), 1, + sym__ty, + STATE(18006), 1, + sym_tyseq, + STATE(19180), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12706), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13062), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11439), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833826] = 17, + ACTIONS(18794), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18796), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18798), 1, + sym__symbolic_ident, + ACTIONS(18800), 1, + anon_sym_LPAREN, + ACTIONS(18802), 1, + anon_sym_LBRACE, + STATE(11204), 1, + sym_tyvar, + STATE(11214), 1, + sym_longtycon, + STATE(11525), 1, + sym_tycon, + STATE(12713), 1, + sym__ty, + STATE(18006), 1, + sym_tyseq, + STATE(19180), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12706), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13062), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11439), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833885] = 17, + ACTIONS(18794), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18796), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18798), 1, + sym__symbolic_ident, + ACTIONS(18800), 1, + anon_sym_LPAREN, + ACTIONS(18802), 1, + anon_sym_LBRACE, + STATE(11204), 1, + sym_tyvar, + STATE(11214), 1, + sym_longtycon, + STATE(11525), 1, + sym_tycon, + STATE(12714), 1, + sym__ty, + STATE(18006), 1, + sym_tyseq, + STATE(19180), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12706), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13062), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11439), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [833944] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24901), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834003] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24921), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834062] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24922), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834121] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24953), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834180] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24957), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834239] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym_u201c, + anon_sym_u2018, + ACTIONS(12944), 12, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_let, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_BQUOTE, + [834270] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25008), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834329] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25021), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834388] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25032), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834447] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24870), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834506] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24890), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834565] = 17, + ACTIONS(18804), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18806), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18808), 1, + sym__symbolic_ident, + ACTIONS(18810), 1, + anon_sym_LPAREN, + ACTIONS(18812), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(12132), 1, + sym_tyvar, + STATE(12133), 1, + sym_tycon, + STATE(12134), 1, + sym_longtycon, + STATE(18323), 1, + sym_tyseq, + STATE(19066), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13222), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13516), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12136), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834624] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25031), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834683] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25037), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834742] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25038), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834801] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25045), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834860] = 17, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25048), 1, + sym__ty, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834919] = 17, + ACTIONS(18249), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18251), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18253), 1, + sym__symbolic_ident, + ACTIONS(18255), 1, + anon_sym_LPAREN, + ACTIONS(18257), 1, + anon_sym_LBRACE, + STATE(9036), 1, + sym__ty, + STATE(14230), 1, + sym_tycon, + STATE(14264), 1, + sym_tyvar, + STATE(14302), 1, + sym_longtycon, + STATE(18116), 1, + sym_tyseq, + STATE(19027), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14513), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15112), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14228), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [834978] = 17, + ACTIONS(18249), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18251), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18253), 1, + sym__symbolic_ident, + ACTIONS(18255), 1, + anon_sym_LPAREN, + ACTIONS(18257), 1, + anon_sym_LBRACE, + STATE(8980), 1, + sym__ty, + STATE(14230), 1, + sym_tycon, + STATE(14264), 1, + sym_tyvar, + STATE(14302), 1, + sym_longtycon, + STATE(18116), 1, + sym_tyseq, + STATE(19027), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14513), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15112), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14228), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835037] = 17, + ACTIONS(18441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18443), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18445), 1, + sym__symbolic_ident, + ACTIONS(18447), 1, + anon_sym_LPAREN, + ACTIONS(18449), 1, + anon_sym_LBRACE, + STATE(14133), 1, + sym_tycon, + STATE(14150), 1, + sym_tyvar, + STATE(14151), 1, + sym_longtycon, + STATE(14948), 1, + sym__ty, + STATE(18161), 1, + sym_tyseq, + STATE(18761), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14387), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14549), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14156), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835096] = 17, + ACTIONS(18441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18443), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18445), 1, + sym__symbolic_ident, + ACTIONS(18447), 1, + anon_sym_LPAREN, + ACTIONS(18449), 1, + anon_sym_LBRACE, + STATE(14133), 1, + sym_tycon, + STATE(14150), 1, + sym_tyvar, + STATE(14151), 1, + sym_longtycon, + STATE(14949), 1, + sym__ty, + STATE(18161), 1, + sym_tyseq, + STATE(18761), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14387), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14549), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14156), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835155] = 17, + ACTIONS(18814), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18816), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18818), 1, + sym__symbolic_ident, + ACTIONS(18820), 1, + anon_sym_LPAREN, + ACTIONS(18822), 1, + anon_sym_LBRACE, + STATE(11292), 1, + sym_tyvar, + STATE(11307), 1, + sym_longtycon, + STATE(11384), 1, + sym_tycon, + STATE(12713), 1, + sym__ty, + STATE(18039), 1, + sym_tyseq, + STATE(19109), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12712), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13078), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11308), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835214] = 17, + ACTIONS(18814), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18816), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18818), 1, + sym__symbolic_ident, + ACTIONS(18820), 1, + anon_sym_LPAREN, + ACTIONS(18822), 1, + anon_sym_LBRACE, + STATE(11292), 1, + sym_tyvar, + STATE(11307), 1, + sym_longtycon, + STATE(11384), 1, + sym_tycon, + STATE(12714), 1, + sym__ty, + STATE(18039), 1, + sym_tyseq, + STATE(19109), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12712), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13078), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11308), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835273] = 13, + ACTIONS(18824), 1, + anon_sym_RPAREN, + ACTIONS(18826), 1, + anon_sym_SEMI, + ACTIONS(18829), 1, + anon_sym_val, + ACTIONS(18832), 1, + anon_sym_type, + ACTIONS(18835), 1, + anon_sym_datatype, + ACTIONS(18838), 1, + anon_sym_exception, + ACTIONS(18841), 1, + anon_sym_structure, + ACTIONS(18844), 1, + anon_sym_eqtype, + ACTIONS(18847), 1, + anon_sym_include, + ACTIONS(18850), 1, + anon_sym_sharing, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12600), 2, + sym__spec, + aux_sym_fctbind_repeat1, + STATE(15139), 10, + sym_val_spec, + sym_type_spec, + sym_eqtype_spec, + sym_datatype_spec, + sym_datarepl_spec, + sym_exception_spec, + sym_structure_spec, + sym_include_spec, + sym_sharingtype_spec, + sym_sharing_spec, + [835324] = 17, + ACTIONS(18853), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18855), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18857), 1, + sym__symbolic_ident, + ACTIONS(18859), 1, + anon_sym_LPAREN, + ACTIONS(18861), 1, + anon_sym_LBRACE, + STATE(10334), 1, + sym__ty, + STATE(11298), 1, + sym_tyvar, + STATE(11356), 1, + sym_tycon, + STATE(11408), 1, + sym_longtycon, + STATE(18560), 1, + sym_tyseq, + STATE(18997), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9281), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12889), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13159), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11414), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835383] = 17, + ACTIONS(18738), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18740), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18742), 1, + sym__symbolic_ident, + ACTIONS(18744), 1, + anon_sym_LPAREN, + ACTIONS(18746), 1, + anon_sym_LBRACE, + STATE(13108), 1, + sym_tyvar, + STATE(13111), 1, + sym_longtycon, + STATE(13232), 1, + sym_tycon, + STATE(13545), 1, + sym__ty, + STATE(18530), 1, + sym_tyseq, + STATE(18893), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13668), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14052), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13112), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835442] = 17, + ACTIONS(17842), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17844), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17846), 1, + sym__symbolic_ident, + ACTIONS(17848), 1, + anon_sym_LPAREN, + ACTIONS(17850), 1, + anon_sym_LBRACE, + STATE(9531), 1, + sym_tyvar, + STATE(9902), 1, + sym_tycon, + STATE(9929), 1, + sym_longtycon, + STATE(12881), 1, + sym__ty, + STATE(18238), 1, + sym_tyseq, + STATE(19163), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11299), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12052), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9530), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835501] = 17, + ACTIONS(18738), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18740), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18742), 1, + sym__symbolic_ident, + ACTIONS(18744), 1, + anon_sym_LPAREN, + ACTIONS(18746), 1, + anon_sym_LBRACE, + STATE(13108), 1, + sym_tyvar, + STATE(13111), 1, + sym_longtycon, + STATE(13232), 1, + sym_tycon, + STATE(13570), 1, + sym__ty, + STATE(18530), 1, + sym_tyseq, + STATE(18893), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13668), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14052), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13112), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835560] = 17, + ACTIONS(18814), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18816), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18818), 1, + sym__symbolic_ident, + ACTIONS(18820), 1, + anon_sym_LPAREN, + ACTIONS(18822), 1, + anon_sym_LBRACE, + STATE(11292), 1, + sym_tyvar, + STATE(11307), 1, + sym_longtycon, + STATE(11384), 1, + sym_tycon, + STATE(13312), 1, + sym__ty, + STATE(18039), 1, + sym_tyseq, + STATE(19109), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12712), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13078), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11308), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835619] = 17, + ACTIONS(18814), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18816), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18818), 1, + sym__symbolic_ident, + ACTIONS(18820), 1, + anon_sym_LPAREN, + ACTIONS(18822), 1, + anon_sym_LBRACE, + STATE(11292), 1, + sym_tyvar, + STATE(11307), 1, + sym_longtycon, + STATE(11384), 1, + sym_tycon, + STATE(13313), 1, + sym__ty, + STATE(18039), 1, + sym_tyseq, + STATE(19109), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11719), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12712), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13078), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11308), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835678] = 17, + ACTIONS(18863), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18865), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18867), 1, + sym__symbolic_ident, + ACTIONS(18869), 1, + anon_sym_LPAREN, + ACTIONS(18871), 1, + anon_sym_LBRACE, + STATE(8522), 1, + sym__ty, + STATE(16364), 1, + sym_tyvar, + STATE(16365), 1, + sym_longtycon, + STATE(16390), 1, + sym_tycon, + STATE(18047), 1, + sym_tyseq, + STATE(18978), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17867), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18588), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16366), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835737] = 17, + ACTIONS(18863), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18865), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18867), 1, + sym__symbolic_ident, + ACTIONS(18869), 1, + anon_sym_LPAREN, + ACTIONS(18871), 1, + anon_sym_LBRACE, + STATE(8523), 1, + sym__ty, + STATE(16364), 1, + sym_tyvar, + STATE(16365), 1, + sym_longtycon, + STATE(16390), 1, + sym_tycon, + STATE(18047), 1, + sym_tyseq, + STATE(18978), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17867), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18588), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16366), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835796] = 5, + ACTIONS(18875), 1, + anon_sym_and, + STATE(12069), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18877), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(18873), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [835831] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24764), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835890] = 5, + ACTIONS(18309), 1, + anon_sym_STAR, + STATE(12615), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15958), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [835925] = 17, + ACTIONS(18879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18881), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18883), 1, + sym__symbolic_ident, + ACTIONS(18885), 1, + anon_sym_LPAREN, + ACTIONS(18887), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15164), 1, + sym_tycon, + STATE(15199), 1, + sym_tyvar, + STATE(15205), 1, + sym_longtycon, + STATE(18695), 1, + sym_tyseq, + STATE(19230), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16533), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17400), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15208), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [835984] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24800), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [836043] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24843), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [836102] = 5, + ACTIONS(18889), 1, + anon_sym_STAR, + STATE(12615), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [836137] = 17, + ACTIONS(18863), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18865), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18867), 1, + sym__symbolic_ident, + ACTIONS(18869), 1, + anon_sym_LPAREN, + ACTIONS(18871), 1, + anon_sym_LBRACE, + STATE(16364), 1, + sym_tyvar, + STATE(16365), 1, + sym_longtycon, + STATE(16390), 1, + sym_tycon, + STATE(18047), 1, + sym_tyseq, + STATE(18684), 1, + sym__ty, + STATE(18978), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17867), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18588), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16366), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [836196] = 17, + ACTIONS(18863), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18865), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18867), 1, + sym__symbolic_ident, + ACTIONS(18869), 1, + anon_sym_LPAREN, + ACTIONS(18871), 1, + anon_sym_LBRACE, + STATE(16364), 1, + sym_tyvar, + STATE(16365), 1, + sym_longtycon, + STATE(16390), 1, + sym_tycon, + STATE(18047), 1, + sym_tyseq, + STATE(18685), 1, + sym__ty, + STATE(18978), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17867), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18588), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16366), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [836255] = 17, + ACTIONS(17333), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17335), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17337), 1, + sym__symbolic_ident, + ACTIONS(17339), 1, + anon_sym_LPAREN, + ACTIONS(17341), 1, + anon_sym_LBRACE, + STATE(8522), 1, + sym__ty, + STATE(16377), 1, + sym_tyvar, + STATE(16378), 1, + sym_longtycon, + STATE(16394), 1, + sym_tycon, + STATE(18050), 1, + sym_tyseq, + STATE(18953), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17880), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18613), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16379), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [836314] = 17, + ACTIONS(17333), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17335), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17337), 1, + sym__symbolic_ident, + ACTIONS(17339), 1, + anon_sym_LPAREN, + ACTIONS(17341), 1, + anon_sym_LBRACE, + STATE(8523), 1, + sym__ty, + STATE(16377), 1, + sym_tyvar, + STATE(16378), 1, + sym_longtycon, + STATE(16394), 1, + sym_tycon, + STATE(18050), 1, + sym_tyseq, + STATE(18953), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8406), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17880), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18613), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16379), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [836373] = 5, + ACTIONS(18892), 1, + anon_sym_PIPE, + STATE(12622), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16590), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836408] = 5, + ACTIONS(18892), 1, + anon_sym_PIPE, + STATE(12623), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836443] = 5, + ACTIONS(18892), 1, + anon_sym_PIPE, + STATE(12624), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836478] = 5, + ACTIONS(18892), 1, + anon_sym_PIPE, + STATE(12624), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16562), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836513] = 5, + ACTIONS(18894), 1, + anon_sym_PIPE, + STATE(12624), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14793), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836548] = 5, + ACTIONS(18897), 1, + anon_sym_PIPE, + STATE(12627), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16590), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836583] = 5, + ACTIONS(18897), 1, + anon_sym_PIPE, + STATE(12628), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836618] = 5, + ACTIONS(18897), 1, + anon_sym_PIPE, + STATE(12629), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836653] = 5, + ACTIONS(18897), 1, + anon_sym_PIPE, + STATE(12629), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16562), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836688] = 5, + ACTIONS(18899), 1, + anon_sym_PIPE, + STATE(12629), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14793), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836723] = 5, + ACTIONS(18902), 1, + anon_sym_PIPE, + STATE(12632), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16590), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836758] = 5, + ACTIONS(18902), 1, + anon_sym_PIPE, + STATE(12633), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16556), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836793] = 5, + ACTIONS(18902), 1, + anon_sym_PIPE, + STATE(12634), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16556), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836828] = 5, + ACTIONS(18902), 1, + anon_sym_PIPE, + STATE(12634), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16562), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836863] = 5, + ACTIONS(18904), 1, + anon_sym_PIPE, + STATE(12634), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14793), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836898] = 5, + ACTIONS(16592), 1, + anon_sym_infix, + ACTIONS(18907), 1, + anon_sym_PIPE, + STATE(12637), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836933] = 5, + ACTIONS(16560), 1, + anon_sym_infix, + ACTIONS(18907), 1, + anon_sym_PIPE, + STATE(12638), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [836968] = 5, + ACTIONS(16560), 1, + anon_sym_infix, + ACTIONS(18907), 1, + anon_sym_PIPE, + STATE(12639), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [837003] = 5, + ACTIONS(16564), 1, + anon_sym_infix, + ACTIONS(18907), 1, + anon_sym_PIPE, + STATE(12639), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [837038] = 5, + ACTIONS(14795), 1, + anon_sym_infix, + ACTIONS(18909), 1, + anon_sym_PIPE, + STATE(12639), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [837073] = 5, + ACTIONS(18912), 1, + anon_sym_PIPE, + STATE(12642), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16590), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [837108] = 5, + ACTIONS(18912), 1, + anon_sym_PIPE, + STATE(12643), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [837143] = 5, + ACTIONS(18912), 1, + anon_sym_PIPE, + STATE(12644), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [837178] = 5, + ACTIONS(18912), 1, + anon_sym_PIPE, + STATE(12644), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16562), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [837213] = 5, + ACTIONS(18914), 1, + anon_sym_PIPE, + STATE(12644), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14793), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [837248] = 5, + ACTIONS(18875), 1, + anon_sym_and, + STATE(12609), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18919), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(18917), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [837283] = 17, + ACTIONS(18921), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18923), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18925), 1, + sym__symbolic_ident, + ACTIONS(18927), 1, + anon_sym_LPAREN, + ACTIONS(18929), 1, + anon_sym_LBRACE, + STATE(7189), 1, + sym__ty, + STATE(15266), 1, + sym_tycon, + STATE(15338), 1, + sym_tyvar, + STATE(15373), 1, + sym_longtycon, + STATE(18520), 1, + sym_tyseq, + STATE(19151), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16426), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17142), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15381), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [837342] = 5, + ACTIONS(17325), 1, + anon_sym_PIPE, + STATE(11905), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16590), 18, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [837377] = 5, + ACTIONS(17325), 1, + anon_sym_PIPE, + STATE(12649), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 18, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [837412] = 5, + ACTIONS(17325), 1, + anon_sym_PIPE, + STATE(12650), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16562), 18, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [837447] = 5, + ACTIONS(18931), 1, + anon_sym_PIPE, + STATE(12650), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14793), 18, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [837482] = 5, + ACTIONS(18934), 1, + anon_sym_PIPE, + STATE(12653), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16590), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [837517] = 5, + ACTIONS(18934), 1, + anon_sym_PIPE, + STATE(12654), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [837552] = 5, + ACTIONS(18934), 1, + anon_sym_PIPE, + STATE(12655), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [837587] = 5, + ACTIONS(18934), 1, + anon_sym_PIPE, + STATE(12655), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16562), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [837622] = 5, + ACTIONS(18936), 1, + anon_sym_PIPE, + STATE(12655), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14793), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [837657] = 5, + ACTIONS(16592), 1, + anon_sym_infix, + ACTIONS(18939), 1, + anon_sym_PIPE, + STATE(12658), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [837692] = 5, + ACTIONS(16560), 1, + anon_sym_infix, + ACTIONS(18939), 1, + anon_sym_PIPE, + STATE(12659), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [837727] = 5, + ACTIONS(16560), 1, + anon_sym_infix, + ACTIONS(18939), 1, + anon_sym_PIPE, + STATE(12660), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [837762] = 5, + ACTIONS(16564), 1, + anon_sym_infix, + ACTIONS(18939), 1, + anon_sym_PIPE, + STATE(12660), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [837797] = 5, + ACTIONS(14795), 1, + anon_sym_infix, + ACTIONS(18941), 1, + anon_sym_PIPE, + STATE(12660), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [837832] = 17, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(23383), 1, + sym__ty, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5734), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [837891] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(18944), 1, + anon_sym_STAR, + STATE(12662), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [837925] = 4, + ACTIONS(18947), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [837957] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18023), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(18018), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [837987] = 16, + ACTIONS(17676), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17678), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17680), 1, + sym__symbolic_ident, + ACTIONS(17682), 1, + anon_sym_LPAREN, + ACTIONS(17684), 1, + anon_sym_LBRACE, + STATE(11169), 1, + sym_tyvar, + STATE(11170), 1, + sym_longtycon, + STATE(11516), 1, + sym_tycon, + STATE(18065), 1, + sym_tyseq, + STATE(18754), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12687), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13183), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11172), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [838043] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16721), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16719), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [838081] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16771), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16769), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [838119] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16715), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16713), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [838157] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16758), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16756), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [838195] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16729), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16727), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [838233] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16733), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16731), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [838271] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16737), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16735), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [838309] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16741), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16739), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [838347] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16745), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16743), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [838385] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16749), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16747), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [838423] = 16, + ACTIONS(17646), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17648), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17650), 1, + sym__symbolic_ident, + ACTIONS(17652), 1, + anon_sym_LPAREN, + ACTIONS(17654), 1, + anon_sym_LBRACE, + STATE(13799), 1, + sym_tycon, + STATE(13980), 1, + sym_tyvar, + STATE(13981), 1, + sym_longtycon, + STATE(18246), 1, + sym_tyseq, + STATE(18889), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14293), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14380), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13982), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [838479] = 5, + ACTIONS(18957), 1, + anon_sym_STAR, + STATE(12682), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15932), 17, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [838513] = 4, + ACTIONS(18959), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16505), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [838545] = 16, + ACTIONS(17526), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17528), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17530), 1, + sym__symbolic_ident, + ACTIONS(17532), 1, + anon_sym_LPAREN, + ACTIONS(17534), 1, + anon_sym_LBRACE, + STATE(15486), 1, + sym_tycon, + STATE(16138), 1, + sym_tyvar, + STATE(16141), 1, + sym_longtycon, + STATE(18272), 1, + sym_tyseq, + STATE(19184), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17209), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17847), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16142), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [838601] = 8, + ACTIONS(18581), 1, + anon_sym_handle, + ACTIONS(18961), 1, + anon_sym_COLON, + ACTIONS(18963), 1, + anon_sym_andalso, + ACTIONS(18965), 1, + anon_sym_orelse, + ACTIONS(18967), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [838641] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16653), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [838679] = 5, + ACTIONS(18957), 1, + anon_sym_STAR, + STATE(12683), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15958), 17, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [838713] = 5, + ACTIONS(18977), 1, + anon_sym_STAR, + STATE(12683), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 17, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [838747] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(18980), 1, + anon_sym_STAR, + STATE(12688), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [838781] = 16, + ACTIONS(17399), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17401), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17403), 1, + sym__symbolic_ident, + ACTIONS(17405), 1, + anon_sym_LPAREN, + ACTIONS(17407), 1, + anon_sym_LBRACE, + STATE(14340), 1, + sym_tycon, + STATE(14370), 1, + sym_tyvar, + STATE(14373), 1, + sym_longtycon, + STATE(18241), 1, + sym_tyseq, + STATE(19239), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15129), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15483), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14374), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [838837] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [838869] = 4, + ACTIONS(18982), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16505), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [838901] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(18980), 1, + anon_sym_STAR, + STATE(12689), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [838935] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(18984), 1, + anon_sym_STAR, + STATE(12689), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [838969] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(18987), 1, + anon_sym_STAR, + STATE(12691), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [839003] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(18989), 1, + anon_sym_STAR, + STATE(12691), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [839037] = 4, + ACTIONS(18992), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [839069] = 16, + ACTIONS(18631), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18633), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18635), 1, + sym__symbolic_ident, + ACTIONS(18637), 1, + anon_sym_LPAREN, + ACTIONS(18639), 1, + anon_sym_LBRACE, + STATE(13376), 1, + sym_tycon, + STATE(13446), 1, + sym_tyvar, + STATE(13465), 1, + sym_longtycon, + STATE(18679), 1, + sym_tyseq, + STATE(19048), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11178), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13916), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14168), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13474), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [839125] = 16, + ACTIONS(17882), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17884), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17886), 1, + sym__symbolic_ident, + ACTIONS(17888), 1, + anon_sym_LPAREN, + ACTIONS(17890), 1, + anon_sym_LBRACE, + STATE(14990), 1, + sym_tycon, + STATE(15093), 1, + sym_tyvar, + STATE(15094), 1, + sym_longtycon, + STATE(18405), 1, + sym_tyseq, + STATE(18815), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16249), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16489), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15096), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [839181] = 16, + ACTIONS(17912), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17914), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17916), 1, + sym__symbolic_ident, + ACTIONS(17918), 1, + anon_sym_LPAREN, + ACTIONS(17920), 1, + anon_sym_LBRACE, + STATE(14246), 1, + sym_longtycon, + STATE(14259), 1, + sym_tycon, + STATE(14271), 1, + sym_tyvar, + STATE(18567), 1, + sym_tyseq, + STATE(18934), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14601), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14986), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14242), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [839237] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16653), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [839275] = 4, + ACTIONS(19002), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [839307] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [839337] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(12416), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [839369] = 8, + ACTIONS(19004), 1, + anon_sym_COLON, + ACTIONS(19006), 1, + anon_sym_andalso, + ACTIONS(19008), 1, + anon_sym_orelse, + ACTIONS(19010), 1, + anon_sym_handle, + ACTIONS(19012), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [839409] = 7, + ACTIONS(19014), 1, + anon_sym_COLON, + ACTIONS(19016), 1, + anon_sym_andalso, + ACTIONS(19018), 1, + anon_sym_orelse, + ACTIONS(19020), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16653), 15, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [839447] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(19022), 1, + anon_sym_STAR, + STATE(12711), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [839481] = 4, + ACTIONS(19024), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16526), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [839513] = 16, + ACTIONS(18351), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18353), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18355), 1, + sym__symbolic_ident, + ACTIONS(18357), 1, + anon_sym_LPAREN, + ACTIONS(18359), 1, + anon_sym_LBRACE, + STATE(15165), 1, + sym_tyvar, + STATE(15183), 1, + sym_tycon, + STATE(15218), 1, + sym_longtycon, + STATE(18366), 1, + sym_tyseq, + STATE(19224), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16663), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17646), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15236), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [839569] = 8, + ACTIONS(18617), 1, + anon_sym_handle, + ACTIONS(19026), 1, + anon_sym_COLON, + ACTIONS(19028), 1, + anon_sym_andalso, + ACTIONS(19030), 1, + anon_sym_orelse, + ACTIONS(19032), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [839609] = 4, + ACTIONS(19034), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16505), 17, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [839641] = 4, + ACTIONS(19036), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16526), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [839673] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [839703] = 16, + ACTIONS(18921), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18923), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18925), 1, + sym__symbolic_ident, + ACTIONS(18927), 1, + anon_sym_LPAREN, + ACTIONS(18929), 1, + anon_sym_LBRACE, + STATE(15266), 1, + sym_tycon, + STATE(15338), 1, + sym_tyvar, + STATE(15373), 1, + sym_longtycon, + STATE(18520), 1, + sym_tyseq, + STATE(19151), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16426), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17142), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15381), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [839759] = 7, + ACTIONS(16655), 1, + anon_sym_infix, + ACTIONS(19038), 1, + anon_sym_COLON, + ACTIONS(19040), 1, + anon_sym_andalso, + ACTIONS(19042), 1, + anon_sym_orelse, + ACTIONS(19044), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [839797] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(19022), 1, + anon_sym_STAR, + STATE(12662), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [839831] = 4, + ACTIONS(19046), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16505), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [839863] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15878), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(15876), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [839893] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15882), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(15880), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [839923] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [839961] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [839999] = 16, + ACTIONS(17686), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17688), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17690), 1, + sym__symbolic_ident, + ACTIONS(17692), 1, + anon_sym_LPAREN, + ACTIONS(17694), 1, + anon_sym_LBRACE, + STATE(10696), 1, + sym_tyvar, + STATE(10698), 1, + sym_longtycon, + STATE(10877), 1, + sym_tycon, + STATE(18123), 1, + sym_tyseq, + STATE(18747), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12292), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12692), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10700), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [840055] = 16, + ACTIONS(17922), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17924), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17926), 1, + sym__symbolic_ident, + ACTIONS(17928), 1, + anon_sym_LPAREN, + ACTIONS(17930), 1, + anon_sym_LBRACE, + STATE(10390), 1, + sym_tyvar, + STATE(10391), 1, + sym_longtycon, + STATE(10629), 1, + sym_tycon, + STATE(18609), 1, + sym_tyseq, + STATE(18894), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12341), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12742), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10392), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [840111] = 8, + ACTIONS(19014), 1, + anon_sym_COLON, + ACTIONS(19016), 1, + anon_sym_andalso, + ACTIONS(19018), 1, + anon_sym_orelse, + ACTIONS(19020), 1, + anon_sym_handle, + ACTIONS(19048), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16643), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [840151] = 4, + ACTIONS(19050), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16505), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [840183] = 4, + ACTIONS(19052), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [840215] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [840253] = 4, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 17, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [840285] = 7, + ACTIONS(19004), 1, + anon_sym_COLON, + ACTIONS(19006), 1, + anon_sym_andalso, + ACTIONS(19008), 1, + anon_sym_orelse, + ACTIONS(19010), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16653), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [840323] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(19054), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [840355] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [840385] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(19056), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [840417] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [840447] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 18, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [840479] = 16, + ACTIONS(17932), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17934), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17936), 1, + sym__symbolic_ident, + ACTIONS(17938), 1, + anon_sym_LPAREN, + ACTIONS(17940), 1, + anon_sym_LBRACE, + STATE(11409), 1, + sym_tycon, + STATE(11738), 1, + sym_tyvar, + STATE(11741), 1, + sym_longtycon, + STATE(18556), 1, + sym_tyseq, + STATE(18959), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12747), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13202), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11750), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [840535] = 16, + ACTIONS(17696), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17698), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17700), 1, + sym__symbolic_ident, + ACTIONS(17702), 1, + anon_sym_LPAREN, + ACTIONS(17704), 1, + anon_sym_LBRACE, + STATE(10796), 1, + sym_tyvar, + STATE(10797), 1, + sym_longtycon, + STATE(10974), 1, + sym_tycon, + STATE(18228), 1, + sym_tyseq, + STATE(18710), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12302), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12697), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10798), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [840591] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [840629] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [840667] = 8, + ACTIONS(16647), 1, + anon_sym_infix, + ACTIONS(19038), 1, + anon_sym_COLON, + ACTIONS(19040), 1, + anon_sym_andalso, + ACTIONS(19042), 1, + anon_sym_orelse, + ACTIONS(19044), 1, + anon_sym_handle, + ACTIONS(19058), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [840707] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(19060), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [840739] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [840777] = 4, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [840809] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [840839] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16653), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [840877] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [840907] = 16, + ACTIONS(17942), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17944), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17946), 1, + sym__symbolic_ident, + ACTIONS(17948), 1, + anon_sym_LPAREN, + ACTIONS(17950), 1, + anon_sym_LBRACE, + STATE(11200), 1, + sym_tyvar, + STATE(11226), 1, + sym_longtycon, + STATE(11769), 1, + sym_tycon, + STATE(18036), 1, + sym_tyseq, + STATE(18760), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12750), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13217), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11227), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [840963] = 4, + ACTIONS(19062), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [840995] = 16, + ACTIONS(17409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17411), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17413), 1, + sym__symbolic_ident, + ACTIONS(17415), 1, + anon_sym_LPAREN, + ACTIONS(17417), 1, + anon_sym_LBRACE, + STATE(14318), 1, + sym_tycon, + STATE(14389), 1, + sym_longtycon, + STATE(14392), 1, + sym_tyvar, + STATE(18437), 1, + sym_tyseq, + STATE(19165), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15031), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15250), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14363), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [841051] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 18, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [841083] = 7, + ACTIONS(19064), 1, + anon_sym_COLON, + ACTIONS(19066), 1, + anon_sym_andalso, + ACTIONS(19068), 1, + anon_sym_orelse, + ACTIONS(19070), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16653), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [841121] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [841151] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(19072), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [841183] = 16, + ACTIONS(17952), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17954), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17956), 1, + sym__symbolic_ident, + ACTIONS(17958), 1, + anon_sym_LPAREN, + ACTIONS(17960), 1, + anon_sym_LBRACE, + STATE(10323), 1, + sym_tycon, + STATE(10686), 1, + sym_tyvar, + STATE(10727), 1, + sym_longtycon, + STATE(18574), 1, + sym_tyseq, + STATE(19172), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12352), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12751), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10760), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [841239] = 7, + ACTIONS(16655), 1, + anon_sym_infix, + ACTIONS(19074), 1, + anon_sym_COLON, + ACTIONS(19076), 1, + anon_sym_andalso, + ACTIONS(19078), 1, + anon_sym_orelse, + ACTIONS(19080), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [841277] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(19082), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [841309] = 4, + ACTIONS(19084), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [841341] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [841371] = 5, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 16, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [841405] = 7, + ACTIONS(18581), 1, + anon_sym_handle, + ACTIONS(18961), 1, + anon_sym_COLON, + ACTIONS(18963), 1, + anon_sym_andalso, + ACTIONS(18965), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [841443] = 7, + ACTIONS(18581), 1, + anon_sym_handle, + ACTIONS(18961), 1, + anon_sym_COLON, + ACTIONS(18963), 1, + anon_sym_andalso, + ACTIONS(18965), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [841481] = 16, + ACTIONS(17982), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17984), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17986), 1, + sym__symbolic_ident, + ACTIONS(17988), 1, + anon_sym_LPAREN, + ACTIONS(17990), 1, + anon_sym_LBRACE, + STATE(15268), 1, + sym_tyvar, + STATE(15270), 1, + sym_longtycon, + STATE(15305), 1, + sym_tycon, + STATE(18112), 1, + sym_tyseq, + STATE(18714), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16496), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17332), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15271), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [841537] = 8, + ACTIONS(19064), 1, + anon_sym_COLON, + ACTIONS(19066), 1, + anon_sym_andalso, + ACTIONS(19068), 1, + anon_sym_orelse, + ACTIONS(19070), 1, + anon_sym_handle, + ACTIONS(19086), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [841577] = 4, + ACTIONS(19088), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16526), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [841609] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [841639] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [841669] = 16, + ACTIONS(18671), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18673), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18675), 1, + sym__symbolic_ident, + ACTIONS(18677), 1, + anon_sym_LPAREN, + ACTIONS(18679), 1, + anon_sym_LBRACE, + STATE(12024), 1, + sym_tyvar, + STATE(12025), 1, + sym_longtycon, + STATE(12046), 1, + sym_tycon, + STATE(18363), 1, + sym_tyseq, + STATE(18764), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11178), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13171), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13378), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12026), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [841725] = 7, + ACTIONS(18581), 1, + anon_sym_handle, + ACTIONS(18961), 1, + anon_sym_COLON, + ACTIONS(18963), 1, + anon_sym_andalso, + ACTIONS(18965), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [841763] = 4, + ACTIONS(18961), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 17, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [841795] = 8, + ACTIONS(18581), 1, + anon_sym_handle, + ACTIONS(18961), 1, + anon_sym_COLON, + ACTIONS(18963), 1, + anon_sym_andalso, + ACTIONS(18965), 1, + anon_sym_orelse, + ACTIONS(19090), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [841835] = 7, + ACTIONS(19004), 1, + anon_sym_COLON, + ACTIONS(19006), 1, + anon_sym_andalso, + ACTIONS(19008), 1, + anon_sym_orelse, + ACTIONS(19010), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [841873] = 7, + ACTIONS(19004), 1, + anon_sym_COLON, + ACTIONS(19006), 1, + anon_sym_andalso, + ACTIONS(19008), 1, + anon_sym_orelse, + ACTIONS(19010), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [841911] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [841941] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [841971] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [842001] = 16, + ACTIONS(18161), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18163), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18165), 1, + sym__symbolic_ident, + ACTIONS(18167), 1, + anon_sym_LPAREN, + ACTIONS(18169), 1, + anon_sym_LBRACE, + STATE(17223), 1, + sym_tyvar, + STATE(17224), 1, + sym_tycon, + STATE(17226), 1, + sym_longtycon, + STATE(18306), 1, + sym_tyseq, + STATE(19085), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18486), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18823), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17228), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [842057] = 7, + ACTIONS(18617), 1, + anon_sym_handle, + ACTIONS(19026), 1, + anon_sym_COLON, + ACTIONS(19028), 1, + anon_sym_andalso, + ACTIONS(19030), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [842095] = 7, + ACTIONS(18617), 1, + anon_sym_handle, + ACTIONS(19026), 1, + anon_sym_COLON, + ACTIONS(19028), 1, + anon_sym_andalso, + ACTIONS(19030), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [842133] = 7, + ACTIONS(19004), 1, + anon_sym_COLON, + ACTIONS(19006), 1, + anon_sym_andalso, + ACTIONS(19008), 1, + anon_sym_orelse, + ACTIONS(19010), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [842171] = 4, + ACTIONS(19004), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 17, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [842203] = 8, + ACTIONS(19004), 1, + anon_sym_COLON, + ACTIONS(19006), 1, + anon_sym_andalso, + ACTIONS(19008), 1, + anon_sym_orelse, + ACTIONS(19010), 1, + anon_sym_handle, + ACTIONS(19092), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [842243] = 7, + ACTIONS(19014), 1, + anon_sym_COLON, + ACTIONS(19016), 1, + anon_sym_andalso, + ACTIONS(19018), 1, + anon_sym_orelse, + ACTIONS(19020), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16620), 15, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [842281] = 7, + ACTIONS(19014), 1, + anon_sym_COLON, + ACTIONS(19016), 1, + anon_sym_andalso, + ACTIONS(19018), 1, + anon_sym_orelse, + ACTIONS(19020), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16628), 15, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [842319] = 16, + ACTIONS(17992), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17994), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17996), 1, + sym__symbolic_ident, + ACTIONS(17998), 1, + anon_sym_LPAREN, + ACTIONS(18000), 1, + anon_sym_LBRACE, + STATE(15320), 1, + sym_tycon, + STATE(15391), 1, + sym_tyvar, + STATE(15394), 1, + sym_longtycon, + STATE(18517), 1, + sym_tyseq, + STATE(19250), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16499), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17341), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15399), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [842375] = 7, + ACTIONS(18617), 1, + anon_sym_handle, + ACTIONS(19026), 1, + anon_sym_COLON, + ACTIONS(19028), 1, + anon_sym_andalso, + ACTIONS(19030), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [842413] = 4, + ACTIONS(19026), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [842445] = 8, + ACTIONS(18617), 1, + anon_sym_handle, + ACTIONS(19026), 1, + anon_sym_COLON, + ACTIONS(19028), 1, + anon_sym_andalso, + ACTIONS(19030), 1, + anon_sym_orelse, + ACTIONS(19094), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [842485] = 16, + ACTIONS(17716), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17718), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17720), 1, + sym__symbolic_ident, + ACTIONS(17722), 1, + anon_sym_LPAREN, + ACTIONS(17724), 1, + anon_sym_LBRACE, + STATE(10171), 1, + sym_tycon, + STATE(10971), 1, + sym_tyvar, + STATE(10975), 1, + sym_longtycon, + STATE(18499), 1, + sym_tyseq, + STATE(18870), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12307), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12703), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11012), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [842541] = 16, + ACTIONS(17536), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17538), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17540), 1, + sym__symbolic_ident, + ACTIONS(17542), 1, + anon_sym_LPAREN, + ACTIONS(17544), 1, + anon_sym_LBRACE, + STATE(15770), 1, + sym_tycon, + STATE(15963), 1, + sym_tyvar, + STATE(16342), 1, + sym_longtycon, + STATE(18579), 1, + sym_tyseq, + STATE(18730), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17227), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17918), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15888), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [842597] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [842627] = 7, + ACTIONS(19014), 1, + anon_sym_COLON, + ACTIONS(19016), 1, + anon_sym_andalso, + ACTIONS(19018), 1, + anon_sym_orelse, + ACTIONS(19020), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16639), 15, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [842665] = 4, + ACTIONS(19014), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16659), 18, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [842697] = 8, + ACTIONS(19014), 1, + anon_sym_COLON, + ACTIONS(19016), 1, + anon_sym_andalso, + ACTIONS(19018), 1, + anon_sym_orelse, + ACTIONS(19020), 1, + anon_sym_handle, + ACTIONS(19096), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16643), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [842737] = 4, + ACTIONS(19098), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 18, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [842769] = 16, + ACTIONS(17726), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17728), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17730), 1, + sym__symbolic_ident, + ACTIONS(17732), 1, + anon_sym_LPAREN, + ACTIONS(17734), 1, + anon_sym_LBRACE, + STATE(10112), 1, + sym_tyvar, + STATE(10113), 1, + sym_longtycon, + STATE(10219), 1, + sym_tycon, + STATE(18678), 1, + sym_tyseq, + STATE(18726), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12310), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12707), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10114), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [842825] = 16, + ACTIONS(17746), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17748), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17750), 1, + sym__symbolic_ident, + ACTIONS(17752), 1, + anon_sym_LPAREN, + ACTIONS(17754), 1, + anon_sym_LBRACE, + STATE(9859), 1, + sym_tyvar, + STATE(9860), 1, + sym_longtycon, + STATE(9893), 1, + sym_tycon, + STATE(18055), 1, + sym_tyseq, + STATE(19133), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11233), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12313), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9861), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [842881] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [842913] = 4, + ACTIONS(19100), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [842945] = 16, + ACTIONS(18025), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18027), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18029), 1, + sym__symbolic_ident, + ACTIONS(18031), 1, + anon_sym_LPAREN, + ACTIONS(18033), 1, + anon_sym_LBRACE, + STATE(8501), 1, + sym_tycon, + STATE(8503), 1, + sym_tyvar, + STATE(8505), 1, + sym_longtycon, + STATE(18692), 1, + sym_tyseq, + STATE(18844), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(8850), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9032), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8520), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [843001] = 5, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [843035] = 8, + ACTIONS(18654), 1, + anon_sym_handle, + ACTIONS(19102), 1, + anon_sym_COLON, + ACTIONS(19104), 1, + anon_sym_andalso, + ACTIONS(19106), 1, + anon_sym_orelse, + ACTIONS(19108), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [843075] = 7, + ACTIONS(16626), 1, + anon_sym_infix, + ACTIONS(19038), 1, + anon_sym_COLON, + ACTIONS(19040), 1, + anon_sym_andalso, + ACTIONS(19042), 1, + anon_sym_orelse, + ACTIONS(19044), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [843113] = 7, + ACTIONS(16630), 1, + anon_sym_infix, + ACTIONS(19038), 1, + anon_sym_COLON, + ACTIONS(19040), 1, + anon_sym_andalso, + ACTIONS(19042), 1, + anon_sym_orelse, + ACTIONS(19044), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [843151] = 16, + ACTIONS(18035), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18037), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18039), 1, + sym__symbolic_ident, + ACTIONS(18041), 1, + anon_sym_LPAREN, + ACTIONS(18043), 1, + anon_sym_LBRACE, + STATE(15158), 1, + sym_tycon, + STATE(15319), 1, + sym_tyvar, + STATE(15321), 1, + sym_longtycon, + STATE(18179), 1, + sym_tyseq, + STATE(19256), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16506), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17355), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15484), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [843207] = 16, + ACTIONS(18804), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18806), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18808), 1, + sym__symbolic_ident, + ACTIONS(18810), 1, + anon_sym_LPAREN, + ACTIONS(18812), 1, + anon_sym_LBRACE, + STATE(12132), 1, + sym_tyvar, + STATE(12133), 1, + sym_tycon, + STATE(12134), 1, + sym_longtycon, + STATE(18323), 1, + sym_tyseq, + STATE(19066), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13222), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13516), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12136), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [843263] = 7, + ACTIONS(16641), 1, + anon_sym_infix, + ACTIONS(19038), 1, + anon_sym_COLON, + ACTIONS(19040), 1, + anon_sym_andalso, + ACTIONS(19042), 1, + anon_sym_orelse, + ACTIONS(19044), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [843301] = 4, + ACTIONS(16661), 1, + anon_sym_infix, + ACTIONS(19038), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 19, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [843333] = 8, + ACTIONS(16647), 1, + anon_sym_infix, + ACTIONS(19038), 1, + anon_sym_COLON, + ACTIONS(19040), 1, + anon_sym_andalso, + ACTIONS(19042), 1, + anon_sym_orelse, + ACTIONS(19044), 1, + anon_sym_handle, + ACTIONS(19110), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [843373] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(19112), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [843405] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17793), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17788), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [843435] = 16, + ACTIONS(18045), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18047), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18049), 1, + sym__symbolic_ident, + ACTIONS(18051), 1, + anon_sym_LPAREN, + ACTIONS(18053), 1, + anon_sym_LBRACE, + STATE(8480), 1, + sym_tyvar, + STATE(8482), 1, + sym_longtycon, + STATE(8485), 1, + sym_tycon, + STATE(18414), 1, + sym_tyseq, + STATE(18731), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(8762), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8832), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8450), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [843491] = 16, + ACTIONS(18249), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18251), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18253), 1, + sym__symbolic_ident, + ACTIONS(18255), 1, + anon_sym_LPAREN, + ACTIONS(18257), 1, + anon_sym_LBRACE, + STATE(14230), 1, + sym_tycon, + STATE(14264), 1, + sym_tyvar, + STATE(14302), 1, + sym_longtycon, + STATE(18116), 1, + sym_tyseq, + STATE(19027), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14513), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15112), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14228), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [843547] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15940), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(15938), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [843577] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(19114), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 19, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [843609] = 16, + ACTIONS(18055), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18057), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18059), 1, + sym__symbolic_ident, + ACTIONS(18061), 1, + anon_sym_LPAREN, + ACTIONS(18063), 1, + anon_sym_LBRACE, + STATE(9655), 1, + sym_tyvar, + STATE(9656), 1, + sym_longtycon, + STATE(10034), 1, + sym_tycon, + STATE(18639), 1, + sym_tyseq, + STATE(18741), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11427), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12355), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9657), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [843665] = 16, + ACTIONS(17756), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17758), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17760), 1, + sym__symbolic_ident, + ACTIONS(17762), 1, + anon_sym_LPAREN, + ACTIONS(17764), 1, + anon_sym_LBRACE, + STATE(15533), 1, + sym_tyvar, + STATE(15549), 1, + sym_tycon, + STATE(15591), 1, + sym_longtycon, + STATE(18202), 1, + sym_tyseq, + STATE(19176), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17289), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17843), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15619), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [843721] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [843759] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [843797] = 16, + ACTIONS(18279), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18281), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18283), 1, + sym__symbolic_ident, + ACTIONS(18285), 1, + anon_sym_LPAREN, + ACTIONS(18287), 1, + anon_sym_LBRACE, + STATE(14042), 1, + sym_tycon, + STATE(14069), 1, + sym_tyvar, + STATE(14071), 1, + sym_longtycon, + STATE(18020), 1, + sym_tyseq, + STATE(19102), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14232), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14343), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14072), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [843853] = 16, + ACTIONS(17484), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17486), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17488), 1, + sym__symbolic_ident, + ACTIONS(17490), 1, + anon_sym_LPAREN, + ACTIONS(17492), 1, + anon_sym_LBRACE, + STATE(15574), 1, + sym_tyvar, + STATE(15578), 1, + sym_longtycon, + STATE(16139), 1, + sym_tycon, + STATE(18281), 1, + sym_tyseq, + STATE(18728), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17173), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17963), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15583), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [843909] = 8, + ACTIONS(16647), 1, + anon_sym_infix, + ACTIONS(19074), 1, + anon_sym_COLON, + ACTIONS(19076), 1, + anon_sym_andalso, + ACTIONS(19078), 1, + anon_sym_orelse, + ACTIONS(19080), 1, + anon_sym_handle, + ACTIONS(19116), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [843949] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(19118), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [843981] = 16, + ACTIONS(18441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18443), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18445), 1, + sym__symbolic_ident, + ACTIONS(18447), 1, + anon_sym_LPAREN, + ACTIONS(18449), 1, + anon_sym_LBRACE, + STATE(14133), 1, + sym_tycon, + STATE(14150), 1, + sym_tyvar, + STATE(14151), 1, + sym_longtycon, + STATE(18161), 1, + sym_tyseq, + STATE(18761), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14387), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14549), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14156), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [844037] = 16, + ACTIONS(18331), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18333), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18335), 1, + sym__symbolic_ident, + ACTIONS(18337), 1, + anon_sym_LPAREN, + ACTIONS(18339), 1, + anon_sym_LBRACE, + STATE(16490), 1, + sym_tyvar, + STATE(16492), 1, + sym_tycon, + STATE(16493), 1, + sym_longtycon, + STATE(17978), 1, + sym_tyseq, + STATE(19235), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17837), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18213), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16503), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [844093] = 7, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(18953), 1, + anon_sym_orelse, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [844131] = 4, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [844163] = 16, + ACTIONS(17766), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17768), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17770), 1, + sym__symbolic_ident, + ACTIONS(17772), 1, + anon_sym_LPAREN, + ACTIONS(17774), 1, + anon_sym_LBRACE, + STATE(16010), 1, + sym_tycon, + STATE(16258), 1, + sym_longtycon, + STATE(16287), 1, + sym_tyvar, + STATE(18277), 1, + sym_tyseq, + STATE(18856), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17300), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17874), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15645), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [844219] = 16, + ACTIONS(17546), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17548), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17550), 1, + sym__symbolic_ident, + ACTIONS(17552), 1, + anon_sym_LPAREN, + ACTIONS(17554), 1, + anon_sym_LBRACE, + STATE(8752), 1, + sym_tyvar, + STATE(8755), 1, + sym_longtycon, + STATE(8800), 1, + sym_tycon, + STATE(18319), 1, + sym_tyseq, + STATE(19083), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(8994), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9399), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8756), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [844275] = 5, + ACTIONS(19120), 1, + anon_sym_STAR, + STATE(12848), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15958), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [844309] = 16, + ACTIONS(18065), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18067), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18069), 1, + sym__symbolic_ident, + ACTIONS(18071), 1, + anon_sym_LPAREN, + ACTIONS(18073), 1, + anon_sym_LBRACE, + STATE(14988), 1, + sym_tycon, + STATE(15091), 1, + sym_tyvar, + STATE(15092), 1, + sym_longtycon, + STATE(18280), 1, + sym_tyseq, + STATE(18874), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15849), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16509), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15095), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [844365] = 7, + ACTIONS(19064), 1, + anon_sym_COLON, + ACTIONS(19066), 1, + anon_sym_andalso, + ACTIONS(19068), 1, + anon_sym_orelse, + ACTIONS(19070), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [844403] = 7, + ACTIONS(19064), 1, + anon_sym_COLON, + ACTIONS(19066), 1, + anon_sym_andalso, + ACTIONS(19068), 1, + anon_sym_orelse, + ACTIONS(19070), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [844441] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16501), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(12420), 18, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [844471] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16428), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16426), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [844501] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16438), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16436), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [844531] = 4, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16464), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16462), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [844563] = 16, + ACTIONS(17842), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17844), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17846), 1, + sym__symbolic_ident, + ACTIONS(17848), 1, + anon_sym_LPAREN, + ACTIONS(17850), 1, + anon_sym_LBRACE, + STATE(9531), 1, + sym_tyvar, + STATE(9902), 1, + sym_tycon, + STATE(9929), 1, + sym_longtycon, + STATE(18238), 1, + sym_tyseq, + STATE(19163), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11299), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12052), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9530), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [844619] = 7, + ACTIONS(18654), 1, + anon_sym_handle, + ACTIONS(19102), 1, + anon_sym_COLON, + ACTIONS(19104), 1, + anon_sym_andalso, + ACTIONS(19106), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [844657] = 7, + ACTIONS(18654), 1, + anon_sym_handle, + ACTIONS(19102), 1, + anon_sym_COLON, + ACTIONS(19104), 1, + anon_sym_andalso, + ACTIONS(19106), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [844695] = 16, + ACTIONS(18075), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18077), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18079), 1, + sym__symbolic_ident, + ACTIONS(18081), 1, + anon_sym_LPAREN, + ACTIONS(18083), 1, + anon_sym_LBRACE, + STATE(10342), 1, + sym_tyvar, + STATE(10343), 1, + sym_longtycon, + STATE(10619), 1, + sym_tycon, + STATE(18392), 1, + sym_tyseq, + STATE(18977), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12358), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12758), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10344), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [844751] = 7, + ACTIONS(19064), 1, + anon_sym_COLON, + ACTIONS(19066), 1, + anon_sym_andalso, + ACTIONS(19068), 1, + anon_sym_orelse, + ACTIONS(19070), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [844789] = 4, + ACTIONS(19064), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [844821] = 8, + ACTIONS(19064), 1, + anon_sym_COLON, + ACTIONS(19066), 1, + anon_sym_andalso, + ACTIONS(19068), 1, + anon_sym_orelse, + ACTIONS(19070), 1, + anon_sym_handle, + ACTIONS(19122), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [844861] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [844891] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17830), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17825), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [844921] = 7, + ACTIONS(16626), 1, + anon_sym_infix, + ACTIONS(19074), 1, + anon_sym_COLON, + ACTIONS(19076), 1, + anon_sym_andalso, + ACTIONS(19078), 1, + anon_sym_orelse, + ACTIONS(19080), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [844959] = 7, + ACTIONS(16630), 1, + anon_sym_infix, + ACTIONS(19074), 1, + anon_sym_COLON, + ACTIONS(19076), 1, + anon_sym_andalso, + ACTIONS(19078), 1, + anon_sym_orelse, + ACTIONS(19080), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [844997] = 16, + ACTIONS(17776), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17778), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17780), 1, + sym__symbolic_ident, + ACTIONS(17782), 1, + anon_sym_LPAREN, + ACTIONS(17784), 1, + anon_sym_LBRACE, + STATE(11127), 1, + sym_tyvar, + STATE(11131), 1, + sym_longtycon, + STATE(11488), 1, + sym_tycon, + STATE(18371), 1, + sym_tyseq, + STATE(19091), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12721), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13094), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11132), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [845053] = 16, + ACTIONS(17359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17361), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17363), 1, + sym__symbolic_ident, + ACTIONS(17365), 1, + anon_sym_LPAREN, + ACTIONS(17367), 1, + anon_sym_LBRACE, + STATE(8749), 1, + sym_longtycon, + STATE(8764), 1, + sym_tyvar, + STATE(8787), 1, + sym_tycon, + STATE(18155), 1, + sym_tyseq, + STATE(19055), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(8981), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9270), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [845109] = 7, + ACTIONS(18654), 1, + anon_sym_handle, + ACTIONS(19102), 1, + anon_sym_COLON, + ACTIONS(19104), 1, + anon_sym_andalso, + ACTIONS(19106), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [845147] = 4, + ACTIONS(19102), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [845179] = 8, + ACTIONS(18654), 1, + anon_sym_handle, + ACTIONS(19102), 1, + anon_sym_COLON, + ACTIONS(19104), 1, + anon_sym_andalso, + ACTIONS(19106), 1, + anon_sym_orelse, + ACTIONS(19124), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [845219] = 16, + ACTIONS(18411), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18413), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18415), 1, + sym__symbolic_ident, + ACTIONS(18417), 1, + anon_sym_LPAREN, + ACTIONS(18419), 1, + anon_sym_LBRACE, + STATE(12698), 1, + sym_tycon, + STATE(12876), 1, + sym_tyvar, + STATE(12877), 1, + sym_longtycon, + STATE(18049), 1, + sym_tyseq, + STATE(18961), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11178), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13498), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13602), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12879), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [845275] = 5, + ACTIONS(19126), 1, + anon_sym_STAR, + STATE(12848), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [845309] = 4, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16096), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16092), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [845341] = 7, + ACTIONS(16641), 1, + anon_sym_infix, + ACTIONS(19074), 1, + anon_sym_COLON, + ACTIONS(19076), 1, + anon_sym_andalso, + ACTIONS(19078), 1, + anon_sym_orelse, + ACTIONS(19080), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [845379] = 4, + ACTIONS(16661), 1, + anon_sym_infix, + ACTIONS(19074), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 19, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [845411] = 8, + ACTIONS(16647), 1, + anon_sym_infix, + ACTIONS(19074), 1, + anon_sym_COLON, + ACTIONS(19076), 1, + anon_sym_andalso, + ACTIONS(19078), 1, + anon_sym_orelse, + ACTIONS(19080), 1, + anon_sym_handle, + ACTIONS(19129), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [845451] = 5, + ACTIONS(18961), 1, + anon_sym_COLON, + ACTIONS(18963), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 16, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [845485] = 16, + ACTIONS(17556), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17558), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17560), 1, + sym__symbolic_ident, + ACTIONS(17562), 1, + anon_sym_LPAREN, + ACTIONS(17564), 1, + anon_sym_LBRACE, + STATE(8746), 1, + sym_tycon, + STATE(8799), 1, + sym_tyvar, + STATE(8801), 1, + sym_longtycon, + STATE(18531), 1, + sym_tyseq, + STATE(18766), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(9001), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9413), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8743), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [845541] = 16, + ACTIONS(18141), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18143), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18145), 1, + sym__symbolic_ident, + ACTIONS(18147), 1, + anon_sym_LPAREN, + ACTIONS(18149), 1, + anon_sym_LBRACE, + STATE(14797), 1, + sym_tyvar, + STATE(14805), 1, + sym_tycon, + STATE(14806), 1, + sym_longtycon, + STATE(18090), 1, + sym_tyseq, + STATE(18892), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15303), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15754), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14817), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [845597] = 5, + ACTIONS(19004), 1, + anon_sym_COLON, + ACTIONS(19006), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 16, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [845631] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19133), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19131), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [845661] = 16, + ACTIONS(18085), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18087), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18089), 1, + sym__symbolic_ident, + ACTIONS(18091), 1, + anon_sym_LPAREN, + ACTIONS(18093), 1, + anon_sym_LBRACE, + STATE(9544), 1, + sym_tyvar, + STATE(9545), 1, + sym_longtycon, + STATE(9794), 1, + sym_tycon, + STATE(18489), 1, + sym_tyseq, + STATE(19097), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11466), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12362), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9550), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [845717] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19137), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19135), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [845747] = 5, + ACTIONS(19026), 1, + anon_sym_COLON, + ACTIONS(19028), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [845781] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [845811] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(18987), 1, + anon_sym_STAR, + STATE(12690), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [845845] = 16, + ACTIONS(18748), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18750), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18752), 1, + sym__symbolic_ident, + ACTIONS(18754), 1, + anon_sym_LPAREN, + ACTIONS(18756), 1, + anon_sym_LBRACE, + STATE(12726), 1, + sym_tyvar, + STATE(12728), 1, + sym_longtycon, + STATE(12838), 1, + sym_tycon, + STATE(18478), 1, + sym_tyseq, + STATE(19043), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11178), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13365), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13656), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12729), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [845901] = 5, + ACTIONS(19014), 1, + anon_sym_COLON, + ACTIONS(19016), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16612), 17, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [845935] = 5, + ACTIONS(19120), 1, + anon_sym_STAR, + STATE(12823), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15932), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [845969] = 16, + ACTIONS(17586), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17588), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17590), 1, + sym__symbolic_ident, + ACTIONS(17592), 1, + anon_sym_LPAREN, + ACTIONS(17594), 1, + anon_sym_LBRACE, + STATE(15587), 1, + sym_tyvar, + STATE(15592), 1, + sym_longtycon, + STATE(15989), 1, + sym_tycon, + STATE(18239), 1, + sym_tyseq, + STATE(18999), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17254), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17764), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15593), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [846025] = 16, + ACTIONS(18095), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18097), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18099), 1, + sym__symbolic_ident, + ACTIONS(18101), 1, + anon_sym_LPAREN, + ACTIONS(18103), 1, + anon_sym_LBRACE, + STATE(9752), 1, + sym_tyvar, + STATE(9753), 1, + sym_longtycon, + STATE(9872), 1, + sym_tycon, + STATE(18587), 1, + sym_tyseq, + STATE(19159), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11481), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12366), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [846081] = 16, + ACTIONS(17736), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17738), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17740), 1, + sym__symbolic_ident, + ACTIONS(17742), 1, + anon_sym_LPAREN, + ACTIONS(17744), 1, + anon_sym_LBRACE, + STATE(17852), 1, + sym_tyvar, + STATE(17853), 1, + sym_tycon, + STATE(17856), 1, + sym_longtycon, + STATE(18143), 1, + sym_tyseq, + STATE(18969), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19227), 2, + sym__paren_ty, + sym_paren_ty, + STATE(21326), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17857), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [846137] = 16, + ACTIONS(17795), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17797), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17799), 1, + sym__symbolic_ident, + ACTIONS(17801), 1, + anon_sym_LPAREN, + ACTIONS(17803), 1, + anon_sym_LBRACE, + STATE(15036), 1, + sym_tyvar, + STATE(15037), 1, + sym_longtycon, + STATE(15104), 1, + sym_tycon, + STATE(18584), 1, + sym_tyseq, + STATE(19220), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15890), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16485), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15038), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [846193] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15930), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(15928), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [846223] = 16, + ACTIONS(17706), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17708), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17710), 1, + sym__symbolic_ident, + ACTIONS(17712), 1, + anon_sym_LPAREN, + ACTIONS(17714), 1, + anon_sym_LBRACE, + STATE(15931), 1, + sym_tyvar, + STATE(16202), 1, + sym_tycon, + STATE(16213), 1, + sym_longtycon, + STATE(18663), 1, + sym_tyseq, + STATE(19060), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16770), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17750), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16162), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [846279] = 16, + ACTIONS(18105), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18107), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18109), 1, + sym__symbolic_ident, + ACTIONS(18111), 1, + anon_sym_LPAREN, + ACTIONS(18113), 1, + anon_sym_LBRACE, + STATE(9787), 1, + sym_tyvar, + STATE(9805), 1, + sym_longtycon, + STATE(9941), 1, + sym_tycon, + STATE(17970), 1, + sym_tyseq, + STATE(19195), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11491), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12369), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9806), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [846335] = 5, + ACTIONS(16618), 1, + anon_sym_infix, + ACTIONS(19038), 1, + anon_sym_COLON, + ACTIONS(19040), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [846369] = 16, + ACTIONS(18595), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18597), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18599), 1, + sym__symbolic_ident, + ACTIONS(18601), 1, + anon_sym_LPAREN, + ACTIONS(18603), 1, + anon_sym_LBRACE, + STATE(8908), 1, + sym_tycon, + STATE(8930), 1, + sym_longtycon, + STATE(8934), 1, + sym_tyvar, + STATE(17990), 1, + sym_tyseq, + STATE(19081), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(9261), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9868), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8834), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [846425] = 16, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(19526), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [846481] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [846511] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [846541] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [846571] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 18, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [846603] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19141), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19139), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [846633] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19145), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19143), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [846663] = 5, + ACTIONS(18949), 1, + anon_sym_COLON, + ACTIONS(18951), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [846697] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17880), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17875), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [846727] = 16, + ACTIONS(18728), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18730), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18732), 1, + sym__symbolic_ident, + ACTIONS(18734), 1, + anon_sym_LPAREN, + ACTIONS(18736), 1, + anon_sym_LBRACE, + STATE(16354), 1, + sym_tyvar, + STATE(16355), 1, + sym_tycon, + STATE(16356), 1, + sym_longtycon, + STATE(18222), 1, + sym_tyseq, + STATE(19144), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17730), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18331), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16357), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [846783] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [846813] = 5, + ACTIONS(19064), 1, + anon_sym_COLON, + ACTIONS(19066), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [846847] = 16, + ACTIONS(18121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18123), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18125), 1, + sym__symbolic_ident, + ACTIONS(18127), 1, + anon_sym_LPAREN, + ACTIONS(18129), 1, + anon_sym_LBRACE, + STATE(9332), 1, + sym_tyvar, + STATE(9340), 1, + sym_longtycon, + STATE(9425), 1, + sym_tycon, + STATE(18067), 1, + sym_tyseq, + STATE(19233), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(10386), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11505), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9346), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [846903] = 5, + ACTIONS(19102), 1, + anon_sym_COLON, + ACTIONS(19104), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [846937] = 4, + ACTIONS(19147), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16505), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [846969] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [846999] = 5, + ACTIONS(16618), 1, + anon_sym_infix, + ACTIONS(19074), 1, + anon_sym_COLON, + ACTIONS(19076), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [847033] = 16, + ACTIONS(17805), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17807), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17809), 1, + sym__symbolic_ident, + ACTIONS(17811), 1, + anon_sym_LPAREN, + ACTIONS(17813), 1, + anon_sym_LBRACE, + STATE(8541), 1, + sym_tycon, + STATE(8552), 1, + sym_tyvar, + STATE(8568), 1, + sym_longtycon, + STATE(18640), 1, + sym_tyseq, + STATE(19110), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(8927), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9028), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8569), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847089] = 16, + ACTIONS(18361), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18363), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18365), 1, + sym__symbolic_ident, + ACTIONS(18367), 1, + anon_sym_LPAREN, + ACTIONS(18369), 1, + anon_sym_LBRACE, + STATE(13255), 1, + sym_tycon, + STATE(13316), 1, + sym_tyvar, + STATE(13322), 1, + sym_longtycon, + STATE(18114), 1, + sym_tyseq, + STATE(18950), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11178), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13543), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14103), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13323), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847145] = 16, + ACTIONS(18131), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18133), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18135), 1, + sym__symbolic_ident, + ACTIONS(18137), 1, + anon_sym_LPAREN, + ACTIONS(18139), 1, + anon_sym_LBRACE, + STATE(10843), 1, + sym_tyvar, + STATE(10856), 1, + sym_longtycon, + STATE(10906), 1, + sym_tycon, + STATE(18127), 1, + sym_tyseq, + STATE(19164), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12378), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12788), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10861), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847201] = 16, + ACTIONS(18784), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18786), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18788), 1, + sym__symbolic_ident, + ACTIONS(18790), 1, + anon_sym_LPAREN, + ACTIONS(18792), 1, + anon_sym_LBRACE, + STATE(12071), 1, + sym_tyvar, + STATE(12072), 1, + sym_longtycon, + STATE(12086), 1, + sym_tycon, + STATE(18191), 1, + sym_tyseq, + STATE(18991), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11178), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13035), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13477), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12073), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847257] = 16, + ACTIONS(17596), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17598), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17600), 1, + sym__symbolic_ident, + ACTIONS(17602), 1, + anon_sym_LPAREN, + ACTIONS(17604), 1, + anon_sym_LBRACE, + STATE(15790), 1, + sym_tyvar, + STATE(15816), 1, + sym_longtycon, + STATE(16078), 1, + sym_tycon, + STATE(18360), 1, + sym_tyseq, + STATE(18706), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17267), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17786), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15817), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847313] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 18, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [847345] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [847375] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19151), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19149), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [847405] = 16, + ACTIONS(17606), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17608), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17610), 1, + sym__symbolic_ident, + ACTIONS(17612), 1, + anon_sym_LPAREN, + ACTIONS(17614), 1, + anon_sym_LBRACE, + STATE(8714), 1, + sym_tyvar, + STATE(8718), 1, + sym_longtycon, + STATE(8731), 1, + sym_tycon, + STATE(18030), 1, + sym_tyseq, + STATE(19160), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(8845), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9015), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8722), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847461] = 16, + ACTIONS(18547), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18549), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18551), 1, + sym__symbolic_ident, + ACTIONS(18553), 1, + anon_sym_LPAREN, + ACTIONS(18555), 1, + anon_sym_LBRACE, + STATE(8882), 1, + sym_tyvar, + STATE(8916), 1, + sym_longtycon, + STATE(8946), 1, + sym_tycon, + STATE(18276), 1, + sym_tyseq, + STATE(18917), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(9186), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9497), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8914), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847517] = 16, + ACTIONS(17616), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17618), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17620), 1, + sym__symbolic_ident, + ACTIONS(17622), 1, + anon_sym_LPAREN, + ACTIONS(17624), 1, + anon_sym_LBRACE, + STATE(10321), 1, + sym_tycon, + STATE(10962), 1, + sym_tyvar, + STATE(10970), 1, + sym_longtycon, + STATE(18099), 1, + sym_tyseq, + STATE(18936), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12281), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12663), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10088), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847573] = 16, + ACTIONS(18530), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18532), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18534), 1, + sym__symbolic_ident, + ACTIONS(18536), 1, + anon_sym_LPAREN, + ACTIONS(18538), 1, + anon_sym_LBRACE, + STATE(11913), 1, + sym_tyvar, + STATE(11914), 1, + sym_longtycon, + STATE(11959), 1, + sym_tycon, + STATE(18178), 1, + sym_tyseq, + STATE(19249), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11178), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13095), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13416), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11915), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847629] = 16, + ACTIONS(18171), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18173), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18175), 1, + sym__symbolic_ident, + ACTIONS(18177), 1, + anon_sym_LPAREN, + ACTIONS(18179), 1, + anon_sym_LBRACE, + STATE(13432), 1, + sym_longtycon, + STATE(13491), 1, + sym_tyvar, + STATE(13509), 1, + sym_tycon, + STATE(18064), 1, + sym_tyseq, + STATE(19208), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11178), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13920), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14169), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13357), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847685] = 16, + ACTIONS(17389), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17391), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17393), 1, + sym__symbolic_ident, + ACTIONS(17395), 1, + anon_sym_LPAREN, + ACTIONS(17397), 1, + anon_sym_LBRACE, + STATE(8967), 1, + sym_tyvar, + STATE(8968), 1, + sym_longtycon, + STATE(8982), 1, + sym_tycon, + STATE(18278), 1, + sym_tyseq, + STATE(18734), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(9760), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10626), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(8969), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847741] = 16, + ACTIONS(17815), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17817), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17819), 1, + sym__symbolic_ident, + ACTIONS(17821), 1, + anon_sym_LPAREN, + ACTIONS(17823), 1, + anon_sym_LBRACE, + STATE(10472), 1, + sym_tyvar, + STATE(10473), 1, + sym_longtycon, + STATE(10583), 1, + sym_tycon, + STATE(18686), 1, + sym_tyseq, + STATE(19112), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12322), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12725), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10474), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847797] = 16, + ACTIONS(17369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17371), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17373), 1, + sym__symbolic_ident, + ACTIONS(17375), 1, + anon_sym_LPAREN, + ACTIONS(17377), 1, + anon_sym_LBRACE, + STATE(14124), 1, + sym_longtycon, + STATE(14142), 1, + sym_tycon, + STATE(14199), 1, + sym_tyvar, + STATE(18325), 1, + sym_tyseq, + STATE(19236), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14361), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14562), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14123), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847853] = 16, + ACTIONS(17464), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17466), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17468), 1, + sym__symbolic_ident, + ACTIONS(17470), 1, + anon_sym_LPAREN, + ACTIONS(17472), 1, + anon_sym_LBRACE, + STATE(14212), 1, + sym_tyvar, + STATE(14221), 1, + sym_longtycon, + STATE(14300), 1, + sym_tycon, + STATE(18626), 1, + sym_tyseq, + STATE(18833), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(14495), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15090), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14235), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847909] = 16, + ACTIONS(18758), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18760), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18762), 1, + sym__symbolic_ident, + ACTIONS(18764), 1, + anon_sym_LPAREN, + ACTIONS(18766), 1, + anon_sym_LBRACE, + STATE(17714), 1, + sym_tyvar, + STATE(17753), 1, + sym_longtycon, + STATE(17850), 1, + sym_tycon, + STATE(18407), 1, + sym_tyseq, + STATE(18939), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18948), 2, + sym__paren_ty, + sym_paren_ty, + STATE(20400), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17799), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [847965] = 16, + ACTIONS(17419), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17421), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17423), 1, + sym__symbolic_ident, + ACTIONS(17425), 1, + anon_sym_LPAREN, + ACTIONS(17427), 1, + anon_sym_LBRACE, + STATE(11097), 1, + sym_tyvar, + STATE(11099), 1, + sym_longtycon, + STATE(11318), 1, + sym_tycon, + STATE(18091), 1, + sym_tyseq, + STATE(18891), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12991), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13270), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11100), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848021] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [848051] = 16, + ACTIONS(18151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18153), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18155), 1, + sym__symbolic_ident, + ACTIONS(18157), 1, + anon_sym_LPAREN, + ACTIONS(18159), 1, + anon_sym_LBRACE, + STATE(15310), 1, + sym_tycon, + STATE(15433), 1, + sym_tyvar, + STATE(15435), 1, + sym_longtycon, + STATE(18443), 1, + sym_tyseq, + STATE(18716), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16515), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17371), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15443), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848107] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [848137] = 16, + ACTIONS(18181), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18183), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18185), 1, + sym__symbolic_ident, + ACTIONS(18187), 1, + anon_sym_LPAREN, + ACTIONS(18189), 1, + anon_sym_LBRACE, + STATE(15229), 1, + sym_tycon, + STATE(15464), 1, + sym_tyvar, + STATE(15465), 1, + sym_longtycon, + STATE(18513), 1, + sym_tyseq, + STATE(18821), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16521), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17377), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15467), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848193] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [848223] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [848253] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [848283] = 16, + ACTIONS(17626), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17628), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17630), 1, + sym__symbolic_ident, + ACTIONS(17632), 1, + anon_sym_LPAREN, + ACTIONS(17634), 1, + anon_sym_LBRACE, + STATE(15244), 1, + sym_tycon, + STATE(15288), 1, + sym_tyvar, + STATE(15296), 1, + sym_longtycon, + STATE(18186), 1, + sym_tyseq, + STATE(19190), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16468), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17279), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15299), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848339] = 16, + ACTIONS(17512), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17514), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17516), 1, + sym__symbolic_ident, + ACTIONS(17518), 1, + anon_sym_LPAREN, + ACTIONS(17520), 1, + anon_sym_LBRACE, + STATE(15871), 1, + sym_tyvar, + STATE(15895), 1, + sym_longtycon, + STATE(16331), 1, + sym_tycon, + STATE(18057), 1, + sym_tyseq, + STATE(19185), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17793), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15898), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848395] = 16, + ACTIONS(18191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18193), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18195), 1, + sym__symbolic_ident, + ACTIONS(18197), 1, + anon_sym_LPAREN, + ACTIONS(18199), 1, + anon_sym_LBRACE, + STATE(15273), 1, + sym_tycon, + STATE(15337), 1, + sym_tyvar, + STATE(15397), 1, + sym_longtycon, + STATE(18580), 1, + sym_tyseq, + STATE(19069), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16670), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17381), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15132), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848451] = 16, + ACTIONS(17832), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17834), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17836), 1, + sym__symbolic_ident, + ACTIONS(17838), 1, + anon_sym_LPAREN, + ACTIONS(17840), 1, + anon_sym_LBRACE, + STATE(10507), 1, + sym_tyvar, + STATE(10509), 1, + sym_longtycon, + STATE(10643), 1, + sym_tycon, + STATE(18361), 1, + sym_tyseq, + STATE(19206), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12326), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12727), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10510), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848507] = 16, + ACTIONS(18205), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18207), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18209), 1, + sym__symbolic_ident, + ACTIONS(18211), 1, + anon_sym_LPAREN, + ACTIONS(18213), 1, + anon_sym_LBRACE, + STATE(15228), 1, + sym_tyvar, + STATE(15231), 1, + sym_longtycon, + STATE(15316), 1, + sym_tycon, + STATE(18638), 1, + sym_tyseq, + STATE(18707), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16527), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17388), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15233), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848563] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19155), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19153), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [848593] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16456), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16454), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [848623] = 16, + ACTIONS(17855), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17857), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17859), 1, + sym__symbolic_ident, + ACTIONS(17861), 1, + anon_sym_LPAREN, + ACTIONS(17863), 1, + anon_sym_LBRACE, + STATE(9721), 1, + sym_tyvar, + STATE(9722), 1, + sym_longtycon, + STATE(9951), 1, + sym_tycon, + STATE(18632), 1, + sym_tyseq, + STATE(19033), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11313), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12331), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9723), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848679] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(19157), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 19, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [848711] = 16, + ACTIONS(17865), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17867), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17869), 1, + sym__symbolic_ident, + ACTIONS(17871), 1, + anon_sym_LPAREN, + ACTIONS(17873), 1, + anon_sym_LBRACE, + STATE(11246), 1, + sym_tyvar, + STATE(11248), 1, + sym_longtycon, + STATE(11827), 1, + sym_tycon, + STATE(18349), 1, + sym_tyseq, + STATE(19203), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13163), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11249), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848767] = 16, + ACTIONS(17656), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17658), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17660), 1, + sym__symbolic_ident, + ACTIONS(17662), 1, + anon_sym_LPAREN, + ACTIONS(17664), 1, + anon_sym_LBRACE, + STATE(15246), 1, + sym_tyvar, + STATE(15318), 1, + sym_tycon, + STATE(15333), 1, + sym_longtycon, + STATE(18505), 1, + sym_tyseq, + STATE(19063), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16474), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17283), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15355), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848823] = 16, + ACTIONS(18738), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18740), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18742), 1, + sym__symbolic_ident, + ACTIONS(18744), 1, + anon_sym_LPAREN, + ACTIONS(18746), 1, + anon_sym_LBRACE, + STATE(13108), 1, + sym_tyvar, + STATE(13111), 1, + sym_longtycon, + STATE(13232), 1, + sym_tycon, + STATE(18530), 1, + sym_tyseq, + STATE(18893), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11178), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13668), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14052), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13112), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848879] = 16, + ACTIONS(18215), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18217), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18219), 1, + sym__symbolic_ident, + ACTIONS(18221), 1, + anon_sym_LPAREN, + ACTIONS(18223), 1, + anon_sym_LBRACE, + STATE(10417), 1, + sym_tyvar, + STATE(10419), 1, + sym_longtycon, + STATE(10855), 1, + sym_tycon, + STATE(18693), 1, + sym_tyseq, + STATE(18854), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12383), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12792), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10420), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848935] = 16, + ACTIONS(18879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18881), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18883), 1, + sym__symbolic_ident, + ACTIONS(18885), 1, + anon_sym_LPAREN, + ACTIONS(18887), 1, + anon_sym_LBRACE, + STATE(15164), 1, + sym_tycon, + STATE(15199), 1, + sym_tyvar, + STATE(15205), 1, + sym_longtycon, + STATE(18695), 1, + sym_tyseq, + STATE(19230), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16533), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17400), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15208), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [848991] = 16, + ACTIONS(18401), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18403), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18405), 1, + sym__symbolic_ident, + ACTIONS(18407), 1, + anon_sym_LPAREN, + ACTIONS(18409), 1, + anon_sym_LBRACE, + STATE(16967), 1, + sym_tyvar, + STATE(16977), 1, + sym_tycon, + STATE(16978), 1, + sym_longtycon, + STATE(18125), 1, + sym_tyseq, + STATE(18914), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18461), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18932), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16983), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849047] = 16, + ACTIONS(18239), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18241), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18243), 1, + sym__symbolic_ident, + ACTIONS(18245), 1, + anon_sym_LPAREN, + ACTIONS(18247), 1, + anon_sym_LBRACE, + STATE(9834), 1, + sym_tyvar, + STATE(9856), 1, + sym_tycon, + STATE(9881), 1, + sym_longtycon, + STATE(17998), 1, + sym_tyseq, + STATE(18919), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11543), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12385), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9899), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849103] = 16, + ACTIONS(18259), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18261), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18263), 1, + sym__symbolic_ident, + ACTIONS(18265), 1, + anon_sym_LPAREN, + ACTIONS(18267), 1, + anon_sym_LBRACE, + STATE(9302), 1, + sym_tycon, + STATE(9428), 1, + sym_tyvar, + STATE(9481), 1, + sym_longtycon, + STATE(18003), 1, + sym_tyseq, + STATE(19099), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(10404), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11572), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9183), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849159] = 16, + ACTIONS(18794), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18796), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18798), 1, + sym__symbolic_ident, + ACTIONS(18800), 1, + anon_sym_LPAREN, + ACTIONS(18802), 1, + anon_sym_LBRACE, + STATE(11204), 1, + sym_tyvar, + STATE(11214), 1, + sym_longtycon, + STATE(11525), 1, + sym_tycon, + STATE(18006), 1, + sym_tyseq, + STATE(19180), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11178), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12706), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13062), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11439), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849215] = 16, + ACTIONS(18289), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18291), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18293), 1, + sym__symbolic_ident, + ACTIONS(18295), 1, + anon_sym_LPAREN, + ACTIONS(18297), 1, + anon_sym_LBRACE, + STATE(10309), 1, + sym_tycon, + STATE(10418), 1, + sym_tyvar, + STATE(10441), 1, + sym_longtycon, + STATE(18011), 1, + sym_tyseq, + STATE(18808), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12395), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10584), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849271] = 16, + ACTIONS(18299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18301), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18303), 1, + sym__symbolic_ident, + ACTIONS(18305), 1, + anon_sym_LPAREN, + ACTIONS(18307), 1, + anon_sym_LBRACE, + STATE(10484), 1, + sym_tycon, + STATE(10800), 1, + sym_tyvar, + STATE(10804), 1, + sym_longtycon, + STATE(18017), 1, + sym_tyseq, + STATE(18941), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12401), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12808), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10815), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849327] = 16, + ACTIONS(18311), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18313), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18315), 1, + sym__symbolic_ident, + ACTIONS(18317), 1, + anon_sym_LPAREN, + ACTIONS(18319), 1, + anon_sym_LBRACE, + STATE(9520), 1, + sym_tycon, + STATE(9874), 1, + sym_tyvar, + STATE(9877), 1, + sym_longtycon, + STATE(18019), 1, + sym_tyseq, + STATE(19076), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11617), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12405), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9879), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849383] = 16, + ACTIONS(18321), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18323), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18325), 1, + sym__symbolic_ident, + ACTIONS(18327), 1, + anon_sym_LPAREN, + ACTIONS(18329), 1, + anon_sym_LBRACE, + STATE(14593), 1, + sym_tyvar, + STATE(14595), 1, + sym_longtycon, + STATE(14629), 1, + sym_tycon, + STATE(18025), 1, + sym_tyseq, + STATE(19168), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15210), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16092), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14596), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849439] = 16, + ACTIONS(18341), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18343), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18345), 1, + sym__symbolic_ident, + ACTIONS(18347), 1, + anon_sym_LPAREN, + ACTIONS(18349), 1, + anon_sym_LBRACE, + STATE(14613), 1, + sym_tyvar, + STATE(14615), 1, + sym_longtycon, + STATE(14641), 1, + sym_tycon, + STATE(18028), 1, + sym_tyseq, + STATE(19147), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15212), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16124), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14616), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849495] = 16, + ACTIONS(18371), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18373), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18375), 1, + sym__symbolic_ident, + ACTIONS(18377), 1, + anon_sym_LPAREN, + ACTIONS(18379), 1, + anon_sym_LBRACE, + STATE(10497), 1, + sym_tyvar, + STATE(10501), 1, + sym_longtycon, + STATE(10679), 1, + sym_tycon, + STATE(18033), 1, + sym_tyseq, + STATE(18739), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12412), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12816), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(10504), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849551] = 16, + ACTIONS(18381), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18383), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18385), 1, + sym__symbolic_ident, + ACTIONS(18387), 1, + anon_sym_LPAREN, + ACTIONS(18389), 1, + anon_sym_LBRACE, + STATE(9543), 1, + sym_tyvar, + STATE(9546), 1, + sym_longtycon, + STATE(9711), 1, + sym_tycon, + STATE(18038), 1, + sym_tyseq, + STATE(19077), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11650), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12418), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9551), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849607] = 16, + ACTIONS(18814), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18816), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18818), 1, + sym__symbolic_ident, + ACTIONS(18820), 1, + anon_sym_LPAREN, + ACTIONS(18822), 1, + anon_sym_LBRACE, + STATE(11292), 1, + sym_tyvar, + STATE(11307), 1, + sym_longtycon, + STATE(11384), 1, + sym_tycon, + STATE(18039), 1, + sym_tyseq, + STATE(19109), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11178), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12712), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13078), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11308), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849663] = 16, + ACTIONS(18863), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18865), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18867), 1, + sym__symbolic_ident, + ACTIONS(18869), 1, + anon_sym_LPAREN, + ACTIONS(18871), 1, + anon_sym_LBRACE, + STATE(16364), 1, + sym_tyvar, + STATE(16365), 1, + sym_longtycon, + STATE(16390), 1, + sym_tycon, + STATE(18047), 1, + sym_tyseq, + STATE(18978), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17867), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18588), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16366), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849719] = 16, + ACTIONS(17333), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17335), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17337), 1, + sym__symbolic_ident, + ACTIONS(17339), 1, + anon_sym_LPAREN, + ACTIONS(17341), 1, + anon_sym_LBRACE, + STATE(16377), 1, + sym_tyvar, + STATE(16378), 1, + sym_longtycon, + STATE(16394), 1, + sym_tycon, + STATE(18050), 1, + sym_tyseq, + STATE(18953), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17880), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18613), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16379), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849775] = 16, + ACTIONS(18391), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18393), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18395), 1, + sym__symbolic_ident, + ACTIONS(18397), 1, + anon_sym_LPAREN, + ACTIONS(18399), 1, + anon_sym_LBRACE, + STATE(9737), 1, + sym_tyvar, + STATE(9738), 1, + sym_longtycon, + STATE(9772), 1, + sym_tycon, + STATE(18052), 1, + sym_tyseq, + STATE(19179), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11661), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12429), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9739), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849831] = 16, + ACTIONS(18421), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18423), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18425), 1, + sym__symbolic_ident, + ACTIONS(18427), 1, + anon_sym_LPAREN, + ACTIONS(18429), 1, + anon_sym_LBRACE, + STATE(14997), 1, + sym_tyvar, + STATE(14998), 1, + sym_longtycon, + STATE(15025), 1, + sym_tycon, + STATE(18054), 1, + sym_tyseq, + STATE(19113), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16159), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16531), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14999), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849887] = 16, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(22735), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24803), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [849943] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [849975] = 16, + ACTIONS(18225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18227), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18229), 1, + sym__symbolic_ident, + ACTIONS(18231), 1, + anon_sym_LPAREN, + ACTIONS(18233), 1, + anon_sym_LBRACE, + STATE(16710), 1, + sym_tyvar, + STATE(16719), 1, + sym_longtycon, + STATE(17062), 1, + sym_tycon, + STATE(18417), 1, + sym_tyseq, + STATE(18965), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18180), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18769), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16720), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [850031] = 16, + ACTIONS(18431), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18433), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18435), 1, + sym__symbolic_ident, + ACTIONS(18437), 1, + anon_sym_LPAREN, + ACTIONS(18439), 1, + anon_sym_LBRACE, + STATE(15011), 1, + sym_tyvar, + STATE(15012), 1, + sym_longtycon, + STATE(15029), 1, + sym_tycon, + STATE(18066), 1, + sym_tyseq, + STATE(18896), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(16212), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16534), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15014), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [850087] = 16, + ACTIONS(18451), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18453), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18455), 1, + sym__symbolic_ident, + ACTIONS(18457), 1, + anon_sym_LPAREN, + ACTIONS(18459), 1, + anon_sym_LBRACE, + STATE(9777), 1, + sym_tyvar, + STATE(9778), 1, + sym_longtycon, + STATE(9841), 1, + sym_tycon, + STATE(18069), 1, + sym_tyseq, + STATE(19173), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(11674), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12433), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9782), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [850143] = 16, + ACTIONS(18467), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18469), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18471), 1, + sym__symbolic_ident, + ACTIONS(18473), 1, + anon_sym_LPAREN, + ACTIONS(18475), 1, + anon_sym_LBRACE, + STATE(9272), 1, + sym_tyvar, + STATE(9273), 1, + sym_longtycon, + STATE(9358), 1, + sym_tycon, + STATE(18077), 1, + sym_tyseq, + STATE(18878), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(10436), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11684), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9275), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [850199] = 16, + ACTIONS(18479), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18481), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18483), 1, + sym__symbolic_ident, + ACTIONS(18485), 1, + anon_sym_LPAREN, + ACTIONS(18487), 1, + anon_sym_LBRACE, + STATE(14382), 1, + sym_tycon, + STATE(14383), 1, + sym_tyvar, + STATE(14386), 1, + sym_longtycon, + STATE(18083), 1, + sym_tyseq, + STATE(18988), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(15006), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15226), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(14325), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [850255] = 16, + ACTIONS(17343), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17345), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17347), 1, + sym__symbolic_ident, + ACTIONS(17349), 1, + anon_sym_LPAREN, + ACTIONS(17351), 1, + anon_sym_LBRACE, + STATE(11048), 1, + sym_tycon, + STATE(11729), 1, + sym_tyvar, + STATE(11747), 1, + sym_longtycon, + STATE(18089), 1, + sym_tyseq, + STATE(19034), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11178), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12720), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13092), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [850311] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 20, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [850341] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17967), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17962), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [850371] = 16, + ACTIONS(17636), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17638), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17640), 1, + sym__symbolic_ident, + ACTIONS(17642), 1, + anon_sym_LPAREN, + ACTIONS(17644), 1, + anon_sym_LBRACE, + STATE(17869), 1, + sym_tycon, + STATE(17946), 1, + sym_tyvar, + STATE(17947), 1, + sym_longtycon, + STATE(18035), 1, + sym_tyseq, + STATE(19057), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(19126), 2, + sym__paren_ty, + sym_paren_ty, + STATE(20256), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(17948), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [850427] = 4, + ACTIONS(19163), 1, + anon_sym_withtype, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19161), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19159), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [850459] = 16, + ACTIONS(18505), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18507), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18509), 1, + sym__symbolic_ident, + ACTIONS(18511), 1, + anon_sym_LPAREN, + ACTIONS(18513), 1, + anon_sym_LBRACE, + STATE(18107), 1, + sym_tycon, + STATE(18244), 1, + sym_tyvar, + STATE(18253), 1, + sym_longtycon, + STATE(18522), 1, + sym_tyseq, + STATE(19182), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(21163), 2, + sym__paren_ty, + sym_paren_ty, + STATE(24228), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(24792), 2, + sym__fn_ty, + sym_fn_ty, + STATE(18279), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [850515] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16721), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16719), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [850553] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16771), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16769), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [850591] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16715), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16713), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [850629] = 16, + ACTIONS(18853), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18855), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18857), 1, + sym__symbolic_ident, + ACTIONS(18859), 1, + anon_sym_LPAREN, + ACTIONS(18861), 1, + anon_sym_LBRACE, + STATE(11298), 1, + sym_tyvar, + STATE(11356), 1, + sym_tycon, + STATE(11408), 1, + sym_longtycon, + STATE(18560), 1, + sym_tyseq, + STATE(18997), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12889), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13159), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11414), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [850685] = 16, + ACTIONS(17379), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17381), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17383), 1, + sym__symbolic_ident, + ACTIONS(17385), 1, + anon_sym_LPAREN, + ACTIONS(17387), 1, + anon_sym_LBRACE, + STATE(11043), 1, + sym_longtycon, + STATE(11306), 1, + sym_tycon, + STATE(11785), 1, + sym_tyvar, + STATE(18573), 1, + sym_tyseq, + STATE(19241), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12926), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13213), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11049), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [850741] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16758), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16756), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [850779] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16729), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16727), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [850817] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16733), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16731), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [850855] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16737), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16735), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [850893] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16741), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16739), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [850931] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16745), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16743), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [850969] = 7, + ACTIONS(18969), 1, + anon_sym_COLON, + ACTIONS(18971), 1, + anon_sym_andalso, + ACTIONS(18973), 1, + anon_sym_orelse, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16749), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16747), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [851007] = 16, + ACTIONS(18489), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18491), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18493), 1, + sym__symbolic_ident, + ACTIONS(18495), 1, + anon_sym_LPAREN, + ACTIONS(18497), 1, + anon_sym_LBRACE, + STATE(16653), 1, + sym_tyvar, + STATE(16654), 1, + sym_tycon, + STATE(16655), 1, + sym_longtycon, + STATE(18565), 1, + sym_tyseq, + STATE(19090), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17711), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17981), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(16657), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [851063] = 5, + ACTIONS(19165), 1, + anon_sym_PIPE, + STATE(12976), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16590), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [851097] = 5, + ACTIONS(19165), 1, + anon_sym_PIPE, + STATE(12977), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16556), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [851131] = 5, + ACTIONS(19165), 1, + anon_sym_PIPE, + STATE(12978), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16556), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [851165] = 5, + ACTIONS(19165), 1, + anon_sym_PIPE, + STATE(12978), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16562), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [851199] = 5, + ACTIONS(19167), 1, + anon_sym_PIPE, + STATE(12978), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14793), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [851233] = 5, + ACTIONS(16592), 1, + anon_sym_infix, + ACTIONS(19170), 1, + anon_sym_PIPE, + STATE(12981), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [851267] = 5, + ACTIONS(16560), 1, + anon_sym_infix, + ACTIONS(19170), 1, + anon_sym_PIPE, + STATE(12982), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [851301] = 5, + ACTIONS(16560), 1, + anon_sym_infix, + ACTIONS(19170), 1, + anon_sym_PIPE, + STATE(12983), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [851335] = 5, + ACTIONS(16564), 1, + anon_sym_infix, + ACTIONS(19170), 1, + anon_sym_PIPE, + STATE(12983), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [851369] = 5, + ACTIONS(14795), 1, + anon_sym_infix, + ACTIONS(19172), 1, + anon_sym_PIPE, + STATE(12983), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [851403] = 5, + ACTIONS(19175), 1, + anon_sym_PIPE, + STATE(12986), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16590), 16, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [851437] = 5, + ACTIONS(19175), 1, + anon_sym_PIPE, + STATE(12987), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 16, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [851471] = 5, + ACTIONS(19175), 1, + anon_sym_PIPE, + STATE(12988), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 16, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [851505] = 5, + ACTIONS(19175), 1, + anon_sym_PIPE, + STATE(12988), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16562), 16, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [851539] = 5, + ACTIONS(19177), 1, + anon_sym_PIPE, + STATE(12988), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(14793), 16, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [851573] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17980), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(17975), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [851603] = 16, + ACTIONS(18515), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18517), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18519), 1, + sym__symbolic_ident, + ACTIONS(18521), 1, + anon_sym_LPAREN, + ACTIONS(18523), 1, + anon_sym_LBRACE, + STATE(13028), 1, + sym_tycon, + STATE(13257), 1, + sym_tyvar, + STATE(13277), 1, + sym_longtycon, + STATE(18633), 1, + sym_tyseq, + STATE(18829), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11178), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13590), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13867), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(13281), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [851659] = 4, + ACTIONS(19180), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16505), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [851691] = 5, + ACTIONS(19182), 1, + anon_sym_PIPE, + STATE(12994), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16590), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [851725] = 5, + ACTIONS(19182), 1, + anon_sym_PIPE, + STATE(12995), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16556), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [851759] = 5, + ACTIONS(19182), 1, + anon_sym_PIPE, + STATE(12996), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16556), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [851793] = 5, + ACTIONS(19182), 1, + anon_sym_PIPE, + STATE(12996), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16562), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [851827] = 5, + ACTIONS(19184), 1, + anon_sym_PIPE, + STATE(12996), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14793), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [851861] = 16, + ACTIONS(17666), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17668), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17670), 1, + sym__symbolic_ident, + ACTIONS(17672), 1, + anon_sym_LPAREN, + ACTIONS(17674), 1, + anon_sym_LBRACE, + STATE(11354), 1, + sym_tycon, + STATE(11824), 1, + sym_tyvar, + STATE(11826), 1, + sym_longtycon, + STATE(17996), 1, + sym_tyseq, + STATE(18827), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(12678), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13101), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(11828), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [851917] = 16, + ACTIONS(17474), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17476), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17478), 1, + sym__symbolic_ident, + ACTIONS(17480), 1, + anon_sym_LPAREN, + ACTIONS(17482), 1, + anon_sym_LBRACE, + STATE(12097), 1, + sym_tyvar, + STATE(12098), 1, + sym_longtycon, + STATE(12141), 1, + sym_tycon, + STATE(18549), 1, + sym_tyseq, + STATE(18947), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9382), 2, + sym__fn_ty, + sym_fn_ty, + STATE(13106), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13502), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(12099), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [851973] = 5, + ACTIONS(19187), 1, + anon_sym_PIPE, + STATE(13001), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16590), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [852007] = 5, + ACTIONS(19187), 1, + anon_sym_PIPE, + STATE(13002), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [852041] = 5, + ACTIONS(19187), 1, + anon_sym_PIPE, + STATE(13003), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16556), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [852075] = 5, + ACTIONS(19187), 1, + anon_sym_PIPE, + STATE(13003), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16562), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [852109] = 5, + ACTIONS(19189), 1, + anon_sym_PIPE, + STATE(13003), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(14793), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [852143] = 5, + ACTIONS(16592), 1, + anon_sym_infix, + ACTIONS(19192), 1, + anon_sym_PIPE, + STATE(13006), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 18, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852177] = 5, + ACTIONS(16560), 1, + anon_sym_infix, + ACTIONS(19192), 1, + anon_sym_PIPE, + STATE(13007), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 18, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852211] = 5, + ACTIONS(16560), 1, + anon_sym_infix, + ACTIONS(19192), 1, + anon_sym_PIPE, + STATE(13008), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 18, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852245] = 5, + ACTIONS(16564), 1, + anon_sym_infix, + ACTIONS(19192), 1, + anon_sym_PIPE, + STATE(13008), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 18, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852279] = 5, + ACTIONS(14795), 1, + anon_sym_infix, + ACTIONS(19194), 1, + anon_sym_PIPE, + STATE(13008), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 18, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852313] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16721), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16719), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852351] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16771), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16769), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852389] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16715), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16713), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852427] = 5, + ACTIONS(16592), 1, + anon_sym_infix, + ACTIONS(19197), 1, + anon_sym_PIPE, + STATE(13014), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [852461] = 5, + ACTIONS(16560), 1, + anon_sym_infix, + ACTIONS(19197), 1, + anon_sym_PIPE, + STATE(13015), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [852495] = 5, + ACTIONS(16560), 1, + anon_sym_infix, + ACTIONS(19197), 1, + anon_sym_PIPE, + STATE(13016), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [852529] = 5, + ACTIONS(16564), 1, + anon_sym_infix, + ACTIONS(19197), 1, + anon_sym_PIPE, + STATE(13016), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [852563] = 5, + ACTIONS(14795), 1, + anon_sym_infix, + ACTIONS(19199), 1, + anon_sym_PIPE, + STATE(13016), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [852597] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16758), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16756), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852635] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16729), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16727), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852673] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16733), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16731), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852711] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16737), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16735), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852749] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16741), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16739), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852787] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16745), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16743), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852825] = 7, + ACTIONS(18994), 1, + anon_sym_COLON, + ACTIONS(18996), 1, + anon_sym_andalso, + ACTIONS(18998), 1, + anon_sym_orelse, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16749), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16747), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [852863] = 16, + ACTIONS(18269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18271), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18273), 1, + sym__symbolic_ident, + ACTIONS(18275), 1, + anon_sym_LPAREN, + ACTIONS(18277), 1, + anon_sym_LBRACE, + STATE(9368), 1, + sym_tycon, + STATE(9381), 1, + sym_tyvar, + STATE(9417), 1, + sym_longtycon, + STATE(18119), 1, + sym_tyseq, + STATE(19137), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8398), 2, + sym__fn_ty, + sym_fn_ty, + STATE(10320), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11118), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(9420), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [852919] = 16, + ACTIONS(18774), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18776), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18778), 1, + sym__symbolic_ident, + ACTIONS(18780), 1, + anon_sym_LPAREN, + ACTIONS(18782), 1, + anon_sym_LBRACE, + STATE(15688), 1, + sym_tyvar, + STATE(15726), 1, + sym_tycon, + STATE(15745), 1, + sym_longtycon, + STATE(17974), 1, + sym_tyseq, + STATE(19214), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5658), 2, + sym__fn_ty, + sym_fn_ty, + STATE(17625), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17876), 2, + sym__tuple_ty, + sym_tuple_ty, + STATE(15746), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [852975] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19204), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19202), 19, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [853005] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19208), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19206), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [853034] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [853063] = 7, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(19210), 1, + anon_sym_COLON, + ACTIONS(19212), 1, + anon_sym_andalso, + ACTIONS(19214), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853100] = 4, + ACTIONS(19210), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853131] = 7, + ACTIONS(16810), 1, + anon_sym_SEMI, + ACTIONS(19216), 1, + sym__alphaAlphaNumeric_ident, + STATE(14079), 1, + sym_strid, + STATE(21967), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13031), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + ACTIONS(16815), 14, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853168] = 7, + ACTIONS(19070), 1, + anon_sym_handle, + ACTIONS(19219), 1, + anon_sym_COLON, + ACTIONS(19221), 1, + anon_sym_andalso, + ACTIONS(19223), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [853205] = 4, + ACTIONS(19219), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [853236] = 8, + ACTIONS(19070), 1, + anon_sym_handle, + ACTIONS(19219), 1, + anon_sym_COLON, + ACTIONS(19221), 1, + anon_sym_andalso, + ACTIONS(19223), 1, + anon_sym_orelse, + ACTIONS(19225), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [853275] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(19227), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [853306] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [853335] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19231), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19229), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [853364] = 7, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(19210), 1, + anon_sym_COLON, + ACTIONS(19212), 1, + anon_sym_andalso, + ACTIONS(19214), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16787), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16779), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853401] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16749), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16747), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [853438] = 7, + ACTIONS(19020), 1, + anon_sym_handle, + ACTIONS(19241), 1, + anon_sym_COLON, + ACTIONS(19243), 1, + anon_sym_andalso, + ACTIONS(19245), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16620), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853475] = 7, + ACTIONS(19020), 1, + anon_sym_handle, + ACTIONS(19241), 1, + anon_sym_COLON, + ACTIONS(19243), 1, + anon_sym_andalso, + ACTIONS(19245), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16628), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853512] = 7, + ACTIONS(16626), 1, + anon_sym_infix, + ACTIONS(19080), 1, + anon_sym_handle, + ACTIONS(19247), 1, + anon_sym_COLON, + ACTIONS(19249), 1, + anon_sym_andalso, + ACTIONS(19251), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853549] = 7, + ACTIONS(16630), 1, + anon_sym_infix, + ACTIONS(19080), 1, + anon_sym_handle, + ACTIONS(19247), 1, + anon_sym_COLON, + ACTIONS(19249), 1, + anon_sym_andalso, + ACTIONS(19251), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853586] = 7, + ACTIONS(16810), 1, + anon_sym_SEMI, + ACTIONS(19253), 1, + sym__alphaAlphaNumeric_ident, + STATE(13925), 1, + sym_strid, + STATE(21942), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13044), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + ACTIONS(16815), 14, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853623] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19258), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19256), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [853652] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19262), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19260), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [853681] = 5, + ACTIONS(19264), 1, + anon_sym_COLON, + ACTIONS(19266), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 15, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [853714] = 7, + ACTIONS(16626), 1, + anon_sym_infix, + ACTIONS(19268), 1, + anon_sym_COLON, + ACTIONS(19270), 1, + anon_sym_andalso, + ACTIONS(19272), 1, + anon_sym_orelse, + ACTIONS(19274), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853751] = 7, + ACTIONS(16630), 1, + anon_sym_infix, + ACTIONS(19268), 1, + anon_sym_COLON, + ACTIONS(19270), 1, + anon_sym_andalso, + ACTIONS(19272), 1, + anon_sym_orelse, + ACTIONS(19274), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853788] = 5, + ACTIONS(19276), 1, + anon_sym_PIPE, + STATE(13051), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16564), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16562), 16, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [853821] = 5, + ACTIONS(19278), 1, + anon_sym_PIPE, + STATE(13051), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14795), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14793), 16, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [853854] = 7, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(19281), 1, + anon_sym_COLON, + ACTIONS(19283), 1, + anon_sym_andalso, + ACTIONS(19285), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853891] = 7, + ACTIONS(16641), 1, + anon_sym_infix, + ACTIONS(19080), 1, + anon_sym_handle, + ACTIONS(19247), 1, + anon_sym_COLON, + ACTIONS(19249), 1, + anon_sym_andalso, + ACTIONS(19251), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853928] = 4, + ACTIONS(16661), 1, + anon_sym_infix, + ACTIONS(19247), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853959] = 8, + ACTIONS(16647), 1, + anon_sym_infix, + ACTIONS(19080), 1, + anon_sym_handle, + ACTIONS(19247), 1, + anon_sym_COLON, + ACTIONS(19249), 1, + anon_sym_andalso, + ACTIONS(19251), 1, + anon_sym_orelse, + ACTIONS(19287), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [853998] = 4, + ACTIONS(19281), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [854029] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16823), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16821), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [854058] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16653), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [854095] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19299), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19297), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [854124] = 7, + ACTIONS(16641), 1, + anon_sym_infix, + ACTIONS(19268), 1, + anon_sym_COLON, + ACTIONS(19270), 1, + anon_sym_andalso, + ACTIONS(19272), 1, + anon_sym_orelse, + ACTIONS(19274), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [854161] = 4, + ACTIONS(16661), 1, + anon_sym_infix, + ACTIONS(19268), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [854192] = 4, + ACTIONS(19301), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16526), 16, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [854223] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [854252] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19305), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19303), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [854281] = 7, + ACTIONS(16626), 1, + anon_sym_infix, + ACTIONS(19307), 1, + anon_sym_COLON, + ACTIONS(19309), 1, + anon_sym_andalso, + ACTIONS(19311), 1, + anon_sym_orelse, + ACTIONS(19313), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [854318] = 7, + ACTIONS(16630), 1, + anon_sym_infix, + ACTIONS(19307), 1, + anon_sym_COLON, + ACTIONS(19309), 1, + anon_sym_andalso, + ACTIONS(19311), 1, + anon_sym_orelse, + ACTIONS(19313), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [854355] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16835), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16833), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [854384] = 7, + ACTIONS(19315), 1, + anon_sym_COLON, + ACTIONS(19317), 1, + anon_sym_andalso, + ACTIONS(19319), 1, + anon_sym_orelse, + ACTIONS(19321), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16620), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [854421] = 7, + ACTIONS(19315), 1, + anon_sym_COLON, + ACTIONS(19317), 1, + anon_sym_andalso, + ACTIONS(19319), 1, + anon_sym_orelse, + ACTIONS(19321), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16628), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [854458] = 5, + ACTIONS(19323), 1, + anon_sym_and, + STATE(13070), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16884), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16882), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [854491] = 7, + ACTIONS(19020), 1, + anon_sym_handle, + ACTIONS(19241), 1, + anon_sym_COLON, + ACTIONS(19243), 1, + anon_sym_andalso, + ACTIONS(19245), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16639), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [854528] = 5, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [854561] = 4, + ACTIONS(19241), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16659), 17, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [854592] = 8, + ACTIONS(19020), 1, + anon_sym_handle, + ACTIONS(19241), 1, + anon_sym_COLON, + ACTIONS(19243), 1, + anon_sym_andalso, + ACTIONS(19245), 1, + anon_sym_orelse, + ACTIONS(19326), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16643), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [854631] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16819), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16817), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [854660] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16831), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16829), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [854689] = 8, + ACTIONS(19010), 1, + anon_sym_handle, + ACTIONS(19264), 1, + anon_sym_COLON, + ACTIONS(19266), 1, + anon_sym_andalso, + ACTIONS(19328), 1, + anon_sym_orelse, + ACTIONS(19330), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [854728] = 4, + ACTIONS(19332), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16526), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [854759] = 7, + ACTIONS(16641), 1, + anon_sym_infix, + ACTIONS(19307), 1, + anon_sym_COLON, + ACTIONS(19309), 1, + anon_sym_andalso, + ACTIONS(19311), 1, + anon_sym_orelse, + ACTIONS(19313), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [854796] = 4, + ACTIONS(16661), 1, + anon_sym_infix, + ACTIONS(19307), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [854827] = 8, + ACTIONS(16647), 1, + anon_sym_infix, + ACTIONS(19307), 1, + anon_sym_COLON, + ACTIONS(19309), 1, + anon_sym_andalso, + ACTIONS(19311), 1, + anon_sym_orelse, + ACTIONS(19313), 1, + anon_sym_handle, + ACTIONS(19334), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [854866] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [854897] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16653), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [854934] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16721), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16719), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [854971] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16771), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16769), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [855008] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16715), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16713), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [855045] = 7, + ACTIONS(19315), 1, + anon_sym_COLON, + ACTIONS(19317), 1, + anon_sym_andalso, + ACTIONS(19319), 1, + anon_sym_orelse, + ACTIONS(19321), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16639), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [855082] = 4, + ACTIONS(19315), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16659), 17, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [855113] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19336), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19338), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [855142] = 7, + ACTIONS(16655), 1, + anon_sym_infix, + ACTIONS(19268), 1, + anon_sym_COLON, + ACTIONS(19270), 1, + anon_sym_andalso, + ACTIONS(19272), 1, + anon_sym_orelse, + ACTIONS(19274), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [855179] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19340), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19342), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [855208] = 4, + ACTIONS(19344), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16526), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [855239] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19348), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19346), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [855268] = 4, + ACTIONS(19350), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [855299] = 4, + ACTIONS(19352), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16505), 17, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [855330] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19354), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19356), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [855359] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [855388] = 5, + ACTIONS(19358), 1, + anon_sym_COLON, + ACTIONS(19360), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 15, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [855421] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19362), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19364), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [855450] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16758), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16756), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [855487] = 4, + ACTIONS(19366), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16526), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [855518] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [855547] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19370), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19368), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [855576] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19374), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19372), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [855605] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19378), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19376), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [855634] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(19380), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [855665] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16729), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16727), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [855702] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [855731] = 5, + ACTIONS(19382), 1, + anon_sym_COLON, + ACTIONS(19384), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16612), 16, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [855764] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19388), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19386), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [855793] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [855822] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 16, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [855853] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 17, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [855884] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16733), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16731), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [855921] = 5, + ACTIONS(19276), 1, + anon_sym_PIPE, + STATE(13283), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16592), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16590), 16, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [855954] = 7, + ACTIONS(16626), 1, + anon_sym_infix, + ACTIONS(19044), 1, + anon_sym_handle, + ACTIONS(19390), 1, + anon_sym_COLON, + ACTIONS(19392), 1, + anon_sym_andalso, + ACTIONS(19394), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [855991] = 7, + ACTIONS(16630), 1, + anon_sym_infix, + ACTIONS(19044), 1, + anon_sym_handle, + ACTIONS(19390), 1, + anon_sym_COLON, + ACTIONS(19392), 1, + anon_sym_andalso, + ACTIONS(19394), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [856028] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 17, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [856059] = 8, + ACTIONS(19070), 1, + anon_sym_handle, + ACTIONS(19219), 1, + anon_sym_COLON, + ACTIONS(19221), 1, + anon_sym_andalso, + ACTIONS(19223), 1, + anon_sym_orelse, + ACTIONS(19396), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [856098] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19400), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19398), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [856127] = 7, + ACTIONS(16655), 1, + anon_sym_infix, + ACTIONS(19307), 1, + anon_sym_COLON, + ACTIONS(19309), 1, + anon_sym_andalso, + ACTIONS(19311), 1, + anon_sym_orelse, + ACTIONS(19313), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [856164] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [856193] = 5, + ACTIONS(19210), 1, + anon_sym_COLON, + ACTIONS(19212), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [856226] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [856255] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19404), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19402), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [856284] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16721), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16719), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [856321] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13066), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(13064), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [856350] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16808), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16806), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [856379] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 16, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [856410] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [856439] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [856468] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [856497] = 5, + ACTIONS(19219), 1, + anon_sym_COLON, + ACTIONS(19221), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [856530] = 7, + ACTIONS(16626), 1, + anon_sym_infix, + ACTIONS(19406), 1, + anon_sym_COLON, + ACTIONS(19408), 1, + anon_sym_andalso, + ACTIONS(19410), 1, + anon_sym_orelse, + ACTIONS(19412), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [856567] = 7, + ACTIONS(16630), 1, + anon_sym_infix, + ACTIONS(19406), 1, + anon_sym_COLON, + ACTIONS(19408), 1, + anon_sym_andalso, + ACTIONS(19410), 1, + anon_sym_orelse, + ACTIONS(19412), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [856604] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19416), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19414), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [856633] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [856662] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [856691] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13026), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(13024), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [856720] = 7, + ACTIONS(16641), 1, + anon_sym_infix, + ACTIONS(19044), 1, + anon_sym_handle, + ACTIONS(19390), 1, + anon_sym_COLON, + ACTIONS(19392), 1, + anon_sym_andalso, + ACTIONS(19394), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [856757] = 4, + ACTIONS(16661), 1, + anon_sym_infix, + ACTIONS(19390), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [856788] = 5, + ACTIONS(16618), 1, + anon_sym_infix, + ACTIONS(19247), 1, + anon_sym_COLON, + ACTIONS(19249), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [856821] = 8, + ACTIONS(16647), 1, + anon_sym_infix, + ACTIONS(19044), 1, + anon_sym_handle, + ACTIONS(19390), 1, + anon_sym_COLON, + ACTIONS(19392), 1, + anon_sym_andalso, + ACTIONS(19394), 1, + anon_sym_orelse, + ACTIONS(19418), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [856860] = 7, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(19358), 1, + anon_sym_COLON, + ACTIONS(19360), 1, + anon_sym_andalso, + ACTIONS(19420), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [856897] = 4, + ACTIONS(19358), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 16, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [856928] = 5, + ACTIONS(16618), 1, + anon_sym_infix, + ACTIONS(19268), 1, + anon_sym_COLON, + ACTIONS(19270), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [856961] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16737), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16735), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [856998] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16741), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16739), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [857035] = 7, + ACTIONS(16641), 1, + anon_sym_infix, + ACTIONS(19406), 1, + anon_sym_COLON, + ACTIONS(19408), 1, + anon_sym_andalso, + ACTIONS(19410), 1, + anon_sym_orelse, + ACTIONS(19412), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [857072] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [857103] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [857132] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19422), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19424), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [857161] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19426), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19428), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [857190] = 5, + ACTIONS(16618), 1, + anon_sym_infix, + ACTIONS(19307), 1, + anon_sym_COLON, + ACTIONS(19309), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [857223] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19430), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19432), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [857252] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [857281] = 4, + ACTIONS(16661), 1, + anon_sym_infix, + ACTIONS(19406), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [857312] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19434), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19436), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [857341] = 4, + ACTIONS(19438), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16526), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [857372] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [857401] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [857430] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [857459] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(19440), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 18, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [857490] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19444), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19442), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [857519] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16745), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16743), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [857556] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [857585] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19448), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19446), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [857614] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [857643] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19452), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19450), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [857672] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16749), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16747), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [857709] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(19454), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 18, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [857740] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19456), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19458), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [857769] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [857798] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [857827] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [857856] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [857885] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19462), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19460), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [857914] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19464), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19466), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [857943] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19468), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19470), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [857972] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19472), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19474), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [858001] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19478), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19476), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [858030] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19480), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19482), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [858059] = 4, + ACTIONS(19484), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16526), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [858090] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [858119] = 5, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 15, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [858152] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(12416), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [858181] = 7, + ACTIONS(19010), 1, + anon_sym_handle, + ACTIONS(19264), 1, + anon_sym_COLON, + ACTIONS(19266), 1, + anon_sym_andalso, + ACTIONS(19328), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 13, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [858218] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [858247] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [858276] = 7, + ACTIONS(19010), 1, + anon_sym_handle, + ACTIONS(19264), 1, + anon_sym_COLON, + ACTIONS(19266), 1, + anon_sym_andalso, + ACTIONS(19328), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 13, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [858313] = 5, + ACTIONS(19486), 1, + anon_sym_STAR, + STATE(13231), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15958), 16, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [858346] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19490), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19488), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [858375] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16729), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16727), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [858412] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19492), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19494), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [858441] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19496), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19498), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [858470] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16771), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16769), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [858507] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19500), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19502), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [858536] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16715), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16713), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [858573] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17060), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17058), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [858602] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17068), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17066), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [858631] = 8, + ACTIONS(16647), 1, + anon_sym_infix, + ACTIONS(19080), 1, + anon_sym_handle, + ACTIONS(19247), 1, + anon_sym_COLON, + ACTIONS(19249), 1, + anon_sym_andalso, + ACTIONS(19251), 1, + anon_sym_orelse, + ACTIONS(19504), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [858670] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(19506), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [858701] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16733), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16731), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [858738] = 5, + ACTIONS(19281), 1, + anon_sym_COLON, + ACTIONS(19283), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [858771] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19510), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19508), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [858800] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19514), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19512), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [858829] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16869), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16867), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [858858] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16873), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16871), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [858887] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19518), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19516), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [858916] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19522), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19520), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [858945] = 7, + ACTIONS(19010), 1, + anon_sym_handle, + ACTIONS(19264), 1, + anon_sym_COLON, + ACTIONS(19266), 1, + anon_sym_andalso, + ACTIONS(19328), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 13, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [858982] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [859011] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(19524), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [859042] = 4, + ACTIONS(19264), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 16, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [859073] = 8, + ACTIONS(19010), 1, + anon_sym_handle, + ACTIONS(19264), 1, + anon_sym_COLON, + ACTIONS(19266), 1, + anon_sym_andalso, + ACTIONS(19328), 1, + anon_sym_orelse, + ACTIONS(19526), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16643), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [859112] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19528), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19530), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [859141] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(19532), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 18, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [859172] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [859201] = 5, + ACTIONS(19534), 1, + anon_sym_and, + STATE(13233), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16891), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16889), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [859234] = 5, + ACTIONS(19537), 1, + anon_sym_and, + STATE(13234), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16898), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16896), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [859267] = 5, + ACTIONS(19241), 1, + anon_sym_COLON, + ACTIONS(19243), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16612), 16, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [859300] = 4, + ACTIONS(19540), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16505), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [859331] = 7, + ACTIONS(16852), 1, + anon_sym_SEMI, + ACTIONS(19542), 1, + sym__alphaAlphaNumeric_ident, + STATE(14079), 1, + sym_strid, + STATE(21967), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13031), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + ACTIONS(16856), 14, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [859368] = 7, + ACTIONS(19382), 1, + anon_sym_COLON, + ACTIONS(19384), 1, + anon_sym_andalso, + ACTIONS(19544), 1, + anon_sym_orelse, + ACTIONS(19546), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16653), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [859405] = 5, + ACTIONS(19315), 1, + anon_sym_COLON, + ACTIONS(19317), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16612), 16, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [859438] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [859475] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [859512] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16737), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16735), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [859549] = 8, + ACTIONS(16647), 1, + anon_sym_infix, + ACTIONS(19307), 1, + anon_sym_COLON, + ACTIONS(19309), 1, + anon_sym_andalso, + ACTIONS(19311), 1, + anon_sym_orelse, + ACTIONS(19313), 1, + anon_sym_handle, + ACTIONS(19548), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [859588] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19552), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19550), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [859617] = 5, + ACTIONS(19554), 1, + anon_sym_STAR, + STATE(13231), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 16, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [859650] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [859679] = 5, + ACTIONS(19537), 1, + anon_sym_and, + STATE(13070), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16898), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16896), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [859712] = 5, + ACTIONS(19557), 1, + anon_sym_and, + STATE(13070), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16905), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16903), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [859745] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [859774] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(19560), 1, + anon_sym_STAR, + STATE(13267), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [859807] = 7, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(19291), 1, + anon_sym_andalso, + ACTIONS(19293), 1, + anon_sym_orelse, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [859844] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [859873] = 4, + ACTIONS(19289), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [859904] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [859933] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17072), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17070), 18, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [859962] = 8, + ACTIONS(19020), 1, + anon_sym_handle, + ACTIONS(19241), 1, + anon_sym_COLON, + ACTIONS(19243), 1, + anon_sym_andalso, + ACTIONS(19245), 1, + anon_sym_orelse, + ACTIONS(19562), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16643), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [860001] = 7, + ACTIONS(19315), 1, + anon_sym_COLON, + ACTIONS(19317), 1, + anon_sym_andalso, + ACTIONS(19319), 1, + anon_sym_orelse, + ACTIONS(19321), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16653), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [860038] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19566), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19564), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [860067] = 7, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(19358), 1, + anon_sym_COLON, + ACTIONS(19360), 1, + anon_sym_andalso, + ACTIONS(19420), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16787), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16779), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [860104] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [860133] = 7, + ACTIONS(19382), 1, + anon_sym_COLON, + ACTIONS(19384), 1, + anon_sym_andalso, + ACTIONS(19544), 1, + anon_sym_orelse, + ACTIONS(19546), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16620), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [860170] = 7, + ACTIONS(19382), 1, + anon_sym_COLON, + ACTIONS(19384), 1, + anon_sym_andalso, + ACTIONS(19544), 1, + anon_sym_orelse, + ACTIONS(19546), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16628), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [860207] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16839), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(16837), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [860236] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19570), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19568), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [860265] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [860302] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [860339] = 7, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(19358), 1, + anon_sym_COLON, + ACTIONS(19360), 1, + anon_sym_andalso, + ACTIONS(19420), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [860376] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16741), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16739), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [860413] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [860442] = 7, + ACTIONS(18975), 1, + anon_sym_handle, + ACTIONS(19358), 1, + anon_sym_COLON, + ACTIONS(19360), 1, + anon_sym_andalso, + ACTIONS(19420), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [860479] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [860508] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16745), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16743), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [860545] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19572), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19574), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [860574] = 7, + ACTIONS(19382), 1, + anon_sym_COLON, + ACTIONS(19384), 1, + anon_sym_andalso, + ACTIONS(19544), 1, + anon_sym_orelse, + ACTIONS(19546), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16639), 14, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [860611] = 4, + ACTIONS(19382), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16659), 17, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [860642] = 8, + ACTIONS(19382), 1, + anon_sym_COLON, + ACTIONS(19384), 1, + anon_sym_andalso, + ACTIONS(19544), 1, + anon_sym_orelse, + ACTIONS(19546), 1, + anon_sym_handle, + ACTIONS(19576), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16643), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [860681] = 7, + ACTIONS(19578), 1, + sym__alphaAlphaNumeric_ident, + STATE(13840), 1, + sym_strid, + STATE(22940), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16810), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(13263), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + ACTIONS(16815), 13, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [860718] = 8, + ACTIONS(19382), 1, + anon_sym_COLON, + ACTIONS(19384), 1, + anon_sym_andalso, + ACTIONS(19544), 1, + anon_sym_orelse, + ACTIONS(19546), 1, + anon_sym_handle, + ACTIONS(19581), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16643), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [860757] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19583), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19585), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [860786] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [860815] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(19560), 1, + anon_sym_STAR, + STATE(13268), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [860848] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(19587), 1, + anon_sym_STAR, + STATE(13268), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [860881] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13042), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(13040), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [860910] = 4, + ACTIONS(19590), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16526), 16, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [860941] = 5, + ACTIONS(16592), 1, + anon_sym_infix, + ACTIONS(19592), 1, + anon_sym_PIPE, + STATE(13273), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [860974] = 5, + ACTIONS(16560), 1, + anon_sym_infix, + ACTIONS(19592), 1, + anon_sym_PIPE, + STATE(13274), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [861007] = 5, + ACTIONS(16560), 1, + anon_sym_infix, + ACTIONS(19592), 1, + anon_sym_PIPE, + STATE(13275), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [861040] = 5, + ACTIONS(16564), 1, + anon_sym_infix, + ACTIONS(19592), 1, + anon_sym_PIPE, + STATE(13275), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [861073] = 5, + ACTIONS(14795), 1, + anon_sym_infix, + ACTIONS(19594), 1, + anon_sym_PIPE, + STATE(13275), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [861106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19599), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19597), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [861135] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [861164] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [861193] = 5, + ACTIONS(19276), 1, + anon_sym_PIPE, + STATE(13050), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16556), 16, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [861226] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19603), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19601), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [861255] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 17, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [861286] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19607), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19605), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [861315] = 5, + ACTIONS(19276), 1, + anon_sym_PIPE, + STATE(13051), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16560), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16556), 16, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [861348] = 7, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(19281), 1, + anon_sym_COLON, + ACTIONS(19283), 1, + anon_sym_andalso, + ACTIONS(19285), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [861385] = 5, + ACTIONS(16618), 1, + anon_sym_infix, + ACTIONS(19390), 1, + anon_sym_COLON, + ACTIONS(19392), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [861418] = 7, + ACTIONS(19609), 1, + sym__alphaAlphaNumeric_ident, + STATE(13840), 1, + sym_strid, + STATE(22940), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16852), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(13263), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + ACTIONS(16856), 13, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [861455] = 7, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(19281), 1, + anon_sym_COLON, + ACTIONS(19283), 1, + anon_sym_andalso, + ACTIONS(19285), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [861492] = 8, + ACTIONS(16647), 1, + anon_sym_infix, + ACTIONS(19044), 1, + anon_sym_handle, + ACTIONS(19390), 1, + anon_sym_COLON, + ACTIONS(19392), 1, + anon_sym_andalso, + ACTIONS(19394), 1, + anon_sym_orelse, + ACTIONS(19611), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [861531] = 7, + ACTIONS(16655), 1, + anon_sym_infix, + ACTIONS(19406), 1, + anon_sym_COLON, + ACTIONS(19408), 1, + anon_sym_andalso, + ACTIONS(19410), 1, + anon_sym_orelse, + ACTIONS(19412), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [861568] = 7, + ACTIONS(19000), 1, + anon_sym_handle, + ACTIONS(19281), 1, + anon_sym_COLON, + ACTIONS(19283), 1, + anon_sym_andalso, + ACTIONS(19285), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16787), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16779), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [861605] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19613), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19615), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [861634] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19617), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19619), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [861663] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19621), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19623), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [861692] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19625), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19627), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [861721] = 7, + ACTIONS(16852), 1, + anon_sym_SEMI, + ACTIONS(19629), 1, + sym__alphaAlphaNumeric_ident, + STATE(13925), 1, + sym_strid, + STATE(21942), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13044), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + ACTIONS(16856), 14, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [861758] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19631), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19633), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [861787] = 5, + ACTIONS(16618), 1, + anon_sym_infix, + ACTIONS(19406), 1, + anon_sym_COLON, + ACTIONS(19408), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [861820] = 7, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(19210), 1, + anon_sym_COLON, + ACTIONS(19212), 1, + anon_sym_andalso, + ACTIONS(19214), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [861857] = 7, + ACTIONS(18955), 1, + anon_sym_handle, + ACTIONS(19210), 1, + anon_sym_COLON, + ACTIONS(19212), 1, + anon_sym_andalso, + ACTIONS(19214), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [861894] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19637), 2, + anon_sym_fun, + anon_sym_infix, + ACTIONS(19635), 18, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + anon_sym_signature, + anon_sym_functor, + anon_sym_Definition, + anon_sym_Datatype_COLON, + anon_sym_Theorem, + [861923] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19639), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19641), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [861952] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19643), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19645), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [861981] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19647), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19649), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [862010] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [862047] = 4, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 16, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [862078] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19651), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19653), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [862107] = 7, + ACTIONS(19070), 1, + anon_sym_handle, + ACTIONS(19219), 1, + anon_sym_COLON, + ACTIONS(19221), 1, + anon_sym_andalso, + ACTIONS(19223), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [862144] = 7, + ACTIONS(19070), 1, + anon_sym_handle, + ACTIONS(19219), 1, + anon_sym_COLON, + ACTIONS(19221), 1, + anon_sym_andalso, + ACTIONS(19223), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [862181] = 5, + ACTIONS(19486), 1, + anon_sym_STAR, + STATE(13191), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15932), 16, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [862214] = 7, + ACTIONS(19233), 1, + anon_sym_COLON, + ACTIONS(19235), 1, + anon_sym_andalso, + ACTIONS(19237), 1, + anon_sym_orelse, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16758), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16756), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [862251] = 5, + ACTIONS(19655), 1, + anon_sym_and, + STATE(13311), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16884), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16882), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [862284] = 5, + ACTIONS(19658), 1, + anon_sym_and, + STATE(13314), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16891), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16889), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [862317] = 5, + ACTIONS(19661), 1, + anon_sym_and, + STATE(13315), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16898), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16896), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [862350] = 5, + ACTIONS(19661), 1, + anon_sym_and, + STATE(13311), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16898), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16896), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [862383] = 5, + ACTIONS(19664), 1, + anon_sym_and, + STATE(13311), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16905), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16903), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [862416] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [862445] = 5, + ACTIONS(19667), 1, + anon_sym_and, + STATE(13317), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16884), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16882), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [862478] = 5, + ACTIONS(19670), 1, + anon_sym_and, + STATE(13320), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16891), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16889), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [862511] = 5, + ACTIONS(19673), 1, + anon_sym_and, + STATE(13321), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16898), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16896), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [862544] = 5, + ACTIONS(19673), 1, + anon_sym_and, + STATE(13317), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16898), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16896), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [862577] = 5, + ACTIONS(19676), 1, + anon_sym_and, + STATE(13317), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16905), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(16903), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + anon_sym_where, + [862610] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 19, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [862639] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 17, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + [862670] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19679), 7, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19681), 13, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [862699] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(12416), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [862729] = 5, + ACTIONS(19683), 1, + anon_sym_PIPE, + STATE(13328), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17064), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17062), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [862761] = 5, + ACTIONS(19683), 1, + anon_sym_PIPE, + STATE(13329), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17082), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17080), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [862793] = 5, + ACTIONS(19683), 1, + anon_sym_PIPE, + STATE(13330), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17082), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17080), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [862825] = 5, + ACTIONS(19683), 1, + anon_sym_PIPE, + STATE(13330), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17056), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17052), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [862857] = 5, + ACTIONS(19685), 1, + anon_sym_PIPE, + STATE(13330), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17068), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17066), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [862889] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17127), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17122), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [862917] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19690), 1, + anon_sym_PIPE, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(183), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25003), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [862961] = 5, + ACTIONS(19694), 1, + anon_sym_STAR, + STATE(13407), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15958), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [862993] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [863021] = 6, + ACTIONS(17026), 1, + anon_sym_SEMI, + ACTIONS(19696), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19698), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13488), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17028), 14, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [863055] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19700), 1, + anon_sym_PIPE, + STATE(5244), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24983), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [863099] = 7, + ACTIONS(16626), 1, + anon_sym_infix, + ACTIONS(19702), 1, + anon_sym_COLON, + ACTIONS(19704), 1, + anon_sym_andalso, + ACTIONS(19706), 1, + anon_sym_orelse, + ACTIONS(19708), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [863135] = 7, + ACTIONS(16630), 1, + anon_sym_infix, + ACTIONS(19702), 1, + anon_sym_COLON, + ACTIONS(19704), 1, + anon_sym_andalso, + ACTIONS(19706), 1, + anon_sym_orelse, + ACTIONS(19708), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [863171] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [863199] = 6, + ACTIONS(17010), 1, + anon_sym_SEMI, + ACTIONS(19710), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19712), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13411), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17012), 14, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [863233] = 5, + ACTIONS(17064), 1, + anon_sym_infix, + ACTIONS(19714), 1, + anon_sym_PIPE, + STATE(13343), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17062), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [863265] = 5, + ACTIONS(17082), 1, + anon_sym_infix, + ACTIONS(19714), 1, + anon_sym_PIPE, + STATE(13344), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17080), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [863297] = 5, + ACTIONS(17082), 1, + anon_sym_infix, + ACTIONS(19714), 1, + anon_sym_PIPE, + STATE(13345), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17080), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [863329] = 5, + ACTIONS(17056), 1, + anon_sym_infix, + ACTIONS(19714), 1, + anon_sym_PIPE, + STATE(13345), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17052), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [863361] = 5, + ACTIONS(17068), 1, + anon_sym_infix, + ACTIONS(19716), 1, + anon_sym_PIPE, + STATE(13345), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17066), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [863393] = 7, + ACTIONS(16641), 1, + anon_sym_infix, + ACTIONS(19313), 1, + anon_sym_handle, + ACTIONS(19719), 1, + anon_sym_COLON, + ACTIONS(19721), 1, + anon_sym_andalso, + ACTIONS(19723), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [863429] = 4, + ACTIONS(16661), 1, + anon_sym_infix, + ACTIONS(19719), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [863459] = 8, + ACTIONS(16647), 1, + anon_sym_infix, + ACTIONS(19313), 1, + anon_sym_handle, + ACTIONS(19719), 1, + anon_sym_COLON, + ACTIONS(19721), 1, + anon_sym_andalso, + ACTIONS(19723), 1, + anon_sym_orelse, + ACTIONS(19725), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [863497] = 6, + ACTIONS(16916), 1, + anon_sym_SEMI, + ACTIONS(19710), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19712), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13411), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16922), 14, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [863531] = 10, + ACTIONS(19727), 1, + anon_sym_LPAREN, + ACTIONS(19729), 1, + anon_sym_EQ, + ACTIONS(19731), 1, + anon_sym_LBRACK, + ACTIONS(19733), 1, + anon_sym__, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13485), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(19735), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(19737), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15289), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [863573] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19739), 1, + anon_sym_PIPE, + STATE(5247), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24906), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [863617] = 6, + ACTIONS(16924), 1, + anon_sym_SEMI, + ACTIONS(19710), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19712), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13411), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16926), 14, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [863651] = 7, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(19741), 1, + anon_sym_COLON, + ACTIONS(19743), 1, + anon_sym_andalso, + ACTIONS(19745), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16787), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16779), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [863687] = 7, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(19741), 1, + anon_sym_COLON, + ACTIONS(19743), 1, + anon_sym_andalso, + ACTIONS(19745), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [863723] = 4, + ACTIONS(19741), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [863753] = 6, + ACTIONS(16928), 1, + anon_sym_SEMI, + ACTIONS(19710), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19712), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13411), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16930), 14, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [863787] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 16, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [863817] = 7, + ACTIONS(16641), 1, + anon_sym_infix, + ACTIONS(19702), 1, + anon_sym_COLON, + ACTIONS(19704), 1, + anon_sym_andalso, + ACTIONS(19706), 1, + anon_sym_orelse, + ACTIONS(19708), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [863853] = 4, + ACTIONS(16661), 1, + anon_sym_infix, + ACTIONS(19702), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [863883] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [863911] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19747), 1, + anon_sym_PIPE, + STATE(5071), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25019), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [863955] = 7, + ACTIONS(16655), 1, + anon_sym_infix, + ACTIONS(19702), 1, + anon_sym_COLON, + ACTIONS(19704), 1, + anon_sym_andalso, + ACTIONS(19706), 1, + anon_sym_orelse, + ACTIONS(19708), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [863991] = 5, + ACTIONS(19749), 1, + anon_sym_COLON, + ACTIONS(19751), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16612), 15, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [864023] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19753), 1, + anon_sym_PIPE, + STATE(221), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24970), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [864067] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(19755), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [864097] = 5, + ACTIONS(17064), 1, + anon_sym_infix, + ACTIONS(19757), 1, + anon_sym_PIPE, + STATE(13368), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17062), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864129] = 5, + ACTIONS(17082), 1, + anon_sym_infix, + ACTIONS(19757), 1, + anon_sym_PIPE, + STATE(13369), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17080), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864161] = 5, + ACTIONS(17082), 1, + anon_sym_infix, + ACTIONS(19757), 1, + anon_sym_PIPE, + STATE(13370), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17080), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864193] = 5, + ACTIONS(17056), 1, + anon_sym_infix, + ACTIONS(19757), 1, + anon_sym_PIPE, + STATE(13370), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17052), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864225] = 5, + ACTIONS(17068), 1, + anon_sym_infix, + ACTIONS(19759), 1, + anon_sym_PIPE, + STATE(13370), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17066), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864257] = 7, + ACTIONS(16626), 1, + anon_sym_infix, + ACTIONS(19274), 1, + anon_sym_handle, + ACTIONS(19762), 1, + anon_sym_COLON, + ACTIONS(19764), 1, + anon_sym_andalso, + ACTIONS(19766), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864293] = 7, + ACTIONS(16630), 1, + anon_sym_infix, + ACTIONS(19274), 1, + anon_sym_handle, + ACTIONS(19762), 1, + anon_sym_COLON, + ACTIONS(19764), 1, + anon_sym_andalso, + ACTIONS(19766), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864329] = 10, + ACTIONS(17498), 1, + anon_sym_LPAREN, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19768), 1, + anon_sym_RPAREN, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13430), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(17508), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [864371] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [864399] = 6, + ACTIONS(19770), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19772), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16928), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(13455), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16930), 13, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864433] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [864461] = 6, + ACTIONS(16916), 1, + anon_sym_SEMI, + ACTIONS(19696), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19698), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13488), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16922), 14, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864495] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(19774), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864525] = 7, + ACTIONS(16852), 1, + anon_sym_SEMI, + ACTIONS(19776), 1, + sym__alphaAlphaNumeric_ident, + STATE(14180), 1, + sym_strid, + STATE(21831), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13388), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + ACTIONS(16856), 13, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [864561] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19778), 1, + anon_sym_PIPE, + STATE(4105), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24988), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [864605] = 10, + ACTIONS(19727), 1, + anon_sym_LPAREN, + ACTIONS(19731), 1, + anon_sym_LBRACK, + ACTIONS(19733), 1, + anon_sym__, + ACTIONS(19780), 1, + anon_sym_EQ, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13383), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(19735), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(19737), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15289), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [864647] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19782), 1, + anon_sym_PIPE, + STATE(131), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24961), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [864691] = 10, + ACTIONS(19727), 1, + anon_sym_LPAREN, + ACTIONS(19731), 1, + anon_sym_LBRACK, + ACTIONS(19733), 1, + anon_sym__, + ACTIONS(19784), 1, + anon_sym_EQ, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13485), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(19735), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(19737), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15289), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [864733] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19786), 1, + anon_sym_PIPE, + STATE(137), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24961), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [864777] = 7, + ACTIONS(19321), 1, + anon_sym_handle, + ACTIONS(19788), 1, + anon_sym_COLON, + ACTIONS(19790), 1, + anon_sym_andalso, + ACTIONS(19792), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16639), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864813] = 7, + ACTIONS(19321), 1, + anon_sym_handle, + ACTIONS(19788), 1, + anon_sym_COLON, + ACTIONS(19790), 1, + anon_sym_andalso, + ACTIONS(19792), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17002), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17000), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864849] = 4, + ACTIONS(19788), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16659), 16, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864879] = 7, + ACTIONS(16810), 1, + anon_sym_SEMI, + ACTIONS(19794), 1, + sym__alphaAlphaNumeric_ident, + STATE(14180), 1, + sym_strid, + STATE(21831), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13388), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + ACTIONS(16815), 13, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [864915] = 8, + ACTIONS(16647), 1, + anon_sym_infix, + ACTIONS(19313), 1, + anon_sym_handle, + ACTIONS(19719), 1, + anon_sym_COLON, + ACTIONS(19721), 1, + anon_sym_andalso, + ACTIONS(19723), 1, + anon_sym_orelse, + ACTIONS(19797), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [864953] = 6, + ACTIONS(16924), 1, + anon_sym_SEMI, + ACTIONS(19696), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19698), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13488), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16926), 14, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [864987] = 10, + ACTIONS(17498), 1, + anon_sym_LPAREN, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19799), 1, + anon_sym_RPAREN, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13430), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(17508), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [865029] = 10, + ACTIONS(17500), 1, + anon_sym_EQ_GT, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19801), 1, + anon_sym_LPAREN, + STATE(15309), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13445), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(17508), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [865071] = 4, + ACTIONS(17078), 1, + anon_sym_infix, + ACTIONS(19803), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17074), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [865101] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [865129] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17183), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17181), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [865157] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17220), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17218), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [865185] = 4, + ACTIONS(19805), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17008), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17004), 16, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [865215] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19807), 1, + anon_sym_PIPE, + STATE(5290), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24940), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [865259] = 6, + ACTIONS(16928), 1, + anon_sym_SEMI, + ACTIONS(19696), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19698), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13488), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16930), 14, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [865293] = 4, + ACTIONS(19809), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17078), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17074), 16, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [865323] = 5, + ACTIONS(19811), 1, + anon_sym_COLON, + ACTIONS(19813), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 14, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [865355] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19815), 1, + anon_sym_PIPE, + STATE(215), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25016), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [865399] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [865427] = 10, + ACTIONS(19727), 1, + anon_sym_LPAREN, + ACTIONS(19731), 1, + anon_sym_LBRACK, + ACTIONS(19733), 1, + anon_sym__, + ACTIONS(19817), 1, + anon_sym_EQ, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13485), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(19735), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(19737), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15289), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [865469] = 7, + ACTIONS(19546), 1, + anon_sym_handle, + ACTIONS(19819), 1, + anon_sym_COLON, + ACTIONS(19821), 1, + anon_sym_andalso, + ACTIONS(19823), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16620), 13, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [865505] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [865533] = 5, + ACTIONS(19825), 1, + anon_sym_STAR, + STATE(13407), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [865565] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19828), 1, + anon_sym_PIPE, + STATE(161), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24996), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [865609] = 7, + ACTIONS(19546), 1, + anon_sym_handle, + ACTIONS(19819), 1, + anon_sym_COLON, + ACTIONS(19821), 1, + anon_sym_andalso, + ACTIONS(19823), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16628), 13, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [865645] = 5, + ACTIONS(16618), 1, + anon_sym_infix, + ACTIONS(19702), 1, + anon_sym_COLON, + ACTIONS(19704), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [865677] = 6, + ACTIONS(17014), 1, + anon_sym_SEMI, + ACTIONS(19830), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19833), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13411), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17022), 14, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [865711] = 6, + ACTIONS(17026), 1, + anon_sym_SEMI, + ACTIONS(19710), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19712), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13411), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17028), 14, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [865745] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [865773] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [865801] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19836), 1, + anon_sym_PIPE, + STATE(45), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24871), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [865845] = 4, + ACTIONS(19838), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16526), 16, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [865875] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19840), 1, + anon_sym_PIPE, + STATE(217), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25003), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [865919] = 5, + ACTIONS(16618), 1, + anon_sym_infix, + ACTIONS(19842), 1, + anon_sym_COLON, + ACTIONS(19844), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [865951] = 7, + ACTIONS(16626), 1, + anon_sym_infix, + ACTIONS(19412), 1, + anon_sym_handle, + ACTIONS(19842), 1, + anon_sym_COLON, + ACTIONS(19844), 1, + anon_sym_andalso, + ACTIONS(19846), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [865987] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [866015] = 7, + ACTIONS(16630), 1, + anon_sym_infix, + ACTIONS(19412), 1, + anon_sym_handle, + ACTIONS(19842), 1, + anon_sym_COLON, + ACTIONS(19844), 1, + anon_sym_andalso, + ACTIONS(19846), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [866051] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19848), 1, + anon_sym_PIPE, + STATE(4116), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24988), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [866095] = 7, + ACTIONS(19749), 1, + anon_sym_COLON, + ACTIONS(19751), 1, + anon_sym_andalso, + ACTIONS(19850), 1, + anon_sym_orelse, + ACTIONS(19852), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16639), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [866131] = 4, + ACTIONS(19749), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16659), 16, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [866161] = 5, + ACTIONS(19741), 1, + anon_sym_COLON, + ACTIONS(19743), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16612), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [866193] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19854), 1, + anon_sym_PIPE, + STATE(5276), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24983), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [866237] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19856), 1, + anon_sym_PIPE, + STATE(4688), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25019), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [866281] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19858), 1, + anon_sym_PIPE, + STATE(213), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24996), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [866325] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19860), 1, + anon_sym_PIPE, + STATE(5336), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24940), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [866369] = 10, + ACTIONS(19862), 1, + anon_sym_LPAREN, + ACTIONS(19865), 1, + anon_sym_RPAREN, + ACTIONS(19867), 1, + anon_sym_LBRACK, + ACTIONS(19870), 1, + anon_sym__, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13430), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(19873), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(19876), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [866411] = 6, + ACTIONS(19770), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19772), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16924), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(13455), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16926), 13, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [866445] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [866473] = 8, + ACTIONS(19546), 1, + anon_sym_handle, + ACTIONS(19819), 1, + anon_sym_COLON, + ACTIONS(19821), 1, + anon_sym_andalso, + ACTIONS(19823), 1, + anon_sym_orelse, + ACTIONS(19879), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16643), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [866511] = 5, + ACTIONS(16618), 1, + anon_sym_infix, + ACTIONS(19762), 1, + anon_sym_COLON, + ACTIONS(19764), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [866543] = 10, + ACTIONS(19727), 1, + anon_sym_LPAREN, + ACTIONS(19731), 1, + anon_sym_LBRACK, + ACTIONS(19733), 1, + anon_sym__, + ACTIONS(19881), 1, + anon_sym_EQ, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13350), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(19735), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(19737), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15289), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [866585] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19883), 1, + anon_sym_PIPE, + STATE(39), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24871), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [866629] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [866657] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17187), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17185), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [866685] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(19885), 1, + anon_sym_STAR, + STATE(13449), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [866717] = 7, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(19741), 1, + anon_sym_COLON, + ACTIONS(19743), 1, + anon_sym_andalso, + ACTIONS(19745), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [866753] = 7, + ACTIONS(19295), 1, + anon_sym_handle, + ACTIONS(19741), 1, + anon_sym_COLON, + ACTIONS(19743), 1, + anon_sym_andalso, + ACTIONS(19745), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [866789] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 16, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [866819] = 7, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(19811), 1, + anon_sym_COLON, + ACTIONS(19813), 1, + anon_sym_andalso, + ACTIONS(19887), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16620), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [866855] = 7, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(19811), 1, + anon_sym_COLON, + ACTIONS(19813), 1, + anon_sym_andalso, + ACTIONS(19887), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16628), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [866891] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19801), 1, + anon_sym_LPAREN, + ACTIONS(19889), 1, + anon_sym_EQ_GT, + STATE(15309), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13451), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(17508), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [866933] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [866961] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 16, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [866991] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(19885), 1, + anon_sym_STAR, + STATE(13439), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [867023] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(19891), 1, + anon_sym_STAR, + STATE(13449), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [867055] = 7, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(19811), 1, + anon_sym_COLON, + ACTIONS(19813), 1, + anon_sym_andalso, + ACTIONS(19887), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16639), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [867091] = 10, + ACTIONS(19865), 1, + anon_sym_EQ_GT, + ACTIONS(19867), 1, + anon_sym_LBRACK, + ACTIONS(19870), 1, + anon_sym__, + ACTIONS(19894), 1, + anon_sym_LPAREN, + STATE(15309), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13451), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(19873), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(19876), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [867133] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19897), 1, + anon_sym_PIPE, + STATE(5329), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24906), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [867177] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [867205] = 6, + ACTIONS(19770), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19772), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17010), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(13455), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17012), 13, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [867239] = 6, + ACTIONS(19899), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19902), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17014), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(13455), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17022), 13, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [867273] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19905), 1, + anon_sym_PIPE, + STATE(5204), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24875), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [867317] = 10, + ACTIONS(19727), 1, + anon_sym_LPAREN, + ACTIONS(19731), 1, + anon_sym_LBRACK, + ACTIONS(19733), 1, + anon_sym__, + ACTIONS(19907), 1, + anon_sym_EQ, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13458), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(19735), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(19737), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15289), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [867359] = 10, + ACTIONS(19727), 1, + anon_sym_LPAREN, + ACTIONS(19731), 1, + anon_sym_LBRACK, + ACTIONS(19733), 1, + anon_sym__, + ACTIONS(19909), 1, + anon_sym_EQ, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13485), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(19735), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(19737), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15289), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [867401] = 7, + ACTIONS(16641), 1, + anon_sym_infix, + ACTIONS(19274), 1, + anon_sym_handle, + ACTIONS(19762), 1, + anon_sym_COLON, + ACTIONS(19764), 1, + anon_sym_andalso, + ACTIONS(19766), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [867437] = 7, + ACTIONS(16641), 1, + anon_sym_infix, + ACTIONS(19412), 1, + anon_sym_handle, + ACTIONS(19842), 1, + anon_sym_COLON, + ACTIONS(19844), 1, + anon_sym_andalso, + ACTIONS(19846), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [867473] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [867501] = 4, + ACTIONS(17008), 1, + anon_sym_infix, + ACTIONS(19911), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17004), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [867531] = 4, + ACTIONS(16661), 1, + anon_sym_infix, + ACTIONS(19762), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [867561] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19913), 1, + anon_sym_PIPE, + STATE(166), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25016), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [867605] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [867633] = 7, + ACTIONS(17002), 1, + anon_sym_infix, + ACTIONS(19412), 1, + anon_sym_handle, + ACTIONS(19842), 1, + anon_sym_COLON, + ACTIONS(19844), 1, + anon_sym_andalso, + ACTIONS(19846), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17000), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [867669] = 4, + ACTIONS(16661), 1, + anon_sym_infix, + ACTIONS(19842), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [867699] = 7, + ACTIONS(19749), 1, + anon_sym_COLON, + ACTIONS(19751), 1, + anon_sym_andalso, + ACTIONS(19850), 1, + anon_sym_orelse, + ACTIONS(19852), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16655), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16653), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [867735] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [867763] = 7, + ACTIONS(19749), 1, + anon_sym_COLON, + ACTIONS(19751), 1, + anon_sym_andalso, + ACTIONS(19850), 1, + anon_sym_orelse, + ACTIONS(19852), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16620), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [867799] = 7, + ACTIONS(19749), 1, + anon_sym_COLON, + ACTIONS(19751), 1, + anon_sym_andalso, + ACTIONS(19850), 1, + anon_sym_orelse, + ACTIONS(19852), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16628), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [867835] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [867863] = 7, + ACTIONS(16810), 1, + anon_sym_SEMI, + ACTIONS(19915), 1, + sym__alphaAlphaNumeric_ident, + STATE(14164), 1, + sym_strid, + STATE(21804), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13473), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + ACTIONS(16815), 13, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [867899] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 16, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [867929] = 5, + ACTIONS(19819), 1, + anon_sym_COLON, + ACTIONS(19821), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16612), 15, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [867961] = 4, + ACTIONS(17008), 1, + anon_sym_infix, + ACTIONS(19918), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17004), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [867991] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(19920), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 17, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [868021] = 4, + ACTIONS(17078), 1, + anon_sym_infix, + ACTIONS(19922), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17074), 17, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [868051] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [868079] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [868107] = 5, + ACTIONS(16618), 1, + anon_sym_infix, + ACTIONS(19719), 1, + anon_sym_COLON, + ACTIONS(19721), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [868139] = 7, + ACTIONS(16852), 1, + anon_sym_SEMI, + ACTIONS(17030), 1, + sym__alphaAlphaNumeric_ident, + STATE(14164), 1, + sym_strid, + STATE(21804), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13473), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + ACTIONS(16856), 13, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [868175] = 6, + ACTIONS(17010), 1, + anon_sym_SEMI, + ACTIONS(19696), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19698), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13488), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17012), 14, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [868209] = 6, + ACTIONS(19770), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19772), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16916), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(13455), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16922), 13, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [868243] = 10, + ACTIONS(19865), 1, + anon_sym_EQ, + ACTIONS(19924), 1, + anon_sym_LPAREN, + ACTIONS(19927), 1, + anon_sym_LBRACK, + ACTIONS(19930), 1, + anon_sym__, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13485), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(19933), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(19936), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15289), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [868285] = 4, + ACTIONS(19811), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16659), 15, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [868315] = 10, + ACTIONS(19727), 1, + anon_sym_LPAREN, + ACTIONS(19731), 1, + anon_sym_LBRACK, + ACTIONS(19733), 1, + anon_sym__, + ACTIONS(19939), 1, + anon_sym_EQ, + STATE(14143), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13404), 2, + sym_hol_pat, + aux_sym_hol_eqn_repeat1, + ACTIONS(19735), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(19737), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(15289), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [868357] = 6, + ACTIONS(17014), 1, + anon_sym_SEMI, + ACTIONS(19941), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19944), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13488), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17022), 14, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [868391] = 4, + ACTIONS(19947), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17089), 3, + anon_sym_COLON, + anon_sym_in, + anon_sym_infix, + ACTIONS(17087), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [868421] = 7, + ACTIONS(16626), 1, + anon_sym_infix, + ACTIONS(19313), 1, + anon_sym_handle, + ACTIONS(19719), 1, + anon_sym_COLON, + ACTIONS(19721), 1, + anon_sym_andalso, + ACTIONS(19723), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [868457] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [868485] = 7, + ACTIONS(16630), 1, + anon_sym_infix, + ACTIONS(19313), 1, + anon_sym_handle, + ACTIONS(19719), 1, + anon_sym_COLON, + ACTIONS(19721), 1, + anon_sym_andalso, + ACTIONS(19723), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [868521] = 7, + ACTIONS(17002), 1, + anon_sym_infix, + ACTIONS(19274), 1, + anon_sym_handle, + ACTIONS(19762), 1, + anon_sym_COLON, + ACTIONS(19764), 1, + anon_sym_andalso, + ACTIONS(19766), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17000), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [868557] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(19949), 1, + anon_sym_STAR, + STATE(13495), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [868589] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(19951), 1, + anon_sym_STAR, + STATE(13495), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [868621] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [868649] = 7, + ACTIONS(19546), 1, + anon_sym_handle, + ACTIONS(19819), 1, + anon_sym_COLON, + ACTIONS(19821), 1, + anon_sym_andalso, + ACTIONS(19823), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16639), 13, + anon_sym_SEMI, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [868685] = 4, + ACTIONS(19954), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16505), 16, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [868715] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19956), 1, + anon_sym_PIPE, + STATE(211), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24970), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [868759] = 5, + ACTIONS(19694), 1, + anon_sym_STAR, + STATE(13333), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15932), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [868791] = 6, + ACTIONS(19770), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19772), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17026), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(13455), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17028), 13, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [868825] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(19958), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 17, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [868855] = 4, + ACTIONS(19960), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17089), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(17087), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [868885] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [868913] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [868941] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [868969] = 7, + ACTIONS(19239), 1, + anon_sym_handle, + ACTIONS(19811), 1, + anon_sym_COLON, + ACTIONS(19813), 1, + anon_sym_andalso, + ACTIONS(19887), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16787), 3, + anon_sym_in, + anon_sym_and, + anon_sym_infix, + ACTIONS(16779), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [869005] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [869033] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 18, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_STAR, + [869061] = 4, + ACTIONS(19962), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17089), 2, + anon_sym_COLON, + anon_sym_infix, + ACTIONS(17087), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_COLON_GT, + anon_sym_structure, + [869091] = 4, + ACTIONS(19819), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16659), 16, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [869121] = 5, + ACTIONS(19788), 1, + anon_sym_COLON, + ACTIONS(19790), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16612), 15, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [869153] = 8, + ACTIONS(19546), 1, + anon_sym_handle, + ACTIONS(19819), 1, + anon_sym_COLON, + ACTIONS(19821), 1, + anon_sym_andalso, + ACTIONS(19823), 1, + anon_sym_orelse, + ACTIONS(19964), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16647), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16643), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [869191] = 7, + ACTIONS(19321), 1, + anon_sym_handle, + ACTIONS(19788), 1, + anon_sym_COLON, + ACTIONS(19790), 1, + anon_sym_andalso, + ACTIONS(19792), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16620), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [869227] = 11, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + ACTIONS(19966), 1, + anon_sym_PIPE, + STATE(5224), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24875), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [869271] = 4, + ACTIONS(19968), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16526), 16, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [869301] = 7, + ACTIONS(19321), 1, + anon_sym_handle, + ACTIONS(19788), 1, + anon_sym_COLON, + ACTIONS(19790), 1, + anon_sym_andalso, + ACTIONS(19792), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16628), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [869337] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(19949), 1, + anon_sym_STAR, + STATE(13494), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [869369] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(4074), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24906), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [869410] = 5, + ACTIONS(19970), 1, + anon_sym_COMMA, + STATE(13520), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16573), 4, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + ACTIONS(16575), 12, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [869441] = 6, + ACTIONS(17010), 1, + anon_sym_SEMI, + ACTIONS(19973), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19975), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13523), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17012), 13, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [869474] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19354), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19356), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [869501] = 6, + ACTIONS(17014), 1, + anon_sym_SEMI, + ACTIONS(19977), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19980), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13523), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17022), 13, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [869534] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19625), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19627), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [869561] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19631), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19633), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [869588] = 6, + ACTIONS(17026), 1, + anon_sym_SEMI, + ACTIONS(19973), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19975), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13523), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17028), 13, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [869621] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19362), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19364), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [869648] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19651), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19653), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [869675] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(12416), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [869704] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19679), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19681), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [869731] = 4, + ACTIONS(19983), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16661), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16659), 15, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [869760] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19426), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19428), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [869787] = 10, + ACTIONS(17498), 1, + anon_sym_LPAREN, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19985), 1, + anon_sym_RBRACK, + STATE(14143), 1, + sym__hol_pat, + STATE(24381), 1, + sym_hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [869828] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(5272), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24940), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [869869] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(5419), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24940), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [869910] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17793), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17788), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [869937] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [869966] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19464), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19466), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [869993] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19639), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19641), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [870020] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19643), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19645), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [870047] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19468), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19470), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [870074] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17830), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17825), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [870101] = 4, + ACTIONS(19987), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16505), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [870130] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19472), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19474), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [870157] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16665), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16663), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [870184] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16669), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16667), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [870211] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19480), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19482), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [870238] = 4, + ACTIONS(19989), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17008), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17004), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [870267] = 5, + ACTIONS(19991), 1, + anon_sym_PIPE, + STATE(13573), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17064), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17062), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [870298] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(180), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24996), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [870339] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19141), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19139), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [870366] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19145), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19143), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [870393] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17880), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17875), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [870420] = 5, + ACTIONS(19983), 1, + anon_sym_COLON, + ACTIONS(19993), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16618), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16612), 14, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [870451] = 7, + ACTIONS(19852), 1, + anon_sym_handle, + ACTIONS(19983), 1, + anon_sym_COLON, + ACTIONS(19993), 1, + anon_sym_andalso, + ACTIONS(19995), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16626), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16620), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [870486] = 7, + ACTIONS(19852), 1, + anon_sym_handle, + ACTIONS(19983), 1, + anon_sym_COLON, + ACTIONS(19993), 1, + anon_sym_andalso, + ACTIONS(19995), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16630), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16628), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [870521] = 5, + ACTIONS(19997), 1, + anon_sym_STAR, + STATE(13567), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15934), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15932), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [870552] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(230), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24996), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [870593] = 5, + ACTIONS(19999), 1, + anon_sym_COLON, + ACTIONS(20001), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17209), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17207), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [870624] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15523), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [870653] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17967), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17962), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [870680] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19434), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19436), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [870707] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(212), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24970), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [870748] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(40), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24871), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [870789] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19456), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19458), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [870816] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(51), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24871), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [870857] = 5, + ACTIONS(19997), 1, + anon_sym_STAR, + STATE(13568), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15960), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15958), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [870888] = 5, + ACTIONS(20003), 1, + anon_sym_STAR, + STATE(13568), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14007), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(14005), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [870919] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [870948] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16604), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16602), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [870975] = 4, + ACTIONS(20006), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17078), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17074), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [871004] = 5, + ACTIONS(19991), 1, + anon_sym_PIPE, + STATE(13593), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17082), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17080), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [871035] = 5, + ACTIONS(19991), 1, + anon_sym_PIPE, + STATE(13595), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17082), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17080), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [871066] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19133), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19131), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [871093] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19137), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19135), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [871120] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19204), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19202), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [871147] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(12416), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [871176] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19492), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19494), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [871203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13026), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(13024), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [871230] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19572), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19574), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [871257] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19496), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19498), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [871284] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19583), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19585), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [871311] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(4109), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24988), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [871352] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13066), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(13064), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [871379] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(4074), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24875), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [871420] = 5, + ACTIONS(20008), 1, + anon_sym_EQ, + ACTIONS(20010), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17170), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17164), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [871451] = 5, + ACTIONS(20012), 1, + anon_sym_EQ, + ACTIONS(20014), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17118), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17112), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [871482] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(167), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25016), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [871523] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(291), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25016), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [871564] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(20016), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [871593] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(218), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25003), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [871634] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19500), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19502), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [871661] = 5, + ACTIONS(19991), 1, + anon_sym_PIPE, + STATE(13595), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17056), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17052), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [871692] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19528), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19530), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [871719] = 5, + ACTIONS(20018), 1, + anon_sym_PIPE, + STATE(13595), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17068), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17066), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [871750] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(5205), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24875), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [871791] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(4074), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24983), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [871832] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19422), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19424), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [871859] = 5, + ACTIONS(17170), 1, + anon_sym_infix, + ACTIONS(20008), 1, + anon_sym_EQ, + ACTIONS(20021), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17164), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [871890] = 5, + ACTIONS(17118), 1, + anon_sym_infix, + ACTIONS(20012), 1, + anon_sym_EQ, + ACTIONS(20023), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17112), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [871921] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19151), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19149), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [871948] = 4, + ACTIONS(20025), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16526), 15, + anon_sym_SEMI, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [871977] = 7, + ACTIONS(16626), 1, + anon_sym_infix, + ACTIONS(19708), 1, + anon_sym_handle, + ACTIONS(20027), 1, + anon_sym_COLON, + ACTIONS(20029), 1, + anon_sym_andalso, + ACTIONS(20031), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872012] = 7, + ACTIONS(16630), 1, + anon_sym_infix, + ACTIONS(19708), 1, + anon_sym_handle, + ACTIONS(20027), 1, + anon_sym_COLON, + ACTIONS(20029), 1, + anon_sym_andalso, + ACTIONS(20031), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872047] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(5292), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24983), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [872088] = 7, + ACTIONS(17002), 1, + anon_sym_infix, + ACTIONS(19708), 1, + anon_sym_handle, + ACTIONS(20027), 1, + anon_sym_COLON, + ACTIONS(20029), 1, + anon_sym_andalso, + ACTIONS(20031), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17000), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872123] = 4, + ACTIONS(17008), 1, + anon_sym_infix, + ACTIONS(20033), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17004), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872152] = 4, + ACTIONS(17078), 1, + anon_sym_infix, + ACTIONS(20035), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17074), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872181] = 5, + ACTIONS(19999), 1, + anon_sym_COLON, + ACTIONS(20001), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17284), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17282), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [872212] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(5225), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24875), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [872253] = 5, + ACTIONS(17209), 1, + anon_sym_infix, + ACTIONS(20037), 1, + anon_sym_COLON, + ACTIONS(20039), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17207), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [872284] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(141), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25003), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [872325] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(351), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25003), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [872366] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(5245), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24983), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [872407] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(4074), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24988), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [872448] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(5330), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24906), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [872489] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(4074), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25019), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [872530] = 7, + ACTIONS(16641), 1, + anon_sym_infix, + ACTIONS(19708), 1, + anon_sym_handle, + ACTIONS(20027), 1, + anon_sym_COLON, + ACTIONS(20029), 1, + anon_sym_andalso, + ACTIONS(20031), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872565] = 5, + ACTIONS(17170), 1, + anon_sym_infix, + ACTIONS(20008), 1, + anon_sym_EQ, + ACTIONS(20041), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17164), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [872596] = 5, + ACTIONS(17118), 1, + anon_sym_infix, + ACTIONS(20012), 1, + anon_sym_EQ, + ACTIONS(20043), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17112), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [872627] = 4, + ACTIONS(16661), 1, + anon_sym_infix, + ACTIONS(20027), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872656] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(5248), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24906), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [872697] = 5, + ACTIONS(17064), 1, + anon_sym_infix, + ACTIONS(20045), 1, + anon_sym_PIPE, + STATE(13625), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17062), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872728] = 5, + ACTIONS(17082), 1, + anon_sym_infix, + ACTIONS(20045), 1, + anon_sym_PIPE, + STATE(13626), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17080), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872759] = 5, + ACTIONS(17082), 1, + anon_sym_infix, + ACTIONS(20045), 1, + anon_sym_PIPE, + STATE(13627), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17080), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872790] = 5, + ACTIONS(17056), 1, + anon_sym_infix, + ACTIONS(20045), 1, + anon_sym_PIPE, + STATE(13627), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17052), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872821] = 5, + ACTIONS(17068), 1, + anon_sym_infix, + ACTIONS(20047), 1, + anon_sym_PIPE, + STATE(13627), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17066), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872852] = 7, + ACTIONS(19852), 1, + anon_sym_handle, + ACTIONS(19983), 1, + anon_sym_COLON, + ACTIONS(19993), 1, + anon_sym_andalso, + ACTIONS(19995), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16641), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16639), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872887] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(5072), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25019), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [872928] = 7, + ACTIONS(19852), 1, + anon_sym_handle, + ACTIONS(19983), 1, + anon_sym_COLON, + ACTIONS(19993), 1, + anon_sym_andalso, + ACTIONS(19995), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17002), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17000), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [872963] = 5, + ACTIONS(15960), 1, + anon_sym_infix, + ACTIONS(20050), 1, + anon_sym_STAR, + STATE(13632), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [872994] = 5, + ACTIONS(14007), 1, + anon_sym_infix, + ACTIONS(20052), 1, + anon_sym_STAR, + STATE(13632), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [873025] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(151), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24970), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [873066] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(216), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25016), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [873107] = 6, + ACTIONS(16916), 1, + anon_sym_SEMI, + ACTIONS(20055), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20057), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13643), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16922), 13, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [873140] = 6, + ACTIONS(16924), 1, + anon_sym_SEMI, + ACTIONS(20055), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20057), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13643), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16926), 13, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [873173] = 6, + ACTIONS(16928), 1, + anon_sym_SEMI, + ACTIONS(20055), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20057), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13643), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16930), 13, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [873206] = 5, + ACTIONS(16618), 1, + anon_sym_infix, + ACTIONS(20027), 1, + anon_sym_COLON, + ACTIONS(20029), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [873237] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(133), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24961), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [873278] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(209), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24961), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [873319] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(4689), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(25019), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [873360] = 6, + ACTIONS(17010), 1, + anon_sym_SEMI, + ACTIONS(20055), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20057), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13643), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17012), 13, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [873393] = 6, + ACTIONS(17014), 1, + anon_sym_SEMI, + ACTIONS(20059), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20062), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13643), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17022), 13, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [873426] = 6, + ACTIONS(17026), 1, + anon_sym_SEMI, + ACTIONS(20055), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20057), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13643), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(17028), 13, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [873459] = 10, + ACTIONS(17498), 1, + anon_sym_LPAREN, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(20065), 1, + anon_sym_RBRACK, + STATE(14143), 1, + sym__hol_pat, + STATE(23010), 1, + sym_hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [873500] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(4117), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24988), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [873541] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(261), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24970), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [873582] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(5304), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24940), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [873623] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19155), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19153), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [873650] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19336), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19338), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [873677] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(33), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24871), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [873718] = 5, + ACTIONS(20067), 1, + anon_sym_and, + STATE(13653), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17271), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17267), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [873749] = 5, + ACTIONS(20067), 1, + anon_sym_and, + STATE(13654), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17305), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17303), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [873780] = 5, + ACTIONS(20069), 1, + anon_sym_and, + STATE(13654), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17187), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17185), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [873811] = 5, + ACTIONS(17271), 1, + anon_sym_infix, + ACTIONS(20072), 1, + anon_sym_and, + STATE(13657), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17267), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [873842] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(20074), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 16, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [873871] = 5, + ACTIONS(17305), 1, + anon_sym_infix, + ACTIONS(20072), 1, + anon_sym_and, + STATE(13658), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17303), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [873902] = 5, + ACTIONS(17187), 1, + anon_sym_infix, + ACTIONS(20076), 1, + anon_sym_and, + STATE(13658), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17185), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [873933] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19430), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19432), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [873960] = 5, + ACTIONS(17271), 1, + anon_sym_infix, + ACTIONS(20079), 1, + anon_sym_and, + STATE(13662), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17267), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [873991] = 6, + ACTIONS(16916), 1, + anon_sym_SEMI, + ACTIONS(19973), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19975), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13523), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16922), 13, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [874024] = 5, + ACTIONS(17305), 1, + anon_sym_infix, + ACTIONS(20079), 1, + anon_sym_and, + STATE(13665), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17303), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874055] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(106), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24961), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [874096] = 6, + ACTIONS(16924), 1, + anon_sym_SEMI, + ACTIONS(19973), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19975), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13523), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16926), 13, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [874129] = 5, + ACTIONS(17187), 1, + anon_sym_infix, + ACTIONS(20081), 1, + anon_sym_and, + STATE(13665), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17185), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874160] = 6, + ACTIONS(16928), 1, + anon_sym_SEMI, + ACTIONS(19973), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(19975), 1, + sym__symbolic_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13523), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + ACTIONS(16930), 13, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [874193] = 10, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(19688), 1, + anon_sym_LPAREN, + ACTIONS(19692), 1, + sym_hol_cname_alphanumeric, + STATE(214), 1, + sym_hol_match, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + STATE(24996), 2, + sym__hol_pat, + sym__hol_pcon_nopare, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [874234] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(20084), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 16, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + anon_sym_structure, + [874263] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19613), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19615), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [874290] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19617), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19619), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [874317] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19647), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19649), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [874344] = 5, + ACTIONS(20086), 1, + anon_sym_PIPE, + STATE(13674), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17137), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17133), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874375] = 5, + ACTIONS(20086), 1, + anon_sym_PIPE, + STATE(13675), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17295), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17293), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874406] = 5, + ACTIONS(20086), 1, + anon_sym_PIPE, + STATE(13676), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17295), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17293), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874437] = 5, + ACTIONS(20086), 1, + anon_sym_PIPE, + STATE(13676), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17152), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17150), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874468] = 5, + ACTIONS(20088), 1, + anon_sym_PIPE, + STATE(13676), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17127), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17122), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874499] = 5, + ACTIONS(17137), 1, + anon_sym_infix, + ACTIONS(20091), 1, + anon_sym_PIPE, + STATE(13679), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17133), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874530] = 5, + ACTIONS(17295), 1, + anon_sym_infix, + ACTIONS(20091), 1, + anon_sym_PIPE, + STATE(13680), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17293), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874561] = 5, + ACTIONS(17295), 1, + anon_sym_infix, + ACTIONS(20091), 1, + anon_sym_PIPE, + STATE(13681), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17293), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874592] = 5, + ACTIONS(17152), 1, + anon_sym_infix, + ACTIONS(20091), 1, + anon_sym_PIPE, + STATE(13681), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17150), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874623] = 5, + ACTIONS(17127), 1, + anon_sym_infix, + ACTIONS(20093), 1, + anon_sym_PIPE, + STATE(13681), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17122), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874654] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19621), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19623), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [874681] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19340), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(19342), 10, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [874708] = 5, + ACTIONS(17137), 1, + anon_sym_infix, + ACTIONS(20096), 1, + anon_sym_PIPE, + STATE(13686), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17133), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874739] = 5, + ACTIONS(17295), 1, + anon_sym_infix, + ACTIONS(20096), 1, + anon_sym_PIPE, + STATE(13687), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17293), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874770] = 5, + ACTIONS(17295), 1, + anon_sym_infix, + ACTIONS(20096), 1, + anon_sym_PIPE, + STATE(13688), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17293), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874801] = 5, + ACTIONS(17152), 1, + anon_sym_infix, + ACTIONS(20096), 1, + anon_sym_PIPE, + STATE(13688), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17150), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874832] = 5, + ACTIONS(17127), 1, + anon_sym_infix, + ACTIONS(20098), 1, + anon_sym_PIPE, + STATE(13688), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17122), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874863] = 5, + ACTIONS(17284), 1, + anon_sym_infix, + ACTIONS(20101), 1, + anon_sym_COLON, + ACTIONS(20103), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17282), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874894] = 5, + ACTIONS(17284), 1, + anon_sym_infix, + ACTIONS(20037), 1, + anon_sym_COLON, + ACTIONS(20039), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17282), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874925] = 5, + ACTIONS(17209), 1, + anon_sym_infix, + ACTIONS(20101), 1, + anon_sym_COLON, + ACTIONS(20103), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17207), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [874956] = 5, + ACTIONS(15934), 1, + anon_sym_infix, + ACTIONS(20050), 1, + anon_sym_STAR, + STATE(13631), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [874987] = 5, + ACTIONS(17170), 1, + anon_sym_infix, + ACTIONS(20008), 1, + anon_sym_EQ, + ACTIONS(20105), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17164), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [875017] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15523), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [875043] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19388), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19386), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [875069] = 5, + ACTIONS(20107), 1, + anon_sym_and, + STATE(13696), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17187), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17185), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [875099] = 14, + ACTIONS(18121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18123), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18125), 1, + sym__symbolic_ident, + ACTIONS(18127), 1, + anon_sym_LPAREN, + ACTIONS(18129), 1, + anon_sym_LBRACE, + STATE(9332), 1, + sym_tyvar, + STATE(9340), 1, + sym_longtycon, + STATE(9425), 1, + sym_tycon, + STATE(18067), 1, + sym_tyseq, + STATE(19233), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9565), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9346), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875147] = 14, + ACTIONS(18121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18123), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18125), 1, + sym__symbolic_ident, + ACTIONS(18127), 1, + anon_sym_LPAREN, + ACTIONS(18129), 1, + anon_sym_LBRACE, + STATE(9332), 1, + sym_tyvar, + STATE(9340), 1, + sym_longtycon, + STATE(9425), 1, + sym_tycon, + STATE(18067), 1, + sym_tyseq, + STATE(19233), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9346), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875195] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19400), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19398), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [875221] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [875247] = 14, + ACTIONS(18025), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18027), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18029), 1, + sym__symbolic_ident, + ACTIONS(18031), 1, + anon_sym_LPAREN, + ACTIONS(18033), 1, + anon_sym_LBRACE, + STATE(8501), 1, + sym_tycon, + STATE(8503), 1, + sym_tyvar, + STATE(8505), 1, + sym_longtycon, + STATE(18692), 1, + sym_tyseq, + STATE(18844), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8808), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8520), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875295] = 14, + ACTIONS(18025), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18027), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18029), 1, + sym__symbolic_ident, + ACTIONS(18031), 1, + anon_sym_LPAREN, + ACTIONS(18033), 1, + anon_sym_LBRACE, + STATE(8501), 1, + sym_tycon, + STATE(8503), 1, + sym_tyvar, + STATE(8505), 1, + sym_longtycon, + STATE(18692), 1, + sym_tyseq, + STATE(18844), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8520), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875343] = 14, + ACTIONS(18361), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18363), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18365), 1, + sym__symbolic_ident, + ACTIONS(18367), 1, + anon_sym_LPAREN, + ACTIONS(18369), 1, + anon_sym_LBRACE, + STATE(13255), 1, + sym_tycon, + STATE(13316), 1, + sym_tyvar, + STATE(13322), 1, + sym_longtycon, + STATE(18114), 1, + sym_tyseq, + STATE(18950), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13500), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13323), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875391] = 14, + ACTIONS(18361), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18363), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18365), 1, + sym__symbolic_ident, + ACTIONS(18367), 1, + anon_sym_LPAREN, + ACTIONS(18369), 1, + anon_sym_LBRACE, + STATE(13255), 1, + sym_tycon, + STATE(13316), 1, + sym_tyvar, + STATE(13322), 1, + sym_longtycon, + STATE(18114), 1, + sym_tyseq, + STATE(18950), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9589), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13323), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875439] = 14, + ACTIONS(18631), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18633), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18635), 1, + sym__symbolic_ident, + ACTIONS(18637), 1, + anon_sym_LPAREN, + ACTIONS(18639), 1, + anon_sym_LBRACE, + STATE(13376), 1, + sym_tycon, + STATE(13446), 1, + sym_tyvar, + STATE(13465), 1, + sym_longtycon, + STATE(18679), 1, + sym_tyseq, + STATE(19048), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13692), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13474), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875487] = 14, + ACTIONS(18131), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18133), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18135), 1, + sym__symbolic_ident, + ACTIONS(18137), 1, + anon_sym_LPAREN, + ACTIONS(18139), 1, + anon_sym_LBRACE, + STATE(10843), 1, + sym_tyvar, + STATE(10856), 1, + sym_longtycon, + STATE(10906), 1, + sym_tycon, + STATE(18127), 1, + sym_tyseq, + STATE(19164), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11517), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10861), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875535] = 14, + ACTIONS(18131), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18133), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18135), 1, + sym__symbolic_ident, + ACTIONS(18137), 1, + anon_sym_LPAREN, + ACTIONS(18139), 1, + anon_sym_LBRACE, + STATE(10843), 1, + sym_tyvar, + STATE(10856), 1, + sym_longtycon, + STATE(10906), 1, + sym_tycon, + STATE(18127), 1, + sym_tyseq, + STATE(19164), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10861), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875583] = 14, + ACTIONS(17766), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17768), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17770), 1, + sym__symbolic_ident, + ACTIONS(17772), 1, + anon_sym_LPAREN, + ACTIONS(17774), 1, + anon_sym_LBRACE, + STATE(16010), 1, + sym_tycon, + STATE(16258), 1, + sym_longtycon, + STATE(16287), 1, + sym_tyvar, + STATE(18277), 1, + sym_tyseq, + STATE(18856), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16469), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15645), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875631] = 14, + ACTIONS(17766), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17768), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17770), 1, + sym__symbolic_ident, + ACTIONS(17772), 1, + anon_sym_LPAREN, + ACTIONS(17774), 1, + anon_sym_LBRACE, + STATE(16010), 1, + sym_tycon, + STATE(16258), 1, + sym_longtycon, + STATE(16287), 1, + sym_tyvar, + STATE(18277), 1, + sym_tyseq, + STATE(18856), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15645), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875679] = 14, + ACTIONS(18784), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18786), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18788), 1, + sym__symbolic_ident, + ACTIONS(18790), 1, + anon_sym_LPAREN, + ACTIONS(18792), 1, + anon_sym_LBRACE, + STATE(12071), 1, + sym_tyvar, + STATE(12072), 1, + sym_longtycon, + STATE(12086), 1, + sym_tycon, + STATE(18191), 1, + sym_tyseq, + STATE(18991), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12702), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12073), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875727] = 14, + ACTIONS(18784), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18786), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18788), 1, + sym__symbolic_ident, + ACTIONS(18790), 1, + anon_sym_LPAREN, + ACTIONS(18792), 1, + anon_sym_LBRACE, + STATE(12071), 1, + sym_tyvar, + STATE(12072), 1, + sym_longtycon, + STATE(12086), 1, + sym_tycon, + STATE(18191), 1, + sym_tyseq, + STATE(18991), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9589), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12073), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875775] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19448), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19446), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [875801] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19452), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19450), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [875827] = 14, + ACTIONS(17586), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17588), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17590), 1, + sym__symbolic_ident, + ACTIONS(17592), 1, + anon_sym_LPAREN, + ACTIONS(17594), 1, + anon_sym_LBRACE, + STATE(15587), 1, + sym_tyvar, + STATE(15592), 1, + sym_longtycon, + STATE(15989), 1, + sym_tycon, + STATE(18239), 1, + sym_tyseq, + STATE(18999), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16443), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15593), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875875] = 14, + ACTIONS(17586), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17588), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17590), 1, + sym__symbolic_ident, + ACTIONS(17592), 1, + anon_sym_LPAREN, + ACTIONS(17594), 1, + anon_sym_LBRACE, + STATE(15587), 1, + sym_tyvar, + STATE(15592), 1, + sym_longtycon, + STATE(15989), 1, + sym_tycon, + STATE(18239), 1, + sym_tyseq, + STATE(18999), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15593), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875923] = 14, + ACTIONS(18631), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18633), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18635), 1, + sym__symbolic_ident, + ACTIONS(18637), 1, + anon_sym_LPAREN, + ACTIONS(18639), 1, + anon_sym_LBRACE, + STATE(13376), 1, + sym_tycon, + STATE(13446), 1, + sym_tyvar, + STATE(13465), 1, + sym_longtycon, + STATE(18679), 1, + sym_tyseq, + STATE(19048), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9589), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13474), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [875971] = 14, + ACTIONS(18547), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18549), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18551), 1, + sym__symbolic_ident, + ACTIONS(18553), 1, + anon_sym_LPAREN, + ACTIONS(18555), 1, + anon_sym_LBRACE, + STATE(8882), 1, + sym_tyvar, + STATE(8916), 1, + sym_longtycon, + STATE(8946), 1, + sym_tycon, + STATE(18276), 1, + sym_tyseq, + STATE(18917), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9014), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8914), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876019] = 14, + ACTIONS(18547), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18549), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18551), 1, + sym__symbolic_ident, + ACTIONS(18553), 1, + anon_sym_LPAREN, + ACTIONS(18555), 1, + anon_sym_LBRACE, + STATE(8882), 1, + sym_tyvar, + STATE(8916), 1, + sym_longtycon, + STATE(8946), 1, + sym_tycon, + STATE(18276), 1, + sym_tyseq, + STATE(18917), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8914), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876067] = 4, + ACTIONS(16092), 1, + anon_sym_SEMI, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16096), 15, + sym__alphaAlphaNumeric_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [876095] = 5, + ACTIONS(20110), 1, + anon_sym_and, + STATE(13725), 1, + aux_sym__strbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18607), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18605), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [876125] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15713), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [876151] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [876177] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [876203] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [876231] = 5, + ACTIONS(20112), 1, + anon_sym_and, + STATE(13725), 1, + aux_sym__strbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17967), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17962), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [876261] = 14, + ACTIONS(18171), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18173), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18175), 1, + sym__symbolic_ident, + ACTIONS(18177), 1, + anon_sym_LPAREN, + ACTIONS(18179), 1, + anon_sym_LBRACE, + STATE(13432), 1, + sym_longtycon, + STATE(13491), 1, + sym_tyvar, + STATE(13509), 1, + sym_tycon, + STATE(18064), 1, + sym_tyseq, + STATE(19208), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13557), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13357), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876309] = 14, + ACTIONS(17369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17371), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17373), 1, + sym__symbolic_ident, + ACTIONS(17375), 1, + anon_sym_LPAREN, + ACTIONS(17377), 1, + anon_sym_LBRACE, + STATE(14124), 1, + sym_longtycon, + STATE(14142), 1, + sym_tycon, + STATE(14199), 1, + sym_tyvar, + STATE(18325), 1, + sym_tyseq, + STATE(19236), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14250), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14123), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876357] = 14, + ACTIONS(17369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17371), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17373), 1, + sym__symbolic_ident, + ACTIONS(17375), 1, + anon_sym_LPAREN, + ACTIONS(17377), 1, + anon_sym_LBRACE, + STATE(14124), 1, + sym_longtycon, + STATE(14142), 1, + sym_tycon, + STATE(14199), 1, + sym_tyvar, + STATE(18325), 1, + sym_tyseq, + STATE(19236), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14123), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876405] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [876431] = 14, + ACTIONS(17842), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17844), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17846), 1, + sym__symbolic_ident, + ACTIONS(17848), 1, + anon_sym_LPAREN, + ACTIONS(17850), 1, + anon_sym_LBRACE, + STATE(9531), 1, + sym_tyvar, + STATE(9902), 1, + sym_tycon, + STATE(9929), 1, + sym_longtycon, + STATE(18238), 1, + sym_tyseq, + STATE(19163), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10405), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9530), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876479] = 14, + ACTIONS(18728), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18730), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18732), 1, + sym__symbolic_ident, + ACTIONS(18734), 1, + anon_sym_LPAREN, + ACTIONS(18736), 1, + anon_sym_LBRACE, + STATE(16354), 1, + sym_tyvar, + STATE(16355), 1, + sym_tycon, + STATE(16356), 1, + sym_longtycon, + STATE(18222), 1, + sym_tyseq, + STATE(19144), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17526), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16357), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876527] = 14, + ACTIONS(18035), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18037), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18039), 1, + sym__symbolic_ident, + ACTIONS(18041), 1, + anon_sym_LPAREN, + ACTIONS(18043), 1, + anon_sym_LBRACE, + STATE(15158), 1, + sym_tycon, + STATE(15319), 1, + sym_tyvar, + STATE(15321), 1, + sym_longtycon, + STATE(18179), 1, + sym_tyseq, + STATE(19256), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16250), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15484), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876575] = 14, + ACTIONS(17776), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17778), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17780), 1, + sym__symbolic_ident, + ACTIONS(17782), 1, + anon_sym_LPAREN, + ACTIONS(17784), 1, + anon_sym_LBRACE, + STATE(11127), 1, + sym_tyvar, + STATE(11131), 1, + sym_longtycon, + STATE(11488), 1, + sym_tycon, + STATE(18371), 1, + sym_tyseq, + STATE(19091), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12317), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11132), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876623] = 14, + ACTIONS(18758), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18760), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18762), 1, + sym__symbolic_ident, + ACTIONS(18764), 1, + anon_sym_LPAREN, + ACTIONS(18766), 1, + anon_sym_LBRACE, + STATE(17714), 1, + sym_tyvar, + STATE(17753), 1, + sym_longtycon, + STATE(17850), 1, + sym_tycon, + STATE(18407), 1, + sym_tyseq, + STATE(18939), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18226), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17799), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876671] = 14, + ACTIONS(18758), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18760), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18762), 1, + sym__symbolic_ident, + ACTIONS(18764), 1, + anon_sym_LPAREN, + ACTIONS(18766), 1, + anon_sym_LBRACE, + STATE(17714), 1, + sym_tyvar, + STATE(17753), 1, + sym_longtycon, + STATE(17850), 1, + sym_tycon, + STATE(18407), 1, + sym_tyseq, + STATE(18939), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17799), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876719] = 14, + ACTIONS(17776), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17778), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17780), 1, + sym__symbolic_ident, + ACTIONS(17782), 1, + anon_sym_LPAREN, + ACTIONS(17784), 1, + anon_sym_LBRACE, + STATE(11127), 1, + sym_tyvar, + STATE(11131), 1, + sym_longtycon, + STATE(11488), 1, + sym_tycon, + STATE(18371), 1, + sym_tyseq, + STATE(19091), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11132), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876767] = 14, + ACTIONS(17596), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17598), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17600), 1, + sym__symbolic_ident, + ACTIONS(17602), 1, + anon_sym_LPAREN, + ACTIONS(17604), 1, + anon_sym_LBRACE, + STATE(15790), 1, + sym_tyvar, + STATE(15816), 1, + sym_longtycon, + STATE(16078), 1, + sym_tycon, + STATE(18360), 1, + sym_tyseq, + STATE(18706), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16446), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15817), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876815] = 14, + ACTIONS(17596), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17598), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17600), 1, + sym__symbolic_ident, + ACTIONS(17602), 1, + anon_sym_LPAREN, + ACTIONS(17604), 1, + anon_sym_LBRACE, + STATE(15790), 1, + sym_tyvar, + STATE(15816), 1, + sym_longtycon, + STATE(16078), 1, + sym_tycon, + STATE(18360), 1, + sym_tyseq, + STATE(18706), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15817), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876863] = 14, + ACTIONS(18151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18153), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18155), 1, + sym__symbolic_ident, + ACTIONS(18157), 1, + anon_sym_LPAREN, + ACTIONS(18159), 1, + anon_sym_LBRACE, + STATE(15310), 1, + sym_tycon, + STATE(15433), 1, + sym_tyvar, + STATE(15435), 1, + sym_longtycon, + STATE(18443), 1, + sym_tyseq, + STATE(18716), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15571), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15443), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876911] = 14, + ACTIONS(18151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18153), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18155), 1, + sym__symbolic_ident, + ACTIONS(18157), 1, + anon_sym_LPAREN, + ACTIONS(18159), 1, + anon_sym_LBRACE, + STATE(15310), 1, + sym_tycon, + STATE(15433), 1, + sym_tyvar, + STATE(15435), 1, + sym_longtycon, + STATE(18443), 1, + sym_tyseq, + STATE(18716), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15443), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [876959] = 14, + ACTIONS(17409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17411), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17413), 1, + sym__symbolic_ident, + ACTIONS(17415), 1, + anon_sym_LPAREN, + ACTIONS(17417), 1, + anon_sym_LBRACE, + STATE(14318), 1, + sym_tycon, + STATE(14389), 1, + sym_longtycon, + STATE(14392), 1, + sym_tyvar, + STATE(18437), 1, + sym_tyseq, + STATE(19165), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14741), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14363), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877007] = 14, + ACTIONS(18035), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18037), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18039), 1, + sym__symbolic_ident, + ACTIONS(18041), 1, + anon_sym_LPAREN, + ACTIONS(18043), 1, + anon_sym_LBRACE, + STATE(15158), 1, + sym_tycon, + STATE(15319), 1, + sym_tyvar, + STATE(15321), 1, + sym_longtycon, + STATE(18179), 1, + sym_tyseq, + STATE(19256), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15484), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877055] = 14, + ACTIONS(17409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17411), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17413), 1, + sym__symbolic_ident, + ACTIONS(17415), 1, + anon_sym_LPAREN, + ACTIONS(17417), 1, + anon_sym_LBRACE, + STATE(14318), 1, + sym_tycon, + STATE(14389), 1, + sym_longtycon, + STATE(14392), 1, + sym_tyvar, + STATE(18437), 1, + sym_tyseq, + STATE(19165), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14363), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877103] = 14, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877151] = 9, + ACTIONS(17498), 1, + anon_sym_LPAREN, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + STATE(14143), 1, + sym__hol_pat, + STATE(24777), 1, + sym_hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [877189] = 14, + ACTIONS(17399), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17401), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17403), 1, + sym__symbolic_ident, + ACTIONS(17405), 1, + anon_sym_LPAREN, + ACTIONS(17407), 1, + anon_sym_LBRACE, + STATE(14340), 1, + sym_tycon, + STATE(14370), 1, + sym_tyvar, + STATE(14373), 1, + sym_longtycon, + STATE(18241), 1, + sym_tyseq, + STATE(19239), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14585), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14374), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877237] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [877263] = 14, + ACTIONS(18181), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18183), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18185), 1, + sym__symbolic_ident, + ACTIONS(18187), 1, + anon_sym_LPAREN, + ACTIONS(18189), 1, + anon_sym_LBRACE, + STATE(15229), 1, + sym_tycon, + STATE(15464), 1, + sym_tyvar, + STATE(15465), 1, + sym_longtycon, + STATE(18513), 1, + sym_tyseq, + STATE(18821), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15660), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15467), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877311] = 14, + ACTIONS(18181), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18183), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18185), 1, + sym__symbolic_ident, + ACTIONS(18187), 1, + anon_sym_LPAREN, + ACTIONS(18189), 1, + anon_sym_LBRACE, + STATE(15229), 1, + sym_tycon, + STATE(15464), 1, + sym_tyvar, + STATE(15465), 1, + sym_longtycon, + STATE(18513), 1, + sym_tyseq, + STATE(18821), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15467), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877359] = 14, + ACTIONS(17606), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17608), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17610), 1, + sym__symbolic_ident, + ACTIONS(17612), 1, + anon_sym_LPAREN, + ACTIONS(17614), 1, + anon_sym_LBRACE, + STATE(8714), 1, + sym_tyvar, + STATE(8718), 1, + sym_longtycon, + STATE(8731), 1, + sym_tycon, + STATE(18030), 1, + sym_tyseq, + STATE(19160), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8776), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8722), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877407] = 14, + ACTIONS(18141), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18143), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18145), 1, + sym__symbolic_ident, + ACTIONS(18147), 1, + anon_sym_LPAREN, + ACTIONS(18149), 1, + anon_sym_LBRACE, + STATE(14797), 1, + sym_tyvar, + STATE(14805), 1, + sym_tycon, + STATE(14806), 1, + sym_longtycon, + STATE(18090), 1, + sym_tyseq, + STATE(18892), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15077), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14817), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877455] = 14, + ACTIONS(17606), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17608), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17610), 1, + sym__symbolic_ident, + ACTIONS(17612), 1, + anon_sym_LPAREN, + ACTIONS(17614), 1, + anon_sym_LBRACE, + STATE(8714), 1, + sym_tyvar, + STATE(8718), 1, + sym_longtycon, + STATE(8731), 1, + sym_tycon, + STATE(18030), 1, + sym_tyseq, + STATE(19160), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8722), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877503] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20118), 4, + anon_sym_COLON, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20115), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym__, + anon_sym_COLON_COLON, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [877529] = 14, + ACTIONS(18748), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18750), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18752), 1, + sym__symbolic_ident, + ACTIONS(18754), 1, + anon_sym_LPAREN, + ACTIONS(18756), 1, + anon_sym_LBRACE, + STATE(12726), 1, + sym_tyvar, + STATE(12728), 1, + sym_longtycon, + STATE(12838), 1, + sym_tycon, + STATE(18478), 1, + sym_tyseq, + STATE(19043), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13236), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12729), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877577] = 14, + ACTIONS(18748), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18750), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18752), 1, + sym__symbolic_ident, + ACTIONS(18754), 1, + anon_sym_LPAREN, + ACTIONS(18756), 1, + anon_sym_LBRACE, + STATE(12726), 1, + sym_tyvar, + STATE(12728), 1, + sym_longtycon, + STATE(12838), 1, + sym_tycon, + STATE(18478), 1, + sym_tyseq, + STATE(19043), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9589), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12729), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877625] = 14, + ACTIONS(18191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18193), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18195), 1, + sym__symbolic_ident, + ACTIONS(18197), 1, + anon_sym_LPAREN, + ACTIONS(18199), 1, + anon_sym_LBRACE, + STATE(15273), 1, + sym_tycon, + STATE(15337), 1, + sym_tyvar, + STATE(15397), 1, + sym_longtycon, + STATE(18580), 1, + sym_tyseq, + STATE(19069), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15701), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15132), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877673] = 14, + ACTIONS(18191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18193), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18195), 1, + sym__symbolic_ident, + ACTIONS(18197), 1, + anon_sym_LPAREN, + ACTIONS(18199), 1, + anon_sym_LBRACE, + STATE(15273), 1, + sym_tycon, + STATE(15337), 1, + sym_tyvar, + STATE(15397), 1, + sym_longtycon, + STATE(18580), 1, + sym_tyseq, + STATE(19069), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15132), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877721] = 14, + ACTIONS(18331), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18333), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18335), 1, + sym__symbolic_ident, + ACTIONS(18337), 1, + anon_sym_LPAREN, + ACTIONS(18339), 1, + anon_sym_LBRACE, + STATE(16490), 1, + sym_tyvar, + STATE(16492), 1, + sym_tycon, + STATE(16493), 1, + sym_longtycon, + STATE(17978), 1, + sym_tyseq, + STATE(19235), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17238), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16503), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877769] = 14, + ACTIONS(18171), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18173), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18175), 1, + sym__symbolic_ident, + ACTIONS(18177), 1, + anon_sym_LPAREN, + ACTIONS(18179), 1, + anon_sym_LBRACE, + STATE(13432), 1, + sym_longtycon, + STATE(13491), 1, + sym_tyvar, + STATE(13509), 1, + sym_tycon, + STATE(18064), 1, + sym_tyseq, + STATE(19208), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9589), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13357), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877817] = 14, + ACTIONS(18804), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18806), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18808), 1, + sym__symbolic_ident, + ACTIONS(18810), 1, + anon_sym_LPAREN, + ACTIONS(18812), 1, + anon_sym_LBRACE, + STATE(12132), 1, + sym_tyvar, + STATE(12133), 1, + sym_tycon, + STATE(12134), 1, + sym_longtycon, + STATE(18323), 1, + sym_tyseq, + STATE(19066), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12136), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [877865] = 9, + ACTIONS(17498), 1, + anon_sym_LPAREN, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + STATE(14143), 1, + sym__hol_pat, + STATE(24833), 1, + sym_hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [877903] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20123), 4, + anon_sym_COLON, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20121), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym__, + anon_sym_COLON_COLON, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [877929] = 9, + ACTIONS(17498), 1, + anon_sym_LPAREN, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + STATE(14143), 1, + sym__hol_pat, + STATE(24846), 1, + sym_hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [877967] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19336), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19338), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [877993] = 14, + ACTIONS(17842), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17844), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17846), 1, + sym__symbolic_ident, + ACTIONS(17848), 1, + anon_sym_LPAREN, + ACTIONS(17850), 1, + anon_sym_LBRACE, + STATE(9531), 1, + sym_tyvar, + STATE(9902), 1, + sym_tycon, + STATE(9929), 1, + sym_longtycon, + STATE(18238), 1, + sym_tyseq, + STATE(19163), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9530), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878041] = 14, + ACTIONS(18205), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18207), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18209), 1, + sym__symbolic_ident, + ACTIONS(18211), 1, + anon_sym_LPAREN, + ACTIONS(18213), 1, + anon_sym_LBRACE, + STATE(15228), 1, + sym_tyvar, + STATE(15231), 1, + sym_longtycon, + STATE(15316), 1, + sym_tycon, + STATE(18638), 1, + sym_tyseq, + STATE(18707), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15742), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15233), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878089] = 14, + ACTIONS(18205), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18207), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18209), 1, + sym__symbolic_ident, + ACTIONS(18211), 1, + anon_sym_LPAREN, + ACTIONS(18213), 1, + anon_sym_LBRACE, + STATE(15228), 1, + sym_tyvar, + STATE(15231), 1, + sym_longtycon, + STATE(15316), 1, + sym_tycon, + STATE(18638), 1, + sym_tyseq, + STATE(18707), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15233), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878137] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19340), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19342), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [878163] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19354), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19356), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [878189] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19362), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19364), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [878215] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13042), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(13040), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [878241] = 14, + ACTIONS(18728), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18730), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18732), 1, + sym__symbolic_ident, + ACTIONS(18734), 1, + anon_sym_LPAREN, + ACTIONS(18736), 1, + anon_sym_LBRACE, + STATE(16354), 1, + sym_tyvar, + STATE(16355), 1, + sym_tycon, + STATE(16356), 1, + sym_longtycon, + STATE(18222), 1, + sym_tyseq, + STATE(19144), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16357), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878289] = 14, + ACTIONS(17726), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17728), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17730), 1, + sym__symbolic_ident, + ACTIONS(17732), 1, + anon_sym_LPAREN, + ACTIONS(17734), 1, + anon_sym_LBRACE, + STATE(10112), 1, + sym_tyvar, + STATE(10113), 1, + sym_longtycon, + STATE(10219), 1, + sym_tycon, + STATE(18678), 1, + sym_tyseq, + STATE(18726), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11216), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10114), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878337] = 14, + ACTIONS(17726), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17728), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17730), 1, + sym__symbolic_ident, + ACTIONS(17732), 1, + anon_sym_LPAREN, + ACTIONS(17734), 1, + anon_sym_LBRACE, + STATE(10112), 1, + sym_tyvar, + STATE(10113), 1, + sym_longtycon, + STATE(10219), 1, + sym_tycon, + STATE(18678), 1, + sym_tyseq, + STATE(18726), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10114), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878385] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19305), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19303), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [878411] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19208), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19206), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [878437] = 14, + ACTIONS(18045), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18047), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18049), 1, + sym__symbolic_ident, + ACTIONS(18051), 1, + anon_sym_LPAREN, + ACTIONS(18053), 1, + anon_sym_LBRACE, + STATE(8480), 1, + sym_tyvar, + STATE(8482), 1, + sym_longtycon, + STATE(8485), 1, + sym_tycon, + STATE(18414), 1, + sym_tyseq, + STATE(18731), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8549), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8450), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878485] = 14, + ACTIONS(18045), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18047), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18049), 1, + sym__symbolic_ident, + ACTIONS(18051), 1, + anon_sym_LPAREN, + ACTIONS(18053), 1, + anon_sym_LBRACE, + STATE(8480), 1, + sym_tyvar, + STATE(8482), 1, + sym_longtycon, + STATE(8485), 1, + sym_tycon, + STATE(18414), 1, + sym_tyseq, + STATE(18731), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8450), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878533] = 14, + ACTIONS(18215), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18217), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18219), 1, + sym__symbolic_ident, + ACTIONS(18221), 1, + anon_sym_LPAREN, + ACTIONS(18223), 1, + anon_sym_LBRACE, + STATE(10417), 1, + sym_tyvar, + STATE(10419), 1, + sym_longtycon, + STATE(10855), 1, + sym_tycon, + STATE(18693), 1, + sym_tyseq, + STATE(18854), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11529), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10420), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878581] = 14, + ACTIONS(18215), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18217), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18219), 1, + sym__symbolic_ident, + ACTIONS(18221), 1, + anon_sym_LPAREN, + ACTIONS(18223), 1, + anon_sym_LBRACE, + STATE(10417), 1, + sym_tyvar, + STATE(10419), 1, + sym_longtycon, + STATE(10855), 1, + sym_tycon, + STATE(18693), 1, + sym_tyseq, + STATE(18854), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10420), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878629] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19444), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19442), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [878655] = 14, + ACTIONS(18879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18881), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18883), 1, + sym__symbolic_ident, + ACTIONS(18885), 1, + anon_sym_LPAREN, + ACTIONS(18887), 1, + anon_sym_LBRACE, + STATE(15164), 1, + sym_tycon, + STATE(15199), 1, + sym_tyvar, + STATE(15205), 1, + sym_longtycon, + STATE(18695), 1, + sym_tyseq, + STATE(19230), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15869), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15208), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878703] = 14, + ACTIONS(18879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18881), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18883), 1, + sym__symbolic_ident, + ACTIONS(18885), 1, + anon_sym_LPAREN, + ACTIONS(18887), 1, + anon_sym_LBRACE, + STATE(15164), 1, + sym_tycon, + STATE(15199), 1, + sym_tyvar, + STATE(15205), 1, + sym_longtycon, + STATE(18695), 1, + sym_tyseq, + STATE(19230), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15208), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878751] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(15625), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [878777] = 14, + ACTIONS(17795), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17797), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17799), 1, + sym__symbolic_ident, + ACTIONS(17801), 1, + anon_sym_LPAREN, + ACTIONS(17803), 1, + anon_sym_LBRACE, + STATE(15036), 1, + sym_tyvar, + STATE(15037), 1, + sym_longtycon, + STATE(15104), 1, + sym_tycon, + STATE(18584), 1, + sym_tyseq, + STATE(19220), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15134), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15038), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878825] = 14, + ACTIONS(17795), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17797), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17799), 1, + sym__symbolic_ident, + ACTIONS(17801), 1, + anon_sym_LPAREN, + ACTIONS(17803), 1, + anon_sym_LBRACE, + STATE(15036), 1, + sym_tyvar, + STATE(15037), 1, + sym_longtycon, + STATE(15104), 1, + sym_tycon, + STATE(18584), 1, + sym_tyseq, + STATE(19220), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15038), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878873] = 14, + ACTIONS(17359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17361), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17363), 1, + sym__symbolic_ident, + ACTIONS(17365), 1, + anon_sym_LPAREN, + ACTIONS(17367), 1, + anon_sym_LBRACE, + STATE(8749), 1, + sym_longtycon, + STATE(8764), 1, + sym_tyvar, + STATE(8787), 1, + sym_tycon, + STATE(18155), 1, + sym_tyseq, + STATE(19055), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8891), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878921] = 14, + ACTIONS(17359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17361), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17363), 1, + sym__symbolic_ident, + ACTIONS(17365), 1, + anon_sym_LPAREN, + ACTIONS(17367), 1, + anon_sym_LBRACE, + STATE(8749), 1, + sym_longtycon, + STATE(8764), 1, + sym_tyvar, + STATE(8787), 1, + sym_tycon, + STATE(18155), 1, + sym_tyseq, + STATE(19055), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [878969] = 14, + ACTIONS(18239), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18241), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18243), 1, + sym__symbolic_ident, + ACTIONS(18245), 1, + anon_sym_LPAREN, + ACTIONS(18247), 1, + anon_sym_LBRACE, + STATE(9834), 1, + sym_tyvar, + STATE(9856), 1, + sym_tycon, + STATE(9881), 1, + sym_longtycon, + STATE(17998), 1, + sym_tyseq, + STATE(18919), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10398), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9899), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879017] = 14, + ACTIONS(18239), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18241), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18243), 1, + sym__symbolic_ident, + ACTIONS(18245), 1, + anon_sym_LPAREN, + ACTIONS(18247), 1, + anon_sym_LBRACE, + STATE(9834), 1, + sym_tyvar, + STATE(9856), 1, + sym_tycon, + STATE(9881), 1, + sym_longtycon, + STATE(17998), 1, + sym_tyseq, + STATE(18919), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9899), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879065] = 14, + ACTIONS(17616), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17618), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17620), 1, + sym__symbolic_ident, + ACTIONS(17622), 1, + anon_sym_LPAREN, + ACTIONS(17624), 1, + anon_sym_LBRACE, + STATE(10321), 1, + sym_tycon, + STATE(10962), 1, + sym_tyvar, + STATE(10970), 1, + sym_longtycon, + STATE(18099), 1, + sym_tyseq, + STATE(18936), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11047), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10088), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879113] = 14, + ACTIONS(18259), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18261), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18263), 1, + sym__symbolic_ident, + ACTIONS(18265), 1, + anon_sym_LPAREN, + ACTIONS(18267), 1, + anon_sym_LBRACE, + STATE(9302), 1, + sym_tycon, + STATE(9428), 1, + sym_tyvar, + STATE(9481), 1, + sym_longtycon, + STATE(18003), 1, + sym_tyseq, + STATE(19099), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9487), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9183), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879161] = 14, + ACTIONS(18259), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18261), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18263), 1, + sym__symbolic_ident, + ACTIONS(18265), 1, + anon_sym_LPAREN, + ACTIONS(18267), 1, + anon_sym_LBRACE, + STATE(9302), 1, + sym_tycon, + STATE(9428), 1, + sym_tyvar, + STATE(9481), 1, + sym_longtycon, + STATE(18003), 1, + sym_tyseq, + STATE(19099), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9183), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879209] = 14, + ACTIONS(17616), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17618), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17620), 1, + sym__symbolic_ident, + ACTIONS(17622), 1, + anon_sym_LPAREN, + ACTIONS(17624), 1, + anon_sym_LBRACE, + STATE(10321), 1, + sym_tycon, + STATE(10962), 1, + sym_tyvar, + STATE(10970), 1, + sym_longtycon, + STATE(18099), 1, + sym_tyseq, + STATE(18936), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10088), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879257] = 14, + ACTIONS(18794), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18796), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18798), 1, + sym__symbolic_ident, + ACTIONS(18800), 1, + anon_sym_LPAREN, + ACTIONS(18802), 1, + anon_sym_LBRACE, + STATE(11204), 1, + sym_tyvar, + STATE(11214), 1, + sym_longtycon, + STATE(11525), 1, + sym_tycon, + STATE(18006), 1, + sym_tyseq, + STATE(19180), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12309), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11439), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879305] = 14, + ACTIONS(18794), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18796), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18798), 1, + sym__symbolic_ident, + ACTIONS(18800), 1, + anon_sym_LPAREN, + ACTIONS(18802), 1, + anon_sym_LBRACE, + STATE(11204), 1, + sym_tyvar, + STATE(11214), 1, + sym_longtycon, + STATE(11525), 1, + sym_tycon, + STATE(18006), 1, + sym_tyseq, + STATE(19180), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9589), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11439), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879353] = 14, + ACTIONS(18289), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18291), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18293), 1, + sym__symbolic_ident, + ACTIONS(18295), 1, + anon_sym_LPAREN, + ACTIONS(18297), 1, + anon_sym_LBRACE, + STATE(10309), 1, + sym_tycon, + STATE(10418), 1, + sym_tyvar, + STATE(10441), 1, + sym_longtycon, + STATE(18011), 1, + sym_tyseq, + STATE(18808), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11594), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10584), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879401] = 14, + ACTIONS(18289), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18291), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18293), 1, + sym__symbolic_ident, + ACTIONS(18295), 1, + anon_sym_LPAREN, + ACTIONS(18297), 1, + anon_sym_LBRACE, + STATE(10309), 1, + sym_tycon, + STATE(10418), 1, + sym_tyvar, + STATE(10441), 1, + sym_longtycon, + STATE(18011), 1, + sym_tyseq, + STATE(18808), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10584), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879449] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [879475] = 14, + ACTIONS(18299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18301), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18303), 1, + sym__symbolic_ident, + ACTIONS(18305), 1, + anon_sym_LPAREN, + ACTIONS(18307), 1, + anon_sym_LBRACE, + STATE(10484), 1, + sym_tycon, + STATE(10800), 1, + sym_tyvar, + STATE(10804), 1, + sym_longtycon, + STATE(18017), 1, + sym_tyseq, + STATE(18941), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11606), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10815), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879523] = 14, + ACTIONS(18299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18301), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18303), 1, + sym__symbolic_ident, + ACTIONS(18305), 1, + anon_sym_LPAREN, + ACTIONS(18307), 1, + anon_sym_LBRACE, + STATE(10484), 1, + sym_tycon, + STATE(10800), 1, + sym_tyvar, + STATE(10804), 1, + sym_longtycon, + STATE(18017), 1, + sym_tyseq, + STATE(18941), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10815), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879571] = 14, + ACTIONS(18311), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18313), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18315), 1, + sym__symbolic_ident, + ACTIONS(18317), 1, + anon_sym_LPAREN, + ACTIONS(18319), 1, + anon_sym_LBRACE, + STATE(9520), 1, + sym_tycon, + STATE(9874), 1, + sym_tyvar, + STATE(9877), 1, + sym_longtycon, + STATE(18019), 1, + sym_tyseq, + STATE(19076), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10413), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9879), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879619] = 14, + ACTIONS(18311), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18313), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18315), 1, + sym__symbolic_ident, + ACTIONS(18317), 1, + anon_sym_LPAREN, + ACTIONS(18319), 1, + anon_sym_LBRACE, + STATE(9520), 1, + sym_tycon, + STATE(9874), 1, + sym_tyvar, + STATE(9877), 1, + sym_longtycon, + STATE(18019), 1, + sym_tyseq, + STATE(19076), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9879), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879667] = 14, + ACTIONS(18321), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18323), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18325), 1, + sym__symbolic_ident, + ACTIONS(18327), 1, + anon_sym_LPAREN, + ACTIONS(18329), 1, + anon_sym_LBRACE, + STATE(14593), 1, + sym_tyvar, + STATE(14595), 1, + sym_longtycon, + STATE(14629), 1, + sym_tycon, + STATE(18025), 1, + sym_tyseq, + STATE(19168), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14991), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14596), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879715] = 14, + ACTIONS(18321), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18323), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18325), 1, + sym__symbolic_ident, + ACTIONS(18327), 1, + anon_sym_LPAREN, + ACTIONS(18329), 1, + anon_sym_LBRACE, + STATE(14593), 1, + sym_tyvar, + STATE(14595), 1, + sym_longtycon, + STATE(14629), 1, + sym_tycon, + STATE(18025), 1, + sym_tyseq, + STATE(19168), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14596), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879763] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13042), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(13040), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [879789] = 14, + ACTIONS(18341), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18343), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18345), 1, + sym__symbolic_ident, + ACTIONS(18347), 1, + anon_sym_LPAREN, + ACTIONS(18349), 1, + anon_sym_LBRACE, + STATE(14613), 1, + sym_tyvar, + STATE(14615), 1, + sym_longtycon, + STATE(14641), 1, + sym_tycon, + STATE(18028), 1, + sym_tyseq, + STATE(19147), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14993), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14616), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879837] = 14, + ACTIONS(18341), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18343), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18345), 1, + sym__symbolic_ident, + ACTIONS(18347), 1, + anon_sym_LPAREN, + ACTIONS(18349), 1, + anon_sym_LBRACE, + STATE(14613), 1, + sym_tyvar, + STATE(14615), 1, + sym_longtycon, + STATE(14641), 1, + sym_tycon, + STATE(18028), 1, + sym_tyseq, + STATE(19147), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14616), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879885] = 14, + ACTIONS(18371), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18373), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18375), 1, + sym__symbolic_ident, + ACTIONS(18377), 1, + anon_sym_LPAREN, + ACTIONS(18379), 1, + anon_sym_LBRACE, + STATE(10497), 1, + sym_tyvar, + STATE(10501), 1, + sym_longtycon, + STATE(10679), 1, + sym_tycon, + STATE(18033), 1, + sym_tyseq, + STATE(18739), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11635), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10504), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879933] = 14, + ACTIONS(18371), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18373), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18375), 1, + sym__symbolic_ident, + ACTIONS(18377), 1, + anon_sym_LPAREN, + ACTIONS(18379), 1, + anon_sym_LBRACE, + STATE(10497), 1, + sym_tyvar, + STATE(10501), 1, + sym_longtycon, + STATE(10679), 1, + sym_tycon, + STATE(18033), 1, + sym_tyseq, + STATE(18739), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10504), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [879981] = 14, + ACTIONS(18161), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18163), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18165), 1, + sym__symbolic_ident, + ACTIONS(18167), 1, + anon_sym_LPAREN, + ACTIONS(18169), 1, + anon_sym_LBRACE, + STATE(17223), 1, + sym_tyvar, + STATE(17224), 1, + sym_tycon, + STATE(17226), 1, + sym_longtycon, + STATE(18306), 1, + sym_tyseq, + STATE(19085), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17228), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880029] = 14, + ACTIONS(18381), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18383), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18385), 1, + sym__symbolic_ident, + ACTIONS(18387), 1, + anon_sym_LPAREN, + ACTIONS(18389), 1, + anon_sym_LBRACE, + STATE(9543), 1, + sym_tyvar, + STATE(9546), 1, + sym_longtycon, + STATE(9711), 1, + sym_tycon, + STATE(18038), 1, + sym_tyseq, + STATE(19077), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10423), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9551), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880077] = 14, + ACTIONS(18381), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18383), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18385), 1, + sym__symbolic_ident, + ACTIONS(18387), 1, + anon_sym_LPAREN, + ACTIONS(18389), 1, + anon_sym_LBRACE, + STATE(9543), 1, + sym_tyvar, + STATE(9546), 1, + sym_longtycon, + STATE(9711), 1, + sym_tycon, + STATE(18038), 1, + sym_tyseq, + STATE(19077), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9551), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880125] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(12416), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [880151] = 14, + ACTIONS(18814), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18816), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18818), 1, + sym__symbolic_ident, + ACTIONS(18820), 1, + anon_sym_LPAREN, + ACTIONS(18822), 1, + anon_sym_LBRACE, + STATE(11292), 1, + sym_tyvar, + STATE(11307), 1, + sym_longtycon, + STATE(11384), 1, + sym_tycon, + STATE(18039), 1, + sym_tyseq, + STATE(19109), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12312), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11308), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880199] = 14, + ACTIONS(18814), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18816), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18818), 1, + sym__symbolic_ident, + ACTIONS(18820), 1, + anon_sym_LPAREN, + ACTIONS(18822), 1, + anon_sym_LBRACE, + STATE(11292), 1, + sym_tyvar, + STATE(11307), 1, + sym_longtycon, + STATE(11384), 1, + sym_tycon, + STATE(18039), 1, + sym_tyseq, + STATE(19109), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9589), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11308), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880247] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13026), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(13024), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [880273] = 14, + ACTIONS(18863), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18865), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18867), 1, + sym__symbolic_ident, + ACTIONS(18869), 1, + anon_sym_LPAREN, + ACTIONS(18871), 1, + anon_sym_LBRACE, + STATE(16364), 1, + sym_tyvar, + STATE(16365), 1, + sym_longtycon, + STATE(16390), 1, + sym_tycon, + STATE(18047), 1, + sym_tyseq, + STATE(18978), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17225), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16366), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880321] = 14, + ACTIONS(18863), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18865), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18867), 1, + sym__symbolic_ident, + ACTIONS(18869), 1, + anon_sym_LPAREN, + ACTIONS(18871), 1, + anon_sym_LBRACE, + STATE(16364), 1, + sym_tyvar, + STATE(16365), 1, + sym_longtycon, + STATE(16390), 1, + sym_tycon, + STATE(18047), 1, + sym_tyseq, + STATE(18978), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16366), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880369] = 5, + ACTIONS(20125), 1, + anon_sym_PIPE, + STATE(14108), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17295), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17293), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [880399] = 14, + ACTIONS(17333), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17335), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17337), 1, + sym__symbolic_ident, + ACTIONS(17339), 1, + anon_sym_LPAREN, + ACTIONS(17341), 1, + anon_sym_LBRACE, + STATE(16377), 1, + sym_tyvar, + STATE(16378), 1, + sym_longtycon, + STATE(16394), 1, + sym_tycon, + STATE(18050), 1, + sym_tyseq, + STATE(18953), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17235), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16379), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880447] = 14, + ACTIONS(17333), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17335), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17337), 1, + sym__symbolic_ident, + ACTIONS(17339), 1, + anon_sym_LPAREN, + ACTIONS(17341), 1, + anon_sym_LBRACE, + STATE(16377), 1, + sym_tyvar, + STATE(16378), 1, + sym_longtycon, + STATE(16394), 1, + sym_tycon, + STATE(18050), 1, + sym_tyseq, + STATE(18953), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16379), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880495] = 14, + ACTIONS(18391), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18393), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18395), 1, + sym__symbolic_ident, + ACTIONS(18397), 1, + anon_sym_LPAREN, + ACTIONS(18399), 1, + anon_sym_LBRACE, + STATE(9737), 1, + sym_tyvar, + STATE(9738), 1, + sym_longtycon, + STATE(9772), 1, + sym_tycon, + STATE(18052), 1, + sym_tyseq, + STATE(19179), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10430), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9739), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880543] = 14, + ACTIONS(18391), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18393), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18395), 1, + sym__symbolic_ident, + ACTIONS(18397), 1, + anon_sym_LPAREN, + ACTIONS(18399), 1, + anon_sym_LBRACE, + STATE(9737), 1, + sym_tyvar, + STATE(9738), 1, + sym_longtycon, + STATE(9772), 1, + sym_tycon, + STATE(18052), 1, + sym_tyseq, + STATE(19179), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9739), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880591] = 14, + ACTIONS(18530), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18532), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18534), 1, + sym__symbolic_ident, + ACTIONS(18536), 1, + anon_sym_LPAREN, + ACTIONS(18538), 1, + anon_sym_LBRACE, + STATE(11913), 1, + sym_tyvar, + STATE(11914), 1, + sym_longtycon, + STATE(11959), 1, + sym_tycon, + STATE(18178), 1, + sym_tyseq, + STATE(19249), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12677), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11915), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880639] = 14, + ACTIONS(18421), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18423), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18425), 1, + sym__symbolic_ident, + ACTIONS(18427), 1, + anon_sym_LPAREN, + ACTIONS(18429), 1, + anon_sym_LBRACE, + STATE(14997), 1, + sym_tyvar, + STATE(14998), 1, + sym_longtycon, + STATE(15025), 1, + sym_tycon, + STATE(18054), 1, + sym_tyseq, + STATE(19113), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15192), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14999), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880687] = 14, + ACTIONS(17736), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17738), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17740), 1, + sym__symbolic_ident, + ACTIONS(17742), 1, + anon_sym_LPAREN, + ACTIONS(17744), 1, + anon_sym_LBRACE, + STATE(17852), 1, + sym_tyvar, + STATE(17853), 1, + sym_tycon, + STATE(17856), 1, + sym_longtycon, + STATE(18143), 1, + sym_tyseq, + STATE(18969), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18350), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17857), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880735] = 14, + ACTIONS(18421), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18423), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18425), 1, + sym__symbolic_ident, + ACTIONS(18427), 1, + anon_sym_LPAREN, + ACTIONS(18429), 1, + anon_sym_LBRACE, + STATE(14997), 1, + sym_tyvar, + STATE(14998), 1, + sym_longtycon, + STATE(15025), 1, + sym_tycon, + STATE(18054), 1, + sym_tyseq, + STATE(19113), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14999), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880783] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [880809] = 14, + ACTIONS(18431), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18433), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18435), 1, + sym__symbolic_ident, + ACTIONS(18437), 1, + anon_sym_LPAREN, + ACTIONS(18439), 1, + anon_sym_LBRACE, + STATE(15011), 1, + sym_tyvar, + STATE(15012), 1, + sym_longtycon, + STATE(15029), 1, + sym_tycon, + STATE(18066), 1, + sym_tyseq, + STATE(18896), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15197), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15014), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880857] = 14, + ACTIONS(18431), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18433), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18435), 1, + sym__symbolic_ident, + ACTIONS(18437), 1, + anon_sym_LPAREN, + ACTIONS(18439), 1, + anon_sym_LBRACE, + STATE(15011), 1, + sym_tyvar, + STATE(15012), 1, + sym_longtycon, + STATE(15029), 1, + sym_tycon, + STATE(18066), 1, + sym_tyseq, + STATE(18896), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15014), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880905] = 14, + ACTIONS(18530), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18532), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18534), 1, + sym__symbolic_ident, + ACTIONS(18536), 1, + anon_sym_LPAREN, + ACTIONS(18538), 1, + anon_sym_LBRACE, + STATE(11913), 1, + sym_tyvar, + STATE(11914), 1, + sym_longtycon, + STATE(11959), 1, + sym_tycon, + STATE(18178), 1, + sym_tyseq, + STATE(19249), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9589), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11915), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [880953] = 14, + ACTIONS(18451), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18453), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18455), 1, + sym__symbolic_ident, + ACTIONS(18457), 1, + anon_sym_LPAREN, + ACTIONS(18459), 1, + anon_sym_LBRACE, + STATE(9777), 1, + sym_tyvar, + STATE(9778), 1, + sym_longtycon, + STATE(9841), 1, + sym_tycon, + STATE(18069), 1, + sym_tyseq, + STATE(19173), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10431), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9782), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881001] = 14, + ACTIONS(18451), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18453), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18455), 1, + sym__symbolic_ident, + ACTIONS(18457), 1, + anon_sym_LPAREN, + ACTIONS(18459), 1, + anon_sym_LBRACE, + STATE(9777), 1, + sym_tyvar, + STATE(9778), 1, + sym_longtycon, + STATE(9841), 1, + sym_tycon, + STATE(18069), 1, + sym_tyseq, + STATE(19173), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9782), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881049] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12420), 3, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(16501), 14, + sym__alphaAlphaNumeric_ident, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [881075] = 14, + ACTIONS(18467), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18469), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18471), 1, + sym__symbolic_ident, + ACTIONS(18473), 1, + anon_sym_LPAREN, + ACTIONS(18475), 1, + anon_sym_LBRACE, + STATE(9272), 1, + sym_tyvar, + STATE(9273), 1, + sym_longtycon, + STATE(9358), 1, + sym_tycon, + STATE(18077), 1, + sym_tyseq, + STATE(18878), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9606), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9275), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881123] = 14, + ACTIONS(18467), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18469), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18471), 1, + sym__symbolic_ident, + ACTIONS(18473), 1, + anon_sym_LPAREN, + ACTIONS(18475), 1, + anon_sym_LBRACE, + STATE(9272), 1, + sym_tyvar, + STATE(9273), 1, + sym_longtycon, + STATE(9358), 1, + sym_tycon, + STATE(18077), 1, + sym_tyseq, + STATE(18878), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9275), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881171] = 14, + ACTIONS(18479), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18481), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18483), 1, + sym__symbolic_ident, + ACTIONS(18485), 1, + anon_sym_LPAREN, + ACTIONS(18487), 1, + anon_sym_LBRACE, + STATE(14382), 1, + sym_tycon, + STATE(14383), 1, + sym_tyvar, + STATE(14386), 1, + sym_longtycon, + STATE(18083), 1, + sym_tyseq, + STATE(18988), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14658), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14325), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881219] = 14, + ACTIONS(18479), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18481), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18483), 1, + sym__symbolic_ident, + ACTIONS(18485), 1, + anon_sym_LPAREN, + ACTIONS(18487), 1, + anon_sym_LBRACE, + STATE(14382), 1, + sym_tycon, + STATE(14383), 1, + sym_tyvar, + STATE(14386), 1, + sym_longtycon, + STATE(18083), 1, + sym_tyseq, + STATE(18988), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14325), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881267] = 4, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16462), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(16464), 14, + sym__alphaAlphaNumeric_ident, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [881295] = 14, + ACTIONS(17343), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17345), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17347), 1, + sym__symbolic_ident, + ACTIONS(17349), 1, + anon_sym_LPAREN, + ACTIONS(17351), 1, + anon_sym_LBRACE, + STATE(11048), 1, + sym_tycon, + STATE(11729), 1, + sym_tyvar, + STATE(11747), 1, + sym_longtycon, + STATE(18089), 1, + sym_tyseq, + STATE(19034), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12316), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881343] = 14, + ACTIONS(17343), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17345), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17347), 1, + sym__symbolic_ident, + ACTIONS(17349), 1, + anon_sym_LPAREN, + ACTIONS(17351), 1, + anon_sym_LBRACE, + STATE(11048), 1, + sym_tycon, + STATE(11729), 1, + sym_tyvar, + STATE(11747), 1, + sym_longtycon, + STATE(18089), 1, + sym_tyseq, + STATE(19034), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9589), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881391] = 14, + ACTIONS(17805), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17807), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17809), 1, + sym__symbolic_ident, + ACTIONS(17811), 1, + anon_sym_LPAREN, + ACTIONS(17813), 1, + anon_sym_LBRACE, + STATE(8541), 1, + sym_tycon, + STATE(8552), 1, + sym_tyvar, + STATE(8568), 1, + sym_longtycon, + STATE(18640), 1, + sym_tyseq, + STATE(19110), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8798), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8569), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881439] = 14, + ACTIONS(17805), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17807), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17809), 1, + sym__symbolic_ident, + ACTIONS(17811), 1, + anon_sym_LPAREN, + ACTIONS(17813), 1, + anon_sym_LBRACE, + STATE(8541), 1, + sym_tycon, + STATE(8552), 1, + sym_tyvar, + STATE(8568), 1, + sym_longtycon, + STATE(18640), 1, + sym_tyseq, + STATE(19110), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8569), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881487] = 14, + ACTIONS(17992), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17994), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17996), 1, + sym__symbolic_ident, + ACTIONS(17998), 1, + anon_sym_LPAREN, + ACTIONS(18000), 1, + anon_sym_LBRACE, + STATE(15320), 1, + sym_tycon, + STATE(15391), 1, + sym_tyvar, + STATE(15394), 1, + sym_longtycon, + STATE(18517), 1, + sym_tyseq, + STATE(19250), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16068), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15399), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881535] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13066), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(13064), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [881561] = 10, + ACTIONS(17498), 1, + anon_sym_LPAREN, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(20127), 1, + sym_hol_cname_alphanumeric, + STATE(19073), 1, + sym_hol_pat, + STATE(21223), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [881601] = 14, + ACTIONS(17484), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17486), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17488), 1, + sym__symbolic_ident, + ACTIONS(17490), 1, + anon_sym_LPAREN, + ACTIONS(17492), 1, + anon_sym_LBRACE, + STATE(15574), 1, + sym_tyvar, + STATE(15578), 1, + sym_longtycon, + STATE(16139), 1, + sym_tycon, + STATE(18281), 1, + sym_tyseq, + STATE(18728), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16432), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15583), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881649] = 14, + ACTIONS(18055), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18057), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18059), 1, + sym__symbolic_ident, + ACTIONS(18061), 1, + anon_sym_LPAREN, + ACTIONS(18063), 1, + anon_sym_LBRACE, + STATE(9655), 1, + sym_tyvar, + STATE(9656), 1, + sym_longtycon, + STATE(10034), 1, + sym_tycon, + STATE(18639), 1, + sym_tyseq, + STATE(18741), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10357), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9657), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881697] = 4, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16092), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(16096), 14, + sym__alphaAlphaNumeric_ident, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [881725] = 14, + ACTIONS(18055), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18057), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18059), 1, + sym__symbolic_ident, + ACTIONS(18061), 1, + anon_sym_LPAREN, + ACTIONS(18063), 1, + anon_sym_LBRACE, + STATE(9655), 1, + sym_tyvar, + STATE(9656), 1, + sym_longtycon, + STATE(10034), 1, + sym_tycon, + STATE(18639), 1, + sym_tyseq, + STATE(18741), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9657), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881773] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(12416), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [881799] = 14, + ACTIONS(17484), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17486), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17488), 1, + sym__symbolic_ident, + ACTIONS(17490), 1, + anon_sym_LPAREN, + ACTIONS(17492), 1, + anon_sym_LBRACE, + STATE(15574), 1, + sym_tyvar, + STATE(15578), 1, + sym_longtycon, + STATE(16139), 1, + sym_tycon, + STATE(18281), 1, + sym_tyseq, + STATE(18728), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15583), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881847] = 14, + ACTIONS(17464), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17466), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17468), 1, + sym__symbolic_ident, + ACTIONS(17470), 1, + anon_sym_LPAREN, + ACTIONS(17472), 1, + anon_sym_LBRACE, + STATE(14212), 1, + sym_tyvar, + STATE(14221), 1, + sym_longtycon, + STATE(14300), 1, + sym_tycon, + STATE(18626), 1, + sym_tyseq, + STATE(18833), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14311), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14235), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881895] = 14, + ACTIONS(17464), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17466), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17468), 1, + sym__symbolic_ident, + ACTIONS(17470), 1, + anon_sym_LPAREN, + ACTIONS(17472), 1, + anon_sym_LBRACE, + STATE(14212), 1, + sym_tyvar, + STATE(14221), 1, + sym_longtycon, + STATE(14300), 1, + sym_tycon, + STATE(18626), 1, + sym_tyseq, + STATE(18833), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14235), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [881943] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20131), 4, + anon_sym_COLON, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20129), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym__, + anon_sym_COLON_COLON, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [881969] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20135), 4, + anon_sym_COLON, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20133), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym__, + anon_sym_COLON_COLON, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [881995] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20139), 4, + anon_sym_COLON, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20137), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym__, + anon_sym_COLON_COLON, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [882021] = 14, + ACTIONS(17815), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17817), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17819), 1, + sym__symbolic_ident, + ACTIONS(17821), 1, + anon_sym_LPAREN, + ACTIONS(17823), 1, + anon_sym_LBRACE, + STATE(10472), 1, + sym_tyvar, + STATE(10473), 1, + sym_longtycon, + STATE(10583), 1, + sym_tycon, + STATE(18686), 1, + sym_tyseq, + STATE(19112), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11269), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10474), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882069] = 14, + ACTIONS(17815), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17817), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17819), 1, + sym__symbolic_ident, + ACTIONS(17821), 1, + anon_sym_LPAREN, + ACTIONS(17823), 1, + anon_sym_LBRACE, + STATE(10472), 1, + sym_tyvar, + STATE(10473), 1, + sym_longtycon, + STATE(10583), 1, + sym_tycon, + STATE(18686), 1, + sym_tyseq, + STATE(19112), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10474), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882117] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 2, + sym__symbolic_ident, + anon_sym_SEMI, + ACTIONS(12418), 15, + sym__alphaAlphaNumeric_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [882143] = 14, + ACTIONS(17626), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17628), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17630), 1, + sym__symbolic_ident, + ACTIONS(17632), 1, + anon_sym_LPAREN, + ACTIONS(17634), 1, + anon_sym_LBRACE, + STATE(15244), 1, + sym_tycon, + STATE(15288), 1, + sym_tyvar, + STATE(15296), 1, + sym_longtycon, + STATE(18186), 1, + sym_tyseq, + STATE(19190), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15654), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15299), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882191] = 14, + ACTIONS(17626), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17628), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17630), 1, + sym__symbolic_ident, + ACTIONS(17632), 1, + anon_sym_LPAREN, + ACTIONS(17634), 1, + anon_sym_LBRACE, + STATE(15244), 1, + sym_tycon, + STATE(15288), 1, + sym_tyvar, + STATE(15296), 1, + sym_longtycon, + STATE(18186), 1, + sym_tyseq, + STATE(19190), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15299), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882239] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20143), 4, + anon_sym_COLON, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20141), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym__, + anon_sym_COLON_COLON, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [882265] = 14, + ACTIONS(18331), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18333), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18335), 1, + sym__symbolic_ident, + ACTIONS(18337), 1, + anon_sym_LPAREN, + ACTIONS(18339), 1, + anon_sym_LBRACE, + STATE(16490), 1, + sym_tyvar, + STATE(16492), 1, + sym_tycon, + STATE(16493), 1, + sym_longtycon, + STATE(17978), 1, + sym_tyseq, + STATE(19235), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16503), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882313] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19422), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19424), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [882339] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(20145), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [882367] = 14, + ACTIONS(18279), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18281), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18283), 1, + sym__symbolic_ident, + ACTIONS(18285), 1, + anon_sym_LPAREN, + ACTIONS(18287), 1, + anon_sym_LBRACE, + STATE(14042), 1, + sym_tycon, + STATE(14069), 1, + sym_tyvar, + STATE(14071), 1, + sym_longtycon, + STATE(18020), 1, + sym_tyseq, + STATE(19102), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14138), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14072), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882415] = 14, + ACTIONS(17399), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17401), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17403), 1, + sym__symbolic_ident, + ACTIONS(17405), 1, + anon_sym_LPAREN, + ACTIONS(17407), 1, + anon_sym_LBRACE, + STATE(14340), 1, + sym_tycon, + STATE(14370), 1, + sym_tyvar, + STATE(14373), 1, + sym_longtycon, + STATE(18241), 1, + sym_tyseq, + STATE(19239), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14374), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882463] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19426), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19428), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [882489] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19430), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19432), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [882515] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19434), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19436), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [882541] = 14, + ACTIONS(18279), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18281), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18283), 1, + sym__symbolic_ident, + ACTIONS(18285), 1, + anon_sym_LPAREN, + ACTIONS(18287), 1, + anon_sym_LBRACE, + STATE(14042), 1, + sym_tycon, + STATE(14069), 1, + sym_tyvar, + STATE(14071), 1, + sym_longtycon, + STATE(18020), 1, + sym_tyseq, + STATE(19102), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14072), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882589] = 14, + ACTIONS(17736), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17738), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17740), 1, + sym__symbolic_ident, + ACTIONS(17742), 1, + anon_sym_LPAREN, + ACTIONS(17744), 1, + anon_sym_LBRACE, + STATE(17852), 1, + sym_tyvar, + STATE(17853), 1, + sym_tycon, + STATE(17856), 1, + sym_longtycon, + STATE(18143), 1, + sym_tyseq, + STATE(18969), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17857), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882637] = 14, + ACTIONS(17746), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17748), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17750), 1, + sym__symbolic_ident, + ACTIONS(17752), 1, + anon_sym_LPAREN, + ACTIONS(17754), 1, + anon_sym_LBRACE, + STATE(9859), 1, + sym_tyvar, + STATE(9860), 1, + sym_longtycon, + STATE(9893), 1, + sym_tycon, + STATE(18055), 1, + sym_tyseq, + STATE(19133), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10330), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9861), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882685] = 14, + ACTIONS(18351), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18353), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18355), 1, + sym__symbolic_ident, + ACTIONS(18357), 1, + anon_sym_LPAREN, + ACTIONS(18359), 1, + anon_sym_LBRACE, + STATE(15165), 1, + sym_tyvar, + STATE(15183), 1, + sym_tycon, + STATE(15218), 1, + sym_longtycon, + STATE(18366), 1, + sym_tyseq, + STATE(19224), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15236), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882733] = 14, + ACTIONS(18595), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18597), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18599), 1, + sym__symbolic_ident, + ACTIONS(18601), 1, + anon_sym_LPAREN, + ACTIONS(18603), 1, + anon_sym_LBRACE, + STATE(8908), 1, + sym_tycon, + STATE(8930), 1, + sym_longtycon, + STATE(8934), 1, + sym_tyvar, + STATE(17990), 1, + sym_tyseq, + STATE(19081), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8958), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8834), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882781] = 14, + ACTIONS(17746), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17748), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17750), 1, + sym__symbolic_ident, + ACTIONS(17752), 1, + anon_sym_LPAREN, + ACTIONS(17754), 1, + anon_sym_LBRACE, + STATE(9859), 1, + sym_tyvar, + STATE(9860), 1, + sym_longtycon, + STATE(9893), 1, + sym_tycon, + STATE(18055), 1, + sym_tyseq, + STATE(19133), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9861), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882829] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19378), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19376), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [882855] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13026), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(13024), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [882881] = 14, + ACTIONS(18441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18443), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18445), 1, + sym__symbolic_ident, + ACTIONS(18447), 1, + anon_sym_LPAREN, + ACTIONS(18449), 1, + anon_sym_LBRACE, + STATE(14133), 1, + sym_tycon, + STATE(14150), 1, + sym_tyvar, + STATE(14151), 1, + sym_longtycon, + STATE(18161), 1, + sym_tyseq, + STATE(18761), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14295), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14156), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882929] = 14, + ACTIONS(18441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18443), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18445), 1, + sym__symbolic_ident, + ACTIONS(18447), 1, + anon_sym_LPAREN, + ACTIONS(18449), 1, + anon_sym_LBRACE, + STATE(14133), 1, + sym_tycon, + STATE(14150), 1, + sym_tyvar, + STATE(14151), 1, + sym_longtycon, + STATE(18161), 1, + sym_tyseq, + STATE(18761), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14156), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [882977] = 14, + ACTIONS(17389), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17391), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17393), 1, + sym__symbolic_ident, + ACTIONS(17395), 1, + anon_sym_LPAREN, + ACTIONS(17397), 1, + anon_sym_LBRACE, + STATE(8967), 1, + sym_tyvar, + STATE(8968), 1, + sym_longtycon, + STATE(8982), 1, + sym_tycon, + STATE(18278), 1, + sym_tyseq, + STATE(18734), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9181), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8969), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883025] = 14, + ACTIONS(17389), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17391), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17393), 1, + sym__symbolic_ident, + ACTIONS(17395), 1, + anon_sym_LPAREN, + ACTIONS(17397), 1, + anon_sym_LBRACE, + STATE(8967), 1, + sym_tyvar, + STATE(8968), 1, + sym_longtycon, + STATE(8982), 1, + sym_tycon, + STATE(18278), 1, + sym_tyseq, + STATE(18734), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8969), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883073] = 14, + ACTIONS(17656), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17658), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17660), 1, + sym__symbolic_ident, + ACTIONS(17662), 1, + anon_sym_LPAREN, + ACTIONS(17664), 1, + anon_sym_LBRACE, + STATE(15246), 1, + sym_tyvar, + STATE(15318), 1, + sym_tycon, + STATE(15333), 1, + sym_longtycon, + STATE(18505), 1, + sym_tyseq, + STATE(19063), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15832), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15355), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883121] = 14, + ACTIONS(17656), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17658), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17660), 1, + sym__symbolic_ident, + ACTIONS(17662), 1, + anon_sym_LPAREN, + ACTIONS(17664), 1, + anon_sym_LBRACE, + STATE(15246), 1, + sym_tyvar, + STATE(15318), 1, + sym_tycon, + STATE(15333), 1, + sym_longtycon, + STATE(18505), 1, + sym_tyseq, + STATE(19063), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15355), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883169] = 14, + ACTIONS(17832), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17834), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17836), 1, + sym__symbolic_ident, + ACTIONS(17838), 1, + anon_sym_LPAREN, + ACTIONS(17840), 1, + anon_sym_LBRACE, + STATE(10507), 1, + sym_tyvar, + STATE(10509), 1, + sym_longtycon, + STATE(10643), 1, + sym_tycon, + STATE(18361), 1, + sym_tyseq, + STATE(19206), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11296), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10510), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883217] = 14, + ACTIONS(17832), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17834), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17836), 1, + sym__symbolic_ident, + ACTIONS(17838), 1, + anon_sym_LPAREN, + ACTIONS(17840), 1, + anon_sym_LBRACE, + STATE(10507), 1, + sym_tyvar, + STATE(10509), 1, + sym_longtycon, + STATE(10643), 1, + sym_tycon, + STATE(18361), 1, + sym_tyseq, + STATE(19206), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10510), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883265] = 14, + ACTIONS(18401), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18403), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18405), 1, + sym__symbolic_ident, + ACTIONS(18407), 1, + anon_sym_LPAREN, + ACTIONS(18409), 1, + anon_sym_LBRACE, + STATE(16967), 1, + sym_tyvar, + STATE(16977), 1, + sym_tycon, + STATE(16978), 1, + sym_longtycon, + STATE(18125), 1, + sym_tyseq, + STATE(18914), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17833), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16983), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883313] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [883341] = 14, + ACTIONS(17855), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17857), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17859), 1, + sym__symbolic_ident, + ACTIONS(17861), 1, + anon_sym_LPAREN, + ACTIONS(17863), 1, + anon_sym_LBRACE, + STATE(9721), 1, + sym_tyvar, + STATE(9722), 1, + sym_longtycon, + STATE(9951), 1, + sym_tycon, + STATE(18632), 1, + sym_tyseq, + STATE(19033), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10339), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9723), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883389] = 14, + ACTIONS(17855), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17857), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17859), 1, + sym__symbolic_ident, + ACTIONS(17861), 1, + anon_sym_LPAREN, + ACTIONS(17863), 1, + anon_sym_LBRACE, + STATE(9721), 1, + sym_tyvar, + STATE(9722), 1, + sym_longtycon, + STATE(9951), 1, + sym_tycon, + STATE(18632), 1, + sym_tyseq, + STATE(19033), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9723), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883437] = 5, + ACTIONS(18607), 1, + anon_sym_infix, + ACTIONS(20147), 1, + anon_sym_and, + STATE(13985), 1, + aux_sym__strbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18605), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [883467] = 14, + ACTIONS(17666), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17668), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17670), 1, + sym__symbolic_ident, + ACTIONS(17672), 1, + anon_sym_LPAREN, + ACTIONS(17674), 1, + anon_sym_LBRACE, + STATE(11354), 1, + sym_tycon, + STATE(11824), 1, + sym_tyvar, + STATE(11826), 1, + sym_longtycon, + STATE(17996), 1, + sym_tyseq, + STATE(18827), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12284), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11828), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883515] = 14, + ACTIONS(17865), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17867), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17869), 1, + sym__symbolic_ident, + ACTIONS(17871), 1, + anon_sym_LPAREN, + ACTIONS(17873), 1, + anon_sym_LBRACE, + STATE(11246), 1, + sym_tyvar, + STATE(11248), 1, + sym_longtycon, + STATE(11827), 1, + sym_tycon, + STATE(18349), 1, + sym_tyseq, + STATE(19203), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12334), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11249), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883563] = 14, + ACTIONS(18804), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18806), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18808), 1, + sym__symbolic_ident, + ACTIONS(18810), 1, + anon_sym_LPAREN, + ACTIONS(18812), 1, + anon_sym_LBRACE, + STATE(12132), 1, + sym_tyvar, + STATE(12133), 1, + sym_tycon, + STATE(12134), 1, + sym_longtycon, + STATE(18323), 1, + sym_tyseq, + STATE(19066), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12136), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883611] = 5, + ACTIONS(17118), 1, + anon_sym_infix, + ACTIONS(20012), 1, + anon_sym_EQ, + ACTIONS(20149), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17112), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [883641] = 14, + ACTIONS(17865), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17867), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17869), 1, + sym__symbolic_ident, + ACTIONS(17871), 1, + anon_sym_LPAREN, + ACTIONS(17873), 1, + anon_sym_LBRACE, + STATE(11246), 1, + sym_tyvar, + STATE(11248), 1, + sym_longtycon, + STATE(11827), 1, + sym_tycon, + STATE(18349), 1, + sym_tyseq, + STATE(19203), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11249), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883689] = 14, + ACTIONS(17666), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17668), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17670), 1, + sym__symbolic_ident, + ACTIONS(17672), 1, + anon_sym_LPAREN, + ACTIONS(17674), 1, + anon_sym_LBRACE, + STATE(11354), 1, + sym_tycon, + STATE(11824), 1, + sym_tyvar, + STATE(11826), 1, + sym_longtycon, + STATE(17996), 1, + sym_tyseq, + STATE(18827), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11828), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883737] = 14, + ACTIONS(18738), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18740), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18742), 1, + sym__symbolic_ident, + ACTIONS(18744), 1, + anon_sym_LPAREN, + ACTIONS(18746), 1, + anon_sym_LBRACE, + STATE(13108), 1, + sym_tyvar, + STATE(13111), 1, + sym_longtycon, + STATE(13232), 1, + sym_tycon, + STATE(18530), 1, + sym_tyseq, + STATE(18893), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13448), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13112), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883785] = 14, + ACTIONS(18738), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18740), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18742), 1, + sym__symbolic_ident, + ACTIONS(18744), 1, + anon_sym_LPAREN, + ACTIONS(18746), 1, + anon_sym_LBRACE, + STATE(13108), 1, + sym_tyvar, + STATE(13111), 1, + sym_longtycon, + STATE(13232), 1, + sym_tycon, + STATE(18530), 1, + sym_tyseq, + STATE(18893), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9589), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13112), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883833] = 14, + ACTIONS(17546), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17548), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17550), 1, + sym__symbolic_ident, + ACTIONS(17552), 1, + anon_sym_LPAREN, + ACTIONS(17554), 1, + anon_sym_LBRACE, + STATE(8752), 1, + sym_tyvar, + STATE(8755), 1, + sym_longtycon, + STATE(8800), 1, + sym_tycon, + STATE(18319), 1, + sym_tyseq, + STATE(19083), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8905), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8756), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883881] = 14, + ACTIONS(18411), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18413), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18415), 1, + sym__symbolic_ident, + ACTIONS(18417), 1, + anon_sym_LPAREN, + ACTIONS(18419), 1, + anon_sym_LBRACE, + STATE(12698), 1, + sym_tycon, + STATE(12876), 1, + sym_tyvar, + STATE(12877), 1, + sym_longtycon, + STATE(18049), 1, + sym_tyseq, + STATE(18961), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13309), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12879), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883929] = 14, + ACTIONS(18065), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18067), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18069), 1, + sym__symbolic_ident, + ACTIONS(18071), 1, + anon_sym_LPAREN, + ACTIONS(18073), 1, + anon_sym_LBRACE, + STATE(14988), 1, + sym_tycon, + STATE(15091), 1, + sym_tyvar, + STATE(15092), 1, + sym_longtycon, + STATE(18280), 1, + sym_tyseq, + STATE(18874), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15166), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15095), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [883977] = 14, + ACTIONS(17512), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17514), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17516), 1, + sym__symbolic_ident, + ACTIONS(17518), 1, + anon_sym_LPAREN, + ACTIONS(17520), 1, + anon_sym_LBRACE, + STATE(15871), 1, + sym_tyvar, + STATE(15895), 1, + sym_longtycon, + STATE(16331), 1, + sym_tycon, + STATE(18057), 1, + sym_tyseq, + STATE(19185), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16429), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15898), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [884025] = 14, + ACTIONS(17512), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17514), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17516), 1, + sym__symbolic_ident, + ACTIONS(17518), 1, + anon_sym_LPAREN, + ACTIONS(17520), 1, + anon_sym_LBRACE, + STATE(15871), 1, + sym_tyvar, + STATE(15895), 1, + sym_longtycon, + STATE(16331), 1, + sym_tycon, + STATE(18057), 1, + sym_tyseq, + STATE(19185), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15898), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [884073] = 14, + ACTIONS(17636), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17638), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17640), 1, + sym__symbolic_ident, + ACTIONS(17642), 1, + anon_sym_LPAREN, + ACTIONS(17644), 1, + anon_sym_LBRACE, + STATE(17869), 1, + sym_tycon, + STATE(17946), 1, + sym_tyvar, + STATE(17947), 1, + sym_longtycon, + STATE(18035), 1, + sym_tyseq, + STATE(19057), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18182), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17948), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [884121] = 14, + ACTIONS(17636), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17638), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17640), 1, + sym__symbolic_ident, + ACTIONS(17642), 1, + anon_sym_LPAREN, + ACTIONS(17644), 1, + anon_sym_LBRACE, + STATE(17869), 1, + sym_tycon, + STATE(17946), 1, + sym_tyvar, + STATE(17947), 1, + sym_longtycon, + STATE(18035), 1, + sym_tyseq, + STATE(19057), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17948), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [884169] = 14, + ACTIONS(18401), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18403), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18405), 1, + sym__symbolic_ident, + ACTIONS(18407), 1, + anon_sym_LPAREN, + ACTIONS(18409), 1, + anon_sym_LBRACE, + STATE(16967), 1, + sym_tyvar, + STATE(16977), 1, + sym_tycon, + STATE(16978), 1, + sym_longtycon, + STATE(18125), 1, + sym_tyseq, + STATE(18914), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16983), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [884217] = 14, + ACTIONS(18411), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18413), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18415), 1, + sym__symbolic_ident, + ACTIONS(18417), 1, + anon_sym_LPAREN, + ACTIONS(18419), 1, + anon_sym_LBRACE, + STATE(12698), 1, + sym_tycon, + STATE(12876), 1, + sym_tyvar, + STATE(12877), 1, + sym_longtycon, + STATE(18049), 1, + sym_tyseq, + STATE(18961), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9589), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12879), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [884265] = 14, + ACTIONS(18065), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18067), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18069), 1, + sym__symbolic_ident, + ACTIONS(18071), 1, + anon_sym_LPAREN, + ACTIONS(18073), 1, + anon_sym_LBRACE, + STATE(14988), 1, + sym_tycon, + STATE(15091), 1, + sym_tyvar, + STATE(15092), 1, + sym_longtycon, + STATE(18280), 1, + sym_tyseq, + STATE(18874), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15095), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [884313] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20153), 4, + anon_sym_COLON, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20151), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym__, + anon_sym_COLON_COLON, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [884339] = 5, + ACTIONS(20155), 1, + anon_sym_and, + STATE(13914), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18919), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18917), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [884369] = 5, + ACTIONS(20155), 1, + anon_sym_and, + STATE(13915), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18877), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18873), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [884399] = 5, + ACTIONS(20157), 1, + anon_sym_and, + STATE(13915), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17880), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17875), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [884429] = 4, + ACTIONS(16507), 1, + anon_sym_infix, + ACTIONS(20160), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 15, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [884457] = 14, + ACTIONS(18141), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18143), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18145), 1, + sym__symbolic_ident, + ACTIONS(18147), 1, + anon_sym_LPAREN, + ACTIONS(18149), 1, + anon_sym_LBRACE, + STATE(14797), 1, + sym_tyvar, + STATE(14805), 1, + sym_tycon, + STATE(14806), 1, + sym_longtycon, + STATE(18090), 1, + sym_tyseq, + STATE(18892), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14817), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [884505] = 14, + ACTIONS(17676), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17678), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17680), 1, + sym__symbolic_ident, + ACTIONS(17682), 1, + anon_sym_LPAREN, + ACTIONS(17684), 1, + anon_sym_LBRACE, + STATE(11169), 1, + sym_tyvar, + STATE(11170), 1, + sym_longtycon, + STATE(11516), 1, + sym_tycon, + STATE(18065), 1, + sym_tyseq, + STATE(18754), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12289), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11172), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [884553] = 14, + ACTIONS(17676), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17678), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17680), 1, + sym__symbolic_ident, + ACTIONS(17682), 1, + anon_sym_LPAREN, + ACTIONS(17684), 1, + anon_sym_LBRACE, + STATE(11169), 1, + sym_tyvar, + STATE(11170), 1, + sym_longtycon, + STATE(11516), 1, + sym_tycon, + STATE(18065), 1, + sym_tyseq, + STATE(18754), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11172), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [884601] = 4, + ACTIONS(20162), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16507), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16505), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_DASH_GT, + [884629] = 10, + ACTIONS(17498), 1, + anon_sym_LPAREN, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(20127), 1, + sym_hol_cname_alphanumeric, + STATE(19073), 1, + sym_hol_pat, + STATE(20922), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [884669] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19464), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19466), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [884695] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19468), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19470), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [884721] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12420), 2, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(16501), 15, + sym__alphaAlphaNumeric_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [884747] = 4, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(16462), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16464), 15, + sym__alphaAlphaNumeric_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [884775] = 5, + ACTIONS(18919), 1, + anon_sym_infix, + ACTIONS(20164), 1, + anon_sym_and, + STATE(13927), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18917), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [884805] = 5, + ACTIONS(18877), 1, + anon_sym_infix, + ACTIONS(20164), 1, + anon_sym_and, + STATE(13929), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18873), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [884835] = 14, + ACTIONS(17546), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17548), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17550), 1, + sym__symbolic_ident, + ACTIONS(17552), 1, + anon_sym_LPAREN, + ACTIONS(17554), 1, + anon_sym_LBRACE, + STATE(8752), 1, + sym_tyvar, + STATE(8755), 1, + sym_longtycon, + STATE(8800), 1, + sym_tycon, + STATE(18319), 1, + sym_tyseq, + STATE(19083), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8756), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [884883] = 5, + ACTIONS(17880), 1, + anon_sym_infix, + ACTIONS(20166), 1, + anon_sym_and, + STATE(13929), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17875), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [884913] = 14, + ACTIONS(17992), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17994), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17996), 1, + sym__symbolic_ident, + ACTIONS(17998), 1, + anon_sym_LPAREN, + ACTIONS(18000), 1, + anon_sym_LBRACE, + STATE(15320), 1, + sym_tycon, + STATE(15391), 1, + sym_tyvar, + STATE(15394), 1, + sym_longtycon, + STATE(18517), 1, + sym_tyseq, + STATE(19250), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15399), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [884961] = 14, + ACTIONS(18269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18271), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18273), 1, + sym__symbolic_ident, + ACTIONS(18275), 1, + anon_sym_LPAREN, + ACTIONS(18277), 1, + anon_sym_LBRACE, + STATE(9368), 1, + sym_tycon, + STATE(9381), 1, + sym_tyvar, + STATE(9417), 1, + sym_longtycon, + STATE(18119), 1, + sym_tyseq, + STATE(19137), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9949), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9420), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885009] = 14, + ACTIONS(18269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18271), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18273), 1, + sym__symbolic_ident, + ACTIONS(18275), 1, + anon_sym_LPAREN, + ACTIONS(18277), 1, + anon_sym_LBRACE, + STATE(9368), 1, + sym_tycon, + STATE(9381), 1, + sym_tyvar, + STATE(9417), 1, + sym_longtycon, + STATE(18119), 1, + sym_tyseq, + STATE(19137), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9420), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885057] = 5, + ACTIONS(20169), 1, + anon_sym_and, + STATE(13696), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17305), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17303), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [885087] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19472), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19474), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [885113] = 14, + ACTIONS(18774), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18776), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18778), 1, + sym__symbolic_ident, + ACTIONS(18780), 1, + anon_sym_LPAREN, + ACTIONS(18782), 1, + anon_sym_LBRACE, + STATE(15688), 1, + sym_tyvar, + STATE(15726), 1, + sym_tycon, + STATE(15745), 1, + sym_longtycon, + STATE(17974), 1, + sym_tyseq, + STATE(19214), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16656), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15746), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885161] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19480), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19482), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [885187] = 14, + ACTIONS(18075), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18077), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18079), 1, + sym__symbolic_ident, + ACTIONS(18081), 1, + anon_sym_LPAREN, + ACTIONS(18083), 1, + anon_sym_LBRACE, + STATE(10342), 1, + sym_tyvar, + STATE(10343), 1, + sym_longtycon, + STATE(10619), 1, + sym_tycon, + STATE(18392), 1, + sym_tyseq, + STATE(18977), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11446), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10344), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885235] = 14, + ACTIONS(18075), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18077), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18079), 1, + sym__symbolic_ident, + ACTIONS(18081), 1, + anon_sym_LPAREN, + ACTIONS(18083), 1, + anon_sym_LBRACE, + STATE(10342), 1, + sym_tyvar, + STATE(10343), 1, + sym_longtycon, + STATE(10619), 1, + sym_tycon, + STATE(18392), 1, + sym_tyseq, + STATE(18977), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10344), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885283] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19404), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19402), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [885309] = 14, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(20352), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885357] = 14, + ACTIONS(18225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18227), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18229), 1, + sym__symbolic_ident, + ACTIONS(18231), 1, + anon_sym_LPAREN, + ACTIONS(18233), 1, + anon_sym_LBRACE, + STATE(16710), 1, + sym_tyvar, + STATE(16719), 1, + sym_longtycon, + STATE(17062), 1, + sym_tycon, + STATE(18417), 1, + sym_tyseq, + STATE(18965), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17921), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16720), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885405] = 14, + ACTIONS(18225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18227), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18229), 1, + sym__symbolic_ident, + ACTIONS(18231), 1, + anon_sym_LPAREN, + ACTIONS(18233), 1, + anon_sym_LBRACE, + STATE(16710), 1, + sym_tyvar, + STATE(16719), 1, + sym_longtycon, + STATE(17062), 1, + sym_tycon, + STATE(18417), 1, + sym_tyseq, + STATE(18965), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16720), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885453] = 14, + ACTIONS(18249), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18251), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18253), 1, + sym__symbolic_ident, + ACTIONS(18255), 1, + anon_sym_LPAREN, + ACTIONS(18257), 1, + anon_sym_LBRACE, + STATE(14230), 1, + sym_tycon, + STATE(14264), 1, + sym_tyvar, + STATE(14302), 1, + sym_longtycon, + STATE(18116), 1, + sym_tyseq, + STATE(19027), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14371), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14228), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885501] = 14, + ACTIONS(18249), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18251), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18253), 1, + sym__symbolic_ident, + ACTIONS(18255), 1, + anon_sym_LPAREN, + ACTIONS(18257), 1, + anon_sym_LBRACE, + STATE(14230), 1, + sym_tycon, + STATE(14264), 1, + sym_tyvar, + STATE(14302), 1, + sym_longtycon, + STATE(18116), 1, + sym_tyseq, + STATE(19027), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14228), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885549] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19456), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19458), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [885575] = 5, + ACTIONS(18919), 1, + anon_sym_infix, + ACTIONS(20171), 1, + anon_sym_and, + STATE(13947), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18917), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [885605] = 5, + ACTIONS(18877), 1, + anon_sym_infix, + ACTIONS(20171), 1, + anon_sym_and, + STATE(13949), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18873), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [885635] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19572), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19574), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [885661] = 5, + ACTIONS(17880), 1, + anon_sym_infix, + ACTIONS(20173), 1, + anon_sym_and, + STATE(13949), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17875), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [885691] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19583), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19585), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [885717] = 14, + ACTIONS(17646), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17648), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17650), 1, + sym__symbolic_ident, + ACTIONS(17652), 1, + anon_sym_LPAREN, + ACTIONS(17654), 1, + anon_sym_LBRACE, + STATE(13799), 1, + sym_tycon, + STATE(13980), 1, + sym_tyvar, + STATE(13981), 1, + sym_longtycon, + STATE(18246), 1, + sym_tyseq, + STATE(18889), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14194), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13982), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885765] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13066), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + ACTIONS(13064), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [885791] = 14, + ACTIONS(17646), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17648), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17650), 1, + sym__symbolic_ident, + ACTIONS(17652), 1, + anon_sym_LPAREN, + ACTIONS(17654), 1, + anon_sym_LBRACE, + STATE(13799), 1, + sym_tycon, + STATE(13980), 1, + sym_tyvar, + STATE(13981), 1, + sym_longtycon, + STATE(18246), 1, + sym_tyseq, + STATE(18889), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13982), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885839] = 14, + ACTIONS(17686), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17688), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17690), 1, + sym__symbolic_ident, + ACTIONS(17692), 1, + anon_sym_LPAREN, + ACTIONS(17694), 1, + anon_sym_LBRACE, + STATE(10696), 1, + sym_tyvar, + STATE(10698), 1, + sym_longtycon, + STATE(10877), 1, + sym_tycon, + STATE(18123), 1, + sym_tyseq, + STATE(18747), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11145), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10700), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885887] = 14, + ACTIONS(17686), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17688), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17690), 1, + sym__symbolic_ident, + ACTIONS(17692), 1, + anon_sym_LPAREN, + ACTIONS(17694), 1, + anon_sym_LBRACE, + STATE(10696), 1, + sym_tyvar, + STATE(10698), 1, + sym_longtycon, + STATE(10877), 1, + sym_tycon, + STATE(18123), 1, + sym_tyseq, + STATE(18747), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10700), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [885935] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [885961] = 14, + ACTIONS(17706), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17708), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17710), 1, + sym__symbolic_ident, + ACTIONS(17712), 1, + anon_sym_LPAREN, + ACTIONS(17714), 1, + anon_sym_LBRACE, + STATE(15931), 1, + sym_tyvar, + STATE(16202), 1, + sym_tycon, + STATE(16213), 1, + sym_longtycon, + STATE(18663), 1, + sym_tyseq, + STATE(19060), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16162), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [886009] = 14, + ACTIONS(17419), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17421), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17423), 1, + sym__symbolic_ident, + ACTIONS(17425), 1, + anon_sym_LPAREN, + ACTIONS(17427), 1, + anon_sym_LBRACE, + STATE(11097), 1, + sym_tyvar, + STATE(11099), 1, + sym_longtycon, + STATE(11318), 1, + sym_tycon, + STATE(18091), 1, + sym_tyseq, + STATE(18891), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12262), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11100), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [886057] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19613), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19615), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [886083] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19617), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19619), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [886109] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19492), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19494), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [886135] = 14, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17568), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + ACTIONS(17572), 1, + anon_sym_LPAREN, + ACTIONS(17574), 1, + anon_sym_LBRACE, + STATE(18398), 1, + sym_tyseq, + STATE(18845), 1, + sym_tyvar, + STATE(18846), 1, + sym_tycon, + STATE(18847), 1, + sym_longtycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8200), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18855), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [886183] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19647), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19649), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [886209] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19651), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19653), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [886235] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19496), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19498), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [886261] = 14, + ACTIONS(17526), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17528), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17530), 1, + sym__symbolic_ident, + ACTIONS(17532), 1, + anon_sym_LPAREN, + ACTIONS(17534), 1, + anon_sym_LBRACE, + STATE(15486), 1, + sym_tycon, + STATE(16138), 1, + sym_tyvar, + STATE(16141), 1, + sym_longtycon, + STATE(18272), 1, + sym_tyseq, + STATE(19184), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16433), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16142), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [886309] = 14, + ACTIONS(18085), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18087), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18089), 1, + sym__symbolic_ident, + ACTIONS(18091), 1, + anon_sym_LPAREN, + ACTIONS(18093), 1, + anon_sym_LBRACE, + STATE(9544), 1, + sym_tyvar, + STATE(9545), 1, + sym_longtycon, + STATE(9794), 1, + sym_tycon, + STATE(18489), 1, + sym_tyseq, + STATE(19097), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10369), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9550), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [886357] = 14, + ACTIONS(18085), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18087), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18089), 1, + sym__symbolic_ident, + ACTIONS(18091), 1, + anon_sym_LPAREN, + ACTIONS(18093), 1, + anon_sym_LBRACE, + STATE(9544), 1, + sym_tyvar, + STATE(9545), 1, + sym_longtycon, + STATE(9794), 1, + sym_tycon, + STATE(18489), 1, + sym_tyseq, + STATE(19097), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9550), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [886405] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19679), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19681), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [886431] = 14, + ACTIONS(18774), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18776), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18778), 1, + sym__symbolic_ident, + ACTIONS(18780), 1, + anon_sym_LPAREN, + ACTIONS(18782), 1, + anon_sym_LBRACE, + STATE(15688), 1, + sym_tyvar, + STATE(15726), 1, + sym_tycon, + STATE(15745), 1, + sym_longtycon, + STATE(17974), 1, + sym_tyseq, + STATE(19214), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15746), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [886479] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19500), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19502), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [886505] = 14, + ACTIONS(18505), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18507), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18509), 1, + sym__symbolic_ident, + ACTIONS(18511), 1, + anon_sym_LPAREN, + ACTIONS(18513), 1, + anon_sym_LBRACE, + STATE(18107), 1, + sym_tycon, + STATE(18244), 1, + sym_tyvar, + STATE(18253), 1, + sym_longtycon, + STATE(18522), 1, + sym_tyseq, + STATE(19182), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(19216), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18279), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [886553] = 14, + ACTIONS(18505), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18507), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18509), 1, + sym__symbolic_ident, + ACTIONS(18511), 1, + anon_sym_LPAREN, + ACTIONS(18513), 1, + anon_sym_LBRACE, + STATE(18107), 1, + sym_tycon, + STATE(18244), 1, + sym_tyvar, + STATE(18253), 1, + sym_longtycon, + STATE(18522), 1, + sym_tyseq, + STATE(19182), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(21139), 2, + sym__paren_ty, + sym_paren_ty, + STATE(18279), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [886601] = 10, + ACTIONS(17498), 1, + anon_sym_LPAREN, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(20127), 1, + sym_hol_cname_alphanumeric, + STATE(14143), 1, + sym__hol_pat, + STATE(19073), 1, + sym_hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [886641] = 14, + ACTIONS(17556), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17558), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17560), 1, + sym__symbolic_ident, + ACTIONS(17562), 1, + anon_sym_LPAREN, + ACTIONS(17564), 1, + anon_sym_LBRACE, + STATE(8746), 1, + sym_tycon, + STATE(8799), 1, + sym_tyvar, + STATE(8801), 1, + sym_longtycon, + STATE(18531), 1, + sym_tyseq, + STATE(18766), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8860), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8743), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [886689] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20178), 4, + anon_sym_COLON, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20176), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym__, + anon_sym_COLON_COLON, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [886715] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19528), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19530), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [886741] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17502), 4, + anon_sym_COLON, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(17500), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_EQ_GT, + anon_sym__, + anon_sym_COLON_COLON, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [886767] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19599), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19597), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [886793] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [886819] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [886845] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 13, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [886873] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [886899] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [886925] = 5, + ACTIONS(17967), 1, + anon_sym_infix, + ACTIONS(20180), 1, + anon_sym_and, + STATE(13985), 1, + aux_sym__strbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17962), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [886955] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 13, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [886983] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [887009] = 14, + ACTIONS(17882), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17884), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17886), 1, + sym__symbolic_ident, + ACTIONS(17888), 1, + anon_sym_LPAREN, + ACTIONS(17890), 1, + anon_sym_LBRACE, + STATE(14990), 1, + sym_tycon, + STATE(15093), 1, + sym_tyvar, + STATE(15094), 1, + sym_longtycon, + STATE(18405), 1, + sym_tyseq, + STATE(18815), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15141), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15096), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [887057] = 14, + ACTIONS(17882), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17884), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17886), 1, + sym__symbolic_ident, + ACTIONS(17888), 1, + anon_sym_LPAREN, + ACTIONS(17890), 1, + anon_sym_LBRACE, + STATE(14990), 1, + sym_tycon, + STATE(15093), 1, + sym_tyvar, + STATE(15094), 1, + sym_longtycon, + STATE(18405), 1, + sym_tyseq, + STATE(18815), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15096), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [887105] = 14, + ACTIONS(17526), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17528), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17530), 1, + sym__symbolic_ident, + ACTIONS(17532), 1, + anon_sym_LPAREN, + ACTIONS(17534), 1, + anon_sym_LBRACE, + STATE(15486), 1, + sym_tycon, + STATE(16138), 1, + sym_tyvar, + STATE(16141), 1, + sym_longtycon, + STATE(18272), 1, + sym_tyseq, + STATE(19184), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16142), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [887153] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19518), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19516), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [887179] = 14, + ACTIONS(18853), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18855), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18857), 1, + sym__symbolic_ident, + ACTIONS(18859), 1, + anon_sym_LPAREN, + ACTIONS(18861), 1, + anon_sym_LBRACE, + STATE(11298), 1, + sym_tyvar, + STATE(11356), 1, + sym_tycon, + STATE(11408), 1, + sym_longtycon, + STATE(18560), 1, + sym_tyseq, + STATE(18997), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12208), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11414), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [887227] = 10, + ACTIONS(17498), 1, + anon_sym_LPAREN, + ACTIONS(17504), 1, + anon_sym_LBRACK, + ACTIONS(17506), 1, + anon_sym__, + ACTIONS(20183), 1, + sym_hol_cname_alphanumeric, + STATE(19104), 1, + sym_hol_pat, + STATE(21223), 1, + sym__hol_pat, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17508), 2, + sym_hol_true, + sym_hol_false, + ACTIONS(17510), 4, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + STATE(13978), 5, + sym_hol_pcons, + sym_hol_ptuple, + sym_hol_plist, + sym_hol_wildcard, + sym__hol_literal, + [887267] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [887293] = 14, + ACTIONS(17912), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17914), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17916), 1, + sym__symbolic_ident, + ACTIONS(17918), 1, + anon_sym_LPAREN, + ACTIONS(17920), 1, + anon_sym_LBRACE, + STATE(14246), 1, + sym_longtycon, + STATE(14259), 1, + sym_tycon, + STATE(14271), 1, + sym_tyvar, + STATE(18567), 1, + sym_tyseq, + STATE(18934), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14360), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14242), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [887341] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [887367] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [887393] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [887419] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [887445] = 14, + ACTIONS(17912), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17914), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17916), 1, + sym__symbolic_ident, + ACTIONS(17918), 1, + anon_sym_LPAREN, + ACTIONS(17920), 1, + anon_sym_LBRACE, + STATE(14246), 1, + sym_longtycon, + STATE(14259), 1, + sym_tycon, + STATE(14271), 1, + sym_tyvar, + STATE(18567), 1, + sym_tyseq, + STATE(18934), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(14242), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [887493] = 14, + ACTIONS(17379), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17381), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17383), 1, + sym__symbolic_ident, + ACTIONS(17385), 1, + anon_sym_LPAREN, + ACTIONS(17387), 1, + anon_sym_LBRACE, + STATE(11043), 1, + sym_longtycon, + STATE(11306), 1, + sym_tycon, + STATE(11785), 1, + sym_tyvar, + STATE(18573), 1, + sym_tyseq, + STATE(19241), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12252), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11049), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [887541] = 14, + ACTIONS(17379), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17381), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17383), 1, + sym__symbolic_ident, + ACTIONS(17385), 1, + anon_sym_LPAREN, + ACTIONS(17387), 1, + anon_sym_LBRACE, + STATE(11043), 1, + sym_longtycon, + STATE(11306), 1, + sym_tycon, + STATE(11785), 1, + sym_tyvar, + STATE(18573), 1, + sym_tyseq, + STATE(19241), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11049), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [887589] = 14, + ACTIONS(18853), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18855), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18857), 1, + sym__symbolic_ident, + ACTIONS(18859), 1, + anon_sym_LPAREN, + ACTIONS(18861), 1, + anon_sym_LBRACE, + STATE(11298), 1, + sym_tyvar, + STATE(11356), 1, + sym_tycon, + STATE(11408), 1, + sym_longtycon, + STATE(18560), 1, + sym_tyseq, + STATE(18997), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11414), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [887637] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [887663] = 5, + ACTIONS(20125), 1, + anon_sym_PIPE, + STATE(13820), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17137), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17133), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [887693] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19299), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19297), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [887719] = 5, + ACTIONS(20169), 1, + anon_sym_and, + STATE(13933), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17271), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17267), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [887749] = 14, + ACTIONS(18489), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18491), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18493), 1, + sym__symbolic_ident, + ACTIONS(18495), 1, + anon_sym_LPAREN, + ACTIONS(18497), 1, + anon_sym_LBRACE, + STATE(16653), 1, + sym_tyvar, + STATE(16654), 1, + sym_tycon, + STATE(16655), 1, + sym_longtycon, + STATE(18565), 1, + sym_tyseq, + STATE(19090), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17390), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16657), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [887797] = 5, + ACTIONS(20008), 1, + anon_sym_EQ, + ACTIONS(20185), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17170), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17164), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [887827] = 14, + ACTIONS(17556), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17558), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17560), 1, + sym__symbolic_ident, + ACTIONS(17562), 1, + anon_sym_LPAREN, + ACTIONS(17564), 1, + anon_sym_LBRACE, + STATE(8746), 1, + sym_tycon, + STATE(8799), 1, + sym_tyvar, + STATE(8801), 1, + sym_longtycon, + STATE(18531), 1, + sym_tyseq, + STATE(18766), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8743), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [887875] = 5, + ACTIONS(20187), 1, + anon_sym_and, + STATE(14013), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18119), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18115), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [887905] = 5, + ACTIONS(20189), 1, + anon_sym_and, + STATE(14014), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18708), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18704), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [887935] = 5, + ACTIONS(20187), 1, + anon_sym_and, + STATE(14015), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18501), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18499), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [887965] = 5, + ACTIONS(20189), 1, + anon_sym_and, + STATE(14016), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18770), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18768), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [887995] = 5, + ACTIONS(20191), 1, + anon_sym_and, + STATE(14015), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17793), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17788), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888025] = 5, + ACTIONS(20194), 1, + anon_sym_and, + STATE(14016), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16669), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16667), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888055] = 5, + ACTIONS(18119), 1, + anon_sym_infix, + ACTIONS(20197), 1, + anon_sym_and, + STATE(14021), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18115), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888085] = 5, + ACTIONS(18708), 1, + anon_sym_infix, + ACTIONS(20199), 1, + anon_sym_and, + STATE(14022), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18704), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888115] = 14, + ACTIONS(18095), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18097), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18099), 1, + sym__symbolic_ident, + ACTIONS(18101), 1, + anon_sym_LPAREN, + ACTIONS(18103), 1, + anon_sym_LBRACE, + STATE(9752), 1, + sym_tyvar, + STATE(9753), 1, + sym_longtycon, + STATE(9872), 1, + sym_tycon, + STATE(18587), 1, + sym_tyseq, + STATE(19159), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10375), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [888163] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 3, + sym__symbolic_ident, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(12418), 14, + sym__alphaAlphaNumeric_ident, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888189] = 5, + ACTIONS(18501), 1, + anon_sym_infix, + ACTIONS(20197), 1, + anon_sym_and, + STATE(14025), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18499), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888219] = 5, + ACTIONS(18770), 1, + anon_sym_infix, + ACTIONS(20199), 1, + anon_sym_and, + STATE(14026), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18768), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888249] = 14, + ACTIONS(18095), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18097), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18099), 1, + sym__symbolic_ident, + ACTIONS(18101), 1, + anon_sym_LPAREN, + ACTIONS(18103), 1, + anon_sym_LBRACE, + STATE(9752), 1, + sym_tyvar, + STATE(9753), 1, + sym_longtycon, + STATE(9872), 1, + sym_tycon, + STATE(18587), 1, + sym_tyseq, + STATE(19159), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9754), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [888297] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19637), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19635), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888323] = 5, + ACTIONS(17793), 1, + anon_sym_infix, + ACTIONS(20201), 1, + anon_sym_and, + STATE(14025), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17788), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888353] = 5, + ACTIONS(16669), 1, + anon_sym_infix, + ACTIONS(20204), 1, + anon_sym_and, + STATE(14026), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16667), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888383] = 5, + ACTIONS(17271), 1, + anon_sym_infix, + ACTIONS(20207), 1, + anon_sym_and, + STATE(14029), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17267), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [888413] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12420), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_SEMI, + ACTIONS(16501), 14, + sym__alphaAlphaNumeric_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [888439] = 5, + ACTIONS(17305), 1, + anon_sym_infix, + ACTIONS(20207), 1, + anon_sym_and, + STATE(14031), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17303), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [888469] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19231), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19229), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888495] = 5, + ACTIONS(17187), 1, + anon_sym_infix, + ACTIONS(20209), 1, + anon_sym_and, + STATE(14031), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17185), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [888525] = 14, + ACTIONS(17696), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17698), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17700), 1, + sym__symbolic_ident, + ACTIONS(17702), 1, + anon_sym_LPAREN, + ACTIONS(17704), 1, + anon_sym_LBRACE, + STATE(10796), 1, + sym_tyvar, + STATE(10797), 1, + sym_longtycon, + STATE(10974), 1, + sym_tycon, + STATE(18228), 1, + sym_tyseq, + STATE(18710), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11167), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10798), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [888573] = 14, + ACTIONS(17696), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17698), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17700), 1, + sym__symbolic_ident, + ACTIONS(17702), 1, + anon_sym_LPAREN, + ACTIONS(17704), 1, + anon_sym_LBRACE, + STATE(10796), 1, + sym_tyvar, + STATE(10797), 1, + sym_longtycon, + STATE(10974), 1, + sym_tycon, + STATE(18228), 1, + sym_tyseq, + STATE(18710), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10798), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [888621] = 14, + ACTIONS(17922), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17924), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17926), 1, + sym__symbolic_ident, + ACTIONS(17928), 1, + anon_sym_LPAREN, + ACTIONS(17930), 1, + anon_sym_LBRACE, + STATE(10390), 1, + sym_tyvar, + STATE(10391), 1, + sym_longtycon, + STATE(10629), 1, + sym_tycon, + STATE(18609), 1, + sym_tyseq, + STATE(18894), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11357), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10392), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [888669] = 5, + ACTIONS(18119), 1, + anon_sym_infix, + ACTIONS(20212), 1, + anon_sym_and, + STATE(14040), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18115), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888699] = 5, + ACTIONS(18708), 1, + anon_sym_infix, + ACTIONS(20214), 1, + anon_sym_and, + STATE(14041), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18704), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888729] = 5, + ACTIONS(20012), 1, + anon_sym_EQ, + ACTIONS(20216), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17118), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17112), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [888759] = 14, + ACTIONS(17922), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17924), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17926), 1, + sym__symbolic_ident, + ACTIONS(17928), 1, + anon_sym_LPAREN, + ACTIONS(17930), 1, + anon_sym_LBRACE, + STATE(10390), 1, + sym_tyvar, + STATE(10391), 1, + sym_longtycon, + STATE(10629), 1, + sym_tycon, + STATE(18609), 1, + sym_tyseq, + STATE(18894), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10392), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [888807] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [888833] = 5, + ACTIONS(18501), 1, + anon_sym_infix, + ACTIONS(20212), 1, + anon_sym_and, + STATE(14044), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18499), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888863] = 5, + ACTIONS(18770), 1, + anon_sym_infix, + ACTIONS(20214), 1, + anon_sym_and, + STATE(14045), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18768), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888893] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [888919] = 14, + ACTIONS(17706), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17708), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17710), 1, + sym__symbolic_ident, + ACTIONS(17712), 1, + anon_sym_LPAREN, + ACTIONS(17714), 1, + anon_sym_LBRACE, + STATE(15931), 1, + sym_tyvar, + STATE(16202), 1, + sym_tycon, + STATE(16213), 1, + sym_longtycon, + STATE(18663), 1, + sym_tyseq, + STATE(19060), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16665), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16162), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [888967] = 5, + ACTIONS(17793), 1, + anon_sym_infix, + ACTIONS(20218), 1, + anon_sym_and, + STATE(14044), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17788), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [888997] = 5, + ACTIONS(16669), 1, + anon_sym_infix, + ACTIONS(20221), 1, + anon_sym_and, + STATE(14045), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16667), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [889027] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19570), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19568), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [889053] = 14, + ACTIONS(18515), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18517), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18519), 1, + sym__symbolic_ident, + ACTIONS(18521), 1, + anon_sym_LPAREN, + ACTIONS(18523), 1, + anon_sym_LBRACE, + STATE(13028), 1, + sym_tycon, + STATE(13257), 1, + sym_tyvar, + STATE(13277), 1, + sym_longtycon, + STATE(18633), 1, + sym_tyseq, + STATE(18829), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13518), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13281), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889101] = 14, + ACTIONS(18515), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18517), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18519), 1, + sym__symbolic_ident, + ACTIONS(18521), 1, + anon_sym_LPAREN, + ACTIONS(18523), 1, + anon_sym_LBRACE, + STATE(13028), 1, + sym_tycon, + STATE(13257), 1, + sym_tyvar, + STATE(13277), 1, + sym_longtycon, + STATE(18633), 1, + sym_tyseq, + STATE(18829), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9589), 2, + sym__paren_ty, + sym_paren_ty, + STATE(13281), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889149] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19603), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19601), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [889175] = 14, + ACTIONS(18595), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18597), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18599), 1, + sym__symbolic_ident, + ACTIONS(18601), 1, + anon_sym_LPAREN, + ACTIONS(18603), 1, + anon_sym_LBRACE, + STATE(8908), 1, + sym_tycon, + STATE(8930), 1, + sym_longtycon, + STATE(8934), 1, + sym_tyvar, + STATE(17990), 1, + sym_tyseq, + STATE(19081), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(8834), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889223] = 14, + ACTIONS(18489), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18491), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18493), 1, + sym__symbolic_ident, + ACTIONS(18495), 1, + anon_sym_LPAREN, + ACTIONS(18497), 1, + anon_sym_LBRACE, + STATE(16653), 1, + sym_tyvar, + STATE(16654), 1, + sym_tycon, + STATE(16655), 1, + sym_longtycon, + STATE(18565), 1, + sym_tyseq, + STATE(19090), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(16657), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889271] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(20224), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [889299] = 14, + ACTIONS(17756), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17758), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17760), 1, + sym__symbolic_ident, + ACTIONS(17762), 1, + anon_sym_LPAREN, + ACTIONS(17764), 1, + anon_sym_LBRACE, + STATE(15533), 1, + sym_tyvar, + STATE(15549), 1, + sym_tycon, + STATE(15591), 1, + sym_longtycon, + STATE(18202), 1, + sym_tyseq, + STATE(19176), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16463), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15619), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889347] = 5, + ACTIONS(20110), 1, + anon_sym_and, + STATE(13720), 1, + aux_sym__strbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17433), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17429), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [889377] = 14, + ACTIONS(18105), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18107), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18109), 1, + sym__symbolic_ident, + ACTIONS(18111), 1, + anon_sym_LPAREN, + ACTIONS(18113), 1, + anon_sym_LBRACE, + STATE(9787), 1, + sym_tyvar, + STATE(9805), 1, + sym_longtycon, + STATE(9941), 1, + sym_tycon, + STATE(17970), 1, + sym_tyseq, + STATE(19195), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(10379), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9806), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889425] = 14, + ACTIONS(18105), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18107), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18109), 1, + sym__symbolic_ident, + ACTIONS(18111), 1, + anon_sym_LPAREN, + ACTIONS(18113), 1, + anon_sym_LBRACE, + STATE(9787), 1, + sym_tyvar, + STATE(9805), 1, + sym_longtycon, + STATE(9941), 1, + sym_tycon, + STATE(17970), 1, + sym_tyseq, + STATE(19195), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(9806), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889473] = 14, + ACTIONS(17932), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17934), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17936), 1, + sym__symbolic_ident, + ACTIONS(17938), 1, + anon_sym_LPAREN, + ACTIONS(17940), 1, + anon_sym_LBRACE, + STATE(11409), 1, + sym_tycon, + STATE(11738), 1, + sym_tyvar, + STATE(11741), 1, + sym_longtycon, + STATE(18556), 1, + sym_tyseq, + STATE(18959), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12347), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11750), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889521] = 14, + ACTIONS(17932), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17934), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17936), 1, + sym__symbolic_ident, + ACTIONS(17938), 1, + anon_sym_LPAREN, + ACTIONS(17940), 1, + anon_sym_LBRACE, + STATE(11409), 1, + sym_tycon, + STATE(11738), 1, + sym_tyvar, + STATE(11741), 1, + sym_longtycon, + STATE(18556), 1, + sym_tyseq, + STATE(18959), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11750), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889569] = 14, + ACTIONS(18671), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18673), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18675), 1, + sym__symbolic_ident, + ACTIONS(18677), 1, + anon_sym_LPAREN, + ACTIONS(18679), 1, + anon_sym_LBRACE, + STATE(12024), 1, + sym_tyvar, + STATE(12025), 1, + sym_longtycon, + STATE(12046), 1, + sym_tycon, + STATE(18363), 1, + sym_tyseq, + STATE(18764), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12684), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12026), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889617] = 14, + ACTIONS(18671), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18673), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18675), 1, + sym__symbolic_ident, + ACTIONS(18677), 1, + anon_sym_LPAREN, + ACTIONS(18679), 1, + anon_sym_LBRACE, + STATE(12024), 1, + sym_tyvar, + STATE(12025), 1, + sym_longtycon, + STATE(12046), 1, + sym_tycon, + STATE(18363), 1, + sym_tyseq, + STATE(18764), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9589), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12026), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889665] = 14, + ACTIONS(17756), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17758), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17760), 1, + sym__symbolic_ident, + ACTIONS(17762), 1, + anon_sym_LPAREN, + ACTIONS(17764), 1, + anon_sym_LBRACE, + STATE(15533), 1, + sym_tyvar, + STATE(15549), 1, + sym_tycon, + STATE(15591), 1, + sym_longtycon, + STATE(18202), 1, + sym_tyseq, + STATE(19176), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15619), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889713] = 4, + ACTIONS(16092), 1, + anon_sym_SEMI, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16096), 15, + sym__alphaAlphaNumeric_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [889741] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19621), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19623), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [889767] = 14, + ACTIONS(17942), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17944), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17946), 1, + sym__symbolic_ident, + ACTIONS(17948), 1, + anon_sym_LPAREN, + ACTIONS(17950), 1, + anon_sym_LBRACE, + STATE(11200), 1, + sym_tyvar, + STATE(11226), 1, + sym_longtycon, + STATE(11769), 1, + sym_tycon, + STATE(18036), 1, + sym_tyseq, + STATE(18760), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12349), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11227), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889815] = 14, + ACTIONS(17942), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17944), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17946), 1, + sym__symbolic_ident, + ACTIONS(17948), 1, + anon_sym_LPAREN, + ACTIONS(17950), 1, + anon_sym_LBRACE, + STATE(11200), 1, + sym_tyvar, + STATE(11226), 1, + sym_longtycon, + STATE(11769), 1, + sym_tycon, + STATE(18036), 1, + sym_tyseq, + STATE(18760), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11227), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [889863] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19625), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19627), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [889889] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19631), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19633), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [889915] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19639), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19641), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [889941] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [889967] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19643), 8, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + ACTIONS(19645), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [889993] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [890019] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 14, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [890047] = 14, + ACTIONS(17474), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17476), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17478), 1, + sym__symbolic_ident, + ACTIONS(17480), 1, + anon_sym_LPAREN, + ACTIONS(17482), 1, + anon_sym_LBRACE, + STATE(12097), 1, + sym_tyvar, + STATE(12098), 1, + sym_longtycon, + STATE(12141), 1, + sym_tycon, + STATE(18549), 1, + sym_tyseq, + STATE(18947), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12862), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12099), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890095] = 14, + ACTIONS(18351), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18353), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18355), 1, + sym__symbolic_ident, + ACTIONS(18357), 1, + anon_sym_LPAREN, + ACTIONS(18359), 1, + anon_sym_LBRACE, + STATE(15165), 1, + sym_tyvar, + STATE(15183), 1, + sym_tycon, + STATE(15218), 1, + sym_longtycon, + STATE(18366), 1, + sym_tyseq, + STATE(19224), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16125), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15236), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890143] = 14, + ACTIONS(17952), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17954), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17956), 1, + sym__symbolic_ident, + ACTIONS(17958), 1, + anon_sym_LPAREN, + ACTIONS(17960), 1, + anon_sym_LBRACE, + STATE(10323), 1, + sym_tycon, + STATE(10686), 1, + sym_tyvar, + STATE(10727), 1, + sym_longtycon, + STATE(18574), 1, + sym_tyseq, + STATE(19172), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11412), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10760), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890191] = 14, + ACTIONS(17952), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17954), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17956), 1, + sym__symbolic_ident, + ACTIONS(17958), 1, + anon_sym_LPAREN, + ACTIONS(17960), 1, + anon_sym_LBRACE, + STATE(10323), 1, + sym_tycon, + STATE(10686), 1, + sym_tyvar, + STATE(10727), 1, + sym_longtycon, + STATE(18574), 1, + sym_tyseq, + STATE(19172), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(10760), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890239] = 14, + ACTIONS(17536), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17538), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17540), 1, + sym__symbolic_ident, + ACTIONS(17542), 1, + anon_sym_LPAREN, + ACTIONS(17544), 1, + anon_sym_LBRACE, + STATE(15770), 1, + sym_tycon, + STATE(15963), 1, + sym_tyvar, + STATE(16342), 1, + sym_longtycon, + STATE(18579), 1, + sym_tyseq, + STATE(18730), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16439), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15888), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890287] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12420), 2, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(16501), 15, + sym__alphaAlphaNumeric_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [890313] = 4, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(16462), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16464), 15, + sym__alphaAlphaNumeric_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [890341] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [890367] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [890393] = 14, + ACTIONS(18161), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18163), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18165), 1, + sym__symbolic_ident, + ACTIONS(18167), 1, + anon_sym_LPAREN, + ACTIONS(18169), 1, + anon_sym_LBRACE, + STATE(17223), 1, + sym_tyvar, + STATE(17224), 1, + sym_tycon, + STATE(17226), 1, + sym_longtycon, + STATE(18306), 1, + sym_tyseq, + STATE(19085), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17809), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17228), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890441] = 14, + ACTIONS(17536), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17538), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17540), 1, + sym__symbolic_ident, + ACTIONS(17542), 1, + anon_sym_LPAREN, + ACTIONS(17544), 1, + anon_sym_LBRACE, + STATE(15770), 1, + sym_tycon, + STATE(15963), 1, + sym_tyvar, + STATE(16342), 1, + sym_longtycon, + STATE(18579), 1, + sym_tyseq, + STATE(18730), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15888), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890489] = 14, + ACTIONS(17474), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17476), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17478), 1, + sym__symbolic_ident, + ACTIONS(17480), 1, + anon_sym_LPAREN, + ACTIONS(17482), 1, + anon_sym_LBRACE, + STATE(12097), 1, + sym_tyvar, + STATE(12098), 1, + sym_longtycon, + STATE(12141), 1, + sym_tycon, + STATE(18549), 1, + sym_tyseq, + STATE(18947), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(12099), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890537] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19522), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19520), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [890563] = 14, + ACTIONS(17982), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17984), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17986), 1, + sym__symbolic_ident, + ACTIONS(17988), 1, + anon_sym_LPAREN, + ACTIONS(17990), 1, + anon_sym_LBRACE, + STATE(15268), 1, + sym_tyvar, + STATE(15270), 1, + sym_longtycon, + STATE(15305), 1, + sym_tycon, + STATE(18112), 1, + sym_tyseq, + STATE(18714), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15901), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15271), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890611] = 14, + ACTIONS(17982), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17984), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17986), 1, + sym__symbolic_ident, + ACTIONS(17988), 1, + anon_sym_LPAREN, + ACTIONS(17990), 1, + anon_sym_LBRACE, + STATE(15268), 1, + sym_tyvar, + STATE(15270), 1, + sym_longtycon, + STATE(15305), 1, + sym_tycon, + STATE(18112), 1, + sym_tyseq, + STATE(18714), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15271), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890659] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [890685] = 14, + ACTIONS(17716), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17718), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17720), 1, + sym__symbolic_ident, + ACTIONS(17722), 1, + anon_sym_LPAREN, + ACTIONS(17724), 1, + anon_sym_LBRACE, + STATE(10171), 1, + sym_tycon, + STATE(10971), 1, + sym_tyvar, + STATE(10975), 1, + sym_longtycon, + STATE(18499), 1, + sym_tyseq, + STATE(18870), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(11193), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11012), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890733] = 14, + ACTIONS(18921), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18923), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18925), 1, + sym__symbolic_ident, + ACTIONS(18927), 1, + anon_sym_LPAREN, + ACTIONS(18929), 1, + anon_sym_LBRACE, + STATE(15266), 1, + sym_tycon, + STATE(15338), 1, + sym_tyvar, + STATE(15373), 1, + sym_longtycon, + STATE(18520), 1, + sym_tyseq, + STATE(19151), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16230), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15381), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890781] = 5, + ACTIONS(20226), 1, + anon_sym_and, + STATE(14092), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18465), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18461), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [890811] = 5, + ACTIONS(20226), 1, + anon_sym_and, + STATE(14095), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18702), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18700), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [890841] = 5, + ACTIONS(20125), 1, + anon_sym_PIPE, + STATE(14108), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17152), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17150), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [890871] = 14, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17578), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + ACTIONS(17582), 1, + anon_sym_LPAREN, + ACTIONS(17584), 1, + anon_sym_LBRACE, + STATE(17887), 1, + sym_tyvar, + STATE(17889), 1, + sym_tycon, + STATE(17901), 1, + sym_longtycon, + STATE(18224), 1, + sym_tyseq, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18469), 2, + sym__paren_ty, + sym_paren_ty, + STATE(17790), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890919] = 5, + ACTIONS(20228), 1, + anon_sym_and, + STATE(14095), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17830), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17825), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [890949] = 14, + ACTIONS(18921), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18923), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(18925), 1, + sym__symbolic_ident, + ACTIONS(18927), 1, + anon_sym_LPAREN, + ACTIONS(18929), 1, + anon_sym_LBRACE, + STATE(15266), 1, + sym_tycon, + STATE(15338), 1, + sym_tyvar, + STATE(15373), 1, + sym_longtycon, + STATE(18520), 1, + sym_tyseq, + STATE(19151), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(5314), 2, + sym__paren_ty, + sym_paren_ty, + STATE(15381), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [890997] = 14, + ACTIONS(17716), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17718), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17720), 1, + sym__symbolic_ident, + ACTIONS(17722), 1, + anon_sym_LPAREN, + ACTIONS(17724), 1, + anon_sym_LBRACE, + STATE(10171), 1, + sym_tycon, + STATE(10971), 1, + sym_tyvar, + STATE(10975), 1, + sym_longtycon, + STATE(18499), 1, + sym_tyseq, + STATE(18870), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11012), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [891045] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 2, + sym__symbolic_ident, + anon_sym_SEMI, + ACTIONS(12418), 15, + sym__alphaAlphaNumeric_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891071] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 14, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [891099] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [891125] = 5, + ACTIONS(20125), 1, + anon_sym_PIPE, + STATE(14093), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17295), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17293), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [891155] = 5, + ACTIONS(18465), 1, + anon_sym_infix, + ACTIONS(20231), 1, + anon_sym_and, + STATE(14104), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18461), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891185] = 4, + ACTIONS(20233), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16526), 14, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891213] = 5, + ACTIONS(18702), 1, + anon_sym_infix, + ACTIONS(20231), 1, + anon_sym_and, + STATE(14106), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18700), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891243] = 14, + ACTIONS(17419), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17421), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(17423), 1, + sym__symbolic_ident, + ACTIONS(17425), 1, + anon_sym_LPAREN, + ACTIONS(17427), 1, + anon_sym_LBRACE, + STATE(11097), 1, + sym_tyvar, + STATE(11099), 1, + sym_longtycon, + STATE(11318), 1, + sym_tycon, + STATE(18091), 1, + sym_tyseq, + STATE(18891), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8865), 2, + sym__paren_ty, + sym_paren_ty, + STATE(11100), 4, + sym__atty, + sym_tyvar_ty, + sym_record_ty, + sym_tycon_ty, + [891291] = 5, + ACTIONS(17830), 1, + anon_sym_infix, + ACTIONS(20235), 1, + anon_sym_and, + STATE(14106), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17825), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891321] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19262), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19260), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891347] = 5, + ACTIONS(20238), 1, + anon_sym_PIPE, + STATE(14108), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17127), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17122), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [891377] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 16, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [891403] = 5, + ACTIONS(17137), 1, + anon_sym_infix, + ACTIONS(20241), 1, + anon_sym_PIPE, + STATE(14112), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17133), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [891433] = 5, + ACTIONS(17295), 1, + anon_sym_infix, + ACTIONS(20241), 1, + anon_sym_PIPE, + STATE(14113), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17293), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [891463] = 5, + ACTIONS(17295), 1, + anon_sym_infix, + ACTIONS(20241), 1, + anon_sym_PIPE, + STATE(14114), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17293), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [891493] = 5, + ACTIONS(17152), 1, + anon_sym_infix, + ACTIONS(20241), 1, + anon_sym_PIPE, + STATE(14114), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17150), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [891523] = 5, + ACTIONS(17127), 1, + anon_sym_infix, + ACTIONS(20243), 1, + anon_sym_PIPE, + STATE(14114), 1, + aux_sym__fmatch_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17122), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [891553] = 5, + ACTIONS(18465), 1, + anon_sym_infix, + ACTIONS(20246), 1, + anon_sym_and, + STATE(14116), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18461), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891583] = 5, + ACTIONS(18702), 1, + anon_sym_infix, + ACTIONS(20246), 1, + anon_sym_and, + STATE(14117), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18700), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891613] = 5, + ACTIONS(17830), 1, + anon_sym_infix, + ACTIONS(20248), 1, + anon_sym_and, + STATE(14117), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17825), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891643] = 5, + ACTIONS(17433), 1, + anon_sym_infix, + ACTIONS(20251), 1, + anon_sym_and, + STATE(14119), 1, + aux_sym__strbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17429), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891673] = 5, + ACTIONS(18607), 1, + anon_sym_infix, + ACTIONS(20251), 1, + anon_sym_and, + STATE(14120), 1, + aux_sym__strbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18605), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891703] = 5, + ACTIONS(17967), 1, + anon_sym_infix, + ACTIONS(20253), 1, + anon_sym_and, + STATE(14120), 1, + aux_sym__strbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17962), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891733] = 5, + ACTIONS(17433), 1, + anon_sym_infix, + ACTIONS(20147), 1, + anon_sym_and, + STATE(13893), 1, + aux_sym__strbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17429), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891763] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19348), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19346), 15, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [891789] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 13, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [891816] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [891841] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [891866] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 13, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [891893] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [891918] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [891943] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [891968] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [891993] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892018] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892043] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892068] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892093] = 4, + ACTIONS(20256), 1, + anon_sym_STAR, + STATE(14136), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892120] = 4, + ACTIONS(20258), 1, + anon_sym_STAR, + STATE(14136), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892147] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892172] = 4, + ACTIONS(20256), 1, + anon_sym_STAR, + STATE(14135), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892199] = 5, + ACTIONS(20261), 1, + anon_sym_and, + STATE(14182), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18119), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18115), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [892228] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20265), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20263), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym__, + anon_sym_COLON_COLON, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [892253] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892280] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892305] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20269), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20267), 13, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym__, + anon_sym_COLON_COLON, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [892330] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892355] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892380] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 12, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892407] = 5, + ACTIONS(20271), 1, + anon_sym_and, + STATE(14190), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18465), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18461), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [892436] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 2, + sym__symbolic_ident, + anon_sym_SEMI, + ACTIONS(12418), 14, + sym__alphaAlphaNumeric_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [892461] = 5, + ACTIONS(20273), 1, + anon_sym_and, + STATE(14175), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18708), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18704), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [892490] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892515] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892540] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892567] = 4, + ACTIONS(20275), 1, + anon_sym_withtype, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19161), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19159), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [892594] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892619] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(12416), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [892646] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 12, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [892673] = 4, + ACTIONS(19161), 1, + anon_sym_infix, + ACTIONS(20277), 1, + anon_sym_withtype, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19159), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [892700] = 4, + ACTIONS(16092), 1, + anon_sym_SEMI, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16096), 14, + sym__alphaAlphaNumeric_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [892727] = 5, + ACTIONS(18119), 1, + anon_sym_infix, + ACTIONS(20279), 1, + anon_sym_and, + STATE(14162), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18115), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [892756] = 5, + ACTIONS(18708), 1, + anon_sym_infix, + ACTIONS(20281), 1, + anon_sym_and, + STATE(14163), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18704), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [892785] = 5, + ACTIONS(20283), 1, + anon_sym_and, + STATE(14171), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18919), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18917), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [892814] = 5, + ACTIONS(18501), 1, + anon_sym_infix, + ACTIONS(20279), 1, + anon_sym_and, + STATE(14165), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18499), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [892843] = 5, + ACTIONS(18770), 1, + anon_sym_infix, + ACTIONS(20281), 1, + anon_sym_and, + STATE(14166), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18768), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [892872] = 4, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(16462), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16464), 14, + sym__alphaAlphaNumeric_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [892899] = 5, + ACTIONS(17793), 1, + anon_sym_infix, + ACTIONS(20285), 1, + anon_sym_and, + STATE(14165), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17788), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [892928] = 5, + ACTIONS(16669), 1, + anon_sym_infix, + ACTIONS(20288), 1, + anon_sym_and, + STATE(14166), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16667), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [892957] = 4, + ACTIONS(19161), 1, + anon_sym_infix, + ACTIONS(20291), 1, + anon_sym_withtype, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19159), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [892984] = 4, + ACTIONS(16528), 1, + anon_sym_infix, + ACTIONS(20293), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893011] = 4, + ACTIONS(20295), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16528), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16526), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_and, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893038] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893063] = 5, + ACTIONS(20283), 1, + anon_sym_and, + STATE(14181), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18877), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18873), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893092] = 4, + ACTIONS(16092), 1, + anon_sym_SEMI, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16096), 14, + sym__alphaAlphaNumeric_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [893119] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893144] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893169] = 5, + ACTIONS(20273), 1, + anon_sym_and, + STATE(14201), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18770), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18768), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893198] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893223] = 5, + ACTIONS(18919), 1, + anon_sym_infix, + ACTIONS(20297), 1, + anon_sym_and, + STATE(14178), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18917), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893252] = 5, + ACTIONS(18877), 1, + anon_sym_infix, + ACTIONS(20297), 1, + anon_sym_and, + STATE(14179), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18873), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893281] = 5, + ACTIONS(17880), 1, + anon_sym_infix, + ACTIONS(20299), 1, + anon_sym_and, + STATE(14179), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17875), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893310] = 4, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(16462), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16464), 14, + sym__alphaAlphaNumeric_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [893337] = 5, + ACTIONS(20302), 1, + anon_sym_and, + STATE(14181), 1, + aux_sym__exbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17880), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17875), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893366] = 5, + ACTIONS(20261), 1, + anon_sym_and, + STATE(14183), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18501), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18499), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893395] = 5, + ACTIONS(20305), 1, + anon_sym_and, + STATE(14183), 1, + aux_sym__valbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17793), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17788), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893424] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893449] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893474] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893499] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [893526] = 5, + ACTIONS(20308), 1, + anon_sym_and, + STATE(14188), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17830), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(17825), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893555] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12420), 2, + anon_sym_DOT, + anon_sym_SEMI, + ACTIONS(16501), 14, + sym__alphaAlphaNumeric_ident, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [893580] = 5, + ACTIONS(20271), 1, + anon_sym_and, + STATE(14188), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18702), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(18700), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893609] = 4, + ACTIONS(20311), 1, + anon_sym_STAR, + STATE(14192), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893636] = 4, + ACTIONS(20313), 1, + anon_sym_STAR, + STATE(14192), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893663] = 5, + ACTIONS(18465), 1, + anon_sym_infix, + ACTIONS(20316), 1, + anon_sym_and, + STATE(14195), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18461), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893692] = 4, + ACTIONS(20311), 1, + anon_sym_STAR, + STATE(14191), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893719] = 5, + ACTIONS(18702), 1, + anon_sym_infix, + ACTIONS(20316), 1, + anon_sym_and, + STATE(14197), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18700), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893748] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893773] = 5, + ACTIONS(17830), 1, + anon_sym_infix, + ACTIONS(20318), 1, + anon_sym_and, + STATE(14197), 1, + aux_sym__fvalbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17825), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893802] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893827] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893852] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 2, + sym__symbolic_ident, + anon_sym_SEMI, + ACTIONS(12418), 14, + sym__alphaAlphaNumeric_ident, + anon_sym_in, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infix, + anon_sym_infixr, + anon_sym_nonfix, + [893877] = 5, + ACTIONS(20321), 1, + anon_sym_and, + STATE(14201), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16669), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(16667), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893906] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 15, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893931] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [893955] = 4, + ACTIONS(19161), 1, + anon_sym_infix, + ACTIONS(20324), 1, + anon_sym_withtype, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19159), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [893981] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894005] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19500), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19502), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894029] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19613), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19615), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894053] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19617), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19619), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894077] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19647), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19649), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894101] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19651), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19653), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894125] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19430), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19432), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894149] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894173] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894197] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [894221] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894245] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19679), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19681), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894269] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894293] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19492), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19494), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894317] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894341] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19464), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19466), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894365] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894389] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20326), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(20328), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894413] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894437] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13066), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(13064), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894461] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19336), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19338), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894485] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19340), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19342), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894509] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19354), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19356), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894533] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 12, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894559] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [894583] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894607] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19362), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19364), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894631] = 3, + ACTIONS(20330), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894655] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894679] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 11, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894705] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 11, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894731] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20334), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(20332), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [894755] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20338), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(20336), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [894779] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20342), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(20340), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [894803] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894827] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19496), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19498), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894851] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [894875] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [894901] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19422), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19424), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [894925] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [894949] = 3, + ACTIONS(20346), 1, + anon_sym_infix, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20344), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [894973] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [894997] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [895021] = 4, + ACTIONS(20348), 1, + anon_sym_STAR, + STATE(14249), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [895047] = 4, + ACTIONS(20350), 1, + anon_sym_STAR, + STATE(14249), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [895073] = 4, + ACTIONS(20348), 1, + anon_sym_STAR, + STATE(14248), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [895099] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [895123] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [895147] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [895171] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19480), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19482), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895195] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19621), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19623), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895219] = 4, + ACTIONS(20353), 1, + anon_sym_withtype, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19161), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(19159), 12, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [895245] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19434), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19436), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895269] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20357), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(20355), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [895293] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [895317] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13042), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(13040), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895341] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19625), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19627), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895365] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19528), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19530), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895389] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19468), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19470), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895413] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [895437] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [895461] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [895485] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19472), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19474), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895509] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [895533] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [895557] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20361), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(20359), 13, + anon_sym_SEMI, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [895581] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [895605] = 3, + ACTIONS(20365), 1, + anon_sym_infix, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20363), 14, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + anon_sym_structure, + [895629] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [895655] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19456), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19458), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895679] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19631), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19633), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895703] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19426), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19428), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895727] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [895751] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 12, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [895777] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [895801] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [895825] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [895849] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20369), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(20367), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [895873] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13026), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(13024), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895897] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [895921] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19639), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19641), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895945] = 4, + ACTIONS(20371), 1, + anon_sym_STAR, + STATE(14289), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 13, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [895971] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19572), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19574), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [895995] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19583), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19585), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [896019] = 4, + ACTIONS(20373), 1, + anon_sym_STAR, + STATE(14289), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 13, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896045] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [896069] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [896095] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896119] = 3, + ACTIONS(20376), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896143] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(12416), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [896167] = 4, + ACTIONS(20371), 1, + anon_sym_STAR, + STATE(14286), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 13, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896193] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [896217] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896241] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896265] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896289] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896313] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [896339] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 14, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896363] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 4, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + ACTIONS(15621), 11, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [896387] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19643), 6, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(19645), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [896411] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [896437] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 13, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896461] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20380), 2, + anon_sym_in, + anon_sym_infix, + ACTIONS(20378), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [896485] = 4, + ACTIONS(20382), 1, + anon_sym_STAR, + STATE(14390), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [896510] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15583), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [896533] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15525), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [896558] = 4, + ACTIONS(20384), 1, + anon_sym_STAR, + STATE(14366), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896583] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15571), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [896608] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 4, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + ACTIONS(12416), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [896633] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15603), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [896656] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15611), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [896679] = 3, + ACTIONS(20388), 1, + anon_sym_infix, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20386), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + anon_sym_val, + anon_sym_fun, + anon_sym_type, + anon_sym_datatype, + anon_sym_abstype, + anon_sym_exception, + anon_sym_local, + anon_sym_open, + anon_sym_infixr, + anon_sym_nonfix, + [896702] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15575), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [896725] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15715), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [896748] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20390), 5, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_PIPE, + ACTIONS(20392), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [896771] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [896794] = 3, + ACTIONS(20396), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20394), 13, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896817] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15735), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [896840] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15561), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [896863] = 3, + ACTIONS(20398), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20394), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896886] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15533), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [896911] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15631), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [896934] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15623), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [896957] = 4, + ACTIONS(20402), 1, + anon_sym_PIPE, + STATE(14333), 1, + aux_sym__condesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20400), 12, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [896982] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [897005] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [897028] = 4, + ACTIONS(20402), 1, + anon_sym_PIPE, + STATE(14333), 1, + aux_sym__condesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20404), 12, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897053] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 5, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_PIPE, + ACTIONS(15621), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [897076] = 4, + ACTIONS(20408), 1, + anon_sym_PIPE, + STATE(14333), 1, + aux_sym__condesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20406), 12, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897101] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [897126] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15735), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [897149] = 4, + ACTIONS(20413), 1, + anon_sym_PIPE, + STATE(14379), 1, + aux_sym__condesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20411), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897174] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15631), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [897197] = 4, + ACTIONS(20413), 1, + anon_sym_PIPE, + STATE(14348), 1, + aux_sym__condesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20400), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897222] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15583), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [897245] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15715), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [897268] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15561), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [897291] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20415), 5, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_PIPE, + ACTIONS(20417), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [897314] = 3, + ACTIONS(20419), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897337] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20421), 5, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + anon_sym_PIPE, + ACTIONS(20423), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [897360] = 4, + ACTIONS(20425), 1, + anon_sym_STAR, + STATE(14349), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 12, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897385] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15627), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [897408] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [897431] = 4, + ACTIONS(20413), 1, + anon_sym_PIPE, + STATE(14369), 1, + aux_sym__condesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20404), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897456] = 4, + ACTIONS(20427), 1, + anon_sym_STAR, + STATE(14349), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 12, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897481] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20430), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897502] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15571), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [897527] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [897550] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15611), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [897573] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [897598] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15603), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [897621] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20406), 14, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897642] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15623), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [897665] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [897688] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15595), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [897711] = 4, + ACTIONS(20382), 1, + anon_sym_STAR, + STATE(14308), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [897736] = 3, + ACTIONS(20432), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 13, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897759] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15575), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [897782] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15533), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [897807] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15595), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [897830] = 4, + ACTIONS(20402), 1, + anon_sym_PIPE, + STATE(14328), 1, + aux_sym__condesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20411), 12, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897855] = 4, + ACTIONS(20384), 1, + anon_sym_STAR, + STATE(14377), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897880] = 5, + ACTIONS(16426), 1, + anon_sym_SEMI, + ACTIONS(20434), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14541), 2, + sym_sigid, + aux_sym_include_spec_repeat1, + ACTIONS(16428), 10, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897907] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [897930] = 4, + ACTIONS(20436), 1, + anon_sym_PIPE, + STATE(14369), 1, + aux_sym__condesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20406), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [897955] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15699), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [897978] = 4, + ACTIONS(20425), 1, + anon_sym_STAR, + STATE(14345), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 12, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [898003] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [898026] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15707), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [898049] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15533), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [898074] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [898097] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15571), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [898122] = 4, + ACTIONS(20439), 1, + anon_sym_STAR, + STATE(14377), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [898147] = 4, + ACTIONS(20402), 1, + anon_sym_PIPE, + STATE(14331), 1, + aux_sym__condesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20400), 12, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [898172] = 4, + ACTIONS(20413), 1, + anon_sym_PIPE, + STATE(14369), 1, + aux_sym__condesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20400), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [898197] = 3, + ACTIONS(20442), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 13, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [898220] = 5, + ACTIONS(20444), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16426), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(14455), 2, + sym_sigid, + aux_sym_include_spec_repeat1, + ACTIONS(16428), 9, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [898247] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [898270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [898293] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [898316] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [898339] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [898362] = 3, + ACTIONS(20446), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 13, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [898385] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [898408] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15707), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [898431] = 4, + ACTIONS(20448), 1, + anon_sym_STAR, + STATE(14390), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [898456] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [898479] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15699), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [898502] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15627), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [898525] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20457), 1, + anon_sym_RBRACE, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24717), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [898563] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20461), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22410), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [898601] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20463), 1, + anon_sym_COMMA, + ACTIONS(20465), 1, + anon_sym_RBRACE, + STATE(14397), 1, + aux_sym_record_exp_repeat1, + STATE(22253), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19686), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [898639] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20467), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22305), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19697), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [898677] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20469), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22338), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [898715] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20471), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22384), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [898753] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20473), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22425), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [898791] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20475), 1, + anon_sym_COMMA, + ACTIONS(20477), 1, + anon_sym_RBRACE, + STATE(14405), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23727), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20971), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [898829] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20479), 1, + anon_sym_COMMA, + ACTIONS(20481), 1, + anon_sym_RBRACE, + STATE(14404), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22539), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19729), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [898867] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20483), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21771), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [898905] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20485), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22582), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19739), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [898943] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20487), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23764), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20984), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [898981] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20489), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22609), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899019] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20491), 1, + anon_sym_COMMA, + ACTIONS(20493), 1, + anon_sym_RBRACE, + STATE(14412), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22731), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20564), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899057] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [899081] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20495), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22665), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899119] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20497), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22728), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899157] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20499), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23800), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899195] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20501), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22936), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20641), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899233] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20503), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23824), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899271] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20505), 1, + anon_sym_COMMA, + ACTIONS(20507), 1, + anon_sym_RBRACE, + STATE(14415), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22793), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19774), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899309] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20509), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22837), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19782), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899347] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20511), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23871), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899385] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20513), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23116), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899423] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20515), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22883), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899461] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15735), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [899483] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15561), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [899505] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20517), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22944), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899543] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15627), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [899565] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20519), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22983), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899603] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20521), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23499), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899641] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20523), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23266), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899679] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20525), 1, + anon_sym_COMMA, + ACTIONS(20527), 1, + anon_sym_RBRACE, + STATE(14429), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23051), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19811), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899717] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20529), 1, + anon_sym_COMMA, + ACTIONS(20531), 1, + anon_sym_RBRACE, + STATE(14435), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24017), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21076), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899755] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20533), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23470), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899793] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20535), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23091), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19819), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899831] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20537), 1, + anon_sym_COMMA, + ACTIONS(20539), 1, + anon_sym_RBRACE, + STATE(14434), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23208), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899869] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20541), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23130), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899907] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20543), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23196), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899945] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20545), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23234), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [899983] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20547), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21672), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20132), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900021] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20549), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24072), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21099), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900059] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20551), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24106), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900097] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20553), 1, + anon_sym_COMMA, + ACTIONS(20555), 1, + anon_sym_RBRACE, + STATE(14490), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23232), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20786), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900135] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20557), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24198), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900173] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20559), 1, + anon_sym_COMMA, + ACTIONS(20561), 1, + anon_sym_RBRACE, + STATE(14442), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23849), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21014), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900211] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20563), 1, + anon_sym_COMMA, + ACTIONS(20565), 1, + anon_sym_RBRACE, + STATE(14481), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23954), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21045), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900249] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20567), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24260), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900287] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20569), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24054), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21088), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900325] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20571), 1, + anon_sym_COMMA, + ACTIONS(20573), 1, + anon_sym_RBRACE, + STATE(14447), 1, + aux_sym_record_exp_repeat1, + STATE(22038), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20272), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900363] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20575), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24160), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900401] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20577), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24396), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900439] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20579), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24571), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900477] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20581), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22162), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20322), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900515] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20583), 13, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [900535] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20585), 1, + anon_sym_COMMA, + ACTIONS(20587), 1, + anon_sym_RBRACE, + STATE(14450), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24355), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21214), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900573] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20589), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24404), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21237), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900611] = 10, + ACTIONS(20591), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20593), 1, + anon_sym_let, + ACTIONS(20595), 1, + anon_sym_struct, + STATE(12830), 1, + sym_strid, + STATE(13075), 1, + sym_longstrid, + STATE(13609), 1, + sym__strexp, + STATE(21374), 1, + aux_sym_longvid_repeat1, + STATE(25007), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13076), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [900647] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20597), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24430), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900685] = 4, + ACTIONS(20601), 1, + anon_sym_EQ, + STATE(14501), 1, + aux_sym_sharingtype_spec_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20599), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [900709] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20603), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24459), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900747] = 5, + ACTIONS(20444), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20605), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(14893), 2, + sym_sigid, + aux_sym_include_spec_repeat1, + ACTIONS(20607), 8, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [900773] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20609), 1, + anon_sym_COMMA, + ACTIONS(20611), 1, + anon_sym_RBRACE, + STATE(14463), 1, + aux_sym_record_exp_repeat1, + STATE(21708), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19308), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900811] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20613), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24486), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [900849] = 4, + ACTIONS(20617), 1, + anon_sym_EQ, + STATE(14504), 1, + aux_sym_sharing_spec_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20615), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [900873] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20619), 1, + anon_sym_COMMA, + ACTIONS(20621), 1, + anon_sym_RBRACE, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + STATE(14478), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(21717), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20148), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [900911] = 10, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12240), 1, + anon_sym_struct, + STATE(8735), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(23886), 1, + aux_sym_longvid_repeat1, + STATE(24325), 1, + sym__strexp, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [900947] = 10, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12240), 1, + anon_sym_struct, + STATE(8735), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(11639), 1, + sym__strexp, + STATE(23886), 1, + aux_sym_longvid_repeat1, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [900983] = 10, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12240), 1, + anon_sym_struct, + STATE(8735), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(23886), 1, + aux_sym_longvid_repeat1, + STATE(24573), 1, + sym__strexp, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [901019] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20625), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22961), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19331), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901057] = 10, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12240), 1, + anon_sym_struct, + STATE(8735), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(11653), 1, + sym__strexp, + STATE(23886), 1, + aux_sym_longvid_repeat1, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [901093] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20627), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22245), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901131] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20629), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21778), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901169] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20631), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23895), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901207] = 10, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12240), 1, + anon_sym_struct, + STATE(8735), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(11509), 1, + sym__strexp, + STATE(23886), 1, + aux_sym_longvid_repeat1, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [901243] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20633), 1, + anon_sym_COMMA, + ACTIONS(20635), 1, + anon_sym_RBRACE, + STATE(14472), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24540), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21284), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901281] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15571), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [901305] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15575), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [901327] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20637), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24566), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21297), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901365] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20639), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21419), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901403] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20641), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24596), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901441] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20643), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24636), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901479] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20645), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24655), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901517] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20647), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21988), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901555] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20649), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(21840), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20194), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [901593] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20651), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22377), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901631] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20653), 1, + anon_sym_COMMA, + ACTIONS(20655), 1, + anon_sym_RBRACE, + STATE(14483), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23128), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19477), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901669] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20657), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21373), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19352), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901707] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20659), 1, + anon_sym_COMMA, + ACTIONS(20661), 1, + anon_sym_RBRACE, + STATE(14484), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24725), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21361), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901745] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20663), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23804), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19508), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901783] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20665), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23974), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21052), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901821] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20667), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24550), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901859] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20669), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22501), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901897] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20671), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23210), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901935] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20673), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24593), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [901973] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20675), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21624), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902011] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20677), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21677), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19591), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902049] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20679), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22535), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902087] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20681), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21808), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902125] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20683), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21913), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902163] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20685), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23724), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902201] = 3, + ACTIONS(20687), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [902223] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20689), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(21934), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [902261] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20691), 1, + anon_sym_COMMA, + ACTIONS(20693), 1, + anon_sym_RBRACE, + STATE(14500), 1, + aux_sym_record_exp_repeat1, + STATE(22249), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19685), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902299] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20695), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21949), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902337] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20697), 1, + anon_sym_COMMA, + ACTIONS(20699), 1, + anon_sym_RBRACE, + STATE(14502), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22412), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19709), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902375] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20701), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22506), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19725), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902413] = 4, + ACTIONS(20601), 1, + anon_sym_EQ, + STATE(14523), 1, + aux_sym_sharingtype_spec_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20703), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [902437] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20705), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21815), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20180), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902475] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20707), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22867), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902513] = 4, + ACTIONS(20711), 1, + anon_sym_EQ, + STATE(14504), 1, + aux_sym_sharing_spec_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20709), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [902537] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20714), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22670), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902575] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20716), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22073), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902613] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20718), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22814), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902651] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20720), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22533), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902689] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20722), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23146), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902727] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20724), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22841), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902765] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20726), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22988), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902803] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20728), 1, + anon_sym_COMMA, + ACTIONS(20730), 1, + anon_sym_RBRACE, + STATE(14577), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23180), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20759), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902841] = 3, + ACTIONS(20732), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 12, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_DASH_GT, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [902863] = 4, + ACTIONS(20734), 1, + anon_sym_STAR, + STATE(14515), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + [902887] = 4, + ACTIONS(20736), 1, + anon_sym_STAR, + STATE(14515), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + [902911] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20739), 1, + anon_sym_COMMA, + ACTIONS(20741), 1, + anon_sym_RBRACE, + STATE(14518), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23922), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21032), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902949] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20743), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22010), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [902987] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20745), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24143), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21124), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903025] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20747), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22029), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [903063] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20749), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24614), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903101] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20751), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22429), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903139] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20753), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22167), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903177] = 4, + ACTIONS(20757), 1, + anon_sym_EQ, + STATE(14523), 1, + aux_sym_sharingtype_spec_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20755), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [903201] = 10, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12240), 1, + anon_sym_struct, + STATE(8735), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(11305), 1, + sym__strexp, + STATE(23886), 1, + aux_sym_longvid_repeat1, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [903237] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20760), 1, + anon_sym_COMMA, + ACTIONS(20762), 1, + anon_sym_RBRACE, + STATE(14528), 1, + aux_sym_record_exp_repeat1, + STATE(22065), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19654), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903275] = 4, + ACTIONS(20764), 1, + anon_sym_STAR, + STATE(14527), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + [903299] = 4, + ACTIONS(20766), 1, + anon_sym_STAR, + STATE(14527), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + [903323] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20769), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22618), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19736), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903361] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20771), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22072), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [903399] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20773), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23042), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903437] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20775), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23290), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903475] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20777), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24179), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903513] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20779), 1, + anon_sym_COMMA, + ACTIONS(20781), 1, + anon_sym_RBRACE, + STATE(14540), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23404), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19861), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903551] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20783), 1, + anon_sym_COMMA, + ACTIONS(20785), 1, + anon_sym_RBRACE, + STATE(14535), 1, + aux_sym_record_exp_repeat1, + STATE(21814), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20182), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903589] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20787), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21935), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20232), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903627] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20789), 1, + anon_sym_COMMA, + ACTIONS(20791), 1, + anon_sym_RBRACE, + STATE(14545), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22810), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20600), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903665] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20793), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22070), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903703] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20795), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22159), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903741] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20797), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22283), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903779] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20799), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23543), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19881), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903817] = 5, + ACTIONS(20434), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20605), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14572), 2, + sym_sigid, + aux_sym_include_spec_repeat1, + ACTIONS(20607), 9, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [903843] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20801), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23691), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903881] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20803), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23876), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903919] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20805), 1, + anon_sym_COMMA, + ACTIONS(20807), 1, + anon_sym_RBRACE, + STATE(14546), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22540), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20484), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903957] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20809), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22947), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20658), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [903995] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20811), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22707), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20556), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904033] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20813), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21683), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904071] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20815), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22439), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904109] = 3, + ACTIONS(20817), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [904131] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15583), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [904153] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20819), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22756), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904191] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20821), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24026), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904229] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20823), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22866), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904267] = 10, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12240), 1, + anon_sym_struct, + STATE(8735), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(23886), 1, + aux_sym_longvid_repeat1, + STATE(24457), 1, + sym__strexp, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [904303] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20825), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23001), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904341] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20827), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24199), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904379] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20829), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23027), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904417] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20831), 1, + anon_sym_COMMA, + ACTIONS(20833), 1, + anon_sym_RBRACE, + STATE(14561), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24338), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19977), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904455] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20835), 1, + anon_sym_COMMA, + ACTIONS(20837), 1, + anon_sym_RBRACE, + STATE(14560), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23285), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20797), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904493] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20839), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23495), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20881), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904531] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20841), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24515), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19995), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904569] = 3, + ACTIONS(20843), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 12, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [904591] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20845), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23167), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904629] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20847), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22127), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904667] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20849), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24673), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904705] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20851), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23628), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904743] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12418), 4, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + ACTIONS(12416), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [904765] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20853), 1, + anon_sym_COMMA, + ACTIONS(20855), 1, + anon_sym_RBRACE, + STATE(14575), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22340), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20411), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904803] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20857), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21428), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904841] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20859), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22091), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [904879] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20861), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23723), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904917] = 5, + ACTIONS(20863), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20866), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(14572), 2, + sym_sigid, + aux_sym_include_spec_repeat1, + ACTIONS(20868), 9, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [904943] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20870), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23795), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [904981] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20872), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21498), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905019] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20874), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22434), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20455), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905057] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20876), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23253), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905095] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20878), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23493), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20868), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905133] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15595), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [905155] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20880), 1, + anon_sym_COMMA, + ACTIONS(20882), 1, + anon_sym_RBRACE, + STATE(14657), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23126), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20599), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905193] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20884), 1, + anon_sym_COMMA, + ACTIONS(20886), 1, + anon_sym_RBRACE, + STATE(14582), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24060), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21084), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905231] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20888), 1, + anon_sym_COMMA, + ACTIONS(20890), 1, + anon_sym_RBRACE, + STATE(14592), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22486), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20471), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [905269] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20892), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24216), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21159), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905307] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20894), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24422), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905345] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20896), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24658), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905383] = 4, + ACTIONS(20734), 1, + anon_sym_STAR, + STATE(14514), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + [905407] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20898), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22579), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905445] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20900), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22304), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905483] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20902), 1, + anon_sym_COMMA, + ACTIONS(20904), 1, + anon_sym_RBRACE, + STATE(14591), 1, + aux_sym_record_exp_repeat1, + STATE(21627), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20110), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905521] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15603), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [905543] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [905567] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20906), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21662), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20127), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905605] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20908), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22638), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20533), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [905643] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [905665] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20910), 1, + anon_sym_COMMA, + ACTIONS(20912), 1, + anon_sym_RBRACE, + STATE(14597), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22359), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19321), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905703] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [905725] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [905749] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20914), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23621), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19348), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905787] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [905809] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [905831] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [905855] = 3, + ACTIONS(20916), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [905877] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [905899] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20918), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21396), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [905937] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [905959] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [905981] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906003] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906025] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20920), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22022), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [906063] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906085] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15611), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [906107] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906129] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20922), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21696), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [906167] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906189] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20924), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22241), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [906227] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906249] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906273] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906295] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906317] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906341] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906363] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906385] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906407] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906429] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20926), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22698), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [906467] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906489] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906511] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20928), 1, + anon_sym_COMMA, + ACTIONS(20930), 1, + anon_sym_RBRACE, + STATE(14630), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23029), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19469), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [906549] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906571] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906593] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20932), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23629), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19500), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [906631] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20934), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21735), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [906669] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20936), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22740), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [906707] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20938), 1, + anon_sym_COMMA, + ACTIONS(20940), 1, + anon_sym_RBRACE, + STATE(14642), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23479), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20871), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [906745] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20942), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23989), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [906783] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906805] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20944), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21389), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [906843] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20946), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21767), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [906881] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906903] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20948), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21655), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [906941] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15631), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [906963] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [906985] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20950), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23588), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20924), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907023] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20952), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22809), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907061] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20954), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21900), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907099] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [907121] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20956), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23732), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907159] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20958), 1, + anon_sym_COMMA, + ACTIONS(20960), 1, + anon_sym_RBRACE, + STATE(14651), 1, + aux_sym_record_exp_repeat1, + STATE(22118), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19666), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907197] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20962), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23902), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907235] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [907257] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20964), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22833), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [907295] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20966), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22278), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19690), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907333] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20968), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24076), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907371] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20970), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22475), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907409] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20972), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24266), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907447] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20974), 1, + anon_sym_COMMA, + ACTIONS(20976), 1, + anon_sym_RBRACE, + STATE(14661), 1, + aux_sym_record_exp_repeat1, + STATE(21852), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20198), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907485] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20978), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22637), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907523] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20980), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21990), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20245), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907561] = 4, + ACTIONS(20982), 1, + anon_sym_STAR, + STATE(14752), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [907585] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20984), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22806), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907623] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20986), 1, + anon_sym_COMMA, + ACTIONS(20988), 1, + anon_sym_RBRACE, + STATE(14663), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23746), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20974), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907661] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20990), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21874), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20208), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907699] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20390), 4, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + ACTIONS(20392), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [907721] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20992), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22680), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21355), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907759] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20994), 1, + anon_sym_COMMA, + ACTIONS(20996), 1, + anon_sym_RBRACE, + STATE(14665), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23123), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19825), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907797] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(20998), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23372), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19858), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907835] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21000), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21907), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907873] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21002), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23591), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907911] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21004), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23988), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [907949] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21006), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22873), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [907987] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21008), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24354), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908025] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21010), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21955), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908063] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20415), 4, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + ACTIONS(20417), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [908085] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21012), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21973), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908123] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21014), 1, + anon_sym_COMMA, + ACTIONS(21016), 1, + anon_sym_RBRACE, + STATE(14676), 1, + aux_sym_record_exp_repeat1, + STATE(21596), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20093), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908161] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21018), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22974), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908199] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21020), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21630), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20111), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908237] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21022), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21657), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908275] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21024), 1, + anon_sym_COMMA, + ACTIONS(21026), 1, + anon_sym_RBRACE, + STATE(14681), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24392), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21230), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908313] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21028), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21706), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908351] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21030), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21738), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908389] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21032), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24505), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21267), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908427] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21034), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24039), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21073), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908465] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21036), 1, + anon_sym_COMMA, + ACTIONS(21038), 1, + anon_sym_RBRACE, + STATE(14685), 1, + aux_sym_record_exp_repeat1, + STATE(21842), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20195), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908503] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15525), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [908525] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21040), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21887), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20214), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908563] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21042), 1, + anon_sym_COMMA, + ACTIONS(21044), 1, + anon_sym_RBRACE, + STATE(14692), 1, + aux_sym_record_exp_repeat1, + STATE(22055), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20280), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908601] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21046), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21912), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908639] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21048), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21978), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908677] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [908699] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21050), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24208), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908737] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21052), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22021), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908775] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21054), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22104), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20302), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908813] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21056), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24552), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908851] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [908873] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21058), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22143), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908911] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21060), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24681), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908949] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21062), 1, + anon_sym_COMMA, + ACTIONS(21064), 1, + anon_sym_RBRACE, + STATE(14699), 1, + aux_sym_record_exp_repeat1, + STATE(22092), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20295), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [908987] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21066), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22059), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909025] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21068), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22135), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20317), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909063] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21070), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22172), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909101] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21072), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22168), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909139] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21074), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22196), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909177] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21076), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22216), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909215] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21078), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23502), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909253] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21080), 1, + anon_sym_COMMA, + ACTIONS(21082), 1, + anon_sym_RBRACE, + STATE(14708), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23072), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20720), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909291] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21084), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22243), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909329] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21086), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22296), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [909367] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21088), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23119), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20744), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909405] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21090), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21969), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909443] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21092), 1, + anon_sym_COMMA, + ACTIONS(21094), 1, + anon_sym_RBRACE, + STATE(14721), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(23139), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20752), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [909481] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21096), 1, + anon_sym_COMMA, + ACTIONS(21098), 1, + anon_sym_RBRACE, + STATE(14713), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23191), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19824), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909519] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21100), 1, + anon_sym_COMMA, + ACTIONS(21102), 1, + anon_sym_RBRACE, + STATE(14718), 1, + aux_sym_record_exp_repeat1, + STATE(22277), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20381), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909557] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21104), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23519), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20893), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909595] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21106), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23124), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909633] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21108), 1, + anon_sym_COMMA, + ACTIONS(21110), 1, + anon_sym_RBRACE, + STATE(14717), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22300), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20391), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909671] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21112), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23177), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909709] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21114), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22337), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20409), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909747] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21116), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22322), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20401), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909785] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21118), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24511), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909823] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21120), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22366), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909861] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21122), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(23218), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20778), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [909899] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21124), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22302), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909937] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21126), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21394), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [909975] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21128), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22363), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910013] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21130), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22440), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910051] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21132), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23252), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910089] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21134), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(23273), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [910127] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21136), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22408), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910165] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21138), 1, + anon_sym_COMMA, + ACTIONS(21140), 1, + anon_sym_RBRACE, + STATE(14739), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22635), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20532), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910203] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21142), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23015), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910241] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21144), 1, + anon_sym_COMMA, + ACTIONS(21146), 1, + anon_sym_RBRACE, + STATE(14732), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22520), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20479), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910279] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21148), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22548), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20489), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910317] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21150), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23309), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910355] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21152), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22578), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910393] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21154), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22629), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910431] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21156), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22659), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910469] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21158), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(23321), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [910507] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21160), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22453), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910545] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21162), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22967), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20665), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910583] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21164), 1, + anon_sym_COMMA, + ACTIONS(21166), 1, + anon_sym_RBRACE, + STATE(14759), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(23059), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20712), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [910621] = 4, + ACTIONS(20764), 1, + anon_sym_STAR, + STATE(14526), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + [910645] = 4, + ACTIONS(21170), 1, + anon_sym_and, + STATE(14843), 1, + aux_sym__typedesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21168), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [910669] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21172), 1, + anon_sym_COMMA, + ACTIONS(21174), 1, + anon_sym_RBRACE, + STATE(14746), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22749), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20574), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910707] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21176), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(23351), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [910745] = 10, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12240), 1, + anon_sym_struct, + STATE(8735), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(23886), 1, + aux_sym_longvid_repeat1, + STATE(23987), 1, + sym__strexp, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [910781] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21178), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22786), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20594), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910819] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21180), 1, + anon_sym_COMMA, + ACTIONS(21182), 1, + anon_sym_RBRACE, + STATE(14754), 1, + aux_sym_record_exp_repeat1, + STATE(21882), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20201), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910857] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21184), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22816), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910895] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21186), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22870), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910933] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21188), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22916), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [910971] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21190), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23424), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911009] = 4, + ACTIONS(20982), 1, + anon_sym_STAR, + STATE(14753), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [911033] = 4, + ACTIONS(21192), 1, + anon_sym_STAR, + STATE(14753), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [911057] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21195), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22330), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20396), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911095] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21197), 1, + anon_sym_COMMA, + ACTIONS(21199), 1, + anon_sym_RBRACE, + STATE(14756), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22995), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20682), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911133] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21201), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23036), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20699), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911171] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21203), 1, + anon_sym_COMMA, + ACTIONS(21205), 1, + anon_sym_RBRACE, + STATE(14762), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22526), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20481), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911209] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21207), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23071), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911247] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21209), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(23583), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20917), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [911285] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21211), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23111), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911323] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21213), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23153), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911361] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21215), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22562), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20497), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911399] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21217), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22605), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911437] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21219), 1, + anon_sym_COMMA, + ACTIONS(21221), 1, + anon_sym_RBRACE, + STATE(14766), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23447), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20864), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911475] = 10, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12240), 1, + anon_sym_struct, + STATE(8735), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(11715), 1, + sym__strexp, + STATE(23886), 1, + aux_sym_longvid_repeat1, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [911511] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21223), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23481), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20875), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911549] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21225), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22614), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911587] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21227), 1, + anon_sym_COMMA, + ACTIONS(21229), 1, + anon_sym_RBRACE, + STATE(14771), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23235), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20788), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911625] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21231), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23553), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911663] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21233), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22658), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911701] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21235), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23300), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20809), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911739] = 10, + ACTIONS(20591), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20593), 1, + anon_sym_let, + ACTIONS(20595), 1, + anon_sym_struct, + STATE(12830), 1, + sym_strid, + STATE(13075), 1, + sym_longstrid, + STATE(13559), 1, + sym__strexp, + STATE(21374), 1, + aux_sym_longvid_repeat1, + STATE(25007), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13076), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [911775] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21237), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23365), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911813] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21239), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23413), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911851] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21241), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23436), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911889] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21243), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23817), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [911927] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21245), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22493), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20465), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [911965] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21247), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22695), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912003] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21249), 1, + anon_sym_COMMA, + ACTIONS(21251), 1, + anon_sym_RBRACE, + STATE(14780), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23503), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20886), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912041] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21253), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23555), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20912), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912079] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21255), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22354), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912117] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21257), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(23919), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [912155] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21259), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23600), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912193] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21261), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23647), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912231] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21263), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23162), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912269] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21265), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23665), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912307] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21267), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23620), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912345] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21269), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24295), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912383] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21271), 1, + anon_sym_COMMA, + ACTIONS(21273), 1, + anon_sym_RBRACE, + STATE(14790), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23738), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20973), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912421] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21275), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23774), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20987), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912459] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21277), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23417), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912497] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21279), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23794), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912535] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21281), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23840), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912573] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21283), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24147), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912611] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21285), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23877), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912649] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21287), 1, + anon_sym_COMMA, + ACTIONS(21289), 1, + anon_sym_RBRACE, + STATE(14802), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22779), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20590), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912687] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15699), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [912709] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21291), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23672), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912747] = 10, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12240), 1, + anon_sym_struct, + STATE(8735), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(11730), 1, + sym__strexp, + STATE(23886), 1, + aux_sym_longvid_repeat1, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [912783] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21293), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(24209), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [912821] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21295), 1, + anon_sym_COMMA, + ACTIONS(21297), 1, + anon_sym_RBRACE, + STATE(14803), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23969), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21055), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912859] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21299), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22820), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20611), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912897] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21301), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24005), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21072), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912935] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21303), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24045), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [912973] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15715), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [912995] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15707), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [913017] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21305), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24080), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913055] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21307), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22845), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913093] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21309), 1, + anon_sym_COMMA, + ACTIONS(21311), 1, + anon_sym_RBRACE, + STATE(14828), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23388), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19859), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913131] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21313), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24101), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913169] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21315), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22886), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913207] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21317), 1, + anon_sym_COMMA, + ACTIONS(21319), 1, + anon_sym_RBRACE, + STATE(14825), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24289), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21171), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913245] = 4, + ACTIONS(21170), 1, + anon_sym_and, + STATE(14742), 1, + aux_sym__typedesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21321), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [913269] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21323), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22912), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913307] = 4, + ACTIONS(21327), 1, + anon_sym_and, + STATE(14888), 1, + aux_sym__datdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21325), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [913331] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21329), 1, + anon_sym_COMMA, + ACTIONS(21331), 1, + anon_sym_RBRACE, + STATE(14818), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24188), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21151), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913369] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15533), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [913393] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21333), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24265), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21177), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913431] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21335), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(24531), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [913469] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21337), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24301), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913507] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21339), 1, + anon_sym_COMMA, + ACTIONS(21341), 1, + anon_sym_RBRACE, + STATE(14826), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23837), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21012), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913545] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21343), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24353), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913583] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20421), 4, + sym_integer_scon, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_op, + ACTIONS(20423), 9, + sym_word_scon, + sym_real_scon, + sym_string_scon, + sym_char_scon, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_POUND_LBRACK, + anon_sym__, + [913605] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21345), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24416), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913643] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21347), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21470), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19301), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913681] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21349), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23884), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21030), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913719] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + ACTIONS(15623), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [913741] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21351), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24259), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19967), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913779] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21353), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23181), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913817] = 10, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12240), 1, + anon_sym_struct, + STATE(8735), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(11573), 1, + sym__strexp, + STATE(23886), 1, + aux_sym_longvid_repeat1, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [913853] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21355), 1, + anon_sym_COMMA, + ACTIONS(21357), 1, + anon_sym_RBRACE, + STATE(14833), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24536), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21283), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913891] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21359), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23929), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913929] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21361), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24599), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21306), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [913967] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21363), 1, + anon_sym_COMMA, + ACTIONS(21365), 1, + anon_sym_RBRACE, + STATE(14840), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22970), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20666), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914005] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21367), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23968), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914043] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21369), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24648), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914081] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21371), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24007), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914119] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21373), 1, + anon_sym_COMMA, + ACTIONS(21375), 1, + anon_sym_RBRACE, + STATE(14682), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24423), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19413), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914157] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21377), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21479), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914195] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21379), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23008), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20688), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914233] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21381), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22325), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914271] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21383), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23034), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914309] = 4, + ACTIONS(21387), 1, + anon_sym_and, + STATE(14843), 1, + aux_sym__typedesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21385), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [914333] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21390), 1, + anon_sym_COMMA, + ACTIONS(21392), 1, + anon_sym_RBRACE, + STATE(14846), 1, + aux_sym_record_exp_repeat1, + STATE(22093), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19277), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914371] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21394), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23030), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914409] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21396), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22966), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19285), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914447] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21398), 1, + anon_sym_COMMA, + ACTIONS(21400), 1, + anon_sym_RBRACE, + STATE(14848), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24103), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21113), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914485] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21402), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24137), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21127), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914523] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21404), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23660), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914561] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21406), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24652), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914599] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21408), 13, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [914619] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21410), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24167), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914657] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21412), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21632), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914695] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21414), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23067), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914733] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21416), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24204), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914771] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21418), 1, + anon_sym_COMMA, + ACTIONS(21420), 1, + anon_sym_RBRACE, + STATE(14777), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22887), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20636), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [914809] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21422), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24225), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914847] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21424), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23108), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914885] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21426), 13, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [914905] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21428), 1, + anon_sym_COMMA, + ACTIONS(21430), 1, + anon_sym_RBRACE, + STATE(14861), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22315), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19320), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914943] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21432), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22789), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19329), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [914981] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21434), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23024), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915019] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21436), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23394), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915057] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21438), 1, + anon_sym_COMMA, + ACTIONS(21440), 1, + anon_sym_RBRACE, + STATE(14865), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24291), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21186), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915095] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21442), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24317), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21197), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915133] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21444), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22211), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [915171] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21446), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23803), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915209] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21448), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24341), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915247] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21450), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21511), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915285] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21452), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24367), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915323] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21454), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24412), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915361] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21456), 1, + anon_sym_COMMA, + ACTIONS(21458), 1, + anon_sym_RBRACE, + STATE(14879), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23207), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20774), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915399] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21460), 1, + anon_sym_COMMA, + ACTIONS(21462), 1, + anon_sym_RBRACE, + STATE(14880), 1, + aux_sym_record_exp_repeat1, + STATE(22128), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19657), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915437] = 4, + ACTIONS(21466), 1, + anon_sym_and, + STATE(14875), 1, + aux_sym__datdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21464), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [915461] = 4, + ACTIONS(21468), 1, + anon_sym_and, + STATE(14875), 1, + aux_sym__datdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21426), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [915485] = 4, + ACTIONS(21471), 1, + anon_sym_and, + STATE(14883), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [915509] = 4, + ACTIONS(21471), 1, + anon_sym_and, + STATE(14883), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16903), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [915533] = 4, + ACTIONS(21473), 1, + anon_sym_and, + STATE(14878), 1, + aux_sym__datdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21426), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [915557] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21476), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23261), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20794), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915595] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21478), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22848), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19777), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915633] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [915657] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21480), 1, + anon_sym_COMMA, + ACTIONS(21482), 1, + anon_sym_RBRACE, + STATE(14885), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24664), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19372), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915695] = 4, + ACTIONS(21484), 1, + anon_sym_and, + STATE(14883), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16882), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [915719] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21487), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23297), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915757] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21489), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21487), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19380), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915795] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21491), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21613), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915833] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21493), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21754), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915871] = 4, + ACTIONS(21327), 1, + anon_sym_and, + STATE(14878), 1, + aux_sym__datdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21464), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [915895] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21495), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21889), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915933] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21497), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23339), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [915971] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21499), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24004), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916009] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21501), 1, + anon_sym_COMMA, + ACTIONS(21503), 1, + anon_sym_RBRACE, + STATE(14901), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22411), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19433), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916047] = 5, + ACTIONS(21505), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20866), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(14893), 2, + sym_sigid, + aux_sym_include_spec_repeat1, + ACTIONS(20868), 8, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [916073] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21508), 1, + anon_sym_COMMA, + ACTIONS(21510), 1, + anon_sym_RBRACE, + STATE(14897), 1, + aux_sym_record_exp_repeat1, + STATE(22154), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19419), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916111] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21512), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24558), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916149] = 4, + ACTIONS(21514), 1, + anon_sym_and, + STATE(14896), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16882), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [916173] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21517), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22286), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19429), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916211] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21519), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23376), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916249] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21521), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22362), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916287] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21523), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22538), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916325] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21525), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23165), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19478), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916363] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21527), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22613), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916401] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21529), 1, + anon_sym_COMMA, + ACTIONS(21531), 1, + anon_sym_RBRACE, + STATE(14914), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(23577), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19497), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [916439] = 4, + ACTIONS(20617), 1, + anon_sym_EQ, + STATE(14458), 1, + aux_sym_sharing_spec_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21533), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [916463] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21535), 1, + anon_sym_COMMA, + ACTIONS(21537), 1, + anon_sym_RBRACE, + STATE(14907), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22890), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19460), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916501] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21539), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21636), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916539] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21541), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23050), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19473), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916577] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21543), 1, + anon_sym_COMMA, + ACTIONS(21545), 1, + anon_sym_RBRACE, + STATE(14918), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24544), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21285), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916615] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21547), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23127), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916653] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21549), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24296), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916691] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21551), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23267), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916729] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21553), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23440), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916767] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21555), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21744), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916805] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21557), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(21454), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19563), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [916843] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21559), 1, + anon_sym_COMMA, + ACTIONS(21561), 1, + anon_sym_RBRACE, + STATE(14916), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23770), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19507), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916881] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21563), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23931), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19515), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916919] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21565), 1, + anon_sym_COMMA, + ACTIONS(21567), 1, + anon_sym_RBRACE, + STATE(14923), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23456), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20866), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916957] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21569), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24597), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(21307), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [916995] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21571), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24065), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917033] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21573), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24253), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917071] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21575), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24390), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917109] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21577), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21692), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917147] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21579), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23508), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20888), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917185] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21581), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21668), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917223] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21583), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24666), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917261] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21585), 1, + anon_sym_COMMA, + ACTIONS(21587), 1, + anon_sym_RBRACE, + STATE(14945), 1, + aux_sym_record_exp_repeat1, + STATE(22027), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20265), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917299] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21589), 1, + anon_sym_COMMA, + ACTIONS(21591), 1, + anon_sym_RBRACE, + STATE(14928), 1, + aux_sym_record_exp_repeat1, + STATE(21375), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19557), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917337] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21593), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21452), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19566), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917375] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21595), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(21828), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [917413] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21597), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21493), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917451] = 10, + ACTIONS(12208), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(12214), 1, + anon_sym_let, + ACTIONS(12240), 1, + anon_sym_struct, + STATE(8735), 1, + sym_strid, + STATE(9836), 1, + sym_longstrid, + STATE(11434), 1, + sym__strexp, + STATE(23886), 1, + aux_sym_longvid_repeat1, + STATE(24936), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9851), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [917487] = 4, + ACTIONS(21466), 1, + anon_sym_and, + STATE(14874), 1, + aux_sym__datdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21325), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_withtype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [917511] = 4, + ACTIONS(21471), 1, + anon_sym_and, + STATE(14876), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16889), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [917535] = 4, + ACTIONS(21471), 1, + anon_sym_and, + STATE(14877), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [917559] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21599), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21577), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917597] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21601), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21617), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917635] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21603), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23525), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917673] = 4, + ACTIONS(21605), 1, + anon_sym_and, + STATE(14896), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [917697] = 4, + ACTIONS(21605), 1, + anon_sym_and, + STATE(14896), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16903), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [917721] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21607), 1, + anon_sym_COMMA, + ACTIONS(21609), 1, + anon_sym_RBRACE, + STATE(14944), 1, + aux_sym_record_exp_repeat1, + STATE(21709), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19598), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917759] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21611), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22088), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917797] = 4, + ACTIONS(21605), 1, + anon_sym_and, + STATE(14938), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16889), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [917821] = 4, + ACTIONS(21605), 1, + anon_sym_and, + STATE(14939), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [917845] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21613), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21755), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19610), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917883] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21615), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22117), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(20309), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917921] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21617), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21812), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917959] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21619), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23568), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [917997] = 4, + ACTIONS(21621), 1, + anon_sym_and, + STATE(14950), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16889), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [918021] = 4, + ACTIONS(21624), 1, + anon_sym_and, + STATE(14951), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [918045] = 4, + ACTIONS(21624), 1, + anon_sym_and, + STATE(14883), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [918069] = 4, + ACTIONS(21627), 1, + anon_sym_and, + STATE(14883), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16903), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [918093] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21630), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21867), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [918131] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21632), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22148), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [918169] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21634), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21908), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [918207] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21636), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24313), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [918245] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21638), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22250), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [918283] = 4, + ACTIONS(21640), 1, + anon_sym_and, + STATE(14959), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16889), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [918307] = 4, + ACTIONS(21643), 1, + anon_sym_and, + STATE(14960), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [918331] = 4, + ACTIONS(21643), 1, + anon_sym_and, + STATE(14896), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [918355] = 4, + ACTIONS(21646), 1, + anon_sym_and, + STATE(14896), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16903), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [918379] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21649), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(23597), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [918417] = 11, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21651), 1, + anon_sym_COMMA, + ACTIONS(21653), 1, + anon_sym_RBRACE, + STATE(14963), 1, + aux_sym_record_exp_repeat1, + STATE(21992), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19642), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [918455] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21655), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22058), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(19653), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [918493] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21657), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22094), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [918531] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21659), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22137), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [918569] = 10, + ACTIONS(20591), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20593), 1, + anon_sym_let, + ACTIONS(20595), 1, + anon_sym_struct, + STATE(12830), 1, + sym_strid, + STATE(13075), 1, + sym_longstrid, + STATE(13689), 1, + sym__strexp, + STATE(21374), 1, + aux_sym_longvid_repeat1, + STATE(25007), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13076), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [918605] = 10, + ACTIONS(20591), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20593), 1, + anon_sym_let, + ACTIONS(20595), 1, + anon_sym_struct, + STATE(12830), 1, + sym_strid, + STATE(13075), 1, + sym_longstrid, + STATE(13691), 1, + sym__strexp, + STATE(21374), 1, + aux_sym_longvid_repeat1, + STATE(25007), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13076), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [918641] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21661), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22178), 1, + sym_ellipsis_exprow, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [918679] = 10, + ACTIONS(20591), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20593), 1, + anon_sym_let, + ACTIONS(20595), 1, + anon_sym_struct, + STATE(12830), 1, + sym_strid, + STATE(13075), 1, + sym_longstrid, + STATE(13690), 1, + sym__strexp, + STATE(21374), 1, + aux_sym_longvid_repeat1, + STATE(25007), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13076), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [918715] = 10, + ACTIONS(20591), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(20593), 1, + anon_sym_let, + ACTIONS(20595), 1, + anon_sym_struct, + STATE(12830), 1, + sym_strid, + STATE(13075), 1, + sym_longstrid, + STATE(13611), 1, + sym__strexp, + STATE(21374), 1, + aux_sym_longvid_repeat1, + STATE(25007), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13076), 5, + sym_struct_strexp, + sym_strid_strexp, + sym_constr_strexp, + sym_fctapp_strexp, + sym_let_strexp, + [918751] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20623), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21663), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(22348), 1, + sym_ellipsis_patrow, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [918789] = 11, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + ACTIONS(20459), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(21665), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(22403), 1, + sym_ellipsis_exprow, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [918827] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21667), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [918846] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15525), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [918869] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [918890] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [918911] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [918932] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15631), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [918953] = 4, + ACTIONS(21669), 1, + anon_sym_STAR, + STATE(14981), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + [918976] = 4, + ACTIONS(21673), 1, + anon_sym_and, + STATE(15098), 1, + aux_sym__exdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21671), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [918999] = 4, + ACTIONS(21675), 1, + anon_sym_STAR, + STATE(14981), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + [919022] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [919043] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [919066] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15623), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [919087] = 4, + ACTIONS(21680), 1, + anon_sym_and, + STATE(15106), 1, + aux_sym__strdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21678), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [919110] = 3, + ACTIONS(21682), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + [919131] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21684), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [919150] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [919171] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [919192] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15715), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [919213] = 4, + ACTIONS(21686), 1, + anon_sym_STAR, + STATE(15039), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [919236] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [919257] = 4, + ACTIONS(21688), 1, + anon_sym_STAR, + STATE(15041), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [919280] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [919301] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15938), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15940), 10, + sym__alphaAlphaNumeric_ident, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [919322] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15627), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [919343] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919362] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919381] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 10, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919402] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919421] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919440] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 10, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919461] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919480] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919499] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919518] = 3, + ACTIONS(21690), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [919539] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919558] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919577] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919596] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919615] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919634] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919653] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [919676] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 10, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919697] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919716] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919735] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 10, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919756] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919775] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919794] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919813] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919832] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919851] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919870] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919889] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919908] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919927] = 3, + ACTIONS(15938), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15940), 11, + sym__alphaAlphaNumeric_ident, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_where, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [919948] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [919967] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [919986] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [920005] = 3, + ACTIONS(21692), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + [920026] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 12, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [920045] = 4, + ACTIONS(21696), 1, + anon_sym_and, + STATE(15088), 1, + aux_sym__valdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21694), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920068] = 3, + ACTIONS(21698), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21684), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920089] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920112] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920133] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920154] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920177] = 4, + ACTIONS(21686), 1, + anon_sym_STAR, + STATE(15040), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [920200] = 4, + ACTIONS(21700), 1, + anon_sym_STAR, + STATE(15040), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [920223] = 4, + ACTIONS(21688), 1, + anon_sym_STAR, + STATE(15042), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [920246] = 4, + ACTIONS(21703), 1, + anon_sym_STAR, + STATE(15042), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [920269] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920290] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920311] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920334] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920355] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920376] = 3, + ACTIONS(21706), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21708), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920397] = 3, + ACTIONS(21712), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21710), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920418] = 4, + ACTIONS(21714), 1, + anon_sym_and, + STATE(15056), 1, + aux_sym__valdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21694), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920441] = 3, + ACTIONS(21716), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21684), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920462] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920483] = 4, + ACTIONS(21718), 1, + anon_sym_and, + STATE(15059), 1, + aux_sym__exdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21671), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920506] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920527] = 13, + ACTIONS(21720), 1, + anon_sym_COMMA, + ACTIONS(21722), 1, + anon_sym_RPAREN, + ACTIONS(21724), 1, + anon_sym_COLON, + ACTIONS(21726), 1, + anon_sym_SEMI, + ACTIONS(21728), 1, + anon_sym_andalso, + ACTIONS(21730), 1, + anon_sym_orelse, + ACTIONS(21732), 1, + anon_sym_handle, + ACTIONS(21734), 1, + anon_sym_BSLASH_BSLASH, + STATE(2056), 1, + aux_sym_record_exp_repeat1, + STATE(2057), 1, + aux_sym_sequence_exp_repeat1, + STATE(21291), 1, + aux_sym_tuple_exp_repeat1, + STATE(21292), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [920568] = 4, + ACTIONS(21738), 1, + anon_sym_and, + STATE(15056), 1, + aux_sym__valdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21736), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920591] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [920612] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920633] = 4, + ACTIONS(21743), 1, + anon_sym_and, + STATE(15059), 1, + aux_sym__exdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21741), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920656] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15611), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [920677] = 4, + ACTIONS(21714), 1, + anon_sym_and, + STATE(15050), 1, + aux_sym__valdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21746), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920700] = 4, + ACTIONS(21718), 1, + anon_sym_and, + STATE(15053), 1, + aux_sym__exdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21748), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920723] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920746] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920767] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [920788] = 4, + ACTIONS(21750), 1, + anon_sym_and, + STATE(15067), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18768), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920811] = 4, + ACTIONS(21752), 1, + anon_sym_and, + STATE(15067), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16667), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920834] = 4, + ACTIONS(21696), 1, + anon_sym_and, + STATE(15033), 1, + aux_sym__valdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21746), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920857] = 4, + ACTIONS(21750), 1, + anon_sym_and, + STATE(15066), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18704), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920880] = 4, + ACTIONS(21755), 1, + anon_sym_and, + STATE(15071), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18768), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920903] = 4, + ACTIONS(21757), 1, + anon_sym_and, + STATE(15071), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16667), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [920926] = 4, + ACTIONS(21760), 1, + anon_sym_PIPE, + STATE(15074), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [920949] = 4, + ACTIONS(21760), 1, + anon_sym_PIPE, + STATE(15074), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [920972] = 4, + ACTIONS(21762), 1, + anon_sym_PIPE, + STATE(15074), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [920995] = 3, + ACTIONS(21765), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21708), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921016] = 4, + ACTIONS(21755), 1, + anon_sym_and, + STATE(15070), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(18704), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921039] = 4, + ACTIONS(21669), 1, + anon_sym_STAR, + STATE(14979), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + [921062] = 3, + ACTIONS(21767), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21710), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921083] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21769), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921102] = 4, + ACTIONS(21673), 1, + anon_sym_and, + STATE(14980), 1, + aux_sym__exdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21748), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921125] = 4, + ACTIONS(21680), 1, + anon_sym_and, + STATE(14985), 1, + aux_sym__strdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21771), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921148] = 4, + ACTIONS(21760), 1, + anon_sym_PIPE, + STATE(15072), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [921171] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21708), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921190] = 4, + ACTIONS(21760), 1, + anon_sym_PIPE, + STATE(15073), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [921213] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21736), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921232] = 13, + ACTIONS(21724), 1, + anon_sym_COLON, + ACTIONS(21728), 1, + anon_sym_andalso, + ACTIONS(21730), 1, + anon_sym_orelse, + ACTIONS(21732), 1, + anon_sym_handle, + ACTIONS(21734), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(21773), 1, + anon_sym_COMMA, + ACTIONS(21775), 1, + anon_sym_RPAREN, + ACTIONS(21777), 1, + anon_sym_SEMI, + STATE(1886), 1, + aux_sym_record_exp_repeat1, + STATE(1887), 1, + aux_sym_sequence_exp_repeat1, + STATE(20492), 1, + aux_sym_tuple_exp_repeat1, + STATE(20494), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [921273] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [921294] = 4, + ACTIONS(21779), 1, + anon_sym_and, + STATE(15088), 1, + aux_sym__valdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21736), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921317] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21385), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921336] = 3, + ACTIONS(21782), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921357] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [921378] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [921399] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15699), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [921420] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15707), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [921441] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 9, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [921464] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15533), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [921487] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21741), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921506] = 4, + ACTIONS(21784), 1, + anon_sym_and, + STATE(15098), 1, + aux_sym__exdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21741), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921529] = 3, + ACTIONS(21789), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21787), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921550] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [921571] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15735), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [921592] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15561), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [921613] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [921634] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [921655] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21791), 12, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921674] = 4, + ACTIONS(21793), 1, + anon_sym_and, + STATE(15106), 1, + aux_sym__strdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21791), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921697] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [921718] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20709), 12, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921737] = 13, + ACTIONS(21724), 1, + anon_sym_COLON, + ACTIONS(21728), 1, + anon_sym_andalso, + ACTIONS(21730), 1, + anon_sym_orelse, + ACTIONS(21732), 1, + anon_sym_handle, + ACTIONS(21734), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(21796), 1, + anon_sym_COMMA, + ACTIONS(21798), 1, + anon_sym_RPAREN, + ACTIONS(21800), 1, + anon_sym_SEMI, + STATE(1863), 1, + aux_sym_record_exp_repeat1, + STATE(1864), 1, + aux_sym_sequence_exp_repeat1, + STATE(20395), 1, + aux_sym_tuple_exp_repeat1, + STATE(20397), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [921778] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 9, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [921801] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [921822] = 3, + ACTIONS(21802), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921843] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15571), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [921866] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15575), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [921887] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [921908] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15603), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [921929] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [921950] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15583), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [921971] = 3, + ACTIONS(21804), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21787), 11, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_and, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [921992] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [922013] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [922034] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [922055] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20755), 12, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [922074] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [922095] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [922116] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15595), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BSLASH_BSLASH, + [922137] = 4, + ACTIONS(21806), 1, + anon_sym_and, + STATE(15128), 1, + aux_sym__strdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21678), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [922160] = 4, + ACTIONS(21808), 1, + anon_sym_and, + STATE(15128), 1, + aux_sym__strdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21791), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [922183] = 3, + ACTIONS(21811), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + [922204] = 4, + ACTIONS(21806), 1, + anon_sym_and, + STATE(15127), 1, + aux_sym__strdesc_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21771), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [922227] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [922248] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [922268] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [922288] = 4, + ACTIONS(21813), 1, + anon_sym_STAR, + STATE(15203), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 9, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [922310] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [922330] = 12, + ACTIONS(21815), 1, + anon_sym_COMMA, + ACTIONS(21817), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21821), 1, + anon_sym_SEMI, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + STATE(1187), 1, + aux_sym_record_exp_repeat1, + STATE(1188), 1, + aux_sym_sequence_exp_repeat1, + STATE(20441), 1, + aux_sym_tuple_exp_repeat1, + STATE(20443), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [922368] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20118), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20115), 8, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym__, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [922388] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20123), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20121), 8, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym__, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [922408] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21829), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [922426] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15595), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [922446] = 4, + ACTIONS(21831), 1, + anon_sym_STAR, + STATE(15222), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [922468] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15567), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15571), 5, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [922490] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15575), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [922510] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [922530] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21833), 1, + anon_sym_COMMA, + ACTIONS(21835), 1, + anon_sym_RPAREN, + ACTIONS(21837), 1, + anon_sym_SEMI, + STATE(1463), 1, + aux_sym_record_exp_repeat1, + STATE(1464), 1, + aux_sym_sequence_exp_repeat1, + STATE(20300), 1, + aux_sym_tuple_exp_repeat1, + STATE(20304), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [922568] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [922590] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21839), 1, + anon_sym_COMMA, + ACTIONS(21841), 1, + anon_sym_RPAREN, + ACTIONS(21843), 1, + anon_sym_SEMI, + STATE(2250), 1, + aux_sym_record_exp_repeat1, + STATE(2251), 1, + aux_sym_sequence_exp_repeat1, + STATE(19334), 1, + aux_sym_tuple_exp_repeat1, + STATE(19338), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [922628] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [922646] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [922666] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20131), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20129), 8, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym__, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [922686] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20135), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20133), 8, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym__, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [922706] = 6, + ACTIONS(21845), 1, + anon_sym_COLON, + ACTIONS(21847), 1, + anon_sym_andalso, + ACTIONS(21849), 1, + anon_sym_orelse, + ACTIONS(21851), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_else, + anon_sym_PIPE, + [922732] = 6, + ACTIONS(21845), 1, + anon_sym_COLON, + ACTIONS(21847), 1, + anon_sym_andalso, + ACTIONS(21849), 1, + anon_sym_orelse, + ACTIONS(21851), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_else, + anon_sym_PIPE, + [922758] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20139), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20137), 8, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym__, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [922778] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20143), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20141), 8, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym__, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [922798] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15583), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [922818] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21853), 1, + anon_sym_COMMA, + ACTIONS(21855), 1, + anon_sym_RPAREN, + ACTIONS(21857), 1, + anon_sym_SEMI, + STATE(1799), 1, + aux_sym_record_exp_repeat1, + STATE(1800), 1, + aux_sym_sequence_exp_repeat1, + STATE(20122), 1, + aux_sym_tuple_exp_repeat1, + STATE(20124), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [922856] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [922874] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21859), 1, + anon_sym_COMMA, + ACTIONS(21861), 1, + anon_sym_RPAREN, + ACTIONS(21863), 1, + anon_sym_SEMI, + STATE(2162), 1, + aux_sym_record_exp_repeat1, + STATE(2163), 1, + aux_sym_sequence_exp_repeat1, + STATE(20211), 1, + aux_sym_tuple_exp_repeat1, + STATE(20212), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [922912] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [922932] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [922950] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21865), 1, + anon_sym_COMMA, + ACTIONS(21867), 1, + anon_sym_RPAREN, + ACTIONS(21869), 1, + anon_sym_SEMI, + STATE(2271), 1, + aux_sym_record_exp_repeat1, + STATE(2272), 1, + aux_sym_sequence_exp_repeat1, + STATE(19491), 1, + aux_sym_tuple_exp_repeat1, + STATE(19494), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [922988] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20265), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20263), 8, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym__, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [923008] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15715), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [923028] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15699), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [923048] = 4, + ACTIONS(21871), 1, + anon_sym_STAR, + STATE(15257), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 9, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [923070] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15583), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [923090] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21873), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [923108] = 12, + ACTIONS(21773), 1, + anon_sym_COMMA, + ACTIONS(21775), 1, + anon_sym_RPAREN, + ACTIONS(21777), 1, + anon_sym_SEMI, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + STATE(1886), 1, + aux_sym_record_exp_repeat1, + STATE(1887), 1, + aux_sym_sequence_exp_repeat1, + STATE(20492), 1, + aux_sym_tuple_exp_repeat1, + STATE(20494), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [923146] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [923164] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15603), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [923184] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21875), 1, + anon_sym_COMMA, + ACTIONS(21877), 1, + anon_sym_RPAREN, + ACTIONS(21879), 1, + anon_sym_SEMI, + STATE(2292), 1, + aux_sym_record_exp_repeat1, + STATE(2293), 1, + aux_sym_sequence_exp_repeat1, + STATE(19683), 1, + aux_sym_tuple_exp_repeat1, + STATE(19684), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [923222] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [923242] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [923260] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [923280] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21881), 1, + anon_sym_COMMA, + ACTIONS(21883), 1, + anon_sym_RPAREN, + ACTIONS(21885), 1, + anon_sym_SEMI, + STATE(1333), 1, + aux_sym_record_exp_repeat1, + STATE(1334), 1, + aux_sym_sequence_exp_repeat1, + STATE(19904), 1, + aux_sym_tuple_exp_repeat1, + STATE(20049), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [923318] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [923338] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [923358] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21887), 1, + anon_sym_COMMA, + ACTIONS(21889), 1, + anon_sym_RPAREN, + ACTIONS(21891), 1, + anon_sym_SEMI, + STATE(1505), 1, + aux_sym_record_exp_repeat1, + STATE(1506), 1, + aux_sym_sequence_exp_repeat1, + STATE(20902), 1, + aux_sym_tuple_exp_repeat1, + STATE(20914), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [923396] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [923414] = 3, + ACTIONS(21845), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + [923434] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15595), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [923454] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15715), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [923474] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15611), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [923494] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15631), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [923514] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [923534] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [923554] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [923574] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15603), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [923594] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [923614] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [923634] = 4, + ACTIONS(21893), 1, + anon_sym_STAR, + STATE(15277), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [923656] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15611), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [923676] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15631), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [923696] = 12, + ACTIONS(21720), 1, + anon_sym_COMMA, + ACTIONS(21722), 1, + anon_sym_RPAREN, + ACTIONS(21726), 1, + anon_sym_SEMI, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + STATE(2056), 1, + aux_sym_record_exp_repeat1, + STATE(2057), 1, + aux_sym_sequence_exp_repeat1, + STATE(21291), 1, + aux_sym_tuple_exp_repeat1, + STATE(21292), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [923734] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [923754] = 4, + ACTIONS(21895), 1, + anon_sym_STAR, + STATE(15280), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [923776] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15627), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [923796] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15699), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [923816] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21897), 1, + anon_sym_COMMA, + ACTIONS(21899), 1, + anon_sym_RPAREN, + ACTIONS(21901), 1, + anon_sym_SEMI, + STATE(1354), 1, + aux_sym_record_exp_repeat1, + STATE(1355), 1, + aux_sym_sequence_exp_repeat1, + STATE(19373), 1, + aux_sym_tuple_exp_repeat1, + STATE(19467), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [923854] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [923874] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21903), 1, + anon_sym_COMMA, + ACTIONS(21905), 1, + anon_sym_RPAREN, + ACTIONS(21907), 1, + anon_sym_SEMI, + STATE(1820), 1, + aux_sym_record_exp_repeat1, + STATE(1821), 1, + aux_sym_sequence_exp_repeat1, + STATE(20203), 1, + aux_sym_tuple_exp_repeat1, + STATE(20204), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [923912] = 4, + ACTIONS(21813), 1, + anon_sym_STAR, + STATE(15204), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 9, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [923934] = 4, + ACTIONS(21909), 1, + anon_sym_STAR, + STATE(15204), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 9, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [923956] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15707), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [923976] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21912), 1, + anon_sym_COMMA, + ACTIONS(21914), 1, + anon_sym_RPAREN, + ACTIONS(21916), 1, + anon_sym_SEMI, + STATE(1421), 1, + aux_sym_record_exp_repeat1, + STATE(1422), 1, + aux_sym_sequence_exp_repeat1, + STATE(21211), 1, + aux_sym_tuple_exp_repeat1, + STATE(21249), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [924014] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21918), 1, + anon_sym_COMMA, + ACTIONS(21920), 1, + anon_sym_RPAREN, + ACTIONS(21922), 1, + anon_sym_SEMI, + STATE(2313), 1, + aux_sym_record_exp_repeat1, + STATE(2314), 1, + aux_sym_sequence_exp_repeat1, + STATE(19846), 1, + aux_sym_tuple_exp_repeat1, + STATE(19850), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [924052] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [924074] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924092] = 3, + ACTIONS(21924), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [924112] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(476), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(474), 8, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym__, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [924132] = 3, + ACTIONS(21926), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [924152] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [924172] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21928), 1, + anon_sym_COMMA, + ACTIONS(21930), 1, + anon_sym_RPAREN, + ACTIONS(21932), 1, + anon_sym_SEMI, + STATE(2335), 1, + aux_sym_record_exp_repeat1, + STATE(2336), 1, + aux_sym_sequence_exp_repeat1, + STATE(20102), 1, + aux_sym_tuple_exp_repeat1, + STATE(20105), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [924210] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924228] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15525), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [924248] = 4, + ACTIONS(21845), 1, + anon_sym_COLON, + ACTIONS(21847), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + [924270] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15707), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [924290] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924308] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924326] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924344] = 4, + ACTIONS(21831), 1, + anon_sym_STAR, + STATE(15223), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [924366] = 4, + ACTIONS(21934), 1, + anon_sym_STAR, + STATE(15223), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [924388] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924406] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [924424] = 3, + ACTIONS(21937), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [924444] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924462] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924480] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [924498] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [924516] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924534] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21939), 1, + anon_sym_COMMA, + ACTIONS(21941), 1, + anon_sym_RPAREN, + ACTIONS(21943), 1, + anon_sym_SEMI, + STATE(1526), 1, + aux_sym_record_exp_repeat1, + STATE(1527), 1, + aux_sym_sequence_exp_repeat1, + STATE(21257), 1, + aux_sym_tuple_exp_repeat1, + STATE(21259), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [924572] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924592] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924610] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21945), 1, + anon_sym_COMMA, + ACTIONS(21947), 1, + anon_sym_RPAREN, + ACTIONS(21949), 1, + anon_sym_SEMI, + STATE(2357), 1, + aux_sym_record_exp_repeat1, + STATE(2358), 1, + aux_sym_sequence_exp_repeat1, + STATE(20206), 1, + aux_sym_tuple_exp_repeat1, + STATE(20209), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [924648] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15529), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15533), 5, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [924670] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15938), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(15940), 9, + sym__alphaAlphaNumeric_ident, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [924690] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924708] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [924726] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924746] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21951), 1, + anon_sym_COMMA, + ACTIONS(21953), 1, + anon_sym_RPAREN, + ACTIONS(21955), 1, + anon_sym_SEMI, + STATE(1840), 1, + aux_sym_record_exp_repeat1, + STATE(1841), 1, + aux_sym_sequence_exp_repeat1, + STATE(20296), 1, + aux_sym_tuple_exp_repeat1, + STATE(20298), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [924784] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924802] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924820] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [924840] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [924858] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [924878] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21957), 1, + anon_sym_COMMA, + ACTIONS(21959), 1, + anon_sym_RPAREN, + ACTIONS(21961), 1, + anon_sym_SEMI, + STATE(1757), 1, + aux_sym_record_exp_repeat1, + STATE(1758), 1, + aux_sym_sequence_exp_repeat1, + STATE(19873), 1, + aux_sym_tuple_exp_repeat1, + STATE(19875), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [924916] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21963), 1, + anon_sym_COMMA, + ACTIONS(21965), 1, + anon_sym_RPAREN, + ACTIONS(21967), 1, + anon_sym_SEMI, + STATE(2378), 1, + aux_sym_record_exp_repeat1, + STATE(2379), 1, + aux_sym_sequence_exp_repeat1, + STATE(20310), 1, + aux_sym_tuple_exp_repeat1, + STATE(20311), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [924954] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [924974] = 3, + ACTIONS(21969), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + [924994] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [925012] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [925030] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15735), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [925050] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21971), 1, + anon_sym_COMMA, + ACTIONS(21973), 1, + anon_sym_RPAREN, + ACTIONS(21975), 1, + anon_sym_SEMI, + STATE(1208), 1, + aux_sym_record_exp_repeat1, + STATE(1209), 1, + aux_sym_sequence_exp_repeat1, + STATE(20741), 1, + aux_sym_tuple_exp_repeat1, + STATE(20742), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [925088] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [925108] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15623), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [925128] = 4, + ACTIONS(21871), 1, + anon_sym_STAR, + STATE(15258), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 9, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [925150] = 4, + ACTIONS(21977), 1, + anon_sym_STAR, + STATE(15258), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 9, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [925172] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21980), 1, + anon_sym_COMMA, + ACTIONS(21982), 1, + anon_sym_RPAREN, + ACTIONS(21984), 1, + anon_sym_SEMI, + STATE(1547), 1, + aux_sym_record_exp_repeat1, + STATE(1548), 1, + aux_sym_sequence_exp_repeat1, + STATE(20669), 1, + aux_sym_tuple_exp_repeat1, + STATE(20775), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [925210] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21986), 1, + anon_sym_COMMA, + ACTIONS(21988), 1, + anon_sym_RPAREN, + ACTIONS(21990), 1, + anon_sym_SEMI, + STATE(1907), 1, + aux_sym_record_exp_repeat1, + STATE(1908), 1, + aux_sym_sequence_exp_repeat1, + STATE(20601), 1, + aux_sym_tuple_exp_repeat1, + STATE(20607), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [925248] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [925266] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21992), 1, + anon_sym_COMMA, + ACTIONS(21994), 1, + anon_sym_RPAREN, + ACTIONS(21996), 1, + anon_sym_SEMI, + STATE(2399), 1, + aux_sym_record_exp_repeat1, + STATE(2400), 1, + aux_sym_sequence_exp_repeat1, + STATE(20402), 1, + aux_sym_tuple_exp_repeat1, + STATE(20405), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [925304] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(21998), 1, + anon_sym_COMMA, + ACTIONS(22000), 1, + anon_sym_RPAREN, + ACTIONS(22002), 1, + anon_sym_SEMI, + STATE(2184), 1, + aux_sym_record_exp_repeat1, + STATE(2185), 1, + aux_sym_sequence_exp_repeat1, + STATE(20522), 1, + aux_sym_tuple_exp_repeat1, + STATE(20526), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [925342] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [925360] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15561), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [925380] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15715), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [925400] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [925418] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [925436] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22004), 1, + anon_sym_COMMA, + ACTIONS(22006), 1, + anon_sym_RPAREN, + ACTIONS(22008), 1, + anon_sym_SEMI, + STATE(2420), 1, + aux_sym_record_exp_repeat1, + STATE(2421), 1, + aux_sym_sequence_exp_repeat1, + STATE(20483), 1, + aux_sym_tuple_exp_repeat1, + STATE(20485), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [925474] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [925492] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [925512] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22010), 1, + anon_sym_COMMA, + ACTIONS(22012), 1, + anon_sym_RPAREN, + ACTIONS(22014), 1, + anon_sym_SEMI, + STATE(1121), 1, + aux_sym_record_exp_repeat1, + STATE(1122), 1, + aux_sym_sequence_exp_repeat1, + STATE(20637), 1, + aux_sym_tuple_exp_repeat1, + STATE(20639), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [925550] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [925568] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [925590] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15627), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [925610] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22016), 1, + anon_sym_COMMA, + ACTIONS(22018), 1, + anon_sym_RPAREN, + ACTIONS(22020), 1, + anon_sym_SEMI, + STATE(2443), 1, + aux_sym_record_exp_repeat1, + STATE(2444), 1, + aux_sym_sequence_exp_repeat1, + STATE(20586), 1, + aux_sym_tuple_exp_repeat1, + STATE(20588), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [925648] = 4, + ACTIONS(21893), 1, + anon_sym_STAR, + STATE(15278), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [925670] = 4, + ACTIONS(22022), 1, + anon_sym_STAR, + STATE(15278), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [925692] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22025), 1, + anon_sym_COMMA, + ACTIONS(22027), 1, + anon_sym_RPAREN, + ACTIONS(22029), 1, + anon_sym_SEMI, + STATE(2845), 1, + aux_sym_record_exp_repeat1, + STATE(2846), 1, + aux_sym_sequence_exp_repeat1, + STATE(19776), 1, + aux_sym_tuple_exp_repeat1, + STATE(19778), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [925730] = 4, + ACTIONS(21895), 1, + anon_sym_STAR, + STATE(15281), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [925752] = 4, + ACTIONS(22031), 1, + anon_sym_STAR, + STATE(15281), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [925774] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [925792] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [925810] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22034), 1, + anon_sym_COMMA, + ACTIONS(22036), 1, + anon_sym_RPAREN, + ACTIONS(22038), 1, + anon_sym_SEMI, + STATE(1568), 1, + aux_sym_record_exp_repeat1, + STATE(1569), 1, + aux_sym_sequence_exp_repeat1, + STATE(20346), 1, + aux_sym_tuple_exp_repeat1, + STATE(20351), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [925848] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [925866] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20178), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20176), 8, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym__, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [925886] = 4, + ACTIONS(22040), 1, + anon_sym_PIPE, + STATE(15293), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [925908] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [925928] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17502), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(17500), 8, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym__, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [925948] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [925968] = 4, + ACTIONS(22040), 1, + anon_sym_PIPE, + STATE(15293), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [925990] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22042), 1, + anon_sym_COMMA, + ACTIONS(22044), 1, + anon_sym_RPAREN, + ACTIONS(22046), 1, + anon_sym_SEMI, + STATE(2464), 1, + aux_sym_record_exp_repeat1, + STATE(2465), 1, + aux_sym_sequence_exp_repeat1, + STATE(20693), 1, + aux_sym_tuple_exp_repeat1, + STATE(20695), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [926028] = 4, + ACTIONS(22048), 1, + anon_sym_PIPE, + STATE(15293), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [926050] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22051), 1, + anon_sym_COMMA, + ACTIONS(22053), 1, + anon_sym_RPAREN, + ACTIONS(22055), 1, + anon_sym_SEMI, + STATE(1694), 1, + aux_sym_record_exp_repeat1, + STATE(1695), 1, + aux_sym_sequence_exp_repeat1, + STATE(19318), 1, + aux_sym_tuple_exp_repeat1, + STATE(19319), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [926088] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22057), 1, + anon_sym_COMMA, + ACTIONS(22059), 1, + anon_sym_RPAREN, + ACTIONS(22061), 1, + anon_sym_SEMI, + STATE(1930), 1, + aux_sym_record_exp_repeat1, + STATE(1931), 1, + aux_sym_sequence_exp_repeat1, + STATE(20678), 1, + aux_sym_tuple_exp_repeat1, + STATE(20679), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [926126] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [926146] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [926164] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22063), 1, + anon_sym_COMMA, + ACTIONS(22065), 1, + anon_sym_RPAREN, + ACTIONS(22067), 1, + anon_sym_SEMI, + STATE(1229), 1, + aux_sym_record_exp_repeat1, + STATE(1230), 1, + aux_sym_sequence_exp_repeat1, + STATE(20870), 1, + aux_sym_tuple_exp_repeat1, + STATE(20872), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [926202] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [926224] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [926244] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22069), 1, + anon_sym_COMMA, + ACTIONS(22071), 1, + anon_sym_RPAREN, + ACTIONS(22073), 1, + anon_sym_SEMI, + STATE(2485), 1, + aux_sym_record_exp_repeat1, + STATE(2486), 1, + aux_sym_sequence_exp_repeat1, + STATE(20802), 1, + aux_sym_tuple_exp_repeat1, + STATE(20805), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [926282] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15575), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [926302] = 3, + ACTIONS(22075), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + [926322] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [926340] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [926358] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [926376] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15583), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [926396] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22077), 1, + anon_sym_COMMA, + ACTIONS(22079), 1, + anon_sym_RPAREN, + ACTIONS(22081), 1, + anon_sym_SEMI, + STATE(2506), 1, + aux_sym_record_exp_repeat1, + STATE(2507), 1, + aux_sym_sequence_exp_repeat1, + STATE(20904), 1, + aux_sym_tuple_exp_repeat1, + STATE(20906), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [926434] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20269), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20267), 8, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym__, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [926454] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [926472] = 4, + ACTIONS(22040), 1, + anon_sym_PIPE, + STATE(15287), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [926494] = 4, + ACTIONS(22040), 1, + anon_sym_PIPE, + STATE(15291), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [926516] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22083), 1, + anon_sym_COMMA, + ACTIONS(22085), 1, + anon_sym_RPAREN, + ACTIONS(22087), 1, + anon_sym_SEMI, + STATE(2077), 1, + aux_sym_record_exp_repeat1, + STATE(2078), 1, + aux_sym_sequence_exp_repeat1, + STATE(19505), 1, + aux_sym_tuple_exp_repeat1, + STATE(19671), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [926554] = 10, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14813), 1, + sym_typedesc, + STATE(15048), 1, + sym_tycon, + STATE(15076), 1, + sym_typbind, + STATE(23573), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(15334), 2, + sym__typbind, + sym__typedesc, + [926588] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22095), 1, + anon_sym_COMMA, + ACTIONS(22097), 1, + anon_sym_RPAREN, + ACTIONS(22099), 1, + anon_sym_SEMI, + STATE(2530), 1, + aux_sym_record_exp_repeat1, + STATE(2531), 1, + aux_sym_sequence_exp_repeat1, + STATE(20980), 1, + aux_sym_tuple_exp_repeat1, + STATE(20982), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [926626] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [926644] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22101), 1, + anon_sym_COMMA, + ACTIONS(22103), 1, + anon_sym_RPAREN, + ACTIONS(22105), 1, + anon_sym_SEMI, + STATE(1375), 1, + aux_sym_record_exp_repeat1, + STATE(1376), 1, + aux_sym_sequence_exp_repeat1, + STATE(20849), 1, + aux_sym_tuple_exp_repeat1, + STATE(20853), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [926682] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [926702] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [926720] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [926738] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [926756] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22107), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [926774] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [926792] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22109), 1, + anon_sym_COMMA, + ACTIONS(22111), 1, + anon_sym_RPAREN, + ACTIONS(22113), 1, + anon_sym_SEMI, + STATE(1951), 1, + aux_sym_record_exp_repeat1, + STATE(1952), 1, + aux_sym_sequence_exp_repeat1, + STATE(20790), 1, + aux_sym_tuple_exp_repeat1, + STATE(20792), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [926830] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22115), 1, + anon_sym_COMMA, + ACTIONS(22117), 1, + anon_sym_RPAREN, + ACTIONS(22119), 1, + anon_sym_SEMI, + STATE(2551), 1, + aux_sym_record_exp_repeat1, + STATE(2552), 1, + aux_sym_sequence_exp_repeat1, + STATE(21065), 1, + aux_sym_tuple_exp_repeat1, + STATE(21066), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [926868] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [926886] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15525), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [926908] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [926926] = 6, + ACTIONS(21845), 1, + anon_sym_COLON, + ACTIONS(21847), 1, + anon_sym_andalso, + ACTIONS(21849), 1, + anon_sym_orelse, + ACTIONS(21851), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_else, + anon_sym_PIPE, + [926952] = 7, + ACTIONS(21845), 1, + anon_sym_COLON, + ACTIONS(21847), 1, + anon_sym_andalso, + ACTIONS(21849), 1, + anon_sym_orelse, + ACTIONS(21851), 1, + anon_sym_handle, + ACTIONS(22121), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + [926980] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [926998] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20153), 3, + sym_hol_cname_alphanumeric, + sym_hol_true, + sym_hol_false, + ACTIONS(20151), 8, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym__, + sym_hol_variable, + sym_hol_number, + sym_hol_string, + sym_hol_character, + [927018] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927038] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22123), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [927056] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22125), 1, + anon_sym_COMMA, + ACTIONS(22127), 1, + anon_sym_RPAREN, + ACTIONS(22129), 1, + anon_sym_SEMI, + STATE(1484), 1, + aux_sym_record_exp_repeat1, + STATE(1485), 1, + aux_sym_sequence_exp_repeat1, + STATE(20647), 1, + aux_sym_tuple_exp_repeat1, + STATE(20651), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [927094] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22131), 1, + anon_sym_COMMA, + ACTIONS(22133), 1, + anon_sym_RPAREN, + ACTIONS(22135), 1, + anon_sym_SEMI, + STATE(1442), 1, + aux_sym_record_exp_repeat1, + STATE(1443), 1, + aux_sym_sequence_exp_repeat1, + STATE(19924), 1, + aux_sym_tuple_exp_repeat1, + STATE(19946), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [927132] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [927150] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15699), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927170] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927188] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927206] = 3, + ACTIONS(22139), 1, + anon_sym_withtype, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22137), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [927226] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927246] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22141), 1, + anon_sym_COMMA, + ACTIONS(22143), 1, + anon_sym_RPAREN, + ACTIONS(22145), 1, + anon_sym_SEMI, + STATE(2572), 1, + aux_sym_record_exp_repeat1, + STATE(2573), 1, + aux_sym_sequence_exp_repeat1, + STATE(21168), 1, + aux_sym_tuple_exp_repeat1, + STATE(21170), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [927284] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927302] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22147), 1, + anon_sym_COMMA, + ACTIONS(22149), 1, + anon_sym_RPAREN, + ACTIONS(22151), 1, + anon_sym_SEMI, + STATE(1589), 1, + aux_sym_record_exp_repeat1, + STATE(1590), 1, + aux_sym_sequence_exp_repeat1, + STATE(19269), 1, + aux_sym_tuple_exp_repeat1, + STATE(19274), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [927340] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927358] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927376] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927394] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927414] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22153), 1, + anon_sym_COMMA, + ACTIONS(22155), 1, + anon_sym_RPAREN, + ACTIONS(22157), 1, + anon_sym_SEMI, + STATE(1250), 1, + aux_sym_record_exp_repeat1, + STATE(2883), 1, + aux_sym_sequence_exp_repeat1, + STATE(21026), 1, + aux_sym_tuple_exp_repeat1, + STATE(21027), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [927452] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22159), 1, + anon_sym_COMMA, + ACTIONS(22161), 1, + anon_sym_RPAREN, + ACTIONS(22163), 1, + anon_sym_SEMI, + STATE(1397), 1, + aux_sym_record_exp_repeat1, + STATE(1398), 1, + aux_sym_sequence_exp_repeat1, + STATE(19282), 1, + aux_sym_sequence_exp_repeat2, + STATE(21345), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [927490] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22165), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [927508] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22167), 1, + anon_sym_COMMA, + ACTIONS(22169), 1, + anon_sym_RPAREN, + ACTIONS(22171), 1, + anon_sym_SEMI, + STATE(2593), 1, + aux_sym_record_exp_repeat1, + STATE(2594), 1, + aux_sym_sequence_exp_repeat1, + STATE(21298), 1, + aux_sym_tuple_exp_repeat1, + STATE(21299), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [927546] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22173), 1, + anon_sym_COMMA, + ACTIONS(22175), 1, + anon_sym_RPAREN, + ACTIONS(22177), 1, + anon_sym_SEMI, + STATE(1715), 1, + aux_sym_record_exp_repeat1, + STATE(1716), 1, + aux_sym_sequence_exp_repeat1, + STATE(19501), 1, + aux_sym_tuple_exp_repeat1, + STATE(19502), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [927584] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927606] = 3, + ACTIONS(15938), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15940), 10, + sym__alphaAlphaNumeric_ident, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [927626] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22179), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [927644] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927664] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22181), 1, + anon_sym_COMMA, + ACTIONS(22183), 1, + anon_sym_RPAREN, + ACTIONS(22185), 1, + anon_sym_SEMI, + STATE(2205), 1, + aux_sym_record_exp_repeat1, + STATE(2206), 1, + aux_sym_sequence_exp_repeat1, + STATE(20846), 1, + aux_sym_tuple_exp_repeat1, + STATE(20867), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [927702] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22187), 1, + anon_sym_COMMA, + ACTIONS(22189), 1, + anon_sym_RPAREN, + ACTIONS(22191), 1, + anon_sym_SEMI, + STATE(2098), 1, + aux_sym_record_exp_repeat1, + STATE(2099), 1, + aux_sym_sequence_exp_repeat1, + STATE(20107), 1, + aux_sym_tuple_exp_repeat1, + STATE(20118), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [927740] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22193), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [927758] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22195), 1, + anon_sym_COMMA, + ACTIONS(22197), 1, + anon_sym_RPAREN, + ACTIONS(22199), 1, + anon_sym_SEMI, + STATE(1972), 1, + aux_sym_record_exp_repeat1, + STATE(1973), 1, + aux_sym_sequence_exp_repeat1, + STATE(20882), 1, + aux_sym_tuple_exp_repeat1, + STATE(20883), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [927796] = 3, + ACTIONS(22203), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22201), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [927816] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [927834] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927852] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15595), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927872] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [927892] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22205), 1, + anon_sym_COMMA, + ACTIONS(22207), 1, + anon_sym_RPAREN, + ACTIONS(22209), 1, + anon_sym_SEMI, + STATE(2035), 1, + aux_sym_record_exp_repeat1, + STATE(2036), 1, + aux_sym_sequence_exp_repeat1, + STATE(21233), 1, + aux_sym_tuple_exp_repeat1, + STATE(21234), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [927930] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [927948] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22211), 1, + anon_sym_COMMA, + ACTIONS(22213), 1, + anon_sym_RPAREN, + ACTIONS(22215), 1, + anon_sym_SEMI, + STATE(1123), 1, + aux_sym_record_exp_repeat1, + STATE(1127), 1, + aux_sym_sequence_exp_repeat1, + STATE(20511), 1, + aux_sym_tuple_exp_repeat1, + STATE(20567), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [927986] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22217), 1, + anon_sym_COMMA, + ACTIONS(22219), 1, + anon_sym_RPAREN, + ACTIONS(22221), 1, + anon_sym_SEMI, + STATE(2614), 1, + aux_sym_record_exp_repeat1, + STATE(2615), 1, + aux_sym_sequence_exp_repeat1, + STATE(19280), 1, + aux_sym_tuple_exp_repeat1, + STATE(19281), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [928024] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15623), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [928044] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15707), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928064] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22223), 1, + anon_sym_COMMA, + ACTIONS(22225), 1, + anon_sym_RPAREN, + ACTIONS(22227), 1, + anon_sym_SEMI, + STATE(1270), 1, + aux_sym_record_exp_repeat1, + STATE(1271), 1, + aux_sym_sequence_exp_repeat1, + STATE(21122), 1, + aux_sym_tuple_exp_repeat1, + STATE(21123), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [928102] = 4, + ACTIONS(22229), 1, + anon_sym_PIPE, + STATE(15377), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + [928124] = 4, + ACTIONS(22229), 1, + anon_sym_PIPE, + STATE(15377), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + [928146] = 4, + ACTIONS(22231), 1, + anon_sym_PIPE, + STATE(15377), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + [928168] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [928188] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [928208] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928226] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928248] = 4, + ACTIONS(22229), 1, + anon_sym_PIPE, + STATE(15375), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + [928270] = 4, + ACTIONS(22229), 1, + anon_sym_PIPE, + STATE(15376), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + [928292] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22234), 11, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [928310] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22236), 1, + anon_sym_COMMA, + ACTIONS(22238), 1, + anon_sym_RPAREN, + ACTIONS(22240), 1, + anon_sym_SEMI, + STATE(2866), 1, + aux_sym_record_exp_repeat1, + STATE(2867), 1, + aux_sym_sequence_exp_repeat1, + STATE(19816), 1, + aux_sym_tuple_exp_repeat1, + STATE(19817), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [928348] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15623), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928368] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22242), 1, + anon_sym_COMMA, + ACTIONS(22244), 1, + anon_sym_RPAREN, + ACTIONS(22246), 1, + anon_sym_SEMI, + STATE(2635), 1, + aux_sym_record_exp_repeat1, + STATE(2636), 1, + aux_sym_sequence_exp_repeat1, + STATE(19323), 1, + aux_sym_tuple_exp_repeat1, + STATE(19325), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [928406] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [928426] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [928446] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928464] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928482] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22248), 1, + anon_sym_COMMA, + ACTIONS(22250), 1, + anon_sym_RPAREN, + ACTIONS(22252), 1, + anon_sym_SEMI, + STATE(1291), 1, + aux_sym_record_exp_repeat1, + STATE(1292), 1, + aux_sym_sequence_exp_repeat1, + STATE(21193), 1, + aux_sym_tuple_exp_repeat1, + STATE(21194), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [928520] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928540] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928558] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22254), 1, + anon_sym_COMMA, + ACTIONS(22256), 1, + anon_sym_RPAREN, + ACTIONS(22258), 1, + anon_sym_SEMI, + STATE(2824), 1, + aux_sym_record_exp_repeat1, + STATE(2825), 1, + aux_sym_sequence_exp_repeat1, + STATE(19734), 1, + aux_sym_tuple_exp_repeat1, + STATE(19735), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [928596] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15603), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928616] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [928634] = 7, + ACTIONS(21845), 1, + anon_sym_COLON, + ACTIONS(21847), 1, + anon_sym_andalso, + ACTIONS(21849), 1, + anon_sym_orelse, + ACTIONS(21851), 1, + anon_sym_handle, + ACTIONS(22260), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + [928662] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928682] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15575), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928702] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22262), 1, + anon_sym_COMMA, + ACTIONS(22264), 1, + anon_sym_RPAREN, + ACTIONS(22266), 1, + anon_sym_SEMI, + STATE(1673), 1, + aux_sym_record_exp_repeat1, + STATE(1674), 1, + aux_sym_sequence_exp_repeat1, + STATE(21054), 1, + aux_sym_tuple_exp_repeat1, + STATE(21064), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [928740] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928758] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928776] = 3, + ACTIONS(22268), 1, + anon_sym_withtype, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22137), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [928796] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928814] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15611), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928834] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15631), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [928854] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22270), 1, + anon_sym_COMMA, + ACTIONS(22272), 1, + anon_sym_RPAREN, + ACTIONS(22274), 1, + anon_sym_SEMI, + STATE(1993), 1, + aux_sym_record_exp_repeat1, + STATE(1994), 1, + aux_sym_sequence_exp_repeat1, + STATE(20978), 1, + aux_sym_tuple_exp_repeat1, + STATE(20979), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [928892] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22276), 1, + anon_sym_COMMA, + ACTIONS(22278), 1, + anon_sym_RPAREN, + ACTIONS(22280), 1, + anon_sym_SEMI, + STATE(1610), 1, + aux_sym_record_exp_repeat1, + STATE(1611), 1, + aux_sym_sequence_exp_repeat1, + STATE(19744), 1, + aux_sym_tuple_exp_repeat1, + STATE(19751), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [928930] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15735), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [928950] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22282), 1, + anon_sym_COMMA, + ACTIONS(22284), 1, + anon_sym_RPAREN, + ACTIONS(22286), 1, + anon_sym_SEMI, + STATE(2803), 1, + aux_sym_record_exp_repeat1, + STATE(2804), 1, + aux_sym_sequence_exp_repeat1, + STATE(19692), 1, + aux_sym_tuple_exp_repeat1, + STATE(19693), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [928988] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15561), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [929008] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22288), 1, + anon_sym_COMMA, + ACTIONS(22290), 1, + anon_sym_RPAREN, + ACTIONS(22292), 1, + anon_sym_SEMI, + STATE(2656), 1, + aux_sym_record_exp_repeat1, + STATE(2657), 1, + aux_sym_sequence_exp_repeat1, + STATE(19376), 1, + aux_sym_tuple_exp_repeat1, + STATE(19378), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929046] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [929064] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22294), 1, + anon_sym_COMMA, + ACTIONS(22296), 1, + anon_sym_RPAREN, + ACTIONS(22298), 1, + anon_sym_SEMI, + STATE(1736), 1, + aux_sym_record_exp_repeat1, + STATE(1737), 1, + aux_sym_sequence_exp_repeat1, + STATE(19714), 1, + aux_sym_tuple_exp_repeat1, + STATE(19719), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929102] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(15627), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [929122] = 10, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14813), 1, + sym_typedesc, + STATE(15069), 1, + sym_typbind, + STATE(15075), 1, + sym_tycon, + STATE(23737), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(15334), 2, + sym__typbind, + sym__typedesc, + [929156] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22300), 1, + anon_sym_COMMA, + ACTIONS(22302), 1, + anon_sym_RPAREN, + ACTIONS(22304), 1, + anon_sym_SEMI, + STATE(2120), 1, + aux_sym_record_exp_repeat1, + STATE(2121), 1, + aux_sym_sequence_exp_repeat1, + STATE(21074), 1, + aux_sym_tuple_exp_repeat1, + STATE(21083), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929194] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [929214] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15561), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [929234] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [929256] = 6, + ACTIONS(21845), 1, + anon_sym_COLON, + ACTIONS(21847), 1, + anon_sym_andalso, + ACTIONS(21849), 1, + anon_sym_orelse, + ACTIONS(21851), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_else, + anon_sym_PIPE, + [929282] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [929300] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22306), 1, + anon_sym_COMMA, + ACTIONS(22308), 1, + anon_sym_RPAREN, + ACTIONS(22310), 1, + anon_sym_SEMI, + STATE(1166), 1, + aux_sym_record_exp_repeat1, + STATE(1167), 1, + aux_sym_sequence_exp_repeat1, + STATE(20103), 1, + aux_sym_tuple_exp_repeat1, + STATE(20116), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929338] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [929356] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [929374] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [929392] = 12, + ACTIONS(21796), 1, + anon_sym_COMMA, + ACTIONS(21798), 1, + anon_sym_RPAREN, + ACTIONS(21800), 1, + anon_sym_SEMI, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + STATE(1863), 1, + aux_sym_record_exp_repeat1, + STATE(1864), 1, + aux_sym_sequence_exp_repeat1, + STATE(20395), 1, + aux_sym_tuple_exp_repeat1, + STATE(20397), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929430] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22312), 1, + anon_sym_COMMA, + ACTIONS(22314), 1, + anon_sym_RPAREN, + ACTIONS(22316), 1, + anon_sym_SEMI, + STATE(2677), 1, + aux_sym_record_exp_repeat1, + STATE(2678), 1, + aux_sym_sequence_exp_repeat1, + STATE(19426), 1, + aux_sym_tuple_exp_repeat1, + STATE(19427), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929468] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22318), 1, + anon_sym_COMMA, + ACTIONS(22320), 1, + anon_sym_RPAREN, + ACTIONS(22322), 1, + anon_sym_SEMI, + STATE(1145), 1, + aux_sym_record_exp_repeat1, + STATE(1146), 1, + aux_sym_sequence_exp_repeat1, + STATE(19463), 1, + aux_sym_tuple_exp_repeat1, + STATE(19465), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929506] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22324), 1, + anon_sym_COMMA, + ACTIONS(22326), 1, + anon_sym_RPAREN, + ACTIONS(22328), 1, + anon_sym_SEMI, + STATE(1652), 1, + aux_sym_record_exp_repeat1, + STATE(1653), 1, + aux_sym_sequence_exp_repeat1, + STATE(20604), 1, + aux_sym_tuple_exp_repeat1, + STATE(20612), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929544] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22330), 1, + anon_sym_COMMA, + ACTIONS(22332), 1, + anon_sym_RPAREN, + ACTIONS(22334), 1, + anon_sym_SEMI, + STATE(2698), 1, + aux_sym_record_exp_repeat1, + STATE(2699), 1, + aux_sym_sequence_exp_repeat1, + STATE(19468), 1, + aux_sym_tuple_exp_repeat1, + STATE(19470), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929582] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [929600] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [929622] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [929640] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22336), 1, + anon_sym_COMMA, + ACTIONS(22338), 1, + anon_sym_RPAREN, + ACTIONS(22340), 1, + anon_sym_SEMI, + STATE(1312), 1, + aux_sym_record_exp_repeat1, + STATE(1313), 1, + aux_sym_sequence_exp_repeat1, + STATE(21300), 1, + aux_sym_tuple_exp_repeat1, + STATE(21301), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929678] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [929698] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [929716] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22342), 1, + anon_sym_COMMA, + ACTIONS(22344), 1, + anon_sym_RPAREN, + ACTIONS(22346), 1, + anon_sym_SEMI, + STATE(2719), 1, + aux_sym_record_exp_repeat1, + STATE(2720), 1, + aux_sym_sequence_exp_repeat1, + STATE(19511), 1, + aux_sym_tuple_exp_repeat1, + STATE(19512), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929754] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [929774] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [929792] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22348), 1, + anon_sym_COMMA, + ACTIONS(22350), 1, + anon_sym_RPAREN, + ACTIONS(22352), 1, + anon_sym_SEMI, + STATE(2014), 1, + aux_sym_record_exp_repeat1, + STATE(2015), 1, + aux_sym_sequence_exp_repeat1, + STATE(21092), 1, + aux_sym_tuple_exp_repeat1, + STATE(21093), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929830] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [929850] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [929868] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22354), 1, + anon_sym_COMMA, + ACTIONS(22356), 1, + anon_sym_RPAREN, + ACTIONS(22358), 1, + anon_sym_SEMI, + STATE(2141), 1, + aux_sym_record_exp_repeat1, + STATE(2142), 1, + aux_sym_sequence_exp_repeat1, + STATE(19699), 1, + aux_sym_tuple_exp_repeat1, + STATE(19704), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929906] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [929924] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22360), 1, + anon_sym_COMMA, + ACTIONS(22362), 1, + anon_sym_RPAREN, + ACTIONS(22364), 1, + anon_sym_SEMI, + STATE(2740), 1, + aux_sym_record_exp_repeat1, + STATE(2741), 1, + aux_sym_sequence_exp_repeat1, + STATE(19562), 1, + aux_sym_tuple_exp_repeat1, + STATE(19564), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [929962] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15735), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [929982] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22366), 1, + anon_sym_COMMA, + ACTIONS(22368), 1, + anon_sym_RPAREN, + ACTIONS(22370), 1, + anon_sym_SEMI, + STATE(1631), 1, + aux_sym_record_exp_repeat1, + STATE(1632), 1, + aux_sym_sequence_exp_repeat1, + STATE(20290), 1, + aux_sym_tuple_exp_repeat1, + STATE(20292), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [930020] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [930040] = 3, + ACTIONS(22372), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22201), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [930060] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930080] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930098] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930116] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [930136] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22374), 1, + anon_sym_COMMA, + ACTIONS(22376), 1, + anon_sym_RPAREN, + ACTIONS(22378), 1, + anon_sym_SEMI, + STATE(1778), 1, + aux_sym_record_exp_repeat1, + STATE(1779), 1, + aux_sym_sequence_exp_repeat1, + STATE(19262), 1, + aux_sym_tuple_exp_repeat1, + STATE(19990), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [930174] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [930196] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930214] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930232] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930250] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930268] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22380), 1, + anon_sym_COMMA, + ACTIONS(22382), 1, + anon_sym_RPAREN, + ACTIONS(22384), 1, + anon_sym_SEMI, + STATE(2761), 1, + aux_sym_record_exp_repeat1, + STATE(2762), 1, + aux_sym_sequence_exp_repeat1, + STATE(19605), 1, + aux_sym_tuple_exp_repeat1, + STATE(19607), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [930306] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930324] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930342] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930360] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [930380] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930400] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930418] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930436] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [930454] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930474] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930492] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930510] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930528] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930546] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22386), 1, + anon_sym_COMMA, + ACTIONS(22388), 1, + anon_sym_RPAREN, + ACTIONS(22390), 1, + anon_sym_SEMI, + STATE(2229), 1, + aux_sym_record_exp_repeat1, + STATE(2230), 1, + aux_sym_sequence_exp_repeat1, + STATE(21135), 1, + aux_sym_tuple_exp_repeat1, + STATE(21146), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [930584] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [930602] = 12, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22392), 1, + anon_sym_COMMA, + ACTIONS(22394), 1, + anon_sym_RPAREN, + ACTIONS(22396), 1, + anon_sym_SEMI, + STATE(2782), 1, + aux_sym_record_exp_repeat1, + STATE(2783), 1, + aux_sym_sequence_exp_repeat1, + STATE(19650), 1, + aux_sym_tuple_exp_repeat1, + STATE(19651), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [930640] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930658] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [930676] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [930694] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 11, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [930712] = 3, + ACTIONS(22398), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [930732] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [930752] = 4, + ACTIONS(22400), 1, + anon_sym_STAR, + STATE(15873), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 8, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + [930773] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [930790] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22402), 1, + anon_sym_RBRACE, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23726), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [930821] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22406), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20021), 1, + sym_tyrow, + STATE(24712), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [930852] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22408), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24713), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [930883] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22410), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24729), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [930914] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22412), 1, + anon_sym_COMMA, + ACTIONS(22414), 1, + anon_sym_RBRACE, + STATE(15914), 1, + aux_sym_record_exp_repeat1, + STATE(21207), 1, + sym_tyrow, + STATE(24342), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [930945] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22416), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20267), 1, + sym_tyrow, + STATE(22014), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [930976] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22418), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21695), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931007] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22420), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21367), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931038] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22422), 1, + anon_sym_COMMA, + ACTIONS(22424), 1, + anon_sym_RBRACE, + STATE(15498), 1, + aux_sym_record_exp_repeat1, + STATE(20024), 1, + sym_tyrow, + STATE(21372), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931069] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22426), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24708), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931100] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22428), 1, + anon_sym_COMMA, + ACTIONS(22430), 1, + anon_sym_RBRACE, + STATE(15505), 1, + aux_sym_record_exp_repeat1, + STATE(19942), 1, + sym_tyrow, + STATE(24024), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931131] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22432), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20028), 1, + sym_tyrow, + STATE(21378), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931162] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22434), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22033), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931193] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22436), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23469), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931224] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22438), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22079), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931255] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22440), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22048), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931286] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22442), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22051), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931317] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22444), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21079), 1, + sym_tyrow, + STATE(24528), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931348] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22446), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19944), 1, + sym_tyrow, + STATE(24040), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931379] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22448), 1, + anon_sym_COMMA, + ACTIONS(22450), 1, + anon_sym_RBRACE, + STATE(15548), 1, + aux_sym_record_exp_repeat1, + STATE(19456), 1, + sym_tyrow, + STATE(22824), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931410] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22452), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21379), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931441] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22454), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21384), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931472] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22456), 1, + anon_sym_COMMA, + ACTIONS(22458), 1, + anon_sym_RBRACE, + STATE(15511), 1, + aux_sym_record_exp_repeat1, + STATE(21333), 1, + sym_tyrow, + STATE(24649), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931503] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22460), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21387), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931534] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22462), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19675), 1, + sym_tyrow, + STATE(22780), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931565] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22464), 1, + anon_sym_COMMA, + ACTIONS(22466), 1, + anon_sym_RBRACE, + STATE(15514), 1, + aux_sym_record_exp_repeat1, + STATE(20033), 1, + sym_tyrow, + STATE(21392), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931596] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22468), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24043), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931627] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22470), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20035), 1, + sym_tyrow, + STATE(21397), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931658] = 4, + ACTIONS(22472), 1, + anon_sym_STAR, + STATE(15843), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + [931679] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22474), 1, + anon_sym_COMMA, + ACTIONS(22476), 1, + anon_sym_RBRACE, + STATE(15522), 1, + aux_sym_record_exp_repeat1, + STATE(20329), 1, + sym_tyrow, + STATE(22161), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931710] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22478), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21398), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931741] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22480), 1, + anon_sym_COMMA, + ACTIONS(22482), 1, + anon_sym_RBRACE, + STATE(15562), 1, + aux_sym_record_exp_repeat1, + STATE(19397), 1, + sym_tyrow, + STATE(21731), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931772] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22484), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24049), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931803] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22486), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24057), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931834] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22488), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21403), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931865] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22490), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20345), 1, + sym_tyrow, + STATE(22194), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931896] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22492), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23480), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931927] = 3, + ACTIONS(22494), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [931946] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22496), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21406), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [931977] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18399), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24893), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [932012] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22500), 1, + anon_sym_COMMA, + ACTIONS(22502), 1, + anon_sym_RBRACE, + STATE(15535), 1, + aux_sym_record_exp_repeat1, + STATE(20349), 1, + sym_tyrow, + STATE(22207), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932043] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22504), 1, + anon_sym_COMMA, + ACTIONS(22506), 1, + anon_sym_RBRACE, + STATE(15529), 1, + aux_sym_record_exp_repeat1, + STATE(20038), 1, + sym_tyrow, + STATE(21411), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932074] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22508), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20040), 1, + sym_tyrow, + STATE(21417), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932105] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22510), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21418), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932136] = 4, + ACTIONS(22512), 1, + anon_sym_STAR, + STATE(15532), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [932157] = 4, + ACTIONS(22514), 1, + anon_sym_STAR, + STATE(15532), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [932178] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [932195] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22517), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21689), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932226] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22519), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20366), 1, + sym_tyrow, + STATE(22240), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932257] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22521), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22755), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932288] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22523), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22633), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932319] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22525), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21423), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932350] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22527), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21426), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932381] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [932398] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22529), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22204), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932429] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22531), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24739), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932460] = 8, + ACTIONS(22533), 1, + anon_sym_LPAREN, + ACTIONS(22536), 1, + anon_sym_PIPE, + ACTIONS(22538), 1, + anon_sym_End, + ACTIONS(22543), 1, + aux_sym_hol_atomic_type_token1, + STATE(17638), 1, + sym_hol_atomic_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15543), 2, + sym__hol_ty_spec, + aux_sym_hol_clause_repeat1, + ACTIONS(22540), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + [932489] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22546), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22254), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932520] = 4, + ACTIONS(22548), 1, + anon_sym_STAR, + STATE(15546), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + [932541] = 4, + ACTIONS(22550), 1, + anon_sym_STAR, + STATE(15546), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + [932562] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22553), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22220), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932593] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22555), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19602), 1, + sym_tyrow, + STATE(21862), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932624] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [932641] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22557), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22229), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932672] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22559), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22263), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932703] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22561), 1, + anon_sym_COMMA, + ACTIONS(22563), 1, + anon_sym_RBRACE, + STATE(15556), 1, + aux_sym_record_exp_repeat1, + STATE(20043), 1, + sym_tyrow, + STATE(21431), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932734] = 4, + ACTIONS(22565), 1, + anon_sym_STAR, + STATE(15554), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + [932755] = 4, + ACTIONS(22567), 1, + anon_sym_STAR, + STATE(15554), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + [932776] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22570), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22266), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932807] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22572), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20046), 1, + sym_tyrow, + STATE(21437), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932838] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22574), 1, + anon_sym_COMMA, + ACTIONS(22576), 1, + anon_sym_RBRACE, + STATE(15563), 1, + aux_sym_record_exp_repeat1, + STATE(19948), 1, + sym_tyrow, + STATE(24084), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932869] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22578), 1, + anon_sym_COMMA, + ACTIONS(22580), 1, + anon_sym_RBRACE, + STATE(16120), 1, + aux_sym_record_exp_repeat1, + STATE(21256), 1, + sym_tyrow, + STATE(24659), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932900] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22582), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21438), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932931] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22584), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21443), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932962] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22586), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21446), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [932993] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22588), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19424), 1, + sym_tyrow, + STATE(22230), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933024] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22590), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19951), 1, + sym_tyrow, + STATE(24091), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933055] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22592), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24094), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933086] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22594), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24105), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933117] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22596), 1, + anon_sym_COMMA, + ACTIONS(22598), 1, + anon_sym_RBRACE, + STATE(15567), 1, + aux_sym_record_exp_repeat1, + STATE(20048), 1, + sym_tyrow, + STATE(21451), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933148] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22600), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20052), 1, + sym_tyrow, + STATE(21457), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933179] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22602), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21458), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933210] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22604), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21463), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933241] = 3, + ACTIONS(15601), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [933260] = 4, + ACTIONS(22606), 1, + anon_sym_STAR, + STATE(15597), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [933281] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22608), 1, + anon_sym_COMMA, + ACTIONS(22610), 1, + anon_sym_RBRACE, + STATE(15828), 1, + aux_sym_record_exp_repeat1, + STATE(20549), 1, + sym_tyrow, + STATE(22682), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933312] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22612), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24112), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933343] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [933360] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22614), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21466), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933391] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22616), 1, + anon_sym_COMMA, + ACTIONS(22618), 1, + anon_sym_RBRACE, + STATE(15577), 1, + aux_sym_record_exp_repeat1, + STATE(20057), 1, + sym_tyrow, + STATE(21471), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933422] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22620), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20060), 1, + sym_tyrow, + STATE(21476), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933453] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [933470] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22622), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21477), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933501] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [933518] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15583), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [933537] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22624), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21482), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933568] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [933587] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22626), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21485), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933618] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22628), 1, + anon_sym_COMMA, + ACTIONS(22630), 1, + anon_sym_RBRACE, + STATE(15596), 1, + aux_sym_record_exp_repeat1, + STATE(20437), 1, + sym_tyrow, + STATE(22395), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933649] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22632), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23391), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933680] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [933697] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22634), 1, + anon_sym_COMMA, + ACTIONS(22636), 1, + anon_sym_RBRACE, + STATE(15610), 1, + aux_sym_record_exp_repeat1, + STATE(19485), 1, + sym_tyrow, + STATE(23316), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933728] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22638), 1, + anon_sym_COMMA, + ACTIONS(22640), 1, + anon_sym_RBRACE, + STATE(15590), 1, + aux_sym_record_exp_repeat1, + STATE(20064), 1, + sym_tyrow, + STATE(21490), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933759] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22642), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20066), 1, + sym_tyrow, + STATE(21496), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933790] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [933807] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [933824] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [933843] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22644), 1, + anon_sym_COMMA, + ACTIONS(22646), 1, + anon_sym_RBRACE, + STATE(15629), 1, + aux_sym_record_exp_repeat1, + STATE(20791), 1, + sym_tyrow, + STATE(23244), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933874] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22648), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21497), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933905] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22650), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20452), 1, + sym_tyrow, + STATE(22431), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [933936] = 4, + ACTIONS(22606), 1, + anon_sym_STAR, + STATE(15598), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [933957] = 4, + ACTIONS(22652), 1, + anon_sym_STAR, + STATE(15598), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [933978] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22655), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21502), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934009] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [934026] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22657), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21505), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934057] = 4, + ACTIONS(22659), 1, + anon_sym_STAR, + STATE(15603), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [934078] = 4, + ACTIONS(22661), 1, + anon_sym_STAR, + STATE(15603), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [934099] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22664), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24268), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934130] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22666), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22445), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934161] = 4, + ACTIONS(22668), 1, + anon_sym_STAR, + STATE(15607), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [934182] = 4, + ACTIONS(22670), 1, + anon_sym_STAR, + STATE(15607), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [934203] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22673), 1, + anon_sym_COMMA, + ACTIONS(22675), 1, + anon_sym_RBRACE, + STATE(15632), 1, + aux_sym_record_exp_repeat1, + STATE(20439), 1, + sym_tyrow, + STATE(22399), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934234] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22677), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22454), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934265] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22679), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19723), 1, + sym_tyrow, + STATE(22701), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934296] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22681), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22186), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934327] = 4, + ACTIONS(22683), 1, + anon_sym_STAR, + STATE(15613), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [934348] = 4, + ACTIONS(22685), 1, + anon_sym_STAR, + STATE(15613), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [934369] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [934386] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22688), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22473), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934417] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22690), 1, + anon_sym_COMMA, + ACTIONS(22692), 1, + anon_sym_RBRACE, + STATE(15617), 1, + aux_sym_record_exp_repeat1, + STATE(20068), 1, + sym_tyrow, + STATE(21510), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934448] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22694), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20070), 1, + sym_tyrow, + STATE(21516), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934479] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22696), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22478), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934510] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [934529] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22698), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21517), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934560] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22700), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21522), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934591] = 3, + ACTIONS(15609), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [934610] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [934627] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22702), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23225), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934658] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22704), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21525), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934689] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22706), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23488), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934720] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22708), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23428), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934751] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22710), 1, + anon_sym_COMMA, + ACTIONS(22712), 1, + anon_sym_RBRACE, + STATE(15635), 1, + aux_sym_record_exp_repeat1, + STATE(19953), 1, + sym_tyrow, + STATE(24136), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934782] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22714), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20815), 1, + sym_tyrow, + STATE(23305), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934813] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [934830] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22716), 1, + anon_sym_COMMA, + ACTIONS(22718), 1, + anon_sym_RBRACE, + STATE(15634), 1, + aux_sym_record_exp_repeat1, + STATE(20073), 1, + sym_tyrow, + STATE(21530), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934861] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22720), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20457), 1, + sym_tyrow, + STATE(22442), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934892] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22722), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22573), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934923] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22724), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20077), 1, + sym_tyrow, + STATE(21535), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934954] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22726), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19956), 1, + sym_tyrow, + STATE(24153), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [934985] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22728), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21536), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935016] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22730), 1, + anon_sym_COMMA, + ACTIONS(22732), 1, + anon_sym_RBRACE, + STATE(15639), 1, + aux_sym_record_exp_repeat1, + STATE(20524), 1, + sym_tyrow, + STATE(22611), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935047] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22734), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21541), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935078] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22736), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20543), 1, + sym_tyrow, + STATE(22655), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935109] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22738), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22640), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935140] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22740), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21544), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935171] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22742), 1, + anon_sym_COMMA, + ACTIONS(22744), 1, + anon_sym_RBRACE, + STATE(15643), 1, + aux_sym_record_exp_repeat1, + STATE(20079), 1, + sym_tyrow, + STATE(21549), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935202] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22746), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20081), 1, + sym_tyrow, + STATE(21555), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935233] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22748), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21556), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935264] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [935283] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22750), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24155), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935314] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22752), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22673), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935345] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22754), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23705), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935376] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22756), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22691), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935407] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22758), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24604), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935438] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22760), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22702), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935469] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [935488] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22762), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22727), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935519] = 4, + ACTIONS(22764), 1, + anon_sym_STAR, + STATE(15976), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 8, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + [935540] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22766), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24161), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935571] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22768), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21561), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935602] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22770), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23334), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935633] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22772), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21564), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935664] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [935681] = 4, + ACTIONS(22659), 1, + anon_sym_STAR, + STATE(15602), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [935702] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22774), 1, + anon_sym_COMMA, + ACTIONS(22776), 1, + anon_sym_RBRACE, + STATE(15663), 1, + aux_sym_record_exp_repeat1, + STATE(20083), 1, + sym_tyrow, + STATE(21569), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935733] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22778), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22455), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935764] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22780), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20085), 1, + sym_tyrow, + STATE(21575), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935795] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [935814] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [935831] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22782), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21576), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935862] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22784), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24165), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935893] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22786), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22465), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935924] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22788), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21581), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935955] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22790), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22386), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [935986] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22792), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21584), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936017] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22794), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22602), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936048] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22796), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23358), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936079] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22798), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24281), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936110] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22800), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22760), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936141] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22802), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22481), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936172] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22804), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22894), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936203] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22806), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22490), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936234] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22808), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22630), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936265] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22810), 1, + anon_sym_COMMA, + ACTIONS(22812), 1, + anon_sym_RBRACE, + STATE(15718), 1, + aux_sym_record_exp_repeat1, + STATE(19916), 1, + sym_tyrow, + STATE(23818), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936296] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [936313] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22814), 1, + anon_sym_COMMA, + ACTIONS(22816), 1, + anon_sym_RBRACE, + STATE(15736), 1, + aux_sym_record_exp_repeat1, + STATE(20154), 1, + sym_tyrow, + STATE(21725), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936344] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22818), 1, + anon_sym_COMMA, + ACTIONS(22820), 1, + anon_sym_RBRACE, + STATE(15690), 1, + aux_sym_record_exp_repeat1, + STATE(20628), 1, + sym_tyrow, + STATE(22856), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936375] = 3, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [936394] = 4, + ACTIONS(22494), 1, + anon_sym_COLON, + ACTIONS(22822), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [936415] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22824), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23368), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936446] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [936463] = 3, + ACTIONS(15697), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [936482] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22826), 1, + anon_sym_COMMA, + ACTIONS(22828), 1, + anon_sym_RBRACE, + STATE(15747), 1, + aux_sym_record_exp_repeat1, + STATE(20312), 1, + sym_tyrow, + STATE(22125), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936513] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22830), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20645), 1, + sym_tyrow, + STATE(22905), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936544] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22832), 1, + anon_sym_COMMA, + ACTIONS(22834), 1, + anon_sym_RBRACE, + STATE(15692), 1, + aux_sym_record_exp_repeat1, + STATE(19959), 1, + sym_tyrow, + STATE(24185), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936575] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22836), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19962), 1, + sym_tyrow, + STATE(24212), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936606] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22838), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22941), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936637] = 3, + ACTIONS(15621), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [936656] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [936673] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22840), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22666), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936704] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22842), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21527), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936735] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22844), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22957), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936766] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22846), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22962), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936797] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [936814] = 4, + ACTIONS(22668), 1, + anon_sym_STAR, + STATE(15606), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [936835] = 7, + ACTIONS(22494), 1, + anon_sym_COLON, + ACTIONS(22822), 1, + anon_sym_andalso, + ACTIONS(22848), 1, + anon_sym_orelse, + ACTIONS(22850), 1, + anon_sym_handle, + ACTIONS(22852), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [936862] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22854), 1, + anon_sym_COMMA, + ACTIONS(22856), 1, + anon_sym_RBRACE, + STATE(15964), 1, + aux_sym_record_exp_repeat1, + STATE(21144), 1, + sym_tyrow, + STATE(24173), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936893] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [936910] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22858), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24214), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936941] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22860), 1, + anon_sym_COMMA, + ACTIONS(22862), 1, + anon_sym_RBRACE, + STATE(16022), 1, + aux_sym_record_exp_repeat1, + STATE(19905), 1, + sym_tyrow, + STATE(23761), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [936972] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22864), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24229), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937003] = 6, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22866), 1, + anon_sym_COLON, + ACTIONS(22868), 1, + anon_sym_andalso, + ACTIONS(22870), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + [937028] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [937045] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [937062] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [937079] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22872), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20362), 1, + sym_tyrow, + STATE(22248), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937110] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22874), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24235), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937141] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22876), 1, + anon_sym_COMMA, + ACTIONS(22878), 1, + anon_sym_RBRACE, + STATE(15717), 1, + aux_sym_record_exp_repeat1, + STATE(20737), 1, + sym_tyrow, + STATE(23101), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937172] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22880), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24494), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [937222] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22882), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20756), 1, + sym_tyrow, + STATE(23150), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937253] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22884), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19919), 1, + sym_tyrow, + STATE(23841), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937284] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [937301] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22886), 10, + anon_sym_SEMI, + anon_sym_end, + anon_sym_val, + anon_sym_type, + anon_sym_datatype, + anon_sym_exception, + anon_sym_structure, + anon_sym_eqtype, + anon_sym_include, + anon_sym_sharing, + [937318] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [937335] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22888), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23847), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937366] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [937383] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22890), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23168), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937414] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [937431] = 3, + ACTIONS(15713), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [937450] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [937467] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [937484] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22892), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23186), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937515] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22894), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24339), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937546] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [937563] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22896), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24507), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937594] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22898), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23193), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937625] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [937642] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [937659] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22900), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20172), 1, + sym_tyrow, + STATE(21765), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937690] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22902), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24510), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937721] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22904), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20063), 1, + sym_tyrow, + STATE(21491), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937752] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22906), 1, + anon_sym_COMMA, + ACTIONS(22908), 1, + anon_sym_RBRACE, + STATE(15766), 1, + aux_sym_record_exp_repeat1, + STATE(20541), 1, + sym_tyrow, + STATE(22650), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937783] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [937800] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [937817] = 4, + ACTIONS(22683), 1, + anon_sym_STAR, + STATE(15612), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [937838] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [937855] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22910), 1, + anon_sym_COMMA, + ACTIONS(22912), 1, + anon_sym_RBRACE, + STATE(15769), 1, + aux_sym_record_exp_repeat1, + STATE(19968), 1, + sym_tyrow, + STATE(24257), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937886] = 3, + ACTIONS(15705), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [937905] = 4, + ACTIONS(15529), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 7, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [937926] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22914), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20375), 1, + sym_tyrow, + STATE(22280), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937957] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22916), 1, + anon_sym_COMMA, + ACTIONS(22918), 1, + anon_sym_RBRACE, + STATE(15796), 1, + aux_sym_record_exp_repeat1, + STATE(20690), 1, + sym_tyrow, + STATE(23014), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [937988] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22920), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21025), 1, + sym_tyrow, + STATE(23868), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938019] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22922), 1, + anon_sym_COMMA, + ACTIONS(22924), 1, + anon_sym_RBRACE, + STATE(15755), 1, + aux_sym_record_exp_repeat1, + STATE(20842), 1, + sym_tyrow, + STATE(23407), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938050] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [938067] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22926), 1, + anon_sym_COMMA, + ACTIONS(22928), 1, + anon_sym_RBRACE, + STATE(15765), 1, + aux_sym_record_exp_repeat1, + STATE(19874), 1, + sym_tyrow, + STATE(23506), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938098] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22930), 1, + anon_sym_COMMA, + ACTIONS(22932), 1, + anon_sym_RBRACE, + STATE(15808), 1, + aux_sym_record_exp_repeat1, + STATE(20981), 1, + sym_tyrow, + STATE(23778), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938129] = 3, + ACTIONS(22934), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [938148] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22936), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20856), 1, + sym_tyrow, + STATE(23433), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938179] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22938), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20994), 1, + sym_tyrow, + STATE(23789), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938210] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [938227] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15631), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [938246] = 6, + ACTIONS(22494), 1, + anon_sym_COLON, + ACTIONS(22822), 1, + anon_sym_andalso, + ACTIONS(22848), 1, + anon_sym_orelse, + ACTIONS(22850), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [938271] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22940), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23443), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938302] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22942), 1, + anon_sym_COMMA, + ACTIONS(22944), 1, + anon_sym_RBRACE, + STATE(15786), 1, + aux_sym_record_exp_repeat1, + STATE(19553), 1, + sym_tyrow, + STATE(24711), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938333] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22946), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23457), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938364] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22948), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23460), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938395] = 8, + ACTIONS(22950), 1, + anon_sym_LPAREN, + ACTIONS(22952), 1, + anon_sym_PIPE, + ACTIONS(22954), 1, + anon_sym_End, + ACTIONS(22958), 1, + aux_sym_hol_atomic_type_token1, + STATE(17638), 1, + sym_hol_atomic_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(16072), 2, + sym__hol_ty_spec, + aux_sym_hol_clause_repeat1, + ACTIONS(22956), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + [938424] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22960), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19877), 1, + sym_tyrow, + STATE(23518), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938455] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22962), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20554), 1, + sym_tyrow, + STATE(22693), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938486] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22964), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22437), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938517] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22966), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23853), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938548] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22968), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19971), 1, + sym_tyrow, + STATE(24277), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938579] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [938596] = 7, + ACTIONS(21851), 1, + anon_sym_handle, + ACTIONS(22970), 1, + anon_sym_COLON, + ACTIONS(22972), 1, + anon_sym_andalso, + ACTIONS(22974), 1, + anon_sym_orelse, + ACTIONS(22976), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + [938623] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22978), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22516), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938654] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22980), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22460), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938685] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22982), 1, + anon_sym_COMMA, + ACTIONS(22984), 1, + anon_sym_RBRACE, + STATE(15932), 1, + aux_sym_record_exp_repeat1, + STATE(20403), 1, + sym_tyrow, + STATE(22329), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938716] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22986), 1, + anon_sym_COMMA, + ACTIONS(22988), 1, + anon_sym_RBRACE, + STATE(15818), 1, + aux_sym_record_exp_repeat1, + STATE(19371), 1, + sym_tyrow, + STATE(24628), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938747] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22990), 1, + anon_sym_COMMA, + ACTIONS(22992), 1, + anon_sym_RBRACE, + STATE(15779), 1, + aux_sym_record_exp_repeat1, + STATE(20945), 1, + sym_tyrow, + STATE(23635), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938778] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22994), 1, + anon_sym_COMMA, + ACTIONS(22996), 1, + anon_sym_RBRACE, + STATE(15851), 1, + aux_sym_record_exp_repeat1, + STATE(19795), 1, + sym_tyrow, + STATE(22923), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938809] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(22998), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24278), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938840] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23000), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20955), 1, + sym_tyrow, + STATE(23663), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938871] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15735), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [938890] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23002), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22505), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938921] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23004), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22710), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938952] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23006), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23676), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [938983] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23008), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23693), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939014] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23010), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23697), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939045] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23012), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19583), 1, + sym_tyrow, + STATE(21593), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939076] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23014), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22725), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939107] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23016), 1, + anon_sym_COMMA, + ACTIONS(23018), 1, + anon_sym_RBRACE, + STATE(15820), 1, + aux_sym_record_exp_repeat1, + STATE(20937), 1, + sym_tyrow, + STATE(23615), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939138] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23020), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22733), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939169] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [939186] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23022), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21557), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939217] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23024), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24292), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939248] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23026), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23599), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939279] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23028), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23899), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939310] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23030), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21570), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939341] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23032), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20834), 1, + sym_tyrow, + STATE(23403), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939372] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23034), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22467), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939403] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23036), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24300), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939434] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23038), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22307), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939465] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18018), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(24938), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [939500] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23040), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22651), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939531] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18344), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(25039), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [939566] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [939583] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23042), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22402), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939614] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [939633] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23044), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23861), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939664] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18346), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(25033), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [939699] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23046), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21119), 1, + sym_tyrow, + STATE(24127), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939730] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23048), 1, + anon_sym_COMMA, + ACTIONS(23050), 1, + anon_sym_RBRACE, + STATE(15813), 1, + aux_sym_record_exp_repeat1, + STATE(21011), 1, + sym_tyrow, + STATE(23833), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939761] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23052), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23298), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939792] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15525), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [939811] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23054), 1, + anon_sym_COMMA, + ACTIONS(23056), 1, + anon_sym_RBRACE, + STATE(15749), 1, + aux_sym_record_exp_repeat1, + STATE(21007), 1, + sym_tyrow, + STATE(23819), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939842] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23058), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21023), 1, + sym_tyrow, + STATE(23870), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939873] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15595), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [939892] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [939909] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [939926] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [939945] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23060), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19405), 1, + sym_tyrow, + STATE(21917), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [939976] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [939993] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23062), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20948), 1, + sym_tyrow, + STATE(23644), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940024] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23064), 1, + anon_sym_COMMA, + ACTIONS(23066), 1, + anon_sym_RBRACE, + STATE(15842), 1, + aux_sym_record_exp_repeat1, + STATE(21324), 1, + sym_tyrow, + STATE(24629), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940055] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [940072] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23068), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22346), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940103] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23070), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21720), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940134] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23072), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23896), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940165] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23074), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23521), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940196] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23076), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22351), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940227] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23078), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20603), 1, + sym_tyrow, + STATE(22803), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940258] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23080), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23687), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940289] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23082), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23532), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940320] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [940337] = 4, + ACTIONS(23084), 1, + anon_sym_STAR, + STATE(16150), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 8, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + [940358] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23086), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23910), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940389] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23088), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23914), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940420] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23090), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22514), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940451] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [940468] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23092), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23571), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940499] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23094), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23747), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940530] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [940547] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23096), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23716), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940578] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18372), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(25040), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [940613] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23098), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21336), 1, + sym_tyrow, + STATE(24653), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940644] = 4, + ACTIONS(23100), 1, + anon_sym_STAR, + STATE(15843), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + [940665] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18374), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(24945), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [940700] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23103), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23829), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940731] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [940748] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23105), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21774), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940779] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23107), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21800), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940810] = 3, + ACTIONS(23109), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 9, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [940829] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23111), 1, + anon_sym_COMMA, + ACTIONS(23113), 1, + anon_sym_RBRACE, + STATE(15867), 1, + aux_sym_record_exp_repeat1, + STATE(21097), 1, + sym_tyrow, + STATE(24068), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940860] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23115), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19801), 1, + sym_tyrow, + STATE(22981), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940891] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [940908] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23117), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23720), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940939] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23119), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23924), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [940970] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23121), 1, + anon_sym_COMMA, + ACTIONS(23123), 1, + anon_sym_RBRACE, + STATE(15943), 1, + aux_sym_record_exp_repeat1, + STATE(21296), 1, + sym_tyrow, + STATE(24578), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941001] = 6, + ACTIONS(22494), 1, + anon_sym_COLON, + ACTIONS(22822), 1, + anon_sym_andalso, + ACTIONS(22848), 1, + anon_sym_orelse, + ACTIONS(22850), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [941026] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23125), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22080), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941057] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23127), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22291), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941088] = 7, + ACTIONS(22494), 1, + anon_sym_COLON, + ACTIONS(22822), 1, + anon_sym_andalso, + ACTIONS(22848), 1, + anon_sym_orelse, + ACTIONS(22850), 1, + anon_sym_handle, + ACTIONS(23129), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [941115] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23131), 1, + anon_sym_COMMA, + ACTIONS(23133), 1, + anon_sym_RBRACE, + STATE(15864), 1, + aux_sym_record_exp_repeat1, + STATE(19976), 1, + sym_tyrow, + STATE(24322), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941146] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23135), 1, + anon_sym_COMMA, + ACTIONS(23137), 1, + anon_sym_RBRACE, + STATE(15971), 1, + aux_sym_record_exp_repeat1, + STATE(19917), 1, + sym_tyrow, + STATE(23825), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941177] = 8, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20606), 1, + sym_vid, + STATE(25018), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24848), 3, + sym__patrow, + sym_patrow, + sym_labvar_patrow, + [941206] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [941223] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23139), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19979), 1, + sym_tyrow, + STATE(24332), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941254] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23141), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21850), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941285] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23143), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24336), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941316] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23145), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21112), 1, + sym_tyrow, + STATE(24099), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941347] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23147), 1, + anon_sym_COMMA, + ACTIONS(23149), 1, + anon_sym_RBRACE, + STATE(15881), 1, + aux_sym_record_exp_repeat1, + STATE(20635), 1, + sym_tyrow, + STATE(22882), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941378] = 4, + ACTIONS(23151), 1, + anon_sym_STAR, + STATE(16157), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 8, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + [941399] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23153), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24346), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941430] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [941447] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18401), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(24946), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [941482] = 4, + ACTIONS(23155), 1, + anon_sym_STAR, + STATE(15873), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 8, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + [941503] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23158), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21785), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941534] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18403), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(24971), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [941569] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23160), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24480), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941600] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23162), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24117), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941631] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23164), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24130), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941662] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23166), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24139), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941693] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23168), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23535), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941724] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23170), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20649), 1, + sym_tyrow, + STATE(22910), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941755] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23172), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24661), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941786] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23174), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22306), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941817] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [941836] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [941853] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23176), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21797), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941884] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23178), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22339), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [941915] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [941934] = 4, + ACTIONS(22970), 1, + anon_sym_COLON, + ACTIONS(22972), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [941955] = 3, + ACTIONS(23180), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 9, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [941974] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23182), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24675), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942005] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [942022] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23184), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24678), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942053] = 6, + ACTIONS(21851), 1, + anon_sym_handle, + ACTIONS(22970), 1, + anon_sym_COLON, + ACTIONS(22972), 1, + anon_sym_andalso, + ACTIONS(22974), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_else, + [942078] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [942095] = 6, + ACTIONS(21851), 1, + anon_sym_handle, + ACTIONS(22970), 1, + anon_sym_COLON, + ACTIONS(22972), 1, + anon_sym_andalso, + ACTIONS(22974), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_else, + [942120] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23186), 1, + anon_sym_COMMA, + ACTIONS(23188), 1, + anon_sym_RBRACE, + STATE(15958), 1, + aux_sym_record_exp_repeat1, + STATE(21015), 1, + sym_tyrow, + STATE(23856), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942151] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [942170] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [942187] = 6, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22866), 1, + anon_sym_COLON, + ACTIONS(22868), 1, + anon_sym_andalso, + ACTIONS(22870), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + [942212] = 4, + ACTIONS(22512), 1, + anon_sym_STAR, + STATE(15531), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [942233] = 6, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22866), 1, + anon_sym_COLON, + ACTIONS(22868), 1, + anon_sym_andalso, + ACTIONS(22870), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + [942258] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23190), 1, + anon_sym_COMMA, + ACTIONS(23192), 1, + anon_sym_RBRACE, + STATE(15911), 1, + aux_sym_record_exp_repeat1, + STATE(21206), 1, + sym_tyrow, + STATE(24337), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942289] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23194), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22925), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942320] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23196), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24285), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942351] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18420), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(25059), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [942386] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23198), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22224), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942417] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [942434] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [942451] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18422), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(24942), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [942486] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23200), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21238), 1, + sym_tyrow, + STATE(24409), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942517] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23202), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22933), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942548] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23204), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22937), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942579] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23206), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21290), 1, + sym_tyrow, + STATE(24559), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942610] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23208), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23354), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942641] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23210), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23243), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942672] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23212), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24435), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942703] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23214), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24351), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942734] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [942751] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23216), 1, + anon_sym_COMMA, + ACTIONS(23218), 1, + anon_sym_RBRACE, + STATE(16026), 1, + aux_sym_record_exp_repeat1, + STATE(19295), 1, + sym_tyrow, + STATE(23976), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942782] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23220), 1, + anon_sym_COMMA, + ACTIONS(23222), 1, + anon_sym_RBRACE, + STATE(16065), 1, + aux_sym_record_exp_repeat1, + STATE(21254), 1, + sym_tyrow, + STATE(24454), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942813] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23224), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24470), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942844] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23226), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21859), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942875] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23228), 1, + anon_sym_COMMA, + ACTIONS(23230), 1, + anon_sym_RBRACE, + STATE(15712), 1, + aux_sym_record_exp_repeat1, + STATE(20185), 1, + sym_tyrow, + STATE(21844), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [942906] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [942923] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [942940] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [942957] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [942974] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23232), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24474), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943005] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23234), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24709), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943036] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15699), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [943055] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23236), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20469), 1, + sym_tyrow, + STATE(22487), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943086] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18446), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(25042), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [943121] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23238), 1, + anon_sym_COMMA, + ACTIONS(23240), 1, + anon_sym_RBRACE, + STATE(16204), 1, + aux_sym_record_exp_repeat1, + STATE(20210), 1, + sym_tyrow, + STATE(21888), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943152] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [943171] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18447), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(25049), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [943206] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [943223] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [943240] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [943257] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [943274] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18454), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24876), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [943309] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18455), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24881), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [943344] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23242), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19278), 1, + sym_tyrow, + STATE(22193), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943375] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23244), 1, + anon_sym_COMMA, + ACTIONS(23246), 1, + anon_sym_RBRACE, + STATE(15960), 1, + aux_sym_record_exp_repeat1, + STATE(19982), 1, + sym_tyrow, + STATE(24378), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943406] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23248), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22994), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943437] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [943454] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23250), 1, + anon_sym_COMMA, + ACTIONS(23252), 1, + anon_sym_RBRACE, + STATE(15959), 1, + aux_sym_record_exp_repeat1, + STATE(21051), 1, + sym_tyrow, + STATE(23961), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943485] = 3, + ACTIONS(15523), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [943504] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23254), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23366), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943535] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18465), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(25023), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [943570] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18466), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(25025), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [943605] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23256), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23935), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943636] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [943655] = 3, + ACTIONS(15581), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [943674] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23258), 1, + anon_sym_COMMA, + ACTIONS(23260), 1, + anon_sym_RBRACE, + STATE(16000), 1, + aux_sym_record_exp_repeat1, + STATE(19411), 1, + sym_tyrow, + STATE(22111), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943705] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18473), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24899), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [943740] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18474), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24913), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [943775] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23262), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21089), 1, + sym_tyrow, + STATE(24052), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943806] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23264), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21069), 1, + sym_tyrow, + STATE(23999), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943837] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23266), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19984), 1, + sym_tyrow, + STATE(24387), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943868] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23268), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24388), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943899] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [943916] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [943933] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23270), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21172), 1, + sym_tyrow, + STATE(24254), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943964] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23272), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24398), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [943995] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18479), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24910), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [944030] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18480), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24917), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [944065] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [944082] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23274), 1, + anon_sym_COMMA, + ACTIONS(23276), 1, + anon_sym_RBRACE, + STATE(16293), 1, + aux_sym_record_exp_repeat1, + STATE(19897), 1, + sym_tyrow, + STATE(23682), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944113] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23278), 1, + anon_sym_COMMA, + ACTIONS(23280), 1, + anon_sym_RBRACE, + STATE(15981), 1, + aux_sym_record_exp_repeat1, + STATE(21353), 1, + sym_tyrow, + STATE(24706), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944144] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23282), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19941), 1, + sym_tyrow, + STATE(24013), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944175] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23284), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24016), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944206] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18492), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(25009), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [944241] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18493), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24934), 1, + sym_strid, + STATE(25012), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [944276] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23286), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24406), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944307] = 4, + ACTIONS(22764), 1, + anon_sym_STAR, + STATE(15988), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 8, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + [944328] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23288), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24027), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944359] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18498), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24904), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [944394] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23290), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24033), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944425] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [944442] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23292), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19266), 1, + sym_tyrow, + STATE(24029), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944473] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23294), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21714), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944504] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23296), 1, + anon_sym_COMMA, + ACTIONS(23298), 1, + anon_sym_RBRACE, + STATE(15990), 1, + aux_sym_record_exp_repeat1, + STATE(19882), 1, + sym_tyrow, + STATE(23551), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944535] = 4, + ACTIONS(23300), 1, + anon_sym_PIPE, + STATE(15986), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BSLASH_BSLASH, + [944556] = 4, + ACTIONS(23300), 1, + anon_sym_PIPE, + STATE(15986), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BSLASH_BSLASH, + [944577] = 4, + ACTIONS(23302), 1, + anon_sym_PIPE, + STATE(15986), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BSLASH_BSLASH, + [944598] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23305), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23675), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944629] = 4, + ACTIONS(23307), 1, + anon_sym_STAR, + STATE(15988), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 8, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + [944650] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [944667] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23310), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19885), 1, + sym_tyrow, + STATE(23566), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944698] = 11, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(18506), 1, + sym_tyvarseq, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24834), 1, + sym_tyvar, + STATE(24857), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [944733] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23312), 1, + anon_sym_COMMA, + ACTIONS(23314), 1, + anon_sym_RBRACE, + STATE(16020), 1, + aux_sym_record_exp_repeat1, + STATE(20779), 1, + sym_tyrow, + STATE(23222), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944764] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23316), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22165), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944795] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23318), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23032), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944826] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23320), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23569), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944857] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23322), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23109), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944888] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [944905] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23324), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23012), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944936] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23326), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19775), 1, + sym_tyrow, + STATE(22802), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944967] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23328), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19466), 1, + sym_tyrow, + STATE(22971), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [944998] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23330), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21802), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945029] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23332), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23017), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945060] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15603), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [945079] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23334), 1, + anon_sym_COMMA, + ACTIONS(23336), 1, + anon_sym_RBRACE, + STATE(16006), 1, + aux_sym_record_exp_repeat1, + STATE(19925), 1, + sym_tyrow, + STATE(23887), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945110] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23338), 1, + anon_sym_COMMA, + ACTIONS(23340), 1, + anon_sym_RBRACE, + STATE(16046), 1, + aux_sym_record_exp_repeat1, + STATE(20716), 1, + sym_tyrow, + STATE(23062), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945141] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23342), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19927), 1, + sym_tyrow, + STATE(23897), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945172] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23344), 1, + anon_sym_COMMA, + ACTIONS(23346), 1, + anon_sym_RBRACE, + STATE(16023), 1, + aux_sym_record_exp_repeat1, + STATE(19581), 1, + sym_tyrow, + STATE(21578), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945203] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23348), 1, + anon_sym_COMMA, + ACTIONS(23350), 1, + anon_sym_RBRACE, + STATE(16011), 1, + aux_sym_record_exp_repeat1, + STATE(19989), 1, + sym_tyrow, + STATE(24437), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945234] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23352), 1, + anon_sym_COMMA, + ACTIONS(23354), 1, + anon_sym_RBRACE, + STATE(16025), 1, + aux_sym_record_exp_repeat1, + STATE(20357), 1, + sym_tyrow, + STATE(22369), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945265] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [945282] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23356), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19992), 1, + sym_tyrow, + STATE(24451), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945313] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [945332] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [945349] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23358), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22857), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945380] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23360), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24123), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945411] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23362), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24453), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945442] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23364), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21835), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945473] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23366), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22846), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945504] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23368), 1, + anon_sym_COMMA, + ACTIONS(23370), 1, + anon_sym_RBRACE, + STATE(16021), 1, + aux_sym_record_exp_repeat1, + STATE(19299), 1, + sym_tyrow, + STATE(24375), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945535] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23372), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20862), 1, + sym_tyrow, + STATE(23458), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945566] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23374), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19307), 1, + sym_tyrow, + STATE(21610), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945597] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23376), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19909), 1, + sym_tyrow, + STATE(23779), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945628] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23378), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19608), 1, + sym_tyrow, + STATE(21759), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945659] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23380), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23781), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945690] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23382), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20884), 1, + sym_tyrow, + STATE(23703), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945721] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23384), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21220), 1, + sym_tyrow, + STATE(24376), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945752] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23386), 1, + anon_sym_COMMA, + ACTIONS(23388), 1, + anon_sym_RBRACE, + STATE(16037), 1, + aux_sym_record_exp_repeat1, + STATE(21152), 1, + sym_tyrow, + STATE(24196), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945783] = 4, + ACTIONS(23300), 1, + anon_sym_PIPE, + STATE(15984), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BSLASH_BSLASH, + [945804] = 4, + ACTIONS(23300), 1, + anon_sym_PIPE, + STATE(15985), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BSLASH_BSLASH, + [945825] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15561), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [945844] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [945861] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [945878] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [945897] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [945914] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23390), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21723), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945945] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23392), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23739), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [945976] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23394), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21162), 1, + sym_tyrow, + STATE(24222), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946007] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23396), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22907), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946038] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23398), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22939), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946069] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23400), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24468), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946100] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23402), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21849), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946131] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15627), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [946150] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23404), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24233), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946181] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23406), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21839), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946212] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23408), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24241), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946243] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23410), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20738), 1, + sym_tyrow, + STATE(23102), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946274] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23412), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24245), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946305] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23414), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21902), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946336] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [946353] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23416), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20438), 1, + sym_tyrow, + STATE(22404), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946384] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23418), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23700), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946415] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23420), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23384), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946446] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23422), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24478), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946477] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [946494] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23424), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20378), 1, + sym_tyrow, + STATE(23171), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946525] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23426), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23132), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946556] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [946573] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23428), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24217), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946604] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [946621] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [946638] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23430), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22524), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946669] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23432), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21381), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946700] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23434), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21432), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946731] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23436), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21926), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946762] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23438), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21264), 1, + sym_tyrow, + STATE(24484), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946793] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23440), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23154), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946824] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23442), 1, + anon_sym_COMMA, + ACTIONS(23444), 1, + anon_sym_RBRACE, + STATE(16079), 1, + aux_sym_record_exp_repeat1, + STATE(19345), 1, + sym_tyrow, + STATE(23221), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946855] = 4, + ACTIONS(22548), 1, + anon_sym_STAR, + STATE(15545), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + [946876] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23446), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19716), 1, + sym_tyrow, + STATE(22419), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946907] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23448), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23157), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946938] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23450), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23585), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [946969] = 8, + ACTIONS(22950), 1, + anon_sym_LPAREN, + ACTIONS(22958), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(23452), 1, + anon_sym_PIPE, + ACTIONS(23454), 1, + anon_sym_End, + STATE(17638), 1, + sym_hol_atomic_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(15543), 2, + sym__hol_ty_spec, + aux_sym_hol_clause_repeat1, + ACTIONS(22956), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + [946998] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [947017] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23456), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24239), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947048] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23458), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22881), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947079] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23460), 1, + anon_sym_COMMA, + ACTIONS(23462), 1, + anon_sym_RBRACE, + STATE(16100), 1, + aux_sym_record_exp_repeat1, + STATE(19996), 1, + sym_tyrow, + STATE(24514), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947110] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23464), 1, + anon_sym_COMMA, + ACTIONS(23466), 1, + anon_sym_RBRACE, + STATE(16255), 1, + aux_sym_record_exp_repeat1, + STATE(19838), 1, + sym_tyrow, + STATE(23223), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947141] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [947158] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23468), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19354), 1, + sym_tyrow, + STATE(23767), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947189] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23470), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23589), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947220] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23472), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23990), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947251] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23474), 1, + anon_sym_COMMA, + ACTIONS(23476), 1, + anon_sym_RBRACE, + STATE(16105), 1, + aux_sym_record_exp_repeat1, + STATE(19920), 1, + sym_tyrow, + STATE(23865), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947282] = 6, + ACTIONS(22494), 1, + anon_sym_COLON, + ACTIONS(22822), 1, + anon_sym_andalso, + ACTIONS(22848), 1, + anon_sym_orelse, + ACTIONS(22850), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [947307] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [947328] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23478), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21965), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947359] = 6, + ACTIONS(22494), 1, + anon_sym_COLON, + ACTIONS(22822), 1, + anon_sym_andalso, + ACTIONS(22848), 1, + anon_sym_orelse, + ACTIONS(22850), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [947384] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23480), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21996), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947415] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15575), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [947434] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [947451] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [947468] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23482), 1, + anon_sym_COMMA, + ACTIONS(23484), 1, + anon_sym_RBRACE, + STATE(16099), 1, + aux_sym_record_exp_repeat1, + STATE(21217), 1, + sym_tyrow, + STATE(24362), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947499] = 3, + ACTIONS(23486), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + [947518] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23488), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23959), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947549] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23490), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21450), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947580] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23492), 1, + anon_sym_COMMA, + ACTIONS(23494), 1, + anon_sym_RBRACE, + STATE(15738), 1, + aux_sym_record_exp_repeat1, + STATE(20037), 1, + sym_tyrow, + STATE(21408), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947611] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23496), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23981), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947642] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23498), 1, + anon_sym_COMMA, + ACTIONS(23500), 1, + anon_sym_RBRACE, + STATE(16126), 1, + aux_sym_record_exp_repeat1, + STATE(20618), 1, + sym_tyrow, + STATE(22836), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947673] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23502), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24071), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947704] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23504), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21228), 1, + sym_tyrow, + STATE(24394), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947735] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23506), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19998), 1, + sym_tyrow, + STATE(24523), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947766] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23508), 1, + anon_sym_COMMA, + ACTIONS(23510), 1, + anon_sym_RBRACE, + STATE(16130), 1, + aux_sym_record_exp_repeat1, + STATE(20244), 1, + sym_tyrow, + STATE(21950), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947797] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23512), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22188), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947828] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23514), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24524), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947859] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23516), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24438), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947890] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23518), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19974), 1, + sym_tyrow, + STATE(24310), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947921] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23520), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24535), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [947952] = 4, + ACTIONS(22866), 1, + anon_sym_COLON, + ACTIONS(22868), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + [947973] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23522), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24401), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948004] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23524), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24545), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948035] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23526), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24046), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948066] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23528), 1, + anon_sym_COMMA, + ACTIONS(23530), 1, + anon_sym_RBRACE, + STATE(16135), 1, + aux_sym_record_exp_repeat1, + STATE(20001), 1, + sym_tyrow, + STATE(24554), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948097] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23532), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24133), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948128] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23534), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24696), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948159] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [948178] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23536), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22627), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948209] = 7, + ACTIONS(21851), 1, + anon_sym_handle, + ACTIONS(22970), 1, + anon_sym_COLON, + ACTIONS(22972), 1, + anon_sym_andalso, + ACTIONS(22974), 1, + anon_sym_orelse, + ACTIONS(23538), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + [948236] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23540), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24489), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948267] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23542), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23855), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948298] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23544), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19760), 1, + sym_tyrow, + STATE(22724), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948329] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23546), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20570), 1, + sym_tyrow, + STATE(22775), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948360] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23548), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23684), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948391] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23550), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24131), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948422] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23552), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24557), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948453] = 3, + ACTIONS(23554), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [948472] = 4, + ACTIONS(22472), 1, + anon_sym_STAR, + STATE(15515), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + [948493] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23556), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20685), 1, + sym_tyrow, + STATE(22999), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948524] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [948541] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23558), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23900), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948572] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [948589] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23560), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20253), 1, + sym_tyrow, + STATE(21971), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948620] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23562), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22667), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948651] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23564), 1, + anon_sym_COMMA, + ACTIONS(23566), 1, + anon_sym_RBRACE, + STATE(16183), 1, + aux_sym_record_exp_repeat1, + STATE(19890), 1, + sym_tyrow, + STATE(23611), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948682] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23568), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24324), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948713] = 8, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(20455), 1, + aux_sym_lab_token1, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22294), 1, + sym_vid, + STATE(24981), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20451), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(24839), 3, + sym__exprow, + sym_exprow, + sym_labvar_exprow, + [948742] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23570), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20003), 1, + sym_tyrow, + STATE(24565), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948773] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23572), 1, + anon_sym_COMMA, + ACTIONS(23574), 1, + anon_sym_RBRACE, + STATE(15504), 1, + aux_sym_record_exp_repeat1, + STATE(21348), 1, + sym_tyrow, + STATE(24695), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948804] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23576), 1, + anon_sym_COMMA, + ACTIONS(23578), 1, + anon_sym_RBRACE, + STATE(16146), 1, + aux_sym_record_exp_repeat1, + STATE(19398), 1, + sym_tyrow, + STATE(21729), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948835] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [948852] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [948869] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23580), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24572), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948900] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [948917] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [948936] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23582), 1, + anon_sym_COMMA, + ACTIONS(23584), 1, + anon_sym_RBRACE, + STATE(16156), 1, + aux_sym_record_exp_repeat1, + STATE(19836), 1, + sym_tyrow, + STATE(23183), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948967] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23586), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24446), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [948998] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23588), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24465), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949029] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23590), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19407), 1, + sym_tyrow, + STATE(21883), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949060] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23592), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23020), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949091] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23594), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22896), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949122] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23596), 1, + anon_sym_COMMA, + ACTIONS(23598), 1, + anon_sym_RBRACE, + STATE(16161), 1, + aux_sym_record_exp_repeat1, + STATE(20824), 1, + sym_tyrow, + STATE(23333), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949153] = 4, + ACTIONS(23084), 1, + anon_sym_STAR, + STATE(16164), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 8, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + [949174] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23600), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21919), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949205] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23602), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24584), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949236] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23604), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22000), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949267] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [949284] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23606), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22012), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949315] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23608), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19844), 1, + sym_tyrow, + STATE(23230), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949346] = 4, + ACTIONS(23151), 1, + anon_sym_STAR, + STATE(16158), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 8, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + [949367] = 4, + ACTIONS(23610), 1, + anon_sym_STAR, + STATE(16158), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 8, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + [949388] = 3, + ACTIONS(23613), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [949407] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23615), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21989), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949438] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23617), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20832), 1, + sym_tyrow, + STATE(23374), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949469] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [949490] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23619), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24588), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949521] = 4, + ACTIONS(23621), 1, + anon_sym_STAR, + STATE(16164), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 8, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + [949542] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23624), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21998), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949573] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23626), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22019), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949604] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23628), 1, + anon_sym_COMMA, + ACTIONS(23630), 1, + anon_sym_RBRACE, + STATE(16191), 1, + aux_sym_record_exp_repeat1, + STATE(19773), 1, + sym_tyrow, + STATE(22790), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949635] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23632), 1, + anon_sym_COMMA, + ACTIONS(23634), 1, + anon_sym_RBRACE, + STATE(16175), 1, + aux_sym_record_exp_repeat1, + STATE(20472), 1, + sym_tyrow, + STATE(22495), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949666] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23636), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24156), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949697] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23638), 1, + anon_sym_COMMA, + ACTIONS(23640), 1, + anon_sym_RBRACE, + STATE(16180), 1, + aux_sym_record_exp_repeat1, + STATE(20006), 1, + sym_tyrow, + STATE(24600), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949728] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [949745] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23642), 1, + anon_sym_COMMA, + ACTIONS(23644), 1, + anon_sym_RBRACE, + STATE(16176), 1, + aux_sym_record_exp_repeat1, + STATE(19441), 1, + sym_tyrow, + STATE(22494), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949776] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [949793] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23646), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23264), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949824] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23648), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20584), 1, + sym_tyrow, + STATE(22798), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949855] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23650), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19447), 1, + sym_tyrow, + STATE(22606), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949886] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_STAR, + [949903] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23652), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23282), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949934] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23654), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22652), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949965] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23656), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20008), 1, + sym_tyrow, + STATE(24611), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [949996] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23658), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22737), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950027] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23660), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22768), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950058] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23662), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19892), 1, + sym_tyrow, + STATE(23624), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950089] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23664), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23088), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950120] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23666), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22987), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950151] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23668), 1, + anon_sym_COMMA, + ACTIONS(23670), 1, + anon_sym_RBRACE, + STATE(16194), 1, + aux_sym_record_exp_repeat1, + STATE(20092), 1, + sym_tyrow, + STATE(21598), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950182] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15611), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [950201] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [950222] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23672), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23229), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950253] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23674), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23387), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950284] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23676), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19797), 1, + sym_tyrow, + STATE(22964), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950315] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [950334] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23678), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23258), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950365] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23680), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20156), 1, + sym_tyrow, + STATE(21741), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950396] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23682), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23287), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950427] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23684), 1, + anon_sym_COMMA, + ACTIONS(23686), 1, + anon_sym_RBRACE, + STATE(16235), 1, + aux_sym_record_exp_repeat1, + STATE(20139), 1, + sym_tyrow, + STATE(21694), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950458] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23688), 1, + anon_sym_COMMA, + ACTIONS(23690), 1, + anon_sym_RBRACE, + STATE(16200), 1, + aux_sym_record_exp_repeat1, + STATE(19486), 1, + sym_tyrow, + STATE(23226), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950489] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23692), 1, + anon_sym_COMMA, + ACTIONS(23694), 1, + anon_sym_RBRACE, + STATE(15756), 1, + aux_sym_record_exp_repeat1, + STATE(20968), 1, + sym_tyrow, + STATE(23711), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950520] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [950537] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23696), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19493), 1, + sym_tyrow, + STATE(23420), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950568] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23698), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21420), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950599] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15715), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [950618] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23700), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23498), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950649] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23702), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20263), 1, + sym_tyrow, + STATE(22005), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950680] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23704), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23397), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950711] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23706), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23540), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950742] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23708), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23558), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950773] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23710), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20281), 1, + sym_tyrow, + STATE(22061), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950804] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23712), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23928), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950835] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23714), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24619), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950866] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23716), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23401), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950897] = 3, + ACTIONS(23718), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 9, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [950916] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15707), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [950935] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23720), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23504), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950966] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23722), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23095), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [950997] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [951014] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23724), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21813), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951045] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23726), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21837), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951076] = 4, + ACTIONS(15567), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 7, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [951097] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [951114] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [951131] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23728), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21855), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951162] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23730), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22918), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951193] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23732), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22436), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951224] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23734), 1, + anon_sym_COMMA, + ACTIONS(23736), 1, + anon_sym_RBRACE, + STATE(16308), 1, + aux_sym_record_exp_repeat1, + STATE(20109), 1, + sym_tyrow, + STATE(21628), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951255] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23738), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23026), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951286] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [951303] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23740), 1, + anon_sym_COMMA, + ACTIONS(23742), 1, + anon_sym_RBRACE, + STATE(16265), 1, + aux_sym_record_exp_repeat1, + STATE(19867), 1, + sym_tyrow, + STATE(23445), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951334] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23744), 1, + anon_sym_COMMA, + ACTIONS(23746), 1, + anon_sym_RBRACE, + STATE(16208), 1, + aux_sym_record_exp_repeat1, + STATE(19965), 1, + sym_tyrow, + STATE(21606), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951365] = 4, + ACTIONS(22400), 1, + anon_sym_STAR, + STATE(15485), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 8, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + [951386] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23748), 1, + anon_sym_COMMA, + ACTIONS(23750), 1, + anon_sym_RBRACE, + STATE(16234), 1, + aux_sym_record_exp_repeat1, + STATE(19531), 1, + sym_tyrow, + STATE(24211), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951417] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23752), 1, + anon_sym_COMMA, + ACTIONS(23754), 1, + anon_sym_RBRACE, + STATE(16276), 1, + aux_sym_record_exp_repeat1, + STATE(19593), 1, + sym_tyrow, + STATE(21659), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951448] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23756), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24329), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951479] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23758), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19540), 1, + sym_tyrow, + STATE(24383), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951510] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23760), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20162), 1, + sym_tyrow, + STATE(21734), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951541] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [951558] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23762), 1, + anon_sym_COMMA, + ACTIONS(23764), 1, + anon_sym_RBRACE, + STATE(16244), 1, + aux_sym_record_exp_repeat1, + STATE(19853), 1, + sym_tyrow, + STATE(23304), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951589] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23766), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23792), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951620] = 6, + ACTIONS(21851), 1, + anon_sym_handle, + ACTIONS(22970), 1, + anon_sym_COLON, + ACTIONS(22972), 1, + anon_sym_andalso, + ACTIONS(22974), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_else, + [951645] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23768), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24449), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951676] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23770), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21805), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951707] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23772), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24539), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951738] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23774), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24564), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951769] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23776), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19856), 1, + sym_tyrow, + STATE(23323), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951800] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [951817] = 3, + ACTIONS(15593), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [951836] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23778), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23626), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951867] = 6, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(22866), 1, + anon_sym_COLON, + ACTIONS(22868), 1, + anon_sym_andalso, + ACTIONS(22870), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_PIPE, + [951892] = 3, + ACTIONS(23780), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_BSLASH_BSLASH, + [951911] = 4, + ACTIONS(22565), 1, + anon_sym_STAR, + STATE(15553), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + [951932] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23782), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24625), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [951963] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [951980] = 3, + ACTIONS(22970), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [951999] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23784), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23327), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952030] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23786), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19954), 1, + sym_tyrow, + STATE(24168), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952061] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23788), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23063), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952092] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23790), 1, + anon_sym_COMMA, + ACTIONS(23792), 1, + anon_sym_RBRACE, + STATE(16266), 1, + aux_sym_record_exp_repeat1, + STATE(19580), 1, + sym_tyrow, + STATE(21554), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952123] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [952140] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23794), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23356), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952171] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(15623), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [952190] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23796), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23940), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952221] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23798), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23641), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952252] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23800), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21751), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952283] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23802), 1, + anon_sym_COMMA, + ACTIONS(23804), 1, + anon_sym_RBRACE, + STATE(16069), 1, + aux_sym_record_exp_repeat1, + STATE(19710), 1, + sym_tyrow, + STATE(22380), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952314] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23806), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19869), 1, + sym_tyrow, + STATE(23468), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952345] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23808), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19589), 1, + sym_tyrow, + STATE(21615), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952376] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23810), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23364), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952407] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [952424] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23812), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23118), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952455] = 3, + ACTIONS(22866), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + [952474] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23814), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21629), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952505] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23816), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23423), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952536] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23818), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21647), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952567] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23820), 1, + anon_sym_COMMA, + ACTIONS(23822), 1, + anon_sym_RBRACE, + STATE(16055), 1, + aux_sym_record_exp_repeat1, + STATE(19454), 1, + sym_tyrow, + STATE(22083), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952598] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23824), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21653), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952629] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23826), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19649), 1, + sym_tyrow, + STATE(22036), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952660] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23828), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23651), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952691] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23830), 1, + anon_sym_COMMA, + ACTIONS(23832), 1, + anon_sym_RBRACE, + STATE(16310), 1, + aux_sym_record_exp_repeat1, + STATE(20909), 1, + sym_tyrow, + STATE(23552), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952722] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23834), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23704), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952753] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23836), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21790), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952784] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23838), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21794), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952815] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23840), 1, + anon_sym_COMMA, + ACTIONS(23842), 1, + anon_sym_RBRACE, + STATE(16119), 1, + aux_sym_record_exp_repeat1, + STATE(19752), 1, + sym_tyrow, + STATE(22646), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952846] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23844), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23797), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952877] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23846), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23937), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952908] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23848), 1, + anon_sym_COMMA, + ACTIONS(23850), 1, + anon_sym_RBRACE, + STATE(16296), 1, + aux_sym_record_exp_repeat1, + STATE(19316), 1, + sym_tyrow, + STATE(22187), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952939] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23852), 1, + anon_sym_COMMA, + ACTIONS(23854), 1, + anon_sym_RBRACE, + STATE(16300), 1, + aux_sym_record_exp_repeat1, + STATE(19935), 1, + sym_tyrow, + STATE(23965), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [952970] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [952987] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [953004] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [953021] = 3, + ACTIONS(15733), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [953040] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [953057] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23856), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23645), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953088] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23858), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19900), 1, + sym_tyrow, + STATE(23702), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953119] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23860), 1, + anon_sym_COMMA, + ACTIONS(23862), 1, + anon_sym_RBRACE, + STATE(16302), 1, + aux_sym_record_exp_repeat1, + STATE(19623), 1, + sym_tyrow, + STATE(21858), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953150] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23864), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21393), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953181] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23866), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19408), 1, + sym_tyrow, + STATE(22032), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953212] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23868), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24632), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953243] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23870), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23659), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953274] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23872), 1, + anon_sym_COMMA, + ACTIONS(23874), 1, + anon_sym_RBRACE, + STATE(16303), 1, + aux_sym_record_exp_repeat1, + STATE(20012), 1, + sym_tyrow, + STATE(24644), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953305] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23876), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19938), 1, + sym_tyrow, + STATE(23983), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953336] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23878), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23984), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953367] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23880), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19631), 1, + sym_tyrow, + STATE(21903), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953398] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23882), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20015), 1, + sym_tyrow, + STATE(24660), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953429] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23884), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22835), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953460] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23886), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21922), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953491] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23888), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22086), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953522] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23890), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21938), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953553] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23892), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20165), 1, + sym_tyrow, + STATE(21758), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953584] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23894), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21945), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953615] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23896), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20930), 1, + sym_tyrow, + STATE(23595), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953646] = 3, + ACTIONS(15559), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [953665] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23898), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23994), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953696] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23900), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24000), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953727] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23902), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24663), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953758] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23904), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23295), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953789] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23906), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24669), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953820] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23908), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23547), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953851] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23910), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(20789), 1, + sym_tyrow, + STATE(23240), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953882] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23912), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21589), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953913] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23914), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22100), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953944] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23916), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24684), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [953975] = 3, + ACTIONS(15573), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [953994] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23918), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22273), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954025] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23920), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(21605), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954056] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23922), 1, + anon_sym_COMMA, + ACTIONS(23924), 1, + anon_sym_RBRACE, + STATE(15488), 1, + aux_sym_record_exp_repeat1, + STATE(20018), 1, + sym_tyrow, + STATE(24698), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954087] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23926), 1, + anon_sym_COMMA, + ACTIONS(23928), 1, + anon_sym_RBRACE, + STATE(16332), 1, + aux_sym_record_exp_repeat1, + STATE(19667), 1, + sym_tyrow, + STATE(22126), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954118] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23930), 1, + anon_sym_COMMA, + ACTIONS(23932), 1, + anon_sym_RBRACE, + STATE(16318), 1, + aux_sym_record_exp_repeat1, + STATE(20746), 1, + sym_tyrow, + STATE(23134), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954149] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23934), 1, + anon_sym_COMMA, + ACTIONS(23936), 1, + anon_sym_RBRACE, + STATE(16333), 1, + aux_sym_record_exp_repeat1, + STATE(19860), 1, + sym_tyrow, + STATE(23398), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954180] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23938), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22741), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954211] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23940), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22684), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954242] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [954259] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23942), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19674), 1, + sym_tyrow, + STATE(22170), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954290] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23944), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(19863), 1, + sym_tyrow, + STATE(23414), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954321] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23946), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23944), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954352] = 3, + ACTIONS(15625), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_STAR, + [954371] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23948), 1, + anon_sym_COMMA, + ACTIONS(23950), 1, + anon_sym_RBRACE, + STATE(15492), 1, + aux_sym_record_exp_repeat1, + STATE(20249), 1, + sym_tyrow, + STATE(21964), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954402] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23952), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22049), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954433] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23954), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22217), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954464] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23956), 1, + anon_sym_COMMA, + ACTIONS(23958), 1, + anon_sym_RBRACE, + STATE(16050), 1, + aux_sym_record_exp_repeat1, + STATE(20386), 1, + sym_tyrow, + STATE(22290), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954495] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23960), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23418), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954526] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23962), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(22190), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954557] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 10, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_STAR, + [954574] = 9, + ACTIONS(20453), 1, + anon_sym_COMMA, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23964), 1, + anon_sym_RBRACE, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(23625), 1, + sym_ellipsis_tyrow, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954605] = 9, + ACTIONS(22404), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(23966), 1, + anon_sym_COMMA, + ACTIONS(23968), 1, + anon_sym_RBRACE, + STATE(15999), 1, + aux_sym_record_exp_repeat1, + STATE(19741), 1, + sym_tyrow, + STATE(22597), 1, + sym_ellipsis_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [954636] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24036), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [954658] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24439), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [954680] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [954696] = 5, + ACTIONS(23976), 1, + anon_sym_LPAREN, + ACTIONS(23980), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23978), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(122), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [954718] = 5, + ACTIONS(23976), 1, + anon_sym_LPAREN, + ACTIONS(23980), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23978), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(128), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [954740] = 4, + ACTIONS(23982), 1, + anon_sym_STAR, + STATE(16413), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 7, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + [954760] = 6, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + [954784] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14815), 1, + sym_datdesc, + STATE(15341), 1, + sym__datdesc, + STATE(23777), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24877), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [954814] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14813), 1, + sym_typedesc, + STATE(15083), 1, + sym_tycon, + STATE(15361), 1, + sym__typedesc, + STATE(23966), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [954844] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [954860] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [954876] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [954892] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [954910] = 4, + ACTIONS(23984), 1, + anon_sym_STAR, + STATE(16359), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 7, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + [954930] = 4, + ACTIONS(23986), 1, + anon_sym_STAR, + STATE(16359), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 7, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + [954950] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [954966] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(4063), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [954988] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [955004] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [955020] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955036] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955052] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 7, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955070] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955086] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955102] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 7, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955120] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955136] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955152] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955168] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955184] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955200] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955216] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955232] = 3, + ACTIONS(15697), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955250] = 3, + ACTIONS(15705), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955268] = 4, + ACTIONS(15529), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 6, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955288] = 3, + ACTIONS(15733), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955306] = 3, + ACTIONS(15559), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955324] = 4, + ACTIONS(15567), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 6, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955344] = 3, + ACTIONS(15573), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955362] = 3, + ACTIONS(15581), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955380] = 3, + ACTIONS(15593), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955398] = 3, + ACTIONS(15601), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955416] = 3, + ACTIONS(15609), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955434] = 3, + ACTIONS(15629), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955452] = 3, + ACTIONS(15523), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955470] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955486] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955502] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955518] = 5, + ACTIONS(23989), 1, + anon_sym_LPAREN, + ACTIONS(23993), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23991), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(126), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [955540] = 3, + ACTIONS(15713), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955558] = 3, + ACTIONS(15625), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955576] = 5, + ACTIONS(23989), 1, + anon_sym_LPAREN, + ACTIONS(23993), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23991), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(132), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [955598] = 3, + ACTIONS(15621), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON_GT, + anon_sym_where, + [955616] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [955634] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [955650] = 5, + ACTIONS(23995), 1, + anon_sym_LPAREN, + ACTIONS(23999), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23997), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(19059), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [955672] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [955688] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14006), 1, + sym__typbind, + STATE(14149), 1, + sym_typbind, + STATE(23548), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24880), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [955718] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14007), 1, + sym_datbind, + STATE(14256), 1, + sym__datbind, + STATE(23550), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(25028), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [955748] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [955764] = 6, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + [955788] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [955804] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [955820] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [955836] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [955852] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [955868] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13695), 1, + sym__typbind, + STATE(14149), 1, + sym_typbind, + STATE(23548), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24880), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [955898] = 3, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [955916] = 4, + ACTIONS(24001), 1, + anon_sym_STAR, + STATE(16413), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 7, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + [955936] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [955952] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [955968] = 5, + ACTIONS(24004), 1, + anon_sym_LPAREN, + ACTIONS(24008), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24006), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(34), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [955990] = 5, + ACTIONS(23995), 1, + anon_sym_LPAREN, + ACTIONS(23999), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23997), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(18900), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956012] = 5, + ACTIONS(24004), 1, + anon_sym_LPAREN, + ACTIONS(24008), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24006), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(32), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956034] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(4064), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956056] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [956074] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [956092] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(15069), 1, + sym_typbind, + STATE(15384), 1, + sym__typbind, + STATE(23920), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24977), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [956122] = 5, + ACTIONS(24010), 1, + anon_sym_LPAREN, + ACTIONS(24014), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24012), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(149), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956144] = 5, + ACTIONS(24010), 1, + anon_sym_LPAREN, + ACTIONS(24014), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24012), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(159), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956166] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [956182] = 3, + ACTIONS(24016), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 8, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + [956200] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23325), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956222] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23735), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956244] = 4, + ACTIONS(24018), 1, + anon_sym_STAR, + STATE(16461), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + [956264] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23957), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956286] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(21620), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956308] = 4, + ACTIONS(24020), 1, + anon_sym_STAR, + STATE(16456), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + [956328] = 4, + ACTIONS(24022), 1, + anon_sym_STAR, + STATE(16466), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + [956348] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(21737), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956370] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(21873), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956392] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [956408] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [956424] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [956442] = 4, + ACTIONS(24024), 1, + anon_sym_STAR, + STATE(16472), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + [956462] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22542), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956484] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22669), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956506] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24152), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956528] = 4, + ACTIONS(24026), 1, + anon_sym_STAR, + STATE(16477), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + [956548] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23159), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956570] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23238), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956592] = 4, + ACTIONS(24028), 1, + anon_sym_STAR, + STATE(16481), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + [956612] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23500), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956634] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23609), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956656] = 7, + ACTIONS(22850), 1, + anon_sym_handle, + ACTIONS(24030), 1, + anon_sym_COLON, + ACTIONS(24032), 1, + anon_sym_andalso, + ACTIONS(24034), 1, + anon_sym_orelse, + ACTIONS(24036), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_BSLASH_BSLASH, + [956682] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23907), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956704] = 5, + ACTIONS(24038), 1, + anon_sym_LPAREN, + ACTIONS(24042), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24040), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(182), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956726] = 4, + ACTIONS(24044), 1, + anon_sym_PIPE, + STATE(16455), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 7, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [956746] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23955), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956768] = 4, + ACTIONS(24044), 1, + anon_sym_PIPE, + STATE(16455), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 7, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [956788] = 4, + ACTIONS(24046), 1, + anon_sym_PIPE, + STATE(16455), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 7, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [956808] = 4, + ACTIONS(24020), 1, + anon_sym_STAR, + STATE(16457), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + [956828] = 4, + ACTIONS(24049), 1, + anon_sym_STAR, + STATE(16457), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + [956848] = 5, + ACTIONS(24038), 1, + anon_sym_LPAREN, + ACTIONS(24042), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24040), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(160), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956870] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24154), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956892] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24189), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956914] = 4, + ACTIONS(24018), 1, + anon_sym_STAR, + STATE(16462), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + [956934] = 4, + ACTIONS(24052), 1, + anon_sym_STAR, + STATE(16462), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + [956954] = 4, + ACTIONS(24055), 1, + anon_sym_STAR, + STATE(16511), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [956974] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24331), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [956996] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24357), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957018] = 4, + ACTIONS(24022), 1, + anon_sym_STAR, + STATE(16467), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + [957038] = 4, + ACTIONS(24057), 1, + anon_sym_STAR, + STATE(16467), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + [957058] = 3, + ACTIONS(24060), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 8, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + [957076] = 4, + ACTIONS(24062), 1, + anon_sym_STAR, + STATE(16517), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [957096] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24613), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957118] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24174), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957140] = 4, + ACTIONS(24024), 1, + anon_sym_STAR, + STATE(16473), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + [957160] = 4, + ACTIONS(24064), 1, + anon_sym_STAR, + STATE(16473), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + [957180] = 3, + ACTIONS(24067), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 8, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + [957198] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22770), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957220] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23918), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957242] = 4, + ACTIONS(24026), 1, + anon_sym_STAR, + STATE(16478), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + [957262] = 4, + ACTIONS(24069), 1, + anon_sym_STAR, + STATE(16478), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + [957282] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23296), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957304] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(21697), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957326] = 4, + ACTIONS(24028), 1, + anon_sym_STAR, + STATE(16482), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + [957346] = 4, + ACTIONS(24072), 1, + anon_sym_STAR, + STATE(16482), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + [957366] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23975), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957388] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24537), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957410] = 3, + ACTIONS(24075), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 8, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + [957428] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23783), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957450] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23068), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957472] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(21710), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957494] = 3, + ACTIONS(24077), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BSLASH_BSLASH, + [957512] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [957528] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24692), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957550] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [957566] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [957582] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22214), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957604] = 5, + ACTIONS(24079), 1, + anon_sym_LPAREN, + ACTIONS(24083), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24081), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(4752), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957626] = 3, + ACTIONS(24085), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + anon_sym_DASH_GT, + [957644] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22977), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957666] = 6, + ACTIONS(21732), 1, + anon_sym_handle, + ACTIONS(24087), 1, + anon_sym_COLON, + ACTIONS(24089), 1, + anon_sym_andalso, + ACTIONS(24091), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [957690] = 3, + ACTIONS(24093), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + [957708] = 6, + ACTIONS(22850), 1, + anon_sym_handle, + ACTIONS(24030), 1, + anon_sym_COLON, + ACTIONS(24032), 1, + anon_sym_andalso, + ACTIONS(24034), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + [957732] = 7, + ACTIONS(22850), 1, + anon_sym_handle, + ACTIONS(24030), 1, + anon_sym_COLON, + ACTIONS(24032), 1, + anon_sym_andalso, + ACTIONS(24034), 1, + anon_sym_orelse, + ACTIONS(24095), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_BSLASH_BSLASH, + [957758] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23701), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957780] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [957798] = 6, + ACTIONS(21732), 1, + anon_sym_handle, + ACTIONS(24087), 1, + anon_sym_COLON, + ACTIONS(24089), 1, + anon_sym_andalso, + ACTIONS(24091), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [957822] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24533), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957844] = 3, + ACTIONS(24097), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + [957862] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23998), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957884] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22534), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957906] = 3, + ACTIONS(24099), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 8, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + [957924] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22378), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [957946] = 4, + ACTIONS(24055), 1, + anon_sym_STAR, + STATE(16512), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [957966] = 4, + ACTIONS(24101), 1, + anon_sym_STAR, + STATE(16512), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [957986] = 6, + ACTIONS(22850), 1, + anon_sym_handle, + ACTIONS(24030), 1, + anon_sym_COLON, + ACTIONS(24032), 1, + anon_sym_andalso, + ACTIONS(24034), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + [958010] = 6, + ACTIONS(22850), 1, + anon_sym_handle, + ACTIONS(24030), 1, + anon_sym_COLON, + ACTIONS(24032), 1, + anon_sym_andalso, + ACTIONS(24034), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + [958034] = 3, + ACTIONS(24104), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [958052] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23293), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958074] = 4, + ACTIONS(24062), 1, + anon_sym_STAR, + STATE(16518), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [958094] = 4, + ACTIONS(24106), 1, + anon_sym_STAR, + STATE(16518), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [958114] = 6, + ACTIONS(21732), 1, + anon_sym_handle, + ACTIONS(24087), 1, + anon_sym_COLON, + ACTIONS(24089), 1, + anon_sym_andalso, + ACTIONS(24091), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [958138] = 6, + ACTIONS(21732), 1, + anon_sym_handle, + ACTIONS(24087), 1, + anon_sym_COLON, + ACTIONS(24089), 1, + anon_sym_andalso, + ACTIONS(24091), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [958162] = 3, + ACTIONS(24109), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [958180] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22212), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958202] = 5, + ACTIONS(24111), 1, + anon_sym_LPAREN, + ACTIONS(24115), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24113), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(103), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958224] = 5, + ACTIONS(24111), 1, + anon_sym_LPAREN, + ACTIONS(24115), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24113), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(104), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958246] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14932), 1, + sym_datdesc, + STATE(15404), 1, + sym__datdesc, + STATE(24616), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24992), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [958276] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23023), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958298] = 3, + ACTIONS(24117), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [958316] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24120), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958338] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23537), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958360] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24243), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958382] = 3, + ACTIONS(24119), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [958400] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22610), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958422] = 3, + ACTIONS(24121), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 8, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + [958440] = 3, + ACTIONS(24123), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [958458] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + anon_sym_STAR, + [958474] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23643), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958496] = 4, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + [958516] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24621), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958538] = 3, + ACTIONS(24030), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + [958556] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(21670), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958578] = 5, + ACTIONS(24125), 1, + anon_sym_LPAREN, + ACTIONS(24129), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24127), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(157), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958600] = 3, + ACTIONS(24087), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [958618] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [958634] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [958650] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(21899), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958672] = 5, + ACTIONS(24125), 1, + anon_sym_LPAREN, + ACTIONS(24129), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24127), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(220), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958694] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [958710] = 6, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_SEMI, + [958734] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22122), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958756] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22353), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958778] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22594), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958800] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22838), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958822] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23028), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958844] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23291), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958866] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23520), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958888] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23785), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958910] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [958928] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [958944] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24097), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958966] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24424), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [958988] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24589), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959010] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22228), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959032] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(21984), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959054] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24333), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959076] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22996), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959098] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22056), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959120] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22739), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959142] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23541), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959164] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24302), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959186] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24595), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959208] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23826), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959230] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22365), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959252] = 4, + ACTIONS(24030), 1, + anon_sym_COLON, + ACTIONS(24032), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_BSLASH_BSLASH, + [959272] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23492), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959294] = 4, + ACTIONS(24087), 1, + anon_sym_COLON, + ACTIONS(24089), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_BSLASH_BSLASH, + [959314] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(21645), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959336] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(21905), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959358] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22156), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959380] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22352), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959402] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22567), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959424] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22801), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959446] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23057), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959468] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23336), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959490] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [959506] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23578), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959528] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23788), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959550] = 5, + ACTIONS(24131), 1, + anon_sym_LPAREN, + ACTIONS(24135), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24133), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(210), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959572] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24294), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959594] = 5, + ACTIONS(24131), 1, + anon_sym_LPAREN, + ACTIONS(24135), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24133), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(139), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959616] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24631), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959638] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23214), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959660] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22922), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959682] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(21572), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959704] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22335), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959726] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23100), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959748] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23996), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959770] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(21473), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959792] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [959808] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(21801), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959830] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22081), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959852] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22326), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959874] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22601), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959896] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(22860), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959918] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [959934] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23114), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [959956] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(21317), 1, + sym_datbind, + STATE(24610), 1, + sym_tyvarseq, + STATE(24749), 1, + sym__datbind, + STATE(24834), 1, + sym_tyvar, + STATE(24989), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [959986] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(23549), 1, + sym_typbind, + STATE(23742), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24895), 1, + sym_tycon, + STATE(24984), 1, + sym__typbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960016] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [960032] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(15076), 1, + sym_typbind, + STATE(15384), 1, + sym__typbind, + STATE(23947), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(25041), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960062] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14006), 1, + sym__typbind, + STATE(14012), 1, + sym_typbind, + STATE(23679), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24889), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960092] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13652), 1, + sym_datbind, + STATE(14153), 1, + sym__datbind, + STATE(23681), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24891), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960122] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13695), 1, + sym__typbind, + STATE(14012), 1, + sym_typbind, + STATE(23679), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24889), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960152] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [960168] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(12411), 1, + sym_typbind, + STATE(13059), 1, + sym__typbind, + STATE(22871), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24926), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960198] = 5, + ACTIONS(24079), 1, + anon_sym_LPAREN, + ACTIONS(24083), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24081), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(4771), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [960220] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(24491), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [960242] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14006), 1, + sym__typbind, + STATE(14018), 1, + sym_typbind, + STATE(23798), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24925), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960272] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13655), 1, + sym_datbind, + STATE(14157), 1, + sym__datbind, + STATE(23744), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24935), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960302] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13695), 1, + sym__typbind, + STATE(14018), 1, + sym_typbind, + STATE(23798), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24925), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960332] = 5, + ACTIONS(24137), 1, + anon_sym_LPAREN, + ACTIONS(24141), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24139), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(120), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [960354] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(11659), 1, + sym_datbind, + STATE(12959), 1, + sym__datbind, + STATE(23045), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24903), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960384] = 5, + ACTIONS(24137), 1, + anon_sym_LPAREN, + ACTIONS(24141), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24139), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(108), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [960406] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14006), 1, + sym__typbind, + STATE(14160), 1, + sym_typbind, + STATE(23857), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24959), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960436] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14027), 1, + sym_datbind, + STATE(14204), 1, + sym__datbind, + STATE(23799), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24928), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960466] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13695), 1, + sym__typbind, + STATE(14160), 1, + sym_typbind, + STATE(23857), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24959), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960496] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(21317), 1, + sym_datbind, + STATE(24610), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24849), 1, + sym__datbind, + STATE(24989), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960526] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14006), 1, + sym__typbind, + STATE(14036), 1, + sym_typbind, + STATE(23893), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24997), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960556] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13660), 1, + sym_datbind, + STATE(14167), 1, + sym__datbind, + STATE(23858), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24962), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960586] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13695), 1, + sym__typbind, + STATE(14036), 1, + sym_typbind, + STATE(23893), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24997), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960616] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + anon_sym_STAR, + [960632] = 4, + ACTIONS(24044), 1, + anon_sym_PIPE, + STATE(16452), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 7, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [960652] = 4, + ACTIONS(24044), 1, + anon_sym_PIPE, + STATE(16454), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 7, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [960672] = 4, + ACTIONS(24143), 1, + anon_sym_PIPE, + STATE(16635), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 7, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [960692] = 4, + ACTIONS(24143), 1, + anon_sym_PIPE, + STATE(16635), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 7, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [960712] = 4, + ACTIONS(24145), 1, + anon_sym_PIPE, + STATE(16635), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 7, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [960732] = 5, + ACTIONS(24148), 1, + anon_sym_LPAREN, + ACTIONS(24152), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24150), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(28), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [960754] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(12411), 1, + sym_typbind, + STATE(13110), 1, + sym__typbind, + STATE(22871), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24926), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960784] = 5, + ACTIONS(24148), 1, + anon_sym_LPAREN, + ACTIONS(24152), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24150), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(30), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [960806] = 4, + ACTIONS(24154), 1, + anon_sym_PIPE, + STATE(16641), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [960826] = 4, + ACTIONS(24154), 1, + anon_sym_PIPE, + STATE(16641), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [960846] = 4, + ACTIONS(24156), 1, + anon_sym_PIPE, + STATE(16641), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [960866] = 9, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(23549), 1, + sym_typbind, + STATE(23742), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24885), 1, + sym__typbind, + STATE(24895), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [960896] = 4, + ACTIONS(24159), 1, + anon_sym_PIPE, + STATE(16645), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [960916] = 4, + ACTIONS(24159), 1, + anon_sym_PIPE, + STATE(16645), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [960936] = 4, + ACTIONS(24161), 1, + anon_sym_PIPE, + STATE(16645), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [960956] = 4, + ACTIONS(24143), 1, + anon_sym_PIPE, + STATE(16633), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 7, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [960976] = 4, + ACTIONS(24143), 1, + anon_sym_PIPE, + STATE(16634), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 7, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [960996] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [961012] = 4, + ACTIONS(24154), 1, + anon_sym_PIPE, + STATE(16639), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [961032] = 4, + ACTIONS(24154), 1, + anon_sym_PIPE, + STATE(16640), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [961052] = 4, + ACTIONS(24159), 1, + anon_sym_PIPE, + STATE(16643), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [961072] = 4, + ACTIONS(24159), 1, + anon_sym_PIPE, + STATE(16644), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [961092] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [961108] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [961124] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [961140] = 4, + ACTIONS(23984), 1, + anon_sym_STAR, + STATE(16358), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 7, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + [961160] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [961178] = 5, + ACTIONS(24164), 1, + anon_sym_LPAREN, + ACTIONS(24168), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24166), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(111), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [961200] = 5, + ACTIONS(24164), 1, + anon_sym_LPAREN, + ACTIONS(24168), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24166), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(117), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [961222] = 5, + ACTIONS(23970), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(23979), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [961244] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [961260] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [961276] = 3, + ACTIONS(24170), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + [961294] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [961310] = 4, + ACTIONS(23982), 1, + anon_sym_STAR, + STATE(16350), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 7, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + [961330] = 5, + ACTIONS(24172), 1, + anon_sym_LPAREN, + ACTIONS(24176), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24174), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(115), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [961352] = 5, + ACTIONS(24172), 1, + anon_sym_LPAREN, + ACTIONS(24176), 1, + aux_sym_hol_atomic_type_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24174), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + STATE(124), 4, + sym__hol_type, + sym_hol_list_ty, + sym_hol_fun_ty, + sym_hol_atomic_type, + [961374] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [961392] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 9, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + anon_sym_STAR, + [961408] = 3, + ACTIONS(24178), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 8, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [961426] = 9, + ACTIONS(8219), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24180), 1, + anon_sym_COMMA, + STATE(2187), 1, + aux_sym_record_exp_repeat1, + STATE(20572), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961455] = 9, + ACTIONS(8405), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24182), 1, + anon_sym_COMMA, + STATE(2276), 1, + aux_sym_record_exp_repeat1, + STATE(19538), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961484] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24186), 1, + anon_sym_SEMI, + ACTIONS(24188), 1, + anon_sym_end, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + STATE(2277), 1, + aux_sym_sequence_exp_repeat1, + STATE(19549), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961513] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24196), 1, + anon_sym_SEMI, + ACTIONS(24198), 1, + anon_sym_end, + STATE(2282), 1, + aux_sym_sequence_exp_repeat1, + STATE(19570), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961542] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24200), 1, + anon_sym_SEMI, + ACTIONS(24202), 1, + anon_sym_end, + STATE(2283), 1, + aux_sym_sequence_exp_repeat1, + STATE(19571), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961571] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24204), 1, + anon_sym_SEMI, + ACTIONS(24206), 1, + anon_sym_end, + STATE(2286), 1, + aux_sym_sequence_exp_repeat1, + STATE(19601), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961600] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [961615] = 9, + ACTIONS(4663), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24208), 1, + anon_sym_COMMA, + STATE(916), 1, + aux_sym_record_exp_repeat1, + STATE(19695), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961644] = 9, + ACTIONS(8443), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24210), 1, + anon_sym_COMMA, + STATE(2294), 1, + aux_sym_record_exp_repeat1, + STATE(19701), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961673] = 9, + ACTIONS(4103), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24212), 1, + anon_sym_COMMA, + STATE(724), 1, + aux_sym_record_exp_repeat1, + STATE(19810), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961702] = 9, + ACTIONS(8445), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24214), 1, + anon_sym_COMMA, + STATE(2295), 1, + aux_sym_record_exp_repeat1, + STATE(19721), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961731] = 9, + ACTIONS(8447), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24216), 1, + anon_sym_SEMI, + STATE(2296), 1, + aux_sym_sequence_exp_repeat1, + STATE(19722), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961760] = 9, + ACTIONS(6943), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24218), 1, + anon_sym_COMMA, + STATE(1612), 1, + aux_sym_record_exp_repeat1, + STATE(19821), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961789] = 9, + ACTIONS(4665), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24220), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_record_exp_repeat1, + STATE(19730), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961818] = 9, + ACTIONS(8449), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24222), 1, + anon_sym_COMMA, + STATE(2297), 1, + aux_sym_record_exp_repeat1, + STATE(19731), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961847] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24224), 1, + anon_sym_SEMI, + ACTIONS(24226), 1, + anon_sym_end, + STATE(2298), 1, + aux_sym_sequence_exp_repeat1, + STATE(19733), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961876] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24228), 1, + anon_sym_SEMI, + ACTIONS(24230), 1, + anon_sym_end, + STATE(2303), 1, + aux_sym_sequence_exp_repeat1, + STATE(19765), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961905] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24232), 1, + anon_sym_SEMI, + ACTIONS(24234), 1, + anon_sym_end, + STATE(2304), 1, + aux_sym_sequence_exp_repeat1, + STATE(19771), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961934] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24236), 1, + anon_sym_SEMI, + ACTIONS(24238), 1, + anon_sym_end, + STATE(1410), 1, + aux_sym_sequence_exp_repeat1, + STATE(20223), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961963] = 9, + ACTIONS(6945), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24240), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_record_exp_repeat1, + STATE(19907), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [961992] = 9, + ACTIONS(6947), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24242), 1, + anon_sym_SEMI, + STATE(1614), 1, + aux_sym_sequence_exp_repeat1, + STATE(19931), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962021] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24244), 1, + anon_sym_SEMI, + ACTIONS(24246), 1, + anon_sym_end, + STATE(1411), 1, + aux_sym_sequence_exp_repeat1, + STATE(20226), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962050] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24248), 1, + anon_sym_SEMI, + ACTIONS(24250), 1, + anon_sym_end, + STATE(2307), 1, + aux_sym_sequence_exp_repeat1, + STATE(19780), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962079] = 9, + ACTIONS(4105), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24252), 1, + anon_sym_COMMA, + STATE(725), 1, + aux_sym_record_exp_repeat1, + STATE(20023), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962108] = 9, + ACTIONS(7923), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24254), 1, + anon_sym_COMMA, + STATE(2080), 1, + aux_sym_record_exp_repeat1, + STATE(19915), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962137] = 9, + ACTIONS(4507), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24256), 1, + anon_sym_COMMA, + STATE(862), 1, + aux_sym_record_exp_repeat1, + STATE(20199), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962166] = 9, + ACTIONS(7965), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24258), 1, + anon_sym_COMMA, + STATE(2100), 1, + aux_sym_record_exp_repeat1, + STATE(20218), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962195] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24260), 1, + anon_sym_SEMI, + ACTIONS(24262), 1, + anon_sym_end, + STATE(1390), 1, + aux_sym_sequence_exp_repeat1, + STATE(19812), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962224] = 9, + ACTIONS(6949), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24264), 1, + anon_sym_COMMA, + STATE(1615), 1, + aux_sym_record_exp_repeat1, + STATE(20044), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962253] = 9, + ACTIONS(4681), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24266), 1, + anon_sym_COMMA, + STATE(922), 1, + aux_sym_record_exp_repeat1, + STATE(19865), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962282] = 9, + ACTIONS(8487), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24268), 1, + anon_sym_COMMA, + STATE(2315), 1, + aux_sym_record_exp_repeat1, + STATE(19870), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962311] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24270), 1, + anon_sym_SEMI, + ACTIONS(24272), 1, + anon_sym_end, + STATE(1616), 1, + aux_sym_sequence_exp_repeat1, + STATE(20050), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962340] = 9, + ACTIONS(4049), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24274), 1, + anon_sym_COMMA, + STATE(706), 1, + aux_sym_record_exp_repeat1, + STATE(20916), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962369] = 9, + ACTIONS(8489), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24276), 1, + anon_sym_COMMA, + STATE(2316), 1, + aux_sym_record_exp_repeat1, + STATE(19879), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962398] = 9, + ACTIONS(8491), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24278), 1, + anon_sym_SEMI, + STATE(2317), 1, + aux_sym_sequence_exp_repeat1, + STATE(19883), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962427] = 9, + ACTIONS(4683), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24280), 1, + anon_sym_COMMA, + STATE(923), 1, + aux_sym_record_exp_repeat1, + STATE(19895), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962456] = 9, + ACTIONS(7967), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24282), 1, + anon_sym_COMMA, + STATE(2101), 1, + aux_sym_record_exp_repeat1, + STATE(20282), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962485] = 9, + ACTIONS(8493), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24284), 1, + anon_sym_COMMA, + STATE(2318), 1, + aux_sym_record_exp_repeat1, + STATE(19903), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962514] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24286), 1, + anon_sym_SEMI, + ACTIONS(24288), 1, + anon_sym_end, + STATE(2319), 1, + aux_sym_sequence_exp_repeat1, + STATE(19912), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962543] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [962558] = 9, + ACTIONS(7969), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24290), 1, + anon_sym_SEMI, + STATE(2102), 1, + aux_sym_sequence_exp_repeat1, + STATE(20283), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962587] = 9, + ACTIONS(6811), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24292), 1, + anon_sym_COMMA, + STATE(1549), 1, + aux_sym_record_exp_repeat1, + STATE(21013), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962616] = 9, + ACTIONS(4509), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24294), 1, + anon_sym_COMMA, + STATE(863), 1, + aux_sym_record_exp_repeat1, + STATE(20324), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962645] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24296), 1, + anon_sym_SEMI, + ACTIONS(24298), 1, + anon_sym_end, + STATE(2324), 1, + aux_sym_sequence_exp_repeat1, + STATE(19958), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962674] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24300), 1, + anon_sym_SEMI, + ACTIONS(24302), 1, + anon_sym_end, + STATE(2325), 1, + aux_sym_sequence_exp_repeat1, + STATE(19963), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962703] = 9, + ACTIONS(7971), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24304), 1, + anon_sym_COMMA, + STATE(2103), 1, + aux_sym_record_exp_repeat1, + STATE(20355), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962732] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24306), 1, + anon_sym_SEMI, + ACTIONS(24308), 1, + anon_sym_end, + STATE(2104), 1, + aux_sym_sequence_exp_repeat1, + STATE(20361), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962761] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24310), 1, + anon_sym_SEMI, + ACTIONS(24312), 1, + anon_sym_end, + STATE(2328), 1, + aux_sym_sequence_exp_repeat1, + STATE(19985), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962790] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [962805] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 6, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [962822] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24314), 1, + anon_sym_SEMI, + ACTIONS(24316), 1, + anon_sym_end, + STATE(1621), 1, + aux_sym_sequence_exp_repeat1, + STATE(20142), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962851] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24318), 1, + anon_sym_SEMI, + ACTIONS(24320), 1, + anon_sym_end, + STATE(2109), 1, + aux_sym_sequence_exp_repeat1, + STATE(20514), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962880] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24322), 1, + anon_sym_SEMI, + ACTIONS(24324), 1, + anon_sym_end, + STATE(1622), 1, + aux_sym_sequence_exp_repeat1, + STATE(20144), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962909] = 9, + ACTIONS(4699), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24326), 1, + anon_sym_COMMA, + STATE(928), 1, + aux_sym_record_exp_repeat1, + STATE(20115), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962938] = 9, + ACTIONS(8533), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24328), 1, + anon_sym_COMMA, + STATE(2337), 1, + aux_sym_record_exp_repeat1, + STATE(20117), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962967] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24330), 1, + anon_sym_SEMI, + ACTIONS(24332), 1, + anon_sym_end, + STATE(2110), 1, + aux_sym_sequence_exp_repeat1, + STATE(20539), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [962996] = 9, + ACTIONS(8535), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24334), 1, + anon_sym_COMMA, + STATE(2338), 1, + aux_sym_record_exp_repeat1, + STATE(20121), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963025] = 9, + ACTIONS(8537), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24336), 1, + anon_sym_SEMI, + STATE(2339), 1, + aux_sym_sequence_exp_repeat1, + STATE(20125), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963054] = 9, + ACTIONS(4701), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24338), 1, + anon_sym_COMMA, + STATE(929), 1, + aux_sym_record_exp_repeat1, + STATE(20134), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963083] = 9, + ACTIONS(8539), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24340), 1, + anon_sym_COMMA, + STATE(2341), 1, + aux_sym_record_exp_repeat1, + STATE(20135), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963112] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24342), 1, + anon_sym_SEMI, + ACTIONS(24344), 1, + anon_sym_end, + STATE(2342), 1, + aux_sym_sequence_exp_repeat1, + STATE(20136), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963141] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24346), 1, + anon_sym_SEMI, + ACTIONS(24348), 1, + anon_sym_end, + STATE(2347), 1, + aux_sym_sequence_exp_repeat1, + STATE(20152), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963170] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24350), 1, + anon_sym_SEMI, + ACTIONS(24352), 1, + anon_sym_end, + STATE(2348), 1, + aux_sym_sequence_exp_repeat1, + STATE(20153), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963199] = 9, + ACTIONS(3577), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24354), 1, + anon_sym_COMMA, + STATE(578), 1, + aux_sym_record_exp_repeat1, + STATE(21308), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963228] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24356), 1, + anon_sym_SEMI, + ACTIONS(24358), 1, + anon_sym_end, + STATE(1625), 1, + aux_sym_sequence_exp_repeat1, + STATE(20183), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963257] = 9, + ACTIONS(7925), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24360), 1, + anon_sym_SEMI, + STATE(2081), 1, + aux_sym_sequence_exp_repeat1, + STATE(19932), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963286] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24362), 1, + anon_sym_SEMI, + ACTIONS(24364), 1, + anon_sym_end, + STATE(2351), 1, + aux_sym_sequence_exp_repeat1, + STATE(20164), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963315] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [963330] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [963345] = 9, + ACTIONS(4717), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24366), 1, + anon_sym_COMMA, + STATE(934), 1, + aux_sym_record_exp_repeat1, + STATE(20217), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963374] = 9, + ACTIONS(8577), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24368), 1, + anon_sym_COMMA, + STATE(2359), 1, + aux_sym_record_exp_repeat1, + STATE(20219), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963403] = 9, + ACTIONS(8579), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24370), 1, + anon_sym_COMMA, + STATE(2360), 1, + aux_sym_record_exp_repeat1, + STATE(20224), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963432] = 9, + ACTIONS(8581), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24372), 1, + anon_sym_SEMI, + STATE(2361), 1, + aux_sym_sequence_exp_repeat1, + STATE(20225), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963461] = 9, + ACTIONS(4719), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24374), 1, + anon_sym_COMMA, + STATE(935), 1, + aux_sym_record_exp_repeat1, + STATE(20234), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963490] = 9, + ACTIONS(8583), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24376), 1, + anon_sym_COMMA, + STATE(2362), 1, + aux_sym_record_exp_repeat1, + STATE(20241), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963519] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24378), 1, + anon_sym_SEMI, + ACTIONS(24380), 1, + anon_sym_end, + STATE(2363), 1, + aux_sym_sequence_exp_repeat1, + STATE(20246), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963548] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24382), 1, + anon_sym_SEMI, + ACTIONS(24384), 1, + anon_sym_end, + STATE(1414), 1, + aux_sym_sequence_exp_repeat1, + STATE(20388), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963577] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24386), 1, + anon_sym_SEMI, + ACTIONS(24388), 1, + anon_sym_end, + STATE(2368), 1, + aux_sym_sequence_exp_repeat1, + STATE(20259), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963606] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24390), 1, + anon_sym_SEMI, + ACTIONS(24392), 1, + anon_sym_end, + STATE(2369), 1, + aux_sym_sequence_exp_repeat1, + STATE(20262), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963635] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24394), 1, + anon_sym_SEMI, + ACTIONS(24396), 1, + anon_sym_end, + STATE(2372), 1, + aux_sym_sequence_exp_repeat1, + STATE(20271), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963664] = 9, + ACTIONS(4121), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24398), 1, + anon_sym_COMMA, + STATE(730), 1, + aux_sym_record_exp_repeat1, + STATE(20320), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963693] = 9, + ACTIONS(6987), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24400), 1, + anon_sym_COMMA, + STATE(1633), 1, + aux_sym_record_exp_repeat1, + STATE(20337), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963722] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 6, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [963739] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [963754] = 9, + ACTIONS(6989), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24402), 1, + anon_sym_COMMA, + STATE(1634), 1, + aux_sym_record_exp_repeat1, + STATE(20359), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963783] = 9, + ACTIONS(6991), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24404), 1, + anon_sym_SEMI, + STATE(1635), 1, + aux_sym_sequence_exp_repeat1, + STATE(20364), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963812] = 9, + ACTIONS(4735), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24406), 1, + anon_sym_COMMA, + STATE(940), 1, + aux_sym_record_exp_repeat1, + STATE(20321), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963841] = 9, + ACTIONS(8621), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24408), 1, + anon_sym_COMMA, + STATE(2380), 1, + aux_sym_record_exp_repeat1, + STATE(20326), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963870] = 9, + ACTIONS(8623), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24410), 1, + anon_sym_COMMA, + STATE(2381), 1, + aux_sym_record_exp_repeat1, + STATE(20332), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963899] = 9, + ACTIONS(8625), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24412), 1, + anon_sym_SEMI, + STATE(2382), 1, + aux_sym_sequence_exp_repeat1, + STATE(20333), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963928] = 9, + ACTIONS(4737), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24414), 1, + anon_sym_COMMA, + STATE(941), 1, + aux_sym_record_exp_repeat1, + STATE(20338), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963957] = 9, + ACTIONS(8627), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24416), 1, + anon_sym_COMMA, + STATE(2383), 1, + aux_sym_record_exp_repeat1, + STATE(20339), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [963986] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24418), 1, + anon_sym_SEMI, + ACTIONS(24420), 1, + anon_sym_end, + STATE(2384), 1, + aux_sym_sequence_exp_repeat1, + STATE(20343), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964015] = 9, + ACTIONS(4123), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24422), 1, + anon_sym_COMMA, + STATE(731), 1, + aux_sym_record_exp_repeat1, + STATE(20377), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964044] = 9, + ACTIONS(6993), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24424), 1, + anon_sym_COMMA, + STATE(1636), 1, + aux_sym_record_exp_repeat1, + STATE(20379), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964073] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24426), 1, + anon_sym_SEMI, + ACTIONS(24428), 1, + anon_sym_end, + STATE(1637), 1, + aux_sym_sequence_exp_repeat1, + STATE(20384), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964102] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24430), 1, + anon_sym_SEMI, + ACTIONS(24432), 1, + anon_sym_end, + STATE(2389), 1, + aux_sym_sequence_exp_repeat1, + STATE(20358), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964131] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24434), 1, + anon_sym_SEMI, + ACTIONS(24436), 1, + anon_sym_end, + STATE(2390), 1, + aux_sym_sequence_exp_repeat1, + STATE(20360), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964160] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24438), 1, + anon_sym_SEMI, + ACTIONS(24440), 1, + anon_sym_end, + STATE(2393), 1, + aux_sym_sequence_exp_repeat1, + STATE(20372), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964189] = 3, + ACTIONS(24442), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 7, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + [964206] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24444), 1, + anon_sym_SEMI, + ACTIONS(24446), 1, + anon_sym_end, + STATE(1642), 1, + aux_sym_sequence_exp_repeat1, + STATE(20419), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964235] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24448), 1, + anon_sym_SEMI, + ACTIONS(24450), 1, + anon_sym_end, + STATE(1643), 1, + aux_sym_sequence_exp_repeat1, + STATE(20420), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964264] = 9, + ACTIONS(4753), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24452), 1, + anon_sym_COMMA, + STATE(946), 1, + aux_sym_record_exp_repeat1, + STATE(20414), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964293] = 9, + ACTIONS(8665), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24454), 1, + anon_sym_COMMA, + STATE(2401), 1, + aux_sym_record_exp_repeat1, + STATE(20415), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964322] = 4, + ACTIONS(24456), 1, + anon_sym_STAR, + STATE(16814), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + [964341] = 9, + ACTIONS(8667), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24458), 1, + anon_sym_COMMA, + STATE(2402), 1, + aux_sym_record_exp_repeat1, + STATE(20421), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964370] = 9, + ACTIONS(8669), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24460), 1, + anon_sym_SEMI, + STATE(2403), 1, + aux_sym_sequence_exp_repeat1, + STATE(20422), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964399] = 9, + ACTIONS(4755), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24462), 1, + anon_sym_COMMA, + STATE(947), 1, + aux_sym_record_exp_repeat1, + STATE(20425), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964428] = 9, + ACTIONS(8671), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24464), 1, + anon_sym_COMMA, + STATE(2404), 1, + aux_sym_record_exp_repeat1, + STATE(20428), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964457] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24466), 1, + anon_sym_SEMI, + ACTIONS(24468), 1, + anon_sym_end, + STATE(2405), 1, + aux_sym_sequence_exp_repeat1, + STATE(20431), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964486] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [964501] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24470), 1, + anon_sym_SEMI, + ACTIONS(24472), 1, + anon_sym_end, + STATE(1646), 1, + aux_sym_sequence_exp_repeat1, + STATE(20460), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964530] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24474), 1, + anon_sym_SEMI, + ACTIONS(24476), 1, + anon_sym_end, + STATE(2410), 1, + aux_sym_sequence_exp_repeat1, + STATE(20445), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964559] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24478), 1, + anon_sym_SEMI, + ACTIONS(24480), 1, + anon_sym_end, + STATE(2411), 1, + aux_sym_sequence_exp_repeat1, + STATE(20446), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964588] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24482), 1, + anon_sym_SEMI, + ACTIONS(24484), 1, + anon_sym_end, + STATE(2414), 1, + aux_sym_sequence_exp_repeat1, + STATE(20461), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964617] = 9, + ACTIONS(4771), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24486), 1, + anon_sym_COMMA, + STATE(952), 1, + aux_sym_record_exp_repeat1, + STATE(20491), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964646] = 9, + ACTIONS(8709), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24488), 1, + anon_sym_COMMA, + STATE(2422), 1, + aux_sym_record_exp_repeat1, + STATE(20498), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964675] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24490), 1, + anon_sym_SEMI, + ACTIONS(24492), 1, + anon_sym_end, + STATE(2113), 1, + aux_sym_sequence_exp_repeat1, + STATE(20672), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964704] = 9, + ACTIONS(8711), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24494), 1, + anon_sym_COMMA, + STATE(2423), 1, + aux_sym_record_exp_repeat1, + STATE(20504), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964733] = 9, + ACTIONS(8713), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24496), 1, + anon_sym_SEMI, + STATE(2424), 1, + aux_sym_sequence_exp_repeat1, + STATE(20506), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964762] = 9, + ACTIONS(4773), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24498), 1, + anon_sym_COMMA, + STATE(953), 1, + aux_sym_record_exp_repeat1, + STATE(20513), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964791] = 9, + ACTIONS(8715), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24500), 1, + anon_sym_COMMA, + STATE(2425), 1, + aux_sym_record_exp_repeat1, + STATE(20516), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964820] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24502), 1, + anon_sym_SEMI, + ACTIONS(24504), 1, + anon_sym_end, + STATE(2426), 1, + aux_sym_sequence_exp_repeat1, + STATE(20519), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964849] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [964864] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24506), 1, + anon_sym_SEMI, + ACTIONS(24508), 1, + anon_sym_end, + STATE(2431), 1, + aux_sym_sequence_exp_repeat1, + STATE(20534), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964893] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24510), 1, + anon_sym_SEMI, + ACTIONS(24512), 1, + anon_sym_end, + STATE(2432), 1, + aux_sym_sequence_exp_repeat1, + STATE(20536), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964922] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24514), 1, + anon_sym_SEMI, + ACTIONS(24516), 1, + anon_sym_end, + STATE(2435), 1, + aux_sym_sequence_exp_repeat1, + STATE(20547), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964951] = 9, + ACTIONS(3591), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24518), 1, + anon_sym_COMMA, + STATE(582), 1, + aux_sym_record_exp_repeat1, + STATE(20674), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [964980] = 9, + ACTIONS(5919), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24520), 1, + anon_sym_COMMA, + STATE(1124), 1, + aux_sym_record_exp_repeat1, + STATE(20681), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965009] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [965024] = 9, + ACTIONS(6813), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24522), 1, + anon_sym_COMMA, + STATE(1550), 1, + aux_sym_record_exp_repeat1, + STATE(21154), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965053] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [965068] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [965083] = 9, + ACTIONS(4139), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24524), 1, + anon_sym_COMMA, + STATE(736), 1, + aux_sym_record_exp_repeat1, + STATE(20668), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965112] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24526), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + aux_sym_hol_atomic_type_token1, + ACTIONS(24528), 4, + anon_sym_End, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + [965129] = 9, + ACTIONS(7031), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24530), 1, + anon_sym_COMMA, + STATE(1654), 1, + aux_sym_record_exp_repeat1, + STATE(20675), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965158] = 9, + ACTIONS(4789), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24532), 1, + anon_sym_COMMA, + STATE(958), 1, + aux_sym_record_exp_repeat1, + STATE(20596), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965187] = 9, + ACTIONS(8755), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24534), 1, + anon_sym_COMMA, + STATE(2445), 1, + aux_sym_record_exp_repeat1, + STATE(20602), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965216] = 9, + ACTIONS(8757), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24536), 1, + anon_sym_COMMA, + STATE(2446), 1, + aux_sym_record_exp_repeat1, + STATE(20608), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965245] = 9, + ACTIONS(8759), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24538), 1, + anon_sym_SEMI, + STATE(2447), 1, + aux_sym_sequence_exp_repeat1, + STATE(20609), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965274] = 9, + ACTIONS(4791), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24540), 1, + anon_sym_COMMA, + STATE(959), 1, + aux_sym_record_exp_repeat1, + STATE(20619), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965303] = 9, + ACTIONS(8761), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24542), 1, + anon_sym_COMMA, + STATE(2448), 1, + aux_sym_record_exp_repeat1, + STATE(20620), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965332] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24544), 1, + anon_sym_SEMI, + ACTIONS(24546), 1, + anon_sym_end, + STATE(2449), 1, + aux_sym_sequence_exp_repeat1, + STATE(20622), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965361] = 4, + ACTIONS(24548), 1, + anon_sym_STAR, + STATE(16814), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + [965380] = 9, + ACTIONS(7033), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24551), 1, + anon_sym_COMMA, + STATE(1655), 1, + aux_sym_record_exp_repeat1, + STATE(20739), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965409] = 9, + ACTIONS(7035), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24553), 1, + anon_sym_SEMI, + STATE(1656), 1, + aux_sym_sequence_exp_repeat1, + STATE(20740), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965438] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24555), 1, + anon_sym_SEMI, + ACTIONS(24557), 1, + anon_sym_end, + STATE(2454), 1, + aux_sym_sequence_exp_repeat1, + STATE(20638), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965467] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24559), 1, + anon_sym_SEMI, + ACTIONS(24561), 1, + anon_sym_end, + STATE(2455), 1, + aux_sym_sequence_exp_repeat1, + STATE(20640), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965496] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24563), 1, + anon_sym_SEMI, + ACTIONS(24565), 1, + anon_sym_end, + STATE(2458), 1, + aux_sym_sequence_exp_repeat1, + STATE(20654), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965525] = 9, + ACTIONS(5921), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24567), 1, + anon_sym_COMMA, + STATE(1125), 1, + aux_sym_record_exp_repeat1, + STATE(20847), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965554] = 9, + ACTIONS(5923), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24569), 1, + anon_sym_SEMI, + STATE(1126), 1, + aux_sym_sequence_exp_repeat1, + STATE(20848), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965583] = 9, + ACTIONS(4141), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24571), 1, + anon_sym_COMMA, + STATE(737), 1, + aux_sym_record_exp_repeat1, + STATE(20757), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965612] = 9, + ACTIONS(3593), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24573), 1, + anon_sym_COMMA, + STATE(583), 1, + aux_sym_record_exp_repeat1, + STATE(20869), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965641] = 9, + ACTIONS(7037), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24575), 1, + anon_sym_COMMA, + STATE(1657), 1, + aux_sym_record_exp_repeat1, + STATE(20763), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965670] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24577), 1, + anon_sym_SEMI, + ACTIONS(24579), 1, + anon_sym_end, + STATE(1658), 1, + aux_sym_sequence_exp_repeat1, + STATE(20771), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965699] = 9, + ACTIONS(4807), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24581), 1, + anon_sym_COMMA, + STATE(964), 1, + aux_sym_record_exp_repeat1, + STATE(20706), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965728] = 9, + ACTIONS(5927), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24583), 1, + anon_sym_COMMA, + STATE(1128), 1, + aux_sym_record_exp_repeat1, + STATE(20873), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965757] = 9, + ACTIONS(8799), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24585), 1, + anon_sym_COMMA, + STATE(2466), 1, + aux_sym_record_exp_repeat1, + STATE(20713), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965786] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24587), 1, + anon_sym_SEMI, + ACTIONS(24589), 1, + anon_sym_end, + STATE(1129), 1, + aux_sym_sequence_exp_repeat1, + STATE(20880), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965815] = 9, + ACTIONS(8801), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24591), 1, + anon_sym_COMMA, + STATE(2467), 1, + aux_sym_record_exp_repeat1, + STATE(20719), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965844] = 9, + ACTIONS(8803), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24593), 1, + anon_sym_SEMI, + STATE(2468), 1, + aux_sym_sequence_exp_repeat1, + STATE(20721), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965873] = 9, + ACTIONS(4809), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24595), 1, + anon_sym_COMMA, + STATE(965), 1, + aux_sym_record_exp_repeat1, + STATE(20726), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965902] = 9, + ACTIONS(8805), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24597), 1, + anon_sym_COMMA, + STATE(2469), 1, + aux_sym_record_exp_repeat1, + STATE(20732), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965931] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24599), 1, + anon_sym_SEMI, + ACTIONS(24601), 1, + anon_sym_end, + STATE(2470), 1, + aux_sym_sequence_exp_repeat1, + STATE(20735), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965960] = 9, + ACTIONS(6815), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24603), 1, + anon_sym_SEMI, + STATE(1551), 1, + aux_sym_sequence_exp_repeat1, + STATE(21216), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [965989] = 9, + ACTIONS(4491), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24605), 1, + anon_sym_COMMA, + STATE(857), 1, + aux_sym_record_exp_repeat1, + STATE(20205), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966018] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24607), 1, + anon_sym_SEMI, + ACTIONS(24609), 1, + anon_sym_end, + STATE(2475), 1, + aux_sym_sequence_exp_repeat1, + STATE(20750), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966047] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24611), 1, + anon_sym_SEMI, + ACTIONS(24613), 1, + anon_sym_end, + STATE(2476), 1, + aux_sym_sequence_exp_repeat1, + STATE(20753), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966076] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24615), 1, + anon_sym_SEMI, + ACTIONS(24617), 1, + anon_sym_end, + STATE(2479), 1, + aux_sym_sequence_exp_repeat1, + STATE(20758), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966105] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13546), 1, + sym_typbind, + STATE(23548), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24880), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [966132] = 8, + ACTIONS(24621), 1, + anon_sym_op, + ACTIONS(24623), 1, + anon_sym_PIPE, + ACTIONS(24625), 1, + anon_sym_datatype, + STATE(13395), 1, + sym__conbind, + STATE(13548), 1, + sym_vid, + STATE(13549), 1, + sym_conbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [966159] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13438), 1, + sym_datbind, + STATE(23550), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(25035), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [966186] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24627), 1, + anon_sym_SEMI, + ACTIONS(24629), 1, + anon_sym_end, + STATE(1663), 1, + aux_sym_sequence_exp_repeat1, + STATE(20843), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966215] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24631), 1, + anon_sym_SEMI, + ACTIONS(24633), 1, + anon_sym_end, + STATE(1664), 1, + aux_sym_sequence_exp_repeat1, + STATE(20845), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966244] = 9, + ACTIONS(4825), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24635), 1, + anon_sym_COMMA, + STATE(970), 1, + aux_sym_record_exp_repeat1, + STATE(20820), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966273] = 9, + ACTIONS(8843), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24637), 1, + anon_sym_COMMA, + STATE(2487), 1, + aux_sym_record_exp_repeat1, + STATE(20822), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966302] = 9, + ACTIONS(8845), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24639), 1, + anon_sym_COMMA, + STATE(2488), 1, + aux_sym_record_exp_repeat1, + STATE(20829), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966331] = 9, + ACTIONS(8847), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24641), 1, + anon_sym_SEMI, + STATE(2489), 1, + aux_sym_sequence_exp_repeat1, + STATE(20830), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966360] = 9, + ACTIONS(4827), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24643), 1, + anon_sym_COMMA, + STATE(971), 1, + aux_sym_record_exp_repeat1, + STATE(20836), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966389] = 9, + ACTIONS(8849), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24645), 1, + anon_sym_COMMA, + STATE(2490), 1, + aux_sym_record_exp_repeat1, + STATE(20838), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966418] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24647), 1, + anon_sym_SEMI, + ACTIONS(24649), 1, + anon_sym_end, + STATE(2491), 1, + aux_sym_sequence_exp_repeat1, + STATE(20840), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966447] = 9, + ACTIONS(3869), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24651), 1, + anon_sym_COMMA, + STATE(646), 1, + aux_sym_record_exp_repeat1, + STATE(20297), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966476] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [966491] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24653), 1, + anon_sym_SEMI, + ACTIONS(24655), 1, + anon_sym_end, + STATE(2496), 1, + aux_sym_sequence_exp_repeat1, + STATE(20850), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966520] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24657), 1, + anon_sym_SEMI, + ACTIONS(24659), 1, + anon_sym_end, + STATE(2497), 1, + aux_sym_sequence_exp_repeat1, + STATE(20852), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966549] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24661), 1, + anon_sym_SEMI, + ACTIONS(24663), 1, + anon_sym_end, + STATE(1667), 1, + aux_sym_sequence_exp_repeat1, + STATE(20885), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966578] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24665), 1, + anon_sym_SEMI, + ACTIONS(24667), 1, + anon_sym_end, + STATE(2500), 1, + aux_sym_sequence_exp_repeat1, + STATE(20861), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966607] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24669), 1, + anon_sym_SEMI, + ACTIONS(24671), 1, + anon_sym_end, + STATE(1134), 1, + aux_sym_sequence_exp_repeat1, + STATE(21019), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966636] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24673), 1, + anon_sym_SEMI, + ACTIONS(24675), 1, + anon_sym_end, + STATE(1135), 1, + aux_sym_sequence_exp_repeat1, + STATE(21033), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966665] = 9, + ACTIONS(4843), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24677), 1, + anon_sym_COMMA, + STATE(976), 1, + aux_sym_record_exp_repeat1, + STATE(20915), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966694] = 9, + ACTIONS(8887), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24679), 1, + anon_sym_COMMA, + STATE(2508), 1, + aux_sym_record_exp_repeat1, + STATE(20918), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966723] = 9, + ACTIONS(8889), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24681), 1, + anon_sym_COMMA, + STATE(2509), 1, + aux_sym_record_exp_repeat1, + STATE(20927), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966752] = 9, + ACTIONS(8891), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24683), 1, + anon_sym_SEMI, + STATE(2510), 1, + aux_sym_sequence_exp_repeat1, + STATE(20928), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966781] = 9, + ACTIONS(4845), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24685), 1, + anon_sym_COMMA, + STATE(977), 1, + aux_sym_record_exp_repeat1, + STATE(20935), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966810] = 9, + ACTIONS(8893), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24687), 1, + anon_sym_COMMA, + STATE(2512), 1, + aux_sym_record_exp_repeat1, + STATE(20939), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966839] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24689), 1, + anon_sym_SEMI, + ACTIONS(24691), 1, + anon_sym_end, + STATE(2513), 1, + aux_sym_sequence_exp_repeat1, + STATE(20941), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966868] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24693), 1, + anon_sym_SEMI, + ACTIONS(24695), 1, + anon_sym_end, + STATE(2519), 1, + aux_sym_sequence_exp_repeat1, + STATE(20952), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966897] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24697), 1, + anon_sym_SEMI, + ACTIONS(24699), 1, + anon_sym_end, + STATE(2520), 1, + aux_sym_sequence_exp_repeat1, + STATE(20953), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966926] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15523), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [966945] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24701), 1, + anon_sym_SEMI, + ACTIONS(24703), 1, + anon_sym_end, + STATE(2523), 1, + aux_sym_sequence_exp_repeat1, + STATE(20957), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [966974] = 9, + ACTIONS(5839), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24705), 1, + anon_sym_COMMA, + STATE(1140), 1, + aux_sym_record_exp_repeat1, + STATE(20433), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967003] = 9, + ACTIONS(4861), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24707), 1, + anon_sym_COMMA, + STATE(982), 1, + aux_sym_record_exp_repeat1, + STATE(20989), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967032] = 9, + ACTIONS(9001), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24709), 1, + anon_sym_COMMA, + STATE(2532), 1, + aux_sym_record_exp_repeat1, + STATE(20992), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967061] = 9, + ACTIONS(3887), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24711), 1, + anon_sym_COMMA, + STATE(652), 1, + aux_sym_record_exp_repeat1, + STATE(19677), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967090] = 9, + ACTIONS(4051), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24713), 1, + anon_sym_COMMA, + STATE(707), 1, + aux_sym_record_exp_repeat1, + STATE(19322), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967119] = 9, + ACTIONS(9003), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24715), 1, + anon_sym_COMMA, + STATE(2533), 1, + aux_sym_record_exp_repeat1, + STATE(20995), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967148] = 9, + ACTIONS(9005), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24717), 1, + anon_sym_SEMI, + STATE(2534), 1, + aux_sym_sequence_exp_repeat1, + STATE(20996), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967177] = 9, + ACTIONS(4863), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24719), 1, + anon_sym_COMMA, + STATE(983), 1, + aux_sym_record_exp_repeat1, + STATE(21006), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967206] = 9, + ACTIONS(9007), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24721), 1, + anon_sym_COMMA, + STATE(2535), 1, + aux_sym_record_exp_repeat1, + STATE(21008), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967235] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24723), 1, + anon_sym_SEMI, + ACTIONS(24725), 1, + anon_sym_end, + STATE(2536), 1, + aux_sym_sequence_exp_repeat1, + STATE(21009), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967264] = 9, + ACTIONS(3941), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24727), 1, + anon_sym_COMMA, + STATE(670), 1, + aux_sym_record_exp_repeat1, + STATE(19276), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967293] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24729), 1, + anon_sym_SEMI, + ACTIONS(24731), 1, + anon_sym_end, + STATE(2541), 1, + aux_sym_sequence_exp_repeat1, + STATE(21018), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967322] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24733), 1, + anon_sym_SEMI, + ACTIONS(24735), 1, + anon_sym_end, + STATE(2542), 1, + aux_sym_sequence_exp_repeat1, + STATE(21020), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967351] = 9, + ACTIONS(6547), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24737), 1, + anon_sym_COMMA, + STATE(1423), 1, + aux_sym_record_exp_repeat1, + STATE(19300), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967380] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24739), 1, + anon_sym_SEMI, + ACTIONS(24741), 1, + anon_sym_end, + STATE(2545), 1, + aux_sym_sequence_exp_repeat1, + STATE(21036), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967409] = 9, + ACTIONS(4157), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24743), 1, + anon_sym_COMMA, + STATE(742), 1, + aux_sym_record_exp_repeat1, + STATE(21100), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967438] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24745), 1, + anon_sym_SEMI, + ACTIONS(24747), 1, + anon_sym_end, + STATE(1138), 1, + aux_sym_sequence_exp_repeat1, + STATE(21150), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967467] = 9, + ACTIONS(7075), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24749), 1, + anon_sym_COMMA, + STATE(1675), 1, + aux_sym_record_exp_repeat1, + STATE(21103), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967496] = 9, + ACTIONS(4879), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24751), 1, + anon_sym_COMMA, + STATE(988), 1, + aux_sym_record_exp_repeat1, + STATE(21078), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967525] = 9, + ACTIONS(9045), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24753), 1, + anon_sym_COMMA, + STATE(2553), 1, + aux_sym_record_exp_repeat1, + STATE(21082), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967554] = 9, + ACTIONS(7077), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24755), 1, + anon_sym_COMMA, + STATE(1676), 1, + aux_sym_record_exp_repeat1, + STATE(21136), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967583] = 9, + ACTIONS(9047), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24757), 1, + anon_sym_COMMA, + STATE(2554), 1, + aux_sym_record_exp_repeat1, + STATE(21086), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967612] = 9, + ACTIONS(9049), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24759), 1, + anon_sym_SEMI, + STATE(2555), 1, + aux_sym_sequence_exp_repeat1, + STATE(21087), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967641] = 9, + ACTIONS(7079), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24761), 1, + anon_sym_SEMI, + STATE(1677), 1, + aux_sym_sequence_exp_repeat1, + STATE(21138), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967670] = 9, + ACTIONS(4881), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24763), 1, + anon_sym_COMMA, + STATE(989), 1, + aux_sym_record_exp_repeat1, + STATE(21094), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967699] = 9, + ACTIONS(9051), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24765), 1, + anon_sym_COMMA, + STATE(2556), 1, + aux_sym_record_exp_repeat1, + STATE(21095), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967728] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24767), 1, + anon_sym_SEMI, + ACTIONS(24769), 1, + anon_sym_end, + STATE(2557), 1, + aux_sym_sequence_exp_repeat1, + STATE(21096), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967757] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24771), 1, + anon_sym_SEMI, + ACTIONS(24773), 1, + anon_sym_end, + STATE(2562), 1, + aux_sym_sequence_exp_repeat1, + STATE(21106), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967786] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24775), 1, + anon_sym_SEMI, + ACTIONS(24777), 1, + anon_sym_end, + STATE(2563), 1, + aux_sym_sequence_exp_repeat1, + STATE(21108), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967815] = 9, + ACTIONS(4159), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24779), 1, + anon_sym_COMMA, + STATE(743), 1, + aux_sym_record_exp_repeat1, + STATE(21156), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967844] = 9, + ACTIONS(7081), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24781), 1, + anon_sym_COMMA, + STATE(1678), 1, + aux_sym_record_exp_repeat1, + STATE(21173), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967873] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24783), 1, + anon_sym_SEMI, + ACTIONS(24785), 1, + anon_sym_end, + STATE(1679), 1, + aux_sym_sequence_exp_repeat1, + STATE(21188), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967902] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24787), 1, + anon_sym_SEMI, + ACTIONS(24789), 1, + anon_sym_end, + STATE(2566), 1, + aux_sym_sequence_exp_repeat1, + STATE(21120), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967931] = 9, + ACTIONS(6407), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24791), 1, + anon_sym_COMMA, + STATE(1356), 1, + aux_sym_record_exp_repeat1, + STATE(19767), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967960] = 9, + ACTIONS(4897), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24793), 1, + anon_sym_COMMA, + STATE(994), 1, + aux_sym_record_exp_repeat1, + STATE(21182), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [967989] = 9, + ACTIONS(9089), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24795), 1, + anon_sym_COMMA, + STATE(2574), 1, + aux_sym_record_exp_repeat1, + STATE(21185), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968018] = 9, + ACTIONS(9091), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24797), 1, + anon_sym_COMMA, + STATE(2575), 1, + aux_sym_record_exp_repeat1, + STATE(21189), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968047] = 9, + ACTIONS(9093), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24799), 1, + anon_sym_SEMI, + STATE(2576), 1, + aux_sym_sequence_exp_repeat1, + STATE(21190), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968076] = 9, + ACTIONS(4899), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24801), 1, + anon_sym_COMMA, + STATE(995), 1, + aux_sym_record_exp_repeat1, + STATE(21199), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968105] = 9, + ACTIONS(9095), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24803), 1, + anon_sym_COMMA, + STATE(2577), 1, + aux_sym_record_exp_repeat1, + STATE(21202), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968134] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24805), 1, + anon_sym_SEMI, + ACTIONS(24807), 1, + anon_sym_end, + STATE(2578), 1, + aux_sym_sequence_exp_repeat1, + STATE(21204), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968163] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24809), 1, + anon_sym_SEMI, + ACTIONS(24811), 1, + anon_sym_end, + STATE(1684), 1, + aux_sym_sequence_exp_repeat1, + STATE(21271), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968192] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24813), 1, + anon_sym_SEMI, + ACTIONS(24815), 1, + anon_sym_end, + STATE(1685), 1, + aux_sym_sequence_exp_repeat1, + STATE(21275), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968221] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24817), 1, + anon_sym_SEMI, + ACTIONS(24819), 1, + anon_sym_end, + STATE(2583), 1, + aux_sym_sequence_exp_repeat1, + STATE(21226), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968250] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24821), 1, + anon_sym_SEMI, + ACTIONS(24823), 1, + anon_sym_end, + STATE(2584), 1, + aux_sym_sequence_exp_repeat1, + STATE(21231), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968279] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24825), 1, + anon_sym_SEMI, + ACTIONS(24827), 1, + anon_sym_end, + STATE(2587), 1, + aux_sym_sequence_exp_repeat1, + STATE(21245), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968308] = 9, + ACTIONS(6549), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24829), 1, + anon_sym_COMMA, + STATE(1424), 1, + aux_sym_record_exp_repeat1, + STATE(19349), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968337] = 9, + ACTIONS(6551), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24831), 1, + anon_sym_SEMI, + STATE(1425), 1, + aux_sym_sequence_exp_repeat1, + STATE(19358), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968366] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24833), 1, + anon_sym_SEMI, + ACTIONS(24835), 1, + anon_sym_end, + STATE(1688), 1, + aux_sym_sequence_exp_repeat1, + STATE(21349), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968395] = 9, + ACTIONS(4915), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24837), 1, + anon_sym_COMMA, + STATE(1000), 1, + aux_sym_record_exp_repeat1, + STATE(21313), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968424] = 9, + ACTIONS(9133), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24839), 1, + anon_sym_COMMA, + STATE(2595), 1, + aux_sym_record_exp_repeat1, + STATE(21321), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968453] = 9, + ACTIONS(9135), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24841), 1, + anon_sym_COMMA, + STATE(2596), 1, + aux_sym_record_exp_repeat1, + STATE(21328), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968482] = 9, + ACTIONS(9137), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24843), 1, + anon_sym_SEMI, + STATE(2597), 1, + aux_sym_sequence_exp_repeat1, + STATE(21329), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968511] = 9, + ACTIONS(4917), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24845), 1, + anon_sym_COMMA, + STATE(1001), 1, + aux_sym_record_exp_repeat1, + STATE(21347), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968540] = 9, + ACTIONS(9139), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24847), 1, + anon_sym_COMMA, + STATE(2598), 1, + aux_sym_record_exp_repeat1, + STATE(21350), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968569] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24849), 1, + anon_sym_SEMI, + ACTIONS(24851), 1, + anon_sym_end, + STATE(2599), 1, + aux_sym_sequence_exp_repeat1, + STATE(21351), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968598] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24853), 1, + anon_sym_SEMI, + ACTIONS(24855), 1, + anon_sym_end, + STATE(2604), 1, + aux_sym_sequence_exp_repeat1, + STATE(21253), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968627] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24857), 1, + anon_sym_SEMI, + ACTIONS(24859), 1, + anon_sym_end, + STATE(2605), 1, + aux_sym_sequence_exp_repeat1, + STATE(19263), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968656] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24861), 1, + anon_sym_SEMI, + ACTIONS(24863), 1, + anon_sym_end, + STATE(2608), 1, + aux_sym_sequence_exp_repeat1, + STATE(19267), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968685] = 4, + ACTIONS(24865), 1, + anon_sym_STAR, + STATE(16930), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + [968704] = 9, + ACTIONS(4933), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24868), 1, + anon_sym_COMMA, + STATE(1006), 1, + aux_sym_record_exp_repeat1, + STATE(19286), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968733] = 9, + ACTIONS(6817), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24870), 1, + anon_sym_COMMA, + STATE(1552), 1, + aux_sym_record_exp_repeat1, + STATE(19326), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968762] = 9, + ACTIONS(9177), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24872), 1, + anon_sym_COMMA, + STATE(2616), 1, + aux_sym_record_exp_repeat1, + STATE(19289), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968791] = 9, + ACTIONS(9179), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24874), 1, + anon_sym_COMMA, + STATE(2617), 1, + aux_sym_record_exp_repeat1, + STATE(19291), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968820] = 9, + ACTIONS(9181), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24876), 1, + anon_sym_SEMI, + STATE(2618), 1, + aux_sym_sequence_exp_repeat1, + STATE(19292), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968849] = 9, + ACTIONS(3943), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24878), 1, + anon_sym_COMMA, + STATE(671), 1, + aux_sym_record_exp_repeat1, + STATE(19400), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968878] = 9, + ACTIONS(4935), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24880), 1, + anon_sym_COMMA, + STATE(1007), 1, + aux_sym_record_exp_repeat1, + STATE(19296), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968907] = 9, + ACTIONS(9183), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24882), 1, + anon_sym_COMMA, + STATE(2619), 1, + aux_sym_record_exp_repeat1, + STATE(19297), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968936] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24884), 1, + anon_sym_SEMI, + ACTIONS(24886), 1, + anon_sym_end, + STATE(2620), 1, + aux_sym_sequence_exp_repeat1, + STATE(19298), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968965] = 9, + ACTIONS(4525), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24888), 1, + anon_sym_COMMA, + STATE(868), 1, + aux_sym_record_exp_repeat1, + STATE(21133), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [968994] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24890), 1, + anon_sym_SEMI, + ACTIONS(24892), 1, + anon_sym_end, + STATE(2625), 1, + aux_sym_sequence_exp_repeat1, + STATE(19303), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969023] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24894), 1, + anon_sym_SEMI, + ACTIONS(24896), 1, + anon_sym_end, + STATE(2626), 1, + aux_sym_sequence_exp_repeat1, + STATE(19304), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969052] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24898), 1, + anon_sym_SEMI, + ACTIONS(24900), 1, + anon_sym_end, + STATE(1553), 1, + aux_sym_sequence_exp_repeat1, + STATE(19391), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969081] = 9, + ACTIONS(6553), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24902), 1, + anon_sym_COMMA, + STATE(1426), 1, + aux_sym_record_exp_repeat1, + STATE(19425), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969110] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24904), 1, + anon_sym_SEMI, + ACTIONS(24906), 1, + anon_sym_end, + STATE(1427), 1, + aux_sym_sequence_exp_repeat1, + STATE(19442), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969139] = 9, + ACTIONS(6363), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24908), 1, + anon_sym_COMMA, + STATE(1335), 1, + aux_sym_record_exp_repeat1, + STATE(20440), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969168] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24910), 1, + anon_sym_SEMI, + ACTIONS(24912), 1, + anon_sym_end, + STATE(2629), 1, + aux_sym_sequence_exp_repeat1, + STATE(19309), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969197] = 9, + ACTIONS(4175), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24914), 1, + anon_sym_COMMA, + STATE(748), 1, + aux_sym_record_exp_repeat1, + STATE(19340), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969226] = 9, + ACTIONS(7119), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24916), 1, + anon_sym_COMMA, + STATE(1696), 1, + aux_sym_record_exp_repeat1, + STATE(19346), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969255] = 4, + ACTIONS(24918), 1, + anon_sym_STAR, + STATE(16930), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + [969274] = 9, + ACTIONS(7121), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24920), 1, + anon_sym_COMMA, + STATE(1697), 1, + aux_sym_record_exp_repeat1, + STATE(19355), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969303] = 9, + ACTIONS(4951), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24922), 1, + anon_sym_COMMA, + STATE(1012), 1, + aux_sym_record_exp_repeat1, + STATE(19330), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969332] = 9, + ACTIONS(7123), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24924), 1, + anon_sym_SEMI, + STATE(1698), 1, + aux_sym_sequence_exp_repeat1, + STATE(19356), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969361] = 9, + ACTIONS(9221), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24926), 1, + anon_sym_COMMA, + STATE(2637), 1, + aux_sym_record_exp_repeat1, + STATE(19332), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969390] = 9, + ACTIONS(9223), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24928), 1, + anon_sym_COMMA, + STATE(2638), 1, + aux_sym_record_exp_repeat1, + STATE(19336), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969419] = 9, + ACTIONS(9225), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24930), 1, + anon_sym_SEMI, + STATE(2639), 1, + aux_sym_sequence_exp_repeat1, + STATE(19337), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969448] = 9, + ACTIONS(4953), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24932), 1, + anon_sym_COMMA, + STATE(1013), 1, + aux_sym_record_exp_repeat1, + STATE(19341), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969477] = 9, + ACTIONS(9227), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24934), 1, + anon_sym_COMMA, + STATE(2640), 1, + aux_sym_record_exp_repeat1, + STATE(19342), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969506] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24936), 1, + anon_sym_SEMI, + ACTIONS(24938), 1, + anon_sym_end, + STATE(2641), 1, + aux_sym_sequence_exp_repeat1, + STATE(19343), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969535] = 9, + ACTIONS(8047), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24940), 1, + anon_sym_COMMA, + STATE(2122), 1, + aux_sym_record_exp_repeat1, + STATE(21184), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969564] = 9, + ACTIONS(4177), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24942), 1, + anon_sym_COMMA, + STATE(749), 1, + aux_sym_record_exp_repeat1, + STATE(19362), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969593] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24944), 1, + anon_sym_SEMI, + ACTIONS(24946), 1, + anon_sym_end, + STATE(2646), 1, + aux_sym_sequence_exp_repeat1, + STATE(19350), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969622] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24948), 1, + anon_sym_SEMI, + ACTIONS(24950), 1, + anon_sym_end, + STATE(2647), 1, + aux_sym_sequence_exp_repeat1, + STATE(19351), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969651] = 9, + ACTIONS(7125), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24952), 1, + anon_sym_COMMA, + STATE(1699), 1, + aux_sym_record_exp_repeat1, + STATE(19365), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969680] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24954), 1, + anon_sym_SEMI, + ACTIONS(24956), 1, + anon_sym_end, + STATE(1700), 1, + aux_sym_sequence_exp_repeat1, + STATE(19367), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969709] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24958), 1, + anon_sym_SEMI, + ACTIONS(24960), 1, + anon_sym_end, + STATE(2650), 1, + aux_sym_sequence_exp_repeat1, + STATE(19357), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969738] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [969753] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24962), 1, + anon_sym_SEMI, + ACTIONS(24964), 1, + anon_sym_end, + STATE(1705), 1, + aux_sym_sequence_exp_repeat1, + STATE(19393), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969782] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24966), 1, + anon_sym_SEMI, + ACTIONS(24968), 1, + anon_sym_end, + STATE(1706), 1, + aux_sym_sequence_exp_repeat1, + STATE(19399), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969811] = 9, + ACTIONS(4969), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24970), 1, + anon_sym_COMMA, + STATE(1018), 1, + aux_sym_record_exp_repeat1, + STATE(19381), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969840] = 9, + ACTIONS(9265), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24972), 1, + anon_sym_COMMA, + STATE(2658), 1, + aux_sym_record_exp_repeat1, + STATE(19383), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969869] = 9, + ACTIONS(9267), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24974), 1, + anon_sym_COMMA, + STATE(2659), 1, + aux_sym_record_exp_repeat1, + STATE(19387), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969898] = 9, + ACTIONS(9269), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24976), 1, + anon_sym_SEMI, + STATE(2660), 1, + aux_sym_sequence_exp_repeat1, + STATE(19388), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969927] = 9, + ACTIONS(4971), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24978), 1, + anon_sym_COMMA, + STATE(1019), 1, + aux_sym_record_exp_repeat1, + STATE(19392), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969956] = 9, + ACTIONS(9271), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(24980), 1, + anon_sym_COMMA, + STATE(2661), 1, + aux_sym_record_exp_repeat1, + STATE(19394), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [969985] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24982), 1, + anon_sym_SEMI, + ACTIONS(24984), 1, + anon_sym_end, + STATE(2662), 1, + aux_sym_sequence_exp_repeat1, + STATE(19396), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970014] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [970029] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [970044] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24986), 1, + anon_sym_SEMI, + ACTIONS(24988), 1, + anon_sym_end, + STATE(2667), 1, + aux_sym_sequence_exp_repeat1, + STATE(19402), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970073] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24990), 1, + anon_sym_SEMI, + ACTIONS(24992), 1, + anon_sym_end, + STATE(2668), 1, + aux_sym_sequence_exp_repeat1, + STATE(19403), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970102] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24994), 1, + anon_sym_SEMI, + ACTIONS(24996), 1, + anon_sym_end, + STATE(1709), 1, + aux_sym_sequence_exp_repeat1, + STATE(19412), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970131] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(24998), 1, + anon_sym_SEMI, + ACTIONS(25000), 1, + anon_sym_end, + STATE(2671), 1, + aux_sym_sequence_exp_repeat1, + STATE(19409), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970160] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 6, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [970177] = 4, + ACTIONS(25002), 1, + anon_sym_PIPE, + STATE(17360), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [970196] = 9, + ACTIONS(4987), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25004), 1, + anon_sym_COMMA, + STATE(1024), 1, + aux_sym_record_exp_repeat1, + STATE(19430), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970225] = 9, + ACTIONS(9309), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25006), 1, + anon_sym_COMMA, + STATE(2679), 1, + aux_sym_record_exp_repeat1, + STATE(19432), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970254] = 9, + ACTIONS(9311), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25008), 1, + anon_sym_COMMA, + STATE(2680), 1, + aux_sym_record_exp_repeat1, + STATE(19434), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970283] = 9, + ACTIONS(9313), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25010), 1, + anon_sym_SEMI, + STATE(2681), 1, + aux_sym_sequence_exp_repeat1, + STATE(19435), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970312] = 9, + ACTIONS(4989), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25012), 1, + anon_sym_COMMA, + STATE(1025), 1, + aux_sym_record_exp_repeat1, + STATE(19437), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970341] = 9, + ACTIONS(9315), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25014), 1, + anon_sym_COMMA, + STATE(2682), 1, + aux_sym_record_exp_repeat1, + STATE(19439), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970370] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25016), 1, + anon_sym_SEMI, + ACTIONS(25018), 1, + anon_sym_end, + STATE(2683), 1, + aux_sym_sequence_exp_repeat1, + STATE(19440), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970399] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25020), 1, + anon_sym_SEMI, + ACTIONS(25022), 1, + anon_sym_end, + STATE(2688), 1, + aux_sym_sequence_exp_repeat1, + STATE(19444), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970428] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25024), 1, + anon_sym_SEMI, + ACTIONS(25026), 1, + anon_sym_end, + STATE(2689), 1, + aux_sym_sequence_exp_repeat1, + STATE(19445), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970457] = 9, + ACTIONS(3679), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25028), 1, + anon_sym_COMMA, + STATE(591), 1, + aux_sym_record_exp_repeat1, + STATE(19487), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970486] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25030), 1, + anon_sym_SEMI, + ACTIONS(25032), 1, + anon_sym_end, + STATE(1432), 1, + aux_sym_sequence_exp_repeat1, + STATE(19550), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970515] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25034), 1, + anon_sym_SEMI, + ACTIONS(25036), 1, + anon_sym_end, + STATE(1433), 1, + aux_sym_sequence_exp_repeat1, + STATE(19584), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970544] = 9, + ACTIONS(5969), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25038), 1, + anon_sym_COMMA, + STATE(1147), 1, + aux_sym_record_exp_repeat1, + STATE(19488), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970573] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25040), 1, + anon_sym_SEMI, + ACTIONS(25042), 1, + anon_sym_end, + STATE(2692), 1, + aux_sym_sequence_exp_repeat1, + STATE(19448), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970602] = 4, + ACTIONS(25002), 1, + anon_sym_PIPE, + STATE(17361), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [970621] = 9, + ACTIONS(5005), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25044), 1, + anon_sym_COMMA, + STATE(1030), 1, + aux_sym_record_exp_repeat1, + STATE(19474), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970650] = 9, + ACTIONS(9353), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25046), 1, + anon_sym_COMMA, + STATE(2700), 1, + aux_sym_record_exp_repeat1, + STATE(19476), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970679] = 9, + ACTIONS(5971), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25048), 1, + anon_sym_COMMA, + STATE(1148), 1, + aux_sym_record_exp_repeat1, + STATE(19533), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970708] = 9, + ACTIONS(5973), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25050), 1, + anon_sym_SEMI, + STATE(1149), 1, + aux_sym_sequence_exp_repeat1, + STATE(19534), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970737] = 9, + ACTIONS(9355), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25052), 1, + anon_sym_COMMA, + STATE(2701), 1, + aux_sym_record_exp_repeat1, + STATE(19479), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970766] = 9, + ACTIONS(9357), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25054), 1, + anon_sym_SEMI, + STATE(2702), 1, + aux_sym_sequence_exp_repeat1, + STATE(19480), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970795] = 9, + ACTIONS(5007), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25056), 1, + anon_sym_COMMA, + STATE(1031), 1, + aux_sym_record_exp_repeat1, + STATE(19482), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970824] = 9, + ACTIONS(9359), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25058), 1, + anon_sym_COMMA, + STATE(2703), 1, + aux_sym_record_exp_repeat1, + STATE(19483), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970853] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25060), 1, + anon_sym_SEMI, + ACTIONS(25062), 1, + anon_sym_end, + STATE(2704), 1, + aux_sym_sequence_exp_repeat1, + STATE(19484), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970882] = 9, + ACTIONS(6409), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25064), 1, + anon_sym_COMMA, + STATE(1357), 1, + aux_sym_record_exp_repeat1, + STATE(19922), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970911] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25066), 1, + anon_sym_SEMI, + ACTIONS(25068), 1, + anon_sym_end, + STATE(2709), 1, + aux_sym_sequence_exp_repeat1, + STATE(19489), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970940] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25070), 1, + anon_sym_SEMI, + ACTIONS(25072), 1, + anon_sym_end, + STATE(2710), 1, + aux_sym_sequence_exp_repeat1, + STATE(19490), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970969] = 9, + ACTIONS(4193), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25074), 1, + anon_sym_COMMA, + STATE(754), 1, + aux_sym_record_exp_repeat1, + STATE(19510), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [970998] = 9, + ACTIONS(3681), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25076), 1, + anon_sym_COMMA, + STATE(592), 1, + aux_sym_record_exp_repeat1, + STATE(19545), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971027] = 9, + ACTIONS(5975), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25078), 1, + anon_sym_COMMA, + STATE(1150), 1, + aux_sym_record_exp_repeat1, + STATE(19546), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971056] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25080), 1, + anon_sym_SEMI, + ACTIONS(25082), 1, + anon_sym_end, + STATE(1151), 1, + aux_sym_sequence_exp_repeat1, + STATE(19548), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971085] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25084), 1, + anon_sym_SEMI, + ACTIONS(25086), 1, + anon_sym_end, + STATE(2713), 1, + aux_sym_sequence_exp_repeat1, + STATE(19495), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971114] = 9, + ACTIONS(7163), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25088), 1, + anon_sym_COMMA, + STATE(1717), 1, + aux_sym_record_exp_repeat1, + STATE(19521), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971143] = 9, + ACTIONS(6411), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25090), 1, + anon_sym_SEMI, + STATE(1358), 1, + aux_sym_sequence_exp_repeat1, + STATE(19923), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971172] = 9, + ACTIONS(7165), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25092), 1, + anon_sym_COMMA, + STATE(1718), 1, + aux_sym_record_exp_repeat1, + STATE(19541), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971201] = 9, + ACTIONS(7167), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25094), 1, + anon_sym_SEMI, + STATE(1719), 1, + aux_sym_sequence_exp_repeat1, + STATE(19543), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971230] = 9, + ACTIONS(5023), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25096), 1, + anon_sym_COMMA, + STATE(1036), 1, + aux_sym_record_exp_repeat1, + STATE(19516), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971259] = 9, + ACTIONS(9397), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25098), 1, + anon_sym_COMMA, + STATE(2721), 1, + aux_sym_record_exp_repeat1, + STATE(19519), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971288] = 9, + ACTIONS(9399), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25100), 1, + anon_sym_COMMA, + STATE(2722), 1, + aux_sym_record_exp_repeat1, + STATE(19523), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971317] = 9, + ACTIONS(9401), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25102), 1, + anon_sym_SEMI, + STATE(2723), 1, + aux_sym_sequence_exp_repeat1, + STATE(19524), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971346] = 9, + ACTIONS(4195), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25104), 1, + anon_sym_COMMA, + STATE(755), 1, + aux_sym_record_exp_repeat1, + STATE(19555), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971375] = 9, + ACTIONS(5025), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25106), 1, + anon_sym_COMMA, + STATE(1037), 1, + aux_sym_record_exp_repeat1, + STATE(19527), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971404] = 9, + ACTIONS(9403), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25108), 1, + anon_sym_COMMA, + STATE(2724), 1, + aux_sym_record_exp_repeat1, + STATE(19528), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971433] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25110), 1, + anon_sym_SEMI, + ACTIONS(25112), 1, + anon_sym_end, + STATE(2725), 1, + aux_sym_sequence_exp_repeat1, + STATE(19529), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971462] = 9, + ACTIONS(7169), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25114), 1, + anon_sym_COMMA, + STATE(1720), 1, + aux_sym_record_exp_repeat1, + STATE(19558), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971491] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25116), 1, + anon_sym_SEMI, + ACTIONS(25118), 1, + anon_sym_end, + STATE(1721), 1, + aux_sym_sequence_exp_repeat1, + STATE(19561), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971520] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25120), 1, + anon_sym_SEMI, + ACTIONS(25122), 1, + anon_sym_end, + STATE(2730), 1, + aux_sym_sequence_exp_repeat1, + STATE(19535), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971549] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25124), 1, + anon_sym_SEMI, + ACTIONS(25126), 1, + anon_sym_end, + STATE(2731), 1, + aux_sym_sequence_exp_repeat1, + STATE(19537), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971578] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25128), 1, + anon_sym_SEMI, + ACTIONS(25130), 1, + anon_sym_end, + STATE(2734), 1, + aux_sym_sequence_exp_repeat1, + STATE(19542), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971607] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25132), 1, + anon_sym_SEMI, + ACTIONS(25134), 1, + anon_sym_end, + STATE(1156), 1, + aux_sym_sequence_exp_repeat1, + STATE(19606), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971636] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25136), 1, + anon_sym_SEMI, + ACTIONS(25138), 1, + anon_sym_end, + STATE(1157), 1, + aux_sym_sequence_exp_repeat1, + STATE(19613), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971665] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(15083), 1, + sym_tycon, + STATE(15089), 1, + sym_typedesc, + STATE(23966), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [971692] = 9, + ACTIONS(5041), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25140), 1, + anon_sym_COMMA, + STATE(1042), 1, + aux_sym_record_exp_repeat1, + STATE(19567), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971721] = 9, + ACTIONS(9441), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25142), 1, + anon_sym_COMMA, + STATE(2742), 1, + aux_sym_record_exp_repeat1, + STATE(19569), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971750] = 9, + ACTIONS(9443), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25144), 1, + anon_sym_COMMA, + STATE(2743), 1, + aux_sym_record_exp_repeat1, + STATE(19573), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971779] = 9, + ACTIONS(9445), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25146), 1, + anon_sym_SEMI, + STATE(2744), 1, + aux_sym_sequence_exp_repeat1, + STATE(19574), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971808] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25148), 1, + anon_sym_SEMI, + ACTIONS(25150), 1, + anon_sym_end, + STATE(1726), 1, + aux_sym_sequence_exp_repeat1, + STATE(19597), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971837] = 9, + ACTIONS(5043), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25152), 1, + anon_sym_COMMA, + STATE(1043), 1, + aux_sym_record_exp_repeat1, + STATE(19576), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971866] = 9, + ACTIONS(9447), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25154), 1, + anon_sym_COMMA, + STATE(2745), 1, + aux_sym_record_exp_repeat1, + STATE(19577), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971895] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25156), 1, + anon_sym_SEMI, + ACTIONS(25158), 1, + anon_sym_end, + STATE(2746), 1, + aux_sym_sequence_exp_repeat1, + STATE(19578), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971924] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25160), 1, + anon_sym_SEMI, + ACTIONS(25162), 1, + anon_sym_end, + STATE(1727), 1, + aux_sym_sequence_exp_repeat1, + STATE(19599), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971953] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25164), 1, + anon_sym_SEMI, + ACTIONS(25166), 1, + anon_sym_end, + STATE(2751), 1, + aux_sym_sequence_exp_repeat1, + STATE(19586), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [971982] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25168), 1, + anon_sym_SEMI, + ACTIONS(25170), 1, + anon_sym_end, + STATE(2752), 1, + aux_sym_sequence_exp_repeat1, + STATE(19587), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972011] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25172), 1, + anon_sym_SEMI, + ACTIONS(25174), 1, + anon_sym_end, + STATE(1436), 1, + aux_sym_sequence_exp_repeat1, + STATE(19672), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972040] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25176), 1, + anon_sym_SEMI, + ACTIONS(25178), 1, + anon_sym_end, + STATE(2755), 1, + aux_sym_sequence_exp_repeat1, + STATE(19590), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972069] = 9, + ACTIONS(5059), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25180), 1, + anon_sym_COMMA, + STATE(1048), 1, + aux_sym_record_exp_repeat1, + STATE(19611), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972098] = 9, + ACTIONS(9485), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25182), 1, + anon_sym_COMMA, + STATE(2763), 1, + aux_sym_record_exp_repeat1, + STATE(19614), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972127] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25184), 1, + anon_sym_SEMI, + ACTIONS(25186), 1, + anon_sym_end, + STATE(1730), 1, + aux_sym_sequence_exp_repeat1, + STATE(19634), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972156] = 9, + ACTIONS(9487), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25188), 1, + anon_sym_COMMA, + STATE(2764), 1, + aux_sym_record_exp_repeat1, + STATE(19616), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972185] = 9, + ACTIONS(9489), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25190), 1, + anon_sym_SEMI, + STATE(2765), 1, + aux_sym_sequence_exp_repeat1, + STATE(19617), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972214] = 9, + ACTIONS(5061), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25192), 1, + anon_sym_COMMA, + STATE(1049), 1, + aux_sym_record_exp_repeat1, + STATE(19620), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972243] = 9, + ACTIONS(9491), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25194), 1, + anon_sym_COMMA, + STATE(2766), 1, + aux_sym_record_exp_repeat1, + STATE(19621), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972272] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25196), 1, + anon_sym_SEMI, + ACTIONS(25198), 1, + anon_sym_end, + STATE(2767), 1, + aux_sym_sequence_exp_repeat1, + STATE(19622), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972301] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25200), 1, + anon_sym_SEMI, + ACTIONS(25202), 1, + anon_sym_end, + STATE(1160), 1, + aux_sym_sequence_exp_repeat1, + STATE(19668), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972330] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25204), 1, + anon_sym_SEMI, + ACTIONS(25206), 1, + anon_sym_end, + STATE(2772), 1, + aux_sym_sequence_exp_repeat1, + STATE(19627), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972359] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25208), 1, + anon_sym_SEMI, + ACTIONS(25210), 1, + anon_sym_end, + STATE(2773), 1, + aux_sym_sequence_exp_repeat1, + STATE(19628), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972388] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25212), 1, + anon_sym_SEMI, + ACTIONS(25214), 1, + anon_sym_end, + STATE(2776), 1, + aux_sym_sequence_exp_repeat1, + STATE(19635), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972417] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [972432] = 9, + ACTIONS(5077), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25216), 1, + anon_sym_COMMA, + STATE(1054), 1, + aux_sym_record_exp_repeat1, + STATE(19655), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972461] = 9, + ACTIONS(9529), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25218), 1, + anon_sym_COMMA, + STATE(2784), 1, + aux_sym_record_exp_repeat1, + STATE(19656), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972490] = 9, + ACTIONS(9531), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25220), 1, + anon_sym_COMMA, + STATE(2785), 1, + aux_sym_record_exp_repeat1, + STATE(19658), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972519] = 9, + ACTIONS(9533), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25222), 1, + anon_sym_SEMI, + STATE(2786), 1, + aux_sym_sequence_exp_repeat1, + STATE(19659), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972548] = 9, + ACTIONS(5079), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25224), 1, + anon_sym_COMMA, + STATE(1055), 1, + aux_sym_record_exp_repeat1, + STATE(19662), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972577] = 9, + ACTIONS(9535), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25226), 1, + anon_sym_COMMA, + STATE(2787), 1, + aux_sym_record_exp_repeat1, + STATE(19664), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972606] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25228), 1, + anon_sym_SEMI, + ACTIONS(25230), 1, + anon_sym_end, + STATE(2788), 1, + aux_sym_sequence_exp_repeat1, + STATE(19665), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972635] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25232), 1, + anon_sym_SEMI, + ACTIONS(25234), 1, + anon_sym_end, + STATE(2793), 1, + aux_sym_sequence_exp_repeat1, + STATE(19669), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972664] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25236), 1, + anon_sym_SEMI, + ACTIONS(25238), 1, + anon_sym_end, + STATE(2794), 1, + aux_sym_sequence_exp_repeat1, + STATE(19670), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972693] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [972708] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25240), 1, + anon_sym_SEMI, + ACTIONS(25242), 1, + anon_sym_end, + STATE(2797), 1, + aux_sym_sequence_exp_repeat1, + STATE(19676), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972737] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [972752] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [972767] = 9, + ACTIONS(5095), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25244), 1, + anon_sym_COMMA, + STATE(1060), 1, + aux_sym_record_exp_repeat1, + STATE(19698), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972796] = 9, + ACTIONS(4211), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25246), 1, + anon_sym_COMMA, + STATE(760), 1, + aux_sym_record_exp_repeat1, + STATE(19728), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972825] = 9, + ACTIONS(9573), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25248), 1, + anon_sym_COMMA, + STATE(2805), 1, + aux_sym_record_exp_repeat1, + STATE(19700), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972854] = 9, + ACTIONS(7207), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25250), 1, + anon_sym_COMMA, + STATE(1738), 1, + aux_sym_record_exp_repeat1, + STATE(19737), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972883] = 9, + ACTIONS(9575), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25252), 1, + anon_sym_COMMA, + STATE(2806), 1, + aux_sym_record_exp_repeat1, + STATE(19702), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972912] = 9, + ACTIONS(9577), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25254), 1, + anon_sym_SEMI, + STATE(2807), 1, + aux_sym_sequence_exp_repeat1, + STATE(19703), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972941] = 9, + ACTIONS(5097), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25256), 1, + anon_sym_COMMA, + STATE(1061), 1, + aux_sym_record_exp_repeat1, + STATE(19706), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972970] = 9, + ACTIONS(9579), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25258), 1, + anon_sym_COMMA, + STATE(2808), 1, + aux_sym_record_exp_repeat1, + STATE(19707), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [972999] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25260), 1, + anon_sym_SEMI, + ACTIONS(25262), 1, + anon_sym_end, + STATE(2809), 1, + aux_sym_sequence_exp_repeat1, + STATE(19708), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973028] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25264), 1, + anon_sym_SEMI, + ACTIONS(25266), 1, + anon_sym_end, + STATE(2814), 1, + aux_sym_sequence_exp_repeat1, + STATE(19712), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973057] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25268), 1, + anon_sym_SEMI, + ACTIONS(25270), 1, + anon_sym_end, + STATE(2815), 1, + aux_sym_sequence_exp_repeat1, + STATE(19713), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973086] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25272), 1, + anon_sym_SEMI, + ACTIONS(25274), 1, + anon_sym_end, + STATE(2818), 1, + aux_sym_sequence_exp_repeat1, + STATE(19718), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973115] = 9, + ACTIONS(7209), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25276), 1, + anon_sym_COMMA, + STATE(1739), 1, + aux_sym_record_exp_repeat1, + STATE(19753), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973144] = 9, + ACTIONS(7211), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25278), 1, + anon_sym_SEMI, + STATE(1740), 1, + aux_sym_sequence_exp_repeat1, + STATE(19754), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973173] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [973188] = 9, + ACTIONS(5113), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25280), 1, + anon_sym_COMMA, + STATE(1066), 1, + aux_sym_record_exp_repeat1, + STATE(19740), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973217] = 9, + ACTIONS(9617), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25282), 1, + anon_sym_COMMA, + STATE(2826), 1, + aux_sym_record_exp_repeat1, + STATE(19742), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973246] = 9, + ACTIONS(4213), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25284), 1, + anon_sym_COMMA, + STATE(761), 1, + aux_sym_record_exp_repeat1, + STATE(19764), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973275] = 9, + ACTIONS(9619), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25286), 1, + anon_sym_COMMA, + STATE(2827), 1, + aux_sym_record_exp_repeat1, + STATE(19745), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973304] = 9, + ACTIONS(9621), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25288), 1, + anon_sym_SEMI, + STATE(2828), 1, + aux_sym_sequence_exp_repeat1, + STATE(19746), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973333] = 9, + ACTIONS(7213), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25290), 1, + anon_sym_COMMA, + STATE(1741), 1, + aux_sym_record_exp_repeat1, + STATE(19766), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973362] = 9, + ACTIONS(5115), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25292), 1, + anon_sym_COMMA, + STATE(1067), 1, + aux_sym_record_exp_repeat1, + STATE(19748), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973391] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25294), 1, + anon_sym_SEMI, + ACTIONS(25296), 1, + anon_sym_end, + STATE(1742), 1, + aux_sym_sequence_exp_repeat1, + STATE(19768), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973420] = 9, + ACTIONS(9623), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25298), 1, + anon_sym_COMMA, + STATE(2829), 1, + aux_sym_record_exp_repeat1, + STATE(19749), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973449] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25300), 1, + anon_sym_SEMI, + ACTIONS(25302), 1, + anon_sym_end, + STATE(2830), 1, + aux_sym_sequence_exp_repeat1, + STATE(19750), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973478] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25304), 1, + anon_sym_SEMI, + ACTIONS(25306), 1, + anon_sym_end, + STATE(2835), 1, + aux_sym_sequence_exp_repeat1, + STATE(19757), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973507] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25308), 1, + anon_sym_SEMI, + ACTIONS(25310), 1, + anon_sym_end, + STATE(2836), 1, + aux_sym_sequence_exp_repeat1, + STATE(19758), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973536] = 9, + ACTIONS(3889), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25312), 1, + anon_sym_COMMA, + STATE(653), 1, + aux_sym_record_exp_repeat1, + STATE(20089), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973565] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25314), 1, + anon_sym_SEMI, + ACTIONS(25316), 1, + anon_sym_end, + STATE(2839), 1, + aux_sym_sequence_exp_repeat1, + STATE(19762), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973594] = 9, + ACTIONS(8049), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25318), 1, + anon_sym_COMMA, + STATE(2123), 1, + aux_sym_record_exp_repeat1, + STATE(21289), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973623] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25320), 1, + anon_sym_SEMI, + ACTIONS(25322), 1, + anon_sym_end, + STATE(1747), 1, + aux_sym_sequence_exp_repeat1, + STATE(19790), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973652] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25324), 1, + anon_sym_SEMI, + ACTIONS(25326), 1, + anon_sym_end, + STATE(1748), 1, + aux_sym_sequence_exp_repeat1, + STATE(19793), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973681] = 9, + ACTIONS(6413), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25328), 1, + anon_sym_COMMA, + STATE(1359), 1, + aux_sym_record_exp_repeat1, + STATE(20099), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973710] = 9, + ACTIONS(5131), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25330), 1, + anon_sym_COMMA, + STATE(1072), 1, + aux_sym_record_exp_repeat1, + STATE(19783), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973739] = 9, + ACTIONS(9661), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25332), 1, + anon_sym_COMMA, + STATE(2847), 1, + aux_sym_record_exp_repeat1, + STATE(19784), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973768] = 9, + ACTIONS(9663), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25334), 1, + anon_sym_COMMA, + STATE(2848), 1, + aux_sym_record_exp_repeat1, + STATE(19787), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973797] = 9, + ACTIONS(9665), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25336), 1, + anon_sym_SEMI, + STATE(2849), 1, + aux_sym_sequence_exp_repeat1, + STATE(19788), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973826] = 9, + ACTIONS(5133), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25338), 1, + anon_sym_COMMA, + STATE(1073), 1, + aux_sym_record_exp_repeat1, + STATE(19791), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973855] = 9, + ACTIONS(9667), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25340), 1, + anon_sym_COMMA, + STATE(2850), 1, + aux_sym_record_exp_repeat1, + STATE(19792), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973884] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25342), 1, + anon_sym_SEMI, + ACTIONS(25344), 1, + anon_sym_end, + STATE(2851), 1, + aux_sym_sequence_exp_repeat1, + STATE(19794), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973913] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 6, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [973930] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [973945] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25346), 1, + anon_sym_SEMI, + ACTIONS(25348), 1, + anon_sym_end, + STATE(2856), 1, + aux_sym_sequence_exp_repeat1, + STATE(19798), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [973974] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25350), 1, + anon_sym_SEMI, + ACTIONS(25352), 1, + anon_sym_end, + STATE(2857), 1, + aux_sym_sequence_exp_repeat1, + STATE(19799), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974003] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25354), 1, + anon_sym_SEMI, + ACTIONS(25356), 1, + anon_sym_end, + STATE(1751), 1, + aux_sym_sequence_exp_repeat1, + STATE(19804), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974032] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25358), 1, + anon_sym_SEMI, + ACTIONS(25360), 1, + anon_sym_end, + STATE(2860), 1, + aux_sym_sequence_exp_repeat1, + STATE(19802), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974061] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25362), 1, + anon_sym_SEMI, + ACTIONS(25364), 1, + anon_sym_end, + STATE(1360), 1, + aux_sym_sequence_exp_repeat1, + STATE(20113), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974090] = 9, + ACTIONS(5149), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25366), 1, + anon_sym_COMMA, + STATE(1078), 1, + aux_sym_record_exp_repeat1, + STATE(19820), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974119] = 9, + ACTIONS(9705), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25368), 1, + anon_sym_COMMA, + STATE(2868), 1, + aux_sym_record_exp_repeat1, + STATE(19823), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974148] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14859), 1, + sym_datdesc, + STATE(23777), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24931), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [974175] = 9, + ACTIONS(9707), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25370), 1, + anon_sym_COMMA, + STATE(2869), 1, + aux_sym_record_exp_repeat1, + STATE(19827), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974204] = 9, + ACTIONS(9709), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25372), 1, + anon_sym_SEMI, + STATE(2870), 1, + aux_sym_sequence_exp_repeat1, + STATE(19828), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974233] = 9, + ACTIONS(5151), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25374), 1, + anon_sym_COMMA, + STATE(1079), 1, + aux_sym_record_exp_repeat1, + STATE(19831), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974262] = 9, + ACTIONS(9711), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25376), 1, + anon_sym_COMMA, + STATE(2871), 1, + aux_sym_record_exp_repeat1, + STATE(19832), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974291] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25378), 1, + anon_sym_SEMI, + ACTIONS(25380), 1, + anon_sym_end, + STATE(2872), 1, + aux_sym_sequence_exp_repeat1, + STATE(19834), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974320] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25382), 1, + anon_sym_SEMI, + ACTIONS(25384), 1, + anon_sym_end, + STATE(2877), 1, + aux_sym_sequence_exp_repeat1, + STATE(19841), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974349] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25386), 1, + anon_sym_SEMI, + ACTIONS(25388), 1, + anon_sym_end, + STATE(2878), 1, + aux_sym_sequence_exp_repeat1, + STATE(19842), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974378] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25390), 1, + anon_sym_SEMI, + ACTIONS(25392), 1, + anon_sym_end, + STATE(2881), 1, + aux_sym_sequence_exp_repeat1, + STATE(19847), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974407] = 9, + ACTIONS(3725), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25394), 1, + anon_sym_COMMA, + STATE(598), 1, + aux_sym_record_exp_repeat1, + STATE(20133), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974436] = 9, + ACTIONS(6013), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25396), 1, + anon_sym_COMMA, + STATE(1168), 1, + aux_sym_record_exp_repeat1, + STATE(20138), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974465] = 9, + ACTIONS(8051), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25398), 1, + anon_sym_SEMI, + STATE(2124), 1, + aux_sym_sequence_exp_repeat1, + STATE(21293), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974494] = 9, + ACTIONS(4229), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25400), 1, + anon_sym_COMMA, + STATE(766), 1, + aux_sym_record_exp_repeat1, + STATE(19886), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974523] = 9, + ACTIONS(7251), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25402), 1, + anon_sym_COMMA, + STATE(1759), 1, + aux_sym_record_exp_repeat1, + STATE(19888), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974552] = 9, + ACTIONS(3959), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25404), 1, + anon_sym_COMMA, + STATE(676), 1, + aux_sym_record_exp_repeat1, + STATE(19975), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974581] = 9, + ACTIONS(7253), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25406), 1, + anon_sym_COMMA, + STATE(1760), 1, + aux_sym_record_exp_repeat1, + STATE(19896), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974610] = 9, + ACTIONS(7255), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25408), 1, + anon_sym_SEMI, + STATE(1761), 1, + aux_sym_sequence_exp_repeat1, + STATE(19898), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974639] = 3, + ACTIONS(25410), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 7, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + [974656] = 9, + ACTIONS(4231), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25412), 1, + anon_sym_COMMA, + STATE(767), 1, + aux_sym_record_exp_repeat1, + STATE(19906), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974685] = 9, + ACTIONS(7257), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25414), 1, + anon_sym_COMMA, + STATE(1762), 1, + aux_sym_record_exp_repeat1, + STATE(19910), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974714] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25416), 1, + anon_sym_SEMI, + ACTIONS(25418), 1, + anon_sym_end, + STATE(1763), 1, + aux_sym_sequence_exp_repeat1, + STATE(19914), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974743] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [974758] = 9, + ACTIONS(6591), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25420), 1, + anon_sym_COMMA, + STATE(1444), 1, + aux_sym_record_exp_repeat1, + STATE(19988), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974787] = 9, + ACTIONS(4527), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25422), 1, + anon_sym_COMMA, + STATE(869), 1, + aux_sym_record_exp_repeat1, + STATE(19279), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974816] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25424), 1, + anon_sym_SEMI, + ACTIONS(25426), 1, + anon_sym_end, + STATE(1768), 1, + aux_sym_sequence_exp_repeat1, + STATE(19933), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974845] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25428), 1, + anon_sym_SEMI, + ACTIONS(25430), 1, + anon_sym_end, + STATE(1769), 1, + aux_sym_sequence_exp_repeat1, + STATE(19936), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974874] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25432), 1, + anon_sym_SEMI, + ACTIONS(25434), 1, + anon_sym_end, + STATE(1772), 1, + aux_sym_sequence_exp_repeat1, + STATE(19947), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974903] = 9, + ACTIONS(6593), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25436), 1, + anon_sym_COMMA, + STATE(1445), 1, + aux_sym_record_exp_repeat1, + STATE(20055), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974932] = 9, + ACTIONS(6595), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25438), 1, + anon_sym_SEMI, + STATE(1446), 1, + aux_sym_sequence_exp_repeat1, + STATE(20058), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [974961] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [974976] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [974991] = 9, + ACTIONS(3961), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25440), 1, + anon_sym_COMMA, + STATE(677), 1, + aux_sym_record_exp_repeat1, + STATE(20096), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975020] = 9, + ACTIONS(4247), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25442), 1, + anon_sym_COMMA, + STATE(772), 1, + aux_sym_record_exp_repeat1, + STATE(20000), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975049] = 9, + ACTIONS(7295), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25444), 1, + anon_sym_COMMA, + STATE(1780), 1, + aux_sym_record_exp_repeat1, + STATE(20004), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975078] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [975093] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [975108] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [975123] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25446), 1, + anon_sym_SEMI, + ACTIONS(25448), 1, + anon_sym_end, + STATE(1324), 1, + aux_sym_sequence_exp_repeat1, + STATE(20179), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975152] = 9, + ACTIONS(7297), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25450), 1, + anon_sym_COMMA, + STATE(1781), 1, + aux_sym_record_exp_repeat1, + STATE(20013), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975181] = 9, + ACTIONS(7299), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25452), 1, + anon_sym_SEMI, + STATE(1782), 1, + aux_sym_sequence_exp_repeat1, + STATE(20016), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975210] = 9, + ACTIONS(6597), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25454), 1, + anon_sym_COMMA, + STATE(1447), 1, + aux_sym_record_exp_repeat1, + STATE(20098), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975239] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25456), 1, + anon_sym_SEMI, + ACTIONS(25458), 1, + anon_sym_end, + STATE(1448), 1, + aux_sym_sequence_exp_repeat1, + STATE(20100), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975268] = 9, + ACTIONS(4249), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25460), 1, + anon_sym_COMMA, + STATE(773), 1, + aux_sym_record_exp_repeat1, + STATE(20025), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975297] = 9, + ACTIONS(7301), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25462), 1, + anon_sym_COMMA, + STATE(1783), 1, + aux_sym_record_exp_repeat1, + STATE(20029), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975326] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25464), 1, + anon_sym_SEMI, + ACTIONS(25466), 1, + anon_sym_end, + STATE(1784), 1, + aux_sym_sequence_exp_repeat1, + STATE(20032), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975355] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25468), 1, + anon_sym_SEMI, + ACTIONS(25470), 1, + anon_sym_end, + STATE(1789), 1, + aux_sym_sequence_exp_repeat1, + STATE(20053), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975384] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25472), 1, + anon_sym_SEMI, + ACTIONS(25474), 1, + anon_sym_end, + STATE(1790), 1, + aux_sym_sequence_exp_repeat1, + STATE(20056), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975413] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25476), 1, + anon_sym_SEMI, + ACTIONS(25478), 1, + anon_sym_end, + STATE(1912), 1, + aux_sym_sequence_exp_repeat1, + STATE(19755), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975442] = 3, + ACTIONS(25480), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_DASH_GT, + [975459] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25482), 1, + anon_sym_SEMI, + ACTIONS(25484), 1, + anon_sym_end, + STATE(1793), 1, + aux_sym_sequence_exp_repeat1, + STATE(20072), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975488] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [975503] = 9, + ACTIONS(8053), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25486), 1, + anon_sym_COMMA, + STATE(2125), 1, + aux_sym_record_exp_repeat1, + STATE(19305), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975532] = 9, + ACTIONS(6365), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25488), 1, + anon_sym_COMMA, + STATE(1336), 1, + aux_sym_record_exp_repeat1, + STATE(20683), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975561] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(9037), 1, + sym_typbind, + STATE(23742), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24895), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [975588] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25490), 1, + anon_sym_SEMI, + ACTIONS(25492), 1, + anon_sym_end, + STATE(2126), 1, + aux_sym_sequence_exp_repeat1, + STATE(19312), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975617] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25494), 1, + anon_sym_SEMI, + ACTIONS(25496), 1, + anon_sym_end, + STATE(1453), 1, + aux_sym_sequence_exp_repeat1, + STATE(20146), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975646] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25498), 1, + anon_sym_SEMI, + ACTIONS(25500), 1, + anon_sym_end, + STATE(1454), 1, + aux_sym_sequence_exp_repeat1, + STATE(20161), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975675] = 9, + ACTIONS(6367), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25502), 1, + anon_sym_SEMI, + STATE(1337), 1, + aux_sym_sequence_exp_repeat1, + STATE(20717), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975704] = 9, + ACTIONS(4265), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25504), 1, + anon_sym_COMMA, + STATE(778), 1, + aux_sym_record_exp_repeat1, + STATE(20129), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975733] = 9, + ACTIONS(7339), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25506), 1, + anon_sym_COMMA, + STATE(1801), 1, + aux_sym_record_exp_repeat1, + STATE(20130), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975762] = 9, + ACTIONS(6015), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25508), 1, + anon_sym_COMMA, + STATE(1169), 1, + aux_sym_record_exp_repeat1, + STATE(20168), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975791] = 9, + ACTIONS(6017), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25510), 1, + anon_sym_SEMI, + STATE(1170), 1, + aux_sym_sequence_exp_repeat1, + STATE(20169), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975820] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25512), 1, + anon_sym_SEMI, + ACTIONS(25514), 1, + anon_sym_end, + STATE(1365), 1, + aux_sym_sequence_exp_repeat1, + STATE(20274), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975849] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25516), 1, + anon_sym_SEMI, + ACTIONS(25518), 1, + anon_sym_end, + STATE(1366), 1, + aux_sym_sequence_exp_repeat1, + STATE(20279), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975878] = 9, + ACTIONS(7341), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25520), 1, + anon_sym_COMMA, + STATE(1802), 1, + aux_sym_record_exp_repeat1, + STATE(20137), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975907] = 9, + ACTIONS(7343), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25522), 1, + anon_sym_SEMI, + STATE(1803), 1, + aux_sym_sequence_exp_repeat1, + STATE(20140), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975936] = 9, + ACTIONS(4267), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25524), 1, + anon_sym_COMMA, + STATE(779), 1, + aux_sym_record_exp_repeat1, + STATE(20143), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975965] = 9, + ACTIONS(7345), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25526), 1, + anon_sym_COMMA, + STATE(1804), 1, + aux_sym_record_exp_repeat1, + STATE(20145), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [975994] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25528), 1, + anon_sym_SEMI, + ACTIONS(25530), 1, + anon_sym_end, + STATE(1805), 1, + aux_sym_sequence_exp_repeat1, + STATE(20147), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976023] = 9, + ACTIONS(3727), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25532), 1, + anon_sym_COMMA, + STATE(599), 1, + aux_sym_record_exp_repeat1, + STATE(20176), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976052] = 8, + ACTIONS(24625), 1, + anon_sym_datatype, + ACTIONS(25534), 1, + anon_sym_op, + ACTIONS(25536), 1, + anon_sym_PIPE, + STATE(13326), 1, + sym_conbind, + STATE(13395), 1, + sym__conbind, + STATE(13397), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [976079] = 9, + ACTIONS(6019), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25538), 1, + anon_sym_COMMA, + STATE(1171), 1, + aux_sym_record_exp_repeat1, + STATE(20184), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976108] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25540), 1, + anon_sym_SEMI, + ACTIONS(25542), 1, + anon_sym_end, + STATE(1172), 1, + aux_sym_sequence_exp_repeat1, + STATE(20187), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976137] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25544), 1, + anon_sym_SEMI, + ACTIONS(25546), 1, + anon_sym_end, + STATE(1810), 1, + aux_sym_sequence_exp_repeat1, + STATE(20167), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976166] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25548), 1, + anon_sym_SEMI, + ACTIONS(25550), 1, + anon_sym_end, + STATE(1811), 1, + aux_sym_sequence_exp_repeat1, + STATE(20170), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976195] = 3, + ACTIONS(25552), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + anon_sym_DASH_GT, + [976212] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [976231] = 7, + ACTIONS(25554), 1, + anon_sym_COLON, + ACTIONS(25556), 1, + anon_sym_andalso, + ACTIONS(25558), 1, + anon_sym_orelse, + ACTIONS(25560), 1, + anon_sym_handle, + ACTIONS(25562), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 3, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + [976256] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25564), 1, + anon_sym_SEMI, + ACTIONS(25566), 1, + anon_sym_end, + STATE(2131), 1, + aux_sym_sequence_exp_repeat1, + STATE(19344), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976285] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25568), 1, + anon_sym_SEMI, + ACTIONS(25570), 1, + anon_sym_end, + STATE(1457), 1, + aux_sym_sequence_exp_repeat1, + STATE(20178), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976314] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25572), 1, + anon_sym_SEMI, + ACTIONS(25574), 1, + anon_sym_end, + STATE(2132), 1, + aux_sym_sequence_exp_repeat1, + STATE(19368), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976343] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25576), 1, + anon_sym_SEMI, + ACTIONS(25578), 1, + anon_sym_end, + STATE(2224), 1, + aux_sym_sequence_exp_repeat1, + STATE(19805), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976372] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25580), 1, + anon_sym_SEMI, + ACTIONS(25582), 1, + anon_sym_end, + STATE(1814), 1, + aux_sym_sequence_exp_repeat1, + STATE(20173), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976401] = 8, + ACTIONS(24625), 1, + anon_sym_datatype, + ACTIONS(25584), 1, + anon_sym_op, + ACTIONS(25586), 1, + anon_sym_PIPE, + STATE(13341), 1, + sym_conbind, + STATE(13395), 1, + sym__conbind, + STATE(13476), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [976428] = 3, + ACTIONS(25588), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_DASH_GT, + [976445] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25590), 1, + anon_sym_SEMI, + ACTIONS(25592), 1, + anon_sym_end, + STATE(1177), 1, + aux_sym_sequence_exp_repeat1, + STATE(20231), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976474] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25594), 1, + anon_sym_SEMI, + ACTIONS(25596), 1, + anon_sym_end, + STATE(1178), 1, + aux_sym_sequence_exp_repeat1, + STATE(20233), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976503] = 9, + ACTIONS(4283), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25598), 1, + anon_sym_COMMA, + STATE(784), 1, + aux_sym_record_exp_repeat1, + STATE(20215), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976532] = 9, + ACTIONS(7383), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25600), 1, + anon_sym_COMMA, + STATE(1822), 1, + aux_sym_record_exp_repeat1, + STATE(20216), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976561] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25602), 1, + anon_sym_SEMI, + ACTIONS(25604), 1, + anon_sym_end, + STATE(2135), 1, + aux_sym_sequence_exp_repeat1, + STATE(19455), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976590] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25606), 1, + anon_sym_SEMI, + ACTIONS(25608), 1, + anon_sym_end, + STATE(1558), 1, + aux_sym_sequence_exp_repeat1, + STATE(19646), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976619] = 9, + ACTIONS(7385), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25610), 1, + anon_sym_COMMA, + STATE(1823), 1, + aux_sym_record_exp_repeat1, + STATE(20221), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976648] = 9, + ACTIONS(7387), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25612), 1, + anon_sym_SEMI, + STATE(1824), 1, + aux_sym_sequence_exp_repeat1, + STATE(20222), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976677] = 8, + ACTIONS(24625), 1, + anon_sym_datatype, + ACTIONS(25614), 1, + anon_sym_op, + ACTIONS(25616), 1, + anon_sym_PIPE, + STATE(13395), 1, + sym__conbind, + STATE(13607), 1, + sym_vid, + STATE(13623), 1, + sym_conbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [976704] = 9, + ACTIONS(4285), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25618), 1, + anon_sym_COMMA, + STATE(785), 1, + aux_sym_record_exp_repeat1, + STATE(20235), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976733] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25620), 1, + anon_sym_SEMI, + ACTIONS(25622), 1, + anon_sym_end, + STATE(1559), 1, + aux_sym_sequence_exp_repeat1, + STATE(19663), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976762] = 9, + ACTIONS(7389), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25624), 1, + anon_sym_COMMA, + STATE(1825), 1, + aux_sym_record_exp_repeat1, + STATE(20238), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976791] = 9, + ACTIONS(4653), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25626), 1, + anon_sym_COMMA, + STATE(911), 1, + aux_sym_record_exp_repeat1, + STATE(19530), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976820] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [976835] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [976850] = 5, + ACTIONS(15934), 1, + anon_sym_COLON, + ACTIONS(25628), 1, + anon_sym_STAR, + STATE(17312), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 5, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_where, + [976871] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [976886] = 3, + ACTIONS(25630), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + anon_sym_DASH_GT, + [976903] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [976920] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25632), 1, + anon_sym_SEMI, + ACTIONS(25634), 1, + anon_sym_end, + STATE(1181), 1, + aux_sym_sequence_exp_repeat1, + STATE(20270), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976949] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25636), 1, + anon_sym_SEMI, + ACTIONS(25638), 1, + anon_sym_end, + STATE(1831), 1, + aux_sym_sequence_exp_repeat1, + STATE(20250), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [976978] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25640), 1, + anon_sym_SEMI, + ACTIONS(25642), 1, + anon_sym_end, + STATE(1110), 1, + aux_sym_sequence_exp_repeat1, + STATE(20251), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977007] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25644), 1, + anon_sym_SEMI, + ACTIONS(25646), 1, + anon_sym_end, + STATE(1917), 1, + aux_sym_sequence_exp_repeat1, + STATE(20160), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977036] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25648), 1, + anon_sym_SEMI, + ACTIONS(25650), 1, + anon_sym_end, + STATE(1834), 1, + aux_sym_sequence_exp_repeat1, + STATE(20257), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977065] = 8, + ACTIONS(24625), 1, + anon_sym_datatype, + ACTIONS(25652), 1, + anon_sym_op, + ACTIONS(25654), 1, + anon_sym_PIPE, + STATE(13366), 1, + sym_conbind, + STATE(13395), 1, + sym__conbind, + STATE(13462), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [977092] = 5, + ACTIONS(15934), 1, + anon_sym_COLON, + ACTIONS(25656), 1, + anon_sym_STAR, + STATE(17321), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 5, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_where, + [977113] = 6, + ACTIONS(25658), 1, + anon_sym_COLON, + ACTIONS(25660), 1, + anon_sym_andalso, + ACTIONS(25662), 1, + anon_sym_orelse, + ACTIONS(25664), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 4, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_PIPE, + [977136] = 7, + ACTIONS(25658), 1, + anon_sym_COLON, + ACTIONS(25660), 1, + anon_sym_andalso, + ACTIONS(25662), 1, + anon_sym_orelse, + ACTIONS(25664), 1, + anon_sym_handle, + ACTIONS(25666), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PIPE, + [977161] = 4, + ACTIONS(25668), 1, + anon_sym_STAR, + STATE(17475), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + [977180] = 9, + ACTIONS(3977), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25670), 1, + anon_sym_COMMA, + STATE(682), 1, + aux_sym_record_exp_repeat1, + STATE(20335), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977209] = 9, + ACTIONS(6635), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25672), 1, + anon_sym_COMMA, + STATE(1465), 1, + aux_sym_record_exp_repeat1, + STATE(20341), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977238] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25674), 1, + anon_sym_SEMI, + ACTIONS(25676), 1, + anon_sym_end, + STATE(1369), 1, + aux_sym_sequence_exp_repeat1, + STATE(20442), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977267] = 9, + ACTIONS(4301), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25678), 1, + anon_sym_COMMA, + STATE(790), 1, + aux_sym_record_exp_repeat1, + STATE(20303), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977296] = 9, + ACTIONS(7425), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25680), 1, + anon_sym_COMMA, + STATE(1842), 1, + aux_sym_record_exp_repeat1, + STATE(20305), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977325] = 4, + ACTIONS(25682), 1, + anon_sym_PIPE, + STATE(17247), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [977344] = 9, + ACTIONS(4543), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25684), 1, + anon_sym_COMMA, + STATE(874), 1, + aux_sym_record_exp_repeat1, + STATE(19761), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977373] = 4, + ACTIONS(25682), 1, + anon_sym_PIPE, + STATE(17247), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 6, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [977392] = 4, + ACTIONS(25686), 1, + anon_sym_PIPE, + STATE(17247), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 6, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [977411] = 9, + ACTIONS(7427), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25689), 1, + anon_sym_COMMA, + STATE(1843), 1, + aux_sym_record_exp_repeat1, + STATE(20316), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977440] = 9, + ACTIONS(7429), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25691), 1, + anon_sym_SEMI, + STATE(1844), 1, + aux_sym_sequence_exp_repeat1, + STATE(20318), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977469] = 9, + ACTIONS(4303), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25693), 1, + anon_sym_COMMA, + STATE(791), 1, + aux_sym_record_exp_repeat1, + STATE(20325), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977498] = 9, + ACTIONS(7431), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25695), 1, + anon_sym_COMMA, + STATE(1845), 1, + aux_sym_record_exp_repeat1, + STATE(20327), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977527] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25697), 1, + anon_sym_SEMI, + ACTIONS(25699), 1, + anon_sym_end, + STATE(1846), 1, + aux_sym_sequence_exp_repeat1, + STATE(20328), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977556] = 9, + ACTIONS(6637), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25701), 1, + anon_sym_COMMA, + STATE(1466), 1, + aux_sym_record_exp_repeat1, + STATE(20367), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977585] = 3, + ACTIONS(25703), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_DASH_GT, + [977602] = 9, + ACTIONS(6639), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25705), 1, + anon_sym_SEMI, + STATE(1467), 1, + aux_sym_sequence_exp_repeat1, + STATE(20368), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977631] = 6, + ACTIONS(21724), 1, + anon_sym_COLON, + ACTIONS(21728), 1, + anon_sym_andalso, + ACTIONS(21730), 1, + anon_sym_orelse, + ACTIONS(21732), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_BSLASH_BSLASH, + [977654] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25707), 1, + anon_sym_SEMI, + ACTIONS(25709), 1, + anon_sym_end, + STATE(1562), 1, + aux_sym_sequence_exp_repeat1, + STATE(19833), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977683] = 9, + ACTIONS(8091), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25711), 1, + anon_sym_COMMA, + STATE(2143), 1, + aux_sym_record_exp_repeat1, + STATE(19779), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977712] = 9, + ACTIONS(8093), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25713), 1, + anon_sym_COMMA, + STATE(2144), 1, + aux_sym_record_exp_repeat1, + STATE(19806), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977741] = 6, + ACTIONS(25658), 1, + anon_sym_COLON, + ACTIONS(25660), 1, + anon_sym_andalso, + ACTIONS(25662), 1, + anon_sym_orelse, + ACTIONS(25664), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 4, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_PIPE, + [977764] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [977779] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [977794] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25715), 1, + anon_sym_SEMI, + ACTIONS(25717), 1, + anon_sym_end, + STATE(1851), 1, + aux_sym_sequence_exp_repeat1, + STATE(20340), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977823] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25719), 1, + anon_sym_SEMI, + ACTIONS(25721), 1, + anon_sym_end, + STATE(1852), 1, + aux_sym_sequence_exp_repeat1, + STATE(20342), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977852] = 9, + ACTIONS(8095), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25723), 1, + anon_sym_SEMI, + STATE(2145), 1, + aux_sym_sequence_exp_repeat1, + STATE(19809), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977881] = 9, + ACTIONS(4545), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25725), 1, + anon_sym_COMMA, + STATE(875), 1, + aux_sym_record_exp_repeat1, + STATE(19822), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977910] = 3, + ACTIONS(25727), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + anon_sym_DASH_GT, + [977927] = 9, + ACTIONS(8097), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25729), 1, + anon_sym_COMMA, + STATE(2146), 1, + aux_sym_record_exp_repeat1, + STATE(19826), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977956] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25731), 1, + anon_sym_SEMI, + ACTIONS(25733), 1, + anon_sym_end, + STATE(2147), 1, + aux_sym_sequence_exp_repeat1, + STATE(19835), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [977985] = 9, + ACTIONS(3979), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25735), 1, + anon_sym_COMMA, + STATE(683), 1, + aux_sym_record_exp_repeat1, + STATE(20380), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978014] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25737), 1, + anon_sym_SEMI, + ACTIONS(25739), 1, + anon_sym_end, + STATE(1855), 1, + aux_sym_sequence_exp_repeat1, + STATE(20348), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978043] = 9, + ACTIONS(6641), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25741), 1, + anon_sym_COMMA, + STATE(1468), 1, + aux_sym_record_exp_repeat1, + STATE(20383), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978072] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25743), 1, + anon_sym_SEMI, + ACTIONS(25745), 1, + anon_sym_end, + STATE(1469), 1, + aux_sym_sequence_exp_repeat1, + STATE(20385), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978101] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [978116] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25747), 1, + anon_sym_SEMI, + ACTIONS(25749), 1, + anon_sym_end, + STATE(2152), 1, + aux_sym_sequence_exp_repeat1, + STATE(19894), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978145] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25751), 1, + anon_sym_SEMI, + ACTIONS(25753), 1, + anon_sym_end, + STATE(2153), 1, + aux_sym_sequence_exp_repeat1, + STATE(19913), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978174] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25755), 1, + anon_sym_SEMI, + ACTIONS(25757), 1, + anon_sym_end, + STATE(2156), 1, + aux_sym_sequence_exp_repeat1, + STATE(20026), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978203] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25759), 1, + anon_sym_SEMI, + ACTIONS(25761), 1, + anon_sym_end, + STATE(1348), 1, + aux_sym_sequence_exp_repeat1, + STATE(21276), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978232] = 3, + ACTIONS(25763), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 7, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [978249] = 9, + ACTIONS(3871), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25765), 1, + anon_sym_COMMA, + STATE(647), 1, + aux_sym_record_exp_repeat1, + STATE(20826), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978278] = 9, + ACTIONS(4319), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25767), 1, + anon_sym_COMMA, + STATE(796), 1, + aux_sym_record_exp_repeat1, + STATE(20404), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978307] = 9, + ACTIONS(7473), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25769), 1, + anon_sym_COMMA, + STATE(1865), 1, + aux_sym_record_exp_repeat1, + STATE(20408), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978336] = 3, + ACTIONS(25771), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 7, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + [978353] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25773), 1, + anon_sym_SEMI, + ACTIONS(25775), 1, + anon_sym_end, + STATE(1474), 1, + aux_sym_sequence_exp_repeat1, + STATE(20449), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978382] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25777), 1, + anon_sym_SEMI, + ACTIONS(25779), 1, + anon_sym_end, + STATE(1475), 1, + aux_sym_sequence_exp_repeat1, + STATE(20451), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978411] = 9, + ACTIONS(7475), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25781), 1, + anon_sym_COMMA, + STATE(1866), 1, + aux_sym_record_exp_repeat1, + STATE(20417), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978440] = 9, + ACTIONS(7477), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25783), 1, + anon_sym_SEMI, + STATE(1867), 1, + aux_sym_sequence_exp_repeat1, + STATE(20418), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978469] = 9, + ACTIONS(4321), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25785), 1, + anon_sym_COMMA, + STATE(797), 1, + aux_sym_record_exp_repeat1, + STATE(20432), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978498] = 3, + ACTIONS(25787), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [978515] = 9, + ACTIONS(4561), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25789), 1, + anon_sym_COMMA, + STATE(880), 1, + aux_sym_record_exp_repeat1, + STATE(20254), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978544] = 9, + ACTIONS(7479), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25791), 1, + anon_sym_COMMA, + STATE(1868), 1, + aux_sym_record_exp_repeat1, + STATE(20435), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978573] = 9, + ACTIONS(8135), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25793), 1, + anon_sym_COMMA, + STATE(2164), 1, + aux_sym_record_exp_repeat1, + STATE(20264), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978602] = 9, + ACTIONS(3743), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25795), 1, + anon_sym_COMMA, + STATE(604), 1, + aux_sym_record_exp_repeat1, + STATE(20458), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978631] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25797), 1, + anon_sym_SEMI, + ACTIONS(25799), 1, + anon_sym_end, + STATE(1869), 1, + aux_sym_sequence_exp_repeat1, + STATE(20436), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978660] = 9, + ACTIONS(6057), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25801), 1, + anon_sym_COMMA, + STATE(1189), 1, + aux_sym_record_exp_repeat1, + STATE(20462), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978689] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 6, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [978706] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [978721] = 6, + ACTIONS(25658), 1, + anon_sym_COLON, + ACTIONS(25660), 1, + anon_sym_andalso, + ACTIONS(25662), 1, + anon_sym_orelse, + ACTIONS(25664), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 4, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_PIPE, + [978744] = 6, + ACTIONS(25658), 1, + anon_sym_COLON, + ACTIONS(25660), 1, + anon_sym_andalso, + ACTIONS(25662), 1, + anon_sym_orelse, + ACTIONS(25664), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 4, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + anon_sym_PIPE, + [978767] = 3, + ACTIONS(25803), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [978784] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25805), 1, + anon_sym_SEMI, + ACTIONS(25807), 1, + anon_sym_end, + STATE(1875), 1, + aux_sym_sequence_exp_repeat1, + STATE(20453), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978813] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25809), 1, + anon_sym_SEMI, + ACTIONS(25811), 1, + anon_sym_end, + STATE(1876), 1, + aux_sym_sequence_exp_repeat1, + STATE(21365), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978842] = 6, + ACTIONS(21724), 1, + anon_sym_COLON, + ACTIONS(21728), 1, + anon_sym_andalso, + ACTIONS(21730), 1, + anon_sym_orelse, + ACTIONS(21732), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_BSLASH_BSLASH, + [978865] = 6, + ACTIONS(21724), 1, + anon_sym_COLON, + ACTIONS(21728), 1, + anon_sym_andalso, + ACTIONS(21730), 1, + anon_sym_orelse, + ACTIONS(21732), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_BSLASH_BSLASH, + [978888] = 9, + ACTIONS(8137), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25813), 1, + anon_sym_COMMA, + STATE(2165), 1, + aux_sym_record_exp_repeat1, + STATE(20284), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978917] = 6, + ACTIONS(25554), 1, + anon_sym_COLON, + ACTIONS(25556), 1, + anon_sym_andalso, + ACTIONS(25558), 1, + anon_sym_orelse, + ACTIONS(25560), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 4, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_PIPE, + [978940] = 7, + ACTIONS(25554), 1, + anon_sym_COLON, + ACTIONS(25556), 1, + anon_sym_andalso, + ACTIONS(25558), 1, + anon_sym_orelse, + ACTIONS(25560), 1, + anon_sym_handle, + ACTIONS(25815), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 3, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + [978965] = 9, + ACTIONS(8139), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25817), 1, + anon_sym_SEMI, + STATE(2166), 1, + aux_sym_sequence_exp_repeat1, + STATE(20285), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [978994] = 9, + ACTIONS(6059), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25819), 1, + anon_sym_COMMA, + STATE(1190), 1, + aux_sym_record_exp_repeat1, + STATE(20502), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979023] = 9, + ACTIONS(6061), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25821), 1, + anon_sym_SEMI, + STATE(1191), 1, + aux_sym_sequence_exp_repeat1, + STATE(20503), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979052] = 6, + ACTIONS(25554), 1, + anon_sym_COLON, + ACTIONS(25556), 1, + anon_sym_andalso, + ACTIONS(25558), 1, + anon_sym_orelse, + ACTIONS(25560), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 4, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_PIPE, + [979075] = 5, + ACTIONS(15960), 1, + anon_sym_COLON, + ACTIONS(25628), 1, + anon_sym_STAR, + STATE(17313), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 5, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_where, + [979096] = 5, + ACTIONS(14007), 1, + anon_sym_COLON, + ACTIONS(25823), 1, + anon_sym_STAR, + STATE(17313), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 5, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_where, + [979117] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25826), 1, + anon_sym_SEMI, + ACTIONS(25828), 1, + anon_sym_end, + STATE(1478), 1, + aux_sym_sequence_exp_repeat1, + STATE(20480), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979146] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25830), 1, + anon_sym_SEMI, + ACTIONS(25832), 1, + anon_sym_end, + STATE(1879), 1, + aux_sym_sequence_exp_repeat1, + STATE(20466), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979175] = 9, + ACTIONS(3745), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25834), 1, + anon_sym_COMMA, + STATE(605), 1, + aux_sym_record_exp_repeat1, + STATE(20515), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979204] = 9, + ACTIONS(4563), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25836), 1, + anon_sym_COMMA, + STATE(881), 1, + aux_sym_record_exp_repeat1, + STATE(20293), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979233] = 9, + ACTIONS(6063), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25838), 1, + anon_sym_COMMA, + STATE(1192), 1, + aux_sym_record_exp_repeat1, + STATE(20517), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979262] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25840), 1, + anon_sym_SEMI, + ACTIONS(25842), 1, + anon_sym_end, + STATE(1193), 1, + aux_sym_sequence_exp_repeat1, + STATE(20521), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979291] = 9, + ACTIONS(6369), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25844), 1, + anon_sym_COMMA, + STATE(1338), 1, + aux_sym_record_exp_repeat1, + STATE(20839), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979320] = 5, + ACTIONS(15960), 1, + anon_sym_COLON, + ACTIONS(25656), 1, + anon_sym_STAR, + STATE(17322), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 5, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_where, + [979341] = 5, + ACTIONS(14007), 1, + anon_sym_COLON, + ACTIONS(25846), 1, + anon_sym_STAR, + STATE(17322), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 5, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_where, + [979362] = 9, + ACTIONS(8141), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25849), 1, + anon_sym_COMMA, + STATE(2168), 1, + aux_sym_record_exp_repeat1, + STATE(20299), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979391] = 7, + ACTIONS(25851), 1, + anon_sym_COLON, + ACTIONS(25853), 1, + anon_sym_andalso, + ACTIONS(25855), 1, + anon_sym_orelse, + ACTIONS(25857), 1, + anon_sym_handle, + ACTIONS(25859), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 3, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [979416] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25861), 1, + anon_sym_SEMI, + ACTIONS(25863), 1, + anon_sym_end, + STATE(2169), 1, + aux_sym_sequence_exp_repeat1, + STATE(20306), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979445] = 9, + ACTIONS(4067), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25865), 1, + anon_sym_COMMA, + STATE(712), 1, + aux_sym_record_exp_repeat1, + STATE(20447), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979474] = 9, + ACTIONS(6855), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25867), 1, + anon_sym_COMMA, + STATE(1570), 1, + aux_sym_record_exp_repeat1, + STATE(20477), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979503] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [979518] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25869), 1, + anon_sym_SEMI, + ACTIONS(25871), 1, + anon_sym_end, + STATE(1339), 1, + aux_sym_sequence_exp_repeat1, + STATE(20851), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979547] = 9, + ACTIONS(4337), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25873), 1, + anon_sym_COMMA, + STATE(802), 1, + aux_sym_record_exp_repeat1, + STATE(20501), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979576] = 9, + ACTIONS(7521), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25875), 1, + anon_sym_COMMA, + STATE(1888), 1, + aux_sym_record_exp_repeat1, + STATE(20509), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979605] = 3, + ACTIONS(25877), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + [979622] = 7, + ACTIONS(25879), 1, + anon_sym_COLON, + ACTIONS(25881), 1, + anon_sym_andalso, + ACTIONS(25883), 1, + anon_sym_orelse, + ACTIONS(25885), 1, + anon_sym_handle, + ACTIONS(25887), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 3, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [979647] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25889), 1, + anon_sym_SEMI, + ACTIONS(25891), 1, + anon_sym_end, + STATE(1327), 1, + aux_sym_sequence_exp_repeat1, + STATE(20177), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979676] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25893), 1, + anon_sym_SEMI, + ACTIONS(25895), 1, + anon_sym_end, + STATE(2174), 1, + aux_sym_sequence_exp_repeat1, + STATE(20354), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979705] = 9, + ACTIONS(7523), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25897), 1, + anon_sym_COMMA, + STATE(1889), 1, + aux_sym_record_exp_repeat1, + STATE(20520), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979734] = 9, + ACTIONS(7525), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25899), 1, + anon_sym_SEMI, + STATE(1890), 1, + aux_sym_sequence_exp_repeat1, + STATE(20525), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979763] = 6, + ACTIONS(25554), 1, + anon_sym_COLON, + ACTIONS(25556), 1, + anon_sym_andalso, + ACTIONS(25558), 1, + anon_sym_orelse, + ACTIONS(25560), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 4, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_PIPE, + [979786] = 6, + ACTIONS(25554), 1, + anon_sym_COLON, + ACTIONS(25556), 1, + anon_sym_andalso, + ACTIONS(25558), 1, + anon_sym_orelse, + ACTIONS(25560), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 4, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + anon_sym_PIPE, + [979809] = 3, + ACTIONS(25658), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 7, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + [979826] = 3, + ACTIONS(25901), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + [979843] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25903), 1, + anon_sym_SEMI, + ACTIONS(25905), 1, + anon_sym_end, + STATE(2175), 1, + aux_sym_sequence_exp_repeat1, + STATE(20356), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979872] = 9, + ACTIONS(4339), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25907), 1, + anon_sym_COMMA, + STATE(803), 1, + aux_sym_record_exp_repeat1, + STATE(20530), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979901] = 6, + ACTIONS(25851), 1, + anon_sym_COLON, + ACTIONS(25853), 1, + anon_sym_andalso, + ACTIONS(25855), 1, + anon_sym_orelse, + ACTIONS(25857), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 4, + anon_sym_else, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [979924] = 9, + ACTIONS(7527), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25909), 1, + anon_sym_COMMA, + STATE(1891), 1, + aux_sym_record_exp_repeat1, + STATE(20531), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979953] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25911), 1, + anon_sym_SEMI, + ACTIONS(25913), 1, + anon_sym_end, + STATE(1892), 1, + aux_sym_sequence_exp_repeat1, + STATE(20537), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [979982] = 9, + ACTIONS(6857), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25915), 1, + anon_sym_COMMA, + STATE(1571), 1, + aux_sym_record_exp_repeat1, + STATE(20499), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980011] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25917), 1, + anon_sym_SEMI, + ACTIONS(25919), 1, + anon_sym_end, + STATE(2178), 1, + aux_sym_sequence_exp_repeat1, + STATE(20393), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980040] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25921), 1, + anon_sym_SEMI, + ACTIONS(25923), 1, + anon_sym_end, + STATE(1198), 1, + aux_sym_sequence_exp_repeat1, + STATE(20561), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980069] = 9, + ACTIONS(6859), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25925), 1, + anon_sym_SEMI, + STATE(1572), 1, + aux_sym_sequence_exp_repeat1, + STATE(20518), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980098] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25927), 1, + anon_sym_SEMI, + ACTIONS(25929), 1, + anon_sym_end, + STATE(1199), 1, + aux_sym_sequence_exp_repeat1, + STATE(20562), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980127] = 6, + ACTIONS(25879), 1, + anon_sym_COLON, + ACTIONS(25881), 1, + anon_sym_andalso, + ACTIONS(25883), 1, + anon_sym_orelse, + ACTIONS(25885), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 4, + anon_sym_else, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [980150] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [980165] = 3, + ACTIONS(21724), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BSLASH_BSLASH, + [980182] = 3, + ACTIONS(25931), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + [980199] = 6, + ACTIONS(25851), 1, + anon_sym_COLON, + ACTIONS(25853), 1, + anon_sym_andalso, + ACTIONS(25855), 1, + anon_sym_orelse, + ACTIONS(25857), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 4, + anon_sym_else, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [980222] = 7, + ACTIONS(25851), 1, + anon_sym_COLON, + ACTIONS(25853), 1, + anon_sym_andalso, + ACTIONS(25855), 1, + anon_sym_orelse, + ACTIONS(25857), 1, + anon_sym_handle, + ACTIONS(25933), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 3, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [980247] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25935), 1, + anon_sym_SEMI, + ACTIONS(25937), 1, + anon_sym_end, + STATE(1897), 1, + aux_sym_sequence_exp_repeat1, + STATE(20550), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980276] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25939), 1, + anon_sym_SEMI, + ACTIONS(25941), 1, + anon_sym_end, + STATE(1898), 1, + aux_sym_sequence_exp_repeat1, + STATE(20552), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980305] = 4, + ACTIONS(25002), 1, + anon_sym_PIPE, + STATE(17361), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 6, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [980324] = 4, + ACTIONS(25943), 1, + anon_sym_PIPE, + STATE(17361), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 6, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [980343] = 6, + ACTIONS(25879), 1, + anon_sym_COLON, + ACTIONS(25881), 1, + anon_sym_andalso, + ACTIONS(25883), 1, + anon_sym_orelse, + ACTIONS(25885), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 4, + anon_sym_else, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [980366] = 7, + ACTIONS(25879), 1, + anon_sym_COLON, + ACTIONS(25881), 1, + anon_sym_andalso, + ACTIONS(25883), 1, + anon_sym_orelse, + ACTIONS(25885), 1, + anon_sym_handle, + ACTIONS(25946), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 3, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [980391] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [980406] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25948), 1, + anon_sym_SEMI, + ACTIONS(25950), 1, + anon_sym_end, + STATE(1901), 1, + aux_sym_sequence_exp_repeat1, + STATE(20557), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980435] = 9, + ACTIONS(4069), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25952), 1, + anon_sym_COMMA, + STATE(713), 1, + aux_sym_record_exp_repeat1, + STATE(20579), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980464] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [980479] = 9, + ACTIONS(6861), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25954), 1, + anon_sym_COMMA, + STATE(1573), 1, + aux_sym_record_exp_repeat1, + STATE(20591), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980508] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25956), 1, + anon_sym_SEMI, + ACTIONS(25958), 1, + anon_sym_end, + STATE(1574), 1, + aux_sym_sequence_exp_repeat1, + STATE(20625), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980537] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [980552] = 3, + ACTIONS(25960), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [980569] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25962), 1, + anon_sym_SEMI, + ACTIONS(25964), 1, + anon_sym_end, + STATE(1202), 1, + aux_sym_sequence_exp_repeat1, + STATE(20616), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980598] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(25966), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + [980613] = 4, + ACTIONS(25658), 1, + anon_sym_COLON, + ACTIONS(25660), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 6, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + [980632] = 9, + ACTIONS(4579), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25968), 1, + anon_sym_COMMA, + STATE(886), 1, + aux_sym_record_exp_repeat1, + STATE(20559), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980661] = 9, + ACTIONS(8217), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25970), 1, + anon_sym_COMMA, + STATE(2186), 1, + aux_sym_record_exp_repeat1, + STATE(20560), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980690] = 3, + ACTIONS(25972), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [980707] = 9, + ACTIONS(7927), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25974), 1, + anon_sym_COMMA, + STATE(2082), 1, + aux_sym_record_exp_repeat1, + STATE(20248), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980736] = 6, + ACTIONS(25851), 1, + anon_sym_COLON, + ACTIONS(25853), 1, + anon_sym_andalso, + ACTIONS(25855), 1, + anon_sym_orelse, + ACTIONS(25857), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 4, + anon_sym_else, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [980759] = 6, + ACTIONS(25851), 1, + anon_sym_COLON, + ACTIONS(25853), 1, + anon_sym_andalso, + ACTIONS(25855), 1, + anon_sym_orelse, + ACTIONS(25857), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 4, + anon_sym_else, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [980782] = 3, + ACTIONS(25976), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [980799] = 9, + ACTIONS(8221), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25978), 1, + anon_sym_SEMI, + STATE(2188), 1, + aux_sym_sequence_exp_repeat1, + STATE(20576), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980828] = 9, + ACTIONS(4581), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25980), 1, + anon_sym_COMMA, + STATE(887), 1, + aux_sym_record_exp_repeat1, + STATE(20585), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980857] = 9, + ACTIONS(4355), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25982), 1, + anon_sym_COMMA, + STATE(808), 1, + aux_sym_record_exp_repeat1, + STATE(20613), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980886] = 9, + ACTIONS(7565), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25984), 1, + anon_sym_COMMA, + STATE(1909), 1, + aux_sym_record_exp_repeat1, + STATE(20615), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [980915] = 6, + ACTIONS(25879), 1, + anon_sym_COLON, + ACTIONS(25881), 1, + anon_sym_andalso, + ACTIONS(25883), 1, + anon_sym_orelse, + ACTIONS(25885), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 4, + anon_sym_else, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [980938] = 6, + ACTIONS(25879), 1, + anon_sym_COLON, + ACTIONS(25881), 1, + anon_sym_andalso, + ACTIONS(25883), 1, + anon_sym_orelse, + ACTIONS(25885), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 4, + anon_sym_else, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [980961] = 3, + ACTIONS(25986), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 7, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [980978] = 9, + ACTIONS(8223), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25988), 1, + anon_sym_COMMA, + STATE(2189), 1, + aux_sym_record_exp_repeat1, + STATE(20589), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981007] = 4, + ACTIONS(24918), 1, + anon_sym_STAR, + STATE(16950), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + [981026] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(25990), 1, + anon_sym_SEMI, + ACTIONS(25992), 1, + anon_sym_end, + STATE(2190), 1, + aux_sym_sequence_exp_repeat1, + STATE(20597), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981055] = 9, + ACTIONS(7567), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25994), 1, + anon_sym_COMMA, + STATE(1910), 1, + aux_sym_record_exp_repeat1, + STATE(20623), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981084] = 9, + ACTIONS(7569), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25996), 1, + anon_sym_SEMI, + STATE(1911), 1, + aux_sym_sequence_exp_repeat1, + STATE(20624), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981113] = 3, + ACTIONS(25554), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 7, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + [981130] = 9, + ACTIONS(4357), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(25998), 1, + anon_sym_COMMA, + STATE(809), 1, + aux_sym_record_exp_repeat1, + STATE(20629), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981159] = 9, + ACTIONS(7571), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26000), 1, + anon_sym_COMMA, + STATE(1913), 1, + aux_sym_record_exp_repeat1, + STATE(20630), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981188] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26002), 1, + anon_sym_SEMI, + ACTIONS(26004), 1, + anon_sym_end, + STATE(1914), 1, + aux_sym_sequence_exp_repeat1, + STATE(20632), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981217] = 9, + ACTIONS(3995), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26006), 1, + anon_sym_COMMA, + STATE(688), 1, + aux_sym_record_exp_repeat1, + STATE(20659), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981246] = 9, + ACTIONS(6679), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26008), 1, + anon_sym_COMMA, + STATE(1486), 1, + aux_sym_record_exp_repeat1, + STATE(20663), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981275] = 3, + ACTIONS(26010), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 7, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [981292] = 4, + ACTIONS(21724), 1, + anon_sym_COLON, + ACTIONS(21728), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_BSLASH_BSLASH, + [981311] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26012), 1, + anon_sym_SEMI, + ACTIONS(26014), 1, + anon_sym_end, + STATE(2195), 1, + aux_sym_sequence_exp_repeat1, + STATE(20671), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981340] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26016), 1, + anon_sym_SEMI, + ACTIONS(26018), 1, + anon_sym_end, + STATE(1920), 1, + aux_sym_sequence_exp_repeat1, + STATE(20644), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981369] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26020), 1, + anon_sym_SEMI, + ACTIONS(26022), 1, + anon_sym_end, + STATE(2196), 1, + aux_sym_sequence_exp_repeat1, + STATE(20677), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981398] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26024), 1, + anon_sym_SEMI, + ACTIONS(26026), 1, + anon_sym_end, + STATE(1921), 1, + aux_sym_sequence_exp_repeat1, + STATE(20646), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981427] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26028), 1, + anon_sym_SEMI, + ACTIONS(26030), 1, + anon_sym_end, + STATE(1579), 1, + aux_sym_sequence_exp_repeat1, + STATE(20782), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981456] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26032), 1, + anon_sym_SEMI, + ACTIONS(26034), 1, + anon_sym_end, + STATE(1580), 1, + aux_sym_sequence_exp_repeat1, + STATE(20787), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981485] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [981500] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26036), 1, + anon_sym_SEMI, + ACTIONS(26038), 1, + anon_sym_end, + STATE(1924), 1, + aux_sym_sequence_exp_repeat1, + STATE(20652), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981529] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26040), 1, + anon_sym_SEMI, + ACTIONS(26042), 1, + anon_sym_end, + STATE(2083), 1, + aux_sym_sequence_exp_repeat1, + STATE(20278), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981558] = 9, + ACTIONS(6681), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26044), 1, + anon_sym_COMMA, + STATE(1487), 1, + aux_sym_record_exp_repeat1, + STATE(20691), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981587] = 9, + ACTIONS(6683), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26046), 1, + anon_sym_SEMI, + STATE(1488), 1, + aux_sym_sequence_exp_repeat1, + STATE(20698), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981616] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26048), 1, + anon_sym_SEMI, + ACTIONS(26050), 1, + anon_sym_end, + STATE(2199), 1, + aux_sym_sequence_exp_repeat1, + STATE(20694), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981645] = 9, + ACTIONS(3997), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26052), 1, + anon_sym_COMMA, + STATE(689), 1, + aux_sym_record_exp_repeat1, + STATE(20709), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981674] = 9, + ACTIONS(6685), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26054), 1, + anon_sym_COMMA, + STATE(1489), 1, + aux_sym_record_exp_repeat1, + STATE(20723), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981703] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26056), 1, + anon_sym_SEMI, + ACTIONS(26058), 1, + anon_sym_end, + STATE(1490), 1, + aux_sym_sequence_exp_repeat1, + STATE(20728), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981732] = 9, + ACTIONS(4373), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26060), 1, + anon_sym_COMMA, + STATE(814), 1, + aux_sym_record_exp_repeat1, + STATE(20689), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981761] = 9, + ACTIONS(5925), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26062), 1, + anon_sym_COMMA, + STATE(1395), 1, + aux_sym_record_exp_repeat1, + STATE(19585), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981790] = 9, + ACTIONS(7613), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26064), 1, + anon_sym_COMMA, + STATE(1932), 1, + aux_sym_record_exp_repeat1, + STATE(20692), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981819] = 3, + ACTIONS(25851), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 7, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [981836] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26066), 1, + anon_sym_SEMI, + ACTIONS(26068), 1, + anon_sym_end, + STATE(2088), 1, + aux_sym_sequence_exp_repeat1, + STATE(20664), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981865] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15525), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [981884] = 9, + ACTIONS(7615), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26070), 1, + anon_sym_COMMA, + STATE(1933), 1, + aux_sym_record_exp_repeat1, + STATE(20701), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981913] = 9, + ACTIONS(7617), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26072), 1, + anon_sym_SEMI, + STATE(1934), 1, + aux_sym_sequence_exp_repeat1, + STATE(20702), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981942] = 3, + ACTIONS(25879), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 7, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [981959] = 9, + ACTIONS(4375), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26074), 1, + anon_sym_COMMA, + STATE(815), 1, + aux_sym_record_exp_repeat1, + STATE(20707), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [981988] = 9, + ACTIONS(7619), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26076), 1, + anon_sym_COMMA, + STATE(1935), 1, + aux_sym_record_exp_repeat1, + STATE(20708), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982017] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26078), 1, + anon_sym_SEMI, + ACTIONS(26080), 1, + anon_sym_end, + STATE(1936), 1, + aux_sym_sequence_exp_repeat1, + STATE(20710), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982046] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26082), 1, + anon_sym_SEMI, + ACTIONS(26084), 1, + anon_sym_end, + STATE(1583), 1, + aux_sym_sequence_exp_repeat1, + STATE(20919), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982075] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26086), 1, + anon_sym_SEMI, + ACTIONS(26088), 1, + anon_sym_end, + STATE(1941), 1, + aux_sym_sequence_exp_repeat1, + STATE(20730), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982104] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26090), 1, + anon_sym_SEMI, + ACTIONS(26092), 1, + anon_sym_end, + STATE(1942), 1, + aux_sym_sequence_exp_repeat1, + STATE(20731), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982133] = 9, + ACTIONS(4597), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26094), 1, + anon_sym_COMMA, + STATE(892), 1, + aux_sym_record_exp_repeat1, + STATE(20890), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982162] = 9, + ACTIONS(5933), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26096), 1, + anon_sym_SEMI, + STATE(1399), 1, + aux_sym_sequence_exp_repeat1, + STATE(19717), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982191] = 4, + ACTIONS(25554), 1, + anon_sym_COLON, + ACTIONS(25556), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 6, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + [982210] = 9, + ACTIONS(8261), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26098), 1, + anon_sym_COMMA, + STATE(2207), 1, + aux_sym_record_exp_repeat1, + STATE(20894), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982239] = 9, + ACTIONS(3761), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26100), 1, + anon_sym_COMMA, + STATE(610), 1, + aux_sym_record_exp_repeat1, + STATE(20745), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982268] = 9, + ACTIONS(6101), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26102), 1, + anon_sym_COMMA, + STATE(1210), 1, + aux_sym_record_exp_repeat1, + STATE(20749), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982297] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26104), 1, + anon_sym_SEMI, + ACTIONS(26106), 1, + anon_sym_end, + STATE(1495), 1, + aux_sym_sequence_exp_repeat1, + STATE(20768), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982326] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26108), 1, + anon_sym_SEMI, + ACTIONS(26110), 1, + anon_sym_end, + STATE(1945), 1, + aux_sym_sequence_exp_repeat1, + STATE(20747), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982355] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26112), 1, + anon_sym_SEMI, + ACTIONS(26114), 1, + anon_sym_end, + STATE(1496), 1, + aux_sym_sequence_exp_repeat1, + STATE(20773), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982384] = 9, + ACTIONS(8263), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26116), 1, + anon_sym_COMMA, + STATE(2208), 1, + aux_sym_record_exp_repeat1, + STATE(20934), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982413] = 9, + ACTIONS(8265), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26118), 1, + anon_sym_SEMI, + STATE(2209), 1, + aux_sym_sequence_exp_repeat1, + STATE(20942), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982442] = 9, + ACTIONS(6103), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26120), 1, + anon_sym_COMMA, + STATE(1211), 1, + aux_sym_record_exp_repeat1, + STATE(20761), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982471] = 9, + ACTIONS(6105), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26122), 1, + anon_sym_SEMI, + STATE(1212), 1, + aux_sym_sequence_exp_repeat1, + STATE(20762), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982500] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26124), 1, + anon_sym_SEMI, + ACTIONS(26126), 1, + anon_sym_end, + STATE(2089), 1, + aux_sym_sequence_exp_repeat1, + STATE(20823), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982529] = 9, + ACTIONS(3763), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26128), 1, + anon_sym_COMMA, + STATE(611), 1, + aux_sym_record_exp_repeat1, + STATE(20766), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982558] = 9, + ACTIONS(4599), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26130), 1, + anon_sym_COMMA, + STATE(893), 1, + aux_sym_record_exp_repeat1, + STATE(20960), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982587] = 9, + ACTIONS(6107), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26132), 1, + anon_sym_COMMA, + STATE(1213), 1, + aux_sym_record_exp_repeat1, + STATE(20769), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982616] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26134), 1, + anon_sym_SEMI, + ACTIONS(26136), 1, + anon_sym_end, + STATE(1214), 1, + aux_sym_sequence_exp_repeat1, + STATE(20772), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982645] = 9, + ACTIONS(8267), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26138), 1, + anon_sym_COMMA, + STATE(2211), 1, + aux_sym_record_exp_repeat1, + STATE(20963), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982674] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26140), 1, + anon_sym_SEMI, + ACTIONS(26142), 1, + anon_sym_end, + STATE(2212), 1, + aux_sym_sequence_exp_repeat1, + STATE(20965), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982703] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26144), 1, + anon_sym_SEMI, + ACTIONS(26146), 1, + anon_sym_end, + STATE(2092), 1, + aux_sym_sequence_exp_repeat1, + STATE(21061), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982732] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26148), 1, + anon_sym_SEMI, + ACTIONS(26150), 1, + anon_sym_end, + STATE(2218), 1, + aux_sym_sequence_exp_repeat1, + STATE(20975), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982761] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26152), 1, + anon_sym_SEMI, + ACTIONS(26154), 1, + anon_sym_end, + STATE(1219), 1, + aux_sym_sequence_exp_repeat1, + STATE(20795), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982790] = 9, + ACTIONS(3905), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26156), 1, + anon_sym_COMMA, + STATE(658), 1, + aux_sym_record_exp_repeat1, + STATE(20900), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982819] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26158), 1, + anon_sym_SEMI, + ACTIONS(26160), 1, + anon_sym_end, + STATE(1220), 1, + aux_sym_sequence_exp_repeat1, + STATE(20796), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982848] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26162), 1, + anon_sym_SEMI, + ACTIONS(26164), 1, + anon_sym_end, + STATE(1499), 1, + aux_sym_sequence_exp_repeat1, + STATE(20810), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982877] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26166), 1, + anon_sym_SEMI, + ACTIONS(26168), 1, + anon_sym_end, + STATE(2219), 1, + aux_sym_sequence_exp_repeat1, + STATE(20976), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982906] = 9, + ACTIONS(4391), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26170), 1, + anon_sym_COMMA, + STATE(820), 1, + aux_sym_record_exp_repeat1, + STATE(20798), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982935] = 9, + ACTIONS(6451), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26172), 1, + anon_sym_COMMA, + STATE(1377), 1, + aux_sym_record_exp_repeat1, + STATE(20967), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982964] = 9, + ACTIONS(7657), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26174), 1, + anon_sym_COMMA, + STATE(1953), 1, + aux_sym_record_exp_repeat1, + STATE(20804), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [982993] = 9, + ACTIONS(7659), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26176), 1, + anon_sym_COMMA, + STATE(1954), 1, + aux_sym_record_exp_repeat1, + STATE(20811), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983022] = 9, + ACTIONS(7661), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26178), 1, + anon_sym_SEMI, + STATE(1955), 1, + aux_sym_sequence_exp_repeat1, + STATE(20812), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983051] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26180), 1, + anon_sym_SEMI, + ACTIONS(26182), 1, + anon_sym_end, + STATE(2222), 1, + aux_sym_sequence_exp_repeat1, + STATE(21017), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983080] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26184), 1, + anon_sym_SEMI, + ACTIONS(26186), 1, + anon_sym_end, + STATE(1223), 1, + aux_sym_sequence_exp_repeat1, + STATE(20819), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983109] = 9, + ACTIONS(4393), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26188), 1, + anon_sym_COMMA, + STATE(821), 1, + aux_sym_record_exp_repeat1, + STATE(20816), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983138] = 9, + ACTIONS(7663), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26190), 1, + anon_sym_COMMA, + STATE(1956), 1, + aux_sym_record_exp_repeat1, + STATE(20818), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983167] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26192), 1, + anon_sym_SEMI, + ACTIONS(26194), 1, + anon_sym_end, + STATE(1957), 1, + aux_sym_sequence_exp_repeat1, + STATE(20821), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983196] = 4, + ACTIONS(25851), 1, + anon_sym_COLON, + ACTIONS(25853), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 6, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [983215] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26196), 1, + anon_sym_SEMI, + ACTIONS(26198), 1, + anon_sym_end, + STATE(1962), 1, + aux_sym_sequence_exp_repeat1, + STATE(20827), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983244] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26200), 1, + anon_sym_SEMI, + ACTIONS(26202), 1, + anon_sym_end, + STATE(1963), 1, + aux_sym_sequence_exp_repeat1, + STATE(20828), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983273] = 4, + ACTIONS(25879), 1, + anon_sym_COLON, + ACTIONS(25881), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 6, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [983292] = 9, + ACTIONS(3923), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26204), 1, + anon_sym_COMMA, + STATE(664), 1, + aux_sym_record_exp_repeat1, + STATE(19421), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983321] = 9, + ACTIONS(6497), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26206), 1, + anon_sym_COMMA, + STATE(1400), 1, + aux_sym_record_exp_repeat1, + STATE(19452), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983350] = 4, + ACTIONS(25668), 1, + anon_sym_STAR, + STATE(17489), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + [983369] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26208), 1, + anon_sym_SEMI, + ACTIONS(26210), 1, + anon_sym_end, + STATE(1966), 1, + aux_sym_sequence_exp_repeat1, + STATE(20835), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983398] = 9, + ACTIONS(5959), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26212), 1, + anon_sym_COMMA, + STATE(1407), 1, + aux_sym_record_exp_repeat1, + STATE(20011), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983427] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26214), 1, + anon_sym_SEMI, + ACTIONS(26216), 1, + anon_sym_end, + STATE(1323), 1, + aux_sym_sequence_exp_repeat1, + STATE(19647), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983456] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(9037), 1, + sym_typbind, + STATE(22871), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24926), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [983483] = 9, + ACTIONS(4615), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26218), 1, + anon_sym_COMMA, + STATE(898), 1, + aux_sym_record_exp_repeat1, + STATE(21181), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983512] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26220), 1, + anon_sym_SEMI, + ACTIONS(26222), 1, + anon_sym_end, + STATE(1416), 1, + aux_sym_sequence_exp_repeat1, + STATE(20031), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983541] = 9, + ACTIONS(6453), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26224), 1, + anon_sym_COMMA, + STATE(1378), 1, + aux_sym_record_exp_repeat1, + STATE(21153), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983570] = 9, + ACTIONS(8311), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26226), 1, + anon_sym_COMMA, + STATE(2231), 1, + aux_sym_record_exp_repeat1, + STATE(21187), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983599] = 9, + ACTIONS(6455), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26228), 1, + anon_sym_SEMI, + STATE(1379), 1, + aux_sym_sequence_exp_repeat1, + STATE(21160), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983628] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26230), 1, + anon_sym_SEMI, + ACTIONS(26232), 1, + anon_sym_end, + STATE(1344), 1, + aux_sym_sequence_exp_repeat1, + STATE(19568), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983657] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14909), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + [983672] = 9, + ACTIONS(3779), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26234), 1, + anon_sym_COMMA, + STATE(616), 1, + aux_sym_record_exp_repeat1, + STATE(20876), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983701] = 9, + ACTIONS(6145), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26236), 1, + anon_sym_COMMA, + STATE(1231), 1, + aux_sym_record_exp_repeat1, + STATE(20879), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983730] = 4, + ACTIONS(26238), 1, + anon_sym_STAR, + STATE(17489), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + [983749] = 9, + ACTIONS(4409), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26241), 1, + anon_sym_COMMA, + STATE(826), 1, + aux_sym_record_exp_repeat1, + STATE(20889), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983778] = 9, + ACTIONS(7701), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26243), 1, + anon_sym_COMMA, + STATE(1974), 1, + aux_sym_record_exp_repeat1, + STATE(20891), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983807] = 9, + ACTIONS(6147), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26245), 1, + anon_sym_COMMA, + STATE(1232), 1, + aux_sym_record_exp_repeat1, + STATE(20910), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983836] = 9, + ACTIONS(6149), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26247), 1, + anon_sym_SEMI, + STATE(1233), 1, + aux_sym_sequence_exp_repeat1, + STATE(20911), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983865] = 9, + ACTIONS(8313), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26249), 1, + anon_sym_COMMA, + STATE(2232), 1, + aux_sym_record_exp_repeat1, + STATE(21224), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983894] = 9, + ACTIONS(8315), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26251), 1, + anon_sym_SEMI, + STATE(2233), 1, + aux_sym_sequence_exp_repeat1, + STATE(21232), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983923] = 9, + ACTIONS(3781), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26253), 1, + anon_sym_COMMA, + STATE(617), 1, + aux_sym_record_exp_repeat1, + STATE(20921), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983952] = 9, + ACTIONS(6151), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26255), 1, + anon_sym_COMMA, + STATE(1234), 1, + aux_sym_record_exp_repeat1, + STATE(20931), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [983981] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26257), 1, + anon_sym_SEMI, + ACTIONS(26259), 1, + anon_sym_end, + STATE(1235), 1, + aux_sym_sequence_exp_repeat1, + STATE(20932), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984010] = 9, + ACTIONS(4617), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26261), 1, + anon_sym_COMMA, + STATE(899), 1, + aux_sym_record_exp_repeat1, + STATE(21274), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984039] = 9, + ACTIONS(4013), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26263), 1, + anon_sym_COMMA, + STATE(694), 1, + aux_sym_record_exp_repeat1, + STATE(20938), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984068] = 9, + ACTIONS(8317), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26265), 1, + anon_sym_COMMA, + STATE(2234), 1, + aux_sym_record_exp_repeat1, + STATE(21280), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984097] = 9, + ACTIONS(7703), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26267), 1, + anon_sym_COMMA, + STATE(1975), 1, + aux_sym_record_exp_repeat1, + STATE(20895), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984126] = 9, + ACTIONS(7705), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26269), 1, + anon_sym_SEMI, + STATE(1976), 1, + aux_sym_sequence_exp_repeat1, + STATE(20896), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984155] = 9, + ACTIONS(6723), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26271), 1, + anon_sym_COMMA, + STATE(1507), 1, + aux_sym_record_exp_repeat1, + STATE(20961), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984184] = 9, + ACTIONS(4411), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26273), 1, + anon_sym_COMMA, + STATE(827), 1, + aux_sym_record_exp_repeat1, + STATE(20899), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984213] = 9, + ACTIONS(7707), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26275), 1, + anon_sym_COMMA, + STATE(1977), 1, + aux_sym_record_exp_repeat1, + STATE(20901), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984242] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26277), 1, + anon_sym_SEMI, + ACTIONS(26279), 1, + anon_sym_end, + STATE(1978), 1, + aux_sym_sequence_exp_repeat1, + STATE(20903), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984271] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26281), 1, + anon_sym_SEMI, + ACTIONS(26283), 1, + anon_sym_end, + STATE(1345), 1, + aux_sym_sequence_exp_repeat1, + STATE(19688), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984300] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26285), 1, + anon_sym_SEMI, + ACTIONS(26287), 1, + anon_sym_end, + STATE(1983), 1, + aux_sym_sequence_exp_repeat1, + STATE(20925), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984329] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26289), 1, + anon_sym_SEMI, + ACTIONS(26291), 1, + anon_sym_end, + STATE(2235), 1, + aux_sym_sequence_exp_repeat1, + STATE(21286), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984358] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26293), 1, + anon_sym_SEMI, + ACTIONS(26295), 1, + anon_sym_end, + STATE(1984), 1, + aux_sym_sequence_exp_repeat1, + STATE(20926), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984387] = 9, + ACTIONS(6725), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26297), 1, + anon_sym_COMMA, + STATE(1508), 1, + aux_sym_record_exp_repeat1, + STATE(20970), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984416] = 9, + ACTIONS(6727), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26299), 1, + anon_sym_SEMI, + STATE(1509), 1, + aux_sym_sequence_exp_repeat1, + STATE(20972), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984445] = 9, + ACTIONS(4085), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26301), 1, + anon_sym_COMMA, + STATE(718), 1, + aux_sym_record_exp_repeat1, + STATE(19311), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984474] = 9, + ACTIONS(6899), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26303), 1, + anon_sym_COMMA, + STATE(1591), 1, + aux_sym_record_exp_repeat1, + STATE(19314), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984503] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26305), 1, + anon_sym_SEMI, + ACTIONS(26307), 1, + anon_sym_end, + STATE(1987), 1, + aux_sym_sequence_exp_repeat1, + STATE(20940), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984532] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26309), 1, + anon_sym_SEMI, + ACTIONS(26311), 1, + anon_sym_end, + STATE(2240), 1, + aux_sym_sequence_exp_repeat1, + STATE(19270), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984561] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26313), 1, + anon_sym_SEMI, + ACTIONS(26315), 1, + anon_sym_end, + STATE(1240), 1, + aux_sym_sequence_exp_repeat1, + STATE(20943), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984590] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26317), 1, + anon_sym_SEMI, + ACTIONS(26319), 1, + anon_sym_end, + STATE(1241), 1, + aux_sym_sequence_exp_repeat1, + STATE(20944), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984619] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13546), 1, + sym_typbind, + STATE(23679), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24889), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [984646] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26321), 1, + anon_sym_SEMI, + ACTIONS(26323), 1, + anon_sym_end, + STATE(2241), 1, + aux_sym_sequence_exp_repeat1, + STATE(19273), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984675] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13438), 1, + sym_datbind, + STATE(23681), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24894), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [984702] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26325), 1, + anon_sym_SEMI, + ACTIONS(26327), 1, + anon_sym_end, + STATE(1244), 1, + aux_sym_sequence_exp_repeat1, + STATE(20959), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984731] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(9037), 1, + sym_typbind, + STATE(23920), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24977), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [984758] = 9, + ACTIONS(4015), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26329), 1, + anon_sym_COMMA, + STATE(695), 1, + aux_sym_record_exp_repeat1, + STATE(20993), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984787] = 4, + ACTIONS(24456), 1, + anon_sym_STAR, + STATE(16775), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + [984806] = 9, + ACTIONS(6729), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26331), 1, + anon_sym_COMMA, + STATE(1510), 1, + aux_sym_record_exp_repeat1, + STATE(21000), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984835] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26333), 1, + anon_sym_SEMI, + ACTIONS(26335), 1, + anon_sym_end, + STATE(1511), 1, + aux_sym_sequence_exp_repeat1, + STATE(21004), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984864] = 9, + ACTIONS(3907), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26337), 1, + anon_sym_COMMA, + STATE(659), 1, + aux_sym_record_exp_repeat1, + STATE(21242), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984893] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26339), 1, + anon_sym_SEMI, + ACTIONS(26341), 1, + anon_sym_end, + STATE(2244), 1, + aux_sym_sequence_exp_repeat1, + STATE(19283), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984922] = 9, + ACTIONS(6457), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26343), 1, + anon_sym_COMMA, + STATE(1380), 1, + aux_sym_record_exp_repeat1, + STATE(21255), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [984951] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13546), 1, + sym_typbind, + STATE(23798), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24925), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [984978] = 9, + ACTIONS(6901), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26345), 1, + anon_sym_COMMA, + STATE(1592), 1, + aux_sym_record_exp_repeat1, + STATE(19333), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985007] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13438), 1, + sym_datbind, + STATE(23744), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24939), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [985034] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(9037), 1, + sym_typbind, + STATE(23947), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(25041), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [985061] = 9, + ACTIONS(4429), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26347), 1, + anon_sym_COMMA, + STATE(832), 1, + aux_sym_record_exp_repeat1, + STATE(20985), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985090] = 9, + ACTIONS(7745), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26349), 1, + anon_sym_COMMA, + STATE(1995), 1, + aux_sym_record_exp_repeat1, + STATE(20988), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985119] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26351), 1, + anon_sym_SEMI, + ACTIONS(26353), 1, + anon_sym_end, + STATE(1381), 1, + aux_sym_sequence_exp_repeat1, + STATE(21258), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985148] = 9, + ACTIONS(6903), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26355), 1, + anon_sym_SEMI, + STATE(1593), 1, + aux_sym_sequence_exp_repeat1, + STATE(19335), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985177] = 9, + ACTIONS(7747), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26357), 1, + anon_sym_COMMA, + STATE(1996), 1, + aux_sym_record_exp_repeat1, + STATE(20997), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985206] = 9, + ACTIONS(7749), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26359), 1, + anon_sym_SEMI, + STATE(1997), 1, + aux_sym_sequence_exp_repeat1, + STATE(20998), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985235] = 9, + ACTIONS(4431), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26361), 1, + anon_sym_COMMA, + STATE(833), 1, + aux_sym_record_exp_repeat1, + STATE(21002), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985264] = 9, + ACTIONS(7751), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26363), 1, + anon_sym_COMMA, + STATE(1998), 1, + aux_sym_record_exp_repeat1, + STATE(21003), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985293] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26365), 1, + anon_sym_SEMI, + ACTIONS(26367), 1, + anon_sym_end, + STATE(1999), 1, + aux_sym_sequence_exp_repeat1, + STATE(21005), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985322] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13546), 1, + sym_typbind, + STATE(23857), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24959), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [985349] = 9, + ACTIONS(4087), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26369), 1, + anon_sym_COMMA, + STATE(719), 1, + aux_sym_record_exp_repeat1, + STATE(19382), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985378] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13438), 1, + sym_datbind, + STATE(23799), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24930), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [985405] = 4, + ACTIONS(26371), 1, + anon_sym_PIPE, + STATE(17550), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + [985424] = 4, + ACTIONS(26371), 1, + anon_sym_PIPE, + STATE(17550), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + [985443] = 4, + ACTIONS(26373), 1, + anon_sym_PIPE, + STATE(17550), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + [985462] = 9, + ACTIONS(6905), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26376), 1, + anon_sym_COMMA, + STATE(1594), 1, + aux_sym_record_exp_repeat1, + STATE(19386), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985491] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26378), 1, + anon_sym_SEMI, + ACTIONS(26380), 1, + anon_sym_end, + STATE(2004), 1, + aux_sym_sequence_exp_repeat1, + STATE(21016), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985520] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26382), 1, + anon_sym_SEMI, + ACTIONS(26384), 1, + anon_sym_end, + STATE(2005), 1, + aux_sym_sequence_exp_repeat1, + STATE(21021), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985549] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26386), 1, + anon_sym_SEMI, + ACTIONS(26388), 1, + anon_sym_end, + STATE(1516), 1, + aux_sym_sequence_exp_repeat1, + STATE(21056), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985578] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26390), 1, + anon_sym_SEMI, + ACTIONS(26392), 1, + anon_sym_end, + STATE(1517), 1, + aux_sym_sequence_exp_repeat1, + STATE(21058), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985607] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26394), 1, + anon_sym_SEMI, + ACTIONS(26396), 1, + anon_sym_end, + STATE(1595), 1, + aux_sym_sequence_exp_repeat1, + STATE(19404), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985636] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13546), 1, + sym_typbind, + STATE(23893), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24997), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [985663] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(13438), 1, + sym_datbind, + STATE(23858), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24966), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [985690] = 9, + ACTIONS(3797), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26398), 1, + anon_sym_COMMA, + STATE(622), 1, + aux_sym_record_exp_repeat1, + STATE(21031), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985719] = 4, + ACTIONS(26400), 1, + anon_sym_PIPE, + STATE(17562), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + [985738] = 4, + ACTIONS(26400), 1, + anon_sym_PIPE, + STATE(17562), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + [985757] = 4, + ACTIONS(26402), 1, + anon_sym_PIPE, + STATE(17562), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + [985776] = 9, + ACTIONS(6189), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26405), 1, + anon_sym_COMMA, + STATE(1251), 1, + aux_sym_record_exp_repeat1, + STATE(21035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985805] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26407), 1, + anon_sym_SEMI, + ACTIONS(26409), 1, + anon_sym_end, + STATE(2008), 1, + aux_sym_sequence_exp_repeat1, + STATE(21037), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985834] = 9, + ACTIONS(6191), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26411), 1, + anon_sym_COMMA, + STATE(1252), 1, + aux_sym_record_exp_repeat1, + STATE(21041), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985863] = 9, + ACTIONS(9741), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26413), 1, + anon_sym_SEMI, + STATE(1253), 1, + aux_sym_sequence_exp_repeat1, + STATE(21043), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985892] = 9, + ACTIONS(3799), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26415), 1, + anon_sym_COMMA, + STATE(623), 1, + aux_sym_record_exp_repeat1, + STATE(21046), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985921] = 4, + ACTIONS(25682), 1, + anon_sym_PIPE, + STATE(17244), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 6, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [985940] = 4, + ACTIONS(25682), 1, + anon_sym_PIPE, + STATE(17246), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [985959] = 9, + ACTIONS(6193), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26417), 1, + anon_sym_COMMA, + STATE(1254), 1, + aux_sym_record_exp_repeat1, + STATE(21047), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [985988] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26419), 1, + anon_sym_SEMI, + ACTIONS(26421), 1, + anon_sym_end, + STATE(1255), 1, + aux_sym_sequence_exp_repeat1, + STATE(21048), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986017] = 4, + ACTIONS(26423), 1, + anon_sym_PIPE, + STATE(17574), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + [986036] = 4, + ACTIONS(26423), 1, + anon_sym_PIPE, + STATE(17574), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + [986055] = 4, + ACTIONS(26425), 1, + anon_sym_PIPE, + STATE(17574), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + [986074] = 9, + ACTIONS(6499), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26428), 1, + anon_sym_COMMA, + STATE(1401), 1, + aux_sym_record_exp_repeat1, + STATE(19633), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986103] = 9, + ACTIONS(6501), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26430), 1, + anon_sym_SEMI, + STATE(1402), 1, + aux_sym_sequence_exp_repeat1, + STATE(19638), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986132] = 9, + ACTIONS(4633), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26432), 1, + anon_sym_COMMA, + STATE(904), 1, + aux_sym_record_exp_repeat1, + STATE(19361), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986161] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26434), 1, + anon_sym_SEMI, + ACTIONS(26436), 1, + anon_sym_end, + STATE(1260), 1, + aux_sym_sequence_exp_repeat1, + STATE(21060), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986190] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26438), 1, + anon_sym_SEMI, + ACTIONS(26440), 1, + anon_sym_end, + STATE(1261), 1, + aux_sym_sequence_exp_repeat1, + STATE(21062), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986219] = 4, + ACTIONS(26442), 1, + anon_sym_PIPE, + STATE(17582), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [986238] = 4, + ACTIONS(26442), 1, + anon_sym_PIPE, + STATE(17582), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [986257] = 4, + ACTIONS(26444), 1, + anon_sym_PIPE, + STATE(17582), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [986276] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26447), 1, + anon_sym_SEMI, + ACTIONS(26449), 1, + anon_sym_end, + STATE(1520), 1, + aux_sym_sequence_exp_repeat1, + STATE(21116), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986305] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26451), 1, + anon_sym_SEMI, + ACTIONS(26453), 1, + anon_sym_end, + STATE(1264), 1, + aux_sym_sequence_exp_repeat1, + STATE(21075), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986334] = 4, + ACTIONS(26455), 1, + anon_sym_PIPE, + STATE(17587), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [986353] = 4, + ACTIONS(26455), 1, + anon_sym_PIPE, + STATE(17587), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [986372] = 4, + ACTIONS(26457), 1, + anon_sym_PIPE, + STATE(17587), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [986391] = 4, + ACTIONS(26371), 1, + anon_sym_PIPE, + STATE(17548), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + [986410] = 4, + ACTIONS(26371), 1, + anon_sym_PIPE, + STATE(17549), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + [986429] = 4, + ACTIONS(26400), 1, + anon_sym_PIPE, + STATE(17560), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + [986448] = 4, + ACTIONS(26400), 1, + anon_sym_PIPE, + STATE(17561), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + [986467] = 9, + ACTIONS(4441), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26460), 1, + anon_sym_COMMA, + STATE(838), 1, + aux_sym_record_exp_repeat1, + STATE(21102), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986496] = 9, + ACTIONS(7789), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26462), 1, + anon_sym_COMMA, + STATE(2016), 1, + aux_sym_record_exp_repeat1, + STATE(21107), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986525] = 9, + ACTIONS(8355), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26464), 1, + anon_sym_COMMA, + STATE(2252), 1, + aux_sym_record_exp_repeat1, + STATE(19364), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986554] = 8, + ACTIONS(26466), 1, + anon_sym_op, + ACTIONS(26468), 1, + anon_sym_PIPE, + ACTIONS(26470), 1, + anon_sym_datatype, + STATE(10610), 1, + sym_vid, + STATE(10691), 1, + sym_conbind, + STATE(11345), 1, + sym__conbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16540), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [986581] = 9, + ACTIONS(7791), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26472), 1, + anon_sym_COMMA, + STATE(2017), 1, + aux_sym_record_exp_repeat1, + STATE(21114), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986610] = 9, + ACTIONS(7793), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26474), 1, + anon_sym_SEMI, + STATE(2018), 1, + aux_sym_sequence_exp_repeat1, + STATE(21115), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986639] = 9, + ACTIONS(8357), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26476), 1, + anon_sym_COMMA, + STATE(2253), 1, + aux_sym_record_exp_repeat1, + STATE(19374), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986668] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(11351), 1, + sym_datbind, + STATE(23045), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24982), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [986695] = 4, + ACTIONS(26423), 1, + anon_sym_PIPE, + STATE(17572), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + [986714] = 4, + ACTIONS(26423), 1, + anon_sym_PIPE, + STATE(17573), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + [986733] = 9, + ACTIONS(8359), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26478), 1, + anon_sym_SEMI, + STATE(2254), 1, + aux_sym_sequence_exp_repeat1, + STATE(19375), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986762] = 9, + ACTIONS(4443), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26480), 1, + anon_sym_COMMA, + STATE(839), 1, + aux_sym_record_exp_repeat1, + STATE(21125), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986791] = 9, + ACTIONS(4635), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26482), 1, + anon_sym_COMMA, + STATE(905), 1, + aux_sym_record_exp_repeat1, + STATE(19384), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986820] = 9, + ACTIONS(8361), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26484), 1, + anon_sym_COMMA, + STATE(2255), 1, + aux_sym_record_exp_repeat1, + STATE(19385), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986849] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26486), 1, + anon_sym_SEMI, + ACTIONS(26488), 1, + anon_sym_end, + STATE(2256), 1, + aux_sym_sequence_exp_repeat1, + STATE(19389), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986878] = 9, + ACTIONS(7795), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26490), 1, + anon_sym_COMMA, + STATE(2019), 1, + aux_sym_record_exp_repeat1, + STATE(21130), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986907] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26492), 1, + anon_sym_SEMI, + ACTIONS(26494), 1, + anon_sym_end, + STATE(2020), 1, + aux_sym_sequence_exp_repeat1, + STATE(21137), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986936] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26496), 1, + anon_sym_SEMI, + ACTIONS(26498), 1, + anon_sym_end, + STATE(2261), 1, + aux_sym_sequence_exp_repeat1, + STATE(19417), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986965] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26500), 1, + anon_sym_SEMI, + ACTIONS(26502), 1, + anon_sym_end, + STATE(2262), 1, + aux_sym_sequence_exp_repeat1, + STATE(19420), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [986994] = 9, + ACTIONS(3815), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26504), 1, + anon_sym_COMMA, + STATE(628), 1, + aux_sym_record_exp_repeat1, + STATE(21128), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987023] = 9, + ACTIONS(6231), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26506), 1, + anon_sym_COMMA, + STATE(1272), 1, + aux_sym_record_exp_repeat1, + STATE(21129), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987052] = 4, + ACTIONS(26442), 1, + anon_sym_PIPE, + STATE(17580), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [987071] = 4, + ACTIONS(26442), 1, + anon_sym_PIPE, + STATE(17581), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [987090] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [987107] = 4, + ACTIONS(26455), 1, + anon_sym_PIPE, + STATE(17585), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [987126] = 4, + ACTIONS(26455), 1, + anon_sym_PIPE, + STATE(17586), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [987145] = 9, + ACTIONS(6233), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26508), 1, + anon_sym_COMMA, + STATE(1273), 1, + aux_sym_record_exp_repeat1, + STATE(21141), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987174] = 9, + ACTIONS(6235), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26510), 1, + anon_sym_SEMI, + STATE(1274), 1, + aux_sym_sequence_exp_repeat1, + STATE(21142), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987203] = 9, + ACTIONS(3817), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26512), 1, + anon_sym_COMMA, + STATE(629), 1, + aux_sym_record_exp_repeat1, + STATE(21147), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987232] = 9, + ACTIONS(6237), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26514), 1, + anon_sym_COMMA, + STATE(1275), 1, + aux_sym_record_exp_repeat1, + STATE(21148), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987261] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26516), 1, + anon_sym_SEMI, + ACTIONS(26518), 1, + anon_sym_end, + STATE(1276), 1, + aux_sym_sequence_exp_repeat1, + STATE(21149), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987290] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26520), 1, + anon_sym_SEMI, + ACTIONS(26522), 1, + anon_sym_end, + STATE(2025), 1, + aux_sym_sequence_exp_repeat1, + STATE(21165), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987319] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26524), 1, + anon_sym_SEMI, + ACTIONS(26526), 1, + anon_sym_end, + STATE(2026), 1, + aux_sym_sequence_exp_repeat1, + STATE(21167), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987348] = 3, + ACTIONS(26528), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 7, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_DASH_GT, + [987365] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26530), 1, + anon_sym_SEMI, + ACTIONS(26532), 1, + anon_sym_end, + STATE(1600), 1, + aux_sym_sequence_exp_repeat1, + STATE(19453), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987394] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26534), 1, + anon_sym_SEMI, + ACTIONS(26536), 1, + anon_sym_end, + STATE(1601), 1, + aux_sym_sequence_exp_repeat1, + STATE(19458), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987423] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26538), 1, + anon_sym_SEMI, + ACTIONS(26540), 1, + anon_sym_end, + STATE(1281), 1, + aux_sym_sequence_exp_repeat1, + STATE(21157), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987452] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26542), 1, + anon_sym_SEMI, + ACTIONS(26544), 1, + anon_sym_end, + STATE(1282), 1, + aux_sym_sequence_exp_repeat1, + STATE(21158), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987481] = 7, + ACTIONS(25658), 1, + anon_sym_COLON, + ACTIONS(25660), 1, + anon_sym_andalso, + ACTIONS(25662), 1, + anon_sym_orelse, + ACTIONS(25664), 1, + anon_sym_handle, + ACTIONS(26546), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PIPE, + [987506] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26548), 1, + anon_sym_SEMI, + ACTIONS(26550), 1, + anon_sym_end, + STATE(2265), 1, + aux_sym_sequence_exp_repeat1, + STATE(19438), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987535] = 9, + ACTIONS(3925), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26552), 1, + anon_sym_COMMA, + STATE(665), 1, + aux_sym_record_exp_repeat1, + STATE(19681), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987564] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26554), 1, + anon_sym_SEMI, + ACTIONS(26556), 1, + anon_sym_end, + STATE(1285), 1, + aux_sym_sequence_exp_repeat1, + STATE(21164), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987593] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26558), 1, + anon_sym_SEMI, + ACTIONS(26560), 1, + anon_sym_end, + STATE(2029), 1, + aux_sym_sequence_exp_repeat1, + STATE(21178), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987622] = 9, + ACTIONS(6505), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26562), 1, + anon_sym_COMMA, + STATE(1403), 1, + aux_sym_record_exp_repeat1, + STATE(19711), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987651] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26564), 1, + anon_sym_SEMI, + ACTIONS(26566), 1, + anon_sym_end, + STATE(1604), 1, + aux_sym_sequence_exp_repeat1, + STATE(19498), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987680] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26568), 1, + anon_sym_SEMI, + ACTIONS(26570), 1, + anon_sym_end, + STATE(1404), 1, + aux_sym_sequence_exp_repeat1, + STATE(19743), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987709] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26572), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + aux_sym_hol_atomic_type_token1, + ACTIONS(26574), 4, + anon_sym_End, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + [987726] = 9, + ACTIONS(3833), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26576), 1, + anon_sym_COMMA, + STATE(634), 1, + aux_sym_record_exp_repeat1, + STATE(21198), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987755] = 9, + ACTIONS(6275), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26578), 1, + anon_sym_COMMA, + STATE(1293), 1, + aux_sym_record_exp_repeat1, + STATE(21201), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987784] = 9, + ACTIONS(6277), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26580), 1, + anon_sym_COMMA, + STATE(1294), 1, + aux_sym_record_exp_repeat1, + STATE(21208), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987813] = 9, + ACTIONS(6279), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26582), 1, + anon_sym_SEMI, + STATE(1295), 1, + aux_sym_sequence_exp_repeat1, + STATE(21209), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987842] = 9, + ACTIONS(3835), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26584), 1, + anon_sym_COMMA, + STATE(635), 1, + aux_sym_record_exp_repeat1, + STATE(21212), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987871] = 9, + ACTIONS(6281), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26586), 1, + anon_sym_COMMA, + STATE(1296), 1, + aux_sym_record_exp_repeat1, + STATE(21213), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987900] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26588), 1, + anon_sym_SEMI, + ACTIONS(26590), 1, + anon_sym_end, + STATE(1297), 1, + aux_sym_sequence_exp_repeat1, + STATE(21215), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987929] = 3, + ACTIONS(26592), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_as, + [987946] = 9, + ACTIONS(4651), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26594), 1, + anon_sym_COMMA, + STATE(910), 1, + aux_sym_record_exp_repeat1, + STATE(19504), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [987975] = 9, + ACTIONS(8399), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26596), 1, + anon_sym_COMMA, + STATE(2273), 1, + aux_sym_record_exp_repeat1, + STATE(19509), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988004] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26598), 1, + anon_sym_SEMI, + ACTIONS(26600), 1, + anon_sym_end, + STATE(1302), 1, + aux_sym_sequence_exp_repeat1, + STATE(21221), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988033] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26602), 1, + anon_sym_SEMI, + ACTIONS(26604), 1, + anon_sym_end, + STATE(1303), 1, + aux_sym_sequence_exp_repeat1, + STATE(21222), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988062] = 9, + ACTIONS(4453), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26606), 1, + anon_sym_COMMA, + STATE(844), 1, + aux_sym_record_exp_repeat1, + STATE(21239), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988091] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26608), 1, + anon_sym_SEMI, + ACTIONS(26610), 1, + anon_sym_end, + STATE(1306), 1, + aux_sym_sequence_exp_repeat1, + STATE(21241), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988120] = 9, + ACTIONS(7833), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26612), 1, + anon_sym_COMMA, + STATE(2037), 1, + aux_sym_record_exp_repeat1, + STATE(21240), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988149] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(11351), 1, + sym_datbind, + STATE(24610), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24989), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [988176] = 8, + ACTIONS(22091), 1, + sym__primeAlphaNumeric_ident, + ACTIONS(22093), 1, + anon_sym_LPAREN, + STATE(14859), 1, + sym_datdesc, + STATE(24616), 1, + sym_tyvarseq, + STATE(24834), 1, + sym_tyvar, + STATE(24927), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [988203] = 9, + ACTIONS(7835), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26614), 1, + anon_sym_COMMA, + STATE(2038), 1, + aux_sym_record_exp_repeat1, + STATE(21243), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988232] = 9, + ACTIONS(7837), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26616), 1, + anon_sym_SEMI, + STATE(2039), 1, + aux_sym_sequence_exp_repeat1, + STATE(21244), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988261] = 9, + ACTIONS(4455), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26618), 1, + anon_sym_COMMA, + STATE(845), 1, + aux_sym_record_exp_repeat1, + STATE(21247), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988290] = 9, + ACTIONS(4031), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26620), 1, + anon_sym_COMMA, + STATE(700), 1, + aux_sym_record_exp_repeat1, + STATE(21272), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988319] = 9, + ACTIONS(7839), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26622), 1, + anon_sym_COMMA, + STATE(2040), 1, + aux_sym_record_exp_repeat1, + STATE(21250), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988348] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26624), 1, + anon_sym_SEMI, + ACTIONS(26626), 1, + anon_sym_end, + STATE(2041), 1, + aux_sym_sequence_exp_repeat1, + STATE(21252), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988377] = 9, + ACTIONS(6767), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26628), 1, + anon_sym_COMMA, + STATE(1528), 1, + aux_sym_record_exp_repeat1, + STATE(21279), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988406] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26630), 1, + anon_sym_SEMI, + ACTIONS(26632), 1, + anon_sym_end, + STATE(2046), 1, + aux_sym_sequence_exp_repeat1, + STATE(21261), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988435] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26634), 1, + anon_sym_SEMI, + ACTIONS(26636), 1, + anon_sym_end, + STATE(2047), 1, + aux_sym_sequence_exp_repeat1, + STATE(21262), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988464] = 9, + ACTIONS(6769), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26638), 1, + anon_sym_COMMA, + STATE(1529), 1, + aux_sym_record_exp_repeat1, + STATE(21287), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988493] = 9, + ACTIONS(6771), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26640), 1, + anon_sym_SEMI, + STATE(1530), 1, + aux_sym_sequence_exp_repeat1, + STATE(21288), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988522] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26642), 1, + anon_sym_SEMI, + ACTIONS(26644), 1, + anon_sym_end, + STATE(2050), 1, + aux_sym_sequence_exp_repeat1, + STATE(21266), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988551] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26646), 1, + anon_sym_SEMI, + ACTIONS(26648), 1, + anon_sym_end, + STATE(1386), 1, + aux_sym_sequence_exp_repeat1, + STATE(19600), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988580] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26650), 1, + anon_sym_SEMI, + ACTIONS(26652), 1, + anon_sym_end, + STATE(1387), 1, + aux_sym_sequence_exp_repeat1, + STATE(19687), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988609] = 9, + ACTIONS(4033), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26654), 1, + anon_sym_COMMA, + STATE(701), 1, + aux_sym_record_exp_repeat1, + STATE(21314), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988638] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 8, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [988653] = 9, + ACTIONS(6773), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26656), 1, + anon_sym_COMMA, + STATE(1531), 1, + aux_sym_record_exp_repeat1, + STATE(21325), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988682] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26658), 1, + anon_sym_SEMI, + ACTIONS(26660), 1, + anon_sym_end, + STATE(1532), 1, + aux_sym_sequence_exp_repeat1, + STATE(21327), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988711] = 9, + ACTIONS(4471), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26662), 1, + anon_sym_COMMA, + STATE(850), 1, + aux_sym_record_exp_repeat1, + STATE(21302), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988740] = 9, + ACTIONS(7877), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26664), 1, + anon_sym_COMMA, + STATE(2058), 1, + aux_sym_record_exp_repeat1, + STATE(21303), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988769] = 9, + ACTIONS(3851), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26666), 1, + anon_sym_COMMA, + STATE(640), 1, + aux_sym_record_exp_repeat1, + STATE(21311), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988798] = 9, + ACTIONS(7879), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26668), 1, + anon_sym_COMMA, + STATE(2059), 1, + aux_sym_record_exp_repeat1, + STATE(21309), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988827] = 9, + ACTIONS(7881), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26670), 1, + anon_sym_SEMI, + STATE(2060), 1, + aux_sym_sequence_exp_repeat1, + STATE(21310), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988856] = 9, + ACTIONS(6319), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26672), 1, + anon_sym_COMMA, + STATE(1314), 1, + aux_sym_record_exp_repeat1, + STATE(21312), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988885] = 9, + ACTIONS(6321), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26674), 1, + anon_sym_COMMA, + STATE(1315), 1, + aux_sym_record_exp_repeat1, + STATE(21330), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988914] = 9, + ACTIONS(6323), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26676), 1, + anon_sym_SEMI, + STATE(1316), 1, + aux_sym_sequence_exp_repeat1, + STATE(21340), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988943] = 9, + ACTIONS(4473), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26678), 1, + anon_sym_COMMA, + STATE(851), 1, + aux_sym_record_exp_repeat1, + STATE(21319), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [988972] = 9, + ACTIONS(7883), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26680), 1, + anon_sym_COMMA, + STATE(2061), 1, + aux_sym_record_exp_repeat1, + STATE(21320), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989001] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26682), 1, + anon_sym_SEMI, + ACTIONS(26684), 1, + anon_sym_end, + STATE(2062), 1, + aux_sym_sequence_exp_repeat1, + STATE(21322), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989030] = 9, + ACTIONS(3853), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26686), 1, + anon_sym_COMMA, + STATE(641), 1, + aux_sym_record_exp_repeat1, + STATE(21352), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989059] = 9, + ACTIONS(6325), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26688), 1, + anon_sym_COMMA, + STATE(1317), 1, + aux_sym_record_exp_repeat1, + STATE(21357), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989088] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26690), 1, + anon_sym_SEMI, + ACTIONS(26692), 1, + anon_sym_end, + STATE(1318), 1, + aux_sym_sequence_exp_repeat1, + STATE(21359), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989117] = 9, + ACTIONS(8401), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26694), 1, + anon_sym_COMMA, + STATE(2274), 1, + aux_sym_record_exp_repeat1, + STATE(19517), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989146] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26696), 1, + anon_sym_SEMI, + ACTIONS(26698), 1, + anon_sym_end, + STATE(2067), 1, + aux_sym_sequence_exp_repeat1, + STATE(21332), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989175] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26700), 1, + anon_sym_SEMI, + ACTIONS(26702), 1, + anon_sym_end, + STATE(2068), 1, + aux_sym_sequence_exp_repeat1, + STATE(21334), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989204] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26704), 1, + anon_sym_SEMI, + ACTIONS(26706), 1, + anon_sym_end, + STATE(1537), 1, + aux_sym_sequence_exp_repeat1, + STATE(21354), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989233] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26708), 1, + anon_sym_SEMI, + ACTIONS(26710), 1, + anon_sym_end, + STATE(1538), 1, + aux_sym_sequence_exp_repeat1, + STATE(21358), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989262] = 9, + ACTIONS(3579), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26712), 1, + anon_sym_COMMA, + STATE(536), 1, + aux_sym_record_exp_repeat1, + STATE(19960), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989291] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26714), 1, + anon_sym_SEMI, + ACTIONS(26716), 1, + anon_sym_end, + STATE(2071), 1, + aux_sym_sequence_exp_repeat1, + STATE(21337), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989320] = 4, + ACTIONS(25002), 1, + anon_sym_PIPE, + STATE(16999), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 6, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [989339] = 9, + ACTIONS(8403), 1, + anon_sym_RPAREN, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26718), 1, + anon_sym_SEMI, + STATE(2275), 1, + aux_sym_sequence_exp_repeat1, + STATE(19520), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989368] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26720), 1, + anon_sym_SEMI, + ACTIONS(26722), 1, + anon_sym_end, + STATE(1541), 1, + aux_sym_sequence_exp_repeat1, + STATE(20088), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989397] = 9, + ACTIONS(4489), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26724), 1, + anon_sym_COMMA, + STATE(856), 1, + aux_sym_record_exp_repeat1, + STATE(19370), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989426] = 9, + ACTIONS(7921), 1, + anon_sym_RBRACK, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(26726), 1, + anon_sym_COMMA, + STATE(2079), 1, + aux_sym_record_exp_repeat1, + STATE(19551), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989455] = 9, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26728), 1, + anon_sym_SEMI, + ACTIONS(26730), 1, + anon_sym_end, + STATE(1826), 1, + aux_sym_sequence_exp_repeat1, + STATE(20239), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989484] = 7, + ACTIONS(26732), 1, + anon_sym_op, + ACTIONS(26734), 1, + anon_sym_PIPE, + STATE(11345), 1, + sym__conbind, + STATE(18743), 1, + sym_conbind, + STATE(19234), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16540), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [989508] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [989522] = 6, + ACTIONS(26736), 1, + anon_sym_COLON, + ACTIONS(26738), 1, + anon_sym_andalso, + ACTIONS(26740), 1, + anon_sym_orelse, + ACTIONS(26742), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 3, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + [989544] = 6, + ACTIONS(26736), 1, + anon_sym_COLON, + ACTIONS(26738), 1, + anon_sym_andalso, + ACTIONS(26740), 1, + anon_sym_orelse, + ACTIONS(26742), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 3, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + [989566] = 7, + ACTIONS(25664), 1, + anon_sym_handle, + ACTIONS(26744), 1, + anon_sym_COLON, + ACTIONS(26746), 1, + anon_sym_andalso, + ACTIONS(26748), 1, + anon_sym_orelse, + ACTIONS(26750), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + [989590] = 6, + ACTIONS(26752), 1, + anon_sym_COLON, + ACTIONS(26754), 1, + anon_sym_andalso, + ACTIONS(26756), 1, + anon_sym_orelse, + ACTIONS(26758), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 3, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [989612] = 3, + ACTIONS(15609), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [989628] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [989644] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 5, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [989660] = 7, + ACTIONS(25652), 1, + anon_sym_op, + ACTIONS(25654), 1, + anon_sym_PIPE, + STATE(13366), 1, + sym_conbind, + STATE(13395), 1, + sym__conbind, + STATE(13462), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [989684] = 3, + ACTIONS(26760), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_DASH_GT, + [989700] = 7, + ACTIONS(25652), 1, + anon_sym_op, + ACTIONS(25654), 1, + anon_sym_PIPE, + STATE(13366), 1, + sym_conbind, + STATE(13396), 1, + sym__conbind, + STATE(13462), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [989724] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [989738] = 3, + ACTIONS(15697), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [989754] = 8, + ACTIONS(14705), 1, + anon_sym_RBRACK, + ACTIONS(26762), 1, + anon_sym_COMMA, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + STATE(5886), 1, + aux_sym_record_exp_repeat1, + STATE(20936), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989780] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15581), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [989796] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15629), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [989812] = 4, + ACTIONS(26770), 1, + anon_sym_PIPE, + STATE(17720), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + [989830] = 4, + ACTIONS(26770), 1, + anon_sym_PIPE, + STATE(17720), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + [989848] = 4, + ACTIONS(26772), 1, + anon_sym_PIPE, + STATE(17720), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + [989866] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15523), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15525), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [989882] = 4, + ACTIONS(26775), 1, + anon_sym_COMMA, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16575), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + [989900] = 8, + ACTIONS(14775), 1, + anon_sym_RBRACK, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26778), 1, + anon_sym_COMMA, + STATE(5972), 1, + aux_sym_record_exp_repeat1, + STATE(20434), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989926] = 8, + ACTIONS(14967), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26780), 1, + anon_sym_COMMA, + STATE(7507), 1, + aux_sym_record_exp_repeat1, + STATE(20319), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [989952] = 6, + ACTIONS(20453), 1, + anon_sym_COMMA, + STATE(17722), 1, + aux_sym_record_exp_repeat1, + STATE(24774), 1, + sym_tyrow, + STATE(25022), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20455), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [989974] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(474), 3, + anon_sym_LPAREN, + anon_sym_PIPE, + aux_sym_hol_atomic_type_token1, + ACTIONS(476), 4, + anon_sym_End, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + [989990] = 6, + ACTIONS(25857), 1, + anon_sym_handle, + ACTIONS(26782), 1, + anon_sym_COLON, + ACTIONS(26784), 1, + anon_sym_andalso, + ACTIONS(26786), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 3, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [990012] = 6, + ACTIONS(25857), 1, + anon_sym_handle, + ACTIONS(26782), 1, + anon_sym_COLON, + ACTIONS(26784), 1, + anon_sym_andalso, + ACTIONS(26786), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 3, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [990034] = 8, + ACTIONS(14935), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26788), 1, + anon_sym_COMMA, + STATE(7508), 1, + aux_sym_record_exp_repeat1, + STATE(20486), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [990060] = 3, + ACTIONS(26790), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_DASH_GT, + [990076] = 6, + ACTIONS(25560), 1, + anon_sym_handle, + ACTIONS(26792), 1, + anon_sym_COLON, + ACTIONS(26794), 1, + anon_sym_andalso, + ACTIONS(26796), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 3, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [990098] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(24757), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [990120] = 7, + ACTIONS(26466), 1, + anon_sym_op, + ACTIONS(26468), 1, + anon_sym_PIPE, + STATE(10610), 1, + sym_vid, + STATE(10691), 1, + sym_conbind, + STATE(11345), 1, + sym__conbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16540), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [990144] = 7, + ACTIONS(26732), 1, + anon_sym_op, + ACTIONS(26734), 1, + anon_sym_PIPE, + STATE(11467), 1, + sym__conbind, + STATE(18743), 1, + sym_conbind, + STATE(19234), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16540), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [990168] = 3, + ACTIONS(15733), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [990184] = 7, + ACTIONS(26802), 1, + anon_sym_PIPE, + ACTIONS(26804), 1, + anon_sym_datatype, + STATE(14321), 1, + sym_vid, + STATE(14336), 1, + sym_condesc, + STATE(14851), 1, + sym__condesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16540), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [990208] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15601), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [990224] = 7, + ACTIONS(26804), 1, + anon_sym_datatype, + ACTIONS(26806), 1, + anon_sym_PIPE, + STATE(14324), 1, + sym_vid, + STATE(14365), 1, + sym_condesc, + STATE(14851), 1, + sym__condesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16540), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [990248] = 8, + ACTIONS(14981), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26808), 1, + anon_sym_COMMA, + STATE(7991), 1, + aux_sym_record_exp_repeat1, + STATE(20565), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [990274] = 8, + ACTIONS(14879), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26810), 1, + anon_sym_COMMA, + STATE(7650), 1, + aux_sym_record_exp_repeat1, + STATE(20950), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [990300] = 6, + ACTIONS(26812), 1, + anon_sym_COLON, + ACTIONS(26814), 1, + anon_sym_andalso, + ACTIONS(26816), 1, + anon_sym_orelse, + ACTIONS(26818), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 3, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [990322] = 6, + ACTIONS(26812), 1, + anon_sym_COLON, + ACTIONS(26814), 1, + anon_sym_andalso, + ACTIONS(26816), 1, + anon_sym_orelse, + ACTIONS(26818), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 3, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [990344] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(24809), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [990366] = 7, + ACTIONS(25560), 1, + anon_sym_handle, + ACTIONS(26792), 1, + anon_sym_COLON, + ACTIONS(26794), 1, + anon_sym_andalso, + ACTIONS(26796), 1, + anon_sym_orelse, + ACTIONS(26820), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + anon_sym_SEMI, + anon_sym_end, + [990390] = 6, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26822), 1, + anon_sym_COLON, + ACTIONS(26824), 1, + anon_sym_andalso, + ACTIONS(26826), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 3, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + [990412] = 4, + ACTIONS(26828), 1, + anon_sym_STAR, + STATE(17746), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + [990430] = 8, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26831), 1, + anon_sym_COMMA, + ACTIONS(26833), 1, + anon_sym_RPAREN, + STATE(7964), 1, + aux_sym_record_exp_repeat1, + STATE(20260), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [990456] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [990470] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(24745), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [990492] = 3, + ACTIONS(26835), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 6, + ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [990508] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [990522] = 8, + ACTIONS(14767), 1, + anon_sym_RBRACK, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26837), 1, + anon_sym_COMMA, + STATE(6543), 1, + aux_sym_record_exp_repeat1, + STATE(20493), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [990548] = 3, + ACTIONS(15705), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [990564] = 8, + ACTIONS(14743), 1, + anon_sym_RBRACK, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26839), 1, + anon_sym_COMMA, + STATE(5935), 1, + aux_sym_record_exp_repeat1, + STATE(20578), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [990590] = 4, + ACTIONS(26841), 1, + anon_sym_PIPE, + STATE(17828), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + [990608] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [990622] = 4, + ACTIONS(26841), 1, + anon_sym_PIPE, + STATE(17831), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + [990640] = 6, + ACTIONS(22950), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + STATE(17638), 1, + sym_hol_atomic_type, + STATE(25056), 1, + sym__hol_ty_spec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + [990662] = 8, + ACTIONS(14983), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26843), 1, + anon_sym_COMMA, + STATE(7992), 1, + aux_sym_record_exp_repeat1, + STATE(20582), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [990688] = 6, + ACTIONS(25885), 1, + anon_sym_handle, + ACTIONS(26845), 1, + anon_sym_COLON, + ACTIONS(26847), 1, + anon_sym_andalso, + ACTIONS(26849), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 3, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [990710] = 6, + ACTIONS(25885), 1, + anon_sym_handle, + ACTIONS(26845), 1, + anon_sym_COLON, + ACTIONS(26847), 1, + anon_sym_andalso, + ACTIONS(26849), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 3, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [990732] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [990746] = 8, + ACTIONS(14837), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26851), 1, + anon_sym_COMMA, + STATE(7947), 1, + aux_sym_record_exp_repeat1, + STATE(20512), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [990772] = 3, + ACTIONS(26853), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + [990788] = 8, + ACTIONS(14881), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26855), 1, + anon_sym_COMMA, + STATE(7654), 1, + aux_sym_record_exp_repeat1, + STATE(21040), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [990814] = 6, + ACTIONS(22950), 1, + anon_sym_LPAREN, + ACTIONS(23974), 1, + aux_sym_hol_atomic_type_token1, + STATE(17638), 1, + sym_hol_atomic_type, + STATE(25044), 1, + sym__hol_ty_spec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(23972), 3, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + [990836] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15609), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [990852] = 6, + ACTIONS(26752), 1, + anon_sym_COLON, + ACTIONS(26754), 1, + anon_sym_andalso, + ACTIONS(26756), 1, + anon_sym_orelse, + ACTIONS(26758), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 3, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [990874] = 6, + ACTIONS(26752), 1, + anon_sym_COLON, + ACTIONS(26754), 1, + anon_sym_andalso, + ACTIONS(26756), 1, + anon_sym_orelse, + ACTIONS(26758), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 3, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [990896] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [990910] = 3, + ACTIONS(26857), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 6, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + [990926] = 3, + ACTIONS(15593), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [990942] = 4, + ACTIONS(26859), 1, + anon_sym_PIPE, + STATE(17865), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + [990960] = 4, + ACTIONS(26859), 1, + anon_sym_PIPE, + STATE(17872), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + [990978] = 3, + ACTIONS(15523), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [990994] = 5, + ACTIONS(15960), 1, + anon_sym_with, + ACTIONS(26861), 1, + anon_sym_STAR, + STATE(17777), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 4, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_DASH_GT, + [991014] = 5, + ACTIONS(14007), 1, + anon_sym_with, + ACTIONS(26863), 1, + anon_sym_STAR, + STATE(17777), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 4, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_DASH_GT, + [991034] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [991048] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15733), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [991064] = 3, + ACTIONS(26866), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 6, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + [991080] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15559), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [991096] = 7, + ACTIONS(25534), 1, + anon_sym_op, + ACTIONS(25536), 1, + anon_sym_PIPE, + STATE(13326), 1, + sym_conbind, + STATE(13395), 1, + sym__conbind, + STATE(13397), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [991120] = 7, + ACTIONS(25534), 1, + anon_sym_op, + ACTIONS(25536), 1, + anon_sym_PIPE, + STATE(13326), 1, + sym_conbind, + STATE(13396), 1, + sym__conbind, + STATE(13397), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [991144] = 8, + ACTIONS(14921), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26868), 1, + anon_sym_COMMA, + STATE(7944), 1, + aux_sym_record_exp_repeat1, + STATE(19619), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [991170] = 7, + ACTIONS(24621), 1, + anon_sym_op, + ACTIONS(24623), 1, + anon_sym_PIPE, + STATE(13395), 1, + sym__conbind, + STATE(13548), 1, + sym_vid, + STATE(13549), 1, + sym_conbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [991194] = 3, + ACTIONS(26870), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + [991210] = 8, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26872), 1, + anon_sym_COMMA, + ACTIONS(26874), 1, + anon_sym_RPAREN, + STATE(7952), 1, + aux_sym_record_exp_repeat1, + STATE(20192), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [991236] = 7, + ACTIONS(26466), 1, + anon_sym_op, + ACTIONS(26468), 1, + anon_sym_PIPE, + STATE(10610), 1, + sym_vid, + STATE(10691), 1, + sym_conbind, + STATE(11467), 1, + sym__conbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16540), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [991260] = 8, + ACTIONS(26876), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(26880), 1, + anon_sym_op, + STATE(13551), 1, + sym_longvid, + STATE(13579), 1, + sym_vid, + STATE(18887), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [991286] = 5, + ACTIONS(15531), 1, + sym__symbolic_ident, + ACTIONS(26882), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15533), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15529), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [991306] = 3, + ACTIONS(26884), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 6, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + [991322] = 3, + ACTIONS(26736), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 6, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + [991338] = 3, + ACTIONS(26886), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + [991354] = 7, + ACTIONS(26736), 1, + anon_sym_COLON, + ACTIONS(26738), 1, + anon_sym_andalso, + ACTIONS(26740), 1, + anon_sym_orelse, + ACTIONS(26742), 1, + anon_sym_handle, + ACTIONS(26888), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + anon_sym_of, + anon_sym_PIPE, + [991378] = 5, + ACTIONS(15569), 1, + sym__symbolic_ident, + ACTIONS(26890), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15571), 2, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15567), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [991398] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15573), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [991414] = 8, + ACTIONS(14729), 1, + anon_sym_RBRACK, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26892), 1, + anon_sym_COMMA, + STATE(5927), 1, + aux_sym_record_exp_repeat1, + STATE(20196), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [991440] = 6, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26822), 1, + anon_sym_COLON, + ACTIONS(26824), 1, + anon_sym_andalso, + ACTIONS(26826), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 3, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + [991462] = 4, + ACTIONS(15529), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 4, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [991480] = 6, + ACTIONS(25560), 1, + anon_sym_handle, + ACTIONS(26792), 1, + anon_sym_COLON, + ACTIONS(26794), 1, + anon_sym_andalso, + ACTIONS(26796), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 3, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [991502] = 6, + ACTIONS(25560), 1, + anon_sym_handle, + ACTIONS(26792), 1, + anon_sym_COLON, + ACTIONS(26794), 1, + anon_sym_andalso, + ACTIONS(26796), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 3, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [991524] = 6, + ACTIONS(25664), 1, + anon_sym_handle, + ACTIONS(26744), 1, + anon_sym_COLON, + ACTIONS(26746), 1, + anon_sym_andalso, + ACTIONS(26748), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + [991546] = 4, + ACTIONS(26770), 1, + anon_sym_PIPE, + STATE(17718), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16590), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + [991564] = 4, + ACTIONS(26770), 1, + anon_sym_PIPE, + STATE(17719), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + [991582] = 8, + ACTIONS(14947), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26894), 1, + anon_sym_COMMA, + STATE(7953), 1, + aux_sym_record_exp_repeat1, + STATE(20197), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [991608] = 6, + ACTIONS(26857), 1, + anon_sym_COLON, + ACTIONS(26896), 1, + anon_sym_andalso, + ACTIONS(26898), 1, + anon_sym_orelse, + ACTIONS(26900), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 3, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + [991630] = 7, + ACTIONS(26857), 1, + anon_sym_COLON, + ACTIONS(26896), 1, + anon_sym_andalso, + ACTIONS(26898), 1, + anon_sym_orelse, + ACTIONS(26900), 1, + anon_sym_handle, + ACTIONS(26902), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + anon_sym_then, + anon_sym_PIPE, + [991654] = 7, + ACTIONS(26866), 1, + anon_sym_COLON, + ACTIONS(26904), 1, + anon_sym_andalso, + ACTIONS(26906), 1, + anon_sym_orelse, + ACTIONS(26908), 1, + anon_sym_handle, + ACTIONS(26910), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + anon_sym_do, + anon_sym_PIPE, + [991678] = 4, + ACTIONS(26912), 1, + anon_sym_STAR, + STATE(17964), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + [991696] = 6, + ACTIONS(26884), 1, + anon_sym_COLON, + ACTIONS(26914), 1, + anon_sym_andalso, + ACTIONS(26916), 1, + anon_sym_orelse, + ACTIONS(26918), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PIPE, + [991718] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(24828), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [991740] = 6, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26822), 1, + anon_sym_COLON, + ACTIONS(26824), 1, + anon_sym_andalso, + ACTIONS(26826), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 3, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + [991762] = 6, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(26822), 1, + anon_sym_COLON, + ACTIONS(26824), 1, + anon_sym_andalso, + ACTIONS(26826), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 3, + anon_sym_SEMI, + anon_sym_end, + anon_sym_PIPE, + [991784] = 3, + ACTIONS(15629), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [991800] = 5, + ACTIONS(26920), 1, + anon_sym_CARET, + ACTIONS(26923), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26926), 2, + anon_sym_u2019, + anon_sym_BQUOTE, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [991820] = 3, + ACTIONS(26744), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 6, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [991836] = 6, + ACTIONS(26866), 1, + anon_sym_COLON, + ACTIONS(26904), 1, + anon_sym_andalso, + ACTIONS(26906), 1, + anon_sym_orelse, + ACTIONS(26908), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 3, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + [991858] = 3, + ACTIONS(26782), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 6, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [991874] = 7, + ACTIONS(26866), 1, + anon_sym_COLON, + ACTIONS(26904), 1, + anon_sym_andalso, + ACTIONS(26906), 1, + anon_sym_orelse, + ACTIONS(26908), 1, + anon_sym_handle, + ACTIONS(26928), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + anon_sym_do, + anon_sym_PIPE, + [991898] = 4, + ACTIONS(26744), 1, + anon_sym_COLON, + ACTIONS(26746), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [991916] = 3, + ACTIONS(26812), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 6, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [991932] = 7, + ACTIONS(25664), 1, + anon_sym_handle, + ACTIONS(26744), 1, + anon_sym_COLON, + ACTIONS(26746), 1, + anon_sym_andalso, + ACTIONS(26748), 1, + anon_sym_orelse, + ACTIONS(26930), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + [991956] = 6, + ACTIONS(25664), 1, + anon_sym_handle, + ACTIONS(26744), 1, + anon_sym_COLON, + ACTIONS(26746), 1, + anon_sym_andalso, + ACTIONS(26748), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + [991978] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(379), 3, + anon_sym_LPAREN, + anon_sym_PIPE, + aux_sym_hol_atomic_type_token1, + ACTIONS(381), 4, + anon_sym_End, + sym__hol_alphanumeric, + anon_sym_num, + anon_sym_string, + [991994] = 6, + ACTIONS(25664), 1, + anon_sym_handle, + ACTIONS(26744), 1, + anon_sym_COLON, + ACTIONS(26746), 1, + anon_sym_andalso, + ACTIONS(26748), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_else, + [992016] = 6, + ACTIONS(26857), 1, + anon_sym_COLON, + ACTIONS(26896), 1, + anon_sym_andalso, + ACTIONS(26898), 1, + anon_sym_orelse, + ACTIONS(26900), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 3, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + [992038] = 3, + ACTIONS(26845), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 6, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [992054] = 4, + ACTIONS(26841), 1, + anon_sym_PIPE, + STATE(17836), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + [992072] = 8, + ACTIONS(14719), 1, + anon_sym_RBRACK, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26932), 1, + anon_sym_COMMA, + STATE(5909), 1, + aux_sym_record_exp_repeat1, + STATE(19626), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [992098] = 4, + ACTIONS(26934), 1, + anon_sym_STAR, + STATE(17883), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 5, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + [992116] = 4, + ACTIONS(26841), 1, + anon_sym_PIPE, + STATE(17836), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + [992134] = 3, + ACTIONS(26752), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 6, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [992150] = 4, + ACTIONS(26934), 1, + anon_sym_STAR, + STATE(17830), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 5, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + [992168] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(24760), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [992190] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(12094), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [992212] = 4, + ACTIONS(26936), 1, + anon_sym_PIPE, + STATE(17836), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + [992230] = 3, + ACTIONS(26939), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_DASH_GT, + [992246] = 6, + ACTIONS(26866), 1, + anon_sym_COLON, + ACTIONS(26904), 1, + anon_sym_andalso, + ACTIONS(26906), 1, + anon_sym_orelse, + ACTIONS(26908), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 3, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + [992268] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15625), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [992284] = 8, + ACTIONS(14707), 1, + anon_sym_RBRACK, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26941), 1, + anon_sym_COMMA, + STATE(5888), 1, + aux_sym_record_exp_repeat1, + STATE(21053), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [992310] = 8, + ACTIONS(16538), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26943), 1, + sym__symbolic_ident, + ACTIONS(26945), 1, + anon_sym_op, + STATE(11435), 1, + sym_vid, + STATE(12857), 1, + sym_longvid, + STATE(19175), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [992336] = 7, + ACTIONS(25584), 1, + anon_sym_op, + ACTIONS(25586), 1, + anon_sym_PIPE, + STATE(13341), 1, + sym_conbind, + STATE(13395), 1, + sym__conbind, + STATE(13476), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [992360] = 3, + ACTIONS(26947), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [992376] = 7, + ACTIONS(25584), 1, + anon_sym_op, + ACTIONS(25586), 1, + anon_sym_PIPE, + STATE(13341), 1, + sym_conbind, + STATE(13396), 1, + sym__conbind, + STATE(13476), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [992400] = 6, + ACTIONS(26736), 1, + anon_sym_COLON, + ACTIONS(26738), 1, + anon_sym_andalso, + ACTIONS(26740), 1, + anon_sym_orelse, + ACTIONS(26742), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 3, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + [992422] = 7, + ACTIONS(26736), 1, + anon_sym_COLON, + ACTIONS(26738), 1, + anon_sym_andalso, + ACTIONS(26740), 1, + anon_sym_orelse, + ACTIONS(26742), 1, + anon_sym_handle, + ACTIONS(26949), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + anon_sym_of, + anon_sym_PIPE, + [992446] = 3, + ACTIONS(26951), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + [992462] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(15099), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [992484] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [992498] = 3, + ACTIONS(15713), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [992514] = 7, + ACTIONS(25857), 1, + anon_sym_handle, + ACTIONS(26782), 1, + anon_sym_COLON, + ACTIONS(26784), 1, + anon_sym_andalso, + ACTIONS(26786), 1, + anon_sym_orelse, + ACTIONS(26953), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [992538] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15697), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15699), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [992554] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15713), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15715), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [992570] = 4, + ACTIONS(26857), 1, + anon_sym_COLON, + ACTIONS(26896), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 5, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + [992588] = 8, + ACTIONS(14883), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26955), 1, + anon_sym_COMMA, + STATE(7900), 1, + aux_sym_record_exp_repeat1, + STATE(21057), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [992614] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15705), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15707), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [992630] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15529), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 3, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [992648] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15621), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [992664] = 8, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26957), 1, + anon_sym_COMMA, + ACTIONS(26959), 1, + anon_sym_RPAREN, + STATE(7649), 1, + aux_sym_record_exp_repeat1, + STATE(20892), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [992690] = 4, + ACTIONS(26884), 1, + anon_sym_COLON, + ACTIONS(26914), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + [992708] = 4, + ACTIONS(26866), 1, + anon_sym_COLON, + ACTIONS(26904), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 5, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + [992726] = 8, + ACTIONS(14949), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26961), 1, + anon_sym_COMMA, + STATE(7954), 1, + aux_sym_record_exp_repeat1, + STATE(20236), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [992752] = 6, + ACTIONS(26884), 1, + anon_sym_COLON, + ACTIONS(26914), 1, + anon_sym_andalso, + ACTIONS(26916), 1, + anon_sym_orelse, + ACTIONS(26918), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PIPE, + [992774] = 6, + ACTIONS(26884), 1, + anon_sym_COLON, + ACTIONS(26914), 1, + anon_sym_andalso, + ACTIONS(26916), 1, + anon_sym_orelse, + ACTIONS(26918), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PIPE, + [992796] = 4, + ACTIONS(26859), 1, + anon_sym_PIPE, + STATE(17875), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16556), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + [992814] = 6, + ACTIONS(26884), 1, + anon_sym_COLON, + ACTIONS(26914), 1, + anon_sym_andalso, + ACTIONS(26916), 1, + anon_sym_orelse, + ACTIONS(26918), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 3, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_PIPE, + [992836] = 4, + ACTIONS(16507), 1, + anon_sym_COLON, + ACTIONS(26963), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 5, + anon_sym_end, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_where, + [992854] = 4, + ACTIONS(26736), 1, + anon_sym_COLON, + ACTIONS(26738), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 5, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + [992872] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [992886] = 4, + ACTIONS(26792), 1, + anon_sym_COLON, + ACTIONS(26794), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 5, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [992904] = 3, + ACTIONS(15625), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [992920] = 4, + ACTIONS(26859), 1, + anon_sym_PIPE, + STATE(17875), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16562), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + [992938] = 8, + ACTIONS(16538), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26943), 1, + sym__symbolic_ident, + ACTIONS(26965), 1, + anon_sym_op, + STATE(11435), 1, + sym_vid, + STATE(12880), 1, + sym_longvid, + STATE(19175), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [992964] = 3, + ACTIONS(26967), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [992980] = 4, + ACTIONS(26969), 1, + anon_sym_PIPE, + STATE(17875), 1, + aux_sym__match_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14793), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + [992998] = 3, + ACTIONS(26972), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 6, + anon_sym_COLON, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [993014] = 6, + ACTIONS(26736), 1, + anon_sym_COLON, + ACTIONS(26738), 1, + anon_sym_andalso, + ACTIONS(26740), 1, + anon_sym_orelse, + ACTIONS(26742), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 3, + anon_sym_else, + anon_sym_of, + anon_sym_PIPE, + [993036] = 8, + ACTIONS(14731), 1, + anon_sym_RBRACK, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26974), 1, + anon_sym_COMMA, + STATE(5928), 1, + aux_sym_record_exp_repeat1, + STATE(20240), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [993062] = 8, + ACTIONS(14951), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26976), 1, + anon_sym_COMMA, + STATE(7955), 1, + aux_sym_record_exp_repeat1, + STATE(20242), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [993088] = 4, + ACTIONS(16507), 1, + anon_sym_COLON, + ACTIONS(26978), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 5, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_COLON_GT, + anon_sym_where, + [993106] = 4, + ACTIONS(26822), 1, + anon_sym_COLON, + ACTIONS(26824), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 5, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + [993124] = 3, + ACTIONS(15559), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [993140] = 4, + ACTIONS(26980), 1, + anon_sym_STAR, + STATE(17883), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 5, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + [993158] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [993172] = 7, + ACTIONS(24621), 1, + anon_sym_op, + ACTIONS(24623), 1, + anon_sym_PIPE, + STATE(13396), 1, + sym__conbind, + STATE(13548), 1, + sym_vid, + STATE(13549), 1, + sym_conbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [993196] = 6, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26983), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [993218] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15697), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [993234] = 8, + ACTIONS(26876), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(26985), 1, + anon_sym_op, + STATE(13574), 1, + sym_longvid, + STATE(13579), 1, + sym_vid, + STATE(18887), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [993260] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15713), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [993276] = 7, + ACTIONS(25614), 1, + anon_sym_op, + ACTIONS(25616), 1, + anon_sym_PIPE, + STATE(13395), 1, + sym__conbind, + STATE(13607), 1, + sym_vid, + STATE(13623), 1, + sym_conbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [993300] = 7, + ACTIONS(25614), 1, + anon_sym_op, + ACTIONS(25616), 1, + anon_sym_PIPE, + STATE(13396), 1, + sym__conbind, + STATE(13607), 1, + sym_vid, + STATE(13623), 1, + sym_conbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(24619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [993324] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15593), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [993340] = 8, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26987), 1, + anon_sym_COMMA, + ACTIONS(26989), 1, + anon_sym_RPAREN, + STATE(8138), 1, + aux_sym_record_exp_repeat1, + STATE(20776), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [993366] = 6, + ACTIONS(26991), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26993), 1, + anon_sym_sig, + STATE(12828), 1, + sym_sigid, + STATE(13489), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12829), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [993388] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [993402] = 8, + ACTIONS(14753), 1, + anon_sym_RBRACK, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26995), 1, + anon_sym_COMMA, + STATE(5941), 1, + aux_sym_record_exp_repeat1, + STATE(20781), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [993428] = 8, + ACTIONS(15081), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(26997), 1, + anon_sym_COMMA, + STATE(8140), 1, + aux_sym_record_exp_repeat1, + STATE(20785), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [993454] = 4, + ACTIONS(26782), 1, + anon_sym_COLON, + ACTIONS(26784), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 5, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [993472] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15733), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15735), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [993488] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15559), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15561), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [993504] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15705), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [993520] = 4, + ACTIONS(26812), 1, + anon_sym_COLON, + ACTIONS(26814), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 5, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [993538] = 3, + ACTIONS(15601), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [993554] = 4, + ACTIONS(26845), 1, + anon_sym_COLON, + ACTIONS(26847), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 5, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [993572] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15625), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15627), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [993588] = 6, + ACTIONS(26800), 1, + anon_sym_sig, + ACTIONS(26999), 1, + sym__alphaAlphaNumeric_ident, + STATE(14367), 1, + sym_sigid, + STATE(15451), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [993610] = 4, + ACTIONS(26752), 1, + anon_sym_COLON, + ACTIONS(26754), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 5, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [993628] = 3, + ACTIONS(26792), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 6, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + [993644] = 6, + ACTIONS(25857), 1, + anon_sym_handle, + ACTIONS(26782), 1, + anon_sym_COLON, + ACTIONS(26784), 1, + anon_sym_andalso, + ACTIONS(26786), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 3, + anon_sym_else, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [993666] = 7, + ACTIONS(25857), 1, + anon_sym_handle, + ACTIONS(26782), 1, + anon_sym_COLON, + ACTIONS(26784), 1, + anon_sym_andalso, + ACTIONS(26786), 1, + anon_sym_orelse, + ACTIONS(27001), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [993690] = 4, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27003), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + [993708] = 4, + ACTIONS(15567), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 4, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [993726] = 3, + ACTIONS(15573), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [993742] = 8, + ACTIONS(15099), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(27005), 1, + anon_sym_COMMA, + STATE(8146), 1, + aux_sym_record_exp_repeat1, + STATE(20799), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [993768] = 6, + ACTIONS(26812), 1, + anon_sym_COLON, + ACTIONS(26814), 1, + anon_sym_andalso, + ACTIONS(26816), 1, + anon_sym_orelse, + ACTIONS(26818), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 3, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [993790] = 4, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27007), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + [993808] = 6, + ACTIONS(26800), 1, + anon_sym_sig, + ACTIONS(27009), 1, + sym__alphaAlphaNumeric_ident, + STATE(14381), 1, + sym_sigid, + STATE(15363), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [993830] = 3, + ACTIONS(27011), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + [993846] = 8, + ACTIONS(14755), 1, + anon_sym_RBRACK, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(27013), 1, + anon_sym_COMMA, + STATE(5942), 1, + aux_sym_record_exp_repeat1, + STATE(20803), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [993872] = 8, + ACTIONS(15101), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(27015), 1, + anon_sym_COMMA, + STATE(8151), 1, + aux_sym_record_exp_repeat1, + STATE(20806), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [993898] = 5, + ACTIONS(15934), 1, + anon_sym_with, + ACTIONS(26861), 1, + anon_sym_STAR, + STATE(17776), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 4, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_DASH_GT, + [993918] = 7, + ACTIONS(25560), 1, + anon_sym_handle, + ACTIONS(26792), 1, + anon_sym_COLON, + ACTIONS(26794), 1, + anon_sym_andalso, + ACTIONS(26796), 1, + anon_sym_orelse, + ACTIONS(27017), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + anon_sym_SEMI, + anon_sym_end, + [993942] = 6, + ACTIONS(26857), 1, + anon_sym_COLON, + ACTIONS(26896), 1, + anon_sym_andalso, + ACTIONS(26898), 1, + anon_sym_orelse, + ACTIONS(26900), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 3, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + [993964] = 6, + ACTIONS(26857), 1, + anon_sym_COLON, + ACTIONS(26896), 1, + anon_sym_andalso, + ACTIONS(26898), 1, + anon_sym_orelse, + ACTIONS(26900), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 3, + anon_sym_then, + anon_sym_else, + anon_sym_PIPE, + [993986] = 3, + ACTIONS(26822), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 6, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_PIPE, + [994002] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15567), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 3, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [994020] = 7, + ACTIONS(26857), 1, + anon_sym_COLON, + ACTIONS(26896), 1, + anon_sym_andalso, + ACTIONS(26898), 1, + anon_sym_orelse, + ACTIONS(26900), 1, + anon_sym_handle, + ACTIONS(27019), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + anon_sym_then, + anon_sym_PIPE, + [994044] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15623), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [994060] = 7, + ACTIONS(25885), 1, + anon_sym_handle, + ACTIONS(26845), 1, + anon_sym_COLON, + ACTIONS(26847), 1, + anon_sym_andalso, + ACTIONS(26849), 1, + anon_sym_orelse, + ACTIONS(27021), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [994084] = 6, + ACTIONS(26812), 1, + anon_sym_COLON, + ACTIONS(26814), 1, + anon_sym_andalso, + ACTIONS(26816), 1, + anon_sym_orelse, + ACTIONS(26818), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 3, + anon_sym_PIPE, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [994106] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15573), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15575), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [994122] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 3, + sym__symbolic_ident, + anon_sym_DASH_GT, + anon_sym_STAR, + ACTIONS(15523), 4, + sym__alphaAlphaNumeric_ident, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [994138] = 8, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(27023), 1, + anon_sym_COMMA, + ACTIONS(27025), 1, + anon_sym_RPAREN, + STATE(7941), 1, + aux_sym_record_exp_repeat1, + STATE(19556), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [994164] = 8, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(27027), 1, + anon_sym_COMMA, + ACTIONS(27029), 1, + anon_sym_RPAREN, + STATE(7982), 1, + aux_sym_record_exp_repeat1, + STATE(20527), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [994190] = 3, + ACTIONS(15621), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [994206] = 6, + ACTIONS(26752), 1, + anon_sym_COLON, + ACTIONS(26754), 1, + anon_sym_andalso, + ACTIONS(26756), 1, + anon_sym_orelse, + ACTIONS(26758), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 3, + anon_sym_PIPE, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [994228] = 8, + ACTIONS(14741), 1, + anon_sym_RBRACK, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(27031), 1, + anon_sym_COMMA, + STATE(5934), 1, + aux_sym_record_exp_repeat1, + STATE(20538), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [994254] = 6, + ACTIONS(26866), 1, + anon_sym_COLON, + ACTIONS(26904), 1, + anon_sym_andalso, + ACTIONS(26906), 1, + anon_sym_orelse, + ACTIONS(26908), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 3, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + [994276] = 6, + ACTIONS(26866), 1, + anon_sym_COLON, + ACTIONS(26904), 1, + anon_sym_andalso, + ACTIONS(26906), 1, + anon_sym_orelse, + ACTIONS(26908), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 3, + anon_sym_else, + anon_sym_do, + anon_sym_PIPE, + [994298] = 6, + ACTIONS(25885), 1, + anon_sym_handle, + ACTIONS(26845), 1, + anon_sym_COLON, + ACTIONS(26847), 1, + anon_sym_andalso, + ACTIONS(26849), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 3, + anon_sym_else, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [994320] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15581), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15583), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [994336] = 7, + ACTIONS(25885), 1, + anon_sym_handle, + ACTIONS(26845), 1, + anon_sym_COLON, + ACTIONS(26847), 1, + anon_sym_andalso, + ACTIONS(26849), 1, + anon_sym_orelse, + ACTIONS(27033), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16643), 2, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [994360] = 8, + ACTIONS(14979), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(27035), 1, + anon_sym_COMMA, + STATE(7983), 1, + aux_sym_record_exp_repeat1, + STATE(20542), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [994386] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15593), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15595), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [994402] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(24795), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [994424] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [994438] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 7, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [994452] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 5, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [994468] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(10865), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [994490] = 8, + ACTIONS(14717), 1, + anon_sym_RBRACK, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(27037), 1, + anon_sym_COMMA, + STATE(5908), 1, + aux_sym_record_exp_repeat1, + STATE(19572), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [994516] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15601), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15603), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [994532] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15609), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15611), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [994548] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15629), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(15631), 5, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_as, + anon_sym_DASH_GT, + anon_sym_STAR, + [994564] = 3, + ACTIONS(15581), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_where, + [994580] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(21318), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [994602] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(15119), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [994624] = 6, + ACTIONS(26991), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26993), 1, + anon_sym_sig, + STATE(12828), 1, + sym_sigid, + STATE(13503), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12829), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [994646] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(21331), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [994668] = 6, + ACTIONS(26991), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26993), 1, + anon_sym_sig, + STATE(12828), 1, + sym_sigid, + STATE(13510), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(12829), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [994690] = 8, + ACTIONS(14919), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(27039), 1, + anon_sym_COMMA, + STATE(7942), 1, + aux_sym_record_exp_repeat1, + STATE(19582), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [994716] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(24841), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [994738] = 6, + ACTIONS(26798), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26800), 1, + anon_sym_sig, + STATE(8712), 1, + sym_sigid, + STATE(24842), 1, + sym__sigexp, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(8716), 3, + sym_sig_sigexp, + sym_sigid_sigexp, + sym_wheretype_sigexp, + [994760] = 3, + ACTIONS(27041), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 6, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + [994776] = 4, + ACTIONS(26912), 1, + anon_sym_STAR, + STATE(17746), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + [994794] = 8, + ACTIONS(14923), 1, + anon_sym_RPAREN, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(27043), 1, + anon_sym_COMMA, + STATE(7945), 1, + aux_sym_record_exp_repeat1, + STATE(19632), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [994820] = 5, + ACTIONS(16898), 1, + anon_sym_COLON, + ACTIONS(27045), 1, + anon_sym_and, + STATE(18677), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 3, + anon_sym_RPAREN, + anon_sym_COLON_GT, + anon_sym_where, + [994839] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27051), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [994858] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27051), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [994877] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27053), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [994896] = 7, + ACTIONS(18105), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18109), 1, + sym__symbolic_ident, + STATE(9809), 1, + sym_longtycon, + STATE(9941), 1, + sym_tycon, + STATE(19195), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [994919] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [994932] = 3, + ACTIONS(27055), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 5, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [994947] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27057), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [994966] = 7, + ACTIONS(18774), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18778), 1, + sym__symbolic_ident, + STATE(15726), 1, + sym_tycon, + STATE(16311), 1, + sym_longtycon, + STATE(19214), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [994989] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27053), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995008] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27057), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995027] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27059), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995046] = 7, + ACTIONS(18331), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18335), 1, + sym__symbolic_ident, + STATE(16492), 1, + sym_tycon, + STATE(16544), 1, + sym_longtycon, + STATE(19235), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995069] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27061), 1, + aux_sym__quote_content_token1, + ACTIONS(27063), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17995), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995088] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27067), 1, + anon_sym_DOT, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [995109] = 3, + ACTIONS(27071), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + [995124] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27063), 1, + anon_sym_BQUOTE, + ACTIONS(27073), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17997), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995143] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27075), 1, + aux_sym__quote_content_token1, + ACTIONS(27077), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18129), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995162] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27077), 1, + anon_sym_BQUOTE, + ACTIONS(27079), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18134), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995181] = 7, + ACTIONS(27081), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27083), 1, + sym__symbolic_ident, + STATE(11151), 1, + sym_longvid, + STATE(11362), 1, + sym_vid, + STATE(18986), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995204] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27085), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [995225] = 7, + ACTIONS(27087), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27089), 1, + sym__symbolic_ident, + STATE(11539), 1, + sym_vid, + STATE(11814), 1, + sym_longvid, + STATE(18835), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995248] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27091), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995267] = 7, + ACTIONS(27093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27095), 1, + sym__symbolic_ident, + STATE(6665), 1, + sym_longvid, + STATE(6881), 1, + sym_vid, + STATE(18861), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995290] = 7, + ACTIONS(18595), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18599), 1, + sym__symbolic_ident, + STATE(8908), 1, + sym_tycon, + STATE(8922), 1, + sym_longtycon, + STATE(19081), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995313] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27097), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995332] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27097), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995351] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27099), 1, + aux_sym__quote_content_token1, + ACTIONS(27101), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18343), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995370] = 7, + ACTIONS(27103), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27105), 1, + sym__symbolic_ident, + STATE(7196), 1, + sym_vid, + STATE(7339), 1, + sym_longvid, + STATE(18945), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995393] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27107), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995412] = 7, + ACTIONS(17666), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17670), 1, + sym__symbolic_ident, + STATE(11354), 1, + sym_tycon, + STATE(11842), 1, + sym_longtycon, + STATE(18827), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995435] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27107), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995454] = 7, + ACTIONS(18239), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18243), 1, + sym__symbolic_ident, + STATE(9533), 1, + sym_longtycon, + STATE(9856), 1, + sym_tycon, + STATE(18919), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995477] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27109), 1, + aux_sym__quote_content_token1, + ACTIONS(27111), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18032), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995496] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27111), 1, + anon_sym_BQUOTE, + ACTIONS(27113), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18037), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995515] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27091), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995534] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27115), 1, + aux_sym__quote_content_token1, + ACTIONS(27117), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18009), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995553] = 7, + ACTIONS(18259), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18263), 1, + sym__symbolic_ident, + STATE(9194), 1, + sym_longtycon, + STATE(9302), 1, + sym_tycon, + STATE(19099), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995576] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27117), 1, + anon_sym_BQUOTE, + ACTIONS(27119), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18010), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995595] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27121), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [995616] = 7, + ACTIONS(18794), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18798), 1, + sym__symbolic_ident, + STATE(11485), 1, + sym_longtycon, + STATE(11525), 1, + sym_tycon, + STATE(19180), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995639] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27059), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995658] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27123), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995677] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27125), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995696] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27125), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995715] = 7, + ACTIONS(18289), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18293), 1, + sym__symbolic_ident, + STATE(10309), 1, + sym_tycon, + STATE(10652), 1, + sym_longtycon, + STATE(18808), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995738] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27123), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995757] = 7, + ACTIONS(27127), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27129), 1, + sym__symbolic_ident, + STATE(6196), 1, + sym_longvid, + STATE(6370), 1, + sym_vid, + STATE(19132), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995780] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27131), 1, + aux_sym__quote_content_token1, + ACTIONS(27133), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18379), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995799] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27101), 1, + anon_sym_BQUOTE, + ACTIONS(27135), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18351), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995818] = 7, + ACTIONS(27137), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27139), 1, + sym__symbolic_ident, + STATE(6912), 1, + sym_vid, + STATE(7289), 1, + sym_longvid, + STATE(18725), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995841] = 7, + ACTIONS(18299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18303), 1, + sym__symbolic_ident, + STATE(10484), 1, + sym_tycon, + STATE(10817), 1, + sym_longtycon, + STATE(18941), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995864] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25062), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995887] = 7, + ACTIONS(18311), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18315), 1, + sym__symbolic_ident, + STATE(9520), 1, + sym_tycon, + STATE(9889), 1, + sym_longtycon, + STATE(19076), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995910] = 7, + ACTIONS(18279), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18283), 1, + sym__symbolic_ident, + STATE(14042), 1, + sym_tycon, + STATE(14081), 1, + sym_longtycon, + STATE(19102), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995933] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27133), 1, + anon_sym_BQUOTE, + ACTIONS(27141), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18380), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [995952] = 4, + ACTIONS(27143), 1, + anon_sym_COLON, + ACTIONS(27145), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 4, + anon_sym_orelse, + anon_sym_handle, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [995969] = 7, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(27147), 1, + anon_sym_op, + STATE(14009), 1, + sym_vid, + STATE(14024), 1, + sym__exbind, + STATE(14161), 1, + sym_exbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [995992] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27149), 1, + aux_sym__quote_content_token1, + ACTIONS(27151), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18053), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996011] = 7, + ACTIONS(18321), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18325), 1, + sym__symbolic_ident, + STATE(14599), 1, + sym_longtycon, + STATE(14629), 1, + sym_tycon, + STATE(19168), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996034] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27151), 1, + anon_sym_BQUOTE, + ACTIONS(27153), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18076), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996053] = 3, + ACTIONS(27155), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 5, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [996068] = 7, + ACTIONS(18341), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18345), 1, + sym__symbolic_ident, + STATE(14618), 1, + sym_longtycon, + STATE(14641), 1, + sym_tycon, + STATE(19147), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996091] = 7, + ACTIONS(27157), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27159), 1, + sym__symbolic_ident, + STATE(11571), 1, + sym_longvid, + STATE(11798), 1, + sym_vid, + STATE(19156), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996114] = 7, + ACTIONS(17606), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17610), 1, + sym__symbolic_ident, + STATE(8731), 1, + sym_tycon, + STATE(8734), 1, + sym_longtycon, + STATE(19160), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996137] = 4, + ACTIONS(27055), 1, + anon_sym_COLON, + ACTIONS(27161), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 4, + anon_sym_orelse, + anon_sym_handle, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [996154] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27163), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996173] = 7, + ACTIONS(18371), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18375), 1, + sym__symbolic_ident, + STATE(10530), 1, + sym_longtycon, + STATE(10679), 1, + sym_tycon, + STATE(18739), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996196] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27165), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996215] = 7, + ACTIONS(17636), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17640), 1, + sym__symbolic_ident, + STATE(17702), 1, + sym_longtycon, + STATE(17869), 1, + sym_tycon, + STATE(19057), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996238] = 7, + ACTIONS(17942), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17946), 1, + sym__symbolic_ident, + STATE(11270), 1, + sym_longtycon, + STATE(11769), 1, + sym_tycon, + STATE(18760), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996261] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27163), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996280] = 7, + ACTIONS(18381), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18385), 1, + sym__symbolic_ident, + STATE(9553), 1, + sym_longtycon, + STATE(9711), 1, + sym_tycon, + STATE(19077), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996303] = 7, + ACTIONS(18814), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18818), 1, + sym__symbolic_ident, + STATE(11310), 1, + sym_longtycon, + STATE(11384), 1, + sym_tycon, + STATE(19109), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996326] = 6, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27167), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [996347] = 6, + ACTIONS(26918), 1, + anon_sym_handle, + ACTIONS(27155), 1, + anon_sym_COLON, + ACTIONS(27169), 1, + anon_sym_andalso, + ACTIONS(27171), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + [996368] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27173), 1, + aux_sym__quote_content_token1, + ACTIONS(27175), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18056), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996387] = 7, + ACTIONS(27177), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27179), 1, + sym__symbolic_ident, + STATE(9318), 1, + sym_vid, + STATE(9322), 1, + sym_longvid, + STATE(19145), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996410] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [996423] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27175), 1, + anon_sym_BQUOTE, + ACTIONS(27181), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18058), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996442] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27183), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [996463] = 7, + ACTIONS(18863), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18867), 1, + sym__symbolic_ident, + STATE(16368), 1, + sym_longtycon, + STATE(16390), 1, + sym_tycon, + STATE(18978), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996486] = 7, + ACTIONS(27185), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27187), 1, + sym__symbolic_ident, + STATE(6100), 1, + sym_longvid, + STATE(6165), 1, + sym_vid, + STATE(18956), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996509] = 7, + ACTIONS(18411), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18415), 1, + sym__symbolic_ident, + STATE(12698), 1, + sym_tycon, + STATE(12890), 1, + sym_longtycon, + STATE(18961), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996532] = 7, + ACTIONS(17333), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17337), 1, + sym__symbolic_ident, + STATE(16381), 1, + sym_longtycon, + STATE(16394), 1, + sym_tycon, + STATE(18953), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996555] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27189), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996574] = 7, + ACTIONS(18391), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18395), 1, + sym__symbolic_ident, + STATE(9743), 1, + sym_longtycon, + STATE(9772), 1, + sym_tycon, + STATE(19179), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996597] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27191), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996616] = 7, + ACTIONS(18421), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18425), 1, + sym__symbolic_ident, + STATE(15001), 1, + sym_longtycon, + STATE(15025), 1, + sym_tycon, + STATE(19113), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996639] = 7, + ACTIONS(17746), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17750), 1, + sym__symbolic_ident, + STATE(9865), 1, + sym_longtycon, + STATE(9893), 1, + sym_tycon, + STATE(19133), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996662] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27193), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996681] = 7, + ACTIONS(17512), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17516), 1, + sym__symbolic_ident, + STATE(15946), 1, + sym_longtycon, + STATE(16331), 1, + sym_tycon, + STATE(19185), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996704] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27193), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996723] = 7, + ACTIONS(27195), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27197), 1, + sym__symbolic_ident, + STATE(11209), 1, + sym_longvid, + STATE(11447), 1, + sym_vid, + STATE(19138), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996746] = 7, + ACTIONS(27199), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27201), 1, + sym__symbolic_ident, + STATE(11567), 1, + sym_vid, + STATE(11844), 1, + sym_longvid, + STATE(18767), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996769] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27203), 1, + aux_sym__quote_content_token1, + ACTIONS(27205), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18074), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996788] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27205), 1, + anon_sym_BQUOTE, + ACTIONS(27207), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18075), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996807] = 7, + ACTIONS(27209), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27211), 1, + sym__symbolic_ident, + STATE(5861), 1, + sym_vid, + STATE(6083), 1, + sym_longvid, + STATE(18806), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996830] = 7, + ACTIONS(18171), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18175), 1, + sym__symbolic_ident, + STATE(13414), 1, + sym_longtycon, + STATE(13509), 1, + sym_tycon, + STATE(19208), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996853] = 7, + ACTIONS(17676), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17680), 1, + sym__symbolic_ident, + STATE(11187), 1, + sym_longtycon, + STATE(11516), 1, + sym_tycon, + STATE(18754), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996876] = 7, + ACTIONS(18431), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18435), 1, + sym__symbolic_ident, + STATE(15016), 1, + sym_longtycon, + STATE(15029), 1, + sym_tycon, + STATE(18896), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996899] = 7, + ACTIONS(18121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18125), 1, + sym__symbolic_ident, + STATE(9355), 1, + sym_longtycon, + STATE(9425), 1, + sym_tycon, + STATE(19233), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996922] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27213), 1, + aux_sym__quote_content_token1, + ACTIONS(27215), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18102), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996941] = 7, + ACTIONS(18451), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18455), 1, + sym__symbolic_ident, + STATE(9784), 1, + sym_longtycon, + STATE(9841), 1, + sym_tycon, + STATE(19173), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [996964] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27215), 1, + anon_sym_BQUOTE, + ACTIONS(27217), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18103), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [996983] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27219), 1, + aux_sym__quote_content_token1, + ACTIONS(27221), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18082), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997002] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27223), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [997023] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27221), 1, + anon_sym_BQUOTE, + ACTIONS(27225), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18084), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997042] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27227), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997061] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27227), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997080] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27191), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997099] = 7, + ACTIONS(18467), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18471), 1, + sym__symbolic_ident, + STATE(9279), 1, + sym_longtycon, + STATE(9358), 1, + sym_tycon, + STATE(18878), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997122] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27229), 1, + aux_sym__quote_content_token1, + ACTIONS(27231), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18154), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997141] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27233), 1, + aux_sym__quote_content_token1, + ACTIONS(27235), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18086), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997160] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27235), 1, + anon_sym_BQUOTE, + ACTIONS(27237), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18087), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997179] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27231), 1, + anon_sym_BQUOTE, + ACTIONS(27239), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18188), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997198] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27241), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997217] = 7, + ACTIONS(18479), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18483), 1, + sym__symbolic_ident, + STATE(14382), 1, + sym_tycon, + STATE(14391), 1, + sym_longtycon, + STATE(18988), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997240] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27241), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997259] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27243), 1, + aux_sym__quote_content_token1, + ACTIONS(27245), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17988), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997278] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27247), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997297] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27247), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997316] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27249), 1, + aux_sym__quote_content_token1, + ACTIONS(27251), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18341), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997335] = 7, + ACTIONS(17343), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17347), 1, + sym__symbolic_ident, + STATE(11048), 1, + sym_tycon, + STATE(11773), 1, + sym_longtycon, + STATE(19034), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997358] = 7, + ACTIONS(18141), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18145), 1, + sym__symbolic_ident, + STATE(14420), 1, + sym_longtycon, + STATE(14805), 1, + sym_tycon, + STATE(18892), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997381] = 7, + ACTIONS(17419), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17423), 1, + sym__symbolic_ident, + STATE(11113), 1, + sym_longtycon, + STATE(11318), 1, + sym_tycon, + STATE(18891), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997404] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27251), 1, + anon_sym_BQUOTE, + ACTIONS(27253), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18357), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997423] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27255), 1, + aux_sym__quote_content_token1, + ACTIONS(27257), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18439), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997442] = 7, + ACTIONS(27259), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27261), 1, + sym__symbolic_ident, + STATE(8234), 1, + sym_vid, + STATE(8274), 1, + sym_longvid, + STATE(18751), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997465] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27165), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997484] = 6, + ACTIONS(26742), 1, + anon_sym_handle, + ACTIONS(27263), 1, + anon_sym_COLON, + ACTIONS(27265), 1, + anon_sym_andalso, + ACTIONS(27267), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 2, + anon_sym_else, + anon_sym_of, + [997505] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27269), 1, + aux_sym__quote_content_token1, + ACTIONS(27271), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18220), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997524] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27273), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [997545] = 7, + ACTIONS(17616), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17620), 1, + sym__symbolic_ident, + STATE(10169), 1, + sym_longtycon, + STATE(10321), 1, + sym_tycon, + STATE(18936), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997568] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27271), 1, + anon_sym_BQUOTE, + ACTIONS(27275), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18235), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997587] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [997600] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27277), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997619] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27277), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997638] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [997651] = 7, + ACTIONS(27279), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27281), 1, + sym__symbolic_ident, + STATE(10226), 1, + sym_vid, + STATE(10802), 1, + sym_longvid, + STATE(19038), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997674] = 6, + ACTIONS(27283), 1, + anon_sym_LPAREN, + ACTIONS(27286), 1, + anon_sym_DOT, + ACTIONS(27288), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [997695] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [997708] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27291), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [997729] = 7, + ACTIONS(27293), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27295), 1, + sym__symbolic_ident, + STATE(7445), 1, + sym_longvid, + STATE(7529), 1, + sym_vid, + STATE(18773), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997752] = 7, + ACTIONS(27297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27299), 1, + sym__symbolic_ident, + STATE(10287), 1, + sym_vid, + STATE(13524), 1, + sym_longvid, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997775] = 7, + ACTIONS(27301), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27303), 1, + sym__symbolic_ident, + STATE(14261), 1, + sym_longvid, + STATE(14283), 1, + sym_vid, + STATE(18985), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997798] = 7, + ACTIONS(17982), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17986), 1, + sym__symbolic_ident, + STATE(15283), 1, + sym_longtycon, + STATE(15305), 1, + sym_tycon, + STATE(18714), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997821] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27305), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997840] = 7, + ACTIONS(18361), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18365), 1, + sym__symbolic_ident, + STATE(13173), 1, + sym_longtycon, + STATE(13255), 1, + sym_tycon, + STATE(18950), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997863] = 7, + ACTIONS(27307), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27309), 1, + sym__symbolic_ident, + STATE(7571), 1, + sym_longvid, + STATE(7716), 1, + sym_vid, + STATE(19114), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997886] = 7, + ACTIONS(18249), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18253), 1, + sym__symbolic_ident, + STATE(14217), 1, + sym_longtycon, + STATE(14230), 1, + sym_tycon, + STATE(19027), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997909] = 7, + ACTIONS(27311), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27313), 1, + sym__symbolic_ident, + STATE(9534), 1, + sym_vid, + STATE(9572), 1, + sym_longvid, + STATE(18883), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997932] = 7, + ACTIONS(27315), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27317), 1, + sym__symbolic_ident, + STATE(9688), 1, + sym_vid, + STATE(9965), 1, + sym_longvid, + STATE(19255), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997955] = 7, + ACTIONS(18269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18273), 1, + sym__symbolic_ident, + STATE(9368), 1, + sym_tycon, + STATE(9434), 1, + sym_longtycon, + STATE(19137), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [997978] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27319), 1, + aux_sym__quote_content_token1, + ACTIONS(27321), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18131), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [997997] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27323), 1, + aux_sym__quote_content_token1, + ACTIONS(27325), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18313), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998016] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27321), 1, + anon_sym_BQUOTE, + ACTIONS(27327), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18132), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998035] = 7, + ACTIONS(17686), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17690), 1, + sym__symbolic_ident, + STATE(10705), 1, + sym_longtycon, + STATE(10877), 1, + sym_tycon, + STATE(18747), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998058] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [998071] = 7, + ACTIONS(18401), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18405), 1, + sym__symbolic_ident, + STATE(16977), 1, + sym_tycon, + STATE(17074), 1, + sym_longtycon, + STATE(18914), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998094] = 7, + ACTIONS(27329), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27331), 1, + sym__symbolic_ident, + STATE(6719), 1, + sym_longvid, + STATE(6884), 1, + sym_vid, + STATE(19046), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998117] = 7, + ACTIONS(18131), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18135), 1, + sym__symbolic_ident, + STATE(10870), 1, + sym_longtycon, + STATE(10906), 1, + sym_tycon, + STATE(19164), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998140] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27333), 1, + aux_sym__quote_content_token1, + ACTIONS(27335), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18144), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998159] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27337), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998178] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27339), 1, + aux_sym__quote_content_token1, + ACTIONS(27341), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18173), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998197] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27343), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998216] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27343), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998235] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27345), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [998256] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27337), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998275] = 7, + ACTIONS(27347), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27349), 1, + sym__symbolic_ident, + STATE(13524), 1, + sym_longvid, + STATE(13880), 1, + sym_vid, + STATE(18819), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998298] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27335), 1, + anon_sym_BQUOTE, + ACTIONS(27351), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18148), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998317] = 7, + ACTIONS(27353), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27355), 1, + sym__symbolic_ident, + STATE(7064), 1, + sym_vid, + STATE(7406), 1, + sym_longvid, + STATE(18962), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998340] = 7, + ACTIONS(27357), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27359), 1, + sym__symbolic_ident, + STATE(6577), 1, + sym_vid, + STATE(7199), 1, + sym_longvid, + STATE(18709), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998363] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27361), 1, + aux_sym__quote_content_token1, + ACTIONS(27363), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18149), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998382] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27363), 1, + anon_sym_BQUOTE, + ACTIONS(27365), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18150), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998401] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [998414] = 4, + ACTIONS(27155), 1, + anon_sym_COLON, + ACTIONS(27169), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 4, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_orelse, + anon_sym_handle, + [998431] = 7, + ACTIONS(17736), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17740), 1, + sym__symbolic_ident, + STATE(17853), 1, + sym_tycon, + STATE(17900), 1, + sym_longtycon, + STATE(18969), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998454] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27367), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998473] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27341), 1, + anon_sym_BQUOTE, + ACTIONS(27369), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18175), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998492] = 7, + ACTIONS(27371), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27373), 1, + sym__symbolic_ident, + STATE(10598), 1, + sym_longvid, + STATE(10787), 1, + sym_vid, + STATE(19019), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998515] = 6, + ACTIONS(26758), 1, + anon_sym_handle, + ACTIONS(27055), 1, + anon_sym_COLON, + ACTIONS(27161), 1, + anon_sym_andalso, + ACTIONS(27375), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21734), 2, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [998536] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27367), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998555] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27377), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998574] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27377), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998593] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27379), 1, + aux_sym__quote_content_token1, + ACTIONS(27381), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18193), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998612] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27381), 1, + anon_sym_BQUOTE, + ACTIONS(27383), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18194), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998631] = 7, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(27385), 1, + sym__alphaAlphaNumeric_ident, + STATE(13576), 1, + sym_longvid, + STATE(13579), 1, + sym_vid, + STATE(18887), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998654] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27387), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998673] = 7, + ACTIONS(17359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17363), 1, + sym__symbolic_ident, + STATE(8761), 1, + sym_longtycon, + STATE(8787), 1, + sym_tycon, + STATE(19055), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998696] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27389), 1, + aux_sym__quote_content_token1, + ACTIONS(27391), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18256), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998715] = 7, + ACTIONS(16540), 1, + sym__symbolic_ident, + ACTIONS(26806), 1, + anon_sym_PIPE, + ACTIONS(26943), 1, + sym__alphaAlphaNumeric_ident, + STATE(14324), 1, + sym_vid, + STATE(14365), 1, + sym_condesc, + STATE(14851), 1, + sym__condesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998738] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27391), 1, + anon_sym_BQUOTE, + ACTIONS(27393), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18258), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998757] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27325), 1, + anon_sym_BQUOTE, + ACTIONS(27395), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18337), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998776] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27397), 1, + aux_sym__quote_content_token1, + ACTIONS(27399), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18250), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998795] = 7, + ACTIONS(18441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18445), 1, + sym__symbolic_ident, + STATE(14133), 1, + sym_tycon, + STATE(14196), 1, + sym_longtycon, + STATE(18761), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998818] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27401), 1, + aux_sym__quote_content_token1, + ACTIONS(27403), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18481), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998837] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27405), 1, + aux_sym__quote_content_token1, + ACTIONS(27407), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18176), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998856] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27407), 1, + anon_sym_BQUOTE, + ACTIONS(27409), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18177), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998875] = 7, + ACTIONS(27411), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27413), 1, + sym__symbolic_ident, + STATE(6828), 1, + sym_longvid, + STATE(6891), 1, + sym_vid, + STATE(18907), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998898] = 7, + ACTIONS(27415), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27417), 1, + sym__symbolic_ident, + STATE(13817), 1, + sym_vid, + STATE(14066), 1, + sym_longvid, + STATE(18735), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998921] = 7, + ACTIONS(16643), 1, + anon_sym_then, + ACTIONS(26900), 1, + anon_sym_handle, + ACTIONS(27419), 1, + anon_sym_COLON, + ACTIONS(27421), 1, + anon_sym_andalso, + ACTIONS(27423), 1, + anon_sym_orelse, + ACTIONS(27425), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [998944] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27257), 1, + anon_sym_BQUOTE, + ACTIONS(27427), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18550), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998963] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27399), 1, + anon_sym_BQUOTE, + ACTIONS(27429), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18252), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [998982] = 7, + ACTIONS(26943), 1, + sym__symbolic_ident, + ACTIONS(27431), 1, + sym__alphaAlphaNumeric_ident, + STATE(11435), 1, + sym_vid, + STATE(12899), 1, + sym_longvid, + STATE(19175), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999005] = 7, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(27433), 1, + anon_sym_op, + STATE(13586), 1, + sym_vid, + STATE(13913), 1, + sym_exbind, + STATE(14024), 1, + sym__exbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999028] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27435), 1, + aux_sym__quote_content_token1, + ACTIONS(27437), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18190), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999047] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27439), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999066] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27437), 1, + anon_sym_BQUOTE, + ACTIONS(27441), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18192), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999085] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27439), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999104] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27443), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999123] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27443), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999142] = 7, + ACTIONS(18530), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18534), 1, + sym__symbolic_ident, + STATE(11917), 1, + sym_longtycon, + STATE(11959), 1, + sym_tycon, + STATE(19249), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999165] = 7, + ACTIONS(18035), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18039), 1, + sym__symbolic_ident, + STATE(15158), 1, + sym_tycon, + STATE(15346), 1, + sym_longtycon, + STATE(19256), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999188] = 4, + ACTIONS(16507), 1, + anon_sym_with, + ACTIONS(27445), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 4, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + anon_sym_DASH_GT, + [999205] = 7, + ACTIONS(27447), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27449), 1, + sym__symbolic_ident, + STATE(13139), 1, + sym_vid, + STATE(13294), 1, + sym_longvid, + STATE(18879), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999228] = 4, + ACTIONS(27451), 1, + anon_sym_STAR, + STATE(18495), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 4, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_where, + [999245] = 7, + ACTIONS(16643), 1, + anon_sym_of, + ACTIONS(26742), 1, + anon_sym_handle, + ACTIONS(27263), 1, + anon_sym_COLON, + ACTIONS(27265), 1, + anon_sym_andalso, + ACTIONS(27267), 1, + anon_sym_orelse, + ACTIONS(27453), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999268] = 7, + ACTIONS(27455), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27457), 1, + sym__symbolic_ident, + STATE(8796), 1, + sym_vid, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24816), 1, + sym_longvid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999291] = 7, + ACTIONS(27459), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27461), 1, + sym__symbolic_ident, + STATE(12266), 1, + sym_vid, + STATE(12270), 1, + sym_longvid, + STATE(18864), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999314] = 7, + ACTIONS(17626), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17630), 1, + sym__symbolic_ident, + STATE(15244), 1, + sym_tycon, + STATE(15389), 1, + sym_longtycon, + STATE(19190), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999337] = 7, + ACTIONS(27463), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27465), 1, + sym__symbolic_ident, + STATE(9540), 1, + sym_vid, + STATE(9634), 1, + sym_longvid, + STATE(18975), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999360] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27387), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999379] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27189), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999398] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27467), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999417] = 7, + ACTIONS(18784), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18788), 1, + sym__symbolic_ident, + STATE(12075), 1, + sym_longtycon, + STATE(12086), 1, + sym_tycon, + STATE(18991), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999440] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27467), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999459] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27469), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999478] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27469), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999497] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27471), 1, + aux_sym__quote_content_token1, + ACTIONS(27473), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18207), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999516] = 7, + ACTIONS(27475), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27477), 1, + sym__symbolic_ident, + STATE(9828), 1, + sym_vid, + STATE(9927), 1, + sym_longvid, + STATE(19183), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999539] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27479), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [999560] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27473), 1, + anon_sym_BQUOTE, + ACTIONS(27481), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18208), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999579] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27483), 1, + aux_sym__quote_content_token1, + ACTIONS(27485), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18264), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999598] = 7, + ACTIONS(27487), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27489), 1, + sym__symbolic_ident, + STATE(11416), 1, + sym_longvid, + STATE(11743), 1, + sym_vid, + STATE(19106), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999621] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27491), 1, + aux_sym__quote_content_token1, + ACTIONS(27493), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18243), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999640] = 7, + ACTIONS(17756), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17760), 1, + sym__symbolic_ident, + STATE(15549), 1, + sym_tycon, + STATE(15927), 1, + sym_longtycon, + STATE(19176), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999663] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27485), 1, + anon_sym_BQUOTE, + ACTIONS(27495), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18268), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999682] = 6, + ACTIONS(27499), 1, + anon_sym_u2227, + ACTIONS(27501), 1, + anon_sym_SLASH_BSLASH, + STATE(20382), 1, + aux_sym_hol_fn_spec_repeat1, + STATE(20406), 1, + aux_sym_hol_fn_spec_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27497), 2, + anon_sym_End, + anon_sym_Termination, + [999703] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27503), 1, + aux_sym__quote_content_token1, + ACTIONS(27505), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18221), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999722] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27505), 1, + anon_sym_BQUOTE, + ACTIONS(27507), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18223), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999741] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27509), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999760] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27509), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999779] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27493), 1, + anon_sym_BQUOTE, + ACTIONS(27511), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18249), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999798] = 6, + ACTIONS(27513), 1, + anon_sym_COLON, + ACTIONS(27515), 1, + anon_sym_andalso, + ACTIONS(27517), 1, + anon_sym_orelse, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 2, + anon_sym_then, + anon_sym_PIPE, + [999819] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27521), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [999840] = 7, + ACTIONS(16643), 1, + anon_sym_of, + ACTIONS(26742), 1, + anon_sym_handle, + ACTIONS(27263), 1, + anon_sym_COLON, + ACTIONS(27265), 1, + anon_sym_andalso, + ACTIONS(27267), 1, + anon_sym_orelse, + ACTIONS(27523), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999863] = 3, + ACTIONS(27525), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + [999878] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27527), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999897] = 6, + ACTIONS(21724), 1, + anon_sym_COLON, + ACTIONS(21728), 1, + anon_sym_andalso, + ACTIONS(21730), 1, + anon_sym_orelse, + ACTIONS(21732), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21734), 2, + anon_sym_RPAREN, + anon_sym_BSLASH_BSLASH, + [999918] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27529), 1, + aux_sym__quote_content_token1, + ACTIONS(27531), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18305), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [999937] = 7, + ACTIONS(27533), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27535), 1, + sym__symbolic_ident, + STATE(8244), 1, + sym_longvid, + STATE(8264), 1, + sym_vid, + STATE(18720), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999960] = 7, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(27537), 1, + anon_sym_op, + STATE(13599), 1, + sym_vid, + STATE(13926), 1, + sym_exbind, + STATE(14024), 1, + sym__exbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [999983] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27531), 1, + anon_sym_BQUOTE, + ACTIONS(27539), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18310), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000002] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27541), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000021] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27543), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000040] = 7, + ACTIONS(18728), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18732), 1, + sym__symbolic_ident, + STATE(16355), 1, + sym_tycon, + STATE(16362), 1, + sym_longtycon, + STATE(19144), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000063] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27543), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000082] = 7, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + STATE(17781), 1, + sym_longtycon, + STATE(17889), 1, + sym_tycon, + STATE(18839), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000105] = 7, + ACTIONS(27545), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27547), 1, + sym__symbolic_ident, + STATE(9904), 1, + sym_longvid, + STATE(9905), 1, + sym_vid, + STATE(18913), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000128] = 4, + ACTIONS(27549), 1, + anon_sym_STAR, + STATE(18552), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 4, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_where, + [1000145] = 7, + ACTIONS(27551), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27553), 1, + sym__symbolic_ident, + STATE(10492), 1, + sym_longvid, + STATE(10814), 1, + sym_vid, + STATE(18831), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000168] = 7, + ACTIONS(17696), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17700), 1, + sym__symbolic_ident, + STATE(10810), 1, + sym_longtycon, + STATE(10974), 1, + sym_tycon, + STATE(18710), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000191] = 7, + ACTIONS(27555), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27557), 1, + sym__symbolic_ident, + STATE(6610), 1, + sym_longvid, + STATE(6662), 1, + sym_vid, + STATE(18812), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000214] = 6, + ACTIONS(26900), 1, + anon_sym_handle, + ACTIONS(27419), 1, + anon_sym_COLON, + ACTIONS(27421), 1, + anon_sym_andalso, + ACTIONS(27423), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 2, + anon_sym_then, + anon_sym_else, + [1000235] = 7, + ACTIONS(27559), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27561), 1, + sym__symbolic_ident, + STATE(7232), 1, + sym_longvid, + STATE(7336), 1, + sym_vid, + STATE(18980), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000258] = 6, + ACTIONS(26900), 1, + anon_sym_handle, + ACTIONS(27419), 1, + anon_sym_COLON, + ACTIONS(27421), 1, + anon_sym_andalso, + ACTIONS(27423), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 2, + anon_sym_then, + anon_sym_else, + [1000279] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27563), 1, + aux_sym__quote_content_token1, + ACTIONS(27565), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18283), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000298] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27565), 1, + anon_sym_BQUOTE, + ACTIONS(27567), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18292), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000317] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27541), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000336] = 6, + ACTIONS(27513), 1, + anon_sym_COLON, + ACTIONS(27515), 1, + anon_sym_andalso, + ACTIONS(27517), 1, + anon_sym_orelse, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 2, + anon_sym_then, + anon_sym_PIPE, + [1000357] = 4, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 4, + anon_sym_SEMI, + anon_sym_end, + anon_sym_orelse, + anon_sym_handle, + [1000374] = 7, + ACTIONS(17842), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17846), 1, + sym__symbolic_ident, + STATE(9838), 1, + sym_longtycon, + STATE(9902), 1, + sym_tycon, + STATE(19163), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000397] = 7, + ACTIONS(17586), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17590), 1, + sym__symbolic_ident, + STATE(15630), 1, + sym_longtycon, + STATE(15989), 1, + sym_tycon, + STATE(18999), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000420] = 6, + ACTIONS(26818), 1, + anon_sym_handle, + ACTIONS(27143), 1, + anon_sym_COLON, + ACTIONS(27145), 1, + anon_sym_andalso, + ACTIONS(27569), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 2, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [1000441] = 7, + ACTIONS(17399), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17403), 1, + sym__symbolic_ident, + STATE(14323), 1, + sym_longtycon, + STATE(14340), 1, + sym_tycon, + STATE(19239), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000464] = 7, + ACTIONS(27571), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27573), 1, + sym__symbolic_ident, + STATE(4298), 1, + sym_longvid, + STATE(4558), 1, + sym_vid, + STATE(19170), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000487] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27575), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000506] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [1000519] = 7, + ACTIONS(27577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27579), 1, + sym__symbolic_ident, + STATE(13721), 1, + sym_tycon, + STATE(13775), 1, + sym_longtycon, + STATE(19014), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000542] = 7, + ACTIONS(17646), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17650), 1, + sym__symbolic_ident, + STATE(13799), 1, + sym_tycon, + STATE(13984), 1, + sym_longtycon, + STATE(18889), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000565] = 7, + ACTIONS(16643), 1, + anon_sym_do, + ACTIONS(26908), 1, + anon_sym_handle, + ACTIONS(27581), 1, + anon_sym_COLON, + ACTIONS(27583), 1, + anon_sym_andalso, + ACTIONS(27585), 1, + anon_sym_orelse, + ACTIONS(27587), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000588] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27589), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1000609] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27575), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000628] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27591), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000647] = 7, + ACTIONS(27593), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27595), 1, + sym__symbolic_ident, + STATE(11171), 1, + sym_vid, + STATE(11758), 1, + sym_longvid, + STATE(18888), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000670] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27591), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000689] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [1000702] = 6, + ACTIONS(27597), 1, + anon_sym_COLON, + ACTIONS(27599), 1, + anon_sym_andalso, + ACTIONS(27601), 1, + anon_sym_orelse, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 2, + anon_sym_do, + anon_sym_PIPE, + [1000723] = 4, + ACTIONS(27605), 1, + anon_sym_STAR, + STATE(18266), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DASH_GT, + [1000740] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27607), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000759] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27609), 1, + aux_sym__quote_content_token1, + ACTIONS(27611), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18293), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000778] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27607), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000797] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27611), 1, + anon_sym_BQUOTE, + ACTIONS(27613), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18295), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000816] = 6, + ACTIONS(26908), 1, + anon_sym_handle, + ACTIONS(27581), 1, + anon_sym_COLON, + ACTIONS(27583), 1, + anon_sym_andalso, + ACTIONS(27585), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 2, + anon_sym_else, + anon_sym_do, + [1000837] = 7, + ACTIONS(27615), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27617), 1, + sym__symbolic_ident, + STATE(8892), 1, + sym_vid, + STATE(8923), 1, + sym_longvid, + STATE(19240), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000860] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27619), 1, + aux_sym__quote_content_token1, + ACTIONS(27621), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18274), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000879] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27621), 1, + anon_sym_BQUOTE, + ACTIONS(27623), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18275), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000898] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27625), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000917] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27627), 1, + aux_sym__quote_content_token1, + ACTIONS(27629), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18356), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000936] = 4, + ACTIONS(27631), 1, + anon_sym_STAR, + STATE(18266), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DASH_GT, + [1000953] = 7, + ACTIONS(27634), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27636), 1, + sym__symbolic_ident, + STATE(5869), 1, + sym_vid, + STATE(6428), 1, + sym_longvid, + STATE(19086), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1000976] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27625), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1000995] = 7, + ACTIONS(27638), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27640), 1, + sym__symbolic_ident, + STATE(4954), 1, + sym_vid, + STATE(5011), 1, + sym_longvid, + STATE(18872), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1001018] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27527), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001037] = 7, + ACTIONS(27642), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27644), 1, + sym__symbolic_ident, + STATE(4598), 1, + sym_longvid, + STATE(5015), 1, + sym_vid, + STATE(19100), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1001060] = 7, + ACTIONS(17526), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17530), 1, + sym__symbolic_ident, + STATE(15486), 1, + sym_tycon, + STATE(16173), 1, + sym_longtycon, + STATE(19184), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1001083] = 7, + ACTIONS(27646), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27648), 1, + sym__symbolic_ident, + STATE(5866), 1, + sym_longvid, + STATE(6078), 1, + sym_vid, + STATE(19161), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1001106] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27650), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001125] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27650), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001144] = 7, + ACTIONS(18547), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18551), 1, + sym__symbolic_ident, + STATE(8864), 1, + sym_longtycon, + STATE(8946), 1, + sym_tycon, + STATE(18917), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1001167] = 7, + ACTIONS(17766), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17770), 1, + sym__symbolic_ident, + STATE(15757), 1, + sym_longtycon, + STATE(16010), 1, + sym_tycon, + STATE(18856), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1001190] = 7, + ACTIONS(17389), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17393), 1, + sym__symbolic_ident, + STATE(8971), 1, + sym_longtycon, + STATE(8982), 1, + sym_tycon, + STATE(18734), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1001213] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15531), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15533), 4, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [1001228] = 7, + ACTIONS(18065), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18069), 1, + sym__symbolic_ident, + STATE(14988), 1, + sym_tycon, + STATE(15103), 1, + sym_longtycon, + STATE(18874), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1001251] = 7, + ACTIONS(17484), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17488), 1, + sym__symbolic_ident, + STATE(15614), 1, + sym_longtycon, + STATE(16139), 1, + sym_tycon, + STATE(18728), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1001274] = 7, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(27652), 1, + anon_sym_op, + STATE(13693), 1, + sym_vid, + STATE(14024), 1, + sym__exbind, + STATE(14177), 1, + sym_exbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1001297] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27654), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001316] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27656), 1, + aux_sym__quote_content_token1, + ACTIONS(27658), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18297), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001335] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27660), 1, + aux_sym__quote_content_token1, + ACTIONS(27662), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18300), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001354] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27664), 1, + aux_sym__quote_content_token1, + ACTIONS(27666), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18327), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001373] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27662), 1, + anon_sym_BQUOTE, + ACTIONS(27668), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18301), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001392] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27670), 1, + aux_sym__quote_content_token1, + ACTIONS(27672), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18309), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001411] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27672), 1, + anon_sym_BQUOTE, + ACTIONS(27674), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18311), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001430] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27666), 1, + anon_sym_BQUOTE, + ACTIONS(27676), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18328), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001449] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27658), 1, + anon_sym_BQUOTE, + ACTIONS(27678), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18299), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001468] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27654), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001487] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27680), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001506] = 6, + ACTIONS(27597), 1, + anon_sym_COLON, + ACTIONS(27599), 1, + anon_sym_andalso, + ACTIONS(27601), 1, + anon_sym_orelse, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 2, + anon_sym_do, + anon_sym_PIPE, + [1001527] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27680), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001546] = 6, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 2, + anon_sym_SEMI, + anon_sym_end, + [1001567] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27682), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001586] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27629), 1, + anon_sym_BQUOTE, + ACTIONS(27684), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18368), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001605] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27682), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001624] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27686), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001643] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27686), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001662] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27688), 1, + aux_sym__quote_content_token1, + ACTIONS(27690), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18312), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001681] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27690), 1, + anon_sym_BQUOTE, + ACTIONS(27692), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18316), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001700] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(14453), 1, + sym_longtycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1001723] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27694), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001742] = 7, + ACTIONS(18161), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18165), 1, + sym__symbolic_ident, + STATE(17224), 1, + sym_tycon, + STATE(17262), 1, + sym_longtycon, + STATE(19085), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1001765] = 6, + ACTIONS(27513), 1, + anon_sym_COLON, + ACTIONS(27515), 1, + anon_sym_andalso, + ACTIONS(27517), 1, + anon_sym_orelse, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 2, + anon_sym_then, + anon_sym_PIPE, + [1001786] = 6, + ACTIONS(27513), 1, + anon_sym_COLON, + ACTIONS(27515), 1, + anon_sym_andalso, + ACTIONS(27517), 1, + anon_sym_orelse, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 2, + anon_sym_then, + anon_sym_PIPE, + [1001807] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27696), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001826] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27694), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001845] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27696), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001864] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27698), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001883] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27700), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001902] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27702), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1001923] = 6, + ACTIONS(26758), 1, + anon_sym_handle, + ACTIONS(27055), 1, + anon_sym_COLON, + ACTIONS(27161), 1, + anon_sym_andalso, + ACTIONS(27375), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 2, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [1001944] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27698), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1001963] = 7, + ACTIONS(27704), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27706), 1, + sym__symbolic_ident, + STATE(10201), 1, + sym_longvid, + STATE(10359), 1, + sym_vid, + STATE(18857), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1001986] = 7, + ACTIONS(27708), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27710), 1, + sym__symbolic_ident, + STATE(7659), 1, + sym_longvid, + STATE(8034), 1, + sym_vid, + STATE(18922), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002009] = 7, + ACTIONS(17546), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17550), 1, + sym__symbolic_ident, + STATE(8763), 1, + sym_longtycon, + STATE(8800), 1, + sym_tycon, + STATE(19083), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002032] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27712), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1002053] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27714), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002072] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [1002085] = 7, + ACTIONS(18804), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18808), 1, + sym__symbolic_ident, + STATE(12133), 1, + sym_tycon, + STATE(12151), 1, + sym_longtycon, + STATE(19066), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002108] = 7, + ACTIONS(27716), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27718), 1, + sym__symbolic_ident, + STATE(5521), 1, + sym_longvid, + STATE(5575), 1, + sym_vid, + STATE(19199), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002131] = 7, + ACTIONS(17369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17373), 1, + sym__symbolic_ident, + STATE(14125), 1, + sym_longtycon, + STATE(14142), 1, + sym_tycon, + STATE(19236), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002154] = 6, + ACTIONS(27720), 1, + anon_sym_COLON, + ACTIONS(27722), 1, + anon_sym_andalso, + ACTIONS(27724), 1, + anon_sym_orelse, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 2, + anon_sym_of, + anon_sym_PIPE, + [1002175] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27728), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002194] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27728), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002213] = 7, + ACTIONS(27730), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27732), 1, + sym__symbolic_ident, + STATE(12121), 1, + sym_vid, + STATE(12124), 1, + sym_longvid, + STATE(19117), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002236] = 7, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(27385), 1, + sym__alphaAlphaNumeric_ident, + STATE(13579), 1, + sym_vid, + STATE(13601), 1, + sym_longvid, + STATE(18887), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002259] = 3, + ACTIONS(27734), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 5, + anon_sym_COLON, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + [1002274] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [1002287] = 3, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 5, + anon_sym_SEMI, + anon_sym_end, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + [1002302] = 6, + ACTIONS(26918), 1, + anon_sym_handle, + ACTIONS(27155), 1, + anon_sym_COLON, + ACTIONS(27169), 1, + anon_sym_andalso, + ACTIONS(27171), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + [1002323] = 7, + ACTIONS(16643), 1, + anon_sym_then, + ACTIONS(26900), 1, + anon_sym_handle, + ACTIONS(27419), 1, + anon_sym_COLON, + ACTIONS(27421), 1, + anon_sym_andalso, + ACTIONS(27423), 1, + anon_sym_orelse, + ACTIONS(27736), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002346] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27738), 1, + aux_sym__quote_content_token1, + ACTIONS(27740), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18387), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002365] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27700), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002384] = 7, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(27742), 1, + anon_sym_op, + STATE(13619), 1, + sym_vid, + STATE(13946), 1, + sym_exbind, + STATE(14024), 1, + sym__exbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002407] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27744), 1, + aux_sym__quote_content_token1, + ACTIONS(27746), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18352), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002426] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27746), 1, + anon_sym_BQUOTE, + ACTIONS(27748), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18353), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002445] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27750), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002464] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27740), 1, + anon_sym_BQUOTE, + ACTIONS(27752), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18390), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002483] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27754), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002502] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24950), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002525] = 7, + ACTIONS(16540), 1, + sym__symbolic_ident, + ACTIONS(26806), 1, + anon_sym_PIPE, + ACTIONS(26943), 1, + sym__alphaAlphaNumeric_ident, + STATE(14324), 1, + sym_vid, + STATE(14365), 1, + sym_condesc, + STATE(14448), 1, + sym__condesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002548] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25061), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002571] = 6, + ACTIONS(26908), 1, + anon_sym_handle, + ACTIONS(27581), 1, + anon_sym_COLON, + ACTIONS(27583), 1, + anon_sym_andalso, + ACTIONS(27585), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 2, + anon_sym_else, + anon_sym_do, + [1002592] = 6, + ACTIONS(26908), 1, + anon_sym_handle, + ACTIONS(27581), 1, + anon_sym_COLON, + ACTIONS(27583), 1, + anon_sym_andalso, + ACTIONS(27585), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 2, + anon_sym_else, + anon_sym_do, + [1002613] = 7, + ACTIONS(17865), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17869), 1, + sym__symbolic_ident, + STATE(11258), 1, + sym_longtycon, + STATE(11827), 1, + sym_tycon, + STATE(19203), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002636] = 4, + ACTIONS(27605), 1, + anon_sym_STAR, + STATE(18255), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DASH_GT, + [1002653] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27754), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002672] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27756), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002691] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27756), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002710] = 7, + ACTIONS(27758), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27760), 1, + sym__symbolic_ident, + STATE(4278), 1, + sym_longvid, + STATE(4281), 1, + sym_vid, + STATE(19088), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002733] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27762), 1, + aux_sym__quote_content_token1, + ACTIONS(27764), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17977), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002752] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27766), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002771] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27750), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002790] = 7, + ACTIONS(27768), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27770), 1, + sym__symbolic_ident, + STATE(5291), 1, + sym_vid, + STATE(5301), 1, + sym_longvid, + STATE(18842), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002813] = 6, + ACTIONS(27720), 1, + anon_sym_COLON, + ACTIONS(27722), 1, + anon_sym_andalso, + ACTIONS(27724), 1, + anon_sym_orelse, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16653), 2, + anon_sym_of, + anon_sym_PIPE, + [1002834] = 7, + ACTIONS(17596), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17600), 1, + sym__symbolic_ident, + STATE(15863), 1, + sym_longtycon, + STATE(16078), 1, + sym_tycon, + STATE(18706), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002857] = 7, + ACTIONS(17832), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17836), 1, + sym__symbolic_ident, + STATE(10521), 1, + sym_longtycon, + STATE(10643), 1, + sym_tycon, + STATE(19206), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002880] = 6, + ACTIONS(26918), 1, + anon_sym_handle, + ACTIONS(27155), 1, + anon_sym_COLON, + ACTIONS(27169), 1, + anon_sym_andalso, + ACTIONS(27171), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + [1002901] = 7, + ACTIONS(18671), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18675), 1, + sym__symbolic_ident, + STATE(12028), 1, + sym_longtycon, + STATE(12046), 1, + sym_tycon, + STATE(18764), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002924] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27772), 1, + aux_sym__quote_content_token1, + ACTIONS(27774), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18321), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1002943] = 7, + ACTIONS(27776), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27778), 1, + sym__symbolic_ident, + STATE(11933), 1, + sym_vid, + STATE(11936), 1, + sym_longvid, + STATE(18951), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002966] = 7, + ACTIONS(18351), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18355), 1, + sym__symbolic_ident, + STATE(15183), 1, + sym_tycon, + STATE(15412), 1, + sym_longtycon, + STATE(19224), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1002989] = 7, + ACTIONS(27780), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27782), 1, + sym__symbolic_ident, + STATE(7071), 1, + sym_longvid, + STATE(7182), 1, + sym_vid, + STATE(18750), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003012] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27766), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003031] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27784), 1, + aux_sym__quote_content_token1, + ACTIONS(27786), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18395), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003050] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27786), 1, + anon_sym_BQUOTE, + ACTIONS(27788), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18406), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003069] = 7, + ACTIONS(17776), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17780), 1, + sym__symbolic_ident, + STATE(11155), 1, + sym_longtycon, + STATE(11488), 1, + sym_tycon, + STATE(19091), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003092] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24861), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003115] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27764), 1, + anon_sym_BQUOTE, + ACTIONS(27790), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18007), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003134] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24958), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003157] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27792), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1003178] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27794), 1, + aux_sym__quote_content_token1, + ACTIONS(27796), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18394), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003197] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27796), 1, + anon_sym_BQUOTE, + ACTIONS(27798), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18397), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003216] = 6, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 2, + anon_sym_SEMI, + anon_sym_end, + [1003237] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27800), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003256] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27800), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003275] = 4, + ACTIONS(27419), 1, + anon_sym_COLON, + ACTIONS(27421), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 4, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + [1003292] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27802), 1, + aux_sym__quote_content_token1, + ACTIONS(27804), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18012), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003311] = 7, + ACTIONS(27806), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27808), 1, + sym__symbolic_ident, + STATE(9225), 1, + sym_vid, + STATE(9424), 1, + sym_longvid, + STATE(18753), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003334] = 6, + ACTIONS(27597), 1, + anon_sym_COLON, + ACTIONS(27599), 1, + anon_sym_andalso, + ACTIONS(27601), 1, + anon_sym_orelse, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 2, + anon_sym_do, + anon_sym_PIPE, + [1003355] = 6, + ACTIONS(27597), 1, + anon_sym_COLON, + ACTIONS(27599), 1, + anon_sym_andalso, + ACTIONS(27601), 1, + anon_sym_orelse, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 2, + anon_sym_do, + anon_sym_PIPE, + [1003376] = 3, + ACTIONS(27419), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 5, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_else, + [1003391] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27810), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003410] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27812), 1, + aux_sym__quote_content_token1, + ACTIONS(27814), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18433), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003429] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27814), 1, + anon_sym_BQUOTE, + ACTIONS(27816), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18434), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003448] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27810), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003467] = 7, + ACTIONS(27818), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27820), 1, + sym__symbolic_ident, + STATE(5951), 1, + sym_vid, + STATE(5960), 1, + sym_longvid, + STATE(18970), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003490] = 7, + ACTIONS(18075), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18079), 1, + sym__symbolic_ident, + STATE(10346), 1, + sym_longtycon, + STATE(10619), 1, + sym_tycon, + STATE(18977), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003513] = 7, + ACTIONS(27822), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27824), 1, + sym__symbolic_ident, + STATE(6265), 1, + sym_longvid, + STATE(6485), 1, + sym_vid, + STATE(19171), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003536] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27826), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003555] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27828), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003574] = 4, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(15523), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1003591] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27826), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003610] = 7, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + STATE(18846), 1, + sym_tycon, + STATE(18859), 1, + aux_sym_longvid_repeat1, + STATE(18871), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003633] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24975), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003656] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [1003669] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24955), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003692] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27830), 1, + aux_sym__quote_content_token1, + ACTIONS(27832), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18426), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003711] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24972), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003734] = 7, + ACTIONS(27834), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27836), 1, + sym__symbolic_ident, + STATE(9043), 1, + sym_longvid, + STATE(9077), 1, + sym_vid, + STATE(18749), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003757] = 7, + ACTIONS(17882), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17886), 1, + sym__symbolic_ident, + STATE(14990), 1, + sym_tycon, + STATE(15102), 1, + sym_longtycon, + STATE(18815), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003780] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27828), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003799] = 7, + ACTIONS(18758), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18762), 1, + sym__symbolic_ident, + STATE(17850), 1, + sym_tycon, + STATE(17882), 1, + sym_longtycon, + STATE(18939), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003822] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27838), 1, + aux_sym__quote_content_token1, + ACTIONS(27840), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18421), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003841] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27840), 1, + anon_sym_BQUOTE, + ACTIONS(27842), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18423), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003860] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27832), 1, + anon_sym_BQUOTE, + ACTIONS(27844), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18430), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1003879] = 5, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27846), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [1003898] = 4, + ACTIONS(27513), 1, + anon_sym_COLON, + ACTIONS(27515), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 4, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + [1003915] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [1003928] = 7, + ACTIONS(18045), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18049), 1, + sym__symbolic_ident, + STATE(8452), 1, + sym_longtycon, + STATE(8485), 1, + sym_tycon, + STATE(18731), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003951] = 7, + ACTIONS(27848), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27850), 1, + sym__symbolic_ident, + STATE(7451), 1, + sym_vid, + STATE(7959), 1, + sym_longvid, + STATE(18911), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1003974] = 6, + ACTIONS(26742), 1, + anon_sym_handle, + ACTIONS(27263), 1, + anon_sym_COLON, + ACTIONS(27265), 1, + anon_sym_andalso, + ACTIONS(27267), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 2, + anon_sym_else, + anon_sym_of, + [1003995] = 7, + ACTIONS(18225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18229), 1, + sym__symbolic_ident, + STATE(16739), 1, + sym_longtycon, + STATE(17062), 1, + sym_tycon, + STATE(18965), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004018] = 6, + ACTIONS(26742), 1, + anon_sym_handle, + ACTIONS(27263), 1, + anon_sym_COLON, + ACTIONS(27265), 1, + anon_sym_andalso, + ACTIONS(27267), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 2, + anon_sym_else, + anon_sym_of, + [1004039] = 3, + ACTIONS(27513), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 5, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + anon_sym_PIPE, + [1004054] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24887), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004077] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27852), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004096] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25047), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004119] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27852), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004138] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27714), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004157] = 7, + ACTIONS(27854), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27856), 1, + sym__symbolic_ident, + STATE(10093), 1, + sym_longvid, + STATE(10314), 1, + sym_vid, + STATE(18920), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004180] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27858), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004199] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27860), 1, + aux_sym__quote_content_token1, + ACTIONS(27862), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18444), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004218] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27862), 1, + anon_sym_BQUOTE, + ACTIONS(27864), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18445), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004237] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(13064), 1, + sym_longtycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004260] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27858), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004279] = 7, + ACTIONS(27297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27299), 1, + sym__symbolic_ident, + STATE(10287), 1, + sym_vid, + STATE(11544), 1, + sym_longvid, + STATE(18882), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004302] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27866), 1, + aux_sym__quote_content_token1, + ACTIONS(27868), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18509), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004321] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27870), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004340] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27870), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004359] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27872), 1, + aux_sym__quote_content_token1, + ACTIONS(27874), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18471), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004378] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27874), 1, + anon_sym_BQUOTE, + ACTIONS(27876), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18477), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004397] = 7, + ACTIONS(17409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17413), 1, + sym__symbolic_ident, + STATE(14318), 1, + sym_tycon, + STATE(14341), 1, + sym_longtycon, + STATE(19165), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004420] = 7, + ACTIONS(27878), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27880), 1, + sym__symbolic_ident, + STATE(5677), 1, + sym_vid, + STATE(5754), 1, + sym_longvid, + STATE(19054), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004443] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27882), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004462] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27868), 1, + anon_sym_BQUOTE, + ACTIONS(27884), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18510), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004481] = 6, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27886), 2, + anon_sym_SEMI, + anon_sym_end, + [1004502] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27403), 1, + anon_sym_BQUOTE, + ACTIONS(27888), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18669), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004521] = 7, + ACTIONS(18151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18155), 1, + sym__symbolic_ident, + STATE(15310), 1, + sym_tycon, + STATE(15446), 1, + sym_longtycon, + STATE(18716), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004544] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27890), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004563] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27890), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004582] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25046), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004605] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25053), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004628] = 4, + ACTIONS(27581), 1, + anon_sym_COLON, + ACTIONS(27583), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 4, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + [1004645] = 6, + ACTIONS(27720), 1, + anon_sym_COLON, + ACTIONS(27722), 1, + anon_sym_andalso, + ACTIONS(27724), 1, + anon_sym_orelse, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 2, + anon_sym_of, + anon_sym_PIPE, + [1004666] = 6, + ACTIONS(27720), 1, + anon_sym_COLON, + ACTIONS(27722), 1, + anon_sym_andalso, + ACTIONS(27724), 1, + anon_sym_orelse, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 2, + anon_sym_of, + anon_sym_PIPE, + [1004687] = 3, + ACTIONS(27581), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 5, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_do, + [1004702] = 6, + ACTIONS(24184), 1, + anon_sym_COLON, + ACTIONS(24190), 1, + anon_sym_andalso, + ACTIONS(24192), 1, + anon_sym_orelse, + ACTIONS(24194), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 2, + anon_sym_SEMI, + anon_sym_end, + [1004723] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27892), 1, + aux_sym__quote_content_token1, + ACTIONS(27894), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18459), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004742] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24878), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004765] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24882), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004788] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27894), 1, + anon_sym_BQUOTE, + ACTIONS(27896), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18462), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004807] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27898), 1, + aux_sym__quote_content_token1, + ACTIONS(27900), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18051), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004826] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27900), 1, + anon_sym_BQUOTE, + ACTIONS(27902), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18189), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004845] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27904), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004864] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27906), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1004885] = 3, + ACTIONS(27908), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 5, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_DASH_GT, + [1004900] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27904), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004919] = 7, + ACTIONS(27910), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27912), 1, + sym__symbolic_ident, + STATE(6019), 1, + sym_longvid, + STATE(6084), 1, + sym_vid, + STATE(19181), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004942] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27245), 1, + anon_sym_BQUOTE, + ACTIONS(27914), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18001), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1004961] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25024), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1004984] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25027), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005007] = 6, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27916), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [1005028] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27918), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1005049] = 4, + ACTIONS(27920), 1, + anon_sym_STAR, + STATE(18497), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DASH_GT, + [1005066] = 4, + ACTIONS(27597), 1, + anon_sym_COLON, + ACTIONS(27599), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 4, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + [1005083] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27922), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1005102] = 7, + ACTIONS(27924), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27926), 1, + sym__symbolic_ident, + STATE(7663), 1, + sym_longvid, + STATE(7832), 1, + sym_vid, + STATE(18984), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005125] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24908), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005148] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24916), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005171] = 6, + ACTIONS(26900), 1, + anon_sym_handle, + ACTIONS(27419), 1, + anon_sym_COLON, + ACTIONS(27421), 1, + anon_sym_andalso, + ACTIONS(27423), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16639), 2, + anon_sym_then, + anon_sym_else, + [1005192] = 3, + ACTIONS(27597), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 5, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + anon_sym_PIPE, + [1005207] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27922), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1005226] = 7, + ACTIONS(18748), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18752), 1, + sym__symbolic_ident, + STATE(12740), 1, + sym_longtycon, + STATE(12838), 1, + sym_tycon, + STATE(19043), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005249] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24914), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005272] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24919), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005295] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27928), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1005314] = 7, + ACTIONS(27930), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27932), 1, + sym__symbolic_ident, + STATE(9231), 1, + sym_vid, + STATE(9440), 1, + sym_longvid, + STATE(18949), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005337] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27934), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1005358] = 7, + ACTIONS(16643), 1, + anon_sym_do, + ACTIONS(26908), 1, + anon_sym_handle, + ACTIONS(27581), 1, + anon_sym_COLON, + ACTIONS(27583), 1, + anon_sym_andalso, + ACTIONS(27585), 1, + anon_sym_orelse, + ACTIONS(27936), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005381] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(27938), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1005402] = 3, + ACTIONS(27940), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + anon_sym_DASH_GT, + [1005417] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27942), 1, + aux_sym__quote_content_token1, + ACTIONS(27944), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18501), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1005436] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27944), 1, + anon_sym_BQUOTE, + ACTIONS(27946), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18502), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1005455] = 7, + ACTIONS(18085), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18089), 1, + sym__symbolic_ident, + STATE(9639), 1, + sym_longtycon, + STATE(9794), 1, + sym_tycon, + STATE(19097), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005478] = 7, + ACTIONS(27948), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27950), 1, + sym__symbolic_ident, + STATE(10519), 1, + sym_longvid, + STATE(10670), 1, + sym_vid, + STATE(18877), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005501] = 7, + ACTIONS(27952), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27954), 1, + sym__symbolic_ident, + STATE(6898), 1, + sym_longvid, + STATE(7063), 1, + sym_vid, + STATE(19215), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005524] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25011), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005547] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(25014), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005570] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24924), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005593] = 4, + ACTIONS(27451), 1, + anon_sym_STAR, + STATE(18496), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 4, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_where, + [1005610] = 4, + ACTIONS(27956), 1, + anon_sym_STAR, + STATE(18496), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 4, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_where, + [1005627] = 4, + ACTIONS(27920), 1, + anon_sym_STAR, + STATE(18661), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DASH_GT, + [1005644] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + STATE(24941), 1, + sym_longtycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005667] = 7, + ACTIONS(17716), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17720), 1, + sym__symbolic_ident, + STATE(10050), 1, + sym_longtycon, + STATE(10171), 1, + sym_tycon, + STATE(18870), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005690] = 7, + ACTIONS(27959), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27961), 1, + sym__symbolic_ident, + STATE(10366), 1, + sym_longvid, + STATE(10758), 1, + sym_vid, + STATE(19039), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005713] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27963), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1005732] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27963), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1005751] = 7, + ACTIONS(27965), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27967), 1, + sym__symbolic_ident, + STATE(4229), 1, + sym_vid, + STATE(4238), 1, + sym_longvid, + STATE(19087), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005774] = 4, + ACTIONS(27263), 1, + anon_sym_COLON, + ACTIONS(27265), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 4, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + [1005791] = 7, + ACTIONS(17656), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17660), 1, + sym__symbolic_ident, + STATE(15318), 1, + sym_tycon, + STATE(15455), 1, + sym_longtycon, + STATE(19063), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005814] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24859), 1, + sym_longtycon, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005837] = 7, + ACTIONS(27969), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27971), 1, + sym__symbolic_ident, + STATE(10363), 1, + sym_vid, + STATE(10932), 1, + sym_longvid, + STATE(19259), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005860] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27973), 1, + aux_sym__quote_content_token1, + ACTIONS(27975), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18525), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1005879] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27977), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1005898] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27977), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1005917] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27975), 1, + anon_sym_BQUOTE, + ACTIONS(27979), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18526), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1005936] = 6, + ACTIONS(27981), 1, + anon_sym_LPAREN, + STATE(13487), 1, + sym_hol_identifier, + STATE(18572), 1, + sym_hol_eqn, + STATE(24746), 1, + sym_hol_fn_spec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27983), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + [1005957] = 7, + ACTIONS(18181), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18185), 1, + sym__symbolic_ident, + STATE(15229), 1, + sym_tycon, + STATE(15469), 1, + sym_longtycon, + STATE(18821), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1005980] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27985), 1, + aux_sym__quote_content_token1, + ACTIONS(27987), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18564), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1005999] = 7, + ACTIONS(27989), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27991), 1, + sym__symbolic_ident, + STATE(8959), 1, + sym_vid, + STATE(9048), 1, + sym_longvid, + STATE(18752), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006022] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27987), 1, + anon_sym_BQUOTE, + ACTIONS(27993), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18569), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006041] = 7, + ACTIONS(17992), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17996), 1, + sym__symbolic_ident, + STATE(15320), 1, + sym_tycon, + STATE(15425), 1, + sym_longtycon, + STATE(19250), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006064] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27995), 1, + aux_sym__quote_content_token1, + ACTIONS(27997), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18539), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006083] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27997), 1, + anon_sym_BQUOTE, + ACTIONS(27999), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18540), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006102] = 7, + ACTIONS(18921), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18925), 1, + sym__symbolic_ident, + STATE(15266), 1, + sym_tycon, + STATE(15420), 1, + sym_longtycon, + STATE(19151), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006125] = 7, + ACTIONS(28001), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28003), 1, + sym__symbolic_ident, + STATE(10614), 1, + sym_longvid, + STATE(10631), 1, + sym_vid, + STATE(19243), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006148] = 7, + ACTIONS(18505), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18509), 1, + sym__symbolic_ident, + STATE(18107), 1, + sym_tycon, + STATE(18413), 1, + sym_longtycon, + STATE(19182), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006171] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28005), 1, + aux_sym__quote_content_token1, + ACTIONS(28007), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18533), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006190] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28007), 1, + anon_sym_BQUOTE, + ACTIONS(28009), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18534), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006209] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28011), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006228] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28011), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006247] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28013), 1, + aux_sym__quote_content_token1, + ACTIONS(28015), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18535), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006266] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28015), 1, + anon_sym_BQUOTE, + ACTIONS(28017), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18536), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006285] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(15123), 1, + sym_longtycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006308] = 7, + ACTIONS(18738), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18742), 1, + sym__symbolic_ident, + STATE(13124), 1, + sym_longtycon, + STATE(13232), 1, + sym_tycon, + STATE(18893), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006331] = 7, + ACTIONS(17556), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17560), 1, + sym__symbolic_ident, + STATE(8746), 1, + sym_tycon, + STATE(8822), 1, + sym_longtycon, + STATE(18766), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006354] = 4, + ACTIONS(27720), 1, + anon_sym_COLON, + ACTIONS(27722), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 4, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + [1006371] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28019), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006390] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28019), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006409] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28021), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006428] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28021), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006447] = 6, + ACTIONS(26818), 1, + anon_sym_handle, + ACTIONS(27143), 1, + anon_sym_COLON, + ACTIONS(27145), 1, + anon_sym_andalso, + ACTIONS(27569), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 2, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [1006468] = 6, + ACTIONS(26818), 1, + anon_sym_handle, + ACTIONS(27143), 1, + anon_sym_COLON, + ACTIONS(27145), 1, + anon_sym_andalso, + ACTIONS(27569), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 2, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [1006489] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28023), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006508] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28023), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006527] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27774), 1, + anon_sym_BQUOTE, + ACTIONS(28025), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18424), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006546] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28027), 1, + aux_sym__quote_content_token1, + ACTIONS(28029), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18591), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006565] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28031), 1, + aux_sym__quote_content_token1, + ACTIONS(28033), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18590), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006584] = 7, + ACTIONS(16540), 1, + sym__symbolic_ident, + ACTIONS(26802), 1, + anon_sym_PIPE, + ACTIONS(26943), 1, + sym__alphaAlphaNumeric_ident, + STATE(14321), 1, + sym_vid, + STATE(14336), 1, + sym_condesc, + STATE(14448), 1, + sym__condesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006607] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28033), 1, + anon_sym_BQUOTE, + ACTIONS(28035), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18605), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006626] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28037), 1, + aux_sym__quote_content_token1, + ACTIONS(28039), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18615), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006645] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28039), 1, + anon_sym_BQUOTE, + ACTIONS(28041), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18616), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006664] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(28043), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1006685] = 7, + ACTIONS(17474), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17478), 1, + sym__symbolic_ident, + STATE(12101), 1, + sym_longtycon, + STATE(12141), 1, + sym_tycon, + STATE(18947), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006708] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27882), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006727] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28029), 1, + anon_sym_BQUOTE, + ACTIONS(28045), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18608), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006746] = 4, + ACTIONS(27549), 1, + anon_sym_STAR, + STATE(18553), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 4, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_where, + [1006763] = 4, + ACTIONS(28047), 1, + anon_sym_STAR, + STATE(18553), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 4, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_where, + [1006780] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28050), 1, + aux_sym__quote_content_token1, + ACTIONS(28052), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17991), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006799] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28052), 1, + anon_sym_BQUOTE, + ACTIONS(28054), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17992), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1006818] = 7, + ACTIONS(17932), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17936), 1, + sym__symbolic_ident, + STATE(11409), 1, + sym_tycon, + STATE(11900), 1, + sym_longtycon, + STATE(18959), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006841] = 6, + ACTIONS(26758), 1, + anon_sym_handle, + ACTIONS(27055), 1, + anon_sym_COLON, + ACTIONS(27161), 1, + anon_sym_andalso, + ACTIONS(27375), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16620), 2, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [1006862] = 6, + ACTIONS(26758), 1, + anon_sym_handle, + ACTIONS(27055), 1, + anon_sym_COLON, + ACTIONS(27161), 1, + anon_sym_andalso, + ACTIONS(27375), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16628), 2, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [1006883] = 3, + ACTIONS(27263), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 5, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_else, + anon_sym_of, + [1006898] = 7, + ACTIONS(18853), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18857), 1, + sym__symbolic_ident, + STATE(11356), 1, + sym_tycon, + STATE(11547), 1, + sym_longtycon, + STATE(18997), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006921] = 7, + ACTIONS(28056), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28058), 1, + sym__symbolic_ident, + STATE(6318), 1, + sym_longvid, + STATE(6515), 1, + sym_vid, + STATE(19231), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006944] = 7, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9264), 1, + sym_tycon, + STATE(15168), 1, + sym_longtycon, + STATE(19082), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1006967] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15569), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + ACTIONS(15571), 4, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [1006982] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28060), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007001] = 7, + ACTIONS(18489), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18493), 1, + sym__symbolic_ident, + STATE(16654), 1, + sym_tycon, + STATE(16662), 1, + sym_longtycon, + STATE(19090), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007024] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 6, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [1007037] = 7, + ACTIONS(17912), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17916), 1, + sym__symbolic_ident, + STATE(14259), 1, + sym_tycon, + STATE(14296), 1, + sym_longtycon, + STATE(18934), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007060] = 7, + ACTIONS(28062), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28064), 1, + sym__symbolic_ident, + STATE(6374), 1, + sym_longvid, + STATE(6533), 1, + sym_vid, + STATE(19237), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007083] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28060), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007102] = 7, + ACTIONS(28066), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28068), 1, + sym__symbolic_ident, + STATE(4323), 1, + sym_longvid, + STATE(4481), 1, + sym_vid, + STATE(18960), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007125] = 7, + ACTIONS(28070), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28072), 1, + sym__symbolic_ident, + STATE(8961), 1, + sym_vid, + STATE(9114), 1, + sym_longvid, + STATE(18849), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007148] = 6, + ACTIONS(27499), 1, + anon_sym_u2227, + ACTIONS(27501), 1, + anon_sym_SLASH_BSLASH, + STATE(21174), 1, + aux_sym_hol_fn_spec_repeat1, + STATE(21175), 1, + aux_sym_hol_fn_spec_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28074), 2, + anon_sym_End, + anon_sym_Termination, + [1007169] = 7, + ACTIONS(17379), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17383), 1, + sym__symbolic_ident, + STATE(11306), 1, + sym_tycon, + STATE(11468), 1, + sym_longtycon, + STATE(19241), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007192] = 7, + ACTIONS(17952), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17956), 1, + sym__symbolic_ident, + STATE(10091), 1, + sym_longtycon, + STATE(10323), 1, + sym_tycon, + STATE(19172), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007215] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28076), 1, + aux_sym__quote_content_token1, + ACTIONS(28078), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18585), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007234] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28078), 1, + anon_sym_BQUOTE, + ACTIONS(28080), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18586), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007253] = 7, + ACTIONS(28082), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28084), 1, + sym__symbolic_ident, + STATE(7719), 1, + sym_longvid, + STATE(7836), 1, + sym_vid, + STATE(19108), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007276] = 7, + ACTIONS(28086), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28088), 1, + sym__symbolic_ident, + STATE(6986), 1, + sym_longvid, + STATE(7314), 1, + sym_vid, + STATE(19107), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007299] = 7, + ACTIONS(17536), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17540), 1, + sym__symbolic_ident, + STATE(15725), 1, + sym_longtycon, + STATE(15770), 1, + sym_tycon, + STATE(18730), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007322] = 7, + ACTIONS(18191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18195), 1, + sym__symbolic_ident, + STATE(15170), 1, + sym_longtycon, + STATE(15273), 1, + sym_tycon, + STATE(19069), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007345] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28090), 1, + aux_sym__quote_content_token1, + ACTIONS(28092), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18596), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007364] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27305), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007383] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28092), 1, + anon_sym_BQUOTE, + ACTIONS(28094), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18597), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007402] = 7, + ACTIONS(17795), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17799), 1, + sym__symbolic_ident, + STATE(15044), 1, + sym_longtycon, + STATE(15104), 1, + sym_tycon, + STATE(19220), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007425] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28096), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007444] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28096), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007463] = 7, + ACTIONS(18095), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18099), 1, + sym__symbolic_ident, + STATE(9756), 1, + sym_longtycon, + STATE(9872), 1, + sym_tycon, + STATE(19159), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007486] = 4, + ACTIONS(16528), 1, + anon_sym_COLON, + ACTIONS(28098), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 4, + anon_sym_end, + anon_sym_and, + anon_sym_COLON_GT, + anon_sym_where, + [1007503] = 7, + ACTIONS(28100), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28102), 1, + sym__symbolic_ident, + STATE(6774), 1, + sym_longvid, + STATE(6887), 1, + sym_vid, + STATE(19207), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007526] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28104), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007545] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28106), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007564] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28108), 1, + aux_sym__quote_content_token1, + ACTIONS(28110), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18628), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007583] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28110), 1, + anon_sym_BQUOTE, + ACTIONS(28112), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18658), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007602] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(28114), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1007623] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28116), 1, + aux_sym__quote_content_token1, + ACTIONS(28118), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18610), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007642] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28120), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007661] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28120), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007680] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28118), 1, + anon_sym_BQUOTE, + ACTIONS(28122), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18611), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007699] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28124), 1, + aux_sym__quote_content_token1, + ACTIONS(28126), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18622), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007718] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28126), 1, + anon_sym_BQUOTE, + ACTIONS(28128), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18625), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007737] = 3, + ACTIONS(27720), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 5, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + anon_sym_PIPE, + [1007752] = 7, + ACTIONS(16540), 1, + sym__symbolic_ident, + ACTIONS(26802), 1, + anon_sym_PIPE, + ACTIONS(26943), 1, + sym__alphaAlphaNumeric_ident, + STATE(14321), 1, + sym_vid, + STATE(14336), 1, + sym_condesc, + STATE(14851), 1, + sym__condesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007775] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28130), 1, + aux_sym__quote_content_token1, + ACTIONS(28132), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18618), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007794] = 7, + ACTIONS(26943), 1, + sym__symbolic_ident, + ACTIONS(27431), 1, + sym__alphaAlphaNumeric_ident, + STATE(11435), 1, + sym_vid, + STATE(19175), 1, + aux_sym_longvid_repeat1, + STATE(24806), 1, + sym_longvid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007817] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28104), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007836] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28132), 1, + anon_sym_BQUOTE, + ACTIONS(28134), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18619), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007855] = 7, + ACTIONS(27455), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27457), 1, + sym__symbolic_ident, + STATE(8827), 1, + sym_vid, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24816), 1, + sym_longvid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007878] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28106), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007897] = 7, + ACTIONS(17922), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17926), 1, + sym__symbolic_ident, + STATE(10518), 1, + sym_longtycon, + STATE(10629), 1, + sym_tycon, + STATE(18894), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007920] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28136), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007939] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28136), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1007958] = 7, + ACTIONS(26943), 1, + sym__symbolic_ident, + ACTIONS(27431), 1, + sym__alphaAlphaNumeric_ident, + STATE(11435), 1, + sym_vid, + STATE(13026), 1, + sym_longvid, + STATE(19175), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1007981] = 4, + ACTIONS(16528), 1, + anon_sym_COLON, + ACTIONS(28138), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 4, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_COLON_GT, + anon_sym_where, + [1007998] = 7, + ACTIONS(28140), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28142), 1, + sym__symbolic_ident, + STATE(5460), 1, + sym_longvid, + STATE(5512), 1, + sym_vid, + STATE(19142), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008021] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28144), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008040] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28144), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008059] = 7, + ACTIONS(27455), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27457), 1, + sym__symbolic_ident, + STATE(8803), 1, + sym_vid, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24816), 1, + sym_longvid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008082] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28146), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008101] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28146), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008120] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(28148), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1008141] = 7, + ACTIONS(27455), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27457), 1, + sym__symbolic_ident, + STATE(8811), 1, + sym_vid, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24816), 1, + sym_longvid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008164] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28150), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008183] = 7, + ACTIONS(28152), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28154), 1, + sym__symbolic_ident, + STATE(4944), 1, + sym_vid, + STATE(5144), 1, + sym_longvid, + STATE(19209), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008206] = 6, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28156), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1008227] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28150), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008246] = 7, + ACTIONS(17464), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17468), 1, + sym__symbolic_ident, + STATE(14300), 1, + sym_tycon, + STATE(14306), 1, + sym_longtycon, + STATE(18833), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008269] = 7, + ACTIONS(27455), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27457), 1, + sym__symbolic_ident, + STATE(8826), 1, + sym_vid, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24816), 1, + sym_longvid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008292] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28158), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008311] = 7, + ACTIONS(28160), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28162), 1, + sym__symbolic_ident, + STATE(7500), 1, + sym_vid, + STATE(7975), 1, + sym_longvid, + STATE(18762), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008334] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28164), 1, + aux_sym__quote_content_token1, + ACTIONS(28166), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18650), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008353] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28166), 1, + anon_sym_BQUOTE, + ACTIONS(28168), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18651), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008372] = 7, + ACTIONS(17855), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17859), 1, + sym__symbolic_ident, + STATE(9725), 1, + sym_longtycon, + STATE(9951), 1, + sym_tycon, + STATE(19033), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008395] = 7, + ACTIONS(18515), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18519), 1, + sym__symbolic_ident, + STATE(13028), 1, + sym_tycon, + STATE(13102), 1, + sym_longtycon, + STATE(18829), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008418] = 7, + ACTIONS(27455), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27457), 1, + sym__symbolic_ident, + STATE(8751), 1, + sym_vid, + STATE(19146), 1, + aux_sym_longvid_repeat1, + STATE(24816), 1, + sym_longvid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008441] = 5, + ACTIONS(16884), 1, + anon_sym_COLON, + ACTIONS(28170), 1, + anon_sym_and, + STATE(18635), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16882), 3, + anon_sym_end, + anon_sym_COLON_GT, + anon_sym_where, + [1008460] = 7, + ACTIONS(28173), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28175), 1, + sym__symbolic_ident, + STATE(7130), 1, + sym_longvid, + STATE(7188), 1, + sym_vid, + STATE(18880), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008483] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28177), 1, + aux_sym__quote_content_token1, + ACTIONS(28179), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18034), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008502] = 7, + ACTIONS(18205), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18209), 1, + sym__symbolic_ident, + STATE(15238), 1, + sym_longtycon, + STATE(15316), 1, + sym_tycon, + STATE(18707), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008525] = 7, + ACTIONS(18055), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18059), 1, + sym__symbolic_ident, + STATE(9666), 1, + sym_longtycon, + STATE(10034), 1, + sym_tycon, + STATE(18741), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008548] = 7, + ACTIONS(17805), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17809), 1, + sym__symbolic_ident, + STATE(8541), 1, + sym_tycon, + STATE(8709), 1, + sym_longtycon, + STATE(19110), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008571] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28179), 1, + anon_sym_BQUOTE, + ACTIONS(28181), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18095), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008590] = 7, + ACTIONS(28183), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28185), 1, + sym__symbolic_ident, + STATE(7438), 1, + sym_vid, + STATE(7823), 1, + sym_longvid, + STATE(18958), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1008613] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28187), 1, + aux_sym__quote_content_token1, + ACTIONS(28189), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18659), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008632] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28191), 1, + aux_sym__quote_content_token1, + ACTIONS(28193), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18656), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008651] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28193), 1, + anon_sym_BQUOTE, + ACTIONS(28195), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18657), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008670] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28189), 1, + anon_sym_BQUOTE, + ACTIONS(28197), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18660), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008689] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28199), 1, + aux_sym__quote_content_token1, + ACTIONS(28201), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18652), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008708] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28201), 1, + anon_sym_BQUOTE, + ACTIONS(28203), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18653), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008727] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(28205), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1008748] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28207), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008767] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28207), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008786] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28209), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008805] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28209), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008824] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28211), 1, + aux_sym__quote_content_token1, + ACTIONS(28213), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18670), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008843] = 6, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28215), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1008864] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28217), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008883] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28217), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008902] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28158), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008921] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28219), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008940] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28219), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008959] = 4, + ACTIONS(28221), 1, + anon_sym_STAR, + STATE(18661), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DASH_GT, + [1008976] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28213), 1, + anon_sym_BQUOTE, + ACTIONS(28224), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18671), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1008995] = 7, + ACTIONS(17706), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17710), 1, + sym__symbolic_ident, + STATE(16030), 1, + sym_longtycon, + STATE(16202), 1, + sym_tycon, + STATE(19060), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009018] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28226), 1, + aux_sym__quote_content_token1, + ACTIONS(28228), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18214), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009037] = 6, + ACTIONS(27981), 1, + anon_sym_LPAREN, + STATE(13487), 1, + sym_hol_identifier, + STATE(18572), 1, + sym_hol_eqn, + STATE(24782), 1, + sym_hol_fn_spec, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27983), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + [1009058] = 7, + ACTIONS(12022), 1, + ts_builtin_sym_end, + ACTIONS(12024), 1, + anon_sym_SEMI, + ACTIONS(26918), 1, + anon_sym_handle, + ACTIONS(27155), 1, + anon_sym_COLON, + ACTIONS(27169), 1, + anon_sym_andalso, + ACTIONS(27171), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009081] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28230), 1, + aux_sym__quote_content_token1, + ACTIONS(28232), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17973), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009100] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28232), 1, + anon_sym_BQUOTE, + ACTIONS(28234), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17976), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009119] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(27928), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009138] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28236), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009157] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27049), 1, + aux_sym__quote_content_token1, + ACTIONS(28236), 1, + anon_sym_BQUOTE, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17815), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009176] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28228), 1, + anon_sym_BQUOTE, + ACTIONS(28238), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18270), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009195] = 7, + ACTIONS(28240), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28242), 1, + sym__symbolic_ident, + STATE(10307), 1, + sym_longvid, + STATE(10688), 1, + sym_vid, + STATE(18998), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009218] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(28244), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1009239] = 6, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + ACTIONS(28246), 1, + anon_sym_DOT, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18106), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1009260] = 7, + ACTIONS(28248), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28250), 1, + sym__symbolic_ident, + STATE(6954), 1, + sym_longvid, + STATE(7068), 1, + sym_vid, + STATE(18811), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009283] = 5, + ACTIONS(16884), 1, + anon_sym_COLON, + ACTIONS(28252), 1, + anon_sym_and, + STATE(18677), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16882), 3, + anon_sym_RPAREN, + anon_sym_COLON_GT, + anon_sym_where, + [1009302] = 7, + ACTIONS(17726), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17730), 1, + sym__symbolic_ident, + STATE(10123), 1, + sym_longtycon, + STATE(10219), 1, + sym_tycon, + STATE(18726), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009325] = 7, + ACTIONS(18631), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18635), 1, + sym__symbolic_ident, + STATE(13376), 1, + sym_tycon, + STATE(13394), 1, + sym_longtycon, + STATE(19048), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009348] = 7, + ACTIONS(28255), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28257), 1, + sym__symbolic_ident, + STATE(7513), 1, + sym_longvid, + STATE(7867), 1, + sym_vid, + STATE(19219), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009371] = 7, + ACTIONS(28259), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28261), 1, + sym__symbolic_ident, + STATE(10294), 1, + sym_vid, + STATE(10942), 1, + sym_longvid, + STATE(18723), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009394] = 5, + ACTIONS(16898), 1, + anon_sym_COLON, + ACTIONS(28263), 1, + anon_sym_and, + STATE(18635), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 3, + anon_sym_end, + anon_sym_COLON_GT, + anon_sym_where, + [1009413] = 5, + ACTIONS(16905), 1, + anon_sym_COLON, + ACTIONS(28263), 1, + anon_sym_and, + STATE(18635), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16903), 3, + anon_sym_end, + anon_sym_COLON_GT, + anon_sym_where, + [1009432] = 5, + ACTIONS(16891), 1, + anon_sym_COLON, + ACTIONS(28263), 1, + anon_sym_and, + STATE(18682), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16889), 3, + anon_sym_end, + anon_sym_COLON_GT, + anon_sym_where, + [1009451] = 5, + ACTIONS(16898), 1, + anon_sym_COLON, + ACTIONS(28263), 1, + anon_sym_and, + STATE(18683), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 3, + anon_sym_end, + anon_sym_COLON_GT, + anon_sym_where, + [1009470] = 7, + ACTIONS(17815), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17819), 1, + sym__symbolic_ident, + STATE(10477), 1, + sym_longtycon, + STATE(10583), 1, + sym_tycon, + STATE(19112), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009493] = 7, + ACTIONS(28265), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28267), 1, + sym__symbolic_ident, + STATE(5965), 1, + sym_longvid, + STATE(6481), 1, + sym_vid, + STATE(19226), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009516] = 5, + ACTIONS(16905), 1, + anon_sym_COLON, + ACTIONS(27045), 1, + anon_sym_and, + STATE(18677), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16903), 3, + anon_sym_RPAREN, + anon_sym_COLON_GT, + anon_sym_where, + [1009535] = 5, + ACTIONS(16891), 1, + anon_sym_COLON, + ACTIONS(27045), 1, + anon_sym_and, + STATE(17966), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16889), 3, + anon_sym_RPAREN, + anon_sym_COLON_GT, + anon_sym_where, + [1009554] = 5, + ACTIONS(16898), 1, + anon_sym_COLON, + ACTIONS(27045), 1, + anon_sym_and, + STATE(18688), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 3, + anon_sym_RPAREN, + anon_sym_COLON_GT, + anon_sym_where, + [1009573] = 3, + ACTIONS(27143), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 5, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [1009588] = 7, + ACTIONS(18025), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18029), 1, + sym__symbolic_ident, + STATE(8501), 1, + sym_tycon, + STATE(8721), 1, + sym_longtycon, + STATE(18844), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009611] = 7, + ACTIONS(18215), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18219), 1, + sym__symbolic_ident, + STATE(10434), 1, + sym_longtycon, + STATE(10855), 1, + sym_tycon, + STATE(18854), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009634] = 7, + ACTIONS(28269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28271), 1, + sym__symbolic_ident, + STATE(11083), 1, + sym_longvid, + STATE(11420), 1, + sym_vid, + STATE(18733), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009657] = 7, + ACTIONS(18879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18883), 1, + sym__symbolic_ident, + STATE(15164), 1, + sym_tycon, + STATE(15265), 1, + sym_longtycon, + STATE(19230), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009680] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28273), 1, + aux_sym__quote_content_token1, + ACTIONS(28275), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17967), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009699] = 7, + ACTIONS(28277), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28279), 1, + sym__symbolic_ident, + STATE(11160), 1, + sym_longvid, + STATE(11752), 1, + sym_vid, + STATE(19204), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009722] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28281), 1, + aux_sym__quote_content_token1, + ACTIONS(28283), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18582), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009741] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28283), 1, + anon_sym_BQUOTE, + ACTIONS(28285), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18113), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009760] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28287), 1, + aux_sym__quote_content_token1, + ACTIONS(28289), 1, + anon_sym_u2019, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17969), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009779] = 7, + ACTIONS(16540), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26943), 1, + sym__symbolic_ident, + ACTIONS(28291), 1, + anon_sym_op, + STATE(11329), 1, + sym_vid, + STATE(12645), 1, + sym_exbind, + STATE(13300), 1, + sym__exbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009802] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28289), 1, + anon_sym_BQUOTE, + ACTIONS(28293), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17975), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009821] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(28275), 1, + anon_sym_BQUOTE, + ACTIONS(28295), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17968), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009840] = 5, + ACTIONS(27047), 1, + anon_sym_CARET, + ACTIONS(27804), 1, + anon_sym_u2019, + ACTIONS(28297), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18008), 3, + sym_antiquoted, + sym__quote_content, + aux_sym_backquote_repeat1, + [1009859] = 6, + ACTIONS(26818), 1, + anon_sym_handle, + ACTIONS(27143), 1, + anon_sym_COLON, + ACTIONS(27145), 1, + anon_sym_andalso, + ACTIONS(27569), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(21734), 2, + anon_sym_End, + anon_sym_BSLASH_BSLASH, + [1009880] = 6, + ACTIONS(17596), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17600), 1, + sym__symbolic_ident, + STATE(16090), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009900] = 6, + ACTIONS(18205), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18209), 1, + sym__symbolic_ident, + STATE(15331), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009920] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18620), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1009938] = 6, + ACTIONS(27357), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27359), 1, + sym__symbolic_ident, + STATE(6604), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009958] = 6, + ACTIONS(17696), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17700), 1, + sym__symbolic_ident, + STATE(10051), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009978] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28305), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1009998] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28313), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010018] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28321), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010038] = 6, + ACTIONS(17982), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17986), 1, + sym__symbolic_ident, + STATE(15414), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010058] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18460), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1010076] = 6, + ACTIONS(18151), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18155), 1, + sym__symbolic_ident, + STATE(15180), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010096] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28323), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010116] = 6, + ACTIONS(16620), 1, + anon_sym_then, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010136] = 5, + ACTIONS(28325), 1, + anon_sym_COMMA, + STATE(8184), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27846), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [1010154] = 6, + ACTIONS(27533), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27535), 1, + sym__symbolic_ident, + STATE(8213), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010174] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28328), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010194] = 6, + ACTIONS(16628), 1, + anon_sym_of, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010214] = 6, + ACTIONS(28259), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28261), 1, + sym__symbolic_ident, + STATE(10317), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010234] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18046), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1010252] = 6, + ACTIONS(27137), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27139), 1, + sym__symbolic_ident, + STATE(7126), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010272] = 6, + ACTIONS(17726), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17730), 1, + sym__symbolic_ident, + STATE(10228), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010292] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28330), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010312] = 6, + ACTIONS(17484), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17488), 1, + sym__symbolic_ident, + STATE(16177), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010332] = 5, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28332), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1010350] = 6, + ACTIONS(17536), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17540), 1, + sym__symbolic_ident, + STATE(15980), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010370] = 6, + ACTIONS(18045), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18049), 1, + sym__symbolic_ident, + STATE(8468), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010390] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28334), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010410] = 6, + ACTIONS(28269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28271), 1, + sym__symbolic_ident, + STATE(11380), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010430] = 6, + ACTIONS(17389), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17393), 1, + sym__symbolic_ident, + STATE(8984), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010450] = 6, + ACTIONS(27415), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27417), 1, + sym__symbolic_ident, + STATE(13846), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010470] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28336), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010490] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28338), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010510] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28340), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010530] = 6, + ACTIONS(18371), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18375), 1, + sym__symbolic_ident, + STATE(10680), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010550] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18468), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1010568] = 6, + ACTIONS(18055), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18059), 1, + sym__symbolic_ident, + STATE(9578), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010588] = 6, + ACTIONS(16540), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26732), 1, + anon_sym_op, + ACTIONS(26943), 1, + sym__symbolic_ident, + STATE(18748), 1, + sym_conbind, + STATE(19234), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010608] = 5, + ACTIONS(17064), 1, + anon_sym_with, + ACTIONS(28342), 1, + anon_sym_PIPE, + STATE(19248), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17062), 2, + anon_sym_and, + anon_sym_withtype, + [1010626] = 5, + STATE(15061), 1, + sym_valdesc, + STATE(15322), 1, + sym__valdesc, + STATE(24943), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1010644] = 6, + ACTIONS(16628), 1, + anon_sym_then, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010664] = 5, + STATE(15049), 1, + sym_vid, + STATE(15062), 1, + sym_exdesc, + STATE(15352), 1, + sym__exdesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1010682] = 6, + ACTIONS(17686), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17690), 1, + sym__symbolic_ident, + STATE(10900), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010702] = 5, + ACTIONS(17082), 1, + anon_sym_with, + ACTIONS(28342), 1, + anon_sym_PIPE, + STATE(19251), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17080), 2, + anon_sym_and, + anon_sym_withtype, + [1010720] = 6, + ACTIONS(27834), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27836), 1, + sym__symbolic_ident, + STATE(9138), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010740] = 6, + ACTIONS(27780), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27782), 1, + sym__symbolic_ident, + STATE(7184), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010760] = 6, + ACTIONS(27259), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27261), 1, + sym__symbolic_ident, + STATE(8177), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010780] = 6, + ACTIONS(27989), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27991), 1, + sym__symbolic_ident, + STATE(8962), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010800] = 6, + ACTIONS(27806), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27808), 1, + sym__symbolic_ident, + STATE(9234), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010820] = 6, + ACTIONS(17676), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17680), 1, + sym__symbolic_ident, + STATE(11533), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010840] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28344), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010860] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28346), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010880] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28348), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010900] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(27433), 1, + anon_sym_op, + STATE(13553), 1, + sym_exbind, + STATE(13586), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010920] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18548), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1010938] = 6, + ACTIONS(17942), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17946), 1, + sym__symbolic_ident, + STATE(11781), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010958] = 6, + ACTIONS(18441), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18445), 1, + sym__symbolic_ident, + STATE(14170), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010978] = 6, + ACTIONS(28160), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28162), 1, + sym__symbolic_ident, + STATE(7502), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1010998] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28350), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011018] = 6, + ACTIONS(18671), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18675), 1, + sym__symbolic_ident, + STATE(12047), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011038] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(25534), 1, + anon_sym_op, + ACTIONS(26878), 1, + sym__symbolic_ident, + STATE(13327), 1, + sym_conbind, + STATE(13397), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011058] = 6, + ACTIONS(17556), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17560), 1, + sym__symbolic_ident, + STATE(8747), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011078] = 6, + ACTIONS(27199), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27201), 1, + sym__symbolic_ident, + STATE(11180), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011098] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(25534), 1, + anon_sym_op, + ACTIONS(26878), 1, + sym__symbolic_ident, + STATE(13200), 1, + sym_conbind, + STATE(13397), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011118] = 4, + ACTIONS(16528), 1, + anon_sym_with, + ACTIONS(28352), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 3, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + [1011134] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28354), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011154] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28356), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011174] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28358), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011194] = 6, + ACTIONS(27293), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27295), 1, + sym__symbolic_ident, + STATE(7578), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011214] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28360), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011234] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28362), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011254] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28364), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011274] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28366), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011294] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28368), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011314] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28370), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011334] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28372), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011354] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28374), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011374] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28376), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011394] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28378), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011414] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28380), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011434] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28382), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011454] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28384), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011474] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28386), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011494] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28388), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011514] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28390), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011534] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28392), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011554] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28394), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011574] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28396), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011594] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28398), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011614] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28400), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011634] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28402), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011654] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28404), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011674] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28406), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011694] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28408), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011714] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28410), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011734] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28412), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011754] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28414), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011774] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28416), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011794] = 6, + ACTIONS(21819), 1, + anon_sym_COLON, + ACTIONS(21823), 1, + anon_sym_andalso, + ACTIONS(21825), 1, + anon_sym_orelse, + ACTIONS(21827), 1, + anon_sym_handle, + ACTIONS(28418), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011814] = 6, + ACTIONS(16620), 1, + anon_sym_of, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011834] = 6, + ACTIONS(16620), 1, + anon_sym_do, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011854] = 6, + ACTIONS(27209), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27211), 1, + sym__symbolic_ident, + STATE(5867), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011874] = 5, + ACTIONS(28420), 1, + sym__alphaAlphaNumeric_ident, + STATE(14079), 1, + sym_strid, + STATE(21967), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13223), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + [1011892] = 6, + ACTIONS(18289), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18293), 1, + sym__symbolic_ident, + STATE(10325), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011912] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28422), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011932] = 4, + ACTIONS(28424), 1, + aux_sym_infix_dec_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19712), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13349), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1011948] = 6, + ACTIONS(28248), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28250), 1, + sym__symbolic_ident, + STATE(7125), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011968] = 6, + ACTIONS(27555), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27557), 1, + sym__symbolic_ident, + STATE(6726), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1011988] = 4, + ACTIONS(28426), 1, + aux_sym_infix_dec_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19712), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13352), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1012004] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28428), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012024] = 6, + ACTIONS(17882), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17886), 1, + sym__symbolic_ident, + STATE(14996), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012044] = 5, + ACTIONS(28430), 1, + sym__alphaAlphaNumeric_ident, + STATE(13925), 1, + sym_strid, + STATE(21942), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13295), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + [1012062] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(401), 2, + sym__hol_alphanumeric, + anon_sym_list, + ACTIONS(399), 3, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + [1012076] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18594), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1012094] = 6, + ACTIONS(27347), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27349), 1, + sym__symbolic_ident, + STATE(13952), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012114] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28432), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012134] = 6, + ACTIONS(18181), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18185), 1, + sym__symbolic_ident, + STATE(15239), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012154] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28434), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012174] = 3, + ACTIONS(28436), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + [1012188] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28438), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012208] = 4, + ACTIONS(28440), 1, + aux_sym_infix_dec_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19698), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13377), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1012224] = 4, + ACTIONS(28442), 1, + aux_sym_infix_dec_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19698), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13390), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1012240] = 6, + ACTIONS(17666), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17670), 1, + sym__symbolic_ident, + STATE(11370), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012260] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28444), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012280] = 6, + ACTIONS(18515), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18519), 1, + sym__symbolic_ident, + STATE(13036), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012300] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28446), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012320] = 6, + ACTIONS(27551), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27553), 1, + sym__symbolic_ident, + STATE(10859), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012340] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28448), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012360] = 6, + ACTIONS(17464), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17468), 1, + sym__symbolic_ident, + STATE(14215), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012380] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28450), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012400] = 6, + ACTIONS(27087), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27089), 1, + sym__symbolic_ident, + STATE(11631), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012420] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18314), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1012438] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28452), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012458] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28454), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012478] = 6, + ACTIONS(17576), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17580), 1, + sym__symbolic_ident, + STATE(17839), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012498] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28456), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012518] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28458), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012538] = 6, + ACTIONS(27768), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27770), 1, + sym__symbolic_ident, + STATE(5284), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012558] = 5, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28460), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1012576] = 6, + ACTIONS(18025), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18029), 1, + sym__symbolic_ident, + STATE(8545), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012596] = 3, + ACTIONS(15697), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15699), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1012610] = 3, + ACTIONS(15713), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15715), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1012624] = 3, + ACTIONS(15705), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15707), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1012638] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28462), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012658] = 6, + ACTIONS(28070), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28072), 1, + sym__symbolic_ident, + STATE(8964), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012678] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28464), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012698] = 5, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28466), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1012716] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(24621), 1, + anon_sym_op, + ACTIONS(26878), 1, + sym__symbolic_ident, + STATE(13200), 1, + sym_conbind, + STATE(13548), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012736] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28468), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012756] = 6, + ACTIONS(18215), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18219), 1, + sym__symbolic_ident, + STATE(10310), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012776] = 4, + ACTIONS(15531), 1, + sym__symbolic_ident, + ACTIONS(26882), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15533), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1012792] = 6, + ACTIONS(17766), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17770), 1, + sym__symbolic_ident, + STATE(16129), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012812] = 6, + ACTIONS(27704), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27706), 1, + sym__symbolic_ident, + STATE(10416), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012832] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28470), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012852] = 6, + ACTIONS(17566), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17570), 1, + sym__symbolic_ident, + STATE(18876), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012872] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28472), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012892] = 6, + ACTIONS(27093), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27095), 1, + sym__symbolic_ident, + STATE(6885), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012912] = 3, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 4, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + [1012926] = 4, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 3, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + [1012942] = 6, + ACTIONS(27459), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27461), 1, + sym__symbolic_ident, + STATE(12298), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012962] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28474), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1012982] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28476), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013002] = 3, + ACTIONS(15733), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15735), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1013016] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28478), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013036] = 5, + STATE(15068), 1, + sym_valdesc, + STATE(15322), 1, + sym__valdesc, + STATE(24986), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1013054] = 6, + ACTIONS(17716), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17720), 1, + sym__symbolic_ident, + STATE(10177), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013074] = 3, + ACTIONS(15559), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15561), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1013088] = 6, + ACTIONS(27638), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27640), 1, + sym__symbolic_ident, + STATE(5044), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013108] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18674), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1013126] = 6, + ACTIONS(18065), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18069), 1, + sym__symbolic_ident, + STATE(14994), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013146] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28480), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013166] = 3, + ACTIONS(15625), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15627), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1013180] = 6, + ACTIONS(27948), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27950), 1, + sym__symbolic_ident, + STATE(10801), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013200] = 6, + ACTIONS(18467), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18471), 1, + sym__symbolic_ident, + STATE(9360), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013220] = 6, + ACTIONS(27447), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27449), 1, + sym__symbolic_ident, + STATE(13127), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013240] = 6, + ACTIONS(28173), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28175), 1, + sym__symbolic_ident, + STATE(7194), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013260] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28482), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013280] = 6, + ACTIONS(27297), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27299), 1, + sym__symbolic_ident, + STATE(10830), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013300] = 6, + ACTIONS(27311), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27313), 1, + sym__symbolic_ident, + STATE(9541), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013320] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28484), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013340] = 6, + ACTIONS(16540), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26466), 1, + anon_sym_op, + ACTIONS(26943), 1, + sym__symbolic_ident, + STATE(10610), 1, + sym_vid, + STATE(10767), 1, + sym_conbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013360] = 5, + STATE(15764), 1, + sym_hol_identifier, + STATE(23311), 1, + sym_hol_clause, + STATE(24915), 1, + sym_hol_constructor, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28486), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + [1013378] = 6, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(27385), 1, + sym__alphaAlphaNumeric_ident, + STATE(13584), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013398] = 6, + ACTIONS(27593), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27595), 1, + sym__symbolic_ident, + STATE(11301), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013418] = 6, + ACTIONS(17646), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17650), 1, + sym__symbolic_ident, + STATE(13956), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013438] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(27537), 1, + anon_sym_op, + STATE(13553), 1, + sym_exbind, + STATE(13599), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013458] = 6, + ACTIONS(17419), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17423), 1, + sym__symbolic_ident, + STATE(11331), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013478] = 6, + ACTIONS(18141), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18145), 1, + sym__symbolic_ident, + STATE(14422), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013498] = 6, + ACTIONS(18738), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18742), 1, + sym__symbolic_ident, + STATE(13238), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013518] = 6, + ACTIONS(17922), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17926), 1, + sym__symbolic_ident, + STATE(10701), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013538] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28488), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013558] = 6, + ACTIONS(18431), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18435), 1, + sym__symbolic_ident, + STATE(15030), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013578] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28490), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013598] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(25584), 1, + anon_sym_op, + ACTIONS(26878), 1, + sym__symbolic_ident, + STATE(13342), 1, + sym_conbind, + STATE(13476), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013618] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(25584), 1, + anon_sym_op, + ACTIONS(26878), 1, + sym__symbolic_ident, + STATE(13200), 1, + sym_conbind, + STATE(13476), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013638] = 4, + ACTIONS(28492), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(395), 2, + anon_sym_LPAREN, + anon_sym_DOT, + ACTIONS(397), 2, + sym__hol_alphanumeric, + anon_sym_list, + [1013654] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28494), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013674] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28496), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013694] = 5, + STATE(15078), 1, + sym_vid, + STATE(15080), 1, + sym_exdesc, + STATE(15352), 1, + sym__exdesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1013712] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28498), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013732] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28500), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013752] = 6, + ACTIONS(16639), 1, + anon_sym_then, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013772] = 6, + ACTIONS(27411), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27413), 1, + sym__symbolic_ident, + STATE(6894), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013792] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28502), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013812] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28504), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013832] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28506), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013852] = 6, + ACTIONS(27848), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27850), 1, + sym__symbolic_ident, + STATE(7499), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013872] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28508), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013892] = 6, + ACTIONS(27545), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27547), 1, + sym__symbolic_ident, + STATE(9939), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013912] = 6, + ACTIONS(18401), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18405), 1, + sym__symbolic_ident, + STATE(17075), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013932] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28510), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013952] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28512), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013972] = 6, + ACTIONS(18547), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18551), 1, + sym__symbolic_ident, + STATE(8945), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1013992] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28514), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014012] = 6, + ACTIONS(18239), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18243), 1, + sym__symbolic_ident, + STATE(9876), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014032] = 6, + ACTIONS(27854), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27856), 1, + sym__symbolic_ident, + STATE(10337), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014052] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28516), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014072] = 6, + ACTIONS(27708), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27710), 1, + sym__symbolic_ident, + STATE(7439), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014092] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18248), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1014110] = 5, + ACTIONS(28518), 1, + sym__alphaAlphaNumeric_ident, + STATE(14180), 1, + sym_strid, + STATE(21831), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13379), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + [1014128] = 4, + ACTIONS(15569), 1, + sym__symbolic_ident, + ACTIONS(26890), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15571), 3, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1014144] = 3, + ACTIONS(15573), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15575), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1014158] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28520), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014178] = 4, + ACTIONS(28522), 1, + aux_sym_infix_dec_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20057), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13635), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1014194] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28524), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014214] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28526), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014234] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18072), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1014252] = 3, + ACTIONS(28528), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 4, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_as, + [1014266] = 4, + ACTIONS(28530), 1, + aux_sym_infix_dec_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20057), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13636), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1014282] = 6, + ACTIONS(17912), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17916), 1, + sym__symbolic_ident, + STATE(14284), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014302] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28532), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014322] = 6, + ACTIONS(17616), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17620), 1, + sym__symbolic_ident, + STATE(10324), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014342] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28534), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014362] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28536), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014382] = 6, + ACTIONS(18758), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18762), 1, + sym__symbolic_ident, + STATE(17871), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014402] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28538), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014422] = 6, + ACTIONS(18299), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18303), 1, + sym__symbolic_ident, + STATE(10486), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014442] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28540), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014462] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18211), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1014480] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28542), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014500] = 6, + ACTIONS(27103), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27105), 1, + sym__symbolic_ident, + STATE(6600), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014520] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28544), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014540] = 6, + ACTIONS(17474), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17478), 1, + sym__symbolic_ident, + STATE(12148), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014560] = 3, + ACTIONS(28546), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 4, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_where, + [1014574] = 6, + ACTIONS(27930), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27932), 1, + sym__symbolic_ident, + STATE(9238), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014594] = 6, + ACTIONS(18361), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18365), 1, + sym__symbolic_ident, + STATE(13266), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014614] = 6, + ACTIONS(27776), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27778), 1, + sym__symbolic_ident, + STATE(11946), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014634] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28548), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014654] = 6, + ACTIONS(17333), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17337), 1, + sym__symbolic_ident, + STATE(16395), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014674] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(24621), 1, + anon_sym_op, + ACTIONS(26878), 1, + sym__symbolic_ident, + STATE(13548), 1, + sym_vid, + STATE(13572), 1, + sym_conbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014694] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28550), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014714] = 6, + ACTIONS(27185), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27187), 1, + sym__symbolic_ident, + STATE(6171), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014734] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28552), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014754] = 6, + ACTIONS(28183), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28185), 1, + sym__symbolic_ident, + STATE(7441), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014774] = 6, + ACTIONS(17932), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17936), 1, + sym__symbolic_ident, + STATE(11119), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014794] = 6, + ACTIONS(28066), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28068), 1, + sym__symbolic_ident, + STATE(4480), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014814] = 6, + ACTIONS(18411), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18415), 1, + sym__symbolic_ident, + STATE(12708), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014834] = 6, + ACTIONS(27353), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27355), 1, + sym__symbolic_ident, + STATE(7216), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014854] = 3, + ACTIONS(15581), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15583), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1014868] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28554), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014888] = 6, + ACTIONS(18225), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18229), 1, + sym__symbolic_ident, + STATE(17090), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014908] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28556), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014928] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28558), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014948] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28560), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014968] = 6, + ACTIONS(17736), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17740), 1, + sym__symbolic_ident, + STATE(17905), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1014988] = 6, + ACTIONS(27818), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27820), 1, + sym__symbolic_ident, + STATE(5957), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015008] = 6, + ACTIONS(16540), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26466), 1, + anon_sym_op, + ACTIONS(26943), 1, + sym__symbolic_ident, + STATE(10610), 1, + sym_vid, + STATE(10706), 1, + sym_conbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015028] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28562), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015048] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18005), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1015066] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28564), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015086] = 6, + ACTIONS(27463), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27465), 1, + sym__symbolic_ident, + STATE(9750), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015106] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28566), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015126] = 6, + ACTIONS(18075), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18079), 1, + sym__symbolic_ident, + STATE(10623), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015146] = 6, + ACTIONS(18863), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18867), 1, + sym__symbolic_ident, + STATE(16391), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015166] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28568), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015186] = 6, + ACTIONS(27559), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27561), 1, + sym__symbolic_ident, + STATE(7398), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015206] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28570), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015226] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28572), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015246] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28574), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015266] = 6, + ACTIONS(27924), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27926), 1, + sym__symbolic_ident, + STATE(7837), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015286] = 6, + ACTIONS(27301), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27303), 1, + sym__symbolic_ident, + STATE(14224), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015306] = 6, + ACTIONS(27081), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27083), 1, + sym__symbolic_ident, + STATE(11589), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015326] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28576), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015346] = 6, + ACTIONS(18479), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18483), 1, + sym__symbolic_ident, + STATE(14385), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015366] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28578), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015386] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28580), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015406] = 6, + ACTIONS(18784), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18788), 1, + sym__symbolic_ident, + STATE(12087), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015426] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28582), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015446] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28584), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015466] = 3, + ACTIONS(15593), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15595), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1015480] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28586), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015500] = 5, + ACTIONS(28588), 1, + sym__alphaAlphaNumeric_ident, + STATE(13840), 1, + sym_strid, + STATE(22940), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13286), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + [1015518] = 6, + ACTIONS(18853), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18857), 1, + sym__symbolic_ident, + STATE(11654), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015538] = 6, + ACTIONS(28240), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28242), 1, + sym__symbolic_ident, + STATE(10315), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015558] = 6, + ACTIONS(17586), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17590), 1, + sym__symbolic_ident, + STATE(15997), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015578] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28590), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015598] = 3, + ACTIONS(15601), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15603), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1015612] = 3, + ACTIONS(15609), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15611), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1015626] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28592), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015646] = 3, + ACTIONS(15629), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15631), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1015660] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28594), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015680] = 4, + ACTIONS(28596), 1, + aux_sym_infix_dec_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19772), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13484), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1015696] = 4, + ACTIONS(28598), 1, + aux_sym_infix_dec_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19772), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13431), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1015712] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28600), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015732] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(27652), 1, + anon_sym_op, + STATE(13553), 1, + sym_exbind, + STATE(13693), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015752] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28602), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015772] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28604), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015792] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(25614), 1, + anon_sym_op, + ACTIONS(26878), 1, + sym__symbolic_ident, + STATE(13607), 1, + sym_vid, + STATE(13624), 1, + sym_conbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015812] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(25614), 1, + anon_sym_op, + ACTIONS(26878), 1, + sym__symbolic_ident, + STATE(13200), 1, + sym_conbind, + STATE(13607), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015832] = 6, + ACTIONS(27577), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27579), 1, + sym__symbolic_ident, + STATE(13784), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015852] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28606), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015872] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28608), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015892] = 5, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28610), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [1015910] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28612), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015930] = 6, + ACTIONS(27371), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27373), 1, + sym__symbolic_ident, + STATE(10899), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015950] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28614), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1015970] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18483), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1015988] = 6, + ACTIONS(16639), 1, + anon_sym_of, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016008] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28616), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016028] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28618), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016048] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28620), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016068] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28622), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016088] = 6, + ACTIONS(18249), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18253), 1, + sym__symbolic_ident, + STATE(14297), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016108] = 5, + ACTIONS(28624), 1, + sym__alphaAlphaNumeric_ident, + STATE(9316), 1, + sym_strid, + STATE(22510), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(9878), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + [1016126] = 3, + ACTIONS(15523), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15525), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1016140] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28626), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016160] = 3, + ACTIONS(12942), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_as, + [1016174] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28628), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016194] = 6, + ACTIONS(17855), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17859), 1, + sym__symbolic_ident, + STATE(9963), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016214] = 6, + ACTIONS(17343), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17347), 1, + sym__symbolic_ident, + STATE(11052), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016234] = 5, + ACTIONS(28630), 1, + anon_sym_COMMA, + STATE(2891), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26983), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [1016252] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28633), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016272] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28635), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016292] = 6, + ACTIONS(27279), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27281), 1, + sym__symbolic_ident, + STATE(10376), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016312] = 6, + ACTIONS(27959), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27961), 1, + sym__symbolic_ident, + STATE(10821), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016332] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28637), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016352] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28639), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016372] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28641), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016392] = 6, + ACTIONS(18748), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18752), 1, + sym__symbolic_ident, + STATE(12861), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016412] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28643), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016432] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28645), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016452] = 6, + ACTIONS(27329), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27331), 1, + sym__symbolic_ident, + STATE(6888), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016472] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28647), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016492] = 6, + ACTIONS(18631), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18635), 1, + sym__symbolic_ident, + STATE(13360), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016512] = 3, + ACTIONS(15621), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15623), 4, + sym__symbolic_ident, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_STAR, + [1016526] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28649), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016546] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28651), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016566] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28653), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016586] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28655), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016606] = 6, + ACTIONS(27878), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27880), 1, + sym__symbolic_ident, + STATE(5456), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016626] = 6, + ACTIONS(17359), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17363), 1, + sym__symbolic_ident, + STATE(8772), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016646] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28657), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016666] = 6, + ACTIONS(17636), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17640), 1, + sym__symbolic_ident, + STATE(17884), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016686] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28659), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016706] = 5, + ACTIONS(28492), 1, + anon_sym_DASH_GT, + ACTIONS(28663), 1, + sym__hol_alphanumeric, + ACTIONS(28665), 1, + anon_sym_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28661), 2, + anon_sym_LPAREN, + anon_sym_DOT, + [1016724] = 6, + ACTIONS(17706), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17710), 1, + sym__symbolic_ident, + STATE(16042), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016744] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28667), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016764] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28669), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016784] = 6, + ACTIONS(17656), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17660), 1, + sym__symbolic_ident, + STATE(15349), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016804] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18108), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1016822] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28671), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016842] = 6, + ACTIONS(18804), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18808), 1, + sym__symbolic_ident, + STATE(12152), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016862] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28673), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016882] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28675), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016902] = 6, + ACTIONS(18191), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18195), 1, + sym__symbolic_ident, + STATE(15297), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016922] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17980), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1016940] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28677), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016960] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28679), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1016980] = 6, + ACTIONS(28681), 1, + anon_sym_COMMA, + ACTIONS(28683), 1, + anon_sym_RPAREN, + ACTIONS(28685), 1, + anon_sym_COLON_COLON, + STATE(21968), 1, + aux_sym_hol_pcons_repeat1, + STATE(21987), 1, + aux_sym_hol_ptuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017000] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28687), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017020] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28689), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017040] = 6, + ACTIONS(18311), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18315), 1, + sym__symbolic_ident, + STATE(9521), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017060] = 6, + ACTIONS(18381), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18385), 1, + sym__symbolic_ident, + STATE(9713), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017080] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28691), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017100] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28693), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017120] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28695), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017140] = 6, + ACTIONS(18595), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18599), 1, + sym__symbolic_ident, + STATE(8886), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017160] = 6, + ACTIONS(22089), 1, + sym__symbolic_ident, + ACTIONS(22498), 1, + sym__alphaAlphaNumeric_ident, + STATE(9268), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017180] = 6, + ACTIONS(17546), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17550), 1, + sym__symbolic_ident, + STATE(8784), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017200] = 3, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 4, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + [1017214] = 6, + ACTIONS(18161), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18165), 1, + sym__symbolic_ident, + STATE(17274), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017234] = 6, + ACTIONS(27634), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27636), 1, + sym__symbolic_ident, + STATE(5873), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017254] = 6, + ACTIONS(27965), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27967), 1, + sym__symbolic_ident, + STATE(4242), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017274] = 6, + ACTIONS(27758), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27760), 1, + sym__symbolic_ident, + STATE(4285), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017294] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28697), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017314] = 6, + ACTIONS(18489), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18493), 1, + sym__symbolic_ident, + STATE(16664), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017334] = 6, + ACTIONS(17776), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17780), 1, + sym__symbolic_ident, + STATE(11510), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017354] = 5, + ACTIONS(28699), 1, + anon_sym_LPAREN, + STATE(13381), 1, + sym_hol_identifier, + STATE(23962), 1, + sym_hol_eqn, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27983), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + [1017372] = 5, + ACTIONS(28701), 1, + anon_sym_LPAREN, + STATE(13457), 1, + sym_hol_identifier, + STATE(24330), 1, + sym_hol_eqn, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27983), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + [1017390] = 6, + ACTIONS(16540), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26943), 1, + sym__symbolic_ident, + ACTIONS(28291), 1, + anon_sym_op, + STATE(11329), 1, + sym_vid, + STATE(12883), 1, + sym_exbind, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017410] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28703), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017430] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28705), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017450] = 6, + ACTIONS(18085), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18089), 1, + sym__symbolic_ident, + STATE(9810), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017470] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28707), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017490] = 6, + ACTIONS(18259), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18263), 1, + sym__symbolic_ident, + STATE(9392), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017510] = 6, + ACTIONS(27642), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27644), 1, + sym__symbolic_ident, + STATE(5064), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017530] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(27147), 1, + anon_sym_op, + STATE(13553), 1, + sym_exbind, + STATE(14009), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017550] = 6, + ACTIONS(18279), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18283), 1, + sym__symbolic_ident, + STATE(14109), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017570] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18675), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1017588] = 6, + ACTIONS(28681), 1, + anon_sym_COMMA, + ACTIONS(28685), 1, + anon_sym_COLON_COLON, + ACTIONS(28709), 1, + anon_sym_RPAREN, + STATE(24615), 1, + aux_sym_hol_pcons_repeat1, + STATE(24637), 1, + aux_sym_hol_ptuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017608] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28711), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017628] = 6, + ACTIONS(27487), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27489), 1, + sym__symbolic_ident, + STATE(11268), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017648] = 6, + ACTIONS(28086), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28088), 1, + sym__symbolic_ident, + STATE(7422), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017668] = 6, + ACTIONS(28082), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28084), 1, + sym__symbolic_ident, + STATE(7842), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017688] = 6, + ACTIONS(18814), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18818), 1, + sym__symbolic_ident, + STATE(11399), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017708] = 6, + ACTIONS(17805), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17809), 1, + sym__symbolic_ident, + STATE(8543), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017728] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28713), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017748] = 6, + ACTIONS(17815), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17819), 1, + sym__symbolic_ident, + STATE(10593), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017768] = 6, + ACTIONS(18421), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18425), 1, + sym__symbolic_ident, + STATE(15026), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017788] = 6, + ACTIONS(27307), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27309), 1, + sym__symbolic_ident, + STATE(7782), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017808] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28715), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017828] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28717), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017848] = 6, + ACTIONS(27730), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27732), 1, + sym__symbolic_ident, + STATE(12138), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017868] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28719), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017888] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26878), 1, + sym__symbolic_ident, + ACTIONS(27742), 1, + anon_sym_op, + STATE(13553), 1, + sym_exbind, + STATE(13619), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017908] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28721), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017928] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28723), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017948] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(25652), 1, + anon_sym_op, + ACTIONS(26878), 1, + sym__symbolic_ident, + STATE(13367), 1, + sym_conbind, + STATE(13462), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017968] = 6, + ACTIONS(24619), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(25652), 1, + anon_sym_op, + ACTIONS(26878), 1, + sym__symbolic_ident, + STATE(13200), 1, + sym_conbind, + STATE(13462), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1017988] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28725), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018008] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28727), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018028] = 3, + ACTIONS(28729), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 4, + anon_sym_EQ, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_where, + [1018042] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28731), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018062] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18098), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1018080] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28733), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018100] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28735), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018120] = 6, + ACTIONS(16854), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28737), 1, + anon_sym_type, + STATE(9316), 1, + sym_strid, + STATE(22510), 1, + aux_sym_longvid_repeat1, + STATE(24858), 1, + sym_longstrid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018140] = 6, + ACTIONS(27127), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27129), 1, + sym__symbolic_ident, + STATE(6438), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018160] = 6, + ACTIONS(17746), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17750), 1, + sym__symbolic_ident, + STATE(9895), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018180] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(381), 2, + sym__hol_alphanumeric, + anon_sym_list, + ACTIONS(379), 3, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + [1018194] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28739), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018214] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28741), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018234] = 6, + ACTIONS(18269), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18273), 1, + sym__symbolic_ident, + STATE(9349), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018254] = 6, + ACTIONS(27195), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27197), 1, + sym__symbolic_ident, + STATE(11109), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018274] = 6, + ACTIONS(16628), 1, + anon_sym_do, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018294] = 4, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 3, + anon_sym_orelse, + anon_sym_handle, + anon_sym_of, + [1018310] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28743), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018330] = 6, + ACTIONS(28140), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28142), 1, + sym__symbolic_ident, + STATE(5516), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018350] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28745), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018370] = 6, + ACTIONS(18728), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18732), 1, + sym__symbolic_ident, + STATE(16363), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018390] = 6, + ACTIONS(27177), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27179), 1, + sym__symbolic_ident, + STATE(9329), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018410] = 6, + ACTIONS(28747), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28749), 1, + sym__symbolic_ident, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24772), 1, + sym_vid, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018430] = 6, + ACTIONS(18341), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18345), 1, + sym__symbolic_ident, + STATE(14645), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018450] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28751), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018470] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(393), 2, + sym__hol_alphanumeric, + anon_sym_list, + ACTIONS(391), 3, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_DASH_GT, + [1018484] = 5, + ACTIONS(26764), 1, + anon_sym_COLON, + ACTIONS(26766), 1, + anon_sym_PIPE, + ACTIONS(26768), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28753), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1018502] = 6, + ACTIONS(18921), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18925), 1, + sym__symbolic_ident, + STATE(15275), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018522] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18197), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1018540] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28755), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018560] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28757), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018580] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28759), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018600] = 6, + ACTIONS(27157), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27159), 1, + sym__symbolic_ident, + STATE(11186), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018620] = 4, + ACTIONS(28761), 1, + anon_sym_STAR, + STATE(19223), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 3, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + [1018636] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28763), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018656] = 6, + ACTIONS(18095), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18099), 1, + sym__symbolic_ident, + STATE(9896), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018676] = 6, + ACTIONS(17606), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17610), 1, + sym__symbolic_ident, + STATE(8524), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018696] = 6, + ACTIONS(27646), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27648), 1, + sym__symbolic_ident, + STATE(6260), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018716] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18485), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1018734] = 6, + ACTIONS(17842), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17846), 1, + sym__symbolic_ident, + STATE(9844), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018754] = 6, + ACTIONS(18131), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18135), 1, + sym__symbolic_ident, + STATE(10964), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018774] = 6, + ACTIONS(17409), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17413), 1, + sym__symbolic_ident, + STATE(14346), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018794] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28765), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018814] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28767), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018834] = 6, + ACTIONS(18321), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18325), 1, + sym__symbolic_ident, + STATE(14635), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018854] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28769), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018874] = 6, + ACTIONS(27571), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27573), 1, + sym__symbolic_ident, + STATE(4560), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018894] = 6, + ACTIONS(27822), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27824), 1, + sym__symbolic_ident, + STATE(6525), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018914] = 6, + ACTIONS(17952), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17956), 1, + sym__symbolic_ident, + STATE(10326), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018934] = 6, + ACTIONS(18451), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18455), 1, + sym__symbolic_ident, + STATE(9850), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018954] = 4, + ACTIONS(28771), 1, + aux_sym_infix_dec_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16920), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(10272), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1018970] = 6, + ACTIONS(26943), 1, + sym__symbolic_ident, + ACTIONS(27431), 1, + sym__alphaAlphaNumeric_ident, + STATE(11055), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1018990] = 6, + ACTIONS(17756), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17760), 1, + sym__symbolic_ident, + STATE(15836), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019010] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28773), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019030] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28775), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019050] = 6, + ACTIONS(18391), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18395), 1, + sym__symbolic_ident, + STATE(9775), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019070] = 6, + ACTIONS(18794), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18798), 1, + sym__symbolic_ident, + STATE(11553), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019090] = 6, + ACTIONS(27910), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27912), 1, + sym__symbolic_ident, + STATE(6091), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019110] = 6, + ACTIONS(18505), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18509), 1, + sym__symbolic_ident, + STATE(18141), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019130] = 6, + ACTIONS(27475), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27477), 1, + sym__symbolic_ident, + STATE(9843), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019150] = 6, + ACTIONS(17526), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17530), 1, + sym__symbolic_ident, + STATE(15723), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019170] = 6, + ACTIONS(17512), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17516), 1, + sym__symbolic_ident, + STATE(15743), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019190] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28777), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019210] = 6, + ACTIONS(16639), 1, + anon_sym_do, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019230] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28779), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019250] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28781), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019270] = 6, + ACTIONS(17626), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17630), 1, + sym__symbolic_ident, + STATE(15249), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019290] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28783), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019310] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28785), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019330] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28787), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019350] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18133), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1019368] = 6, + ACTIONS(18105), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18109), 1, + sym__symbolic_ident, + STATE(9966), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019388] = 6, + ACTIONS(27726), 1, + anon_sym_handle, + ACTIONS(28315), 1, + anon_sym_COLON, + ACTIONS(28317), 1, + anon_sym_andalso, + ACTIONS(28319), 1, + anon_sym_orelse, + ACTIONS(28789), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019408] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28791), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019428] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28793), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019448] = 6, + ACTIONS(27716), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27718), 1, + sym__symbolic_ident, + STATE(5578), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019468] = 3, + ACTIONS(28795), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DASH_GT, + [1019482] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(17986), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1019500] = 3, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16659), 4, + anon_sym_andalso, + anon_sym_orelse, + anon_sym_handle, + anon_sym_then, + [1019514] = 6, + ACTIONS(17865), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17869), 1, + sym__symbolic_ident, + STATE(11836), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019534] = 6, + ACTIONS(28277), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28279), 1, + sym__symbolic_ident, + STATE(11800), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019554] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28797), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019574] = 6, + ACTIONS(17832), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17836), 1, + sym__symbolic_ident, + STATE(10654), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019594] = 6, + ACTIONS(28100), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28102), 1, + sym__symbolic_ident, + STATE(6892), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019614] = 6, + ACTIONS(18171), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18175), 1, + sym__symbolic_ident, + STATE(13420), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019634] = 6, + ACTIONS(28152), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28154), 1, + sym__symbolic_ident, + STATE(4962), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019654] = 5, + ACTIONS(28799), 1, + sym__alphaAlphaNumeric_ident, + STATE(14164), 1, + sym_strid, + STATE(21804), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(13482), 2, + sym_longstrid, + aux_sym_open_dec_repeat1, + [1019672] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28801), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019692] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28803), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019712] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28805), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019732] = 6, + ACTIONS(18774), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18778), 1, + sym__symbolic_ident, + STATE(16335), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019752] = 6, + ACTIONS(27952), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27954), 1, + sym__symbolic_ident, + STATE(7077), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019772] = 4, + ACTIONS(28761), 1, + anon_sym_STAR, + STATE(19157), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 3, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + [1019788] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28807), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019808] = 4, + ACTIONS(28809), 1, + aux_sym_infix_dec_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16920), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(10273), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1019824] = 6, + ACTIONS(28255), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28257), 1, + sym__symbolic_ident, + STATE(7935), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019844] = 6, + ACTIONS(17795), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17799), 1, + sym__symbolic_ident, + STATE(15107), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019864] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18375), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1019882] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18320), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1019900] = 4, + ACTIONS(28811), 1, + anon_sym_STAR, + STATE(19223), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 3, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + [1019916] = 6, + ACTIONS(18351), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18355), 1, + sym__symbolic_ident, + STATE(15416), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019936] = 4, + ACTIONS(28814), 1, + aux_sym_infix_dec_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19975), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13661), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1019952] = 6, + ACTIONS(28265), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28267), 1, + sym__symbolic_ident, + STATE(5863), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1019972] = 3, + ACTIONS(28816), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DASH_GT, + [1019986] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28818), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020006] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28820), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020026] = 6, + ACTIONS(18879), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18883), 1, + sym__symbolic_ident, + STATE(15198), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020046] = 6, + ACTIONS(28056), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28058), 1, + sym__symbolic_ident, + STATE(6536), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020066] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28822), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020086] = 6, + ACTIONS(18121), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18125), 1, + sym__symbolic_ident, + STATE(9426), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020106] = 4, + ACTIONS(17008), 1, + anon_sym_with, + ACTIONS(28824), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17004), 3, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + [1020122] = 6, + ACTIONS(18331), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18335), 1, + sym__symbolic_ident, + STATE(16547), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020142] = 6, + ACTIONS(17369), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17373), 1, + sym__symbolic_ident, + STATE(14144), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020162] = 6, + ACTIONS(28062), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28064), 1, + sym__symbolic_ident, + STATE(6242), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020182] = 4, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16612), 3, + anon_sym_orelse, + anon_sym_handle, + anon_sym_do, + [1020198] = 6, + ACTIONS(17399), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17403), 1, + sym__symbolic_ident, + STATE(14393), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020218] = 6, + ACTIONS(27615), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27617), 1, + sym__symbolic_ident, + STATE(8919), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020238] = 6, + ACTIONS(17379), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17383), 1, + sym__symbolic_ident, + STATE(11347), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020258] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28826), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020278] = 6, + ACTIONS(28001), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(28003), 1, + sym__symbolic_ident, + STATE(10300), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020298] = 5, + ACTIONS(27065), 1, + anon_sym_LPAREN, + ACTIONS(27069), 1, + sym__hol_alphanumeric, + STATE(23717), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(18649), 2, + sym_hol_bvar, + aux_sym_hol_binder_repeat1, + [1020316] = 4, + ACTIONS(17078), 1, + anon_sym_with, + ACTIONS(28828), 1, + anon_sym_of, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17074), 3, + anon_sym_PIPE, + anon_sym_and, + anon_sym_withtype, + [1020332] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28830), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020352] = 6, + ACTIONS(16540), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(26732), 1, + anon_sym_op, + ACTIONS(26943), 1, + sym__symbolic_ident, + STATE(10706), 1, + sym_conbind, + STATE(19234), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020372] = 5, + ACTIONS(17082), 1, + anon_sym_with, + ACTIONS(28342), 1, + anon_sym_PIPE, + STATE(19252), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17080), 2, + anon_sym_and, + anon_sym_withtype, + [1020390] = 6, + ACTIONS(18530), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18534), 1, + sym__symbolic_ident, + STATE(11961), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020410] = 6, + ACTIONS(17992), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(17996), 1, + sym__symbolic_ident, + STATE(15348), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020430] = 5, + ACTIONS(17056), 1, + anon_sym_with, + ACTIONS(28342), 1, + anon_sym_PIPE, + STATE(19252), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17052), 2, + anon_sym_and, + anon_sym_withtype, + [1020448] = 5, + ACTIONS(17068), 1, + anon_sym_with, + ACTIONS(28832), 1, + anon_sym_PIPE, + STATE(19252), 1, + aux_sym__conbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17066), 2, + anon_sym_and, + anon_sym_withtype, + [1020466] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28835), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020486] = 4, + ACTIONS(28837), 1, + aux_sym_infix_dec_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19975), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13664), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1020502] = 6, + ACTIONS(27315), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27317), 1, + sym__symbolic_ident, + STATE(9718), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020522] = 6, + ACTIONS(18035), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(18039), 1, + sym__symbolic_ident, + STATE(15174), 1, + sym_tycon, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020542] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28839), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020562] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28841), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020582] = 6, + ACTIONS(27969), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(27971), 1, + sym__symbolic_ident, + STATE(10794), 1, + sym_vid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020602] = 6, + ACTIONS(27603), 1, + anon_sym_handle, + ACTIONS(28299), 1, + anon_sym_COLON, + ACTIONS(28301), 1, + anon_sym_andalso, + ACTIONS(28303), 1, + anon_sym_orelse, + ACTIONS(28843), 1, + anon_sym_do, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020622] = 6, + ACTIONS(27519), 1, + anon_sym_handle, + ACTIONS(28307), 1, + anon_sym_COLON, + ACTIONS(28309), 1, + anon_sym_andalso, + ACTIONS(28311), 1, + anon_sym_orelse, + ACTIONS(28845), 1, + anon_sym_then, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020642] = 5, + ACTIONS(7297), 1, + anon_sym_RPAREN, + ACTIONS(25450), 1, + anon_sym_COMMA, + STATE(1781), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020659] = 5, + ACTIONS(28847), 1, + anon_sym_SEMI, + ACTIONS(28849), 1, + anon_sym_end, + STATE(2607), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020676] = 5, + ACTIONS(20751), 1, + anon_sym_RBRACE, + ACTIONS(28851), 1, + anon_sym_COMMA, + STATE(14522), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020693] = 5, + ACTIONS(23316), 1, + anon_sym_RBRACE, + ACTIONS(28853), 1, + anon_sym_COMMA, + STATE(15994), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020710] = 5, + ACTIONS(23316), 1, + anon_sym_RBRACE, + ACTIONS(28853), 1, + anon_sym_COMMA, + STATE(15994), 1, + aux_sym_record_exp_repeat1, + STATE(19268), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020727] = 5, + ACTIONS(28855), 1, + anon_sym_SEMI, + ACTIONS(28857), 1, + anon_sym_end, + STATE(2609), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020744] = 5, + ACTIONS(23318), 1, + anon_sym_RBRACE, + ACTIONS(28859), 1, + anon_sym_COMMA, + STATE(15996), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020761] = 5, + ACTIONS(6901), 1, + anon_sym_RPAREN, + ACTIONS(26345), 1, + anon_sym_COMMA, + STATE(1592), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020778] = 5, + ACTIONS(28861), 1, + anon_sym_SEMI, + ACTIONS(28863), 1, + anon_sym_end, + STATE(2242), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020795] = 4, + STATE(14321), 1, + sym_vid, + STATE(14356), 1, + sym_condesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1020810] = 3, + STATE(7292), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28865), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1020823] = 5, + ACTIONS(28867), 1, + anon_sym_SEMI, + ACTIONS(28869), 1, + anon_sym_end, + STATE(2243), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020840] = 5, + ACTIONS(6903), 1, + anon_sym_RPAREN, + ACTIONS(26355), 1, + anon_sym_SEMI, + STATE(1593), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020857] = 5, + ACTIONS(23458), 1, + anon_sym_RBRACE, + ACTIONS(28871), 1, + anon_sym_COMMA, + STATE(16133), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020874] = 5, + ACTIONS(3943), 1, + anon_sym_RBRACK, + ACTIONS(24878), 1, + anon_sym_COMMA, + STATE(671), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020891] = 5, + ACTIONS(21396), 1, + anon_sym_RBRACE, + ACTIONS(28873), 1, + anon_sym_COMMA, + STATE(14849), 1, + aux_sym_record_exp_repeat1, + STATE(19284), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020908] = 5, + ACTIONS(23458), 1, + anon_sym_RBRACE, + ACTIONS(28871), 1, + anon_sym_COMMA, + STATE(16133), 1, + aux_sym_record_exp_repeat1, + STATE(19288), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020925] = 5, + ACTIONS(4529), 1, + anon_sym_RBRACK, + ACTIONS(28875), 1, + anon_sym_COMMA, + STATE(870), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020942] = 5, + ACTIONS(9179), 1, + anon_sym_RPAREN, + ACTIONS(24874), 1, + anon_sym_COMMA, + STATE(2617), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020959] = 5, + ACTIONS(9181), 1, + anon_sym_RPAREN, + ACTIONS(24876), 1, + anon_sym_SEMI, + STATE(2618), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020976] = 5, + ACTIONS(6501), 1, + anon_sym_RPAREN, + ACTIONS(26430), 1, + anon_sym_SEMI, + STATE(1402), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1020993] = 5, + ACTIONS(28877), 1, + anon_sym_SEMI, + ACTIONS(28879), 1, + anon_sym_end, + STATE(2245), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021010] = 5, + ACTIONS(21404), 1, + anon_sym_RBRACE, + ACTIONS(28881), 1, + anon_sym_COMMA, + STATE(14850), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021027] = 5, + ACTIONS(21404), 1, + anon_sym_RBRACE, + ACTIONS(28881), 1, + anon_sym_COMMA, + STATE(14850), 1, + aux_sym_record_exp_repeat1, + STATE(19294), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021044] = 5, + ACTIONS(4935), 1, + anon_sym_RBRACK, + ACTIONS(24880), 1, + anon_sym_COMMA, + STATE(1007), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021061] = 5, + ACTIONS(21353), 1, + anon_sym_RBRACE, + ACTIONS(28883), 1, + anon_sym_COMMA, + STATE(14841), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021078] = 5, + ACTIONS(23568), 1, + anon_sym_RBRACE, + ACTIONS(28885), 1, + anon_sym_COMMA, + STATE(16201), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021095] = 5, + ACTIONS(9183), 1, + anon_sym_RBRACK, + ACTIONS(24882), 1, + anon_sym_COMMA, + STATE(2619), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021112] = 5, + ACTIONS(28624), 1, + sym__alphaAlphaNumeric_ident, + STATE(11955), 1, + sym_strbind, + STATE(13280), 1, + sym__strbind, + STATE(23639), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021129] = 5, + ACTIONS(9185), 1, + anon_sym_RPAREN, + ACTIONS(28887), 1, + anon_sym_COMMA, + STATE(2621), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021146] = 5, + ACTIONS(9187), 1, + anon_sym_RPAREN, + ACTIONS(28889), 1, + anon_sym_SEMI, + STATE(2622), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021163] = 5, + ACTIONS(28891), 1, + sym__alphaAlphaNumeric_ident, + STATE(8735), 1, + sym_strid, + STATE(15108), 1, + sym_longstrid, + STATE(23886), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021180] = 5, + ACTIONS(21406), 1, + anon_sym_RBRACE, + ACTIONS(28893), 1, + anon_sym_COMMA, + STATE(14853), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021197] = 5, + ACTIONS(23384), 1, + anon_sym_RBRACE, + ACTIONS(28895), 1, + anon_sym_COMMA, + STATE(16096), 1, + aux_sym_record_exp_repeat1, + STATE(21219), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021214] = 5, + ACTIONS(4937), 1, + anon_sym_RBRACK, + ACTIONS(28897), 1, + anon_sym_COMMA, + STATE(1008), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021231] = 5, + ACTIONS(9189), 1, + anon_sym_RBRACK, + ACTIONS(28899), 1, + anon_sym_COMMA, + STATE(2623), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021248] = 5, + ACTIONS(28901), 1, + anon_sym_SEMI, + ACTIONS(28903), 1, + anon_sym_end, + STATE(2624), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021265] = 5, + ACTIONS(23374), 1, + anon_sym_RBRACE, + ACTIONS(28905), 1, + anon_sym_COMMA, + STATE(16035), 1, + aux_sym_record_exp_repeat1, + STATE(19306), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021282] = 5, + ACTIONS(6553), 1, + anon_sym_RBRACK, + ACTIONS(24902), 1, + anon_sym_COMMA, + STATE(1426), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021299] = 5, + ACTIONS(21353), 1, + anon_sym_RBRACE, + ACTIONS(28883), 1, + anon_sym_COMMA, + STATE(14841), 1, + aux_sym_record_exp_repeat1, + STATE(19363), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021316] = 3, + STATE(10508), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28907), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1021329] = 5, + ACTIONS(28909), 1, + anon_sym_SEMI, + ACTIONS(28911), 1, + anon_sym_end, + STATE(2627), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021346] = 5, + ACTIONS(28913), 1, + anon_sym_SEMI, + ACTIONS(28915), 1, + anon_sym_end, + STATE(2628), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021363] = 5, + ACTIONS(8059), 1, + anon_sym_RBRACK, + ACTIONS(28917), 1, + anon_sym_COMMA, + STATE(2129), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021380] = 5, + ACTIONS(23390), 1, + anon_sym_RBRACE, + ACTIONS(28919), 1, + anon_sym_COMMA, + STATE(16044), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021397] = 5, + ACTIONS(23390), 1, + anon_sym_RBRACE, + ACTIONS(28919), 1, + anon_sym_COMMA, + STATE(16044), 1, + aux_sym_record_exp_repeat1, + STATE(19310), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021414] = 5, + ACTIONS(20625), 1, + anon_sym_RBRACE, + ACTIONS(28921), 1, + anon_sym_COMMA, + STATE(14467), 1, + aux_sym_record_exp_repeat1, + STATE(19327), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021431] = 5, + ACTIONS(28923), 1, + anon_sym_SEMI, + ACTIONS(28925), 1, + anon_sym_end, + STATE(2630), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021448] = 5, + ACTIONS(23406), 1, + anon_sym_RBRACE, + ACTIONS(28927), 1, + anon_sym_COMMA, + STATE(16048), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021465] = 5, + ACTIONS(4087), 1, + anon_sym_RBRACK, + ACTIONS(26369), 1, + anon_sym_COMMA, + STATE(719), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021482] = 5, + ACTIONS(28929), 1, + anon_sym_SEMI, + ACTIONS(28931), 1, + anon_sym_end, + STATE(2130), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021499] = 5, + ACTIONS(28933), 1, + anon_sym_EQ, + ACTIONS(28935), 1, + anon_sym_COLON, + ACTIONS(28937), 1, + anon_sym_PIPE, + ACTIONS(28939), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021516] = 5, + ACTIONS(6905), 1, + anon_sym_RBRACK, + ACTIONS(26376), 1, + anon_sym_COMMA, + STATE(1594), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021533] = 3, + STATE(10204), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28941), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1021546] = 5, + ACTIONS(23866), 1, + anon_sym_RBRACE, + ACTIONS(28943), 1, + anon_sym_COMMA, + STATE(16304), 1, + aux_sym_record_exp_repeat1, + STATE(19395), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021563] = 3, + STATE(7409), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28945), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1021576] = 5, + ACTIONS(7121), 1, + anon_sym_RPAREN, + ACTIONS(24920), 1, + anon_sym_COMMA, + STATE(1697), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021593] = 5, + ACTIONS(7123), 1, + anon_sym_RPAREN, + ACTIONS(24924), 1, + anon_sym_SEMI, + STATE(1698), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021610] = 5, + ACTIONS(21432), 1, + anon_sym_RBRACE, + ACTIONS(28947), 1, + anon_sym_COMMA, + STATE(14862), 1, + aux_sym_record_exp_repeat1, + STATE(19328), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021627] = 5, + ACTIONS(20914), 1, + anon_sym_RBRACE, + ACTIONS(28949), 1, + anon_sym_COMMA, + STATE(14603), 1, + aux_sym_record_exp_repeat1, + STATE(19347), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021644] = 5, + ACTIONS(4053), 1, + anon_sym_RBRACK, + ACTIONS(28951), 1, + anon_sym_COMMA, + STATE(708), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021661] = 5, + ACTIONS(9223), 1, + anon_sym_RPAREN, + ACTIONS(24928), 1, + anon_sym_COMMA, + STATE(2638), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021678] = 5, + ACTIONS(20695), 1, + anon_sym_RBRACE, + ACTIONS(28953), 1, + anon_sym_COMMA, + STATE(14547), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021695] = 5, + ACTIONS(9225), 1, + anon_sym_RPAREN, + ACTIONS(24930), 1, + anon_sym_SEMI, + STATE(2639), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021712] = 5, + ACTIONS(6823), 1, + anon_sym_RBRACK, + ACTIONS(28955), 1, + anon_sym_COMMA, + STATE(1556), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021729] = 5, + ACTIONS(20631), 1, + anon_sym_RBRACE, + ACTIONS(28957), 1, + anon_sym_COMMA, + STATE(14473), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021746] = 5, + ACTIONS(21434), 1, + anon_sym_RBRACE, + ACTIONS(28959), 1, + anon_sym_COMMA, + STATE(14863), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021763] = 5, + ACTIONS(21434), 1, + anon_sym_RBRACE, + ACTIONS(28959), 1, + anon_sym_COMMA, + STATE(14863), 1, + aux_sym_record_exp_repeat1, + STATE(19339), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021780] = 5, + ACTIONS(4953), 1, + anon_sym_RBRACK, + ACTIONS(24932), 1, + anon_sym_COMMA, + STATE(1013), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021797] = 5, + ACTIONS(20631), 1, + anon_sym_RBRACE, + ACTIONS(28957), 1, + anon_sym_COMMA, + STATE(14473), 1, + aux_sym_record_exp_repeat1, + STATE(19360), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021814] = 5, + ACTIONS(9227), 1, + anon_sym_RBRACK, + ACTIONS(24934), 1, + anon_sym_COMMA, + STATE(2640), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021831] = 5, + ACTIONS(6907), 1, + anon_sym_RPAREN, + ACTIONS(28961), 1, + anon_sym_COMMA, + STATE(1596), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021848] = 5, + ACTIONS(8357), 1, + anon_sym_RPAREN, + ACTIONS(26476), 1, + anon_sym_COMMA, + STATE(2253), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021865] = 5, + ACTIONS(6909), 1, + anon_sym_RPAREN, + ACTIONS(28963), 1, + anon_sym_SEMI, + STATE(1597), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021882] = 5, + ACTIONS(9229), 1, + anon_sym_RPAREN, + ACTIONS(28965), 1, + anon_sym_COMMA, + STATE(2642), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021899] = 5, + ACTIONS(9231), 1, + anon_sym_RPAREN, + ACTIONS(28967), 1, + anon_sym_SEMI, + STATE(2643), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021916] = 5, + ACTIONS(8359), 1, + anon_sym_RPAREN, + ACTIONS(26478), 1, + anon_sym_SEMI, + STATE(2254), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021933] = 5, + ACTIONS(21436), 1, + anon_sym_RBRACE, + ACTIONS(28969), 1, + anon_sym_COMMA, + STATE(14867), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021950] = 5, + ACTIONS(4177), 1, + anon_sym_RBRACK, + ACTIONS(24942), 1, + anon_sym_COMMA, + STATE(749), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021967] = 5, + ACTIONS(4955), 1, + anon_sym_RBRACK, + ACTIONS(28971), 1, + anon_sym_COMMA, + STATE(1014), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1021984] = 5, + ACTIONS(9233), 1, + anon_sym_RBRACK, + ACTIONS(28973), 1, + anon_sym_COMMA, + STATE(2644), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022001] = 5, + ACTIONS(28975), 1, + anon_sym_SEMI, + ACTIONS(28977), 1, + anon_sym_end, + STATE(2645), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022018] = 5, + ACTIONS(28979), 1, + anon_sym_SEMI, + ACTIONS(28981), 1, + anon_sym_end, + STATE(2133), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022035] = 5, + ACTIONS(23468), 1, + anon_sym_RBRACE, + ACTIONS(28983), 1, + anon_sym_COMMA, + STATE(16093), 1, + aux_sym_record_exp_repeat1, + STATE(19353), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022052] = 5, + ACTIONS(7125), 1, + anon_sym_RBRACK, + ACTIONS(24952), 1, + anon_sym_COMMA, + STATE(1699), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022069] = 5, + ACTIONS(20918), 1, + anon_sym_RBRACE, + ACTIONS(28985), 1, + anon_sym_COMMA, + STATE(14608), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022086] = 5, + ACTIONS(20918), 1, + anon_sym_RBRACE, + ACTIONS(28985), 1, + anon_sym_COMMA, + STATE(14608), 1, + aux_sym_record_exp_repeat1, + STATE(19377), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022103] = 5, + ACTIONS(6555), 1, + anon_sym_RPAREN, + ACTIONS(28987), 1, + anon_sym_COMMA, + STATE(1428), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022120] = 5, + ACTIONS(28989), 1, + anon_sym_SEMI, + ACTIONS(28991), 1, + anon_sym_end, + STATE(2648), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022137] = 5, + ACTIONS(28993), 1, + anon_sym_SEMI, + ACTIONS(28995), 1, + anon_sym_end, + STATE(2649), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022154] = 5, + ACTIONS(20695), 1, + anon_sym_RBRACE, + ACTIONS(28953), 1, + anon_sym_COMMA, + STATE(14547), 1, + aux_sym_record_exp_repeat1, + STATE(19645), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022171] = 5, + ACTIONS(23488), 1, + anon_sym_RBRACE, + ACTIONS(28997), 1, + anon_sym_COMMA, + STATE(16110), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022188] = 5, + ACTIONS(23488), 1, + anon_sym_RBRACE, + ACTIONS(28997), 1, + anon_sym_COMMA, + STATE(16110), 1, + aux_sym_record_exp_repeat1, + STATE(19359), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022205] = 5, + ACTIONS(7127), 1, + anon_sym_RPAREN, + ACTIONS(28999), 1, + anon_sym_COMMA, + STATE(1701), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022222] = 5, + ACTIONS(7129), 1, + anon_sym_RPAREN, + ACTIONS(29001), 1, + anon_sym_SEMI, + STATE(1702), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022239] = 5, + ACTIONS(29003), 1, + anon_sym_SEMI, + ACTIONS(29005), 1, + anon_sym_end, + STATE(2651), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022256] = 5, + ACTIONS(6557), 1, + anon_sym_RPAREN, + ACTIONS(29007), 1, + anon_sym_SEMI, + STATE(1429), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022273] = 5, + ACTIONS(23526), 1, + anon_sym_RBRACE, + ACTIONS(29009), 1, + anon_sym_COMMA, + STATE(16112), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022290] = 5, + ACTIONS(20639), 1, + anon_sym_RBRACE, + ACTIONS(29011), 1, + anon_sym_COMMA, + STATE(14477), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022307] = 5, + ACTIONS(4635), 1, + anon_sym_RBRACK, + ACTIONS(26482), 1, + anon_sym_COMMA, + STATE(905), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022324] = 5, + ACTIONS(4179), 1, + anon_sym_RBRACK, + ACTIONS(29013), 1, + anon_sym_COMMA, + STATE(750), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022341] = 5, + ACTIONS(21381), 1, + anon_sym_RBRACE, + ACTIONS(29015), 1, + anon_sym_COMMA, + STATE(14845), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022358] = 5, + ACTIONS(8361), 1, + anon_sym_RBRACK, + ACTIONS(26484), 1, + anon_sym_COMMA, + STATE(2255), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022375] = 5, + ACTIONS(7131), 1, + anon_sym_RBRACK, + ACTIONS(29017), 1, + anon_sym_COMMA, + STATE(1703), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022392] = 5, + ACTIONS(21078), 1, + anon_sym_RBRACE, + ACTIONS(29019), 1, + anon_sym_COMMA, + STATE(14709), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022409] = 5, + ACTIONS(29021), 1, + anon_sym_SEMI, + ACTIONS(29023), 1, + anon_sym_end, + STATE(1704), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022426] = 5, + ACTIONS(29025), 1, + anon_sym_SEMI, + ACTIONS(29027), 1, + anon_sym_end, + STATE(2134), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022443] = 3, + STATE(5872), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29029), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1022456] = 5, + ACTIONS(4491), 1, + anon_sym_RBRACK, + ACTIONS(24605), 1, + anon_sym_COMMA, + STATE(857), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022473] = 5, + ACTIONS(23060), 1, + anon_sym_RBRACE, + ACTIONS(29031), 1, + anon_sym_COMMA, + STATE(15857), 1, + aux_sym_record_exp_repeat1, + STATE(19401), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022490] = 5, + ACTIONS(21489), 1, + anon_sym_RBRACE, + ACTIONS(29033), 1, + anon_sym_COMMA, + STATE(14886), 1, + aux_sym_record_exp_repeat1, + STATE(19379), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022507] = 5, + ACTIONS(6409), 1, + anon_sym_RPAREN, + ACTIONS(25064), 1, + anon_sym_COMMA, + STATE(1357), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022524] = 5, + ACTIONS(8363), 1, + anon_sym_RPAREN, + ACTIONS(29035), 1, + anon_sym_COMMA, + STATE(2257), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022541] = 5, + ACTIONS(8365), 1, + anon_sym_RPAREN, + ACTIONS(29037), 1, + anon_sym_SEMI, + STATE(2258), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022558] = 5, + ACTIONS(9267), 1, + anon_sym_RPAREN, + ACTIONS(24974), 1, + anon_sym_COMMA, + STATE(2659), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022575] = 5, + ACTIONS(20920), 1, + anon_sym_RBRACE, + ACTIONS(29039), 1, + anon_sym_COMMA, + STATE(14614), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022592] = 5, + ACTIONS(9269), 1, + anon_sym_RPAREN, + ACTIONS(24976), 1, + anon_sym_SEMI, + STATE(2660), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022609] = 5, + ACTIONS(21491), 1, + anon_sym_RBRACE, + ACTIONS(29041), 1, + anon_sym_COMMA, + STATE(14887), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022626] = 5, + ACTIONS(21491), 1, + anon_sym_RBRACE, + ACTIONS(29041), 1, + anon_sym_COMMA, + STATE(14887), 1, + aux_sym_record_exp_repeat1, + STATE(19390), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022643] = 5, + ACTIONS(4971), 1, + anon_sym_RBRACK, + ACTIONS(24978), 1, + anon_sym_COMMA, + STATE(1019), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022660] = 5, + ACTIONS(4089), 1, + anon_sym_RBRACK, + ACTIONS(29043), 1, + anon_sym_COMMA, + STATE(720), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022677] = 5, + ACTIONS(9271), 1, + anon_sym_RBRACK, + ACTIONS(24980), 1, + anon_sym_COMMA, + STATE(2661), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022694] = 5, + ACTIONS(4637), 1, + anon_sym_RBRACK, + ACTIONS(29045), 1, + anon_sym_COMMA, + STATE(906), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022711] = 5, + ACTIONS(8367), 1, + anon_sym_RBRACK, + ACTIONS(29047), 1, + anon_sym_COMMA, + STATE(2259), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022728] = 5, + ACTIONS(6911), 1, + anon_sym_RBRACK, + ACTIONS(29049), 1, + anon_sym_COMMA, + STATE(1598), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022745] = 5, + ACTIONS(9273), 1, + anon_sym_RPAREN, + ACTIONS(29051), 1, + anon_sym_COMMA, + STATE(2663), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022762] = 5, + ACTIONS(9275), 1, + anon_sym_RPAREN, + ACTIONS(29053), 1, + anon_sym_SEMI, + STATE(2664), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022779] = 5, + ACTIONS(29055), 1, + anon_sym_SEMI, + ACTIONS(29057), 1, + anon_sym_end, + STATE(2260), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022796] = 5, + ACTIONS(21493), 1, + anon_sym_RBRACE, + ACTIONS(29059), 1, + anon_sym_COMMA, + STATE(14889), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022813] = 5, + ACTIONS(29061), 1, + anon_sym_SEMI, + ACTIONS(29063), 1, + anon_sym_end, + STATE(1557), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022830] = 5, + ACTIONS(4973), 1, + anon_sym_RBRACK, + ACTIONS(29065), 1, + anon_sym_COMMA, + STATE(1020), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022847] = 5, + ACTIONS(29067), 1, + anon_sym_SEMI, + ACTIONS(29069), 1, + anon_sym_end, + STATE(1707), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022864] = 5, + ACTIONS(9277), 1, + anon_sym_RBRACK, + ACTIONS(29071), 1, + anon_sym_COMMA, + STATE(2665), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022881] = 5, + ACTIONS(23884), 1, + anon_sym_RBRACE, + ACTIONS(29073), 1, + anon_sym_COMMA, + STATE(16315), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022898] = 5, + ACTIONS(29075), 1, + anon_sym_SEMI, + ACTIONS(29077), 1, + anon_sym_end, + STATE(2666), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022915] = 5, + ACTIONS(22588), 1, + anon_sym_RBRACE, + ACTIONS(29079), 1, + anon_sym_COMMA, + STATE(15605), 1, + aux_sym_record_exp_repeat1, + STATE(19422), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022932] = 5, + ACTIONS(23590), 1, + anon_sym_RBRACE, + ACTIONS(29081), 1, + anon_sym_COMMA, + STATE(16151), 1, + aux_sym_record_exp_repeat1, + STATE(19406), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022949] = 5, + ACTIONS(29083), 1, + anon_sym_SEMI, + ACTIONS(29085), 1, + anon_sym_end, + STATE(1708), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022966] = 5, + ACTIONS(3945), 1, + anon_sym_RBRACK, + ACTIONS(29087), 1, + anon_sym_COMMA, + STATE(672), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1022983] = 5, + ACTIONS(23125), 1, + anon_sym_RBRACE, + ACTIONS(29089), 1, + anon_sym_COMMA, + STATE(15858), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023000] = 5, + ACTIONS(29091), 1, + anon_sym_SEMI, + ACTIONS(29093), 1, + anon_sym_end, + STATE(2669), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023017] = 5, + ACTIONS(29095), 1, + anon_sym_SEMI, + ACTIONS(29097), 1, + anon_sym_end, + STATE(2670), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023034] = 5, + ACTIONS(29099), 1, + anon_sym_SEMI, + ACTIONS(29101), 1, + anon_sym_end, + STATE(1599), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023051] = 5, + ACTIONS(23125), 1, + anon_sym_RBRACE, + ACTIONS(29089), 1, + anon_sym_COMMA, + STATE(15858), 1, + aux_sym_record_exp_repeat1, + STATE(19415), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023068] = 5, + ACTIONS(23600), 1, + anon_sym_RBRACE, + ACTIONS(29103), 1, + anon_sym_COMMA, + STATE(16153), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023085] = 5, + ACTIONS(23600), 1, + anon_sym_RBRACE, + ACTIONS(29103), 1, + anon_sym_COMMA, + STATE(16153), 1, + aux_sym_record_exp_repeat1, + STATE(19410), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023102] = 5, + ACTIONS(23884), 1, + anon_sym_RBRACE, + ACTIONS(29073), 1, + anon_sym_COMMA, + STATE(16315), 1, + aux_sym_record_exp_repeat1, + STATE(19464), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023119] = 5, + ACTIONS(29105), 1, + anon_sym_SEMI, + ACTIONS(29107), 1, + anon_sym_end, + STATE(2672), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023136] = 5, + ACTIONS(23604), 1, + anon_sym_RBRACE, + ACTIONS(29109), 1, + anon_sym_COMMA, + STATE(16155), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023153] = 5, + ACTIONS(23328), 1, + anon_sym_RBRACE, + ACTIONS(29111), 1, + anon_sym_COMMA, + STATE(16051), 1, + aux_sym_record_exp_repeat1, + STATE(19462), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023170] = 5, + ACTIONS(29113), 1, + anon_sym_SEMI, + ACTIONS(29115), 1, + anon_sym_end, + STATE(1710), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023187] = 5, + ACTIONS(21034), 1, + anon_sym_RBRACE, + ACTIONS(29117), 1, + anon_sym_COMMA, + STATE(14424), 1, + aux_sym_record_exp_repeat1, + STATE(21050), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023204] = 3, + STATE(12127), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29119), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1023217] = 5, + ACTIONS(23127), 1, + anon_sym_RBRACE, + ACTIONS(29121), 1, + anon_sym_COMMA, + STATE(15887), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023234] = 3, + STATE(9431), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29123), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1023247] = 5, + ACTIONS(29125), 1, + anon_sym_SEMI, + ACTIONS(29127), 1, + anon_sym_end, + STATE(2263), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023264] = 5, + ACTIONS(22418), 1, + anon_sym_RBRACE, + ACTIONS(29129), 1, + anon_sym_COMMA, + STATE(15501), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023281] = 5, + ACTIONS(21517), 1, + anon_sym_RBRACE, + ACTIONS(29131), 1, + anon_sym_COMMA, + STATE(14899), 1, + aux_sym_record_exp_repeat1, + STATE(19428), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023298] = 5, + ACTIONS(29133), 1, + anon_sym_SEMI, + ACTIONS(29135), 1, + anon_sym_end, + STATE(2264), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023315] = 5, + ACTIONS(3925), 1, + anon_sym_RBRACK, + ACTIONS(26552), 1, + anon_sym_COMMA, + STATE(665), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023332] = 5, + ACTIONS(22666), 1, + anon_sym_RBRACE, + ACTIONS(29137), 1, + anon_sym_COMMA, + STATE(15633), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023349] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19712), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13356), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1023362] = 5, + ACTIONS(22666), 1, + anon_sym_RBRACE, + ACTIONS(29137), 1, + anon_sym_COMMA, + STATE(15633), 1, + aux_sym_record_exp_repeat1, + STATE(19443), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023379] = 5, + ACTIONS(6559), 1, + anon_sym_RBRACK, + ACTIONS(29139), 1, + anon_sym_COMMA, + STATE(1430), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023396] = 5, + ACTIONS(9311), 1, + anon_sym_RPAREN, + ACTIONS(25008), 1, + anon_sym_COMMA, + STATE(2680), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023413] = 5, + ACTIONS(9313), 1, + anon_sym_RPAREN, + ACTIONS(25010), 1, + anon_sym_SEMI, + STATE(2681), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023430] = 5, + ACTIONS(21521), 1, + anon_sym_RBRACE, + ACTIONS(29141), 1, + anon_sym_COMMA, + STATE(14900), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023447] = 5, + ACTIONS(21521), 1, + anon_sym_RBRACE, + ACTIONS(29141), 1, + anon_sym_COMMA, + STATE(14900), 1, + aux_sym_record_exp_repeat1, + STATE(19436), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023464] = 5, + ACTIONS(4989), 1, + anon_sym_RBRACK, + ACTIONS(25012), 1, + anon_sym_COMMA, + STATE(1025), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023481] = 4, + STATE(14321), 1, + sym_vid, + STATE(14338), 1, + sym_condesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1023496] = 5, + ACTIONS(9315), 1, + anon_sym_RBRACK, + ACTIONS(25014), 1, + anon_sym_COMMA, + STATE(2682), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023513] = 5, + ACTIONS(21525), 1, + anon_sym_RBRACE, + ACTIONS(29143), 1, + anon_sym_COMMA, + STATE(14910), 1, + aux_sym_record_exp_repeat1, + STATE(19475), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023530] = 5, + ACTIONS(9317), 1, + anon_sym_RPAREN, + ACTIONS(29145), 1, + anon_sym_COMMA, + STATE(2684), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023547] = 5, + ACTIONS(9319), 1, + anon_sym_RPAREN, + ACTIONS(29147), 1, + anon_sym_SEMI, + STATE(2685), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023564] = 5, + ACTIONS(21523), 1, + anon_sym_RBRACE, + ACTIONS(29149), 1, + anon_sym_COMMA, + STATE(14902), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023581] = 5, + ACTIONS(4991), 1, + anon_sym_RBRACK, + ACTIONS(29151), 1, + anon_sym_COMMA, + STATE(1026), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023598] = 5, + ACTIONS(29153), 1, + anon_sym_SEMI, + ACTIONS(29155), 1, + anon_sym_end, + STATE(2266), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023615] = 5, + ACTIONS(9321), 1, + anon_sym_RBRACK, + ACTIONS(29157), 1, + anon_sym_COMMA, + STATE(2686), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023632] = 5, + ACTIONS(29159), 1, + anon_sym_SEMI, + ACTIONS(29161), 1, + anon_sym_end, + STATE(2687), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023649] = 5, + ACTIONS(23650), 1, + anon_sym_RBRACE, + ACTIONS(29163), 1, + anon_sym_COMMA, + STATE(16179), 1, + aux_sym_record_exp_repeat1, + STATE(19446), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023666] = 5, + ACTIONS(29165), 1, + anon_sym_SEMI, + ACTIONS(29167), 1, + anon_sym_end, + STATE(1431), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023683] = 5, + ACTIONS(22722), 1, + anon_sym_RBRACE, + ACTIONS(29169), 1, + anon_sym_COMMA, + STATE(15640), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023700] = 5, + ACTIONS(29171), 1, + anon_sym_SEMI, + ACTIONS(29173), 1, + anon_sym_end, + STATE(2690), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023717] = 5, + ACTIONS(29175), 1, + anon_sym_SEMI, + ACTIONS(29177), 1, + anon_sym_end, + STATE(2691), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023734] = 5, + ACTIONS(23654), 1, + anon_sym_RBRACE, + ACTIONS(29179), 1, + anon_sym_COMMA, + STATE(16181), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023751] = 5, + ACTIONS(23654), 1, + anon_sym_RBRACE, + ACTIONS(29179), 1, + anon_sym_COMMA, + STATE(16181), 1, + aux_sym_record_exp_repeat1, + STATE(19449), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023768] = 5, + ACTIONS(29181), 1, + anon_sym_SEMI, + ACTIONS(29183), 1, + anon_sym_end, + STATE(2693), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023785] = 5, + ACTIONS(23658), 1, + anon_sym_RBRACE, + ACTIONS(29185), 1, + anon_sym_COMMA, + STATE(16182), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023802] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19712), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13340), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1023815] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19712), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13412), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1023828] = 5, + ACTIONS(6505), 1, + anon_sym_RBRACK, + ACTIONS(26562), 1, + anon_sym_COMMA, + STATE(1403), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023845] = 5, + ACTIONS(29187), 1, + anon_sym_SEMI, + ACTIONS(29189), 1, + anon_sym_end, + STATE(1602), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023862] = 5, + ACTIONS(23424), 1, + anon_sym_RBRACE, + ACTIONS(29191), 1, + anon_sym_COMMA, + STATE(16330), 1, + aux_sym_record_exp_repeat1, + STATE(19629), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023879] = 5, + ACTIONS(29193), 1, + anon_sym_SEMI, + ACTIONS(29195), 1, + anon_sym_end, + STATE(2136), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023896] = 5, + ACTIONS(22555), 1, + anon_sym_RBRACE, + ACTIONS(29197), 1, + anon_sym_COMMA, + STATE(15611), 1, + aux_sym_record_exp_repeat1, + STATE(19595), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023913] = 3, + STATE(9443), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29199), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1023926] = 5, + ACTIONS(29201), 1, + anon_sym_SEMI, + ACTIONS(29203), 1, + anon_sym_end, + STATE(1603), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023943] = 3, + STATE(7670), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29205), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1023956] = 5, + ACTIONS(21541), 1, + anon_sym_RBRACE, + ACTIONS(29207), 1, + anon_sym_COMMA, + STATE(14909), 1, + aux_sym_record_exp_repeat1, + STATE(19472), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1023973] = 3, + STATE(4240), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29209), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1023986] = 5, + ACTIONS(23418), 1, + anon_sym_RBRACE, + ACTIONS(29211), 1, + anon_sym_COMMA, + STATE(16062), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024003] = 5, + ACTIONS(5971), 1, + anon_sym_RPAREN, + ACTIONS(25048), 1, + anon_sym_COMMA, + STATE(1148), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024020] = 5, + ACTIONS(23904), 1, + anon_sym_RBRACE, + ACTIONS(29213), 1, + anon_sym_COMMA, + STATE(16317), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024037] = 5, + ACTIONS(5973), 1, + anon_sym_RPAREN, + ACTIONS(25050), 1, + anon_sym_SEMI, + STATE(1149), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024054] = 5, + ACTIONS(23418), 1, + anon_sym_RBRACE, + ACTIONS(29211), 1, + anon_sym_COMMA, + STATE(16062), 1, + aux_sym_record_exp_repeat1, + STATE(19513), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024071] = 5, + ACTIONS(6411), 1, + anon_sym_RPAREN, + ACTIONS(25090), 1, + anon_sym_SEMI, + STATE(1358), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024088] = 5, + ACTIONS(9355), 1, + anon_sym_RPAREN, + ACTIONS(25052), 1, + anon_sym_COMMA, + STATE(2701), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024105] = 5, + ACTIONS(20932), 1, + anon_sym_RBRACE, + ACTIONS(29215), 1, + anon_sym_COMMA, + STATE(14634), 1, + aux_sym_record_exp_repeat1, + STATE(19499), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024122] = 5, + ACTIONS(9357), 1, + anon_sym_RPAREN, + ACTIONS(25054), 1, + anon_sym_SEMI, + STATE(2702), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024139] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29217), 4, + anon_sym_RPAREN, + anon_sym_End, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [1024150] = 5, + ACTIONS(21547), 1, + anon_sym_RBRACE, + ACTIONS(29219), 1, + anon_sym_COMMA, + STATE(14911), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024167] = 5, + ACTIONS(21547), 1, + anon_sym_RBRACE, + ACTIONS(29219), 1, + anon_sym_COMMA, + STATE(14911), 1, + aux_sym_record_exp_repeat1, + STATE(19481), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024184] = 5, + ACTIONS(5007), 1, + anon_sym_RBRACK, + ACTIONS(25056), 1, + anon_sym_COMMA, + STATE(1031), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024201] = 5, + ACTIONS(21549), 1, + anon_sym_RBRACE, + ACTIONS(29221), 1, + anon_sym_COMMA, + STATE(14922), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024218] = 5, + ACTIONS(9359), 1, + anon_sym_RBRACK, + ACTIONS(25058), 1, + anon_sym_COMMA, + STATE(2703), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024235] = 5, + ACTIONS(20663), 1, + anon_sym_RBRACE, + ACTIONS(29223), 1, + anon_sym_COMMA, + STATE(14485), 1, + aux_sym_record_exp_repeat1, + STATE(19506), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024252] = 5, + ACTIONS(21549), 1, + anon_sym_RBRACE, + ACTIONS(29221), 1, + anon_sym_COMMA, + STATE(14922), 1, + aux_sym_record_exp_repeat1, + STATE(19536), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024269] = 5, + ACTIONS(9361), 1, + anon_sym_RPAREN, + ACTIONS(29225), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024286] = 5, + ACTIONS(9363), 1, + anon_sym_RPAREN, + ACTIONS(29227), 1, + anon_sym_SEMI, + STATE(2706), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024303] = 5, + ACTIONS(21551), 1, + anon_sym_RBRACE, + ACTIONS(29229), 1, + anon_sym_COMMA, + STATE(14912), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024320] = 5, + ACTIONS(5009), 1, + anon_sym_RBRACK, + ACTIONS(29231), 1, + anon_sym_COMMA, + STATE(1032), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024337] = 5, + ACTIONS(9365), 1, + anon_sym_RBRACK, + ACTIONS(29233), 1, + anon_sym_COMMA, + STATE(2707), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024354] = 5, + ACTIONS(29235), 1, + anon_sym_SEMI, + ACTIONS(29237), 1, + anon_sym_end, + STATE(2708), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024371] = 5, + ACTIONS(22679), 1, + anon_sym_RBRACE, + ACTIONS(29239), 1, + anon_sym_COMMA, + STATE(15624), 1, + aux_sym_record_exp_repeat1, + STATE(19694), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024388] = 5, + ACTIONS(23696), 1, + anon_sym_RBRACE, + ACTIONS(29241), 1, + anon_sym_COMMA, + STATE(16203), 1, + aux_sym_record_exp_repeat1, + STATE(19492), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024405] = 5, + ACTIONS(3681), 1, + anon_sym_RBRACK, + ACTIONS(25076), 1, + anon_sym_COMMA, + STATE(592), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024422] = 5, + ACTIONS(5975), 1, + anon_sym_RBRACK, + ACTIONS(25078), 1, + anon_sym_COMMA, + STATE(1150), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024439] = 5, + ACTIONS(29243), 1, + anon_sym_SEMI, + ACTIONS(29245), 1, + anon_sym_end, + STATE(2711), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024456] = 5, + ACTIONS(29247), 1, + anon_sym_SEMI, + ACTIONS(29249), 1, + anon_sym_end, + STATE(2712), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024473] = 5, + ACTIONS(8401), 1, + anon_sym_RPAREN, + ACTIONS(26694), 1, + anon_sym_COMMA, + STATE(2274), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024490] = 5, + ACTIONS(23700), 1, + anon_sym_RBRACE, + ACTIONS(29251), 1, + anon_sym_COMMA, + STATE(16206), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024507] = 5, + ACTIONS(23700), 1, + anon_sym_RBRACE, + ACTIONS(29251), 1, + anon_sym_COMMA, + STATE(16206), 1, + aux_sym_record_exp_repeat1, + STATE(19496), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024524] = 5, + ACTIONS(8403), 1, + anon_sym_RPAREN, + ACTIONS(26718), 1, + anon_sym_SEMI, + STATE(2275), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024541] = 5, + ACTIONS(29253), 1, + anon_sym_SEMI, + ACTIONS(29255), 1, + anon_sym_end, + STATE(2714), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024558] = 5, + ACTIONS(23706), 1, + anon_sym_RBRACE, + ACTIONS(29257), 1, + anon_sym_COMMA, + STATE(16207), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024575] = 5, + ACTIONS(21557), 1, + anon_sym_RBRACE, + ACTIONS(29259), 1, + anon_sym_COMMA, + STATE(14929), 1, + aux_sym_record_exp_repeat1, + STATE(19560), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024592] = 5, + ACTIONS(29261), 1, + anon_sym_SEMI, + ACTIONS(29263), 1, + anon_sym_end, + STATE(1605), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024609] = 5, + ACTIONS(20942), 1, + anon_sym_RBRACE, + ACTIONS(29265), 1, + anon_sym_COMMA, + STATE(14636), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024626] = 5, + ACTIONS(20942), 1, + anon_sym_RBRACE, + ACTIONS(29265), 1, + anon_sym_COMMA, + STATE(14636), 1, + aux_sym_record_exp_repeat1, + STATE(19522), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024643] = 5, + ACTIONS(7165), 1, + anon_sym_RPAREN, + ACTIONS(25092), 1, + anon_sym_COMMA, + STATE(1718), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024660] = 5, + ACTIONS(7167), 1, + anon_sym_RPAREN, + ACTIONS(25094), 1, + anon_sym_SEMI, + STATE(1719), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024677] = 3, + STATE(7008), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29267), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1024690] = 5, + ACTIONS(4653), 1, + anon_sym_RBRACK, + ACTIONS(25626), 1, + anon_sym_COMMA, + STATE(911), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024707] = 5, + ACTIONS(7923), 1, + anon_sym_RPAREN, + ACTIONS(24254), 1, + anon_sym_COMMA, + STATE(2080), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024724] = 5, + ACTIONS(20667), 1, + anon_sym_RBRACE, + ACTIONS(29269), 1, + anon_sym_COMMA, + STATE(14489), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024741] = 5, + ACTIONS(21563), 1, + anon_sym_RBRACE, + ACTIONS(29271), 1, + anon_sym_COMMA, + STATE(14919), 1, + aux_sym_record_exp_repeat1, + STATE(19514), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024758] = 5, + ACTIONS(20667), 1, + anon_sym_RBRACE, + ACTIONS(29269), 1, + anon_sym_COMMA, + STATE(14489), 1, + aux_sym_record_exp_repeat1, + STATE(19547), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024775] = 5, + ACTIONS(8405), 1, + anon_sym_RBRACK, + ACTIONS(24182), 1, + anon_sym_COMMA, + STATE(2276), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024792] = 5, + ACTIONS(4195), 1, + anon_sym_RBRACK, + ACTIONS(25104), 1, + anon_sym_COMMA, + STATE(755), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024809] = 5, + ACTIONS(9399), 1, + anon_sym_RPAREN, + ACTIONS(25100), 1, + anon_sym_COMMA, + STATE(2722), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024826] = 5, + ACTIONS(9401), 1, + anon_sym_RPAREN, + ACTIONS(25102), 1, + anon_sym_SEMI, + STATE(2723), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024843] = 5, + ACTIONS(23432), 1, + anon_sym_RBRACE, + ACTIONS(29273), 1, + anon_sym_COMMA, + STATE(16063), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024860] = 5, + ACTIONS(21571), 1, + anon_sym_RBRACE, + ACTIONS(29275), 1, + anon_sym_COMMA, + STATE(14920), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024877] = 5, + ACTIONS(21571), 1, + anon_sym_RBRACE, + ACTIONS(29275), 1, + anon_sym_COMMA, + STATE(14920), 1, + aux_sym_record_exp_repeat1, + STATE(19525), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024894] = 5, + ACTIONS(5025), 1, + anon_sym_RBRACK, + ACTIONS(25106), 1, + anon_sym_COMMA, + STATE(1037), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024911] = 5, + ACTIONS(8407), 1, + anon_sym_RPAREN, + ACTIONS(29277), 1, + anon_sym_COMMA, + STATE(2278), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024928] = 4, + STATE(15085), 1, + sym_valdesc, + STATE(24986), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1024943] = 5, + ACTIONS(9403), 1, + anon_sym_RBRACK, + ACTIONS(25108), 1, + anon_sym_COMMA, + STATE(2724), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024960] = 5, + ACTIONS(8409), 1, + anon_sym_RPAREN, + ACTIONS(29279), 1, + anon_sym_SEMI, + STATE(2279), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024977] = 5, + ACTIONS(7169), 1, + anon_sym_RBRACK, + ACTIONS(25114), 1, + anon_sym_COMMA, + STATE(1720), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1024994] = 5, + ACTIONS(20944), 1, + anon_sym_RBRACE, + ACTIONS(29281), 1, + anon_sym_COMMA, + STATE(14639), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025011] = 5, + ACTIONS(9405), 1, + anon_sym_RPAREN, + ACTIONS(29283), 1, + anon_sym_COMMA, + STATE(2726), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025028] = 5, + ACTIONS(9407), 1, + anon_sym_RPAREN, + ACTIONS(29285), 1, + anon_sym_SEMI, + STATE(2727), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025045] = 5, + ACTIONS(21573), 1, + anon_sym_RBRACE, + ACTIONS(29287), 1, + anon_sym_COMMA, + STATE(14921), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025062] = 3, + ACTIONS(29289), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + [1025075] = 5, + ACTIONS(5027), 1, + anon_sym_RBRACK, + ACTIONS(29291), 1, + anon_sym_COMMA, + STATE(1038), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025092] = 5, + ACTIONS(9409), 1, + anon_sym_RBRACK, + ACTIONS(29293), 1, + anon_sym_COMMA, + STATE(2728), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025109] = 5, + ACTIONS(29295), 1, + anon_sym_SEMI, + ACTIONS(29297), 1, + anon_sym_end, + STATE(2729), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025126] = 5, + ACTIONS(4655), 1, + anon_sym_RBRACK, + ACTIONS(29299), 1, + anon_sym_COMMA, + STATE(912), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025143] = 5, + ACTIONS(23758), 1, + anon_sym_RBRACE, + ACTIONS(29301), 1, + anon_sym_COMMA, + STATE(16240), 1, + aux_sym_record_exp_repeat1, + STATE(19539), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025160] = 5, + ACTIONS(20827), 1, + anon_sym_RBRACE, + ACTIONS(29303), 1, + anon_sym_COMMA, + STATE(14644), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025177] = 5, + ACTIONS(5977), 1, + anon_sym_RPAREN, + ACTIONS(29305), 1, + anon_sym_COMMA, + STATE(1152), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025194] = 5, + ACTIONS(5979), 1, + anon_sym_RPAREN, + ACTIONS(29307), 1, + anon_sym_SEMI, + STATE(1153), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025211] = 5, + ACTIONS(29309), 1, + anon_sym_SEMI, + ACTIONS(29311), 1, + anon_sym_end, + STATE(2732), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025228] = 5, + ACTIONS(21577), 1, + anon_sym_RBRACE, + ACTIONS(29313), 1, + anon_sym_COMMA, + STATE(14941), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025245] = 5, + ACTIONS(29315), 1, + anon_sym_SEMI, + ACTIONS(29317), 1, + anon_sym_end, + STATE(2733), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025262] = 5, + ACTIONS(8411), 1, + anon_sym_RBRACK, + ACTIONS(29319), 1, + anon_sym_COMMA, + STATE(2280), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025279] = 5, + ACTIONS(23768), 1, + anon_sym_RBRACE, + ACTIONS(29321), 1, + anon_sym_COMMA, + STATE(16242), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025296] = 5, + ACTIONS(23768), 1, + anon_sym_RBRACE, + ACTIONS(29321), 1, + anon_sym_COMMA, + STATE(16242), 1, + aux_sym_record_exp_repeat1, + STATE(19544), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025313] = 5, + ACTIONS(7171), 1, + anon_sym_RPAREN, + ACTIONS(29323), 1, + anon_sym_COMMA, + STATE(1722), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025330] = 5, + ACTIONS(29325), 1, + anon_sym_SEMI, + ACTIONS(29327), 1, + anon_sym_end, + STATE(2735), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025347] = 5, + ACTIONS(7173), 1, + anon_sym_RPAREN, + ACTIONS(29329), 1, + anon_sym_SEMI, + STATE(1723), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025364] = 5, + ACTIONS(23772), 1, + anon_sym_RBRACE, + ACTIONS(29331), 1, + anon_sym_COMMA, + STATE(16243), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025381] = 5, + ACTIONS(3683), 1, + anon_sym_RBRACK, + ACTIONS(29333), 1, + anon_sym_COMMA, + STATE(593), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025398] = 5, + ACTIONS(5981), 1, + anon_sym_RBRACK, + ACTIONS(29335), 1, + anon_sym_COMMA, + STATE(1154), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025415] = 5, + ACTIONS(20675), 1, + anon_sym_RBRACE, + ACTIONS(29337), 1, + anon_sym_COMMA, + STATE(14492), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025432] = 5, + ACTIONS(29339), 1, + anon_sym_SEMI, + ACTIONS(29341), 1, + anon_sym_end, + STATE(1155), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025449] = 5, + ACTIONS(29343), 1, + anon_sym_SEMI, + ACTIONS(29345), 1, + anon_sym_end, + STATE(2281), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025466] = 5, + ACTIONS(29347), 1, + anon_sym_SEMI, + ACTIONS(29349), 1, + anon_sym_end, + STATE(1434), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025483] = 5, + ACTIONS(7927), 1, + anon_sym_RBRACK, + ACTIONS(25974), 1, + anon_sym_COMMA, + STATE(2082), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025500] = 3, + STATE(5968), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29351), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1025513] = 5, + ACTIONS(23012), 1, + anon_sym_RBRACE, + ACTIONS(29353), 1, + anon_sym_COMMA, + STATE(15824), 1, + aux_sym_record_exp_repeat1, + STATE(19579), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025530] = 5, + ACTIONS(29355), 1, + sym__alphaAlphaNumeric_ident, + STATE(11971), 1, + sym_sigbind, + STATE(13103), 1, + sym__sigbind, + STATE(24932), 1, + sym_sigid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025547] = 5, + ACTIONS(4197), 1, + anon_sym_RBRACK, + ACTIONS(29357), 1, + anon_sym_COMMA, + STATE(756), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025564] = 5, + ACTIONS(14921), 1, + anon_sym_RPAREN, + ACTIONS(26868), 1, + anon_sym_COMMA, + STATE(7944), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025581] = 5, + ACTIONS(21593), 1, + anon_sym_RBRACE, + ACTIONS(29359), 1, + anon_sym_COMMA, + STATE(14930), 1, + aux_sym_record_exp_repeat1, + STATE(19565), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025598] = 5, + ACTIONS(7175), 1, + anon_sym_RBRACK, + ACTIONS(29361), 1, + anon_sym_COMMA, + STATE(1724), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025615] = 5, + ACTIONS(27916), 1, + anon_sym_RPAREN, + ACTIONS(29363), 1, + anon_sym_SEMI, + STATE(3070), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025632] = 5, + ACTIONS(21595), 1, + anon_sym_RBRACE, + ACTIONS(29366), 1, + anon_sym_COMMA, + STATE(14953), 1, + aux_sym_record_exp_repeat1, + STATE(20410), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025649] = 5, + ACTIONS(29368), 1, + anon_sym_SEMI, + ACTIONS(29370), 1, + anon_sym_end, + STATE(1725), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025666] = 5, + ACTIONS(9443), 1, + anon_sym_RPAREN, + ACTIONS(25144), 1, + anon_sym_COMMA, + STATE(2743), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025683] = 5, + ACTIONS(21595), 1, + anon_sym_RBRACE, + ACTIONS(29366), 1, + anon_sym_COMMA, + STATE(14953), 1, + aux_sym_record_exp_repeat1, + STATE(19624), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025700] = 5, + ACTIONS(9445), 1, + anon_sym_RPAREN, + ACTIONS(25146), 1, + anon_sym_SEMI, + STATE(2744), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025717] = 5, + ACTIONS(21597), 1, + anon_sym_RBRACE, + ACTIONS(29372), 1, + anon_sym_COMMA, + STATE(14935), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025734] = 5, + ACTIONS(21597), 1, + anon_sym_RBRACE, + ACTIONS(29372), 1, + anon_sym_COMMA, + STATE(14935), 1, + aux_sym_record_exp_repeat1, + STATE(19575), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025751] = 5, + ACTIONS(5043), 1, + anon_sym_RBRACK, + ACTIONS(25152), 1, + anon_sym_COMMA, + STATE(1043), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025768] = 5, + ACTIONS(29374), 1, + anon_sym_SEMI, + ACTIONS(29376), 1, + anon_sym_end, + STATE(1346), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025785] = 5, + ACTIONS(9447), 1, + anon_sym_RBRACK, + ACTIONS(25154), 1, + anon_sym_COMMA, + STATE(2745), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025802] = 5, + ACTIONS(29378), 1, + anon_sym_SEMI, + ACTIONS(29380), 1, + anon_sym_end, + STATE(2284), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025819] = 5, + ACTIONS(29382), 1, + anon_sym_SEMI, + ACTIONS(29384), 1, + anon_sym_end, + STATE(2285), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025836] = 5, + ACTIONS(14719), 1, + anon_sym_RBRACK, + ACTIONS(26932), 1, + anon_sym_COMMA, + STATE(5909), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025853] = 5, + ACTIONS(9449), 1, + anon_sym_RPAREN, + ACTIONS(29386), 1, + anon_sym_COMMA, + STATE(2747), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025870] = 5, + ACTIONS(9451), 1, + anon_sym_RPAREN, + ACTIONS(29388), 1, + anon_sym_SEMI, + STATE(2748), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025887] = 5, + ACTIONS(21599), 1, + anon_sym_RBRACE, + ACTIONS(29390), 1, + anon_sym_COMMA, + STATE(14936), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025904] = 5, + ACTIONS(5045), 1, + anon_sym_RBRACK, + ACTIONS(29392), 1, + anon_sym_COMMA, + STATE(1044), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025921] = 5, + ACTIONS(9453), 1, + anon_sym_RBRACK, + ACTIONS(29394), 1, + anon_sym_COMMA, + STATE(2749), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025938] = 5, + ACTIONS(29396), 1, + anon_sym_SEMI, + ACTIONS(29398), 1, + anon_sym_end, + STATE(2750), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025955] = 5, + ACTIONS(23070), 1, + anon_sym_RBRACE, + ACTIONS(29400), 1, + anon_sym_COMMA, + STATE(15848), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025972] = 5, + ACTIONS(23808), 1, + anon_sym_RBRACE, + ACTIONS(29402), 1, + anon_sym_COMMA, + STATE(16271), 1, + aux_sym_record_exp_repeat1, + STATE(19588), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1025989] = 5, + ACTIONS(23378), 1, + anon_sym_RBRACE, + ACTIONS(29404), 1, + anon_sym_COMMA, + STATE(16064), 1, + aux_sym_record_exp_repeat1, + STATE(19604), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026006] = 5, + ACTIONS(14923), 1, + anon_sym_RPAREN, + ACTIONS(27043), 1, + anon_sym_COMMA, + STATE(7945), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026023] = 5, + ACTIONS(23070), 1, + anon_sym_RBRACE, + ACTIONS(29400), 1, + anon_sym_COMMA, + STATE(15848), 1, + aux_sym_record_exp_repeat1, + STATE(19603), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026040] = 5, + ACTIONS(29406), 1, + anon_sym_SEMI, + ACTIONS(29408), 1, + anon_sym_end, + STATE(1435), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026057] = 5, + ACTIONS(6495), 1, + anon_sym_RPAREN, + ACTIONS(29410), 1, + anon_sym_COMMA, + STATE(1857), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026074] = 5, + ACTIONS(29412), 1, + anon_sym_SEMI, + ACTIONS(29414), 1, + anon_sym_end, + STATE(2753), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026091] = 5, + ACTIONS(29416), 1, + anon_sym_SEMI, + ACTIONS(29418), 1, + anon_sym_end, + STATE(2754), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026108] = 5, + ACTIONS(23814), 1, + anon_sym_RBRACE, + ACTIONS(29420), 1, + anon_sym_COMMA, + STATE(16273), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026125] = 5, + ACTIONS(23814), 1, + anon_sym_RBRACE, + ACTIONS(29420), 1, + anon_sym_COMMA, + STATE(16273), 1, + aux_sym_record_exp_repeat1, + STATE(19592), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026142] = 5, + ACTIONS(29422), 1, + anon_sym_SEMI, + ACTIONS(29424), 1, + anon_sym_end, + STATE(2756), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026159] = 5, + ACTIONS(20827), 1, + anon_sym_RBRACE, + ACTIONS(29303), 1, + anon_sym_COMMA, + STATE(14644), 1, + aux_sym_record_exp_repeat1, + STATE(20010), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026176] = 5, + ACTIONS(23818), 1, + anon_sym_RBRACE, + ACTIONS(29426), 1, + anon_sym_COMMA, + STATE(16275), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026193] = 5, + ACTIONS(23826), 1, + anon_sym_RBRACE, + ACTIONS(29428), 1, + anon_sym_COMMA, + STATE(16323), 1, + aux_sym_record_exp_repeat1, + STATE(19644), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026210] = 4, + ACTIONS(29430), 1, + anon_sym_and, + STATE(19837), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16889), 2, + anon_sym_EQ, + anon_sym_where, + [1026225] = 5, + ACTIONS(22681), 1, + anon_sym_RBRACE, + ACTIONS(29432), 1, + anon_sym_COMMA, + STATE(15670), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026242] = 3, + STATE(6092), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29434), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1026255] = 5, + ACTIONS(29436), 1, + anon_sym_SEMI, + ACTIONS(29438), 1, + anon_sym_end, + STATE(1728), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026272] = 5, + ACTIONS(21613), 1, + anon_sym_RBRACE, + ACTIONS(29440), 1, + anon_sym_COMMA, + STATE(14946), 1, + aux_sym_record_exp_repeat1, + STATE(19609), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026289] = 5, + ACTIONS(29442), 1, + anon_sym_SEMI, + ACTIONS(29444), 1, + anon_sym_end, + STATE(1729), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026306] = 5, + ACTIONS(29446), 1, + anon_sym_SEMI, + ACTIONS(29448), 1, + anon_sym_end, + STATE(1388), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026323] = 5, + ACTIONS(29450), 1, + anon_sym_SEMI, + ACTIONS(29452), 1, + anon_sym_end, + STATE(2287), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026340] = 5, + ACTIONS(22681), 1, + anon_sym_RBRACE, + ACTIONS(29432), 1, + anon_sym_COMMA, + STATE(15670), 1, + aux_sym_record_exp_repeat1, + STATE(19680), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026357] = 5, + ACTIONS(23107), 1, + anon_sym_RBRACE, + ACTIONS(29454), 1, + anon_sym_COMMA, + STATE(15865), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026374] = 5, + ACTIONS(23436), 1, + anon_sym_RBRACE, + ACTIONS(29456), 1, + anon_sym_COMMA, + STATE(16085), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026391] = 5, + ACTIONS(9487), 1, + anon_sym_RPAREN, + ACTIONS(25188), 1, + anon_sym_COMMA, + STATE(2764), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026408] = 5, + ACTIONS(29458), 1, + anon_sym_SEMI, + ACTIONS(29460), 1, + anon_sym_end, + STATE(1158), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026425] = 5, + ACTIONS(9489), 1, + anon_sym_RPAREN, + ACTIONS(25190), 1, + anon_sym_SEMI, + STATE(2765), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026442] = 5, + ACTIONS(23436), 1, + anon_sym_RBRACE, + ACTIONS(29456), 1, + anon_sym_COMMA, + STATE(16085), 1, + aux_sym_record_exp_repeat1, + STATE(19637), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026459] = 5, + ACTIONS(21617), 1, + anon_sym_RBRACE, + ACTIONS(29462), 1, + anon_sym_COMMA, + STATE(14952), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026476] = 5, + ACTIONS(21617), 1, + anon_sym_RBRACE, + ACTIONS(29462), 1, + anon_sym_COMMA, + STATE(14952), 1, + aux_sym_record_exp_repeat1, + STATE(19618), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026493] = 5, + ACTIONS(5061), 1, + anon_sym_RBRACK, + ACTIONS(25192), 1, + anon_sym_COMMA, + STATE(1049), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026510] = 3, + STATE(7722), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29464), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1026523] = 5, + ACTIONS(29466), 1, + anon_sym_SEMI, + ACTIONS(29468), 1, + anon_sym_end, + STATE(1159), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026540] = 5, + ACTIONS(9491), 1, + anon_sym_RBRACK, + ACTIONS(25194), 1, + anon_sym_COMMA, + STATE(2766), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026557] = 3, + STATE(5158), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29470), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1026570] = 5, + ACTIONS(9493), 1, + anon_sym_RPAREN, + ACTIONS(29472), 1, + anon_sym_COMMA, + STATE(2768), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026587] = 5, + ACTIONS(9495), 1, + anon_sym_RPAREN, + ACTIONS(29474), 1, + anon_sym_SEMI, + STATE(2769), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026604] = 5, + ACTIONS(21630), 1, + anon_sym_RBRACE, + ACTIONS(29476), 1, + anon_sym_COMMA, + STATE(14954), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026621] = 5, + ACTIONS(14929), 1, + anon_sym_RPAREN, + ACTIONS(29478), 1, + anon_sym_COMMA, + STATE(7946), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026638] = 5, + ACTIONS(5063), 1, + anon_sym_RBRACK, + ACTIONS(29480), 1, + anon_sym_COMMA, + STATE(1050), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026655] = 5, + ACTIONS(9497), 1, + anon_sym_RBRACK, + ACTIONS(29482), 1, + anon_sym_COMMA, + STATE(2770), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026672] = 5, + ACTIONS(29484), 1, + anon_sym_SEMI, + ACTIONS(29486), 1, + anon_sym_end, + STATE(2771), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026689] = 5, + ACTIONS(23880), 1, + anon_sym_RBRACE, + ACTIONS(29488), 1, + anon_sym_COMMA, + STATE(16305), 1, + aux_sym_record_exp_repeat1, + STATE(19630), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026706] = 5, + ACTIONS(21632), 1, + anon_sym_RBRACE, + ACTIONS(29490), 1, + anon_sym_COMMA, + STATE(14971), 1, + aux_sym_record_exp_repeat1, + STATE(20410), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026723] = 3, + ACTIONS(29494), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29492), 3, + anon_sym_CARET, + anon_sym_u2019, + anon_sym_BQUOTE, + [1026736] = 5, + ACTIONS(14721), 1, + anon_sym_RBRACK, + ACTIONS(29496), 1, + anon_sym_COMMA, + STATE(5911), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026753] = 5, + ACTIONS(29498), 1, + anon_sym_SEMI, + ACTIONS(29500), 1, + anon_sym_end, + STATE(2774), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026770] = 5, + ACTIONS(29502), 1, + anon_sym_SEMI, + ACTIONS(29504), 1, + anon_sym_end, + STATE(2775), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026787] = 5, + ACTIONS(23940), 1, + anon_sym_RBRACE, + ACTIONS(29506), 1, + anon_sym_COMMA, + STATE(16052), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026804] = 5, + ACTIONS(23886), 1, + anon_sym_RBRACE, + ACTIONS(29508), 1, + anon_sym_COMMA, + STATE(16307), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026821] = 5, + ACTIONS(23886), 1, + anon_sym_RBRACE, + ACTIONS(29508), 1, + anon_sym_COMMA, + STATE(16307), 1, + aux_sym_record_exp_repeat1, + STATE(19636), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026838] = 5, + ACTIONS(14931), 1, + anon_sym_RPAREN, + ACTIONS(29510), 1, + anon_sym_COMMA, + STATE(7435), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026855] = 5, + ACTIONS(6507), 1, + anon_sym_RPAREN, + ACTIONS(29512), 1, + anon_sym_COMMA, + STATE(1405), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026872] = 5, + ACTIONS(29514), 1, + anon_sym_SEMI, + ACTIONS(29516), 1, + anon_sym_end, + STATE(1731), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026889] = 5, + ACTIONS(29518), 1, + anon_sym_SEMI, + ACTIONS(29520), 1, + anon_sym_end, + STATE(2777), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026906] = 5, + ACTIONS(23890), 1, + anon_sym_RBRACE, + ACTIONS(29522), 1, + anon_sym_COMMA, + STATE(16309), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026923] = 5, + ACTIONS(23478), 1, + anon_sym_RBRACE, + ACTIONS(29524), 1, + anon_sym_COMMA, + STATE(16087), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026940] = 5, + ACTIONS(6509), 1, + anon_sym_RPAREN, + ACTIONS(29526), 1, + anon_sym_SEMI, + STATE(1406), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1026957] = 3, + STATE(9574), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29528), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1026970] = 3, + STATE(7073), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29530), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1026983] = 5, + ACTIONS(29532), 1, + anon_sym_SEMI, + ACTIONS(29535), 1, + anon_sym_end, + STATE(2888), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027000] = 5, + ACTIONS(21655), 1, + anon_sym_RBRACE, + ACTIONS(29537), 1, + anon_sym_COMMA, + STATE(14964), 1, + aux_sym_record_exp_repeat1, + STATE(19652), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027017] = 3, + STATE(11764), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29539), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1027030] = 5, + ACTIONS(23918), 1, + anon_sym_RBRACE, + ACTIONS(29541), 1, + anon_sym_COMMA, + STATE(15804), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027047] = 5, + ACTIONS(20813), 1, + anon_sym_RBRACE, + ACTIONS(29543), 1, + anon_sym_COMMA, + STATE(14564), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027064] = 5, + ACTIONS(29545), 1, + anon_sym_SEMI, + ACTIONS(29547), 1, + anon_sym_end, + STATE(1560), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027081] = 5, + ACTIONS(29549), 1, + anon_sym_SEMI, + ACTIONS(29551), 1, + anon_sym_end, + STATE(1325), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027098] = 3, + STATE(6199), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29553), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1027111] = 5, + ACTIONS(23918), 1, + anon_sym_RBRACE, + ACTIONS(29541), 1, + anon_sym_COMMA, + STATE(15804), 1, + aux_sym_record_exp_repeat1, + STATE(19691), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027128] = 5, + ACTIONS(9531), 1, + anon_sym_RPAREN, + ACTIONS(25220), 1, + anon_sym_COMMA, + STATE(2785), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027145] = 5, + ACTIONS(9533), 1, + anon_sym_RPAREN, + ACTIONS(25222), 1, + anon_sym_SEMI, + STATE(2786), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027162] = 5, + ACTIONS(21657), 1, + anon_sym_RBRACE, + ACTIONS(29555), 1, + anon_sym_COMMA, + STATE(14965), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027179] = 5, + ACTIONS(21657), 1, + anon_sym_RBRACE, + ACTIONS(29555), 1, + anon_sym_COMMA, + STATE(14965), 1, + aux_sym_record_exp_repeat1, + STATE(19661), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027196] = 5, + ACTIONS(20769), 1, + anon_sym_RBRACE, + ACTIONS(29557), 1, + anon_sym_COMMA, + STATE(14530), 1, + aux_sym_record_exp_repeat1, + STATE(19732), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027213] = 5, + ACTIONS(5079), 1, + anon_sym_RBRACK, + ACTIONS(25224), 1, + anon_sym_COMMA, + STATE(1055), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027230] = 5, + ACTIONS(9535), 1, + anon_sym_RBRACK, + ACTIONS(25226), 1, + anon_sym_COMMA, + STATE(2787), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027247] = 5, + ACTIONS(21478), 1, + anon_sym_RBRACE, + ACTIONS(29559), 1, + anon_sym_COMMA, + STATE(14891), 1, + aux_sym_record_exp_repeat1, + STATE(19769), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027264] = 5, + ACTIONS(9537), 1, + anon_sym_RPAREN, + ACTIONS(29561), 1, + anon_sym_COMMA, + STATE(2789), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027281] = 5, + ACTIONS(9539), 1, + anon_sym_RPAREN, + ACTIONS(29563), 1, + anon_sym_SEMI, + STATE(2790), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027298] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16920), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(10624), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1027311] = 5, + ACTIONS(21659), 1, + anon_sym_RBRACE, + ACTIONS(29565), 1, + anon_sym_COMMA, + STATE(14968), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027328] = 5, + ACTIONS(5081), 1, + anon_sym_RBRACK, + ACTIONS(29567), 1, + anon_sym_COMMA, + STATE(1056), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027345] = 5, + ACTIONS(29569), 1, + anon_sym_SEMI, + ACTIONS(29571), 1, + anon_sym_end, + STATE(1561), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027362] = 5, + ACTIONS(9541), 1, + anon_sym_RBRACK, + ACTIONS(29573), 1, + anon_sym_COMMA, + STATE(2791), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027379] = 5, + ACTIONS(29575), 1, + anon_sym_SEMI, + ACTIONS(29577), 1, + anon_sym_end, + STATE(2792), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027396] = 5, + ACTIONS(20966), 1, + anon_sym_RBRACE, + ACTIONS(29579), 1, + anon_sym_COMMA, + STATE(14653), 1, + aux_sym_record_exp_repeat1, + STATE(19689), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027413] = 5, + ACTIONS(23942), 1, + anon_sym_RBRACE, + ACTIONS(29581), 1, + anon_sym_COMMA, + STATE(16341), 1, + aux_sym_record_exp_repeat1, + STATE(19673), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027430] = 5, + ACTIONS(29583), 1, + anon_sym_SEMI, + ACTIONS(29585), 1, + anon_sym_end, + STATE(1161), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027447] = 5, + ACTIONS(29587), 1, + anon_sym_SEMI, + ACTIONS(29589), 1, + anon_sym_end, + STATE(2795), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027464] = 5, + ACTIONS(29591), 1, + anon_sym_SEMI, + ACTIONS(29593), 1, + anon_sym_end, + STATE(2796), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027481] = 5, + ACTIONS(7925), 1, + anon_sym_RPAREN, + ACTIONS(24360), 1, + anon_sym_SEMI, + STATE(2081), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027498] = 5, + ACTIONS(29595), 1, + anon_sym_SEMI, + ACTIONS(29597), 1, + anon_sym_end, + STATE(1437), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027515] = 5, + ACTIONS(23962), 1, + anon_sym_RBRACE, + ACTIONS(29599), 1, + anon_sym_COMMA, + STATE(16338), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027532] = 5, + ACTIONS(23962), 1, + anon_sym_RBRACE, + ACTIONS(29599), 1, + anon_sym_COMMA, + STATE(16338), 1, + aux_sym_record_exp_repeat1, + STATE(19678), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027549] = 5, + ACTIONS(22517), 1, + anon_sym_RBRACE, + ACTIONS(29601), 1, + anon_sym_COMMA, + STATE(15537), 1, + aux_sym_record_exp_repeat1, + STATE(20275), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027566] = 5, + ACTIONS(29603), 1, + anon_sym_SEMI, + ACTIONS(29605), 1, + anon_sym_end, + STATE(2798), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027583] = 5, + ACTIONS(3889), 1, + anon_sym_RBRACK, + ACTIONS(25312), 1, + anon_sym_COMMA, + STATE(653), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027600] = 5, + ACTIONS(23954), 1, + anon_sym_RBRACE, + ACTIONS(29607), 1, + anon_sym_COMMA, + STATE(15907), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027617] = 3, + STATE(7826), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29609), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1027630] = 5, + ACTIONS(22790), 1, + anon_sym_RBRACE, + ACTIONS(29611), 1, + anon_sym_COMMA, + STATE(15672), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027647] = 5, + ACTIONS(3927), 1, + anon_sym_RBRACK, + ACTIONS(29613), 1, + anon_sym_COMMA, + STATE(666), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027664] = 3, + STATE(9637), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29615), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1027677] = 5, + ACTIONS(8445), 1, + anon_sym_RPAREN, + ACTIONS(24214), 1, + anon_sym_COMMA, + STATE(2295), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027694] = 5, + ACTIONS(8447), 1, + anon_sym_RPAREN, + ACTIONS(24216), 1, + anon_sym_SEMI, + STATE(2296), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027711] = 5, + ACTIONS(20701), 1, + anon_sym_RBRACE, + ACTIONS(29617), 1, + anon_sym_COMMA, + STATE(14505), 1, + aux_sym_record_exp_repeat1, + STATE(19724), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027728] = 5, + ACTIONS(20467), 1, + anon_sym_RBRACE, + ACTIONS(29619), 1, + anon_sym_COMMA, + STATE(14398), 1, + aux_sym_record_exp_repeat1, + STATE(19696), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027745] = 5, + ACTIONS(29621), 1, + anon_sym_SEMI, + ACTIONS(29623), 1, + anon_sym_end, + STATE(1389), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027762] = 5, + ACTIONS(29625), 1, + anon_sym_SEMI, + ACTIONS(29627), 1, + anon_sym_end, + STATE(1347), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027779] = 5, + ACTIONS(20970), 1, + anon_sym_RBRACE, + ACTIONS(29629), 1, + anon_sym_COMMA, + STATE(14656), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027796] = 5, + ACTIONS(20970), 1, + anon_sym_RBRACE, + ACTIONS(29629), 1, + anon_sym_COMMA, + STATE(14656), 1, + aux_sym_record_exp_repeat1, + STATE(19727), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027813] = 5, + ACTIONS(23042), 1, + anon_sym_RBRACE, + ACTIONS(29631), 1, + anon_sym_COMMA, + STATE(15772), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027830] = 5, + ACTIONS(9575), 1, + anon_sym_RPAREN, + ACTIONS(25252), 1, + anon_sym_COMMA, + STATE(2806), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027847] = 5, + ACTIONS(9577), 1, + anon_sym_RPAREN, + ACTIONS(25254), 1, + anon_sym_SEMI, + STATE(2807), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027864] = 5, + ACTIONS(22702), 1, + anon_sym_RBRACE, + ACTIONS(29633), 1, + anon_sym_COMMA, + STATE(15648), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027881] = 5, + ACTIONS(4665), 1, + anon_sym_RBRACK, + ACTIONS(24220), 1, + anon_sym_COMMA, + STATE(917), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027898] = 5, + ACTIONS(20469), 1, + anon_sym_RBRACE, + ACTIONS(29635), 1, + anon_sym_COMMA, + STATE(14399), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027915] = 5, + ACTIONS(20469), 1, + anon_sym_RBRACE, + ACTIONS(29635), 1, + anon_sym_COMMA, + STATE(14399), 1, + aux_sym_record_exp_repeat1, + STATE(19705), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027932] = 5, + ACTIONS(5097), 1, + anon_sym_RBRACK, + ACTIONS(25256), 1, + anon_sym_COMMA, + STATE(1061), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027949] = 5, + ACTIONS(8093), 1, + anon_sym_RPAREN, + ACTIONS(25713), 1, + anon_sym_COMMA, + STATE(2144), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027966] = 5, + ACTIONS(9579), 1, + anon_sym_RBRACK, + ACTIONS(25258), 1, + anon_sym_COMMA, + STATE(2808), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1027983] = 5, + ACTIONS(8449), 1, + anon_sym_RBRACK, + ACTIONS(24222), 1, + anon_sym_COMMA, + STATE(2297), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028000] = 5, + ACTIONS(9581), 1, + anon_sym_RPAREN, + ACTIONS(29637), 1, + anon_sym_COMMA, + STATE(2810), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028017] = 5, + ACTIONS(9583), 1, + anon_sym_RPAREN, + ACTIONS(29639), 1, + anon_sym_SEMI, + STATE(2811), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028034] = 5, + ACTIONS(8095), 1, + anon_sym_RPAREN, + ACTIONS(25723), 1, + anon_sym_SEMI, + STATE(2145), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028051] = 5, + ACTIONS(20471), 1, + anon_sym_RBRACE, + ACTIONS(29641), 1, + anon_sym_COMMA, + STATE(14400), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028068] = 5, + ACTIONS(5099), 1, + anon_sym_RBRACK, + ACTIONS(29643), 1, + anon_sym_COMMA, + STATE(1062), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028085] = 5, + ACTIONS(9585), 1, + anon_sym_RBRACK, + ACTIONS(29645), 1, + anon_sym_COMMA, + STATE(2812), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028102] = 5, + ACTIONS(29647), 1, + anon_sym_SEMI, + ACTIONS(29649), 1, + anon_sym_end, + STATE(2813), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028119] = 5, + ACTIONS(20705), 1, + anon_sym_RBRACE, + ACTIONS(29651), 1, + anon_sym_COMMA, + STATE(14506), 1, + aux_sym_record_exp_repeat1, + STATE(20155), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028136] = 5, + ACTIONS(23446), 1, + anon_sym_RBRACE, + ACTIONS(29653), 1, + anon_sym_COMMA, + STATE(15767), 1, + aux_sym_record_exp_repeat1, + STATE(19715), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028153] = 5, + ACTIONS(6511), 1, + anon_sym_RBRACK, + ACTIONS(29655), 1, + anon_sym_COMMA, + STATE(1408), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028170] = 5, + ACTIONS(29657), 1, + anon_sym_SEMI, + ACTIONS(29659), 1, + anon_sym_end, + STATE(2816), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028187] = 5, + ACTIONS(29661), 1, + anon_sym_SEMI, + ACTIONS(29663), 1, + anon_sym_end, + STATE(2817), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028204] = 5, + ACTIONS(7209), 1, + anon_sym_RPAREN, + ACTIONS(25276), 1, + anon_sym_COMMA, + STATE(1739), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028221] = 5, + ACTIONS(22964), 1, + anon_sym_RBRACE, + ACTIONS(29665), 1, + anon_sym_COMMA, + STATE(15773), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028238] = 5, + ACTIONS(22964), 1, + anon_sym_RBRACE, + ACTIONS(29665), 1, + anon_sym_COMMA, + STATE(15773), 1, + aux_sym_record_exp_repeat1, + STATE(19720), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028255] = 5, + ACTIONS(6503), 1, + anon_sym_RPAREN, + ACTIONS(29667), 1, + anon_sym_SEMI, + STATE(1861), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028272] = 5, + ACTIONS(29669), 1, + anon_sym_SEMI, + ACTIONS(29671), 1, + anon_sym_end, + STATE(2819), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028289] = 5, + ACTIONS(7211), 1, + anon_sym_RPAREN, + ACTIONS(25278), 1, + anon_sym_SEMI, + STATE(1740), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028306] = 5, + ACTIONS(22980), 1, + anon_sym_RBRACE, + ACTIONS(29673), 1, + anon_sym_COMMA, + STATE(15797), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028323] = 5, + ACTIONS(8451), 1, + anon_sym_RPAREN, + ACTIONS(29675), 1, + anon_sym_COMMA, + STATE(2299), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028340] = 5, + ACTIONS(8453), 1, + anon_sym_RPAREN, + ACTIONS(29677), 1, + anon_sym_SEMI, + STATE(2300), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028357] = 5, + ACTIONS(22702), 1, + anon_sym_RBRACE, + ACTIONS(29633), 1, + anon_sym_COMMA, + STATE(15648), 1, + aux_sym_record_exp_repeat1, + STATE(19848), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028374] = 5, + ACTIONS(20714), 1, + anon_sym_RBRACE, + ACTIONS(29679), 1, + anon_sym_COMMA, + STATE(14507), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028391] = 5, + ACTIONS(20714), 1, + anon_sym_RBRACE, + ACTIONS(29679), 1, + anon_sym_COMMA, + STATE(14507), 1, + aux_sym_record_exp_repeat1, + STATE(19756), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028408] = 3, + STATE(6430), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29681), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1028421] = 5, + ACTIONS(20978), 1, + anon_sym_RBRACE, + ACTIONS(29683), 1, + anon_sym_COMMA, + STATE(14659), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028438] = 5, + ACTIONS(4213), 1, + anon_sym_RBRACK, + ACTIONS(25284), 1, + anon_sym_COMMA, + STATE(761), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028455] = 5, + ACTIONS(20485), 1, + anon_sym_RBRACE, + ACTIONS(29685), 1, + anon_sym_COMMA, + STATE(14406), 1, + aux_sym_record_exp_repeat1, + STATE(19738), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028472] = 5, + ACTIONS(4667), 1, + anon_sym_RBRACK, + ACTIONS(29687), 1, + anon_sym_COMMA, + STATE(918), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028489] = 5, + ACTIONS(8455), 1, + anon_sym_RBRACK, + ACTIONS(29689), 1, + anon_sym_COMMA, + STATE(2301), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028506] = 5, + ACTIONS(20773), 1, + anon_sym_RBRACE, + ACTIONS(29691), 1, + anon_sym_COMMA, + STATE(14531), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028523] = 5, + ACTIONS(29693), 1, + anon_sym_SEMI, + ACTIONS(29695), 1, + anon_sym_end, + STATE(2302), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028540] = 5, + ACTIONS(9619), 1, + anon_sym_RPAREN, + ACTIONS(25286), 1, + anon_sym_COMMA, + STATE(2827), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028557] = 5, + ACTIONS(9621), 1, + anon_sym_RPAREN, + ACTIONS(25288), 1, + anon_sym_SEMI, + STATE(2828), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028574] = 5, + ACTIONS(20773), 1, + anon_sym_RBRACE, + ACTIONS(29691), 1, + anon_sym_COMMA, + STATE(14531), 1, + aux_sym_record_exp_repeat1, + STATE(19813), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028591] = 5, + ACTIONS(7213), 1, + anon_sym_RBRACK, + ACTIONS(25290), 1, + anon_sym_COMMA, + STATE(1741), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028608] = 5, + ACTIONS(20489), 1, + anon_sym_RBRACE, + ACTIONS(29697), 1, + anon_sym_COMMA, + STATE(14409), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028625] = 5, + ACTIONS(20489), 1, + anon_sym_RBRACE, + ACTIONS(29697), 1, + anon_sym_COMMA, + STATE(14409), 1, + aux_sym_record_exp_repeat1, + STATE(19747), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028642] = 5, + ACTIONS(5115), 1, + anon_sym_RBRACK, + ACTIONS(25292), 1, + anon_sym_COMMA, + STATE(1067), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028659] = 5, + ACTIONS(23326), 1, + anon_sym_RBRACE, + ACTIONS(29699), 1, + anon_sym_COMMA, + STATE(16018), 1, + aux_sym_record_exp_repeat1, + STATE(19772), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028676] = 5, + ACTIONS(9623), 1, + anon_sym_RBRACK, + ACTIONS(25298), 1, + anon_sym_COMMA, + STATE(2829), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028693] = 5, + ACTIONS(29701), 1, + anon_sym_SEMI, + ACTIONS(29703), 1, + anon_sym_end, + STATE(1409), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028710] = 5, + ACTIONS(6945), 1, + anon_sym_RPAREN, + ACTIONS(24240), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028727] = 5, + ACTIONS(9625), 1, + anon_sym_RPAREN, + ACTIONS(29705), 1, + anon_sym_COMMA, + STATE(2831), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028744] = 5, + ACTIONS(9627), 1, + anon_sym_RPAREN, + ACTIONS(29707), 1, + anon_sym_SEMI, + STATE(2832), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028761] = 5, + ACTIONS(20495), 1, + anon_sym_RBRACE, + ACTIONS(29709), 1, + anon_sym_COMMA, + STATE(14410), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028778] = 5, + ACTIONS(5117), 1, + anon_sym_RBRACK, + ACTIONS(29711), 1, + anon_sym_COMMA, + STATE(1068), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028795] = 5, + ACTIONS(9629), 1, + anon_sym_RBRACK, + ACTIONS(29713), 1, + anon_sym_COMMA, + STATE(2833), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028812] = 5, + ACTIONS(29715), 1, + anon_sym_SEMI, + ACTIONS(29717), 1, + anon_sym_end, + STATE(2834), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028829] = 5, + ACTIONS(6947), 1, + anon_sym_RPAREN, + ACTIONS(24242), 1, + anon_sym_SEMI, + STATE(1614), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028846] = 5, + ACTIONS(23544), 1, + anon_sym_RBRACE, + ACTIONS(29719), 1, + anon_sym_COMMA, + STATE(16329), 1, + aux_sym_record_exp_repeat1, + STATE(19759), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028863] = 5, + ACTIONS(7215), 1, + anon_sym_RPAREN, + ACTIONS(29721), 1, + anon_sym_COMMA, + STATE(1743), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028880] = 5, + ACTIONS(7217), 1, + anon_sym_RPAREN, + ACTIONS(29723), 1, + anon_sym_SEMI, + STATE(1744), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028897] = 5, + ACTIONS(29725), 1, + anon_sym_SEMI, + ACTIONS(29727), 1, + anon_sym_end, + STATE(2210), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028914] = 5, + ACTIONS(20718), 1, + anon_sym_RBRACE, + ACTIONS(29729), 1, + anon_sym_COMMA, + STATE(14511), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028931] = 5, + ACTIONS(29731), 1, + anon_sym_SEMI, + ACTIONS(29733), 1, + anon_sym_end, + STATE(2837), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028948] = 5, + ACTIONS(29735), 1, + anon_sym_SEMI, + ACTIONS(29737), 1, + anon_sym_end, + STATE(2838), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028965] = 5, + ACTIONS(23938), 1, + anon_sym_RBRACE, + ACTIONS(29739), 1, + anon_sym_COMMA, + STATE(15536), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028982] = 5, + ACTIONS(23938), 1, + anon_sym_RBRACE, + ACTIONS(29739), 1, + anon_sym_COMMA, + STATE(15536), 1, + aux_sym_record_exp_repeat1, + STATE(19763), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1028999] = 5, + ACTIONS(4545), 1, + anon_sym_RBRACK, + ACTIONS(25725), 1, + anon_sym_COMMA, + STATE(875), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029016] = 5, + ACTIONS(29741), 1, + anon_sym_SEMI, + ACTIONS(29743), 1, + anon_sym_end, + STATE(2840), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029033] = 5, + ACTIONS(22521), 1, + anon_sym_RBRACE, + ACTIONS(29745), 1, + anon_sym_COMMA, + STATE(15675), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029050] = 5, + ACTIONS(4215), 1, + anon_sym_RBRACK, + ACTIONS(29747), 1, + anon_sym_COMMA, + STATE(762), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029067] = 5, + ACTIONS(29749), 1, + anon_sym_SEMI, + ACTIONS(29751), 1, + anon_sym_end, + STATE(2305), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029084] = 5, + ACTIONS(7219), 1, + anon_sym_RBRACK, + ACTIONS(29753), 1, + anon_sym_COMMA, + STATE(1745), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029101] = 5, + ACTIONS(6413), 1, + anon_sym_RBRACK, + ACTIONS(25328), 1, + anon_sym_COMMA, + STATE(1359), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029118] = 5, + ACTIONS(29755), 1, + anon_sym_SEMI, + ACTIONS(29757), 1, + anon_sym_end, + STATE(1746), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029135] = 5, + ACTIONS(21499), 1, + anon_sym_RBRACE, + ACTIONS(29759), 1, + anon_sym_COMMA, + STATE(14906), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029152] = 3, + STATE(5523), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29761), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1029165] = 5, + ACTIONS(29763), 1, + anon_sym_SEMI, + ACTIONS(29765), 1, + anon_sym_end, + STATE(2306), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029182] = 5, + ACTIONS(23366), 1, + anon_sym_RBRACE, + ACTIONS(29767), 1, + anon_sym_COMMA, + STATE(16038), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029199] = 5, + ACTIONS(23676), 1, + anon_sym_RBRACE, + ACTIONS(29769), 1, + anon_sym_COMMA, + STATE(16226), 1, + aux_sym_record_exp_repeat1, + STATE(19796), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029216] = 5, + ACTIONS(20509), 1, + anon_sym_RBRACE, + ACTIONS(29771), 1, + anon_sym_COMMA, + STATE(14418), 1, + aux_sym_record_exp_repeat1, + STATE(19781), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029233] = 5, + ACTIONS(23366), 1, + anon_sym_RBRACE, + ACTIONS(29767), 1, + anon_sym_COMMA, + STATE(16038), 1, + aux_sym_record_exp_repeat1, + STATE(19785), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029250] = 5, + ACTIONS(9663), 1, + anon_sym_RPAREN, + ACTIONS(25334), 1, + anon_sym_COMMA, + STATE(2848), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029267] = 5, + ACTIONS(21499), 1, + anon_sym_RBRACE, + ACTIONS(29759), 1, + anon_sym_COMMA, + STATE(14906), 1, + aux_sym_record_exp_repeat1, + STATE(19981), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029284] = 5, + ACTIONS(9665), 1, + anon_sym_RPAREN, + ACTIONS(25336), 1, + anon_sym_SEMI, + STATE(2849), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029301] = 5, + ACTIONS(8097), 1, + anon_sym_RBRACK, + ACTIONS(25729), 1, + anon_sym_COMMA, + STATE(2146), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029318] = 5, + ACTIONS(29773), 1, + anon_sym_SEMI, + ACTIONS(29775), 1, + anon_sym_end, + STATE(2308), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029335] = 5, + ACTIONS(20515), 1, + anon_sym_RBRACE, + ACTIONS(29777), 1, + anon_sym_COMMA, + STATE(14421), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029352] = 5, + ACTIONS(20515), 1, + anon_sym_RBRACE, + ACTIONS(29777), 1, + anon_sym_COMMA, + STATE(14421), 1, + aux_sym_record_exp_repeat1, + STATE(19789), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029369] = 5, + ACTIONS(5133), 1, + anon_sym_RBRACK, + ACTIONS(25338), 1, + anon_sym_COMMA, + STATE(1073), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029386] = 5, + ACTIONS(9667), 1, + anon_sym_RBRACK, + ACTIONS(25340), 1, + anon_sym_COMMA, + STATE(2850), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029403] = 5, + ACTIONS(23396), 1, + anon_sym_RBRACE, + ACTIONS(29779), 1, + anon_sym_COMMA, + STATE(16039), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029420] = 4, + ACTIONS(29430), 1, + anon_sym_and, + STATE(19866), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 2, + anon_sym_EQ, + anon_sym_where, + [1029435] = 5, + ACTIONS(9669), 1, + anon_sym_RPAREN, + ACTIONS(29781), 1, + anon_sym_COMMA, + STATE(2852), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029452] = 5, + ACTIONS(9671), 1, + anon_sym_RPAREN, + ACTIONS(29783), 1, + anon_sym_SEMI, + STATE(2853), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029469] = 5, + ACTIONS(20517), 1, + anon_sym_RBRACE, + ACTIONS(29785), 1, + anon_sym_COMMA, + STATE(14423), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029486] = 5, + ACTIONS(29787), 1, + anon_sym_SEMI, + ACTIONS(29789), 1, + anon_sym_end, + STATE(1749), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029503] = 5, + ACTIONS(5135), 1, + anon_sym_RBRACK, + ACTIONS(29791), 1, + anon_sym_COMMA, + STATE(1074), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029520] = 5, + ACTIONS(9673), 1, + anon_sym_RBRACK, + ACTIONS(29793), 1, + anon_sym_COMMA, + STATE(2854), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029537] = 5, + ACTIONS(29795), 1, + anon_sym_SEMI, + ACTIONS(29797), 1, + anon_sym_end, + STATE(1750), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029554] = 5, + ACTIONS(29799), 1, + anon_sym_SEMI, + ACTIONS(29801), 1, + anon_sym_end, + STATE(2855), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029571] = 5, + ACTIONS(23115), 1, + anon_sym_RBRACE, + ACTIONS(29803), 1, + anon_sym_COMMA, + STATE(15945), 1, + aux_sym_record_exp_repeat1, + STATE(19800), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029588] = 5, + ACTIONS(23738), 1, + anon_sym_RBRACE, + ACTIONS(29805), 1, + anon_sym_COMMA, + STATE(16256), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029605] = 5, + ACTIONS(23738), 1, + anon_sym_RBRACE, + ACTIONS(29805), 1, + anon_sym_COMMA, + STATE(16256), 1, + aux_sym_record_exp_repeat1, + STATE(19807), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029622] = 5, + ACTIONS(29807), 1, + anon_sym_SEMI, + ACTIONS(29809), 1, + anon_sym_end, + STATE(2858), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029639] = 5, + ACTIONS(29811), 1, + anon_sym_SEMI, + ACTIONS(29813), 1, + anon_sym_end, + STATE(2859), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029656] = 5, + ACTIONS(23248), 1, + anon_sym_RBRACE, + ACTIONS(29815), 1, + anon_sym_COMMA, + STATE(15998), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029673] = 5, + ACTIONS(23248), 1, + anon_sym_RBRACE, + ACTIONS(29815), 1, + anon_sym_COMMA, + STATE(15998), 1, + aux_sym_record_exp_repeat1, + STATE(19803), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029690] = 5, + ACTIONS(29817), 1, + anon_sym_SEMI, + ACTIONS(29819), 1, + anon_sym_end, + STATE(2861), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029707] = 5, + ACTIONS(23324), 1, + anon_sym_RBRACE, + ACTIONS(29821), 1, + anon_sym_COMMA, + STATE(16002), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029724] = 5, + ACTIONS(29823), 1, + anon_sym_SEMI, + ACTIONS(29825), 1, + anon_sym_end, + STATE(1752), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029741] = 5, + ACTIONS(29827), 1, + anon_sym_SEMI, + ACTIONS(29829), 1, + anon_sym_end, + STATE(2441), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029758] = 5, + ACTIONS(8099), 1, + anon_sym_RPAREN, + ACTIONS(29831), 1, + anon_sym_COMMA, + STATE(2148), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029775] = 5, + ACTIONS(23788), 1, + anon_sym_RBRACE, + ACTIONS(29833), 1, + anon_sym_COMMA, + STATE(16269), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029792] = 3, + STATE(9073), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29835), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1029805] = 5, + ACTIONS(8101), 1, + anon_sym_RPAREN, + ACTIONS(29837), 1, + anon_sym_SEMI, + STATE(2149), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029822] = 5, + ACTIONS(4105), 1, + anon_sym_RBRACK, + ACTIONS(24252), 1, + anon_sym_COMMA, + STATE(725), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029839] = 5, + ACTIONS(20535), 1, + anon_sym_RBRACE, + ACTIONS(29839), 1, + anon_sym_COMMA, + STATE(14431), 1, + aux_sym_record_exp_repeat1, + STATE(19818), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029856] = 5, + ACTIONS(29841), 1, + anon_sym_SEMI, + ACTIONS(29843), 1, + anon_sym_end, + STATE(1391), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029873] = 5, + ACTIONS(20775), 1, + anon_sym_RBRACE, + ACTIONS(29845), 1, + anon_sym_COMMA, + STATE(14532), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029890] = 3, + STATE(12275), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29847), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1029903] = 3, + STATE(9969), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29849), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1029916] = 5, + ACTIONS(9707), 1, + anon_sym_RPAREN, + ACTIONS(25370), 1, + anon_sym_COMMA, + STATE(2869), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029933] = 5, + ACTIONS(9709), 1, + anon_sym_RPAREN, + ACTIONS(25372), 1, + anon_sym_SEMI, + STATE(2870), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029950] = 5, + ACTIONS(20541), 1, + anon_sym_RBRACE, + ACTIONS(29851), 1, + anon_sym_COMMA, + STATE(14432), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029967] = 5, + ACTIONS(20541), 1, + anon_sym_RBRACE, + ACTIONS(29851), 1, + anon_sym_COMMA, + STATE(14432), 1, + aux_sym_record_exp_repeat1, + STATE(19829), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1029984] = 5, + ACTIONS(5151), 1, + anon_sym_RBRACK, + ACTIONS(25374), 1, + anon_sym_COMMA, + STATE(1079), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030001] = 5, + ACTIONS(6949), 1, + anon_sym_RBRACK, + ACTIONS(24264), 1, + anon_sym_COMMA, + STATE(1615), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030018] = 5, + ACTIONS(4547), 1, + anon_sym_RBRACK, + ACTIONS(29853), 1, + anon_sym_COMMA, + STATE(876), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030035] = 5, + ACTIONS(9711), 1, + anon_sym_RBRACK, + ACTIONS(25376), 1, + anon_sym_COMMA, + STATE(2871), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030052] = 5, + ACTIONS(21104), 1, + anon_sym_RBRACE, + ACTIONS(29855), 1, + anon_sym_COMMA, + STATE(14719), 1, + aux_sym_record_exp_repeat1, + STATE(20844), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030069] = 5, + ACTIONS(20998), 1, + anon_sym_RBRACE, + ACTIONS(29857), 1, + anon_sym_COMMA, + STATE(14667), 1, + aux_sym_record_exp_repeat1, + STATE(19851), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030086] = 5, + ACTIONS(8103), 1, + anon_sym_RBRACK, + ACTIONS(29859), 1, + anon_sym_COMMA, + STATE(2150), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030103] = 5, + ACTIONS(9713), 1, + anon_sym_RPAREN, + ACTIONS(29861), 1, + anon_sym_COMMA, + STATE(2873), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030120] = 5, + ACTIONS(9715), 1, + anon_sym_RPAREN, + ACTIONS(29863), 1, + anon_sym_SEMI, + STATE(2874), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030137] = 5, + ACTIONS(20543), 1, + anon_sym_RBRACE, + ACTIONS(29865), 1, + anon_sym_COMMA, + STATE(14433), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030154] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19698), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13399), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1030167] = 5, + ACTIONS(5153), 1, + anon_sym_RBRACK, + ACTIONS(29867), 1, + anon_sym_COMMA, + STATE(1080), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030184] = 5, + ACTIONS(9717), 1, + anon_sym_RBRACK, + ACTIONS(29869), 1, + anon_sym_COMMA, + STATE(2875), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030201] = 5, + ACTIONS(29871), 1, + anon_sym_SEMI, + ACTIONS(29873), 1, + anon_sym_end, + STATE(1563), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030218] = 5, + ACTIONS(29875), 1, + anon_sym_SEMI, + ACTIONS(29877), 1, + anon_sym_end, + STATE(2876), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030235] = 5, + ACTIONS(29879), 1, + anon_sym_SEMI, + ACTIONS(29881), 1, + anon_sym_end, + STATE(2151), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030252] = 5, + ACTIONS(23608), 1, + anon_sym_RBRACE, + ACTIONS(29883), 1, + anon_sym_COMMA, + STATE(16174), 1, + aux_sym_record_exp_repeat1, + STATE(19843), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030269] = 4, + ACTIONS(29430), 1, + anon_sym_and, + STATE(19872), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 2, + anon_sym_EQ, + anon_sym_where, + [1030284] = 5, + ACTIONS(23786), 1, + anon_sym_RBRACE, + ACTIONS(29885), 1, + anon_sym_COMMA, + STATE(16295), 1, + aux_sym_record_exp_repeat1, + STATE(19934), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030301] = 5, + ACTIONS(20547), 1, + anon_sym_RBRACE, + ACTIONS(29887), 1, + anon_sym_COMMA, + STATE(14466), 1, + aux_sym_record_exp_repeat1, + STATE(20119), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030318] = 3, + STATE(8258), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29889), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1030331] = 5, + ACTIONS(29891), 1, + anon_sym_SEMI, + ACTIONS(29893), 1, + anon_sym_end, + STATE(2879), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030348] = 5, + ACTIONS(29895), 1, + anon_sym_SEMI, + ACTIONS(29897), 1, + anon_sym_end, + STATE(2880), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030365] = 5, + ACTIONS(23646), 1, + anon_sym_RBRACE, + ACTIONS(29899), 1, + anon_sym_COMMA, + STATE(16178), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030382] = 5, + ACTIONS(23646), 1, + anon_sym_RBRACE, + ACTIONS(29899), 1, + anon_sym_COMMA, + STATE(16178), 1, + aux_sym_record_exp_repeat1, + STATE(19849), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030399] = 3, + STATE(4607), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29901), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1030412] = 5, + ACTIONS(8489), 1, + anon_sym_RPAREN, + ACTIONS(24276), 1, + anon_sym_COMMA, + STATE(2316), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030429] = 5, + ACTIONS(29903), 1, + anon_sym_SEMI, + ACTIONS(29905), 1, + anon_sym_end, + STATE(2882), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030446] = 5, + ACTIONS(22754), 1, + anon_sym_RBRACE, + ACTIONS(29907), 1, + anon_sym_COMMA, + STATE(15650), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030463] = 5, + ACTIONS(23652), 1, + anon_sym_RBRACE, + ACTIONS(29909), 1, + anon_sym_COMMA, + STATE(16195), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030480] = 5, + ACTIONS(8491), 1, + anon_sym_RPAREN, + ACTIONS(24278), 1, + anon_sym_SEMI, + STATE(2317), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030497] = 5, + ACTIONS(21002), 1, + anon_sym_RBRACE, + ACTIONS(29911), 1, + anon_sym_COMMA, + STATE(14668), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030514] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29913), 4, + anon_sym_RPAREN, + anon_sym_End, + anon_sym_QED, + anon_sym_BSLASH_BSLASH, + [1030525] = 5, + ACTIONS(23776), 1, + anon_sym_RBRACE, + ACTIONS(29915), 1, + anon_sym_COMMA, + STATE(16254), 1, + aux_sym_record_exp_repeat1, + STATE(19855), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030542] = 3, + STATE(6667), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(29917), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1030555] = 5, + ACTIONS(23784), 1, + anon_sym_RBRACE, + ACTIONS(29919), 1, + anon_sym_COMMA, + STATE(16259), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030572] = 5, + ACTIONS(23784), 1, + anon_sym_RBRACE, + ACTIONS(29919), 1, + anon_sym_COMMA, + STATE(16259), 1, + aux_sym_record_exp_repeat1, + STATE(19857), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030589] = 5, + ACTIONS(23794), 1, + anon_sym_RBRACE, + ACTIONS(29921), 1, + anon_sym_COMMA, + STATE(16267), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030606] = 5, + ACTIONS(21002), 1, + anon_sym_RBRACE, + ACTIONS(29911), 1, + anon_sym_COMMA, + STATE(14668), 1, + aux_sym_record_exp_repeat1, + STATE(19889), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030623] = 5, + ACTIONS(21351), 1, + anon_sym_RBRACE, + ACTIONS(29923), 1, + anon_sym_COMMA, + STATE(14869), 1, + aux_sym_record_exp_repeat1, + STATE(19966), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030640] = 5, + ACTIONS(23944), 1, + anon_sym_RBRACE, + ACTIONS(29925), 1, + anon_sym_COMMA, + STATE(16340), 1, + aux_sym_record_exp_repeat1, + STATE(19862), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030657] = 5, + ACTIONS(20799), 1, + anon_sym_RBRACE, + ACTIONS(29927), 1, + anon_sym_COMMA, + STATE(14542), 1, + aux_sym_record_exp_repeat1, + STATE(19880), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030674] = 5, + ACTIONS(23960), 1, + anon_sym_RBRACE, + ACTIONS(29929), 1, + anon_sym_COMMA, + STATE(16272), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030691] = 5, + ACTIONS(23960), 1, + anon_sym_RBRACE, + ACTIONS(29929), 1, + anon_sym_COMMA, + STATE(16272), 1, + aux_sym_record_exp_repeat1, + STATE(19864), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030708] = 5, + ACTIONS(23816), 1, + anon_sym_RBRACE, + ACTIONS(29931), 1, + anon_sym_COMMA, + STATE(15627), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030725] = 5, + ACTIONS(4683), 1, + anon_sym_RBRACK, + ACTIONS(24280), 1, + anon_sym_COMMA, + STATE(923), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030742] = 4, + ACTIONS(29430), 1, + anon_sym_and, + STATE(19872), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16903), 2, + anon_sym_EQ, + anon_sym_where, + [1030757] = 5, + ACTIONS(23806), 1, + anon_sym_RBRACE, + ACTIONS(29933), 1, + anon_sym_COMMA, + STATE(15500), 1, + aux_sym_record_exp_repeat1, + STATE(19868), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030774] = 5, + ACTIONS(22436), 1, + anon_sym_RBRACE, + ACTIONS(29935), 1, + anon_sym_COMMA, + STATE(15523), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030791] = 5, + ACTIONS(22436), 1, + anon_sym_RBRACE, + ACTIONS(29935), 1, + anon_sym_COMMA, + STATE(15523), 1, + aux_sym_record_exp_repeat1, + STATE(19871), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030808] = 5, + ACTIONS(8493), 1, + anon_sym_RBRACK, + ACTIONS(24284), 1, + anon_sym_COMMA, + STATE(2318), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030825] = 5, + ACTIONS(22492), 1, + anon_sym_RBRACE, + ACTIONS(29937), 1, + anon_sym_COMMA, + STATE(15626), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030842] = 4, + ACTIONS(29939), 1, + anon_sym_and, + STATE(19872), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16882), 2, + anon_sym_EQ, + anon_sym_where, + [1030857] = 5, + ACTIONS(7253), 1, + anon_sym_RPAREN, + ACTIONS(25406), 1, + anon_sym_COMMA, + STATE(1760), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030874] = 5, + ACTIONS(22960), 1, + anon_sym_RBRACE, + ACTIONS(29942), 1, + anon_sym_COMMA, + STATE(15826), 1, + aux_sym_record_exp_repeat1, + STATE(19876), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030891] = 5, + ACTIONS(7255), 1, + anon_sym_RPAREN, + ACTIONS(25408), 1, + anon_sym_SEMI, + STATE(1761), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030908] = 5, + ACTIONS(23074), 1, + anon_sym_RBRACE, + ACTIONS(29944), 1, + anon_sym_COMMA, + STATE(15830), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030925] = 5, + ACTIONS(23074), 1, + anon_sym_RBRACE, + ACTIONS(29944), 1, + anon_sym_COMMA, + STATE(15830), 1, + aux_sym_record_exp_repeat1, + STATE(19878), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030942] = 5, + ACTIONS(23082), 1, + anon_sym_RBRACE, + ACTIONS(29946), 1, + anon_sym_COMMA, + STATE(15880), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030959] = 5, + ACTIONS(8495), 1, + anon_sym_RPAREN, + ACTIONS(29948), 1, + anon_sym_COMMA, + STATE(2320), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030976] = 5, + ACTIONS(20801), 1, + anon_sym_RBRACE, + ACTIONS(29950), 1, + anon_sym_COMMA, + STATE(14543), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1030993] = 5, + ACTIONS(20801), 1, + anon_sym_RBRACE, + ACTIONS(29950), 1, + anon_sym_COMMA, + STATE(14543), 1, + aux_sym_record_exp_repeat1, + STATE(19902), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031010] = 5, + ACTIONS(23310), 1, + anon_sym_RBRACE, + ACTIONS(29952), 1, + anon_sym_COMMA, + STATE(15995), 1, + aux_sym_record_exp_repeat1, + STATE(19884), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031027] = 5, + ACTIONS(8497), 1, + anon_sym_RPAREN, + ACTIONS(29954), 1, + anon_sym_SEMI, + STATE(2321), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031044] = 5, + ACTIONS(23320), 1, + anon_sym_RBRACE, + ACTIONS(29956), 1, + anon_sym_COMMA, + STATE(16071), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031061] = 5, + ACTIONS(23320), 1, + anon_sym_RBRACE, + ACTIONS(29956), 1, + anon_sym_COMMA, + STATE(16071), 1, + aux_sym_record_exp_repeat1, + STATE(19887), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031078] = 5, + ACTIONS(4231), 1, + anon_sym_RBRACK, + ACTIONS(25412), 1, + anon_sym_COMMA, + STATE(767), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031095] = 5, + ACTIONS(23450), 1, + anon_sym_RBRACE, + ACTIONS(29958), 1, + anon_sym_COMMA, + STATE(16080), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031112] = 5, + ACTIONS(7257), 1, + anon_sym_RBRACK, + ACTIONS(25414), 1, + anon_sym_COMMA, + STATE(1762), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031129] = 5, + ACTIONS(21004), 1, + anon_sym_RBRACE, + ACTIONS(29960), 1, + anon_sym_COMMA, + STATE(14670), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031146] = 5, + ACTIONS(23662), 1, + anon_sym_RBRACE, + ACTIONS(29962), 1, + anon_sym_COMMA, + STATE(16247), 1, + aux_sym_record_exp_repeat1, + STATE(19891), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031163] = 5, + ACTIONS(23778), 1, + anon_sym_RBRACE, + ACTIONS(29964), 1, + anon_sym_COMMA, + STATE(16262), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031180] = 5, + ACTIONS(23778), 1, + anon_sym_RBRACE, + ACTIONS(29964), 1, + anon_sym_COMMA, + STATE(16262), 1, + aux_sym_record_exp_repeat1, + STATE(19893), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031197] = 5, + ACTIONS(23798), 1, + anon_sym_RBRACE, + ACTIONS(29966), 1, + anon_sym_COMMA, + STATE(16277), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031214] = 5, + ACTIONS(29968), 1, + anon_sym_SEMI, + ACTIONS(29970), 1, + anon_sym_end, + STATE(2154), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031231] = 5, + ACTIONS(4685), 1, + anon_sym_RBRACK, + ACTIONS(29972), 1, + anon_sym_COMMA, + STATE(924), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031248] = 5, + ACTIONS(7259), 1, + anon_sym_RPAREN, + ACTIONS(29974), 1, + anon_sym_COMMA, + STATE(1764), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031265] = 5, + ACTIONS(23858), 1, + anon_sym_RBRACE, + ACTIONS(29976), 1, + anon_sym_COMMA, + STATE(16279), 1, + aux_sym_record_exp_repeat1, + STATE(19899), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031282] = 5, + ACTIONS(7261), 1, + anon_sym_RPAREN, + ACTIONS(29978), 1, + anon_sym_SEMI, + STATE(1765), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031299] = 5, + ACTIONS(23834), 1, + anon_sym_RBRACE, + ACTIONS(29980), 1, + anon_sym_COMMA, + STATE(15487), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031316] = 5, + ACTIONS(23834), 1, + anon_sym_RBRACE, + ACTIONS(29980), 1, + anon_sym_COMMA, + STATE(15487), 1, + aux_sym_record_exp_repeat1, + STATE(19901), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031333] = 5, + ACTIONS(22402), 1, + anon_sym_RBRACE, + ACTIONS(29982), 1, + anon_sym_COMMA, + STATE(16036), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031350] = 5, + ACTIONS(20803), 1, + anon_sym_RBRACE, + ACTIONS(29984), 1, + anon_sym_COMMA, + STATE(14552), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031367] = 5, + ACTIONS(8499), 1, + anon_sym_RBRACK, + ACTIONS(29986), 1, + anon_sym_COMMA, + STATE(2322), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031384] = 5, + ACTIONS(6365), 1, + anon_sym_RPAREN, + ACTIONS(25488), 1, + anon_sym_COMMA, + STATE(1336), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031401] = 5, + ACTIONS(23376), 1, + anon_sym_RBRACE, + ACTIONS(29988), 1, + anon_sym_COMMA, + STATE(16024), 1, + aux_sym_record_exp_repeat1, + STATE(19908), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031418] = 5, + ACTIONS(4233), 1, + anon_sym_RBRACK, + ACTIONS(29990), 1, + anon_sym_COMMA, + STATE(768), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031435] = 5, + ACTIONS(6951), 1, + anon_sym_RPAREN, + ACTIONS(29992), 1, + anon_sym_COMMA, + STATE(1617), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031452] = 5, + ACTIONS(23380), 1, + anon_sym_RBRACE, + ACTIONS(29994), 1, + anon_sym_COMMA, + STATE(16238), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031469] = 5, + ACTIONS(23380), 1, + anon_sym_RBRACE, + ACTIONS(29994), 1, + anon_sym_COMMA, + STATE(16238), 1, + aux_sym_record_exp_repeat1, + STATE(19911), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031486] = 5, + ACTIONS(7263), 1, + anon_sym_RBRACK, + ACTIONS(29996), 1, + anon_sym_COMMA, + STATE(1766), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031503] = 5, + ACTIONS(23766), 1, + anon_sym_RBRACE, + ACTIONS(29998), 1, + anon_sym_COMMA, + STATE(16283), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031520] = 5, + ACTIONS(30000), 1, + anon_sym_SEMI, + ACTIONS(30002), 1, + anon_sym_end, + STATE(2323), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031537] = 5, + ACTIONS(30004), 1, + anon_sym_SEMI, + ACTIONS(30006), 1, + anon_sym_end, + STATE(2155), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031554] = 5, + ACTIONS(30008), 1, + anon_sym_SEMI, + ACTIONS(30010), 1, + anon_sym_end, + STATE(1767), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031571] = 5, + ACTIONS(7929), 1, + anon_sym_RPAREN, + ACTIONS(30012), 1, + anon_sym_COMMA, + STATE(2084), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031588] = 5, + ACTIONS(22884), 1, + anon_sym_RBRACE, + ACTIONS(30014), 1, + anon_sym_COMMA, + STATE(15722), 1, + aux_sym_record_exp_repeat1, + STATE(19918), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031605] = 5, + ACTIONS(23282), 1, + anon_sym_RBRACE, + ACTIONS(30016), 1, + anon_sym_COMMA, + STATE(16098), 1, + aux_sym_record_exp_repeat1, + STATE(19940), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031622] = 5, + ACTIONS(22888), 1, + anon_sym_RBRACE, + ACTIONS(30018), 1, + anon_sym_COMMA, + STATE(15768), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031639] = 5, + ACTIONS(22888), 1, + anon_sym_RBRACE, + ACTIONS(30018), 1, + anon_sym_COMMA, + STATE(15768), 1, + aux_sym_record_exp_repeat1, + STATE(19921), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031656] = 5, + ACTIONS(23518), 1, + anon_sym_RBRACE, + ACTIONS(30020), 1, + anon_sym_COMMA, + STATE(16108), 1, + aux_sym_record_exp_repeat1, + STATE(19973), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031673] = 5, + ACTIONS(22966), 1, + anon_sym_RBRACE, + ACTIONS(30022), 1, + anon_sym_COMMA, + STATE(15806), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031690] = 5, + ACTIONS(6415), 1, + anon_sym_RPAREN, + ACTIONS(30024), 1, + anon_sym_COMMA, + STATE(1361), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031707] = 5, + ACTIONS(6417), 1, + anon_sym_RPAREN, + ACTIONS(30026), 1, + anon_sym_SEMI, + STATE(1362), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031724] = 5, + ACTIONS(6593), 1, + anon_sym_RPAREN, + ACTIONS(25436), 1, + anon_sym_COMMA, + STATE(1445), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031741] = 5, + ACTIONS(23342), 1, + anon_sym_RBRACE, + ACTIONS(30028), 1, + anon_sym_COMMA, + STATE(16128), 1, + aux_sym_record_exp_repeat1, + STATE(19926), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031758] = 5, + ACTIONS(23558), 1, + anon_sym_RBRACE, + ACTIONS(30030), 1, + anon_sym_COMMA, + STATE(16209), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031775] = 5, + ACTIONS(23558), 1, + anon_sym_RBRACE, + ACTIONS(30030), 1, + anon_sym_COMMA, + STATE(16209), 1, + aux_sym_record_exp_repeat1, + STATE(19929), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031792] = 5, + ACTIONS(30032), 1, + anon_sym_COMMA, + ACTIONS(30035), 1, + anon_sym_RBRACE, + STATE(16134), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031809] = 5, + ACTIONS(23712), 1, + anon_sym_RBRACE, + ACTIONS(30037), 1, + anon_sym_COMMA, + STATE(16261), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031826] = 5, + ACTIONS(20815), 1, + anon_sym_RBRACE, + ACTIONS(30039), 1, + anon_sym_COMMA, + STATE(14895), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031843] = 5, + ACTIONS(6953), 1, + anon_sym_RPAREN, + ACTIONS(30041), 1, + anon_sym_SEMI, + STATE(1618), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031860] = 5, + ACTIONS(7931), 1, + anon_sym_RPAREN, + ACTIONS(30043), 1, + anon_sym_SEMI, + STATE(2085), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031877] = 5, + ACTIONS(30045), 1, + anon_sym_SEMI, + ACTIONS(30047), 1, + anon_sym_end, + STATE(1770), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031894] = 5, + ACTIONS(23864), 1, + anon_sym_RBRACE, + ACTIONS(30049), 1, + anon_sym_COMMA, + STATE(16319), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031911] = 5, + ACTIONS(23876), 1, + anon_sym_RBRACE, + ACTIONS(30051), 1, + anon_sym_COMMA, + STATE(16301), 1, + aux_sym_record_exp_repeat1, + STATE(19937), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031928] = 5, + ACTIONS(30053), 1, + anon_sym_SEMI, + ACTIONS(30055), 1, + anon_sym_end, + STATE(1771), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031945] = 5, + ACTIONS(23878), 1, + anon_sym_RBRACE, + ACTIONS(30057), 1, + anon_sym_COMMA, + STATE(16312), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031962] = 5, + ACTIONS(23878), 1, + anon_sym_RBRACE, + ACTIONS(30057), 1, + anon_sym_COMMA, + STATE(16312), 1, + aux_sym_record_exp_repeat1, + STATE(19939), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031979] = 5, + ACTIONS(23898), 1, + anon_sym_RBRACE, + ACTIONS(30059), 1, + anon_sym_COMMA, + STATE(16313), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1031996] = 5, + ACTIONS(23502), 1, + anon_sym_RBRACE, + ACTIONS(30061), 1, + anon_sym_COMMA, + STATE(16122), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032013] = 5, + ACTIONS(23502), 1, + anon_sym_RBRACE, + ACTIONS(30061), 1, + anon_sym_COMMA, + STATE(16122), 1, + aux_sym_record_exp_repeat1, + STATE(19949), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032030] = 5, + ACTIONS(22446), 1, + anon_sym_RBRACE, + ACTIONS(30063), 1, + anon_sym_COMMA, + STATE(15513), 1, + aux_sym_record_exp_repeat1, + STATE(19943), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032047] = 5, + ACTIONS(22468), 1, + anon_sym_RBRACE, + ACTIONS(30065), 1, + anon_sym_COMMA, + STATE(15519), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032064] = 5, + ACTIONS(22468), 1, + anon_sym_RBRACE, + ACTIONS(30065), 1, + anon_sym_COMMA, + STATE(15519), 1, + aux_sym_record_exp_repeat1, + STATE(19945), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032081] = 5, + ACTIONS(22484), 1, + anon_sym_RBRACE, + ACTIONS(30067), 1, + anon_sym_COMMA, + STATE(15520), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032098] = 5, + ACTIONS(6595), 1, + anon_sym_RPAREN, + ACTIONS(25438), 1, + anon_sym_SEMI, + STATE(1446), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032115] = 5, + ACTIONS(30069), 1, + anon_sym_SEMI, + ACTIONS(30071), 1, + anon_sym_end, + STATE(1773), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032132] = 5, + ACTIONS(22590), 1, + anon_sym_RBRACE, + ACTIONS(30073), 1, + anon_sym_COMMA, + STATE(15564), 1, + aux_sym_record_exp_repeat1, + STATE(19950), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032149] = 5, + ACTIONS(23550), 1, + anon_sym_RBRACE, + ACTIONS(30075), 1, + anon_sym_COMMA, + STATE(16169), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032166] = 5, + ACTIONS(22592), 1, + anon_sym_RBRACE, + ACTIONS(30077), 1, + anon_sym_COMMA, + STATE(15565), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032183] = 5, + ACTIONS(22592), 1, + anon_sym_RBRACE, + ACTIONS(30077), 1, + anon_sym_COMMA, + STATE(15565), 1, + aux_sym_record_exp_repeat1, + STATE(19952), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032200] = 5, + ACTIONS(22594), 1, + anon_sym_RBRACE, + ACTIONS(30079), 1, + anon_sym_COMMA, + STATE(15573), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032217] = 5, + ACTIONS(22726), 1, + anon_sym_RBRACE, + ACTIONS(30081), 1, + anon_sym_COMMA, + STATE(15646), 1, + aux_sym_record_exp_repeat1, + STATE(19955), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032234] = 5, + ACTIONS(23864), 1, + anon_sym_RBRACE, + ACTIONS(30049), 1, + anon_sym_COMMA, + STATE(16319), 1, + aux_sym_record_exp_repeat1, + STATE(20041), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032251] = 5, + ACTIONS(22750), 1, + anon_sym_RBRACE, + ACTIONS(30083), 1, + anon_sym_COMMA, + STATE(15655), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032268] = 5, + ACTIONS(22750), 1, + anon_sym_RBRACE, + ACTIONS(30083), 1, + anon_sym_COMMA, + STATE(15655), 1, + aux_sym_record_exp_repeat1, + STATE(19957), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032285] = 5, + ACTIONS(22766), 1, + anon_sym_RBRACE, + ACTIONS(30085), 1, + anon_sym_COMMA, + STATE(15667), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032302] = 5, + ACTIONS(30087), 1, + anon_sym_SEMI, + ACTIONS(30089), 1, + anon_sym_end, + STATE(2326), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032319] = 5, + ACTIONS(22836), 1, + anon_sym_RBRACE, + ACTIONS(30091), 1, + anon_sym_COMMA, + STATE(15705), 1, + aux_sym_record_exp_repeat1, + STATE(19961), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032336] = 5, + ACTIONS(2663), 1, + anon_sym_RBRACK, + ACTIONS(30093), 1, + anon_sym_COMMA, + STATE(570), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032353] = 5, + ACTIONS(22858), 1, + anon_sym_RBRACE, + ACTIONS(30095), 1, + anon_sym_COMMA, + STATE(15707), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032370] = 5, + ACTIONS(22858), 1, + anon_sym_RBRACE, + ACTIONS(30095), 1, + anon_sym_COMMA, + STATE(15707), 1, + aux_sym_record_exp_repeat1, + STATE(19964), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032387] = 5, + ACTIONS(30097), 1, + anon_sym_SEMI, + ACTIONS(30099), 1, + anon_sym_end, + STATE(2327), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032404] = 5, + ACTIONS(22864), 1, + anon_sym_RBRACE, + ACTIONS(30101), 1, + anon_sym_COMMA, + STATE(15713), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032421] = 5, + ACTIONS(23710), 1, + anon_sym_RBRACE, + ACTIONS(30103), 1, + anon_sym_COMMA, + STATE(15883), 1, + aux_sym_record_exp_repeat1, + STATE(20261), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032438] = 5, + ACTIONS(21450), 1, + anon_sym_RBRACE, + ACTIONS(30105), 1, + anon_sym_COMMA, + STATE(14924), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032455] = 5, + ACTIONS(21450), 1, + anon_sym_RBRACE, + ACTIONS(30105), 1, + anon_sym_COMMA, + STATE(14924), 1, + aux_sym_record_exp_repeat1, + STATE(20074), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032472] = 5, + ACTIONS(22968), 1, + anon_sym_RBRACE, + ACTIONS(30107), 1, + anon_sym_COMMA, + STATE(15778), 1, + aux_sym_record_exp_repeat1, + STATE(19970), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032489] = 3, + STATE(6722), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30109), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1032502] = 5, + ACTIONS(22998), 1, + anon_sym_RBRACE, + ACTIONS(30111), 1, + anon_sym_COMMA, + STATE(15792), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032519] = 5, + ACTIONS(22998), 1, + anon_sym_RBRACE, + ACTIONS(30111), 1, + anon_sym_COMMA, + STATE(15792), 1, + aux_sym_record_exp_repeat1, + STATE(19972), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032536] = 5, + ACTIONS(23024), 1, + anon_sym_RBRACE, + ACTIONS(30113), 1, + anon_sym_COMMA, + STATE(15798), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032553] = 5, + ACTIONS(23522), 1, + anon_sym_RBRACE, + ACTIONS(30115), 1, + anon_sym_COMMA, + STATE(16117), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032570] = 5, + ACTIONS(23522), 1, + anon_sym_RBRACE, + ACTIONS(30115), 1, + anon_sym_COMMA, + STATE(16117), 1, + aux_sym_record_exp_repeat1, + STATE(19987), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032587] = 5, + ACTIONS(3961), 1, + anon_sym_RBRACK, + ACTIONS(25440), 1, + anon_sym_COMMA, + STATE(677), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032604] = 5, + ACTIONS(23139), 1, + anon_sym_RBRACE, + ACTIONS(30117), 1, + anon_sym_COMMA, + STATE(15866), 1, + aux_sym_record_exp_repeat1, + STATE(19978), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032621] = 5, + ACTIONS(20841), 1, + anon_sym_RBRACE, + ACTIONS(30119), 1, + anon_sym_COMMA, + STATE(14565), 1, + aux_sym_record_exp_repeat1, + STATE(19994), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032638] = 5, + ACTIONS(23143), 1, + anon_sym_RBRACE, + ACTIONS(30121), 1, + anon_sym_COMMA, + STATE(15870), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032655] = 5, + ACTIONS(23143), 1, + anon_sym_RBRACE, + ACTIONS(30121), 1, + anon_sym_COMMA, + STATE(15870), 1, + aux_sym_record_exp_repeat1, + STATE(19980), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032672] = 5, + ACTIONS(23153), 1, + anon_sym_RBRACE, + ACTIONS(30123), 1, + anon_sym_COMMA, + STATE(15918), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032689] = 5, + ACTIONS(21539), 1, + anon_sym_RBRACE, + ACTIONS(30125), 1, + anon_sym_COMMA, + STATE(14913), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032706] = 5, + ACTIONS(23266), 1, + anon_sym_RBRACE, + ACTIONS(30127), 1, + anon_sym_COMMA, + STATE(15961), 1, + aux_sym_record_exp_repeat1, + STATE(19983), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032723] = 5, + ACTIONS(23268), 1, + anon_sym_RBRACE, + ACTIONS(30129), 1, + anon_sym_COMMA, + STATE(15965), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032740] = 5, + ACTIONS(23268), 1, + anon_sym_RBRACE, + ACTIONS(30129), 1, + anon_sym_COMMA, + STATE(15965), 1, + aux_sym_record_exp_repeat1, + STATE(19986), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032757] = 5, + ACTIONS(30131), 1, + anon_sym_SEMI, + ACTIONS(30133), 1, + anon_sym_end, + STATE(2329), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032774] = 5, + ACTIONS(23272), 1, + anon_sym_RBRACE, + ACTIONS(30135), 1, + anon_sym_COMMA, + STATE(15975), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032791] = 5, + ACTIONS(23540), 1, + anon_sym_RBRACE, + ACTIONS(30137), 1, + anon_sym_COMMA, + STATE(16123), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032808] = 5, + ACTIONS(6597), 1, + anon_sym_RBRACK, + ACTIONS(25454), 1, + anon_sym_COMMA, + STATE(1447), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032825] = 5, + ACTIONS(23356), 1, + anon_sym_RBRACE, + ACTIONS(30139), 1, + anon_sym_COMMA, + STATE(16016), 1, + aux_sym_record_exp_repeat1, + STATE(19991), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032842] = 5, + ACTIONS(7299), 1, + anon_sym_RPAREN, + ACTIONS(25452), 1, + anon_sym_SEMI, + STATE(1782), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032859] = 5, + ACTIONS(23362), 1, + anon_sym_RBRACE, + ACTIONS(30141), 1, + anon_sym_COMMA, + STATE(16040), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032876] = 5, + ACTIONS(23362), 1, + anon_sym_RBRACE, + ACTIONS(30141), 1, + anon_sym_COMMA, + STATE(16040), 1, + aux_sym_record_exp_repeat1, + STATE(19993), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032893] = 5, + ACTIONS(23400), 1, + anon_sym_RBRACE, + ACTIONS(30143), 1, + anon_sym_COMMA, + STATE(16053), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032910] = 5, + ACTIONS(20849), 1, + anon_sym_RBRACE, + ACTIONS(30145), 1, + anon_sym_COMMA, + STATE(14569), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032927] = 5, + ACTIONS(20849), 1, + anon_sym_RBRACE, + ACTIONS(30145), 1, + anon_sym_COMMA, + STATE(14569), 1, + aux_sym_record_exp_repeat1, + STATE(20019), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032944] = 5, + ACTIONS(23506), 1, + anon_sym_RBRACE, + ACTIONS(30147), 1, + anon_sym_COMMA, + STATE(16103), 1, + aux_sym_record_exp_repeat1, + STATE(19997), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032961] = 5, + ACTIONS(23514), 1, + anon_sym_RBRACE, + ACTIONS(30149), 1, + anon_sym_COMMA, + STATE(16106), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032978] = 5, + ACTIONS(23514), 1, + anon_sym_RBRACE, + ACTIONS(30149), 1, + anon_sym_COMMA, + STATE(16106), 1, + aux_sym_record_exp_repeat1, + STATE(19999), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1032995] = 5, + ACTIONS(23520), 1, + anon_sym_RBRACE, + ACTIONS(30151), 1, + anon_sym_COMMA, + STATE(16109), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033012] = 5, + ACTIONS(4249), 1, + anon_sym_RBRACK, + ACTIONS(25460), 1, + anon_sym_COMMA, + STATE(773), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033029] = 5, + ACTIONS(23570), 1, + anon_sym_RBRACE, + ACTIONS(30153), 1, + anon_sym_COMMA, + STATE(16140), 1, + aux_sym_record_exp_repeat1, + STATE(20002), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033046] = 5, + ACTIONS(23580), 1, + anon_sym_RBRACE, + ACTIONS(30155), 1, + anon_sym_COMMA, + STATE(16152), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033063] = 5, + ACTIONS(23580), 1, + anon_sym_RBRACE, + ACTIONS(30155), 1, + anon_sym_COMMA, + STATE(16152), 1, + aux_sym_record_exp_repeat1, + STATE(20005), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033080] = 5, + ACTIONS(7301), 1, + anon_sym_RBRACK, + ACTIONS(25462), 1, + anon_sym_COMMA, + STATE(1783), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033097] = 5, + ACTIONS(23602), 1, + anon_sym_RBRACE, + ACTIONS(30157), 1, + anon_sym_COMMA, + STATE(16163), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033114] = 5, + ACTIONS(23656), 1, + anon_sym_RBRACE, + ACTIONS(30159), 1, + anon_sym_COMMA, + STATE(16210), 1, + aux_sym_record_exp_repeat1, + STATE(20007), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033131] = 5, + ACTIONS(23714), 1, + anon_sym_RBRACE, + ACTIONS(30161), 1, + anon_sym_COMMA, + STATE(16251), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033148] = 5, + ACTIONS(23714), 1, + anon_sym_RBRACE, + ACTIONS(30161), 1, + anon_sym_COMMA, + STATE(16251), 1, + aux_sym_record_exp_repeat1, + STATE(20009), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033165] = 5, + ACTIONS(23782), 1, + anon_sym_RBRACE, + ACTIONS(30163), 1, + anon_sym_COMMA, + STATE(16297), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033182] = 5, + ACTIONS(20954), 1, + anon_sym_RBRACE, + ACTIONS(30165), 1, + anon_sym_COMMA, + STATE(14781), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033199] = 5, + ACTIONS(6519), 1, + anon_sym_RBRACK, + ACTIONS(30167), 1, + anon_sym_COMMA, + STATE(1872), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033216] = 5, + ACTIONS(23882), 1, + anon_sym_RBRACE, + ACTIONS(30169), 1, + anon_sym_COMMA, + STATE(16314), 1, + aux_sym_record_exp_repeat1, + STATE(20014), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033233] = 5, + ACTIONS(7303), 1, + anon_sym_RPAREN, + ACTIONS(30171), 1, + anon_sym_COMMA, + STATE(1785), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033250] = 5, + ACTIONS(23902), 1, + anon_sym_RBRACE, + ACTIONS(30173), 1, + anon_sym_COMMA, + STATE(16316), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033267] = 5, + ACTIONS(23902), 1, + anon_sym_RBRACE, + ACTIONS(30173), 1, + anon_sym_COMMA, + STATE(16316), 1, + aux_sym_record_exp_repeat1, + STATE(20017), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033284] = 5, + ACTIONS(7305), 1, + anon_sym_RPAREN, + ACTIONS(30175), 1, + anon_sym_SEMI, + STATE(1786), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033301] = 5, + ACTIONS(23906), 1, + anon_sym_RBRACE, + ACTIONS(30177), 1, + anon_sym_COMMA, + STATE(16321), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033318] = 5, + ACTIONS(22406), 1, + anon_sym_RBRACE, + ACTIONS(30179), 1, + anon_sym_COMMA, + STATE(15489), 1, + aux_sym_record_exp_repeat1, + STATE(20020), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033335] = 5, + ACTIONS(20857), 1, + anon_sym_RBRACE, + ACTIONS(30181), 1, + anon_sym_COMMA, + STATE(14574), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033352] = 5, + ACTIONS(22408), 1, + anon_sym_RBRACE, + ACTIONS(30183), 1, + anon_sym_COMMA, + STATE(15490), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033369] = 5, + ACTIONS(22408), 1, + anon_sym_RBRACE, + ACTIONS(30183), 1, + anon_sym_COMMA, + STATE(15490), 1, + aux_sym_record_exp_repeat1, + STATE(20022), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033386] = 5, + ACTIONS(22410), 1, + anon_sym_RBRACE, + ACTIONS(30185), 1, + anon_sym_COMMA, + STATE(15494), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033403] = 5, + ACTIONS(4107), 1, + anon_sym_RBRACK, + ACTIONS(30187), 1, + anon_sym_COMMA, + STATE(726), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033420] = 5, + ACTIONS(22432), 1, + anon_sym_RBRACE, + ACTIONS(30189), 1, + anon_sym_COMMA, + STATE(15507), 1, + aux_sym_record_exp_repeat1, + STATE(20027), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033437] = 5, + ACTIONS(4251), 1, + anon_sym_RBRACK, + ACTIONS(30191), 1, + anon_sym_COMMA, + STATE(774), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033454] = 5, + ACTIONS(30193), 1, + anon_sym_SEMI, + ACTIONS(30195), 1, + anon_sym_end, + STATE(2157), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033471] = 5, + ACTIONS(22452), 1, + anon_sym_RBRACE, + ACTIONS(30197), 1, + anon_sym_COMMA, + STATE(15508), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033488] = 5, + ACTIONS(22452), 1, + anon_sym_RBRACE, + ACTIONS(30197), 1, + anon_sym_COMMA, + STATE(15508), 1, + aux_sym_record_exp_repeat1, + STATE(20030), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033505] = 5, + ACTIONS(7307), 1, + anon_sym_RBRACK, + ACTIONS(30199), 1, + anon_sym_COMMA, + STATE(1787), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033522] = 5, + ACTIONS(22454), 1, + anon_sym_RBRACE, + ACTIONS(30201), 1, + anon_sym_COMMA, + STATE(15510), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033539] = 5, + ACTIONS(30203), 1, + anon_sym_SEMI, + ACTIONS(30205), 1, + anon_sym_end, + STATE(1881), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033556] = 5, + ACTIONS(30207), 1, + anon_sym_SEMI, + ACTIONS(30209), 1, + anon_sym_end, + STATE(1788), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033573] = 5, + ACTIONS(22470), 1, + anon_sym_RBRACE, + ACTIONS(30211), 1, + anon_sym_COMMA, + STATE(15517), 1, + aux_sym_record_exp_repeat1, + STATE(20034), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033590] = 5, + ACTIONS(22478), 1, + anon_sym_RBRACE, + ACTIONS(30213), 1, + anon_sym_COMMA, + STATE(15521), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033607] = 5, + ACTIONS(22478), 1, + anon_sym_RBRACE, + ACTIONS(30213), 1, + anon_sym_COMMA, + STATE(15521), 1, + aux_sym_record_exp_repeat1, + STATE(20036), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033624] = 5, + ACTIONS(22488), 1, + anon_sym_RBRACE, + ACTIONS(30215), 1, + anon_sym_COMMA, + STATE(15525), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033641] = 5, + ACTIONS(22904), 1, + anon_sym_RBRACE, + ACTIONS(30217), 1, + anon_sym_COMMA, + STATE(15697), 1, + aux_sym_record_exp_repeat1, + STATE(20061), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033658] = 5, + ACTIONS(22508), 1, + anon_sym_RBRACE, + ACTIONS(30219), 1, + anon_sym_COMMA, + STATE(15530), 1, + aux_sym_record_exp_repeat1, + STATE(20039), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033675] = 5, + ACTIONS(22510), 1, + anon_sym_RBRACE, + ACTIONS(30221), 1, + anon_sym_COMMA, + STATE(15538), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033692] = 5, + ACTIONS(22510), 1, + anon_sym_RBRACE, + ACTIONS(30221), 1, + anon_sym_COMMA, + STATE(15538), 1, + aux_sym_record_exp_repeat1, + STATE(20042), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033709] = 5, + ACTIONS(23912), 1, + anon_sym_RBRACE, + ACTIONS(30223), 1, + anon_sym_COMMA, + STATE(16324), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033726] = 5, + ACTIONS(22525), 1, + anon_sym_RBRACE, + ACTIONS(30225), 1, + anon_sym_COMMA, + STATE(15539), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033743] = 5, + ACTIONS(22572), 1, + anon_sym_RBRACE, + ACTIONS(30227), 1, + anon_sym_COMMA, + STATE(15559), 1, + aux_sym_record_exp_repeat1, + STATE(20045), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033760] = 5, + ACTIONS(6955), 1, + anon_sym_RBRACK, + ACTIONS(30229), 1, + anon_sym_COMMA, + STATE(1619), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033777] = 5, + ACTIONS(22582), 1, + anon_sym_RBRACE, + ACTIONS(30231), 1, + anon_sym_COMMA, + STATE(15560), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033794] = 5, + ACTIONS(22582), 1, + anon_sym_RBRACE, + ACTIONS(30231), 1, + anon_sym_COMMA, + STATE(15560), 1, + aux_sym_record_exp_repeat1, + STATE(20047), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033811] = 5, + ACTIONS(22584), 1, + anon_sym_RBRACE, + ACTIONS(30233), 1, + anon_sym_COMMA, + STATE(15561), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033828] = 5, + ACTIONS(22600), 1, + anon_sym_RBRACE, + ACTIONS(30235), 1, + anon_sym_COMMA, + STATE(15568), 1, + aux_sym_record_exp_repeat1, + STATE(20051), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033845] = 5, + ACTIONS(6367), 1, + anon_sym_RPAREN, + ACTIONS(25502), 1, + anon_sym_SEMI, + STATE(1337), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033862] = 5, + ACTIONS(30237), 1, + anon_sym_SEMI, + ACTIONS(30239), 1, + anon_sym_end, + STATE(1620), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033879] = 5, + ACTIONS(22602), 1, + anon_sym_RBRACE, + ACTIONS(30241), 1, + anon_sym_COMMA, + STATE(15569), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033896] = 5, + ACTIONS(22602), 1, + anon_sym_RBRACE, + ACTIONS(30241), 1, + anon_sym_COMMA, + STATE(15569), 1, + aux_sym_record_exp_repeat1, + STATE(20054), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033913] = 5, + ACTIONS(30243), 1, + anon_sym_SEMI, + ACTIONS(30245), 1, + anon_sym_end, + STATE(1791), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033930] = 5, + ACTIONS(22604), 1, + anon_sym_RBRACE, + ACTIONS(30247), 1, + anon_sym_COMMA, + STATE(15575), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033947] = 5, + ACTIONS(6599), 1, + anon_sym_RPAREN, + ACTIONS(30249), 1, + anon_sym_COMMA, + STATE(1449), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033964] = 5, + ACTIONS(30251), 1, + anon_sym_SEMI, + ACTIONS(30253), 1, + anon_sym_end, + STATE(1792), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033981] = 5, + ACTIONS(22620), 1, + anon_sym_RBRACE, + ACTIONS(30255), 1, + anon_sym_COMMA, + STATE(15579), 1, + aux_sym_record_exp_repeat1, + STATE(20059), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1033998] = 5, + ACTIONS(6601), 1, + anon_sym_RPAREN, + ACTIONS(30257), 1, + anon_sym_SEMI, + STATE(1450), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034015] = 5, + ACTIONS(22622), 1, + anon_sym_RBRACE, + ACTIONS(30259), 1, + anon_sym_COMMA, + STATE(15582), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034032] = 5, + ACTIONS(22622), 1, + anon_sym_RBRACE, + ACTIONS(30259), 1, + anon_sym_COMMA, + STATE(15582), 1, + aux_sym_record_exp_repeat1, + STATE(20062), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034049] = 5, + ACTIONS(22842), 1, + anon_sym_RBRACE, + ACTIONS(30261), 1, + anon_sym_COMMA, + STATE(15791), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034066] = 5, + ACTIONS(22624), 1, + anon_sym_RBRACE, + ACTIONS(30263), 1, + anon_sym_COMMA, + STATE(15584), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034083] = 5, + ACTIONS(22842), 1, + anon_sym_RBRACE, + ACTIONS(30261), 1, + anon_sym_COMMA, + STATE(15791), 1, + aux_sym_record_exp_repeat1, + STATE(20075), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034100] = 5, + ACTIONS(22642), 1, + anon_sym_RBRACE, + ACTIONS(30265), 1, + anon_sym_COMMA, + STATE(15595), 1, + aux_sym_record_exp_repeat1, + STATE(20065), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034117] = 5, + ACTIONS(22648), 1, + anon_sym_RBRACE, + ACTIONS(30267), 1, + anon_sym_COMMA, + STATE(15599), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034134] = 5, + ACTIONS(22648), 1, + anon_sym_RBRACE, + ACTIONS(30267), 1, + anon_sym_COMMA, + STATE(15599), 1, + aux_sym_record_exp_repeat1, + STATE(20067), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034151] = 5, + ACTIONS(22655), 1, + anon_sym_RBRACE, + ACTIONS(30269), 1, + anon_sym_COMMA, + STATE(15601), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034168] = 5, + ACTIONS(22694), 1, + anon_sym_RBRACE, + ACTIONS(30271), 1, + anon_sym_COMMA, + STATE(15620), 1, + aux_sym_record_exp_repeat1, + STATE(20069), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034185] = 5, + ACTIONS(22698), 1, + anon_sym_RBRACE, + ACTIONS(30273), 1, + anon_sym_COMMA, + STATE(15621), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034202] = 5, + ACTIONS(22698), 1, + anon_sym_RBRACE, + ACTIONS(30273), 1, + anon_sym_COMMA, + STATE(15621), 1, + aux_sym_record_exp_repeat1, + STATE(20071), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034219] = 5, + ACTIONS(22700), 1, + anon_sym_RBRACE, + ACTIONS(30275), 1, + anon_sym_COMMA, + STATE(15625), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034236] = 5, + ACTIONS(30277), 1, + anon_sym_SEMI, + ACTIONS(30279), 1, + anon_sym_end, + STATE(1794), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034253] = 5, + ACTIONS(22724), 1, + anon_sym_RBRACE, + ACTIONS(30281), 1, + anon_sym_COMMA, + STATE(15636), 1, + aux_sym_record_exp_repeat1, + STATE(20076), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034270] = 5, + ACTIONS(21581), 1, + anon_sym_RBRACE, + ACTIONS(30283), 1, + anon_sym_COMMA, + STATE(14403), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034287] = 5, + ACTIONS(23022), 1, + anon_sym_RBRACE, + ACTIONS(30285), 1, + anon_sym_COMMA, + STATE(15795), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034304] = 5, + ACTIONS(22728), 1, + anon_sym_RBRACE, + ACTIONS(30287), 1, + anon_sym_COMMA, + STATE(15638), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034321] = 5, + ACTIONS(22728), 1, + anon_sym_RBRACE, + ACTIONS(30287), 1, + anon_sym_COMMA, + STATE(15638), 1, + aux_sym_record_exp_repeat1, + STATE(20078), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034338] = 5, + ACTIONS(22734), 1, + anon_sym_RBRACE, + ACTIONS(30289), 1, + anon_sym_COMMA, + STATE(15641), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034355] = 5, + ACTIONS(22746), 1, + anon_sym_RBRACE, + ACTIONS(30291), 1, + anon_sym_COMMA, + STATE(15644), 1, + aux_sym_record_exp_repeat1, + STATE(20080), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034372] = 5, + ACTIONS(22748), 1, + anon_sym_RBRACE, + ACTIONS(30293), 1, + anon_sym_COMMA, + STATE(15656), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034389] = 5, + ACTIONS(22748), 1, + anon_sym_RBRACE, + ACTIONS(30293), 1, + anon_sym_COMMA, + STATE(15656), 1, + aux_sym_record_exp_repeat1, + STATE(20082), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034406] = 5, + ACTIONS(22768), 1, + anon_sym_RBRACE, + ACTIONS(30295), 1, + anon_sym_COMMA, + STATE(15658), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034423] = 5, + ACTIONS(22780), 1, + anon_sym_RBRACE, + ACTIONS(30297), 1, + anon_sym_COMMA, + STATE(15666), 1, + aux_sym_record_exp_repeat1, + STATE(20084), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034440] = 5, + ACTIONS(22782), 1, + anon_sym_RBRACE, + ACTIONS(30299), 1, + anon_sym_COMMA, + STATE(15669), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034457] = 5, + ACTIONS(22782), 1, + anon_sym_RBRACE, + ACTIONS(30299), 1, + anon_sym_COMMA, + STATE(15669), 1, + aux_sym_record_exp_repeat1, + STATE(20087), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034474] = 3, + STATE(7234), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30301), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1034487] = 5, + ACTIONS(22788), 1, + anon_sym_RBRACE, + ACTIONS(30303), 1, + anon_sym_COMMA, + STATE(15671), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034504] = 5, + ACTIONS(30305), 1, + anon_sym_SEMI, + ACTIONS(30307), 1, + anon_sym_end, + STATE(1542), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034521] = 5, + ACTIONS(3891), 1, + anon_sym_RBRACK, + ACTIONS(30309), 1, + anon_sym_COMMA, + STATE(654), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034538] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30315), 1, + anon_sym_EQ_GT, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034555] = 5, + ACTIONS(28935), 1, + anon_sym_COLON, + ACTIONS(28937), 1, + anon_sym_PIPE, + ACTIONS(28939), 1, + anon_sym_as, + ACTIONS(30319), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034572] = 5, + ACTIONS(23680), 1, + anon_sym_RBRACE, + ACTIONS(30321), 1, + anon_sym_COMMA, + STATE(16217), 1, + aux_sym_record_exp_repeat1, + STATE(20151), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034589] = 5, + ACTIONS(21020), 1, + anon_sym_RBRACE, + ACTIONS(30323), 1, + anon_sym_COMMA, + STATE(14677), 1, + aux_sym_record_exp_repeat1, + STATE(20108), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034606] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19698), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13483), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1034619] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19698), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13335), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1034632] = 5, + ACTIONS(3963), 1, + anon_sym_RBRACK, + ACTIONS(30325), 1, + anon_sym_COMMA, + STATE(678), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034649] = 5, + ACTIONS(23770), 1, + anon_sym_RBRACE, + ACTIONS(30327), 1, + anon_sym_COMMA, + STATE(15923), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034666] = 5, + ACTIONS(6603), 1, + anon_sym_RBRACK, + ACTIONS(30329), 1, + anon_sym_COMMA, + STATE(1451), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034683] = 5, + ACTIONS(6419), 1, + anon_sym_RBRACK, + ACTIONS(30331), 1, + anon_sym_COMMA, + STATE(1363), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034700] = 5, + ACTIONS(30333), 1, + anon_sym_SEMI, + ACTIONS(30335), 1, + anon_sym_end, + STATE(1452), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034717] = 3, + STATE(6777), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30337), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1034730] = 5, + ACTIONS(8535), 1, + anon_sym_RPAREN, + ACTIONS(24334), 1, + anon_sym_COMMA, + STATE(2338), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034747] = 5, + ACTIONS(6015), 1, + anon_sym_RPAREN, + ACTIONS(25508), 1, + anon_sym_COMMA, + STATE(1169), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034764] = 5, + ACTIONS(30339), 1, + sym__alphaAlphaNumeric_ident, + STATE(11984), 1, + sym_fctbind, + STATE(13282), 1, + sym__fctbind, + STATE(24954), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034781] = 5, + ACTIONS(8537), 1, + anon_sym_RPAREN, + ACTIONS(24336), 1, + anon_sym_SEMI, + STATE(2339), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034798] = 5, + ACTIONS(20679), 1, + anon_sym_RBRACE, + ACTIONS(30341), 1, + anon_sym_COMMA, + STATE(14494), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034815] = 5, + ACTIONS(7967), 1, + anon_sym_RPAREN, + ACTIONS(24282), 1, + anon_sym_COMMA, + STATE(2101), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034832] = 5, + ACTIONS(21022), 1, + anon_sym_RBRACE, + ACTIONS(30343), 1, + anon_sym_COMMA, + STATE(14679), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034849] = 5, + ACTIONS(23892), 1, + anon_sym_RBRACE, + ACTIONS(30345), 1, + anon_sym_COMMA, + STATE(16001), 1, + aux_sym_record_exp_repeat1, + STATE(20163), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034866] = 5, + ACTIONS(20906), 1, + anon_sym_RBRACE, + ACTIONS(30347), 1, + anon_sym_COMMA, + STATE(14612), 1, + aux_sym_record_exp_repeat1, + STATE(20126), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034883] = 5, + ACTIONS(21022), 1, + anon_sym_RBRACE, + ACTIONS(30343), 1, + anon_sym_COMMA, + STATE(14679), 1, + aux_sym_record_exp_repeat1, + STATE(20131), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034900] = 4, + STATE(15085), 1, + sym_valdesc, + STATE(24943), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1034915] = 5, + ACTIONS(30349), 1, + anon_sym_SEMI, + ACTIONS(30351), 1, + anon_sym_end, + STATE(1364), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034932] = 4, + STATE(15049), 1, + sym_vid, + STATE(15097), 1, + sym_exdesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1034947] = 5, + ACTIONS(4701), 1, + anon_sym_RBRACK, + ACTIONS(24338), 1, + anon_sym_COMMA, + STATE(929), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034964] = 5, + ACTIONS(6017), 1, + anon_sym_RPAREN, + ACTIONS(25510), 1, + anon_sym_SEMI, + STATE(1170), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034981] = 5, + ACTIONS(8539), 1, + anon_sym_RBRACK, + ACTIONS(24340), 1, + anon_sym_COMMA, + STATE(2341), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1034998] = 5, + ACTIONS(7969), 1, + anon_sym_RPAREN, + ACTIONS(24290), 1, + anon_sym_SEMI, + STATE(2102), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035015] = 5, + ACTIONS(20629), 1, + anon_sym_RBRACE, + ACTIONS(30353), 1, + anon_sym_COMMA, + STATE(14493), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035032] = 4, + STATE(14324), 1, + sym_vid, + STATE(14356), 1, + sym_condesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1035047] = 5, + ACTIONS(8541), 1, + anon_sym_RPAREN, + ACTIONS(30355), 1, + anon_sym_COMMA, + STATE(2343), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035064] = 5, + ACTIONS(7341), 1, + anon_sym_RPAREN, + ACTIONS(25520), 1, + anon_sym_COMMA, + STATE(1802), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035081] = 4, + STATE(24973), 1, + sym_hol_identifier, + STATE(25000), 1, + sym_hol_binding, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27983), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + [1035096] = 5, + ACTIONS(7343), 1, + anon_sym_RPAREN, + ACTIONS(25522), 1, + anon_sym_SEMI, + STATE(1803), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035113] = 5, + ACTIONS(8543), 1, + anon_sym_RPAREN, + ACTIONS(30357), 1, + anon_sym_SEMI, + STATE(2344), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035130] = 5, + ACTIONS(20922), 1, + anon_sym_RBRACE, + ACTIONS(30359), 1, + anon_sym_COMMA, + STATE(14631), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035147] = 5, + ACTIONS(20922), 1, + anon_sym_RBRACE, + ACTIONS(30359), 1, + anon_sym_COMMA, + STATE(14631), 1, + aux_sym_record_exp_repeat1, + STATE(20141), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035164] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14909), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + [1035175] = 5, + ACTIONS(4267), 1, + anon_sym_RBRACK, + ACTIONS(25524), 1, + anon_sym_COMMA, + STATE(779), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035192] = 5, + ACTIONS(7345), 1, + anon_sym_RBRACK, + ACTIONS(25526), 1, + anon_sym_COMMA, + STATE(1804), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035209] = 5, + ACTIONS(21028), 1, + anon_sym_RBRACE, + ACTIONS(30361), 1, + anon_sym_COMMA, + STATE(14680), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035226] = 5, + ACTIONS(20629), 1, + anon_sym_RBRACE, + ACTIONS(30353), 1, + anon_sym_COMMA, + STATE(14493), 1, + aux_sym_record_exp_repeat1, + STATE(20175), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035243] = 5, + ACTIONS(3727), 1, + anon_sym_RBRACK, + ACTIONS(25532), 1, + anon_sym_COMMA, + STATE(599), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035260] = 5, + ACTIONS(4703), 1, + anon_sym_RBRACK, + ACTIONS(30363), 1, + anon_sym_COMMA, + STATE(930), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035277] = 5, + ACTIONS(8545), 1, + anon_sym_RBRACK, + ACTIONS(30365), 1, + anon_sym_COMMA, + STATE(2345), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035294] = 5, + ACTIONS(30367), 1, + anon_sym_SEMI, + ACTIONS(30369), 1, + anon_sym_end, + STATE(2346), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035311] = 5, + ACTIONS(7347), 1, + anon_sym_RPAREN, + ACTIONS(30371), 1, + anon_sym_COMMA, + STATE(1806), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035328] = 5, + ACTIONS(6019), 1, + anon_sym_RBRACK, + ACTIONS(25538), 1, + anon_sym_COMMA, + STATE(1171), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035345] = 5, + ACTIONS(23760), 1, + anon_sym_RBRACE, + ACTIONS(30373), 1, + anon_sym_COMMA, + STATE(16263), 1, + aux_sym_record_exp_repeat1, + STATE(20159), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035362] = 5, + ACTIONS(7349), 1, + anon_sym_RPAREN, + ACTIONS(30375), 1, + anon_sym_SEMI, + STATE(1807), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035379] = 5, + ACTIONS(20934), 1, + anon_sym_RBRACE, + ACTIONS(30377), 1, + anon_sym_COMMA, + STATE(14637), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035396] = 5, + ACTIONS(30379), 1, + anon_sym_SEMI, + ACTIONS(30381), 1, + anon_sym_end, + STATE(1623), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035413] = 5, + ACTIONS(4269), 1, + anon_sym_RBRACK, + ACTIONS(30383), 1, + anon_sym_COMMA, + STATE(780), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035430] = 5, + ACTIONS(30385), 1, + anon_sym_SEMI, + ACTIONS(30387), 1, + anon_sym_end, + STATE(1624), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035447] = 5, + ACTIONS(7351), 1, + anon_sym_RBRACK, + ACTIONS(30389), 1, + anon_sym_COMMA, + STATE(1808), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035464] = 5, + ACTIONS(30391), 1, + anon_sym_SEMI, + ACTIONS(30393), 1, + anon_sym_end, + STATE(1455), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035481] = 5, + ACTIONS(30395), 1, + anon_sym_SEMI, + ACTIONS(30397), 1, + anon_sym_end, + STATE(1809), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035498] = 5, + ACTIONS(20649), 1, + anon_sym_RBRACE, + ACTIONS(30399), 1, + anon_sym_COMMA, + STATE(14496), 1, + aux_sym_record_exp_repeat1, + STATE(20193), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035515] = 3, + STATE(7132), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30401), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1035528] = 3, + STATE(5057), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30403), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1035541] = 5, + ACTIONS(23724), 1, + anon_sym_RBRACE, + ACTIONS(30405), 1, + anon_sym_COMMA, + STATE(16218), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035558] = 5, + ACTIONS(30407), 1, + anon_sym_SEMI, + ACTIONS(30409), 1, + anon_sym_end, + STATE(2349), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035575] = 5, + ACTIONS(30411), 1, + anon_sym_SEMI, + ACTIONS(30413), 1, + anon_sym_end, + STATE(2350), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035592] = 5, + ACTIONS(22900), 1, + anon_sym_RBRACE, + ACTIONS(30415), 1, + anon_sym_COMMA, + STATE(15847), 1, + aux_sym_record_exp_repeat1, + STATE(20171), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035609] = 5, + ACTIONS(20716), 1, + anon_sym_RBRACE, + ACTIONS(30417), 1, + anon_sym_COMMA, + STATE(14508), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035626] = 5, + ACTIONS(23724), 1, + anon_sym_RBRACE, + ACTIONS(30405), 1, + anon_sym_COMMA, + STATE(16218), 1, + aux_sym_record_exp_repeat1, + STATE(20186), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035643] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30419), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035660] = 5, + ACTIONS(28935), 1, + anon_sym_COLON, + ACTIONS(28937), 1, + anon_sym_PIPE, + ACTIONS(28939), 1, + anon_sym_as, + ACTIONS(30421), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035677] = 5, + ACTIONS(23800), 1, + anon_sym_RBRACE, + ACTIONS(30423), 1, + anon_sym_COMMA, + STATE(16280), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035694] = 5, + ACTIONS(30425), 1, + anon_sym_SEMI, + ACTIONS(30427), 1, + anon_sym_end, + STATE(2215), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035711] = 5, + ACTIONS(30429), 1, + anon_sym_SEMI, + ACTIONS(30431), 1, + anon_sym_end, + STATE(1456), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035728] = 5, + ACTIONS(23800), 1, + anon_sym_RBRACE, + ACTIONS(30423), 1, + anon_sym_COMMA, + STATE(16280), 1, + aux_sym_record_exp_repeat1, + STATE(20166), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035745] = 5, + ACTIONS(23330), 1, + anon_sym_RBRACE, + ACTIONS(30433), 1, + anon_sym_COMMA, + STATE(16017), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035762] = 5, + ACTIONS(30435), 1, + anon_sym_SEMI, + ACTIONS(30437), 1, + anon_sym_end, + STATE(2352), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035779] = 5, + ACTIONS(23330), 1, + anon_sym_RBRACE, + ACTIONS(30433), 1, + anon_sym_COMMA, + STATE(16017), 1, + aux_sym_record_exp_repeat1, + STATE(20181), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035796] = 5, + ACTIONS(23836), 1, + anon_sym_RBRACE, + ACTIONS(30439), 1, + anon_sym_COMMA, + STATE(16281), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035813] = 5, + ACTIONS(30441), 1, + anon_sym_SEMI, + ACTIONS(30443), 1, + anon_sym_end, + STATE(1812), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035830] = 5, + ACTIONS(6021), 1, + anon_sym_RPAREN, + ACTIONS(30445), 1, + anon_sym_COMMA, + STATE(1173), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035847] = 5, + ACTIONS(6023), 1, + anon_sym_RPAREN, + ACTIONS(30447), 1, + anon_sym_SEMI, + STATE(1174), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035864] = 5, + ACTIONS(30449), 1, + anon_sym_SEMI, + ACTIONS(30451), 1, + anon_sym_end, + STATE(1813), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035881] = 5, + ACTIONS(23105), 1, + anon_sym_RBRACE, + ACTIONS(30453), 1, + anon_sym_COMMA, + STATE(15874), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035898] = 5, + ACTIONS(23105), 1, + anon_sym_RBRACE, + ACTIONS(30453), 1, + anon_sym_COMMA, + STATE(15874), 1, + aux_sym_record_exp_repeat1, + STATE(20174), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035915] = 5, + ACTIONS(30455), 1, + anon_sym_SEMI, + ACTIONS(30457), 1, + anon_sym_end, + STATE(1815), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035932] = 5, + ACTIONS(23158), 1, + anon_sym_RBRACE, + ACTIONS(30459), 1, + anon_sym_COMMA, + STATE(15886), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035949] = 5, + ACTIONS(20683), 1, + anon_sym_RBRACE, + ACTIONS(30461), 1, + anon_sym_COMMA, + STATE(14517), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035966] = 5, + ACTIONS(3729), 1, + anon_sym_RBRACK, + ACTIONS(30463), 1, + anon_sym_COMMA, + STATE(600), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1035983] = 5, + ACTIONS(30465), 1, + anon_sym_SEMI, + ACTIONS(30467), 1, + anon_sym_end, + STATE(1328), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036000] = 5, + ACTIONS(30469), 1, + anon_sym_SEMI, + ACTIONS(30471), 1, + anon_sym_end, + STATE(1458), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036017] = 5, + ACTIONS(30473), 1, + anon_sym_SEMI, + ACTIONS(30475), 1, + anon_sym_end, + STATE(1326), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036034] = 5, + ACTIONS(20716), 1, + anon_sym_RBRACE, + ACTIONS(30417), 1, + anon_sym_COMMA, + STATE(14508), 1, + aux_sym_record_exp_repeat1, + STATE(20294), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036051] = 5, + ACTIONS(23364), 1, + anon_sym_RBRACE, + ACTIONS(30477), 1, + anon_sym_COMMA, + STATE(16041), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036068] = 5, + ACTIONS(20787), 1, + anon_sym_RBRACE, + ACTIONS(30479), 1, + anon_sym_COMMA, + STATE(14537), 1, + aux_sym_record_exp_repeat1, + STATE(20220), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036085] = 5, + ACTIONS(30481), 1, + anon_sym_SEMI, + ACTIONS(30483), 1, + anon_sym_end, + STATE(1626), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036102] = 5, + ACTIONS(6025), 1, + anon_sym_RBRACK, + ACTIONS(30485), 1, + anon_sym_COMMA, + STATE(1175), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036119] = 5, + ACTIONS(22872), 1, + anon_sym_RBRACE, + ACTIONS(30487), 1, + anon_sym_COMMA, + STATE(16224), 1, + aux_sym_record_exp_repeat1, + STATE(20347), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036136] = 5, + ACTIONS(23726), 1, + anon_sym_RBRACE, + ACTIONS(30489), 1, + anon_sym_COMMA, + STATE(16222), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036153] = 5, + ACTIONS(30491), 1, + anon_sym_SEMI, + ACTIONS(30493), 1, + anon_sym_end, + STATE(1176), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036170] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30495), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036187] = 5, + ACTIONS(28935), 1, + anon_sym_COLON, + ACTIONS(28937), 1, + anon_sym_PIPE, + ACTIONS(28939), 1, + anon_sym_as, + ACTIONS(30497), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036204] = 3, + STATE(6267), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30499), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1036217] = 3, + STATE(6831), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30501), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1036230] = 5, + ACTIONS(14949), 1, + anon_sym_RPAREN, + ACTIONS(26961), 1, + anon_sym_COMMA, + STATE(7954), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036247] = 5, + ACTIONS(20689), 1, + anon_sym_RBRACE, + ACTIONS(30503), 1, + anon_sym_COMMA, + STATE(14519), 1, + aux_sym_record_exp_repeat1, + STATE(20410), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036264] = 5, + ACTIONS(20689), 1, + anon_sym_RBRACE, + ACTIONS(30503), 1, + anon_sym_COMMA, + STATE(14519), 1, + aux_sym_record_exp_repeat1, + STATE(20237), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036281] = 5, + ACTIONS(21040), 1, + anon_sym_RBRACE, + ACTIONS(30505), 1, + anon_sym_COMMA, + STATE(14687), 1, + aux_sym_record_exp_repeat1, + STATE(20213), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036298] = 5, + ACTIONS(14731), 1, + anon_sym_RBRACK, + ACTIONS(26974), 1, + anon_sym_COMMA, + STATE(5928), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036315] = 5, + ACTIONS(14951), 1, + anon_sym_RPAREN, + ACTIONS(26976), 1, + anon_sym_COMMA, + STATE(7955), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036332] = 5, + ACTIONS(20990), 1, + anon_sym_RBRACE, + ACTIONS(30507), 1, + anon_sym_COMMA, + STATE(14666), 1, + aux_sym_record_exp_repeat1, + STATE(20207), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036349] = 5, + ACTIONS(4509), 1, + anon_sym_RBRACK, + ACTIONS(24294), 1, + anon_sym_COMMA, + STATE(863), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036366] = 5, + ACTIONS(20722), 1, + anon_sym_RBRACE, + ACTIONS(30509), 1, + anon_sym_COMMA, + STATE(14788), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036383] = 5, + ACTIONS(21195), 1, + anon_sym_RBRACE, + ACTIONS(30511), 1, + anon_sym_COMMA, + STATE(14763), 1, + aux_sym_record_exp_repeat1, + STATE(20390), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036400] = 4, + STATE(15078), 1, + sym_vid, + STATE(15097), 1, + sym_exdesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1036415] = 5, + ACTIONS(7385), 1, + anon_sym_RPAREN, + ACTIONS(25610), 1, + anon_sym_COMMA, + STATE(1823), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036432] = 5, + ACTIONS(7387), 1, + anon_sym_RPAREN, + ACTIONS(25612), 1, + anon_sym_SEMI, + STATE(1824), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036449] = 5, + ACTIONS(4493), 1, + anon_sym_RBRACK, + ACTIONS(30513), 1, + anon_sym_COMMA, + STATE(858), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036466] = 5, + ACTIONS(8579), 1, + anon_sym_RPAREN, + ACTIONS(24370), 1, + anon_sym_COMMA, + STATE(2360), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036483] = 5, + ACTIONS(21000), 1, + anon_sym_RBRACE, + ACTIONS(30515), 1, + anon_sym_COMMA, + STATE(14671), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036500] = 5, + ACTIONS(21000), 1, + anon_sym_RBRACE, + ACTIONS(30515), 1, + anon_sym_COMMA, + STATE(14671), 1, + aux_sym_record_exp_repeat1, + STATE(20230), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036517] = 5, + ACTIONS(8581), 1, + anon_sym_RPAREN, + ACTIONS(24372), 1, + anon_sym_SEMI, + STATE(2361), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036534] = 5, + ACTIONS(23702), 1, + anon_sym_RBRACE, + ACTIONS(30517), 1, + anon_sym_COMMA, + STATE(16337), 1, + aux_sym_record_exp_repeat1, + STATE(20255), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036551] = 5, + ACTIONS(8137), 1, + anon_sym_RPAREN, + ACTIONS(25813), 1, + anon_sym_COMMA, + STATE(2165), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036568] = 5, + ACTIONS(8139), 1, + anon_sym_RPAREN, + ACTIONS(25817), 1, + anon_sym_SEMI, + STATE(2166), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036585] = 5, + ACTIONS(21046), 1, + anon_sym_RBRACE, + ACTIONS(30519), 1, + anon_sym_COMMA, + STATE(14688), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036602] = 5, + ACTIONS(21046), 1, + anon_sym_RBRACE, + ACTIONS(30519), 1, + anon_sym_COMMA, + STATE(14688), 1, + aux_sym_record_exp_repeat1, + STATE(20229), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036619] = 5, + ACTIONS(4285), 1, + anon_sym_RBRACK, + ACTIONS(25618), 1, + anon_sym_COMMA, + STATE(785), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036636] = 5, + ACTIONS(7389), 1, + anon_sym_RBRACK, + ACTIONS(25624), 1, + anon_sym_COMMA, + STATE(1825), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036653] = 5, + ACTIONS(4719), 1, + anon_sym_RBRACK, + ACTIONS(24374), 1, + anon_sym_COMMA, + STATE(935), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036670] = 5, + ACTIONS(7971), 1, + anon_sym_RBRACK, + ACTIONS(24304), 1, + anon_sym_COMMA, + STATE(2103), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036687] = 5, + ACTIONS(8583), 1, + anon_sym_RBRACK, + ACTIONS(24376), 1, + anon_sym_COMMA, + STATE(2362), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036704] = 5, + ACTIONS(20793), 1, + anon_sym_RBRACE, + ACTIONS(30521), 1, + anon_sym_COMMA, + STATE(14538), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036721] = 5, + ACTIONS(7391), 1, + anon_sym_RPAREN, + ACTIONS(30523), 1, + anon_sym_COMMA, + STATE(1827), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036738] = 5, + ACTIONS(7393), 1, + anon_sym_RPAREN, + ACTIONS(30525), 1, + anon_sym_SEMI, + STATE(1828), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036755] = 5, + ACTIONS(30527), 1, + anon_sym_SEMI, + ACTIONS(30529), 1, + anon_sym_end, + STATE(1412), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036772] = 5, + ACTIONS(8585), 1, + anon_sym_RPAREN, + ACTIONS(30531), 1, + anon_sym_COMMA, + STATE(2364), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036789] = 5, + ACTIONS(8587), 1, + anon_sym_RPAREN, + ACTIONS(30533), 1, + anon_sym_SEMI, + STATE(2365), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036806] = 5, + ACTIONS(30535), 1, + anon_sym_SEMI, + ACTIONS(30537), 1, + anon_sym_end, + STATE(1413), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036823] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30539), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036840] = 5, + ACTIONS(28935), 1, + anon_sym_COLON, + ACTIONS(28937), 1, + anon_sym_PIPE, + ACTIONS(28939), 1, + anon_sym_as, + ACTIONS(30541), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036857] = 5, + ACTIONS(21048), 1, + anon_sym_RBRACE, + ACTIONS(30543), 1, + anon_sym_COMMA, + STATE(14691), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036874] = 5, + ACTIONS(21010), 1, + anon_sym_RBRACE, + ACTIONS(30545), 1, + anon_sym_COMMA, + STATE(14673), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036891] = 5, + ACTIONS(30547), 1, + anon_sym_SEMI, + ACTIONS(30549), 1, + anon_sym_end, + STATE(1179), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036908] = 5, + ACTIONS(20793), 1, + anon_sym_RBRACE, + ACTIONS(30521), 1, + anon_sym_COMMA, + STATE(14538), 1, + aux_sym_record_exp_repeat1, + STATE(20288), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036925] = 5, + ACTIONS(30551), 1, + anon_sym_SEMI, + ACTIONS(30553), 1, + anon_sym_end, + STATE(1180), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036942] = 5, + ACTIONS(4721), 1, + anon_sym_RBRACK, + ACTIONS(30555), 1, + anon_sym_COMMA, + STATE(936), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036959] = 5, + ACTIONS(4287), 1, + anon_sym_RBRACK, + ACTIONS(30557), 1, + anon_sym_COMMA, + STATE(786), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036976] = 5, + ACTIONS(14953), 1, + anon_sym_RPAREN, + ACTIONS(30559), 1, + anon_sym_COMMA, + STATE(7956), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1036993] = 5, + ACTIONS(20747), 1, + anon_sym_RBRACE, + ACTIONS(30561), 1, + anon_sym_COMMA, + STATE(14529), 1, + aux_sym_record_exp_repeat1, + STATE(20410), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037010] = 5, + ACTIONS(7395), 1, + anon_sym_RBRACK, + ACTIONS(30563), 1, + anon_sym_COMMA, + STATE(1829), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037027] = 5, + ACTIONS(30565), 1, + anon_sym_SEMI, + ACTIONS(30567), 1, + anon_sym_end, + STATE(1830), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037044] = 5, + ACTIONS(14733), 1, + anon_sym_RBRACK, + ACTIONS(30569), 1, + anon_sym_COMMA, + STATE(5930), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037061] = 5, + ACTIONS(8589), 1, + anon_sym_RBRACK, + ACTIONS(30571), 1, + anon_sym_COMMA, + STATE(2366), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037078] = 5, + ACTIONS(14955), 1, + anon_sym_RPAREN, + ACTIONS(30573), 1, + anon_sym_COMMA, + STATE(7958), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037095] = 3, + STATE(4328), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30575), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1037108] = 5, + ACTIONS(23560), 1, + anon_sym_RBRACE, + ACTIONS(30577), 1, + anon_sym_COMMA, + STATE(16160), 1, + aux_sym_record_exp_repeat1, + STATE(20252), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037125] = 5, + ACTIONS(20722), 1, + anon_sym_RBRACE, + ACTIONS(30509), 1, + anon_sym_COMMA, + STATE(14788), 1, + aux_sym_record_exp_repeat1, + STATE(20764), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037142] = 5, + ACTIONS(30579), 1, + anon_sym_SEMI, + ACTIONS(30581), 1, + anon_sym_end, + STATE(2367), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037159] = 3, + STATE(11072), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30583), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1037172] = 5, + ACTIONS(7933), 1, + anon_sym_RBRACK, + ACTIONS(30585), 1, + anon_sym_COMMA, + STATE(2086), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037189] = 5, + ACTIONS(22416), 1, + anon_sym_RBRACE, + ACTIONS(30587), 1, + anon_sym_COMMA, + STATE(15499), 1, + aux_sym_record_exp_repeat1, + STATE(20266), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037206] = 5, + ACTIONS(30589), 1, + anon_sym_SEMI, + ACTIONS(30591), 1, + anon_sym_end, + STATE(1832), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037223] = 5, + ACTIONS(30593), 1, + anon_sym_SEMI, + ACTIONS(30595), 1, + anon_sym_end, + STATE(1833), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037240] = 5, + ACTIONS(23615), 1, + anon_sym_RBRACE, + ACTIONS(30597), 1, + anon_sym_COMMA, + STATE(16165), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037257] = 5, + ACTIONS(23615), 1, + anon_sym_RBRACE, + ACTIONS(30597), 1, + anon_sym_COMMA, + STATE(16165), 1, + aux_sym_record_exp_repeat1, + STATE(20258), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037274] = 5, + ACTIONS(4563), 1, + anon_sym_RBRACK, + ACTIONS(25836), 1, + anon_sym_COMMA, + STATE(881), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037291] = 5, + ACTIONS(23952), 1, + anon_sym_RBRACE, + ACTIONS(30599), 1, + anon_sym_COMMA, + STATE(16306), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037308] = 3, + ACTIONS(30601), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 3, + anon_sym_EQ, + anon_sym_and, + anon_sym_where, + [1037321] = 5, + ACTIONS(30603), 1, + anon_sym_SEMI, + ACTIONS(30605), 1, + anon_sym_end, + STATE(1835), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037338] = 5, + ACTIONS(23624), 1, + anon_sym_RBRACE, + ACTIONS(30607), 1, + anon_sym_COMMA, + STATE(16166), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037355] = 5, + ACTIONS(30609), 1, + anon_sym_SEMI, + ACTIONS(30611), 1, + anon_sym_end, + STATE(2370), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037372] = 5, + ACTIONS(14967), 1, + anon_sym_RPAREN, + ACTIONS(26780), 1, + anon_sym_COMMA, + STATE(7507), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037389] = 5, + ACTIONS(23174), 1, + anon_sym_RBRACE, + ACTIONS(30613), 1, + anon_sym_COMMA, + STATE(15679), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037406] = 5, + ACTIONS(30615), 1, + anon_sym_SEMI, + ACTIONS(30617), 1, + anon_sym_end, + STATE(2371), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037423] = 5, + ACTIONS(23952), 1, + anon_sym_RBRACE, + ACTIONS(30599), 1, + anon_sym_COMMA, + STATE(16306), 1, + aux_sym_record_exp_repeat1, + STATE(20286), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037440] = 5, + ACTIONS(8141), 1, + anon_sym_RBRACK, + ACTIONS(25849), 1, + anon_sym_COMMA, + STATE(2168), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037457] = 5, + ACTIONS(21615), 1, + anon_sym_RBRACE, + ACTIONS(30619), 1, + anon_sym_COMMA, + STATE(14956), 1, + aux_sym_record_exp_repeat1, + STATE(20307), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037474] = 5, + ACTIONS(22434), 1, + anon_sym_RBRACE, + ACTIONS(30621), 1, + anon_sym_COMMA, + STATE(15502), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037491] = 5, + ACTIONS(22434), 1, + anon_sym_RBRACE, + ACTIONS(30621), 1, + anon_sym_COMMA, + STATE(15502), 1, + aux_sym_record_exp_repeat1, + STATE(20273), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037508] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30623), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037525] = 5, + ACTIONS(28935), 1, + anon_sym_COLON, + ACTIONS(28937), 1, + anon_sym_PIPE, + ACTIONS(28939), 1, + anon_sym_as, + ACTIONS(30625), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037542] = 5, + ACTIONS(30627), 1, + anon_sym_SEMI, + ACTIONS(30629), 1, + anon_sym_end, + STATE(1182), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037559] = 5, + ACTIONS(30631), 1, + anon_sym_SEMI, + ACTIONS(30633), 1, + anon_sym_end, + STATE(2373), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037576] = 5, + ACTIONS(20581), 1, + anon_sym_RBRACE, + ACTIONS(30635), 1, + anon_sym_COMMA, + STATE(14465), 1, + aux_sym_record_exp_repeat1, + STATE(20315), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037593] = 5, + ACTIONS(22440), 1, + anon_sym_RBRACE, + ACTIONS(30637), 1, + anon_sym_COMMA, + STATE(15503), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037610] = 5, + ACTIONS(30639), 1, + anon_sym_SEMI, + ACTIONS(30641), 1, + anon_sym_end, + STATE(1367), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037627] = 5, + ACTIONS(22523), 1, + anon_sym_RBRACE, + ACTIONS(30643), 1, + anon_sym_COMMA, + STATE(15542), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037644] = 3, + STATE(6021), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30645), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1037657] = 5, + ACTIONS(30647), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(30650), 1, + sym__symbolic_ident, + STATE(20277), 1, + aux_sym_longvid_repeat1, + STATE(24934), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037674] = 5, + ACTIONS(30652), 1, + anon_sym_SEMI, + ACTIONS(30654), 1, + anon_sym_end, + STATE(2087), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037691] = 5, + ACTIONS(30656), 1, + anon_sym_SEMI, + ACTIONS(30658), 1, + anon_sym_end, + STATE(1368), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037708] = 5, + ACTIONS(21054), 1, + anon_sym_RBRACE, + ACTIONS(30660), 1, + anon_sym_COMMA, + STATE(14695), 1, + aux_sym_record_exp_repeat1, + STATE(20301), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037725] = 5, + ACTIONS(23174), 1, + anon_sym_RBRACE, + ACTIONS(30613), 1, + anon_sym_COMMA, + STATE(15679), 1, + aux_sym_record_exp_repeat1, + STATE(20413), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037742] = 5, + ACTIONS(7973), 1, + anon_sym_RPAREN, + ACTIONS(30662), 1, + anon_sym_COMMA, + STATE(2105), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037759] = 5, + ACTIONS(7975), 1, + anon_sym_RPAREN, + ACTIONS(30664), 1, + anon_sym_SEMI, + STATE(2106), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037776] = 5, + ACTIONS(8143), 1, + anon_sym_RPAREN, + ACTIONS(30666), 1, + anon_sym_COMMA, + STATE(2170), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037793] = 5, + ACTIONS(8145), 1, + anon_sym_RPAREN, + ACTIONS(30668), 1, + anon_sym_SEMI, + STATE(2171), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037810] = 5, + ACTIONS(23888), 1, + anon_sym_RBRACE, + ACTIONS(30670), 1, + anon_sym_COMMA, + STATE(16320), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037827] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30672), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037844] = 5, + ACTIONS(20795), 1, + anon_sym_RBRACE, + ACTIONS(30674), 1, + anon_sym_COMMA, + STATE(14539), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037861] = 3, + STATE(6321), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30676), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1037874] = 5, + ACTIONS(6989), 1, + anon_sym_RPAREN, + ACTIONS(24402), 1, + anon_sym_COMMA, + STATE(1634), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037891] = 3, + STATE(11559), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30678), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1037904] = 5, + ACTIONS(6991), 1, + anon_sym_RPAREN, + ACTIONS(24404), 1, + anon_sym_SEMI, + STATE(1635), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037921] = 5, + ACTIONS(4565), 1, + anon_sym_RBRACK, + ACTIONS(30680), 1, + anon_sym_COMMA, + STATE(882), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037938] = 5, + ACTIONS(20720), 1, + anon_sym_RBRACE, + ACTIONS(30682), 1, + anon_sym_COMMA, + STATE(14510), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037955] = 5, + ACTIONS(21068), 1, + anon_sym_RBRACE, + ACTIONS(30684), 1, + anon_sym_COMMA, + STATE(14701), 1, + aux_sym_record_exp_repeat1, + STATE(20314), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037972] = 5, + ACTIONS(7427), 1, + anon_sym_RPAREN, + ACTIONS(25689), 1, + anon_sym_COMMA, + STATE(1843), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1037989] = 5, + ACTIONS(3871), 1, + anon_sym_RBRACK, + ACTIONS(25765), 1, + anon_sym_COMMA, + STATE(647), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038006] = 5, + ACTIONS(7429), 1, + anon_sym_RPAREN, + ACTIONS(25691), 1, + anon_sym_SEMI, + STATE(1844), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038023] = 5, + ACTIONS(8185), 1, + anon_sym_RBRACK, + ACTIONS(30686), 1, + anon_sym_COMMA, + STATE(2172), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038040] = 5, + ACTIONS(6637), 1, + anon_sym_RPAREN, + ACTIONS(25701), 1, + anon_sym_COMMA, + STATE(1466), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038057] = 5, + ACTIONS(21058), 1, + anon_sym_RBRACE, + ACTIONS(30688), 1, + anon_sym_COMMA, + STATE(14700), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038074] = 5, + ACTIONS(21058), 1, + anon_sym_RBRACE, + ACTIONS(30688), 1, + anon_sym_COMMA, + STATE(14700), 1, + aux_sym_record_exp_repeat1, + STATE(20323), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038091] = 5, + ACTIONS(4303), 1, + anon_sym_RBRACK, + ACTIONS(25693), 1, + anon_sym_COMMA, + STATE(791), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038108] = 5, + ACTIONS(6639), 1, + anon_sym_RPAREN, + ACTIONS(25705), 1, + anon_sym_SEMI, + STATE(1467), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038125] = 5, + ACTIONS(7431), 1, + anon_sym_RBRACK, + ACTIONS(25695), 1, + anon_sym_COMMA, + STATE(1845), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038142] = 5, + ACTIONS(30690), 1, + anon_sym_SEMI, + ACTIONS(30692), 1, + anon_sym_end, + STATE(2173), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038159] = 5, + ACTIONS(21638), 1, + anon_sym_RBRACE, + ACTIONS(30694), 1, + anon_sym_COMMA, + STATE(14722), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038176] = 5, + ACTIONS(20673), 1, + anon_sym_RBRACE, + ACTIONS(30696), 1, + anon_sym_COMMA, + STATE(14491), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038193] = 5, + ACTIONS(21638), 1, + anon_sym_RBRACE, + ACTIONS(30694), 1, + anon_sym_COMMA, + STATE(14722), 1, + aux_sym_record_exp_repeat1, + STATE(20371), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038210] = 5, + ACTIONS(8623), 1, + anon_sym_RPAREN, + ACTIONS(24410), 1, + anon_sym_COMMA, + STATE(2381), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038227] = 5, + ACTIONS(8625), 1, + anon_sym_RPAREN, + ACTIONS(24412), 1, + anon_sym_SEMI, + STATE(2382), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038244] = 5, + ACTIONS(22914), 1, + anon_sym_RBRACE, + ACTIONS(30698), 1, + anon_sym_COMMA, + STATE(15799), 1, + aux_sym_record_exp_repeat1, + STATE(20370), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038261] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30700), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038278] = 5, + ACTIONS(21072), 1, + anon_sym_RBRACE, + ACTIONS(30702), 1, + anon_sym_COMMA, + STATE(14703), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038295] = 5, + ACTIONS(20627), 1, + anon_sym_RBRACE, + ACTIONS(30704), 1, + anon_sym_COMMA, + STATE(14479), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038312] = 5, + ACTIONS(7433), 1, + anon_sym_RPAREN, + ACTIONS(30706), 1, + anon_sym_COMMA, + STATE(1847), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038329] = 5, + ACTIONS(21072), 1, + anon_sym_RBRACE, + ACTIONS(30702), 1, + anon_sym_COMMA, + STATE(14703), 1, + aux_sym_record_exp_repeat1, + STATE(20334), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038346] = 5, + ACTIONS(7435), 1, + anon_sym_RPAREN, + ACTIONS(30708), 1, + anon_sym_SEMI, + STATE(1848), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038363] = 5, + ACTIONS(14831), 1, + anon_sym_RPAREN, + ACTIONS(30710), 1, + anon_sym_COMMA, + STATE(7560), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038380] = 5, + ACTIONS(4123), 1, + anon_sym_RBRACK, + ACTIONS(24422), 1, + anon_sym_COMMA, + STATE(731), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038397] = 5, + ACTIONS(4737), 1, + anon_sym_RBRACK, + ACTIONS(24414), 1, + anon_sym_COMMA, + STATE(941), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038414] = 5, + ACTIONS(20627), 1, + anon_sym_RBRACE, + ACTIONS(30704), 1, + anon_sym_COMMA, + STATE(14479), 1, + aux_sym_record_exp_repeat1, + STATE(20369), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038431] = 5, + ACTIONS(21070), 1, + anon_sym_RBRACE, + ACTIONS(30712), 1, + anon_sym_COMMA, + STATE(14702), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038448] = 5, + ACTIONS(4511), 1, + anon_sym_RBRACK, + ACTIONS(30714), 1, + anon_sym_COMMA, + STATE(864), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038465] = 5, + ACTIONS(4305), 1, + anon_sym_RBRACK, + ACTIONS(30716), 1, + anon_sym_COMMA, + STATE(792), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038482] = 5, + ACTIONS(8627), 1, + anon_sym_RBRACK, + ACTIONS(24416), 1, + anon_sym_COMMA, + STATE(2383), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038499] = 5, + ACTIONS(7437), 1, + anon_sym_RBRACK, + ACTIONS(30718), 1, + anon_sym_COMMA, + STATE(1849), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038516] = 5, + ACTIONS(30720), 1, + anon_sym_SEMI, + ACTIONS(30722), 1, + anon_sym_end, + STATE(1850), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038533] = 5, + ACTIONS(22490), 1, + anon_sym_RBRACE, + ACTIONS(30724), 1, + anon_sym_COMMA, + STATE(15541), 1, + aux_sym_record_exp_repeat1, + STATE(20344), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038550] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16920), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(10656), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1038563] = 5, + ACTIONS(28891), 1, + sym__alphaAlphaNumeric_ident, + STATE(8735), 1, + sym_strid, + STATE(14904), 1, + sym_longstrid, + STATE(23886), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038580] = 5, + ACTIONS(8629), 1, + anon_sym_RPAREN, + ACTIONS(30726), 1, + anon_sym_COMMA, + STATE(2385), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038597] = 5, + ACTIONS(8631), 1, + anon_sym_RPAREN, + ACTIONS(30728), 1, + anon_sym_SEMI, + STATE(2386), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038614] = 5, + ACTIONS(21076), 1, + anon_sym_RBRACE, + ACTIONS(30730), 1, + anon_sym_COMMA, + STATE(14706), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038631] = 5, + ACTIONS(3979), 1, + anon_sym_RBRACK, + ACTIONS(25735), 1, + anon_sym_COMMA, + STATE(683), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038648] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30732), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038665] = 5, + ACTIONS(6993), 1, + anon_sym_RBRACK, + ACTIONS(24424), 1, + anon_sym_COMMA, + STATE(1636), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038682] = 5, + ACTIONS(4739), 1, + anon_sym_RBRACK, + ACTIONS(30734), 1, + anon_sym_COMMA, + STATE(942), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038699] = 5, + ACTIONS(8633), 1, + anon_sym_RBRACK, + ACTIONS(30736), 1, + anon_sym_COMMA, + STATE(2387), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038716] = 5, + ACTIONS(30738), 1, + anon_sym_SEMI, + ACTIONS(30740), 1, + anon_sym_end, + STATE(1853), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038733] = 5, + ACTIONS(6641), 1, + anon_sym_RBRACK, + ACTIONS(25741), 1, + anon_sym_COMMA, + STATE(1468), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038750] = 5, + ACTIONS(30742), 1, + anon_sym_SEMI, + ACTIONS(30744), 1, + anon_sym_end, + STATE(1854), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038767] = 5, + ACTIONS(30746), 1, + anon_sym_SEMI, + ACTIONS(30748), 1, + anon_sym_end, + STATE(2388), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038784] = 5, + ACTIONS(22529), 1, + anon_sym_RBRACE, + ACTIONS(30750), 1, + anon_sym_COMMA, + STATE(15547), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038801] = 5, + ACTIONS(22529), 1, + anon_sym_RBRACE, + ACTIONS(30750), 1, + anon_sym_COMMA, + STATE(15547), 1, + aux_sym_record_exp_repeat1, + STATE(20350), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038818] = 5, + ACTIONS(6857), 1, + anon_sym_RPAREN, + ACTIONS(25915), 1, + anon_sym_COMMA, + STATE(1571), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038835] = 5, + ACTIONS(23732), 1, + anon_sym_RBRACE, + ACTIONS(30752), 1, + anon_sym_COMMA, + STATE(15801), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038852] = 5, + ACTIONS(30754), 1, + anon_sym_SEMI, + ACTIONS(30756), 1, + anon_sym_end, + STATE(1856), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038869] = 5, + ACTIONS(22519), 1, + anon_sym_RBRACE, + ACTIONS(30758), 1, + anon_sym_COMMA, + STATE(15544), 1, + aux_sym_record_exp_repeat1, + STATE(20365), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038886] = 5, + ACTIONS(22553), 1, + anon_sym_RBRACE, + ACTIONS(30760), 1, + anon_sym_COMMA, + STATE(15550), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038903] = 5, + ACTIONS(6859), 1, + anon_sym_RPAREN, + ACTIONS(25925), 1, + anon_sym_SEMI, + STATE(1572), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038920] = 4, + ACTIONS(30762), 1, + anon_sym_STAR, + STATE(21063), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15932), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + [1038935] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30764), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038952] = 5, + ACTIONS(30766), 1, + anon_sym_SEMI, + ACTIONS(30768), 1, + anon_sym_end, + STATE(2176), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038969] = 5, + ACTIONS(7977), 1, + anon_sym_RBRACK, + ACTIONS(30770), 1, + anon_sym_COMMA, + STATE(2107), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1038986] = 5, + ACTIONS(30772), 1, + anon_sym_SEMI, + ACTIONS(30774), 1, + anon_sym_end, + STATE(2177), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039003] = 5, + ACTIONS(23382), 1, + anon_sym_RBRACE, + ACTIONS(30776), 1, + anon_sym_COMMA, + STATE(16081), 1, + aux_sym_record_exp_repeat1, + STATE(20841), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039020] = 5, + ACTIONS(30778), 1, + anon_sym_SEMI, + ACTIONS(30780), 1, + anon_sym_end, + STATE(2391), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039037] = 5, + ACTIONS(6995), 1, + anon_sym_RPAREN, + ACTIONS(30782), 1, + anon_sym_COMMA, + STATE(1638), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039054] = 5, + ACTIONS(30784), 1, + anon_sym_SEMI, + ACTIONS(30786), 1, + anon_sym_end, + STATE(2392), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039071] = 5, + ACTIONS(30788), 1, + anon_sym_SEMI, + ACTIONS(30790), 1, + anon_sym_end, + STATE(2108), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039088] = 5, + ACTIONS(23732), 1, + anon_sym_RBRACE, + ACTIONS(30752), 1, + anon_sym_COMMA, + STATE(15801), 1, + aux_sym_record_exp_repeat1, + STATE(20473), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039105] = 5, + ACTIONS(21086), 1, + anon_sym_RBRACE, + ACTIONS(30792), 1, + anon_sym_COMMA, + STATE(14570), 1, + aux_sym_record_exp_repeat1, + STATE(20410), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039122] = 5, + ACTIONS(6997), 1, + anon_sym_RPAREN, + ACTIONS(30794), 1, + anon_sym_SEMI, + STATE(1639), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039139] = 5, + ACTIONS(22546), 1, + anon_sym_RBRACE, + ACTIONS(30796), 1, + anon_sym_COMMA, + STATE(15551), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039156] = 5, + ACTIONS(22546), 1, + anon_sym_RBRACE, + ACTIONS(30796), 1, + anon_sym_COMMA, + STATE(15551), 1, + aux_sym_record_exp_repeat1, + STATE(20373), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039173] = 5, + ACTIONS(6643), 1, + anon_sym_RPAREN, + ACTIONS(30798), 1, + anon_sym_COMMA, + STATE(1470), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039190] = 5, + ACTIONS(6645), 1, + anon_sym_RPAREN, + ACTIONS(30800), 1, + anon_sym_SEMI, + STATE(1471), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039207] = 5, + ACTIONS(20651), 1, + anon_sym_RBRACE, + ACTIONS(30802), 1, + anon_sym_COMMA, + STATE(14486), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039224] = 5, + ACTIONS(23038), 1, + anon_sym_RBRACE, + ACTIONS(30804), 1, + anon_sym_COMMA, + STATE(15823), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039241] = 5, + ACTIONS(21124), 1, + anon_sym_RBRACE, + ACTIONS(30806), 1, + anon_sym_COMMA, + STATE(14395), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039258] = 5, + ACTIONS(30808), 1, + anon_sym_SEMI, + ACTIONS(30810), 1, + anon_sym_end, + STATE(2394), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039275] = 5, + ACTIONS(22559), 1, + anon_sym_RBRACE, + ACTIONS(30812), 1, + anon_sym_COMMA, + STATE(15555), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039292] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30814), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039309] = 5, + ACTIONS(23038), 1, + anon_sym_RBRACE, + ACTIONS(30804), 1, + anon_sym_COMMA, + STATE(15823), 1, + aux_sym_record_exp_repeat1, + STATE(20398), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039326] = 3, + STATE(11818), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30816), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1039339] = 5, + ACTIONS(4125), 1, + anon_sym_RBRACK, + ACTIONS(30818), 1, + anon_sym_COMMA, + STATE(732), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039356] = 5, + ACTIONS(23940), 1, + anon_sym_RBRACE, + ACTIONS(29506), 1, + anon_sym_COMMA, + STATE(16052), 1, + aux_sym_record_exp_repeat1, + STATE(20571), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039373] = 5, + ACTIONS(6999), 1, + anon_sym_RBRACK, + ACTIONS(30820), 1, + anon_sym_COMMA, + STATE(1640), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039390] = 5, + ACTIONS(3981), 1, + anon_sym_RBRACK, + ACTIONS(30822), 1, + anon_sym_COMMA, + STATE(684), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039407] = 5, + ACTIONS(21116), 1, + anon_sym_RBRACE, + ACTIONS(30824), 1, + anon_sym_COMMA, + STATE(14724), 1, + aux_sym_record_exp_repeat1, + STATE(20399), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039424] = 4, + ACTIONS(27499), 1, + anon_sym_u2227, + STATE(21205), 1, + aux_sym_hol_fn_spec_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30826), 2, + anon_sym_End, + anon_sym_Termination, + [1039439] = 5, + ACTIONS(6647), 1, + anon_sym_RBRACK, + ACTIONS(30828), 1, + anon_sym_COMMA, + STATE(1472), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039456] = 5, + ACTIONS(30830), 1, + anon_sym_SEMI, + ACTIONS(30832), 1, + anon_sym_end, + STATE(1641), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039473] = 5, + ACTIONS(30834), 1, + anon_sym_SEMI, + ACTIONS(30836), 1, + anon_sym_end, + STATE(1473), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039490] = 5, + ACTIONS(23416), 1, + anon_sym_RBRACE, + ACTIONS(30838), 1, + anon_sym_COMMA, + STATE(15662), 1, + aux_sym_record_exp_repeat1, + STATE(20426), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039507] = 3, + STATE(6377), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30840), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1039520] = 5, + ACTIONS(30842), 1, + anon_sym_SEMI, + ACTIONS(30844), 1, + anon_sym_end, + STATE(1415), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039537] = 3, + STATE(5311), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30846), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1039550] = 5, + ACTIONS(21217), 1, + anon_sym_RBRACE, + ACTIONS(30848), 1, + anon_sym_COMMA, + STATE(14785), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039567] = 5, + ACTIONS(21114), 1, + anon_sym_RBRACE, + ACTIONS(30850), 1, + anon_sym_COMMA, + STATE(14720), 1, + aux_sym_record_exp_repeat1, + STATE(20407), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039584] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30852), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039601] = 5, + ACTIONS(30854), 1, + anon_sym_SEMI, + ACTIONS(30856), 1, + anon_sym_end, + STATE(2179), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039618] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20057), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13637), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1039631] = 5, + ACTIONS(7475), 1, + anon_sym_RPAREN, + ACTIONS(25781), 1, + anon_sym_COMMA, + STATE(1866), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039648] = 5, + ACTIONS(21217), 1, + anon_sym_RBRACE, + ACTIONS(30848), 1, + anon_sym_COMMA, + STATE(14785), 1, + aux_sym_record_exp_repeat1, + STATE(20544), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039665] = 5, + ACTIONS(7477), 1, + anon_sym_RPAREN, + ACTIONS(25783), 1, + anon_sym_SEMI, + STATE(1867), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039682] = 5, + ACTIONS(23068), 1, + anon_sym_RBRACE, + ACTIONS(30858), 1, + anon_sym_COMMA, + STATE(15827), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039699] = 5, + ACTIONS(21128), 1, + anon_sym_RBRACE, + ACTIONS(30860), 1, + anon_sym_COMMA, + STATE(14728), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039716] = 3, + ACTIONS(30862), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 3, + anon_sym_RPAREN, + anon_sym_and, + anon_sym_where, + [1039729] = 5, + ACTIONS(21128), 1, + anon_sym_RBRACE, + ACTIONS(30860), 1, + anon_sym_COMMA, + STATE(14728), 1, + aux_sym_record_exp_repeat1, + STATE(20423), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039746] = 5, + ACTIONS(8667), 1, + anon_sym_RPAREN, + ACTIONS(24458), 1, + anon_sym_COMMA, + STATE(2402), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039763] = 5, + ACTIONS(23236), 1, + anon_sym_RBRACE, + ACTIONS(30864), 1, + anon_sym_COMMA, + STATE(16061), 1, + aux_sym_record_exp_repeat1, + STATE(20464), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039780] = 5, + ACTIONS(4321), 1, + anon_sym_RBRACK, + ACTIONS(25785), 1, + anon_sym_COMMA, + STATE(797), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039797] = 5, + ACTIONS(8669), 1, + anon_sym_RPAREN, + ACTIONS(24460), 1, + anon_sym_SEMI, + STATE(2403), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039814] = 4, + ACTIONS(27501), 1, + anon_sym_SLASH_BSLASH, + STATE(21218), 1, + aux_sym_hol_fn_spec_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30826), 2, + anon_sym_End, + anon_sym_Termination, + [1039829] = 5, + ACTIONS(21120), 1, + anon_sym_RBRACE, + ACTIONS(30866), 1, + anon_sym_COMMA, + STATE(14972), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039846] = 5, + ACTIONS(7479), 1, + anon_sym_RBRACK, + ACTIONS(25791), 1, + anon_sym_COMMA, + STATE(1868), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039863] = 5, + ACTIONS(21120), 1, + anon_sym_RBRACE, + ACTIONS(30866), 1, + anon_sym_COMMA, + STATE(14972), 1, + aux_sym_record_exp_repeat1, + STATE(20424), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039880] = 5, + ACTIONS(30868), 1, + anon_sym_COMMA, + ACTIONS(30871), 1, + anon_sym_RBRACE, + STATE(15862), 1, + aux_sym_record_exp_repeat1, + STATE(20410), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039897] = 5, + ACTIONS(20874), 1, + anon_sym_RBRACE, + ACTIONS(30873), 1, + anon_sym_COMMA, + STATE(14586), 1, + aux_sym_record_exp_repeat1, + STATE(20448), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039914] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30875), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039931] = 5, + ACTIONS(22808), 1, + anon_sym_RBRACE, + ACTIONS(30877), 1, + anon_sym_COMMA, + STATE(15696), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039948] = 5, + ACTIONS(4755), 1, + anon_sym_RBRACK, + ACTIONS(24462), 1, + anon_sym_COMMA, + STATE(947), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039965] = 5, + ACTIONS(8671), 1, + anon_sym_RBRACK, + ACTIONS(24464), 1, + anon_sym_COMMA, + STATE(2404), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039982] = 5, + ACTIONS(20859), 1, + anon_sym_RBRACE, + ACTIONS(30879), 1, + anon_sym_COMMA, + STATE(14866), 1, + aux_sym_record_exp_repeat1, + STATE(20410), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1039999] = 5, + ACTIONS(7481), 1, + anon_sym_RPAREN, + ACTIONS(30881), 1, + anon_sym_COMMA, + STATE(1870), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040016] = 5, + ACTIONS(7483), 1, + anon_sym_RPAREN, + ACTIONS(30883), 1, + anon_sym_SEMI, + STATE(1871), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040033] = 5, + ACTIONS(30885), 1, + anon_sym_SEMI, + ACTIONS(30887), 1, + anon_sym_end, + STATE(1644), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040050] = 5, + ACTIONS(30889), 1, + anon_sym_SEMI, + ACTIONS(30891), 1, + anon_sym_end, + STATE(1645), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040067] = 5, + ACTIONS(8673), 1, + anon_sym_RPAREN, + ACTIONS(30893), 1, + anon_sym_COMMA, + STATE(2406), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040084] = 5, + ACTIONS(8675), 1, + anon_sym_RPAREN, + ACTIONS(30895), 1, + anon_sym_SEMI, + STATE(2407), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040101] = 5, + ACTIONS(21136), 1, + anon_sym_RBRACE, + ACTIONS(30897), 1, + anon_sym_COMMA, + STATE(14738), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040118] = 5, + ACTIONS(21665), 1, + anon_sym_RBRACE, + ACTIONS(30899), 1, + anon_sym_COMMA, + STATE(14725), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040135] = 5, + ACTIONS(4757), 1, + anon_sym_RBRACK, + ACTIONS(30901), 1, + anon_sym_COMMA, + STATE(948), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040152] = 5, + ACTIONS(22778), 1, + anon_sym_RBRACE, + ACTIONS(30903), 1, + anon_sym_COMMA, + STATE(15781), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040169] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30905), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040186] = 5, + ACTIONS(8677), 1, + anon_sym_RBRACK, + ACTIONS(30907), 1, + anon_sym_COMMA, + STATE(2408), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040203] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20057), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13642), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1040216] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20057), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13644), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1040229] = 5, + ACTIONS(30909), 1, + anon_sym_SEMI, + ACTIONS(30911), 1, + anon_sym_end, + STATE(2409), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040246] = 5, + ACTIONS(4323), 1, + anon_sym_RBRACK, + ACTIONS(30913), 1, + anon_sym_COMMA, + STATE(798), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040263] = 5, + ACTIONS(5959), 1, + anon_sym_RBRACK, + ACTIONS(26212), 1, + anon_sym_COMMA, + STATE(1407), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040280] = 5, + ACTIONS(14765), 1, + anon_sym_RBRACK, + ACTIONS(30915), 1, + anon_sym_COMMA, + STATE(5992), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040297] = 5, + ACTIONS(7485), 1, + anon_sym_RBRACK, + ACTIONS(30917), 1, + anon_sym_COMMA, + STATE(1873), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040314] = 5, + ACTIONS(30919), 1, + anon_sym_SEMI, + ACTIONS(30921), 1, + anon_sym_end, + STATE(1874), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040331] = 5, + ACTIONS(22650), 1, + anon_sym_RBRACE, + ACTIONS(30923), 1, + anon_sym_COMMA, + STATE(15609), 1, + aux_sym_record_exp_repeat1, + STATE(20450), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040348] = 5, + ACTIONS(22778), 1, + anon_sym_RBRACE, + ACTIONS(30903), 1, + anon_sym_COMMA, + STATE(15781), 1, + aux_sym_record_exp_repeat1, + STATE(20468), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040365] = 5, + ACTIONS(22720), 1, + anon_sym_RBRACE, + ACTIONS(30925), 1, + anon_sym_COMMA, + STATE(15668), 1, + aux_sym_record_exp_repeat1, + STATE(20456), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040382] = 5, + ACTIONS(6369), 1, + anon_sym_RBRACK, + ACTIONS(25844), 1, + anon_sym_COMMA, + STATE(1338), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040399] = 5, + ACTIONS(6059), 1, + anon_sym_RPAREN, + ACTIONS(25819), 1, + anon_sym_COMMA, + STATE(1190), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040416] = 5, + ACTIONS(30927), 1, + anon_sym_SEMI, + ACTIONS(30929), 1, + anon_sym_end, + STATE(1370), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040433] = 5, + ACTIONS(6061), 1, + anon_sym_RPAREN, + ACTIONS(25821), 1, + anon_sym_SEMI, + STATE(1191), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040450] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30931), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040467] = 5, + ACTIONS(30933), 1, + anon_sym_SEMI, + ACTIONS(30935), 1, + anon_sym_end, + STATE(2412), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040484] = 5, + ACTIONS(30937), 1, + anon_sym_SEMI, + ACTIONS(30939), 1, + anon_sym_end, + STATE(2413), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040501] = 5, + ACTIONS(4069), 1, + anon_sym_RBRACK, + ACTIONS(25952), 1, + anon_sym_COMMA, + STATE(713), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040518] = 5, + ACTIONS(20898), 1, + anon_sym_RBRACE, + ACTIONS(30941), 1, + anon_sym_COMMA, + STATE(14624), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040535] = 5, + ACTIONS(30943), 1, + anon_sym_SEMI, + ACTIONS(30945), 1, + anon_sym_end, + STATE(1476), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040552] = 5, + ACTIONS(22677), 1, + anon_sym_RBRACE, + ACTIONS(30947), 1, + anon_sym_COMMA, + STATE(15615), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040569] = 5, + ACTIONS(30949), 1, + anon_sym_SEMI, + ACTIONS(30951), 1, + anon_sym_end, + STATE(1477), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040586] = 5, + ACTIONS(22677), 1, + anon_sym_RBRACE, + ACTIONS(30947), 1, + anon_sym_COMMA, + STATE(15615), 1, + aux_sym_record_exp_repeat1, + STATE(20463), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040603] = 5, + ACTIONS(30953), 1, + anon_sym_SEMI, + ACTIONS(30955), 1, + anon_sym_end, + STATE(1877), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040620] = 5, + ACTIONS(28624), 1, + sym__alphaAlphaNumeric_ident, + STATE(14049), 1, + sym__strbind, + STATE(14121), 1, + sym_strbind, + STATE(24726), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040637] = 5, + ACTIONS(20898), 1, + anon_sym_RBRACE, + ACTIONS(30941), 1, + anon_sym_COMMA, + STATE(14624), 1, + aux_sym_record_exp_repeat1, + STATE(20507), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040654] = 5, + ACTIONS(22786), 1, + anon_sym_RBRACE, + ACTIONS(30957), 1, + anon_sym_COMMA, + STATE(15676), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040671] = 5, + ACTIONS(22786), 1, + anon_sym_RBRACE, + ACTIONS(30957), 1, + anon_sym_COMMA, + STATE(15676), 1, + aux_sym_record_exp_repeat1, + STATE(20467), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040688] = 5, + ACTIONS(3745), 1, + anon_sym_RBRACK, + ACTIONS(25834), 1, + anon_sym_COMMA, + STATE(605), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040705] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30959), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040722] = 5, + ACTIONS(30961), 1, + anon_sym_SEMI, + ACTIONS(30963), 1, + anon_sym_end, + STATE(1647), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040739] = 5, + ACTIONS(30965), 1, + anon_sym_SEMI, + ACTIONS(30967), 1, + anon_sym_end, + STATE(2415), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040756] = 5, + ACTIONS(6063), 1, + anon_sym_RBRACK, + ACTIONS(25838), 1, + anon_sym_COMMA, + STATE(1192), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040773] = 5, + ACTIONS(22688), 1, + anon_sym_RBRACE, + ACTIONS(30969), 1, + anon_sym_COMMA, + STATE(15618), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040790] = 5, + ACTIONS(23430), 1, + anon_sym_RBRACE, + ACTIONS(30971), 1, + anon_sym_COMMA, + STATE(16115), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040807] = 5, + ACTIONS(21086), 1, + anon_sym_RBRACE, + ACTIONS(30792), 1, + anon_sym_COMMA, + STATE(14570), 1, + aux_sym_record_exp_repeat1, + STATE(20416), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040824] = 5, + ACTIONS(30973), 1, + anon_sym_SEMI, + ACTIONS(30975), 1, + anon_sym_end, + STATE(1880), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040841] = 5, + ACTIONS(22802), 1, + anon_sym_RBRACE, + ACTIONS(30977), 1, + anon_sym_COMMA, + STATE(15678), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040858] = 5, + ACTIONS(23002), 1, + anon_sym_RBRACE, + ACTIONS(30979), 1, + anon_sym_COMMA, + STATE(15835), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040875] = 5, + ACTIONS(23430), 1, + anon_sym_RBRACE, + ACTIONS(30971), 1, + anon_sym_COMMA, + STATE(16115), 1, + aux_sym_record_exp_repeat1, + STATE(20490), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040892] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30981), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040909] = 5, + ACTIONS(20908), 1, + anon_sym_RBRACE, + ACTIONS(30983), 1, + anon_sym_COMMA, + STATE(14632), 1, + aux_sym_record_exp_repeat1, + STATE(20529), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040926] = 5, + ACTIONS(23648), 1, + anon_sym_RBRACE, + ACTIONS(30985), 1, + anon_sym_COMMA, + STATE(16185), 1, + aux_sym_record_exp_repeat1, + STATE(20568), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040943] = 5, + ACTIONS(23040), 1, + anon_sym_RBRACE, + ACTIONS(30987), 1, + anon_sym_COMMA, + STATE(15653), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1040960] = 3, + STATE(9324), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30989), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1040973] = 3, + STATE(5756), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30991), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1040986] = 3, + STATE(11404), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30993), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1040999] = 5, + ACTIONS(6861), 1, + anon_sym_RBRACK, + ACTIONS(25954), 1, + anon_sym_COMMA, + STATE(1573), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041016] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(30995), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041033] = 5, + ACTIONS(21148), 1, + anon_sym_RBRACE, + ACTIONS(30997), 1, + anon_sym_COMMA, + STATE(14734), 1, + aux_sym_record_exp_repeat1, + STATE(20487), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041050] = 5, + ACTIONS(30999), 1, + anon_sym_SEMI, + ACTIONS(31001), 1, + anon_sym_end, + STATE(1479), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041067] = 5, + ACTIONS(21215), 1, + anon_sym_RBRACE, + ACTIONS(31003), 1, + anon_sym_COMMA, + STATE(14767), 1, + aux_sym_record_exp_repeat1, + STATE(20496), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041084] = 3, + STATE(10945), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31005), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1041097] = 5, + ACTIONS(8711), 1, + anon_sym_RPAREN, + ACTIONS(24494), 1, + anon_sym_COMMA, + STATE(2423), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041114] = 5, + ACTIONS(20811), 1, + anon_sym_RBRACE, + ACTIONS(31007), 1, + anon_sym_COMMA, + STATE(14551), 1, + aux_sym_record_exp_repeat1, + STATE(20545), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041131] = 5, + ACTIONS(8713), 1, + anon_sym_RPAREN, + ACTIONS(24496), 1, + anon_sym_SEMI, + STATE(2424), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041148] = 5, + ACTIONS(14833), 1, + anon_sym_RPAREN, + ACTIONS(31009), 1, + anon_sym_COMMA, + STATE(7572), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041165] = 5, + ACTIONS(21152), 1, + anon_sym_RBRACE, + ACTIONS(31011), 1, + anon_sym_COMMA, + STATE(14735), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041182] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31013), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041199] = 5, + ACTIONS(21152), 1, + anon_sym_RBRACE, + ACTIONS(31011), 1, + anon_sym_COMMA, + STATE(14735), 1, + aux_sym_record_exp_repeat1, + STATE(20508), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041216] = 5, + ACTIONS(23536), 1, + anon_sym_RBRACE, + ACTIONS(31015), 1, + anon_sym_COMMA, + STATE(16131), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041233] = 5, + ACTIONS(4773), 1, + anon_sym_RBRACK, + ACTIONS(24498), 1, + anon_sym_COMMA, + STATE(953), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041250] = 5, + ACTIONS(7523), 1, + anon_sym_RPAREN, + ACTIONS(25897), 1, + anon_sym_COMMA, + STATE(1889), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041267] = 5, + ACTIONS(14775), 1, + anon_sym_RBRACK, + ACTIONS(26778), 1, + anon_sym_COMMA, + STATE(5972), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041284] = 5, + ACTIONS(7525), 1, + anon_sym_RPAREN, + ACTIONS(25899), 1, + anon_sym_SEMI, + STATE(1890), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041301] = 5, + ACTIONS(23026), 1, + anon_sym_RBRACE, + ACTIONS(31017), 1, + anon_sym_COMMA, + STATE(15493), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041318] = 5, + ACTIONS(21225), 1, + anon_sym_RBRACE, + ACTIONS(31019), 1, + anon_sym_COMMA, + STATE(14770), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041335] = 5, + ACTIONS(21225), 1, + anon_sym_RBRACE, + ACTIONS(31019), 1, + anon_sym_COMMA, + STATE(14770), 1, + aux_sym_record_exp_repeat1, + STATE(20528), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041352] = 5, + ACTIONS(8715), 1, + anon_sym_RBRACK, + ACTIONS(24500), 1, + anon_sym_COMMA, + STATE(2425), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041369] = 5, + ACTIONS(6863), 1, + anon_sym_RPAREN, + ACTIONS(31021), 1, + anon_sym_COMMA, + STATE(1575), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041386] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19975), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13666), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1041399] = 5, + ACTIONS(4339), 1, + anon_sym_RBRACK, + ACTIONS(25907), 1, + anon_sym_COMMA, + STATE(803), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041416] = 5, + ACTIONS(6065), 1, + anon_sym_RPAREN, + ACTIONS(31023), 1, + anon_sym_COMMA, + STATE(1194), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041433] = 5, + ACTIONS(6067), 1, + anon_sym_RPAREN, + ACTIONS(31025), 1, + anon_sym_SEMI, + STATE(1195), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041450] = 5, + ACTIONS(8717), 1, + anon_sym_RPAREN, + ACTIONS(31027), 1, + anon_sym_COMMA, + STATE(2427), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041467] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31029), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041484] = 5, + ACTIONS(8719), 1, + anon_sym_RPAREN, + ACTIONS(31031), 1, + anon_sym_SEMI, + STATE(2428), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041501] = 5, + ACTIONS(20926), 1, + anon_sym_RBRACE, + ACTIONS(31033), 1, + anon_sym_COMMA, + STATE(14643), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041518] = 5, + ACTIONS(21154), 1, + anon_sym_RBRACE, + ACTIONS(31035), 1, + anon_sym_COMMA, + STATE(14736), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041535] = 5, + ACTIONS(7527), 1, + anon_sym_RBRACK, + ACTIONS(25909), 1, + anon_sym_COMMA, + STATE(1891), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041552] = 5, + ACTIONS(28624), 1, + sym__alphaAlphaNumeric_ident, + STATE(14049), 1, + sym__strbind, + STATE(14054), 1, + sym_strbind, + STATE(21594), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041569] = 5, + ACTIONS(5925), 1, + anon_sym_RPAREN, + ACTIONS(26062), 1, + anon_sym_COMMA, + STATE(1395), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041586] = 5, + ACTIONS(14935), 1, + anon_sym_RPAREN, + ACTIONS(26788), 1, + anon_sym_COMMA, + STATE(7508), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041603] = 5, + ACTIONS(4775), 1, + anon_sym_RBRACK, + ACTIONS(31037), 1, + anon_sym_COMMA, + STATE(954), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041620] = 5, + ACTIONS(31039), 1, + anon_sym_SEMI, + ACTIONS(31041), 1, + anon_sym_end, + STATE(2111), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041637] = 5, + ACTIONS(3747), 1, + anon_sym_RBRACK, + ACTIONS(31043), 1, + anon_sym_COMMA, + STATE(606), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041654] = 5, + ACTIONS(8721), 1, + anon_sym_RBRACK, + ACTIONS(31045), 1, + anon_sym_COMMA, + STATE(2429), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041671] = 5, + ACTIONS(6069), 1, + anon_sym_RBRACK, + ACTIONS(31047), 1, + anon_sym_COMMA, + STATE(1196), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041688] = 5, + ACTIONS(6865), 1, + anon_sym_RPAREN, + ACTIONS(31049), 1, + anon_sym_SEMI, + STATE(1576), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041705] = 5, + ACTIONS(31051), 1, + anon_sym_SEMI, + ACTIONS(31053), 1, + anon_sym_end, + STATE(2430), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041722] = 5, + ACTIONS(7529), 1, + anon_sym_RPAREN, + ACTIONS(31055), 1, + anon_sym_COMMA, + STATE(1893), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041739] = 5, + ACTIONS(31057), 1, + anon_sym_SEMI, + ACTIONS(31059), 1, + anon_sym_end, + STATE(1197), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041756] = 5, + ACTIONS(8219), 1, + anon_sym_RPAREN, + ACTIONS(24180), 1, + anon_sym_COMMA, + STATE(2187), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041773] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31061), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041790] = 5, + ACTIONS(22736), 1, + anon_sym_RBRACE, + ACTIONS(31063), 1, + anon_sym_COMMA, + STATE(15647), 1, + aux_sym_record_exp_repeat1, + STATE(20540), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041807] = 5, + ACTIONS(7531), 1, + anon_sym_RPAREN, + ACTIONS(31065), 1, + anon_sym_SEMI, + STATE(1894), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041824] = 5, + ACTIONS(8221), 1, + anon_sym_RPAREN, + ACTIONS(25978), 1, + anon_sym_SEMI, + STATE(2188), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041841] = 5, + ACTIONS(14981), 1, + anon_sym_RPAREN, + ACTIONS(26808), 1, + anon_sym_COMMA, + STATE(7991), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041858] = 5, + ACTIONS(21233), 1, + anon_sym_RBRACE, + ACTIONS(31067), 1, + anon_sym_COMMA, + STATE(14778), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041875] = 5, + ACTIONS(20936), 1, + anon_sym_RBRACE, + ACTIONS(31069), 1, + anon_sym_COMMA, + STATE(14650), 1, + aux_sym_record_exp_repeat1, + STATE(20410), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041892] = 5, + ACTIONS(4341), 1, + anon_sym_RBRACK, + ACTIONS(31071), 1, + anon_sym_COMMA, + STATE(804), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041909] = 5, + ACTIONS(7533), 1, + anon_sym_RBRACK, + ACTIONS(31073), 1, + anon_sym_COMMA, + STATE(1895), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041926] = 5, + ACTIONS(21162), 1, + anon_sym_RBRACE, + ACTIONS(31075), 1, + anon_sym_COMMA, + STATE(14751), 1, + aux_sym_record_exp_repeat1, + STATE(20661), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041943] = 5, + ACTIONS(20936), 1, + anon_sym_RBRACE, + ACTIONS(31069), 1, + anon_sym_COMMA, + STATE(14650), 1, + aux_sym_record_exp_repeat1, + STATE(20573), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041960] = 5, + ACTIONS(31077), 1, + anon_sym_SEMI, + ACTIONS(31079), 1, + anon_sym_end, + STATE(2433), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041977] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31081), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1041994] = 5, + ACTIONS(31083), 1, + anon_sym_SEMI, + ACTIONS(31085), 1, + anon_sym_end, + STATE(2434), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042011] = 5, + ACTIONS(31087), 1, + anon_sym_SEMI, + ACTIONS(31089), 1, + anon_sym_end, + STATE(1896), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042028] = 5, + ACTIONS(14743), 1, + anon_sym_RBRACK, + ACTIONS(26839), 1, + anon_sym_COMMA, + STATE(5935), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042045] = 5, + ACTIONS(31091), 1, + anon_sym_SEMI, + ACTIONS(31093), 1, + anon_sym_end, + STATE(2112), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042062] = 5, + ACTIONS(22752), 1, + anon_sym_RBRACE, + ACTIONS(31095), 1, + anon_sym_COMMA, + STATE(15649), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042079] = 5, + ACTIONS(22962), 1, + anon_sym_RBRACE, + ACTIONS(31097), 1, + anon_sym_COMMA, + STATE(15782), 1, + aux_sym_record_exp_repeat1, + STATE(20553), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042096] = 5, + ACTIONS(14983), 1, + anon_sym_RPAREN, + ACTIONS(26843), 1, + anon_sym_COMMA, + STATE(7992), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042113] = 5, + ACTIONS(22752), 1, + anon_sym_RBRACE, + ACTIONS(31095), 1, + anon_sym_COMMA, + STATE(15649), 1, + aux_sym_record_exp_repeat1, + STATE(20551), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042130] = 5, + ACTIONS(21263), 1, + anon_sym_RBRACE, + ACTIONS(31099), 1, + anon_sym_COMMA, + STATE(14791), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042147] = 5, + ACTIONS(20819), 1, + anon_sym_RBRACE, + ACTIONS(31101), 1, + anon_sym_COMMA, + STATE(14553), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042164] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31103), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042181] = 5, + ACTIONS(31105), 1, + anon_sym_SEMI, + ACTIONS(31107), 1, + anon_sym_end, + STATE(2436), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042198] = 3, + STATE(6612), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31109), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1042211] = 5, + ACTIONS(23078), 1, + anon_sym_RBRACE, + ACTIONS(31111), 1, + anon_sym_COMMA, + STATE(16014), 1, + aux_sym_record_exp_repeat1, + STATE(20598), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042228] = 5, + ACTIONS(31113), 1, + anon_sym_SEMI, + ACTIONS(31115), 1, + anon_sym_end, + STATE(1899), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042245] = 5, + ACTIONS(22756), 1, + anon_sym_RBRACE, + ACTIONS(31117), 1, + anon_sym_COMMA, + STATE(15651), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042262] = 5, + ACTIONS(31119), 1, + anon_sym_SEMI, + ACTIONS(31121), 1, + anon_sym_end, + STATE(1900), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042279] = 5, + ACTIONS(23004), 1, + anon_sym_RBRACE, + ACTIONS(31123), 1, + anon_sym_COMMA, + STATE(15787), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042296] = 5, + ACTIONS(23004), 1, + anon_sym_RBRACE, + ACTIONS(31123), 1, + anon_sym_COMMA, + STATE(15787), 1, + aux_sym_record_exp_repeat1, + STATE(20558), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042313] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31125), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042330] = 5, + ACTIONS(20819), 1, + anon_sym_RBRACE, + ACTIONS(31101), 1, + anon_sym_COMMA, + STATE(14553), 1, + aux_sym_record_exp_repeat1, + STATE(20580), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042347] = 5, + ACTIONS(31127), 1, + anon_sym_SEMI, + ACTIONS(31129), 1, + anon_sym_end, + STATE(1902), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042364] = 5, + ACTIONS(23014), 1, + anon_sym_RBRACE, + ACTIONS(31131), 1, + anon_sym_COMMA, + STATE(15789), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042381] = 5, + ACTIONS(4581), 1, + anon_sym_RBRACK, + ACTIONS(25980), 1, + anon_sym_COMMA, + STATE(887), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042398] = 5, + ACTIONS(8223), 1, + anon_sym_RBRACK, + ACTIONS(25988), 1, + anon_sym_COMMA, + STATE(2189), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042415] = 5, + ACTIONS(31133), 1, + anon_sym_SEMI, + ACTIONS(31135), 1, + anon_sym_end, + STATE(1200), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042432] = 5, + ACTIONS(31137), 1, + anon_sym_SEMI, + ACTIONS(31139), 1, + anon_sym_end, + STATE(1201), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042449] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31141), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042466] = 5, + ACTIONS(20501), 1, + anon_sym_RBRACE, + ACTIONS(31143), 1, + anon_sym_COMMA, + STATE(14417), 1, + aux_sym_record_exp_repeat1, + STATE(20633), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042483] = 5, + ACTIONS(14985), 1, + anon_sym_RPAREN, + ACTIONS(31145), 1, + anon_sym_COMMA, + STATE(7998), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042500] = 3, + STATE(7342), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31147), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1042513] = 5, + ACTIONS(5933), 1, + anon_sym_RPAREN, + ACTIONS(26096), 1, + anon_sym_SEMI, + STATE(1399), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042530] = 5, + ACTIONS(23666), 1, + anon_sym_RBRACE, + ACTIONS(31149), 1, + anon_sym_COMMA, + STATE(16189), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042547] = 4, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27003), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [1042562] = 5, + ACTIONS(23026), 1, + anon_sym_RBRACE, + ACTIONS(31017), 1, + anon_sym_COMMA, + STATE(15493), 1, + aux_sym_record_exp_repeat1, + STATE(19418), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042579] = 5, + ACTIONS(23420), 1, + anon_sym_RBRACE, + ACTIONS(31151), 1, + anon_sym_COMMA, + STATE(16113), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042596] = 5, + ACTIONS(8225), 1, + anon_sym_RPAREN, + ACTIONS(31153), 1, + anon_sym_COMMA, + STATE(2191), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042613] = 5, + ACTIONS(20964), 1, + anon_sym_RBRACE, + ACTIONS(31155), 1, + anon_sym_COMMA, + STATE(14669), 1, + aux_sym_record_exp_repeat1, + STATE(20410), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042630] = 5, + ACTIONS(21178), 1, + anon_sym_RBRACE, + ACTIONS(31157), 1, + anon_sym_COMMA, + STATE(14748), 1, + aux_sym_record_exp_repeat1, + STATE(20593), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042647] = 3, + STATE(7963), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31159), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1042660] = 5, + ACTIONS(8227), 1, + anon_sym_RPAREN, + ACTIONS(31161), 1, + anon_sym_SEMI, + STATE(2192), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042677] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31163), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042694] = 5, + ACTIONS(14745), 1, + anon_sym_RBRACK, + ACTIONS(31165), 1, + anon_sym_COMMA, + STATE(5937), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042711] = 5, + ACTIONS(4071), 1, + anon_sym_RBRACK, + ACTIONS(31167), 1, + anon_sym_COMMA, + STATE(714), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042728] = 5, + ACTIONS(20823), 1, + anon_sym_RBRACE, + ACTIONS(31169), 1, + anon_sym_COMMA, + STATE(14555), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042745] = 3, + STATE(7447), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31171), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1042758] = 5, + ACTIONS(14987), 1, + anon_sym_RPAREN, + ACTIONS(31173), 1, + anon_sym_COMMA, + STATE(7999), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042775] = 3, + STATE(11896), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31175), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1042788] = 5, + ACTIONS(23666), 1, + anon_sym_RBRACE, + ACTIONS(31149), 1, + anon_sym_COMMA, + STATE(16189), 1, + aux_sym_record_exp_repeat1, + STATE(20754), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042805] = 5, + ACTIONS(4583), 1, + anon_sym_RBRACK, + ACTIONS(31177), 1, + anon_sym_COMMA, + STATE(888), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042822] = 5, + ACTIONS(8757), 1, + anon_sym_RPAREN, + ACTIONS(24536), 1, + anon_sym_COMMA, + STATE(2446), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042839] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19975), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13521), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1042852] = 5, + ACTIONS(8759), 1, + anon_sym_RPAREN, + ACTIONS(24538), 1, + anon_sym_SEMI, + STATE(2447), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042869] = 5, + ACTIONS(8229), 1, + anon_sym_RBRACK, + ACTIONS(31179), 1, + anon_sym_COMMA, + STATE(2193), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042886] = 5, + ACTIONS(21299), 1, + anon_sym_RBRACE, + ACTIONS(31181), 1, + anon_sym_COMMA, + STATE(14808), 1, + aux_sym_record_exp_repeat1, + STATE(20610), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042903] = 5, + ACTIONS(6867), 1, + anon_sym_RBRACK, + ACTIONS(31183), 1, + anon_sym_COMMA, + STATE(1577), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042920] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31185), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042937] = 5, + ACTIONS(21184), 1, + anon_sym_RBRACE, + ACTIONS(31187), 1, + anon_sym_COMMA, + STATE(14749), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042954] = 5, + ACTIONS(21184), 1, + anon_sym_RBRACE, + ACTIONS(31187), 1, + anon_sym_COMMA, + STATE(14749), 1, + aux_sym_record_exp_repeat1, + STATE(20614), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1042971] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19975), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13526), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1042984] = 5, + ACTIONS(4791), 1, + anon_sym_RBRACK, + ACTIONS(24540), 1, + anon_sym_COMMA, + STATE(959), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043001] = 5, + ACTIONS(31189), 1, + anon_sym_SEMI, + ACTIONS(31191), 1, + anon_sym_end, + STATE(2194), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043018] = 5, + ACTIONS(23358), 1, + anon_sym_RBRACE, + ACTIONS(31193), 1, + anon_sym_COMMA, + STATE(16148), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043035] = 5, + ACTIONS(20980), 1, + anon_sym_RBRACE, + ACTIONS(31195), 1, + anon_sym_COMMA, + STATE(14509), 1, + aux_sym_record_exp_repeat1, + STATE(20200), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043052] = 5, + ACTIONS(20809), 1, + anon_sym_RBRACE, + ACTIONS(31197), 1, + anon_sym_COMMA, + STATE(14557), 1, + aux_sym_record_exp_repeat1, + STATE(20657), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043069] = 5, + ACTIONS(7567), 1, + anon_sym_RPAREN, + ACTIONS(25994), 1, + anon_sym_COMMA, + STATE(1910), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043086] = 5, + ACTIONS(8761), 1, + anon_sym_RBRACK, + ACTIONS(24542), 1, + anon_sym_COMMA, + STATE(2448), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043103] = 5, + ACTIONS(23358), 1, + anon_sym_RBRACE, + ACTIONS(31193), 1, + anon_sym_COMMA, + STATE(16148), 1, + aux_sym_record_exp_repeat1, + STATE(20631), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043120] = 5, + ACTIONS(7033), 1, + anon_sym_RPAREN, + ACTIONS(24551), 1, + anon_sym_COMMA, + STATE(1655), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043137] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31199), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043154] = 4, + ACTIONS(31203), 1, + anon_sym_COLON, + ACTIONS(31205), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31201), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1043169] = 5, + ACTIONS(7569), 1, + anon_sym_RPAREN, + ACTIONS(25996), 1, + anon_sym_SEMI, + STATE(1911), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043186] = 5, + ACTIONS(8763), 1, + anon_sym_RPAREN, + ACTIONS(31207), 1, + anon_sym_COMMA, + STATE(2450), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043203] = 5, + ACTIONS(8765), 1, + anon_sym_RPAREN, + ACTIONS(31209), 1, + anon_sym_SEMI, + STATE(2451), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043220] = 5, + ACTIONS(21307), 1, + anon_sym_RBRACE, + ACTIONS(31211), 1, + anon_sym_COMMA, + STATE(14811), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043237] = 5, + ACTIONS(21307), 1, + anon_sym_RBRACE, + ACTIONS(31211), 1, + anon_sym_COMMA, + STATE(14811), 1, + aux_sym_record_exp_repeat1, + STATE(20626), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043254] = 5, + ACTIONS(7035), 1, + anon_sym_RPAREN, + ACTIONS(24553), 1, + anon_sym_SEMI, + STATE(1656), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043271] = 5, + ACTIONS(4357), 1, + anon_sym_RBRACK, + ACTIONS(25998), 1, + anon_sym_COMMA, + STATE(809), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043288] = 5, + ACTIONS(21186), 1, + anon_sym_RBRACE, + ACTIONS(31213), 1, + anon_sym_COMMA, + STATE(14750), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043305] = 5, + ACTIONS(7571), 1, + anon_sym_RBRACK, + ACTIONS(26000), 1, + anon_sym_COMMA, + STATE(1913), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043322] = 5, + ACTIONS(31215), 1, + anon_sym_SEMI, + ACTIONS(31217), 1, + anon_sym_end, + STATE(1203), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043339] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31219), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043356] = 5, + ACTIONS(23556), 1, + anon_sym_RBRACE, + ACTIONS(31221), 1, + anon_sym_COMMA, + STATE(16147), 1, + aux_sym_record_exp_repeat1, + STATE(20680), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043373] = 5, + ACTIONS(4793), 1, + anon_sym_RBRACK, + ACTIONS(31223), 1, + anon_sym_COMMA, + STATE(960), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043390] = 5, + ACTIONS(8767), 1, + anon_sym_RBRACK, + ACTIONS(31225), 1, + anon_sym_COMMA, + STATE(2452), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043407] = 4, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27007), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [1043422] = 5, + ACTIONS(31227), 1, + anon_sym_SEMI, + ACTIONS(31229), 1, + anon_sym_end, + STATE(2453), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043439] = 5, + ACTIONS(7573), 1, + anon_sym_RPAREN, + ACTIONS(31231), 1, + anon_sym_COMMA, + STATE(1915), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043456] = 5, + ACTIONS(7575), 1, + anon_sym_RPAREN, + ACTIONS(31233), 1, + anon_sym_SEMI, + STATE(1916), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043473] = 5, + ACTIONS(31235), 1, + anon_sym_SEMI, + ACTIONS(31237), 1, + anon_sym_end, + STATE(1578), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043490] = 5, + ACTIONS(21315), 1, + anon_sym_RBRACE, + ACTIONS(31239), 1, + anon_sym_COMMA, + STATE(14814), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043507] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31241), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043524] = 5, + ACTIONS(22830), 1, + anon_sym_RBRACE, + ACTIONS(31243), 1, + anon_sym_COMMA, + STATE(15693), 1, + aux_sym_record_exp_repeat1, + STATE(20642), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043541] = 5, + ACTIONS(4359), 1, + anon_sym_RBRACK, + ACTIONS(31245), 1, + anon_sym_COMMA, + STATE(810), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043558] = 5, + ACTIONS(7579), 1, + anon_sym_RBRACK, + ACTIONS(31247), 1, + anon_sym_COMMA, + STATE(1918), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043575] = 5, + ACTIONS(23594), 1, + anon_sym_RBRACE, + ACTIONS(31249), 1, + anon_sym_COMMA, + STATE(16223), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043592] = 5, + ACTIONS(31251), 1, + anon_sym_SEMI, + ACTIONS(31253), 1, + anon_sym_end, + STATE(1919), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043609] = 5, + ACTIONS(20513), 1, + anon_sym_RBRACE, + ACTIONS(31255), 1, + anon_sym_COMMA, + STATE(14425), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043626] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31257), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043643] = 5, + ACTIONS(23170), 1, + anon_sym_RBRACE, + ACTIONS(31259), 1, + anon_sym_COMMA, + STATE(15904), 1, + aux_sym_record_exp_repeat1, + STATE(20648), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043660] = 5, + ACTIONS(21245), 1, + anon_sym_RBRACE, + ACTIONS(31261), 1, + anon_sym_COMMA, + STATE(14707), 1, + aux_sym_record_exp_repeat1, + STATE(20363), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043677] = 5, + ACTIONS(5921), 1, + anon_sym_RPAREN, + ACTIONS(24567), 1, + anon_sym_COMMA, + STATE(1125), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043694] = 5, + ACTIONS(31263), 1, + anon_sym_SEMI, + ACTIONS(31265), 1, + anon_sym_end, + STATE(2456), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043711] = 5, + ACTIONS(5923), 1, + anon_sym_RPAREN, + ACTIONS(24569), 1, + anon_sym_SEMI, + STATE(1126), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043728] = 5, + ACTIONS(31267), 1, + anon_sym_SEMI, + ACTIONS(31269), 1, + anon_sym_end, + STATE(2457), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043745] = 5, + ACTIONS(20513), 1, + anon_sym_RBRACE, + ACTIONS(31255), 1, + anon_sym_COMMA, + STATE(14425), 1, + aux_sym_record_exp_repeat1, + STATE(20748), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043762] = 5, + ACTIONS(22838), 1, + anon_sym_RBRACE, + ACTIONS(31271), 1, + anon_sym_COMMA, + STATE(15698), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043779] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31273), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043796] = 5, + ACTIONS(31275), 1, + anon_sym_SEMI, + ACTIONS(31277), 1, + anon_sym_end, + STATE(1922), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043813] = 5, + ACTIONS(22838), 1, + anon_sym_RBRACE, + ACTIONS(31271), 1, + anon_sym_COMMA, + STATE(15698), 1, + aux_sym_record_exp_repeat1, + STATE(20656), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043830] = 5, + ACTIONS(31279), 1, + anon_sym_SEMI, + ACTIONS(31281), 1, + anon_sym_end, + STATE(1923), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043847] = 5, + ACTIONS(6681), 1, + anon_sym_RPAREN, + ACTIONS(26044), 1, + anon_sym_COMMA, + STATE(1487), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043864] = 5, + ACTIONS(23194), 1, + anon_sym_RBRACE, + ACTIONS(31283), 1, + anon_sym_COMMA, + STATE(15912), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043881] = 5, + ACTIONS(23194), 1, + anon_sym_RBRACE, + ACTIONS(31283), 1, + anon_sym_COMMA, + STATE(15912), 1, + aux_sym_record_exp_repeat1, + STATE(20653), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043898] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31285), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043915] = 5, + ACTIONS(6683), 1, + anon_sym_RPAREN, + ACTIONS(26046), 1, + anon_sym_SEMI, + STATE(1488), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043932] = 5, + ACTIONS(31287), 1, + anon_sym_SEMI, + ACTIONS(31289), 1, + anon_sym_end, + STATE(1925), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043949] = 5, + ACTIONS(23202), 1, + anon_sym_RBRACE, + ACTIONS(31291), 1, + anon_sym_COMMA, + STATE(15913), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043966] = 5, + ACTIONS(31293), 1, + anon_sym_SEMI, + ACTIONS(31295), 1, + anon_sym_end, + STATE(2459), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1043983] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31297), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044000] = 5, + ACTIONS(22844), 1, + anon_sym_RBRACE, + ACTIONS(31299), 1, + anon_sym_COMMA, + STATE(15699), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044017] = 5, + ACTIONS(20829), 1, + anon_sym_RBRACE, + ACTIONS(31301), 1, + anon_sym_COMMA, + STATE(14563), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044034] = 5, + ACTIONS(20829), 1, + anon_sym_RBRACE, + ACTIONS(31301), 1, + anon_sym_COMMA, + STATE(14563), 1, + aux_sym_record_exp_repeat1, + STATE(20700), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044051] = 5, + ACTIONS(3997), 1, + anon_sym_RBRACK, + ACTIONS(26052), 1, + anon_sym_COMMA, + STATE(689), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044068] = 3, + STATE(9912), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31303), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1044081] = 5, + ACTIONS(21190), 1, + anon_sym_RBRACE, + ACTIONS(31305), 1, + anon_sym_COMMA, + STATE(14776), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044098] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31307), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044115] = 5, + ACTIONS(6685), 1, + anon_sym_RBRACK, + ACTIONS(26054), 1, + anon_sym_COMMA, + STATE(1489), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044132] = 5, + ACTIONS(31309), 1, + anon_sym_SEMI, + ACTIONS(31311), 1, + anon_sym_end, + STATE(2090), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044149] = 5, + ACTIONS(21190), 1, + anon_sym_RBRACE, + ACTIONS(31305), 1, + anon_sym_COMMA, + STATE(14776), 1, + aux_sym_record_exp_repeat1, + STATE(20860), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044166] = 5, + ACTIONS(21379), 1, + anon_sym_RBRACE, + ACTIONS(31313), 1, + anon_sym_COMMA, + STATE(14842), 1, + aux_sym_record_exp_repeat1, + STATE(20684), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044183] = 3, + STATE(9050), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31315), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1044196] = 5, + ACTIONS(4141), 1, + anon_sym_RBRACK, + ACTIONS(24571), 1, + anon_sym_COMMA, + STATE(737), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044213] = 5, + ACTIONS(6813), 1, + anon_sym_RPAREN, + ACTIONS(24522), 1, + anon_sym_COMMA, + STATE(1550), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044230] = 5, + ACTIONS(28799), 1, + sym__alphaAlphaNumeric_ident, + STATE(15081), 1, + sym_strdesc, + STATE(15357), 1, + sym__strdesc, + STATE(24888), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044247] = 5, + ACTIONS(31317), 1, + anon_sym_SEMI, + ACTIONS(31319), 1, + anon_sym_end, + STATE(2197), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044264] = 5, + ACTIONS(31321), 1, + anon_sym_SEMI, + ACTIONS(31323), 1, + anon_sym_end, + STATE(2114), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044281] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31325), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044298] = 5, + ACTIONS(3593), 1, + anon_sym_RBRACK, + ACTIONS(24573), 1, + anon_sym_COMMA, + STATE(583), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044315] = 5, + ACTIONS(7037), 1, + anon_sym_RBRACK, + ACTIONS(24575), 1, + anon_sym_COMMA, + STATE(1657), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044332] = 3, + STATE(10617), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31327), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1044345] = 5, + ACTIONS(31329), 1, + anon_sym_SEMI, + ACTIONS(31331), 1, + anon_sym_end, + STATE(2198), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044362] = 5, + ACTIONS(7615), 1, + anon_sym_RPAREN, + ACTIONS(26070), 1, + anon_sym_COMMA, + STATE(1933), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044379] = 5, + ACTIONS(7617), 1, + anon_sym_RPAREN, + ACTIONS(26072), 1, + anon_sym_SEMI, + STATE(1934), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044396] = 5, + ACTIONS(23592), 1, + anon_sym_RBRACE, + ACTIONS(31333), 1, + anon_sym_COMMA, + STATE(16184), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044413] = 5, + ACTIONS(5927), 1, + anon_sym_RBRACK, + ACTIONS(24583), 1, + anon_sym_COMMA, + STATE(1128), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044430] = 5, + ACTIONS(21201), 1, + anon_sym_RBRACE, + ACTIONS(31335), 1, + anon_sym_COMMA, + STATE(14758), 1, + aux_sym_record_exp_repeat1, + STATE(20697), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044447] = 5, + ACTIONS(6371), 1, + anon_sym_RPAREN, + ACTIONS(31337), 1, + anon_sym_COMMA, + STATE(1340), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044464] = 5, + ACTIONS(21383), 1, + anon_sym_RBRACE, + ACTIONS(31339), 1, + anon_sym_COMMA, + STATE(14854), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044481] = 5, + ACTIONS(23592), 1, + anon_sym_RBRACE, + ACTIONS(31333), 1, + anon_sym_COMMA, + STATE(16184), 1, + aux_sym_record_exp_repeat1, + STATE(20711), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044498] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31341), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044515] = 4, + STATE(13435), 1, + sym_hol_identifier, + STATE(25043), 1, + sym_hol_eqn, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27983), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + [1044530] = 5, + ACTIONS(21383), 1, + anon_sym_RBRACE, + ACTIONS(31339), 1, + anon_sym_COMMA, + STATE(14854), 1, + aux_sym_record_exp_repeat1, + STATE(20703), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044547] = 5, + ACTIONS(4375), 1, + anon_sym_RBRACK, + ACTIONS(26074), 1, + anon_sym_COMMA, + STATE(815), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044564] = 5, + ACTIONS(23032), 1, + anon_sym_RBRACE, + ACTIONS(31343), 1, + anon_sym_COMMA, + STATE(15837), 1, + aux_sym_record_exp_repeat1, + STATE(20807), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044581] = 5, + ACTIONS(6687), 1, + anon_sym_RPAREN, + ACTIONS(31345), 1, + anon_sym_COMMA, + STATE(1491), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044598] = 5, + ACTIONS(7619), 1, + anon_sym_RBRACK, + ACTIONS(26076), 1, + anon_sym_COMMA, + STATE(1935), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044615] = 5, + ACTIONS(8801), 1, + anon_sym_RPAREN, + ACTIONS(24591), 1, + anon_sym_COMMA, + STATE(2467), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044632] = 5, + ACTIONS(31347), 1, + anon_sym_SEMI, + ACTIONS(31349), 1, + anon_sym_end, + STATE(2200), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044649] = 5, + ACTIONS(8803), 1, + anon_sym_RPAREN, + ACTIONS(24593), 1, + anon_sym_SEMI, + STATE(2468), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044666] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31351), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044683] = 5, + ACTIONS(21207), 1, + anon_sym_RBRACE, + ACTIONS(31353), 1, + anon_sym_COMMA, + STATE(14760), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044700] = 5, + ACTIONS(6689), 1, + anon_sym_RPAREN, + ACTIONS(31355), 1, + anon_sym_SEMI, + STATE(1492), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044717] = 5, + ACTIONS(21207), 1, + anon_sym_RBRACE, + ACTIONS(31353), 1, + anon_sym_COMMA, + STATE(14760), 1, + aux_sym_record_exp_repeat1, + STATE(20724), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044734] = 5, + ACTIONS(20845), 1, + anon_sym_RBRACE, + ACTIONS(31357), 1, + anon_sym_COMMA, + STATE(14576), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044751] = 5, + ACTIONS(7621), 1, + anon_sym_RPAREN, + ACTIONS(31359), 1, + anon_sym_COMMA, + STATE(1937), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044768] = 5, + ACTIONS(7623), 1, + anon_sym_RPAREN, + ACTIONS(31361), 1, + anon_sym_SEMI, + STATE(1938), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044785] = 5, + ACTIONS(21414), 1, + anon_sym_RBRACE, + ACTIONS(31363), 1, + anon_sym_COMMA, + STATE(14858), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044802] = 3, + STATE(11939), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31365), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1044815] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31367), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044832] = 5, + ACTIONS(4809), 1, + anon_sym_RBRACK, + ACTIONS(24595), 1, + anon_sym_COMMA, + STATE(965), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044849] = 5, + ACTIONS(4377), 1, + anon_sym_RBRACK, + ACTIONS(31369), 1, + anon_sym_COMMA, + STATE(816), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044866] = 5, + ACTIONS(7625), 1, + anon_sym_RBRACK, + ACTIONS(31371), 1, + anon_sym_COMMA, + STATE(1939), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044883] = 5, + ACTIONS(3999), 1, + anon_sym_RBRACK, + ACTIONS(31373), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044900] = 5, + ACTIONS(31375), 1, + anon_sym_SEMI, + ACTIONS(31377), 1, + anon_sym_end, + STATE(1940), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044917] = 5, + ACTIONS(23664), 1, + anon_sym_RBRACE, + ACTIONS(31379), 1, + anon_sym_COMMA, + STATE(16215), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044934] = 5, + ACTIONS(21209), 1, + anon_sym_RBRACE, + ACTIONS(31381), 1, + anon_sym_COMMA, + STATE(14782), 1, + aux_sym_record_exp_repeat1, + STATE(20905), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044951] = 5, + ACTIONS(8805), 1, + anon_sym_RBRACK, + ACTIONS(24597), 1, + anon_sym_COMMA, + STATE(2469), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044968] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19772), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13375), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1044981] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31383), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1044998] = 5, + ACTIONS(23410), 1, + anon_sym_RBRACE, + ACTIONS(31385), 1, + anon_sym_COMMA, + STATE(16056), 1, + aux_sym_record_exp_repeat1, + STATE(20736), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045015] = 5, + ACTIONS(6373), 1, + anon_sym_RPAREN, + ACTIONS(31387), 1, + anon_sym_SEMI, + STATE(1341), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045032] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(25966), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_as, + [1045043] = 5, + ACTIONS(8807), 1, + anon_sym_RPAREN, + ACTIONS(31389), 1, + anon_sym_COMMA, + STATE(2471), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045060] = 5, + ACTIONS(21088), 1, + anon_sym_RBRACE, + ACTIONS(31391), 1, + anon_sym_COMMA, + STATE(14716), 1, + aux_sym_record_exp_repeat1, + STATE(20743), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045077] = 5, + ACTIONS(8809), 1, + anon_sym_RPAREN, + ACTIONS(31393), 1, + anon_sym_SEMI, + STATE(2472), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045094] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31395), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045111] = 5, + ACTIONS(6691), 1, + anon_sym_RBRACK, + ACTIONS(31397), 1, + anon_sym_COMMA, + STATE(1493), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045128] = 5, + ACTIONS(21211), 1, + anon_sym_RBRACE, + ACTIONS(31399), 1, + anon_sym_COMMA, + STATE(14761), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045145] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(31401), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045162] = 5, + ACTIONS(4811), 1, + anon_sym_RBRACK, + ACTIONS(31403), 1, + anon_sym_COMMA, + STATE(966), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045179] = 4, + ACTIONS(28935), 1, + anon_sym_COLON, + ACTIONS(28939), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27003), 2, + anon_sym_EQ, + anon_sym_PIPE, + [1045194] = 5, + ACTIONS(31405), 1, + anon_sym_SEMI, + ACTIONS(31407), 1, + anon_sym_end, + STATE(1494), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045211] = 4, + ACTIONS(28935), 1, + anon_sym_COLON, + ACTIONS(28939), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27007), 2, + anon_sym_EQ, + anon_sym_PIPE, + [1045226] = 5, + ACTIONS(31409), 1, + anon_sym_SEMI, + ACTIONS(31411), 1, + anon_sym_end, + STATE(1943), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045243] = 5, + ACTIONS(31413), 1, + anon_sym_SEMI, + ACTIONS(31415), 1, + anon_sym_end, + STATE(1944), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045260] = 5, + ACTIONS(8811), 1, + anon_sym_RBRACK, + ACTIONS(31417), 1, + anon_sym_COMMA, + STATE(2473), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045277] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19772), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13454), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1045290] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19772), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(13501), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1045303] = 5, + ACTIONS(31419), 1, + anon_sym_SEMI, + ACTIONS(31421), 1, + anon_sym_end, + STATE(2474), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045320] = 5, + ACTIONS(23426), 1, + anon_sym_RBRACE, + ACTIONS(31423), 1, + anon_sym_COMMA, + STATE(16066), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045337] = 5, + ACTIONS(22882), 1, + anon_sym_RBRACE, + ACTIONS(31425), 1, + anon_sym_COMMA, + STATE(15724), 1, + aux_sym_record_exp_repeat1, + STATE(20755), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045354] = 5, + ACTIONS(23426), 1, + anon_sym_RBRACE, + ACTIONS(31423), 1, + anon_sym_COMMA, + STATE(16066), 1, + aux_sym_record_exp_repeat1, + STATE(20751), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045371] = 5, + ACTIONS(7039), 1, + anon_sym_RPAREN, + ACTIONS(31427), 1, + anon_sym_COMMA, + STATE(1659), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045388] = 5, + ACTIONS(7041), 1, + anon_sym_RPAREN, + ACTIONS(31429), 1, + anon_sym_SEMI, + STATE(1660), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045405] = 5, + ACTIONS(6103), 1, + anon_sym_RPAREN, + ACTIONS(26120), 1, + anon_sym_COMMA, + STATE(1211), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045422] = 5, + ACTIONS(6105), 1, + anon_sym_RPAREN, + ACTIONS(26122), 1, + anon_sym_SEMI, + STATE(1212), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045439] = 5, + ACTIONS(21112), 1, + anon_sym_RBRACE, + ACTIONS(31431), 1, + anon_sym_COMMA, + STATE(14726), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045456] = 5, + ACTIONS(21112), 1, + anon_sym_RBRACE, + ACTIONS(31431), 1, + anon_sym_COMMA, + STATE(14726), 1, + aux_sym_record_exp_repeat1, + STATE(20765), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045473] = 5, + ACTIONS(3763), 1, + anon_sym_RBRACK, + ACTIONS(26128), 1, + anon_sym_COMMA, + STATE(611), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045490] = 5, + ACTIONS(23910), 1, + anon_sym_RBRACE, + ACTIONS(31433), 1, + anon_sym_COMMA, + STATE(15810), 1, + aux_sym_record_exp_repeat1, + STATE(20784), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045507] = 5, + ACTIONS(31435), 1, + anon_sym_SEMI, + ACTIONS(31437), 1, + anon_sym_end, + STATE(1946), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045524] = 5, + ACTIONS(20523), 1, + anon_sym_RBRACE, + ACTIONS(31439), 1, + anon_sym_COMMA, + STATE(14428), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045541] = 5, + ACTIONS(6107), 1, + anon_sym_RBRACK, + ACTIONS(26132), 1, + anon_sym_COMMA, + STATE(1213), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045558] = 5, + ACTIONS(31441), 1, + anon_sym_SEMI, + ACTIONS(31443), 1, + anon_sym_end, + STATE(2477), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045575] = 5, + ACTIONS(23440), 1, + anon_sym_RBRACE, + ACTIONS(31445), 1, + anon_sym_COMMA, + STATE(16070), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045592] = 5, + ACTIONS(21122), 1, + anon_sym_RBRACE, + ACTIONS(31447), 1, + anon_sym_COMMA, + STATE(14727), 1, + aux_sym_record_exp_repeat1, + STATE(20777), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045609] = 5, + ACTIONS(31449), 1, + anon_sym_SEMI, + ACTIONS(31451), 1, + anon_sym_end, + STATE(2478), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045626] = 5, + ACTIONS(23672), 1, + anon_sym_RBRACE, + ACTIONS(31453), 1, + anon_sym_COMMA, + STATE(16193), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045643] = 5, + ACTIONS(22890), 1, + anon_sym_RBRACE, + ACTIONS(31455), 1, + anon_sym_COMMA, + STATE(15729), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045660] = 5, + ACTIONS(22890), 1, + anon_sym_RBRACE, + ACTIONS(31455), 1, + anon_sym_COMMA, + STATE(15729), 1, + aux_sym_record_exp_repeat1, + STATE(20760), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045677] = 5, + ACTIONS(4143), 1, + anon_sym_RBRACK, + ACTIONS(31457), 1, + anon_sym_COMMA, + STATE(738), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045694] = 5, + ACTIONS(31459), 1, + anon_sym_SEMI, + ACTIONS(31461), 1, + anon_sym_end, + STATE(2480), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045711] = 5, + ACTIONS(20878), 1, + anon_sym_RBRACE, + ACTIONS(31463), 1, + anon_sym_COMMA, + STATE(14654), 1, + aux_sym_record_exp_repeat1, + STATE(20865), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045728] = 5, + ACTIONS(22892), 1, + anon_sym_RBRACE, + ACTIONS(31465), 1, + anon_sym_COMMA, + STATE(15733), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045745] = 5, + ACTIONS(6109), 1, + anon_sym_RPAREN, + ACTIONS(31467), 1, + anon_sym_COMMA, + STATE(1215), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045762] = 5, + ACTIONS(6111), 1, + anon_sym_RPAREN, + ACTIONS(31469), 1, + anon_sym_SEMI, + STATE(1216), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045779] = 5, + ACTIONS(7043), 1, + anon_sym_RBRACK, + ACTIONS(31471), 1, + anon_sym_COMMA, + STATE(1661), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045796] = 5, + ACTIONS(21269), 1, + anon_sym_RBRACE, + ACTIONS(31473), 1, + anon_sym_COMMA, + STATE(14487), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045813] = 5, + ACTIONS(21132), 1, + anon_sym_RBRACE, + ACTIONS(31475), 1, + anon_sym_COMMA, + STATE(14733), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045830] = 5, + ACTIONS(3765), 1, + anon_sym_RBRACK, + ACTIONS(31477), 1, + anon_sym_COMMA, + STATE(612), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045847] = 3, + STATE(4341), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31479), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1045860] = 5, + ACTIONS(31481), 1, + anon_sym_SEMI, + ACTIONS(31483), 1, + anon_sym_end, + STATE(1497), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045877] = 5, + ACTIONS(6113), 1, + anon_sym_RBRACK, + ACTIONS(31485), 1, + anon_sym_COMMA, + STATE(1217), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045894] = 3, + STATE(9117), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31487), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1045907] = 5, + ACTIONS(31489), 1, + anon_sym_SEMI, + ACTIONS(31491), 1, + anon_sym_end, + STATE(1662), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045924] = 5, + ACTIONS(31493), 1, + anon_sym_SEMI, + ACTIONS(31495), 1, + anon_sym_end, + STATE(1218), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045941] = 5, + ACTIONS(31497), 1, + anon_sym_SEMI, + ACTIONS(31499), 1, + anon_sym_end, + STATE(1498), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045958] = 5, + ACTIONS(21476), 1, + anon_sym_RBRACE, + ACTIONS(31501), 1, + anon_sym_COMMA, + STATE(14884), 1, + aux_sym_record_exp_repeat1, + STATE(20793), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045975] = 5, + ACTIONS(6815), 1, + anon_sym_RPAREN, + ACTIONS(24603), 1, + anon_sym_SEMI, + STATE(1551), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1045992] = 5, + ACTIONS(15099), 1, + anon_sym_RPAREN, + ACTIONS(27005), 1, + anon_sym_COMMA, + STATE(8146), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046009] = 5, + ACTIONS(21134), 1, + anon_sym_RBRACE, + ACTIONS(31503), 1, + anon_sym_COMMA, + STATE(14737), 1, + aux_sym_record_exp_repeat1, + STATE(20410), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046026] = 5, + ACTIONS(21134), 1, + anon_sym_RBRACE, + ACTIONS(31503), 1, + anon_sym_COMMA, + STATE(14737), 1, + aux_sym_record_exp_repeat1, + STATE(20801), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046043] = 5, + ACTIONS(23372), 1, + anon_sym_RBRACE, + ACTIONS(31505), 1, + anon_sym_COMMA, + STATE(16214), 1, + aux_sym_record_exp_repeat1, + STATE(20854), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046060] = 3, + STATE(10813), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31507), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1046073] = 5, + ACTIONS(14755), 1, + anon_sym_RBRACK, + ACTIONS(27013), 1, + anon_sym_COMMA, + STATE(5942), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046090] = 5, + ACTIONS(31509), 1, + anon_sym_SEMI, + ACTIONS(31511), 1, + anon_sym_end, + STATE(1581), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046107] = 3, + STATE(10096), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31513), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1046120] = 5, + ACTIONS(23052), 1, + anon_sym_RBRACE, + ACTIONS(31515), 1, + anon_sym_COMMA, + STATE(15915), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046137] = 5, + ACTIONS(15101), 1, + anon_sym_RPAREN, + ACTIONS(27015), 1, + anon_sym_COMMA, + STATE(8151), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046154] = 5, + ACTIONS(20677), 1, + anon_sym_RBRACE, + ACTIONS(31517), 1, + anon_sym_COMMA, + STATE(14556), 1, + aux_sym_record_exp_repeat1, + STATE(19532), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046171] = 5, + ACTIONS(31519), 1, + anon_sym_SEMI, + ACTIONS(31521), 1, + anon_sym_end, + STATE(1582), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046188] = 5, + ACTIONS(21235), 1, + anon_sym_RBRACE, + ACTIONS(31523), 1, + anon_sym_COMMA, + STATE(14773), 1, + aux_sym_record_exp_repeat1, + STATE(20808), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046205] = 5, + ACTIONS(23052), 1, + anon_sym_RBRACE, + ACTIONS(31515), 1, + anon_sym_COMMA, + STATE(15915), 1, + aux_sym_record_exp_repeat1, + STATE(20817), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046222] = 5, + ACTIONS(7659), 1, + anon_sym_RPAREN, + ACTIONS(26176), 1, + anon_sym_COMMA, + STATE(1954), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046239] = 5, + ACTIONS(22714), 1, + anon_sym_RBRACE, + ACTIONS(31525), 1, + anon_sym_COMMA, + STATE(15657), 1, + aux_sym_record_exp_repeat1, + STATE(20814), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046256] = 5, + ACTIONS(7661), 1, + anon_sym_RPAREN, + ACTIONS(26178), 1, + anon_sym_SEMI, + STATE(1955), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046273] = 5, + ACTIONS(21487), 1, + anon_sym_RBRACE, + ACTIONS(31527), 1, + anon_sym_COMMA, + STATE(14890), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046290] = 5, + ACTIONS(21487), 1, + anon_sym_RBRACE, + ACTIONS(31527), 1, + anon_sym_COMMA, + STATE(14890), 1, + aux_sym_record_exp_repeat1, + STATE(20813), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046307] = 5, + ACTIONS(31529), 1, + anon_sym_SEMI, + ACTIONS(31531), 1, + anon_sym_end, + STATE(1221), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046324] = 5, + ACTIONS(31533), 1, + anon_sym_SEMI, + ACTIONS(31535), 1, + anon_sym_end, + STATE(1222), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046341] = 5, + ACTIONS(20839), 1, + anon_sym_RBRACE, + ACTIONS(31537), 1, + anon_sym_COMMA, + STATE(14566), 1, + aux_sym_record_exp_repeat1, + STATE(20877), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046358] = 5, + ACTIONS(4393), 1, + anon_sym_RBRACK, + ACTIONS(26188), 1, + anon_sym_COMMA, + STATE(821), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046375] = 5, + ACTIONS(15105), 1, + anon_sym_RPAREN, + ACTIONS(31539), 1, + anon_sym_COMMA, + STATE(7839), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046392] = 3, + STATE(7977), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31541), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1046405] = 5, + ACTIONS(21158), 1, + anon_sym_RBRACE, + ACTIONS(31543), 1, + anon_sym_COMMA, + STATE(14744), 1, + aux_sym_record_exp_repeat1, + STATE(20410), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046422] = 5, + ACTIONS(8845), 1, + anon_sym_RPAREN, + ACTIONS(24639), 1, + anon_sym_COMMA, + STATE(2488), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046439] = 5, + ACTIONS(14757), 1, + anon_sym_RBRACK, + ACTIONS(31545), 1, + anon_sym_COMMA, + STATE(5944), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046456] = 5, + ACTIONS(7663), 1, + anon_sym_RBRACK, + ACTIONS(26190), 1, + anon_sym_COMMA, + STATE(1956), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046473] = 5, + ACTIONS(8847), 1, + anon_sym_RPAREN, + ACTIONS(24641), 1, + anon_sym_SEMI, + STATE(2489), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046490] = 5, + ACTIONS(15125), 1, + anon_sym_RPAREN, + ACTIONS(31547), 1, + anon_sym_COMMA, + STATE(7436), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046507] = 5, + ACTIONS(23092), 1, + anon_sym_RBRACE, + ACTIONS(31549), 1, + anon_sym_COMMA, + STATE(15838), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046524] = 5, + ACTIONS(21237), 1, + anon_sym_RBRACE, + ACTIONS(31551), 1, + anon_sym_COMMA, + STATE(14774), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046541] = 5, + ACTIONS(21237), 1, + anon_sym_RBRACE, + ACTIONS(31551), 1, + anon_sym_COMMA, + STATE(14774), 1, + aux_sym_record_exp_repeat1, + STATE(20833), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046558] = 5, + ACTIONS(31553), 1, + anon_sym_SEMI, + ACTIONS(31555), 1, + anon_sym_end, + STATE(1500), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046575] = 5, + ACTIONS(7665), 1, + anon_sym_RPAREN, + ACTIONS(31557), 1, + anon_sym_COMMA, + STATE(1958), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046592] = 5, + ACTIONS(7667), 1, + anon_sym_RPAREN, + ACTIONS(31559), 1, + anon_sym_SEMI, + STATE(1959), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046609] = 5, + ACTIONS(21497), 1, + anon_sym_RBRACE, + ACTIONS(31561), 1, + anon_sym_COMMA, + STATE(14898), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046626] = 5, + ACTIONS(22770), 1, + anon_sym_RBRACE, + ACTIONS(31563), 1, + anon_sym_COMMA, + STATE(15673), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046643] = 5, + ACTIONS(22770), 1, + anon_sym_RBRACE, + ACTIONS(31563), 1, + anon_sym_COMMA, + STATE(15673), 1, + aux_sym_record_exp_repeat1, + STATE(20825), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046660] = 5, + ACTIONS(4395), 1, + anon_sym_RBRACK, + ACTIONS(31565), 1, + anon_sym_COMMA, + STATE(822), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046677] = 5, + ACTIONS(23208), 1, + anon_sym_RBRACE, + ACTIONS(31567), 1, + anon_sym_COMMA, + STATE(15949), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046694] = 5, + ACTIONS(7669), 1, + anon_sym_RBRACK, + ACTIONS(31569), 1, + anon_sym_COMMA, + STATE(1960), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046711] = 5, + ACTIONS(31571), 1, + anon_sym_SEMI, + ACTIONS(31573), 1, + anon_sym_end, + STATE(1224), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046728] = 5, + ACTIONS(4827), 1, + anon_sym_RBRACK, + ACTIONS(24643), 1, + anon_sym_COMMA, + STATE(971), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046745] = 5, + ACTIONS(31575), 1, + anon_sym_SEMI, + ACTIONS(31577), 1, + anon_sym_end, + STATE(1961), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046762] = 5, + ACTIONS(8849), 1, + anon_sym_RBRACK, + ACTIONS(24645), 1, + anon_sym_COMMA, + STATE(2490), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046779] = 5, + ACTIONS(31579), 1, + anon_sym_SEMI, + ACTIONS(31581), 1, + anon_sym_end, + STATE(2091), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046796] = 5, + ACTIONS(23617), 1, + anon_sym_RBRACE, + ACTIONS(31583), 1, + anon_sym_COMMA, + STATE(16190), 1, + aux_sym_record_exp_repeat1, + STATE(20831), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046813] = 5, + ACTIONS(22796), 1, + anon_sym_RBRACE, + ACTIONS(31585), 1, + anon_sym_COMMA, + STATE(15686), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046830] = 5, + ACTIONS(3873), 1, + anon_sym_RBRACK, + ACTIONS(31587), 1, + anon_sym_COMMA, + STATE(648), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046847] = 5, + ACTIONS(31589), 1, + anon_sym_SEMI, + ACTIONS(31591), 1, + anon_sym_end, + STATE(1964), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046864] = 5, + ACTIONS(31593), 1, + anon_sym_SEMI, + ACTIONS(31595), 1, + anon_sym_end, + STATE(1965), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046881] = 5, + ACTIONS(8851), 1, + anon_sym_RPAREN, + ACTIONS(31597), 1, + anon_sym_COMMA, + STATE(2492), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046898] = 5, + ACTIONS(8853), 1, + anon_sym_RPAREN, + ACTIONS(31599), 1, + anon_sym_SEMI, + STATE(2493), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046915] = 5, + ACTIONS(23674), 1, + anon_sym_RBRACE, + ACTIONS(31601), 1, + anon_sym_COMMA, + STATE(16205), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046932] = 5, + ACTIONS(23674), 1, + anon_sym_RBRACE, + ACTIONS(31601), 1, + anon_sym_COMMA, + STATE(16205), 1, + aux_sym_record_exp_repeat1, + STATE(20837), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046949] = 5, + ACTIONS(21239), 1, + anon_sym_RBRACE, + ACTIONS(31603), 1, + anon_sym_COMMA, + STATE(14775), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046966] = 5, + ACTIONS(23092), 1, + anon_sym_RBRACE, + ACTIONS(31549), 1, + anon_sym_COMMA, + STATE(15838), 1, + aux_sym_record_exp_repeat1, + STATE(20956), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1046983] = 5, + ACTIONS(31605), 1, + anon_sym_SEMI, + ACTIONS(31607), 1, + anon_sym_end, + STATE(1967), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047000] = 5, + ACTIONS(4829), 1, + anon_sym_RBRACK, + ACTIONS(31609), 1, + anon_sym_COMMA, + STATE(972), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047017] = 5, + ACTIONS(23704), 1, + anon_sym_RBRACE, + ACTIONS(31611), 1, + anon_sym_COMMA, + STATE(16211), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047034] = 5, + ACTIONS(8855), 1, + anon_sym_RBRACK, + ACTIONS(31613), 1, + anon_sym_COMMA, + STATE(2494), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047051] = 5, + ACTIONS(6375), 1, + anon_sym_RBRACK, + ACTIONS(31615), 1, + anon_sym_COMMA, + STATE(1342), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047068] = 5, + ACTIONS(31617), 1, + anon_sym_SEMI, + ACTIONS(31619), 1, + anon_sym_end, + STATE(2495), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047085] = 5, + ACTIONS(23472), 1, + anon_sym_RBRACE, + ACTIONS(31621), 1, + anon_sym_COMMA, + STATE(16094), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047102] = 5, + ACTIONS(22936), 1, + anon_sym_RBRACE, + ACTIONS(31623), 1, + anon_sym_COMMA, + STATE(15760), 1, + aux_sym_record_exp_repeat1, + STATE(20855), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047119] = 5, + ACTIONS(31625), 1, + anon_sym_SEMI, + ACTIONS(31627), 1, + anon_sym_end, + STATE(1665), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047136] = 5, + ACTIONS(21118), 1, + anon_sym_RBRACE, + ACTIONS(31629), 1, + anon_sym_COMMA, + STATE(14723), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047153] = 5, + ACTIONS(31631), 1, + anon_sym_SEMI, + ACTIONS(31633), 1, + anon_sym_end, + STATE(1666), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047170] = 5, + ACTIONS(8263), 1, + anon_sym_RPAREN, + ACTIONS(26116), 1, + anon_sym_COMMA, + STATE(2208), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047187] = 5, + ACTIONS(5929), 1, + anon_sym_RPAREN, + ACTIONS(31635), 1, + anon_sym_COMMA, + STATE(1130), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047204] = 5, + ACTIONS(5931), 1, + anon_sym_RPAREN, + ACTIONS(31637), 1, + anon_sym_SEMI, + STATE(1131), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047221] = 5, + ACTIONS(6453), 1, + anon_sym_RPAREN, + ACTIONS(26224), 1, + anon_sym_COMMA, + STATE(1378), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047238] = 5, + ACTIONS(31639), 1, + anon_sym_SEMI, + ACTIONS(31641), 1, + anon_sym_end, + STATE(2498), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047255] = 5, + ACTIONS(31643), 1, + anon_sym_SEMI, + ACTIONS(31645), 1, + anon_sym_end, + STATE(1343), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047272] = 5, + ACTIONS(31647), 1, + anon_sym_SEMI, + ACTIONS(31649), 1, + anon_sym_end, + STATE(2499), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047289] = 5, + ACTIONS(6455), 1, + anon_sym_RPAREN, + ACTIONS(26228), 1, + anon_sym_SEMI, + STATE(1379), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047306] = 5, + ACTIONS(23720), 1, + anon_sym_RBRACE, + ACTIONS(31651), 1, + anon_sym_COMMA, + STATE(16292), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047323] = 5, + ACTIONS(22940), 1, + anon_sym_RBRACE, + ACTIONS(31653), 1, + anon_sym_COMMA, + STATE(15762), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047340] = 5, + ACTIONS(22940), 1, + anon_sym_RBRACE, + ACTIONS(31653), 1, + anon_sym_COMMA, + STATE(15762), 1, + aux_sym_record_exp_repeat1, + STATE(20863), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047357] = 3, + STATE(11168), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31655), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1047370] = 3, + STATE(6900), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31657), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1047383] = 3, + STATE(11089), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31659), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1047396] = 5, + ACTIONS(21243), 1, + anon_sym_RBRACE, + ACTIONS(31661), 1, + anon_sym_COMMA, + STATE(14794), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047413] = 5, + ACTIONS(31663), 1, + anon_sym_SEMI, + ACTIONS(31665), 1, + anon_sym_end, + STATE(2501), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047430] = 5, + ACTIONS(23720), 1, + anon_sym_RBRACE, + ACTIONS(31651), 1, + anon_sym_COMMA, + STATE(16292), 1, + aux_sym_record_exp_repeat1, + STATE(20898), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047447] = 5, + ACTIONS(22946), 1, + anon_sym_RBRACE, + ACTIONS(31667), 1, + anon_sym_COMMA, + STATE(15763), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047464] = 5, + ACTIONS(21223), 1, + anon_sym_RBRACE, + ACTIONS(31669), 1, + anon_sym_COMMA, + STATE(14769), 1, + aux_sym_record_exp_repeat1, + STATE(20874), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047481] = 5, + ACTIONS(20972), 1, + anon_sym_RBRACE, + ACTIONS(31671), 1, + anon_sym_COMMA, + STATE(14675), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047498] = 5, + ACTIONS(21579), 1, + anon_sym_RBRACE, + ACTIONS(31673), 1, + anon_sym_COMMA, + STATE(14937), 1, + aux_sym_record_exp_repeat1, + STATE(20887), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047515] = 5, + ACTIONS(8265), 1, + anon_sym_RPAREN, + ACTIONS(26118), 1, + anon_sym_SEMI, + STATE(2209), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047532] = 5, + ACTIONS(20972), 1, + anon_sym_RBRACE, + ACTIONS(31671), 1, + anon_sym_COMMA, + STATE(14675), 1, + aux_sym_record_exp_repeat1, + STATE(21192), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047549] = 5, + ACTIONS(3595), 1, + anon_sym_RBRACK, + ACTIONS(31675), 1, + anon_sym_COMMA, + STATE(584), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047566] = 5, + ACTIONS(6147), 1, + anon_sym_RPAREN, + ACTIONS(26245), 1, + anon_sym_COMMA, + STATE(1232), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047583] = 5, + ACTIONS(20950), 1, + anon_sym_RBRACE, + ACTIONS(31677), 1, + anon_sym_COMMA, + STATE(14646), 1, + aux_sym_record_exp_repeat1, + STATE(20920), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047600] = 5, + ACTIONS(6149), 1, + anon_sym_RPAREN, + ACTIONS(26247), 1, + anon_sym_SEMI, + STATE(1233), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047617] = 5, + ACTIONS(5935), 1, + anon_sym_RBRACK, + ACTIONS(31679), 1, + anon_sym_COMMA, + STATE(1132), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047634] = 5, + ACTIONS(21231), 1, + anon_sym_RBRACE, + ACTIONS(31681), 1, + anon_sym_COMMA, + STATE(14787), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047651] = 5, + ACTIONS(21231), 1, + anon_sym_RBRACE, + ACTIONS(31681), 1, + anon_sym_COMMA, + STATE(14787), 1, + aux_sym_record_exp_repeat1, + STATE(20913), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047668] = 5, + ACTIONS(3781), 1, + anon_sym_RBRACK, + ACTIONS(26253), 1, + anon_sym_COMMA, + STATE(617), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047685] = 5, + ACTIONS(20851), 1, + anon_sym_RBRACE, + ACTIONS(31683), 1, + anon_sym_COMMA, + STATE(14571), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047702] = 3, + STATE(10937), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31685), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1047715] = 5, + ACTIONS(6151), 1, + anon_sym_RBRACK, + ACTIONS(26255), 1, + anon_sym_COMMA, + STATE(1234), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047732] = 5, + ACTIONS(31687), 1, + anon_sym_SEMI, + ACTIONS(31689), 1, + anon_sym_end, + STATE(1133), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047749] = 5, + ACTIONS(20851), 1, + anon_sym_RBRACE, + ACTIONS(31683), 1, + anon_sym_COMMA, + STATE(14571), 1, + aux_sym_record_exp_repeat1, + STATE(20951), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047766] = 5, + ACTIONS(7703), 1, + anon_sym_RPAREN, + ACTIONS(26267), 1, + anon_sym_COMMA, + STATE(1975), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047783] = 5, + ACTIONS(7705), 1, + anon_sym_RPAREN, + ACTIONS(26269), 1, + anon_sym_SEMI, + STATE(1976), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047800] = 5, + ACTIONS(23472), 1, + anon_sym_RBRACE, + ACTIONS(31621), 1, + anon_sym_COMMA, + STATE(16094), 1, + aux_sym_record_exp_repeat1, + STATE(21070), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047817] = 5, + ACTIONS(31691), 1, + anon_sym_SEMI, + ACTIONS(31693), 1, + anon_sym_end, + STATE(1668), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047834] = 5, + ACTIONS(21253), 1, + anon_sym_RBRACE, + ACTIONS(31695), 1, + anon_sym_COMMA, + STATE(14783), 1, + aux_sym_record_exp_repeat1, + STATE(20908), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047851] = 5, + ACTIONS(21603), 1, + anon_sym_RBRACE, + ACTIONS(31697), 1, + anon_sym_COMMA, + STATE(14947), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047868] = 5, + ACTIONS(21603), 1, + anon_sym_RBRACE, + ACTIONS(31697), 1, + anon_sym_COMMA, + STATE(14947), 1, + aux_sym_record_exp_repeat1, + STATE(20897), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047885] = 5, + ACTIONS(4411), 1, + anon_sym_RBRACK, + ACTIONS(26273), 1, + anon_sym_COMMA, + STATE(827), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047902] = 5, + ACTIONS(4599), 1, + anon_sym_RBRACK, + ACTIONS(26130), 1, + anon_sym_COMMA, + STATE(893), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047919] = 5, + ACTIONS(7707), 1, + anon_sym_RBRACK, + ACTIONS(26275), 1, + anon_sym_COMMA, + STATE(1977), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047936] = 5, + ACTIONS(14881), 1, + anon_sym_RPAREN, + ACTIONS(26855), 1, + anon_sym_COMMA, + STATE(7654), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047953] = 5, + ACTIONS(21118), 1, + anon_sym_RBRACE, + ACTIONS(31629), 1, + anon_sym_COMMA, + STATE(14723), 1, + aux_sym_record_exp_repeat1, + STATE(21323), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047970] = 5, + ACTIONS(8267), 1, + anon_sym_RBRACK, + ACTIONS(26138), 1, + anon_sym_COMMA, + STATE(2211), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1047987] = 5, + ACTIONS(7709), 1, + anon_sym_RPAREN, + ACTIONS(31699), 1, + anon_sym_COMMA, + STATE(1979), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048004] = 5, + ACTIONS(7711), 1, + anon_sym_RPAREN, + ACTIONS(31701), 1, + anon_sym_SEMI, + STATE(1980), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048021] = 5, + ACTIONS(21619), 1, + anon_sym_RBRACE, + ACTIONS(31703), 1, + anon_sym_COMMA, + STATE(14961), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048038] = 5, + ACTIONS(23856), 1, + anon_sym_RBRACE, + ACTIONS(31705), 1, + anon_sym_COMMA, + STATE(16298), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048055] = 5, + ACTIONS(4413), 1, + anon_sym_RBRACK, + ACTIONS(31707), 1, + anon_sym_COMMA, + STATE(1082), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048072] = 5, + ACTIONS(3907), 1, + anon_sym_RBRACK, + ACTIONS(26337), 1, + anon_sym_COMMA, + STATE(659), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048089] = 5, + ACTIONS(7713), 1, + anon_sym_RBRACK, + ACTIONS(31709), 1, + anon_sym_COMMA, + STATE(1981), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048106] = 5, + ACTIONS(6725), 1, + anon_sym_RPAREN, + ACTIONS(26297), 1, + anon_sym_COMMA, + STATE(1508), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048123] = 5, + ACTIONS(31711), 1, + anon_sym_SEMI, + ACTIONS(31713), 1, + anon_sym_end, + STATE(1982), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048140] = 5, + ACTIONS(8889), 1, + anon_sym_RPAREN, + ACTIONS(24681), 1, + anon_sym_COMMA, + STATE(2509), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048157] = 5, + ACTIONS(21257), 1, + anon_sym_RBRACE, + ACTIONS(31715), 1, + anon_sym_COMMA, + STATE(14800), 1, + aux_sym_record_exp_repeat1, + STATE(20410), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048174] = 5, + ACTIONS(8891), 1, + anon_sym_RPAREN, + ACTIONS(24683), 1, + anon_sym_SEMI, + STATE(2510), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048191] = 5, + ACTIONS(23210), 1, + anon_sym_RBRACE, + ACTIONS(31717), 1, + anon_sym_COMMA, + STATE(16241), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048208] = 5, + ACTIONS(21259), 1, + anon_sym_RBRACE, + ACTIONS(31719), 1, + anon_sym_COMMA, + STATE(14784), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048225] = 5, + ACTIONS(23896), 1, + anon_sym_RBRACE, + ACTIONS(31721), 1, + anon_sym_COMMA, + STATE(16343), 1, + aux_sym_record_exp_repeat1, + STATE(20929), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048242] = 5, + ACTIONS(6153), 1, + anon_sym_RPAREN, + ACTIONS(31723), 1, + anon_sym_COMMA, + STATE(1236), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048259] = 5, + ACTIONS(6155), 1, + anon_sym_RPAREN, + ACTIONS(31725), 1, + anon_sym_SEMI, + STATE(1237), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048276] = 5, + ACTIONS(21259), 1, + anon_sym_RBRACE, + ACTIONS(31719), 1, + anon_sym_COMMA, + STATE(14784), 1, + aux_sym_record_exp_repeat1, + STATE(20933), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048293] = 5, + ACTIONS(21267), 1, + anon_sym_RBRACE, + ACTIONS(31727), 1, + anon_sym_COMMA, + STATE(14798), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048310] = 5, + ACTIONS(6727), 1, + anon_sym_RPAREN, + ACTIONS(26299), 1, + anon_sym_SEMI, + STATE(1509), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048327] = 5, + ACTIONS(4845), 1, + anon_sym_RBRACK, + ACTIONS(24685), 1, + anon_sym_COMMA, + STATE(977), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048344] = 5, + ACTIONS(4051), 1, + anon_sym_RBRACK, + ACTIONS(24713), 1, + anon_sym_COMMA, + STATE(707), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048361] = 5, + ACTIONS(21257), 1, + anon_sym_RBRACE, + ACTIONS(31715), 1, + anon_sym_COMMA, + STATE(14800), 1, + aux_sym_record_exp_repeat1, + STATE(21042), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048378] = 5, + ACTIONS(8893), 1, + anon_sym_RBRACK, + ACTIONS(24687), 1, + anon_sym_COMMA, + STATE(2512), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048395] = 5, + ACTIONS(31729), 1, + anon_sym_SEMI, + ACTIONS(31731), 1, + anon_sym_end, + STATE(1584), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048412] = 5, + ACTIONS(20956), 1, + anon_sym_RBRACE, + ACTIONS(31733), 1, + anon_sym_COMMA, + STATE(14648), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048429] = 5, + ACTIONS(3783), 1, + anon_sym_RBRACK, + ACTIONS(31735), 1, + anon_sym_COMMA, + STATE(618), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048446] = 3, + ACTIONS(31737), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20267), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + [1048459] = 4, + STATE(14324), 1, + sym_vid, + STATE(14378), 1, + sym_condesc, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1048474] = 5, + ACTIONS(20956), 1, + anon_sym_RBRACE, + ACTIONS(31733), 1, + anon_sym_COMMA, + STATE(14648), 1, + aux_sym_record_exp_repeat1, + STATE(20977), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048491] = 5, + ACTIONS(31739), 1, + anon_sym_SEMI, + ACTIONS(31741), 1, + anon_sym_end, + STATE(1985), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048508] = 5, + ACTIONS(31743), 1, + anon_sym_SEMI, + ACTIONS(31745), 1, + anon_sym_end, + STATE(1986), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048525] = 5, + ACTIONS(8895), 1, + anon_sym_RPAREN, + ACTIONS(31747), 1, + anon_sym_COMMA, + STATE(2514), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048542] = 5, + ACTIONS(8897), 1, + anon_sym_RPAREN, + ACTIONS(31749), 1, + anon_sym_SEMI, + STATE(2515), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048559] = 5, + ACTIONS(23964), 1, + anon_sym_RBRACE, + ACTIONS(31751), 1, + anon_sym_COMMA, + STATE(15987), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048576] = 5, + ACTIONS(23964), 1, + anon_sym_RBRACE, + ACTIONS(31751), 1, + anon_sym_COMMA, + STATE(15987), 1, + aux_sym_record_exp_repeat1, + STATE(20946), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048593] = 5, + ACTIONS(6157), 1, + anon_sym_RBRACK, + ACTIONS(31753), 1, + anon_sym_COMMA, + STATE(1238), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048610] = 5, + ACTIONS(31755), 1, + anon_sym_SEMI, + ACTIONS(31757), 1, + anon_sym_end, + STATE(1239), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048627] = 5, + ACTIONS(21261), 1, + anon_sym_RBRACE, + ACTIONS(31759), 1, + anon_sym_COMMA, + STATE(14786), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048644] = 5, + ACTIONS(8269), 1, + anon_sym_RPAREN, + ACTIONS(31761), 1, + anon_sym_COMMA, + STATE(2213), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048661] = 5, + ACTIONS(4847), 1, + anon_sym_RBRACK, + ACTIONS(31763), 1, + anon_sym_COMMA, + STATE(978), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048678] = 5, + ACTIONS(14707), 1, + anon_sym_RBRACK, + ACTIONS(26941), 1, + anon_sym_COMMA, + STATE(5888), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048695] = 5, + ACTIONS(23062), 1, + anon_sym_RBRACE, + ACTIONS(31765), 1, + anon_sym_COMMA, + STATE(15829), 1, + aux_sym_record_exp_repeat1, + STATE(20947), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048712] = 5, + ACTIONS(4015), 1, + anon_sym_RBRACK, + ACTIONS(26329), 1, + anon_sym_COMMA, + STATE(695), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048729] = 5, + ACTIONS(8927), 1, + anon_sym_RBRACK, + ACTIONS(31767), 1, + anon_sym_COMMA, + STATE(2517), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048746] = 5, + ACTIONS(31769), 1, + anon_sym_SEMI, + ACTIONS(31771), 1, + anon_sym_end, + STATE(1988), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048763] = 5, + ACTIONS(31773), 1, + anon_sym_SEMI, + ACTIONS(31775), 1, + anon_sym_end, + STATE(2518), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048780] = 5, + ACTIONS(8271), 1, + anon_sym_RPAREN, + ACTIONS(31777), 1, + anon_sym_SEMI, + STATE(2214), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048797] = 5, + ACTIONS(31779), 1, + anon_sym_SEMI, + ACTIONS(31781), 1, + anon_sym_end, + STATE(1242), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048814] = 5, + ACTIONS(31783), 1, + anon_sym_SEMI, + ACTIONS(31785), 1, + anon_sym_end, + STATE(1243), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048831] = 5, + ACTIONS(23000), 1, + anon_sym_RBRACE, + ACTIONS(31787), 1, + anon_sym_COMMA, + STATE(15783), 1, + aux_sym_record_exp_repeat1, + STATE(20954), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048848] = 5, + ACTIONS(23305), 1, + anon_sym_RBRACE, + ACTIONS(31789), 1, + anon_sym_COMMA, + STATE(16121), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048865] = 5, + ACTIONS(23080), 1, + anon_sym_RBRACE, + ACTIONS(31791), 1, + anon_sym_COMMA, + STATE(15840), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048882] = 5, + ACTIONS(23080), 1, + anon_sym_RBRACE, + ACTIONS(31791), 1, + anon_sym_COMMA, + STATE(15840), 1, + aux_sym_record_exp_repeat1, + STATE(20962), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048899] = 3, + ACTIONS(31795), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31793), 3, + anon_sym_LPAREN, + anon_sym_DOT, + sym__hol_alphanumeric, + [1048912] = 5, + ACTIONS(14883), 1, + anon_sym_RPAREN, + ACTIONS(26955), 1, + anon_sym_COMMA, + STATE(7900), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048929] = 5, + ACTIONS(20861), 1, + anon_sym_RBRACE, + ACTIONS(31797), 1, + anon_sym_COMMA, + STATE(14573), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048946] = 5, + ACTIONS(31799), 1, + anon_sym_SEMI, + ACTIONS(31801), 1, + anon_sym_end, + STATE(2521), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048963] = 5, + ACTIONS(31803), 1, + anon_sym_SEMI, + ACTIONS(31805), 1, + anon_sym_end, + STATE(2522), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048980] = 5, + ACTIONS(23006), 1, + anon_sym_RBRACE, + ACTIONS(31807), 1, + anon_sym_COMMA, + STATE(15784), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1048997] = 5, + ACTIONS(23006), 1, + anon_sym_RBRACE, + ACTIONS(31807), 1, + anon_sym_COMMA, + STATE(15784), 1, + aux_sym_record_exp_repeat1, + STATE(20958), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049014] = 5, + ACTIONS(23094), 1, + anon_sym_RBRACE, + ACTIONS(31809), 1, + anon_sym_COMMA, + STATE(15845), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049031] = 5, + ACTIONS(31811), 1, + anon_sym_SEMI, + ACTIONS(31813), 1, + anon_sym_end, + STATE(2524), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049048] = 5, + ACTIONS(23008), 1, + anon_sym_RBRACE, + ACTIONS(31815), 1, + anon_sym_COMMA, + STATE(15785), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049065] = 5, + ACTIONS(31817), 1, + anon_sym_SEMI, + ACTIONS(31819), 1, + anon_sym_end, + STATE(1245), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049082] = 5, + ACTIONS(4601), 1, + anon_sym_RBRACK, + ACTIONS(31821), 1, + anon_sym_COMMA, + STATE(894), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049099] = 5, + ACTIONS(6729), 1, + anon_sym_RBRACK, + ACTIONS(26331), 1, + anon_sym_COMMA, + STATE(1510), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049116] = 5, + ACTIONS(23096), 1, + anon_sym_RBRACE, + ACTIONS(31823), 1, + anon_sym_COMMA, + STATE(15853), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049133] = 5, + ACTIONS(8275), 1, + anon_sym_RBRACK, + ACTIONS(31825), 1, + anon_sym_COMMA, + STATE(2216), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049150] = 3, + STATE(7666), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31827), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1049163] = 5, + ACTIONS(31829), 1, + anon_sym_SEMI, + ACTIONS(31831), 1, + anon_sym_end, + STATE(2217), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049180] = 3, + STATE(6957), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31833), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1049193] = 5, + ACTIONS(6457), 1, + anon_sym_RBRACK, + ACTIONS(26343), 1, + anon_sym_COMMA, + STATE(1380), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049210] = 5, + ACTIONS(22938), 1, + anon_sym_RBRACE, + ACTIONS(31835), 1, + anon_sym_COMMA, + STATE(16118), 1, + aux_sym_record_exp_repeat1, + STATE(20990), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049227] = 3, + STATE(10651), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31837), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1049240] = 5, + ACTIONS(6731), 1, + anon_sym_RPAREN, + ACTIONS(31839), 1, + anon_sym_COMMA, + STATE(1512), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049257] = 5, + ACTIONS(20487), 1, + anon_sym_RBRACE, + ACTIONS(31841), 1, + anon_sym_COMMA, + STATE(14411), 1, + aux_sym_record_exp_repeat1, + STATE(20983), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049274] = 5, + ACTIONS(6733), 1, + anon_sym_RPAREN, + ACTIONS(31843), 1, + anon_sym_SEMI, + STATE(1513), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049291] = 5, + ACTIONS(21275), 1, + anon_sym_RBRACE, + ACTIONS(31845), 1, + anon_sym_COMMA, + STATE(14792), 1, + aux_sym_record_exp_repeat1, + STATE(20986), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049308] = 5, + ACTIONS(20992), 1, + anon_sym_RBRACE, + ACTIONS(31847), 1, + anon_sym_COMMA, + STATE(14690), 1, + aux_sym_record_exp_repeat1, + STATE(21278), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049325] = 5, + ACTIONS(31849), 1, + anon_sym_SEMI, + ACTIONS(31851), 1, + anon_sym_end, + STATE(2220), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049342] = 5, + ACTIONS(31853), 1, + anon_sym_SEMI, + ACTIONS(31855), 1, + anon_sym_end, + STATE(2221), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049359] = 5, + ACTIONS(20962), 1, + anon_sym_RBRACE, + ACTIONS(31857), 1, + anon_sym_COMMA, + STATE(14652), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049376] = 5, + ACTIONS(7747), 1, + anon_sym_RPAREN, + ACTIONS(26357), 1, + anon_sym_COMMA, + STATE(1996), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049393] = 5, + ACTIONS(7749), 1, + anon_sym_RPAREN, + ACTIONS(26359), 1, + anon_sym_SEMI, + STATE(1997), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049410] = 5, + ACTIONS(9003), 1, + anon_sym_RPAREN, + ACTIONS(24715), 1, + anon_sym_COMMA, + STATE(2533), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049427] = 5, + ACTIONS(23046), 1, + anon_sym_RBRACE, + ACTIONS(31859), 1, + anon_sym_COMMA, + STATE(15876), 1, + aux_sym_record_exp_repeat1, + STATE(21118), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049444] = 5, + ACTIONS(9005), 1, + anon_sym_RPAREN, + ACTIONS(24717), 1, + anon_sym_SEMI, + STATE(2534), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049461] = 5, + ACTIONS(20499), 1, + anon_sym_RBRACE, + ACTIONS(31861), 1, + anon_sym_COMMA, + STATE(14413), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049478] = 5, + ACTIONS(20499), 1, + anon_sym_RBRACE, + ACTIONS(31861), 1, + anon_sym_COMMA, + STATE(14413), 1, + aux_sym_record_exp_repeat1, + STATE(21001), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049495] = 5, + ACTIONS(4431), 1, + anon_sym_RBRACK, + ACTIONS(26361), 1, + anon_sym_COMMA, + STATE(833), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049512] = 5, + ACTIONS(21279), 1, + anon_sym_RBRACE, + ACTIONS(31863), 1, + anon_sym_COMMA, + STATE(14793), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049529] = 5, + ACTIONS(21279), 1, + anon_sym_RBRACE, + ACTIONS(31863), 1, + anon_sym_COMMA, + STATE(14793), 1, + aux_sym_record_exp_repeat1, + STATE(20999), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049546] = 5, + ACTIONS(7751), 1, + anon_sym_RBRACK, + ACTIONS(26363), 1, + anon_sym_COMMA, + STATE(1998), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049563] = 5, + ACTIONS(4863), 1, + anon_sym_RBRACK, + ACTIONS(24719), 1, + anon_sym_COMMA, + STATE(983), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049580] = 5, + ACTIONS(23542), 1, + anon_sym_RBRACE, + ACTIONS(31865), 1, + anon_sym_COMMA, + STATE(16284), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049597] = 3, + STATE(10371), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31867), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1049610] = 5, + ACTIONS(9007), 1, + anon_sym_RBRACK, + ACTIONS(24721), 1, + anon_sym_COMMA, + STATE(2535), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049627] = 5, + ACTIONS(4017), 1, + anon_sym_RBRACK, + ACTIONS(31869), 1, + anon_sym_COMMA, + STATE(696), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049644] = 5, + ACTIONS(23542), 1, + anon_sym_RBRACE, + ACTIONS(31865), 1, + anon_sym_COMMA, + STATE(16284), 1, + aux_sym_record_exp_repeat1, + STATE(21034), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049661] = 5, + ACTIONS(9009), 1, + anon_sym_RPAREN, + ACTIONS(31871), 1, + anon_sym_COMMA, + STATE(2537), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049678] = 5, + ACTIONS(9011), 1, + anon_sym_RPAREN, + ACTIONS(31873), 1, + anon_sym_SEMI, + STATE(2538), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049695] = 5, + ACTIONS(7753), 1, + anon_sym_RPAREN, + ACTIONS(31875), 1, + anon_sym_COMMA, + STATE(2000), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049712] = 5, + ACTIONS(7755), 1, + anon_sym_RPAREN, + ACTIONS(31877), 1, + anon_sym_SEMI, + STATE(2001), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049729] = 5, + ACTIONS(21281), 1, + anon_sym_RBRACE, + ACTIONS(31879), 1, + anon_sym_COMMA, + STATE(14795), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049746] = 5, + ACTIONS(6735), 1, + anon_sym_RBRACK, + ACTIONS(31881), 1, + anon_sym_COMMA, + STATE(1514), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049763] = 5, + ACTIONS(20503), 1, + anon_sym_RBRACE, + ACTIONS(31883), 1, + anon_sym_COMMA, + STATE(14416), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049780] = 5, + ACTIONS(4433), 1, + anon_sym_RBRACK, + ACTIONS(31885), 1, + anon_sym_COMMA, + STATE(834), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049797] = 5, + ACTIONS(7757), 1, + anon_sym_RBRACK, + ACTIONS(31887), 1, + anon_sym_COMMA, + STATE(2002), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049814] = 5, + ACTIONS(31889), 1, + anon_sym_SEMI, + ACTIONS(31891), 1, + anon_sym_end, + STATE(1515), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049831] = 5, + ACTIONS(31893), 1, + anon_sym_SEMI, + ACTIONS(31895), 1, + anon_sym_end, + STATE(2003), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049848] = 5, + ACTIONS(4865), 1, + anon_sym_RBRACK, + ACTIONS(31897), 1, + anon_sym_COMMA, + STATE(984), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049865] = 5, + ACTIONS(22920), 1, + anon_sym_RBRACE, + ACTIONS(31899), 1, + anon_sym_COMMA, + STATE(15794), 1, + aux_sym_record_exp_repeat1, + STATE(21024), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049882] = 5, + ACTIONS(9013), 1, + anon_sym_RBRACK, + ACTIONS(31901), 1, + anon_sym_COMMA, + STATE(2539), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049899] = 5, + ACTIONS(31903), 1, + anon_sym_SEMI, + ACTIONS(31905), 1, + anon_sym_end, + STATE(2540), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049916] = 3, + STATE(8283), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31907), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1049929] = 5, + ACTIONS(23058), 1, + anon_sym_RBRACE, + ACTIONS(31909), 1, + anon_sym_COMMA, + STATE(15825), 1, + aux_sym_record_exp_repeat1, + STATE(21022), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049946] = 5, + ACTIONS(21349), 1, + anon_sym_RBRACE, + ACTIONS(31911), 1, + anon_sym_COMMA, + STATE(14832), 1, + aux_sym_record_exp_repeat1, + STATE(21029), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049963] = 5, + ACTIONS(6817), 1, + anon_sym_RBRACK, + ACTIONS(24870), 1, + anon_sym_COMMA, + STATE(1552), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049980] = 5, + ACTIONS(20569), 1, + anon_sym_RBRACE, + ACTIONS(31913), 1, + anon_sym_COMMA, + STATE(14444), 1, + aux_sym_record_exp_repeat1, + STATE(21085), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1049997] = 5, + ACTIONS(23262), 1, + anon_sym_RBRACE, + ACTIONS(31915), 1, + anon_sym_COMMA, + STATE(16015), 1, + aux_sym_record_exp_repeat1, + STATE(21081), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050014] = 5, + ACTIONS(31917), 1, + anon_sym_SEMI, + ACTIONS(31919), 1, + anon_sym_end, + STATE(2006), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050031] = 5, + ACTIONS(31921), 1, + anon_sym_SEMI, + ACTIONS(31923), 1, + anon_sym_end, + STATE(2223), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050048] = 5, + ACTIONS(31925), 1, + anon_sym_SEMI, + ACTIONS(31927), 1, + anon_sym_end, + STATE(2543), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050065] = 5, + ACTIONS(31929), 1, + anon_sym_SEMI, + ACTIONS(31931), 1, + anon_sym_end, + STATE(1136), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050082] = 5, + ACTIONS(31933), 1, + anon_sym_SEMI, + ACTIONS(31935), 1, + anon_sym_end, + STATE(2544), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050099] = 5, + ACTIONS(31937), 1, + anon_sym_SEMI, + ACTIONS(31939), 1, + anon_sym_end, + STATE(2007), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050116] = 5, + ACTIONS(23072), 1, + anon_sym_RBRACE, + ACTIONS(31941), 1, + anon_sym_COMMA, + STATE(15833), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050133] = 5, + ACTIONS(23072), 1, + anon_sym_RBRACE, + ACTIONS(31941), 1, + anon_sym_COMMA, + STATE(15833), 1, + aux_sym_record_exp_repeat1, + STATE(21038), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050150] = 5, + ACTIONS(23028), 1, + anon_sym_RBRACE, + ACTIONS(31943), 1, + anon_sym_COMMA, + STATE(15854), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050167] = 5, + ACTIONS(23028), 1, + anon_sym_RBRACE, + ACTIONS(31943), 1, + anon_sym_COMMA, + STATE(15854), 1, + aux_sym_record_exp_repeat1, + STATE(21039), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050184] = 5, + ACTIONS(6191), 1, + anon_sym_RPAREN, + ACTIONS(26411), 1, + anon_sym_COMMA, + STATE(1252), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050201] = 5, + ACTIONS(9741), 1, + anon_sym_RPAREN, + ACTIONS(26413), 1, + anon_sym_SEMI, + STATE(1253), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050218] = 4, + STATE(13435), 1, + sym_hol_identifier, + STATE(24883), 1, + sym_hol_eqn, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27983), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + [1050233] = 5, + ACTIONS(21359), 1, + anon_sym_RBRACE, + ACTIONS(31945), 1, + anon_sym_COMMA, + STATE(14835), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050250] = 5, + ACTIONS(21359), 1, + anon_sym_RBRACE, + ACTIONS(31945), 1, + anon_sym_COMMA, + STATE(14835), 1, + aux_sym_record_exp_repeat1, + STATE(21044), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050267] = 5, + ACTIONS(3799), 1, + anon_sym_RBRACK, + ACTIONS(26415), 1, + anon_sym_COMMA, + STATE(623), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050284] = 5, + ACTIONS(20745), 1, + anon_sym_RBRACE, + ACTIONS(31947), 1, + anon_sym_COMMA, + STATE(14520), 1, + aux_sym_record_exp_repeat1, + STATE(21105), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050301] = 5, + ACTIONS(31949), 1, + anon_sym_SEMI, + ACTIONS(31951), 1, + anon_sym_end, + STATE(1137), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050318] = 5, + ACTIONS(23846), 1, + anon_sym_RBRACE, + ACTIONS(31953), 1, + anon_sym_COMMA, + STATE(16334), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050335] = 5, + ACTIONS(6193), 1, + anon_sym_RBRACK, + ACTIONS(26417), 1, + anon_sym_COMMA, + STATE(1254), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050352] = 5, + ACTIONS(31955), 1, + anon_sym_SEMI, + ACTIONS(31957), 1, + anon_sym_end, + STATE(2546), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050369] = 5, + ACTIONS(31959), 1, + anon_sym_SEMI, + ACTIONS(31961), 1, + anon_sym_end, + STATE(2009), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050386] = 5, + ACTIONS(23086), 1, + anon_sym_RBRACE, + ACTIONS(31963), 1, + anon_sym_COMMA, + STATE(15834), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050403] = 5, + ACTIONS(23119), 1, + anon_sym_RBRACE, + ACTIONS(31965), 1, + anon_sym_COMMA, + STATE(15952), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050420] = 5, + ACTIONS(14885), 1, + anon_sym_RPAREN, + ACTIONS(31967), 1, + anon_sym_COMMA, + STATE(7902), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050437] = 5, + ACTIONS(6195), 1, + anon_sym_RPAREN, + ACTIONS(31969), 1, + anon_sym_COMMA, + STATE(1256), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050454] = 5, + ACTIONS(21293), 1, + anon_sym_RBRACE, + ACTIONS(31971), 1, + anon_sym_COMMA, + STATE(14819), 1, + aux_sym_record_exp_repeat1, + STATE(20410), 1, + aux_sym_record_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050471] = 5, + ACTIONS(6197), 1, + anon_sym_RPAREN, + ACTIONS(31973), 1, + anon_sym_SEMI, + STATE(1257), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050488] = 5, + ACTIONS(21367), 1, + anon_sym_RBRACE, + ACTIONS(31975), 1, + anon_sym_COMMA, + STATE(14837), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050505] = 5, + ACTIONS(20657), 1, + anon_sym_RBRACE, + ACTIONS(31977), 1, + anon_sym_COMMA, + STATE(14498), 1, + aux_sym_record_exp_repeat1, + STATE(19324), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050522] = 5, + ACTIONS(3801), 1, + anon_sym_RBRACK, + ACTIONS(31979), 1, + anon_sym_COMMA, + STATE(624), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050539] = 5, + ACTIONS(6199), 1, + anon_sym_RBRACK, + ACTIONS(31981), 1, + anon_sym_COMMA, + STATE(1258), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050556] = 5, + ACTIONS(31983), 1, + anon_sym_SEMI, + ACTIONS(31985), 1, + anon_sym_end, + STATE(1259), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050573] = 3, + STATE(7201), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(31987), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1050586] = 5, + ACTIONS(20521), 1, + anon_sym_RBRACE, + ACTIONS(31989), 1, + anon_sym_COMMA, + STATE(14548), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050603] = 5, + ACTIONS(23264), 1, + anon_sym_RBRACE, + ACTIONS(31991), 1, + anon_sym_COMMA, + STATE(15972), 1, + aux_sym_record_exp_repeat1, + STATE(21067), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050620] = 5, + ACTIONS(20673), 1, + anon_sym_RBRACE, + ACTIONS(30696), 1, + anon_sym_COMMA, + STATE(14491), 1, + aux_sym_record_exp_repeat1, + STATE(20106), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050637] = 5, + ACTIONS(14709), 1, + anon_sym_RBRACK, + ACTIONS(31993), 1, + anon_sym_COMMA, + STATE(5891), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050654] = 5, + ACTIONS(7077), 1, + anon_sym_RPAREN, + ACTIONS(24755), 1, + anon_sym_COMMA, + STATE(1676), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050671] = 5, + ACTIONS(21301), 1, + anon_sym_RBRACE, + ACTIONS(31995), 1, + anon_sym_COMMA, + STATE(14804), 1, + aux_sym_record_exp_repeat1, + STATE(21071), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050688] = 5, + ACTIONS(31997), 1, + anon_sym_SEMI, + ACTIONS(31999), 1, + anon_sym_end, + STATE(1518), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050705] = 5, + ACTIONS(14903), 1, + anon_sym_RPAREN, + ACTIONS(32001), 1, + anon_sym_COMMA, + STATE(7903), 1, + aux_sym_record_exp_repeat1, + STATE(18719), 1, + aux_sym_tuple_pat_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050722] = 5, + ACTIONS(32003), 1, + anon_sym_SEMI, + ACTIONS(32005), 1, + anon_sym_end, + STATE(1519), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050739] = 3, + STATE(6102), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32007), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1050752] = 5, + ACTIONS(32009), 1, + anon_sym_SEMI, + ACTIONS(32011), 1, + anon_sym_end, + STATE(1262), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050769] = 5, + ACTIONS(32013), 1, + anon_sym_SEMI, + ACTIONS(32015), 1, + anon_sym_end, + STATE(2093), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050786] = 5, + ACTIONS(32017), 1, + anon_sym_SEMI, + ACTIONS(32019), 1, + anon_sym_end, + STATE(1263), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050803] = 4, + ACTIONS(30762), 1, + anon_sym_STAR, + STATE(21090), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15958), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + [1050818] = 5, + ACTIONS(7079), 1, + anon_sym_RPAREN, + ACTIONS(24761), 1, + anon_sym_SEMI, + STATE(1677), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050835] = 5, + ACTIONS(9047), 1, + anon_sym_RPAREN, + ACTIONS(24757), 1, + anon_sym_COMMA, + STATE(2554), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050852] = 5, + ACTIONS(9049), 1, + anon_sym_RPAREN, + ACTIONS(24759), 1, + anon_sym_SEMI, + STATE(2555), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050869] = 5, + ACTIONS(23284), 1, + anon_sym_RBRACE, + ACTIONS(32021), 1, + anon_sym_COMMA, + STATE(15977), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050886] = 3, + STATE(4301), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32023), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1050899] = 5, + ACTIONS(23284), 1, + anon_sym_RBRACE, + ACTIONS(32021), 1, + anon_sym_COMMA, + STATE(15977), 1, + aux_sym_record_exp_repeat1, + STATE(21077), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050916] = 5, + ACTIONS(23490), 1, + anon_sym_RBRACE, + ACTIONS(32025), 1, + anon_sym_COMMA, + STATE(16102), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050933] = 5, + ACTIONS(21303), 1, + anon_sym_RBRACE, + ACTIONS(32027), 1, + anon_sym_COMMA, + STATE(14807), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050950] = 5, + ACTIONS(21303), 1, + anon_sym_RBRACE, + ACTIONS(32027), 1, + anon_sym_COMMA, + STATE(14807), 1, + aux_sym_record_exp_repeat1, + STATE(21091), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050967] = 5, + ACTIONS(20521), 1, + anon_sym_RBRACE, + ACTIONS(31989), 1, + anon_sym_COMMA, + STATE(14548), 1, + aux_sym_record_exp_repeat1, + STATE(19930), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1050984] = 5, + ACTIONS(8049), 1, + anon_sym_RPAREN, + ACTIONS(25318), 1, + anon_sym_COMMA, + STATE(2123), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051001] = 5, + ACTIONS(32029), 1, + anon_sym_SEMI, + ACTIONS(32031), 1, + anon_sym_end, + STATE(1265), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051018] = 5, + ACTIONS(20549), 1, + anon_sym_RBRACE, + ACTIONS(32033), 1, + anon_sym_COMMA, + STATE(14436), 1, + aux_sym_record_exp_repeat1, + STATE(21098), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051035] = 5, + ACTIONS(23288), 1, + anon_sym_RBRACE, + ACTIONS(32035), 1, + anon_sym_COMMA, + STATE(15979), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051052] = 5, + ACTIONS(4881), 1, + anon_sym_RBRACK, + ACTIONS(24763), 1, + anon_sym_COMMA, + STATE(989), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051069] = 5, + ACTIONS(23210), 1, + anon_sym_RBRACE, + ACTIONS(31717), 1, + anon_sym_COMMA, + STATE(16241), 1, + aux_sym_record_exp_repeat1, + STATE(20097), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051086] = 3, + STATE(11575), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32037), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1051099] = 5, + ACTIONS(23360), 1, + anon_sym_RBRACE, + ACTIONS(32039), 1, + anon_sym_COMMA, + STATE(16058), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051116] = 5, + ACTIONS(9051), 1, + anon_sym_RBRACK, + ACTIONS(24765), 1, + anon_sym_COMMA, + STATE(2556), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051133] = 5, + ACTIONS(8051), 1, + anon_sym_RPAREN, + ACTIONS(25398), 1, + anon_sym_SEMI, + STATE(2124), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051150] = 5, + ACTIONS(20892), 1, + anon_sym_RBRACE, + ACTIONS(32041), 1, + anon_sym_COMMA, + STATE(14583), 1, + aux_sym_record_exp_repeat1, + STATE(21155), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051167] = 5, + ACTIONS(20575), 1, + anon_sym_RBRACE, + ACTIONS(32043), 1, + anon_sym_COMMA, + STATE(14445), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051184] = 5, + ACTIONS(9053), 1, + anon_sym_RPAREN, + ACTIONS(32045), 1, + anon_sym_COMMA, + STATE(2558), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051201] = 5, + ACTIONS(9055), 1, + anon_sym_RPAREN, + ACTIONS(32047), 1, + anon_sym_SEMI, + STATE(2559), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051218] = 5, + ACTIONS(20575), 1, + anon_sym_RBRACE, + ACTIONS(32043), 1, + anon_sym_COMMA, + STATE(14445), 1, + aux_sym_record_exp_repeat1, + STATE(21143), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051235] = 5, + ACTIONS(23360), 1, + anon_sym_RBRACE, + ACTIONS(32039), 1, + anon_sym_COMMA, + STATE(16058), 1, + aux_sym_record_exp_repeat1, + STATE(21131), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051252] = 4, + ACTIONS(32049), 1, + anon_sym_STAR, + STATE(21090), 1, + aux_sym_tuple_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + [1051267] = 5, + ACTIONS(21305), 1, + anon_sym_RBRACE, + ACTIONS(32052), 1, + anon_sym_COMMA, + STATE(14810), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051284] = 5, + ACTIONS(7791), 1, + anon_sym_RPAREN, + ACTIONS(26472), 1, + anon_sym_COMMA, + STATE(2017), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051301] = 5, + ACTIONS(7793), 1, + anon_sym_RPAREN, + ACTIONS(26474), 1, + anon_sym_SEMI, + STATE(2018), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051318] = 5, + ACTIONS(4883), 1, + anon_sym_RBRACK, + ACTIONS(32054), 1, + anon_sym_COMMA, + STATE(990), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051335] = 5, + ACTIONS(9057), 1, + anon_sym_RBRACK, + ACTIONS(32056), 1, + anon_sym_COMMA, + STATE(2560), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051352] = 5, + ACTIONS(32058), 1, + anon_sym_SEMI, + ACTIONS(32060), 1, + anon_sym_end, + STATE(2561), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051369] = 5, + ACTIONS(23145), 1, + anon_sym_RBRACE, + ACTIONS(32062), 1, + anon_sym_COMMA, + STATE(15877), 1, + aux_sym_record_exp_repeat1, + STATE(21111), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051386] = 5, + ACTIONS(20551), 1, + anon_sym_RBRACE, + ACTIONS(32064), 1, + anon_sym_COMMA, + STATE(14438), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051403] = 5, + ACTIONS(20551), 1, + anon_sym_RBRACE, + ACTIONS(32064), 1, + anon_sym_COMMA, + STATE(14438), 1, + aux_sym_record_exp_repeat1, + STATE(21117), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051420] = 5, + ACTIONS(4159), 1, + anon_sym_RBRACK, + ACTIONS(24779), 1, + anon_sym_COMMA, + STATE(743), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051437] = 4, + ACTIONS(32066), 1, + anon_sym_SEMI, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14031), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + [1051452] = 5, + ACTIONS(4443), 1, + anon_sym_RBRACK, + ACTIONS(26480), 1, + anon_sym_COMMA, + STATE(839), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051469] = 5, + ACTIONS(7081), 1, + anon_sym_RBRACK, + ACTIONS(24781), 1, + anon_sym_COMMA, + STATE(1678), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051486] = 5, + ACTIONS(32069), 1, + anon_sym_COMMA, + ACTIONS(32072), 1, + anon_sym_RBRACE, + STATE(17725), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051503] = 5, + ACTIONS(20749), 1, + anon_sym_RBRACE, + ACTIONS(32074), 1, + anon_sym_COMMA, + STATE(14521), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051520] = 5, + ACTIONS(32076), 1, + anon_sym_SEMI, + ACTIONS(32078), 1, + anon_sym_end, + STATE(2564), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051537] = 5, + ACTIONS(7795), 1, + anon_sym_RBRACK, + ACTIONS(26490), 1, + anon_sym_COMMA, + STATE(2019), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051554] = 5, + ACTIONS(32080), 1, + anon_sym_SEMI, + ACTIONS(32082), 1, + anon_sym_end, + STATE(2565), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051571] = 5, + ACTIONS(30311), 1, + anon_sym_COLON, + ACTIONS(30313), 1, + anon_sym_PIPE, + ACTIONS(30317), 1, + anon_sym_as, + ACTIONS(32084), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051588] = 3, + STATE(7515), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32086), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1051601] = 5, + ACTIONS(23162), 1, + anon_sym_RBRACE, + ACTIONS(32088), 1, + anon_sym_COMMA, + STATE(15878), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051618] = 5, + ACTIONS(23162), 1, + anon_sym_RBRACE, + ACTIONS(32088), 1, + anon_sym_COMMA, + STATE(15878), 1, + aux_sym_record_exp_repeat1, + STATE(21121), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051635] = 5, + ACTIONS(21402), 1, + anon_sym_RBRACE, + ACTIONS(32090), 1, + anon_sym_COMMA, + STATE(14852), 1, + aux_sym_record_exp_repeat1, + STATE(21126), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051652] = 5, + ACTIONS(7797), 1, + anon_sym_RPAREN, + ACTIONS(32092), 1, + anon_sym_COMMA, + STATE(2021), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051669] = 5, + ACTIONS(7799), 1, + anon_sym_RPAREN, + ACTIONS(32094), 1, + anon_sym_SEMI, + STATE(2022), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051686] = 5, + ACTIONS(32096), 1, + anon_sym_SEMI, + ACTIONS(32098), 1, + anon_sym_end, + STATE(1521), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051703] = 5, + ACTIONS(20557), 1, + anon_sym_RBRACE, + ACTIONS(32100), 1, + anon_sym_COMMA, + STATE(14441), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051720] = 5, + ACTIONS(23160), 1, + anon_sym_RBRACE, + ACTIONS(32102), 1, + anon_sym_COMMA, + STATE(15930), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051737] = 5, + ACTIONS(23160), 1, + anon_sym_RBRACE, + ACTIONS(32102), 1, + anon_sym_COMMA, + STATE(15930), 1, + aux_sym_record_exp_repeat1, + STATE(21268), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051754] = 5, + ACTIONS(32104), 1, + anon_sym_SEMI, + ACTIONS(32106), 1, + anon_sym_end, + STATE(2567), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051771] = 5, + ACTIONS(23164), 1, + anon_sym_RBRACE, + ACTIONS(32108), 1, + anon_sym_COMMA, + STATE(15879), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051788] = 5, + ACTIONS(6233), 1, + anon_sym_RPAREN, + ACTIONS(26508), 1, + anon_sym_COMMA, + STATE(1273), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051805] = 5, + ACTIONS(6235), 1, + anon_sym_RPAREN, + ACTIONS(26510), 1, + anon_sym_SEMI, + STATE(1274), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051822] = 5, + ACTIONS(20749), 1, + anon_sym_RBRACE, + ACTIONS(32074), 1, + anon_sym_COMMA, + STATE(14521), 1, + aux_sym_record_exp_repeat1, + STATE(19264), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051839] = 5, + ACTIONS(4445), 1, + anon_sym_RBRACK, + ACTIONS(32110), 1, + anon_sym_COMMA, + STATE(840), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051856] = 5, + ACTIONS(21410), 1, + anon_sym_RBRACE, + ACTIONS(32112), 1, + anon_sym_COMMA, + STATE(14855), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051873] = 5, + ACTIONS(21410), 1, + anon_sym_RBRACE, + ACTIONS(32112), 1, + anon_sym_COMMA, + STATE(14855), 1, + aux_sym_record_exp_repeat1, + STATE(21145), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051890] = 5, + ACTIONS(3817), 1, + anon_sym_RBRACK, + ACTIONS(26512), 1, + anon_sym_COMMA, + STATE(629), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051907] = 5, + ACTIONS(6237), 1, + anon_sym_RBRACK, + ACTIONS(26514), 1, + anon_sym_COMMA, + STATE(1275), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051924] = 5, + ACTIONS(7801), 1, + anon_sym_RBRACK, + ACTIONS(32114), 1, + anon_sym_COMMA, + STATE(2023), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051941] = 5, + ACTIONS(23428), 1, + anon_sym_RBRACE, + ACTIONS(32116), 1, + anon_sym_COMMA, + STATE(16074), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051958] = 5, + ACTIONS(22632), 1, + anon_sym_RBRACE, + ACTIONS(32118), 1, + anon_sym_COMMA, + STATE(16233), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051975] = 5, + ACTIONS(4527), 1, + anon_sym_RBRACK, + ACTIONS(25422), 1, + anon_sym_COMMA, + STATE(869), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1051992] = 3, + ACTIONS(32122), 1, + aux_sym__quote_content_token1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32120), 3, + anon_sym_CARET, + anon_sym_u2019, + anon_sym_BQUOTE, + [1052005] = 5, + ACTIONS(8313), 1, + anon_sym_RPAREN, + ACTIONS(26249), 1, + anon_sym_COMMA, + STATE(2232), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052022] = 5, + ACTIONS(7083), 1, + anon_sym_RPAREN, + ACTIONS(32124), 1, + anon_sym_COMMA, + STATE(1680), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052039] = 5, + ACTIONS(32126), 1, + anon_sym_SEMI, + ACTIONS(32128), 1, + anon_sym_end, + STATE(2024), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052056] = 5, + ACTIONS(7085), 1, + anon_sym_RPAREN, + ACTIONS(32130), 1, + anon_sym_SEMI, + STATE(1681), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052073] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14005), 4, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + anon_sym_STAR, + [1052084] = 3, + STATE(6480), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32132), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1052097] = 5, + ACTIONS(6239), 1, + anon_sym_RPAREN, + ACTIONS(32134), 1, + anon_sym_COMMA, + STATE(1277), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052114] = 5, + ACTIONS(6241), 1, + anon_sym_RPAREN, + ACTIONS(32136), 1, + anon_sym_SEMI, + STATE(1278), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052131] = 5, + ACTIONS(20577), 1, + anon_sym_RBRACE, + ACTIONS(32138), 1, + anon_sym_COMMA, + STATE(14446), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052148] = 5, + ACTIONS(23270), 1, + anon_sym_RBRACE, + ACTIONS(32140), 1, + anon_sym_COMMA, + STATE(15604), 1, + aux_sym_record_exp_repeat1, + STATE(21169), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052165] = 5, + ACTIONS(21416), 1, + anon_sym_RBRACE, + ACTIONS(32142), 1, + anon_sym_COMMA, + STATE(14857), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052182] = 5, + ACTIONS(8315), 1, + anon_sym_RPAREN, + ACTIONS(26251), 1, + anon_sym_SEMI, + STATE(2233), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052199] = 5, + ACTIONS(3819), 1, + anon_sym_RBRACK, + ACTIONS(32144), 1, + anon_sym_COMMA, + STATE(630), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052216] = 5, + ACTIONS(6243), 1, + anon_sym_RBRACK, + ACTIONS(32146), 1, + anon_sym_COMMA, + STATE(1279), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052233] = 5, + ACTIONS(32148), 1, + anon_sym_SEMI, + ACTIONS(32150), 1, + anon_sym_end, + STATE(1280), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052250] = 5, + ACTIONS(32152), 1, + anon_sym_SEMI, + ACTIONS(32154), 1, + anon_sym_end, + STATE(1139), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052267] = 5, + ACTIONS(21333), 1, + anon_sym_RBRACE, + ACTIONS(32156), 1, + anon_sym_COMMA, + STATE(14820), 1, + aux_sym_record_exp_repeat1, + STATE(21176), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052284] = 5, + ACTIONS(23394), 1, + anon_sym_RBRACE, + ACTIONS(32158), 1, + anon_sym_COMMA, + STATE(16043), 1, + aux_sym_record_exp_repeat1, + STATE(21161), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052301] = 5, + ACTIONS(6459), 1, + anon_sym_RPAREN, + ACTIONS(32160), 1, + anon_sym_COMMA, + STATE(1382), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052318] = 5, + ACTIONS(6819), 1, + anon_sym_RPAREN, + ACTIONS(32162), 1, + anon_sym_COMMA, + STATE(1554), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052335] = 5, + ACTIONS(20894), 1, + anon_sym_RBRACE, + ACTIONS(32164), 1, + anon_sym_COMMA, + STATE(14584), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052352] = 5, + ACTIONS(4161), 1, + anon_sym_RBRACK, + ACTIONS(32166), 1, + anon_sym_COMMA, + STATE(744), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052369] = 5, + ACTIONS(32168), 1, + anon_sym_SEMI, + ACTIONS(32170), 1, + anon_sym_end, + STATE(1283), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052386] = 5, + ACTIONS(32172), 1, + anon_sym_SEMI, + ACTIONS(32174), 1, + anon_sym_end, + STATE(1284), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052403] = 5, + ACTIONS(20894), 1, + anon_sym_RBRACE, + ACTIONS(32164), 1, + anon_sym_COMMA, + STATE(14584), 1, + aux_sym_record_exp_repeat1, + STATE(21260), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052420] = 5, + ACTIONS(6461), 1, + anon_sym_RPAREN, + ACTIONS(32176), 1, + anon_sym_SEMI, + STATE(1383), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052437] = 5, + ACTIONS(23404), 1, + anon_sym_RBRACE, + ACTIONS(32178), 1, + anon_sym_COMMA, + STATE(16045), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052454] = 5, + ACTIONS(23404), 1, + anon_sym_RBRACE, + ACTIONS(32178), 1, + anon_sym_COMMA, + STATE(16045), 1, + aux_sym_record_exp_repeat1, + STATE(21166), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052471] = 3, + ACTIONS(32180), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 3, + anon_sym_and, + anon_sym_with, + anon_sym_DASH_GT, + [1052484] = 5, + ACTIONS(32182), 1, + anon_sym_SEMI, + ACTIONS(32184), 1, + anon_sym_end, + STATE(1286), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052501] = 5, + ACTIONS(32186), 1, + anon_sym_SEMI, + ACTIONS(32188), 1, + anon_sym_end, + STATE(2027), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052518] = 5, + ACTIONS(23408), 1, + anon_sym_RBRACE, + ACTIONS(32190), 1, + anon_sym_COMMA, + STATE(16047), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052535] = 5, + ACTIONS(32192), 1, + anon_sym_SEMI, + ACTIONS(32194), 1, + anon_sym_end, + STATE(2028), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052552] = 5, + ACTIONS(9091), 1, + anon_sym_RPAREN, + ACTIONS(24797), 1, + anon_sym_COMMA, + STATE(2575), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052569] = 5, + ACTIONS(22664), 1, + anon_sym_RBRACE, + ACTIONS(32196), 1, + anon_sym_COMMA, + STATE(15674), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052586] = 5, + ACTIONS(9093), 1, + anon_sym_RPAREN, + ACTIONS(24799), 1, + anon_sym_SEMI, + STATE(2576), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052603] = 5, + ACTIONS(21347), 1, + anon_sym_RBRACE, + ACTIONS(32198), 1, + anon_sym_COMMA, + STATE(14829), 1, + aux_sym_record_exp_repeat1, + STATE(19287), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052620] = 5, + ACTIONS(22664), 1, + anon_sym_RBRACE, + ACTIONS(32196), 1, + anon_sym_COMMA, + STATE(15674), 1, + aux_sym_record_exp_repeat1, + STATE(21179), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052637] = 5, + ACTIONS(7087), 1, + anon_sym_RBRACK, + ACTIONS(32200), 1, + anon_sym_COMMA, + STATE(1682), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052654] = 4, + ACTIONS(27499), 1, + anon_sym_u2227, + STATE(21205), 1, + aux_sym_hol_fn_spec_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32202), 2, + anon_sym_End, + anon_sym_Termination, + [1052669] = 4, + ACTIONS(27501), 1, + anon_sym_SLASH_BSLASH, + STATE(21218), 1, + aux_sym_hol_fn_spec_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32202), 2, + anon_sym_End, + anon_sym_Termination, + [1052684] = 5, + ACTIONS(21337), 1, + anon_sym_RBRACE, + ACTIONS(32204), 1, + anon_sym_COMMA, + STATE(14822), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052701] = 5, + ACTIONS(21337), 1, + anon_sym_RBRACE, + ACTIONS(32204), 1, + anon_sym_COMMA, + STATE(14822), 1, + aux_sym_record_exp_repeat1, + STATE(21191), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052718] = 5, + ACTIONS(32206), 1, + anon_sym_SEMI, + ACTIONS(32208), 1, + anon_sym_end, + STATE(2030), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052735] = 5, + ACTIONS(22798), 1, + anon_sym_RBRACE, + ACTIONS(32210), 1, + anon_sym_COMMA, + STATE(15905), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052752] = 4, + STATE(15764), 1, + sym_hol_identifier, + STATE(24827), 1, + sym_hol_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28486), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + [1052767] = 5, + ACTIONS(4617), 1, + anon_sym_RBRACK, + ACTIONS(26261), 1, + anon_sym_COMMA, + STATE(899), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052784] = 5, + ACTIONS(4899), 1, + anon_sym_RBRACK, + ACTIONS(24801), 1, + anon_sym_COMMA, + STATE(995), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052801] = 3, + STATE(10597), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32212), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1052814] = 5, + ACTIONS(8053), 1, + anon_sym_RBRACK, + ACTIONS(25486), 1, + anon_sym_COMMA, + STATE(2125), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052831] = 5, + ACTIONS(9095), 1, + anon_sym_RBRACK, + ACTIONS(24803), 1, + anon_sym_COMMA, + STATE(2577), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052848] = 5, + ACTIONS(21442), 1, + anon_sym_RBRACE, + ACTIONS(32214), 1, + anon_sym_COMMA, + STATE(14868), 1, + aux_sym_record_exp_repeat1, + STATE(21196), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052865] = 5, + ACTIONS(8317), 1, + anon_sym_RBRACK, + ACTIONS(26265), 1, + anon_sym_COMMA, + STATE(2234), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052882] = 5, + ACTIONS(32216), 1, + anon_sym_SEMI, + ACTIONS(32218), 1, + anon_sym_end, + STATE(1683), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052899] = 5, + ACTIONS(9097), 1, + anon_sym_RPAREN, + ACTIONS(32220), 1, + anon_sym_COMMA, + STATE(2579), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052916] = 5, + ACTIONS(9099), 1, + anon_sym_RPAREN, + ACTIONS(32222), 1, + anon_sym_SEMI, + STATE(2580), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052933] = 5, + ACTIONS(21343), 1, + anon_sym_RBRACE, + ACTIONS(32224), 1, + anon_sym_COMMA, + STATE(14824), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052950] = 5, + ACTIONS(21018), 1, + anon_sym_RBRACE, + ACTIONS(32226), 1, + anon_sym_COMMA, + STATE(14714), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052967] = 5, + ACTIONS(6277), 1, + anon_sym_RPAREN, + ACTIONS(26580), 1, + anon_sym_COMMA, + STATE(1294), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1052984] = 5, + ACTIONS(6279), 1, + anon_sym_RPAREN, + ACTIONS(26582), 1, + anon_sym_SEMI, + STATE(1295), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053001] = 4, + STATE(13435), 1, + sym_hol_identifier, + STATE(24896), 1, + sym_hol_eqn, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27983), 2, + sym__hol_alphanumeric, + sym__hol_symbolic, + [1053016] = 5, + ACTIONS(21448), 1, + anon_sym_RBRACE, + ACTIONS(32228), 1, + anon_sym_COMMA, + STATE(14870), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053033] = 5, + ACTIONS(21448), 1, + anon_sym_RBRACE, + ACTIONS(32228), 1, + anon_sym_COMMA, + STATE(14870), 1, + aux_sym_record_exp_repeat1, + STATE(21210), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053050] = 5, + ACTIONS(3835), 1, + anon_sym_RBRACK, + ACTIONS(26584), 1, + anon_sym_COMMA, + STATE(635), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053067] = 5, + ACTIONS(4901), 1, + anon_sym_RBRACK, + ACTIONS(32230), 1, + anon_sym_COMMA, + STATE(996), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053084] = 3, + STATE(11421), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32232), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1053097] = 5, + ACTIONS(6281), 1, + anon_sym_RBRACK, + ACTIONS(26586), 1, + anon_sym_COMMA, + STATE(1296), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053114] = 5, + ACTIONS(9101), 1, + anon_sym_RBRACK, + ACTIONS(32234), 1, + anon_sym_COMMA, + STATE(2581), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053131] = 3, + STATE(7574), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32236), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1053144] = 5, + ACTIONS(32238), 1, + anon_sym_SEMI, + ACTIONS(32240), 1, + anon_sym_end, + STATE(2582), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053161] = 4, + ACTIONS(32244), 1, + anon_sym_u2227, + STATE(21205), 1, + aux_sym_hol_fn_spec_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32242), 2, + anon_sym_End, + anon_sym_Termination, + [1053176] = 5, + ACTIONS(23200), 1, + anon_sym_RBRACE, + ACTIONS(32247), 1, + anon_sym_COMMA, + STATE(15917), 1, + aux_sym_record_exp_repeat1, + STATE(21235), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053193] = 5, + ACTIONS(23206), 1, + anon_sym_RBRACE, + ACTIONS(32249), 1, + anon_sym_COMMA, + STATE(15496), 1, + aux_sym_record_exp_repeat1, + STATE(21281), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053210] = 5, + ACTIONS(6283), 1, + anon_sym_RPAREN, + ACTIONS(32251), 1, + anon_sym_COMMA, + STATE(1298), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053227] = 5, + ACTIONS(6285), 1, + anon_sym_RPAREN, + ACTIONS(32253), 1, + anon_sym_SEMI, + STATE(1299), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053244] = 5, + ACTIONS(21452), 1, + anon_sym_RBRACE, + ACTIONS(32255), 1, + anon_sym_COMMA, + STATE(14871), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053261] = 5, + ACTIONS(6549), 1, + anon_sym_RPAREN, + ACTIONS(24829), 1, + anon_sym_COMMA, + STATE(1424), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053278] = 5, + ACTIONS(3837), 1, + anon_sym_RBRACK, + ACTIONS(32257), 1, + anon_sym_COMMA, + STATE(636), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053295] = 5, + ACTIONS(6287), 1, + anon_sym_RBRACK, + ACTIONS(32259), 1, + anon_sym_COMMA, + STATE(1300), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053312] = 5, + ACTIONS(20589), 1, + anon_sym_RBRACE, + ACTIONS(32261), 1, + anon_sym_COMMA, + STATE(14452), 1, + aux_sym_record_exp_repeat1, + STATE(21236), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053329] = 5, + ACTIONS(32263), 1, + anon_sym_SEMI, + ACTIONS(32265), 1, + anon_sym_end, + STATE(1301), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053346] = 5, + ACTIONS(6821), 1, + anon_sym_RPAREN, + ACTIONS(32267), 1, + anon_sym_SEMI, + STATE(1555), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053363] = 5, + ACTIONS(23504), 1, + anon_sym_RBRACE, + ACTIONS(32269), 1, + anon_sym_COMMA, + STATE(16104), 1, + aux_sym_record_exp_repeat1, + STATE(21225), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053380] = 4, + ACTIONS(32273), 1, + anon_sym_SLASH_BSLASH, + STATE(21218), 1, + aux_sym_hol_fn_spec_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32271), 2, + anon_sym_End, + anon_sym_Termination, + [1053395] = 5, + ACTIONS(23496), 1, + anon_sym_RBRACE, + ACTIONS(32276), 1, + anon_sym_COMMA, + STATE(15586), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053412] = 5, + ACTIONS(23496), 1, + anon_sym_RBRACE, + ACTIONS(32276), 1, + anon_sym_COMMA, + STATE(15586), 1, + aux_sym_record_exp_repeat1, + STATE(21132), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053429] = 5, + ACTIONS(32278), 1, + anon_sym_SEMI, + ACTIONS(32280), 1, + anon_sym_end, + STATE(1304), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053446] = 5, + ACTIONS(32282), 1, + anon_sym_SEMI, + ACTIONS(32284), 1, + anon_sym_end, + STATE(1305), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053463] = 3, + ACTIONS(32286), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20267), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + [1053476] = 5, + ACTIONS(8319), 1, + anon_sym_RPAREN, + ACTIONS(32288), 1, + anon_sym_COMMA, + STATE(2236), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053493] = 5, + ACTIONS(23516), 1, + anon_sym_RBRACE, + ACTIONS(32290), 1, + anon_sym_COMMA, + STATE(16144), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053510] = 5, + ACTIONS(32292), 1, + anon_sym_SEMI, + ACTIONS(32294), 1, + anon_sym_end, + STATE(2585), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053527] = 5, + ACTIONS(17303), 1, + anon_sym_withtype, + ACTIONS(17305), 1, + anon_sym_with, + ACTIONS(32296), 1, + anon_sym_and, + STATE(21229), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053544] = 5, + ACTIONS(23516), 1, + anon_sym_RBRACE, + ACTIONS(32290), 1, + anon_sym_COMMA, + STATE(16144), 1, + aux_sym_record_exp_repeat1, + STATE(21248), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053561] = 5, + ACTIONS(17185), 1, + anon_sym_withtype, + ACTIONS(17187), 1, + anon_sym_with, + ACTIONS(32298), 1, + anon_sym_and, + STATE(21229), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053578] = 5, + ACTIONS(21032), 1, + anon_sym_RBRACE, + ACTIONS(32301), 1, + anon_sym_COMMA, + STATE(14693), 1, + aux_sym_record_exp_repeat1, + STATE(21265), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053595] = 5, + ACTIONS(32303), 1, + anon_sym_SEMI, + ACTIONS(32305), 1, + anon_sym_end, + STATE(2586), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053612] = 5, + ACTIONS(8321), 1, + anon_sym_RPAREN, + ACTIONS(32307), 1, + anon_sym_SEMI, + STATE(2237), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053629] = 5, + ACTIONS(7835), 1, + anon_sym_RPAREN, + ACTIONS(26614), 1, + anon_sym_COMMA, + STATE(2038), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053646] = 5, + ACTIONS(7837), 1, + anon_sym_RPAREN, + ACTIONS(26616), 1, + anon_sym_SEMI, + STATE(2039), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053663] = 5, + ACTIONS(23212), 1, + anon_sym_RBRACE, + ACTIONS(32309), 1, + anon_sym_COMMA, + STATE(15922), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053680] = 5, + ACTIONS(20597), 1, + anon_sym_RBRACE, + ACTIONS(32311), 1, + anon_sym_COMMA, + STATE(14454), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053697] = 5, + ACTIONS(20597), 1, + anon_sym_RBRACE, + ACTIONS(32311), 1, + anon_sym_COMMA, + STATE(14454), 1, + aux_sym_record_exp_repeat1, + STATE(21246), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053714] = 5, + ACTIONS(23212), 1, + anon_sym_RBRACE, + ACTIONS(32309), 1, + anon_sym_COMMA, + STATE(15922), 1, + aux_sym_record_exp_repeat1, + STATE(21251), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053731] = 5, + ACTIONS(4455), 1, + anon_sym_RBRACK, + ACTIONS(26618), 1, + anon_sym_COMMA, + STATE(845), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053748] = 5, + ACTIONS(7839), 1, + anon_sym_RBRACK, + ACTIONS(26622), 1, + anon_sym_COMMA, + STATE(2040), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053765] = 5, + ACTIONS(32313), 1, + anon_sym_SEMI, + ACTIONS(32315), 1, + anon_sym_end, + STATE(1307), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053782] = 5, + ACTIONS(3909), 1, + anon_sym_RBRACK, + ACTIONS(32317), 1, + anon_sym_COMMA, + STATE(660), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053799] = 5, + ACTIONS(7841), 1, + anon_sym_RPAREN, + ACTIONS(32319), 1, + anon_sym_COMMA, + STATE(2042), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053816] = 5, + ACTIONS(7843), 1, + anon_sym_RPAREN, + ACTIONS(32321), 1, + anon_sym_SEMI, + STATE(2043), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053833] = 5, + ACTIONS(32323), 1, + anon_sym_SEMI, + ACTIONS(32325), 1, + anon_sym_end, + STATE(2588), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053850] = 5, + ACTIONS(20603), 1, + anon_sym_RBRACE, + ACTIONS(32327), 1, + anon_sym_COMMA, + STATE(14457), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053867] = 5, + ACTIONS(4457), 1, + anon_sym_RBRACK, + ACTIONS(32329), 1, + anon_sym_COMMA, + STATE(846), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053884] = 5, + ACTIONS(23586), 1, + anon_sym_RBRACE, + ACTIONS(32331), 1, + anon_sym_COMMA, + STATE(16145), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053901] = 5, + ACTIONS(6551), 1, + anon_sym_RPAREN, + ACTIONS(24831), 1, + anon_sym_SEMI, + STATE(1425), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053918] = 5, + ACTIONS(7845), 1, + anon_sym_RBRACK, + ACTIONS(32333), 1, + anon_sym_COMMA, + STATE(2044), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053935] = 5, + ACTIONS(23224), 1, + anon_sym_RBRACE, + ACTIONS(32335), 1, + anon_sym_COMMA, + STATE(15929), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053952] = 5, + ACTIONS(32337), 1, + anon_sym_SEMI, + ACTIONS(32339), 1, + anon_sym_end, + STATE(2045), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053969] = 5, + ACTIONS(32341), 1, + anon_sym_SEMI, + ACTIONS(32343), 1, + anon_sym_end, + STATE(2606), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1053986] = 5, + ACTIONS(23438), 1, + anon_sym_RBRACE, + ACTIONS(32345), 1, + anon_sym_COMMA, + STATE(15715), 1, + aux_sym_record_exp_repeat1, + STATE(21263), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054003] = 5, + ACTIONS(6463), 1, + anon_sym_RBRACK, + ACTIONS(32347), 1, + anon_sym_COMMA, + STATE(1384), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054020] = 5, + ACTIONS(23546), 1, + anon_sym_RBRACE, + ACTIONS(32349), 1, + anon_sym_COMMA, + STATE(15793), 1, + aux_sym_record_exp_repeat1, + STATE(20495), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054037] = 5, + ACTIONS(6769), 1, + anon_sym_RPAREN, + ACTIONS(26638), 1, + anon_sym_COMMA, + STATE(1529), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054054] = 5, + ACTIONS(32351), 1, + anon_sym_SEMI, + ACTIONS(32353), 1, + anon_sym_end, + STATE(1385), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054071] = 5, + ACTIONS(6771), 1, + anon_sym_RPAREN, + ACTIONS(26640), 1, + anon_sym_SEMI, + STATE(1530), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054088] = 5, + ACTIONS(20896), 1, + anon_sym_RBRACE, + ACTIONS(32355), 1, + anon_sym_COMMA, + STATE(14587), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054105] = 5, + ACTIONS(32357), 1, + anon_sym_SEMI, + ACTIONS(32359), 1, + anon_sym_end, + STATE(2048), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054122] = 5, + ACTIONS(32361), 1, + anon_sym_SEMI, + ACTIONS(32363), 1, + anon_sym_end, + STATE(2049), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054139] = 5, + ACTIONS(22880), 1, + anon_sym_RBRACE, + ACTIONS(32365), 1, + anon_sym_COMMA, + STATE(15732), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054156] = 5, + ACTIONS(22880), 1, + anon_sym_RBRACE, + ACTIONS(32365), 1, + anon_sym_COMMA, + STATE(15732), 1, + aux_sym_record_exp_repeat1, + STATE(21269), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054173] = 5, + ACTIONS(21056), 1, + anon_sym_RBRACE, + ACTIONS(32367), 1, + anon_sym_COMMA, + STATE(14696), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054190] = 5, + ACTIONS(32369), 1, + anon_sym_SEMI, + ACTIONS(32371), 1, + anon_sym_end, + STATE(2051), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054207] = 5, + ACTIONS(21056), 1, + anon_sym_RBRACE, + ACTIONS(32367), 1, + anon_sym_COMMA, + STATE(14696), 1, + aux_sym_record_exp_repeat1, + STATE(21294), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054224] = 5, + ACTIONS(23234), 1, + anon_sym_RBRACE, + ACTIONS(32373), 1, + anon_sym_COMMA, + STATE(15982), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054241] = 5, + ACTIONS(22896), 1, + anon_sym_RBRACE, + ACTIONS(32375), 1, + anon_sym_COMMA, + STATE(15737), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054258] = 4, + ACTIONS(32377), 1, + anon_sym_and, + STATE(21270), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16882), 2, + anon_sym_RPAREN, + anon_sym_where, + [1054273] = 5, + ACTIONS(32380), 1, + anon_sym_SEMI, + ACTIONS(32382), 1, + anon_sym_end, + STATE(1686), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054290] = 5, + ACTIONS(4033), 1, + anon_sym_RBRACK, + ACTIONS(26654), 1, + anon_sym_COMMA, + STATE(701), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054307] = 3, + STATE(10692), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32384), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1054320] = 5, + ACTIONS(4619), 1, + anon_sym_RBRACK, + ACTIONS(32386), 1, + anon_sym_COMMA, + STATE(900), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054337] = 5, + ACTIONS(32388), 1, + anon_sym_SEMI, + ACTIONS(32390), 1, + anon_sym_end, + STATE(1687), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054354] = 5, + ACTIONS(32392), 1, + anon_sym_SEMI, + ACTIONS(32394), 1, + anon_sym_end, + STATE(1349), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054371] = 3, + STATE(5462), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32396), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1054384] = 5, + ACTIONS(21050), 1, + anon_sym_RBRACE, + ACTIONS(32398), 1, + anon_sym_COMMA, + STATE(14704), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054401] = 5, + ACTIONS(6773), 1, + anon_sym_RBRACK, + ACTIONS(26656), 1, + anon_sym_COMMA, + STATE(1531), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054418] = 5, + ACTIONS(8323), 1, + anon_sym_RBRACK, + ACTIONS(32400), 1, + anon_sym_COMMA, + STATE(2238), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054435] = 5, + ACTIONS(22426), 1, + anon_sym_RBRACE, + ACTIONS(32402), 1, + anon_sym_COMMA, + STATE(15677), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054452] = 3, + STATE(9934), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32404), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1054465] = 5, + ACTIONS(21361), 1, + anon_sym_RBRACE, + ACTIONS(32406), 1, + anon_sym_COMMA, + STATE(14836), 1, + aux_sym_record_exp_repeat1, + STATE(21305), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054482] = 5, + ACTIONS(20637), 1, + anon_sym_RBRACE, + ACTIONS(32408), 1, + anon_sym_COMMA, + STATE(14474), 1, + aux_sym_record_exp_repeat1, + STATE(21295), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054499] = 5, + ACTIONS(21569), 1, + anon_sym_RBRACE, + ACTIONS(32410), 1, + anon_sym_COMMA, + STATE(14925), 1, + aux_sym_record_exp_repeat1, + STATE(21304), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054516] = 5, + ACTIONS(32412), 1, + anon_sym_SEMI, + ACTIONS(32414), 1, + anon_sym_end, + STATE(2239), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054533] = 5, + ACTIONS(6775), 1, + anon_sym_RPAREN, + ACTIONS(32416), 1, + anon_sym_COMMA, + STATE(1533), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054550] = 5, + ACTIONS(6777), 1, + anon_sym_RPAREN, + ACTIONS(32418), 1, + anon_sym_SEMI, + STATE(1534), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054567] = 5, + ACTIONS(8055), 1, + anon_sym_RPAREN, + ACTIONS(32420), 1, + anon_sym_COMMA, + STATE(2127), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054584] = 5, + ACTIONS(22426), 1, + anon_sym_RBRACE, + ACTIONS(32402), 1, + anon_sym_COMMA, + STATE(15677), 1, + aux_sym_record_exp_repeat1, + STATE(21360), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054601] = 5, + ACTIONS(7879), 1, + anon_sym_RPAREN, + ACTIONS(26668), 1, + anon_sym_COMMA, + STATE(2059), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054618] = 5, + ACTIONS(7881), 1, + anon_sym_RPAREN, + ACTIONS(26670), 1, + anon_sym_SEMI, + STATE(2060), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054635] = 5, + ACTIONS(8057), 1, + anon_sym_RPAREN, + ACTIONS(32422), 1, + anon_sym_SEMI, + STATE(2128), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054652] = 5, + ACTIONS(21060), 1, + anon_sym_RBRACE, + ACTIONS(32424), 1, + anon_sym_COMMA, + STATE(14698), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054669] = 5, + ACTIONS(20641), 1, + anon_sym_RBRACE, + ACTIONS(32426), 1, + anon_sym_COMMA, + STATE(14475), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054686] = 5, + ACTIONS(23242), 1, + anon_sym_RBRACE, + ACTIONS(32428), 1, + anon_sym_COMMA, + STATE(16075), 1, + aux_sym_record_exp_repeat1, + STATE(19275), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054703] = 5, + ACTIONS(20641), 1, + anon_sym_RBRACE, + ACTIONS(32426), 1, + anon_sym_COMMA, + STATE(14475), 1, + aux_sym_record_exp_repeat1, + STATE(21315), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054720] = 5, + ACTIONS(9135), 1, + anon_sym_RPAREN, + ACTIONS(24841), 1, + anon_sym_COMMA, + STATE(2596), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054737] = 5, + ACTIONS(9137), 1, + anon_sym_RPAREN, + ACTIONS(24843), 1, + anon_sym_SEMI, + STATE(2597), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054754] = 5, + ACTIONS(6321), 1, + anon_sym_RPAREN, + ACTIONS(26674), 1, + anon_sym_COMMA, + STATE(1315), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054771] = 5, + ACTIONS(6323), 1, + anon_sym_RPAREN, + ACTIONS(26676), 1, + anon_sym_SEMI, + STATE(1316), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054788] = 5, + ACTIONS(4473), 1, + anon_sym_RBRACK, + ACTIONS(26678), 1, + anon_sym_COMMA, + STATE(851), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054805] = 5, + ACTIONS(7883), 1, + anon_sym_RBRACK, + ACTIONS(26680), 1, + anon_sym_COMMA, + STATE(2061), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054822] = 5, + ACTIONS(21583), 1, + anon_sym_RBRACE, + ACTIONS(32430), 1, + anon_sym_COMMA, + STATE(14955), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054839] = 5, + ACTIONS(21369), 1, + anon_sym_RBRACE, + ACTIONS(32432), 1, + anon_sym_COMMA, + STATE(14394), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054856] = 5, + ACTIONS(21369), 1, + anon_sym_RBRACE, + ACTIONS(32432), 1, + anon_sym_COMMA, + STATE(14394), 1, + aux_sym_record_exp_repeat1, + STATE(21344), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054873] = 5, + ACTIONS(21583), 1, + anon_sym_RBRACE, + ACTIONS(32430), 1, + anon_sym_COMMA, + STATE(14955), 1, + aux_sym_record_exp_repeat1, + STATE(21346), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054890] = 5, + ACTIONS(3579), 1, + anon_sym_RBRACK, + ACTIONS(26712), 1, + anon_sym_COMMA, + STATE(536), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054907] = 5, + ACTIONS(7885), 1, + anon_sym_RPAREN, + ACTIONS(32434), 1, + anon_sym_COMMA, + STATE(2063), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054924] = 5, + ACTIONS(7887), 1, + anon_sym_RPAREN, + ACTIONS(32436), 1, + anon_sym_SEMI, + STATE(2064), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054941] = 5, + ACTIONS(3853), 1, + anon_sym_RBRACK, + ACTIONS(26686), 1, + anon_sym_COMMA, + STATE(641), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054958] = 5, + ACTIONS(6325), 1, + anon_sym_RBRACK, + ACTIONS(26688), 1, + anon_sym_COMMA, + STATE(1317), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054975] = 5, + ACTIONS(4917), 1, + anon_sym_RBRACK, + ACTIONS(24845), 1, + anon_sym_COMMA, + STATE(1001), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1054992] = 5, + ACTIONS(4035), 1, + anon_sym_RBRACK, + ACTIONS(32438), 1, + anon_sym_COMMA, + STATE(702), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055009] = 5, + ACTIONS(20643), 1, + anon_sym_RBRACE, + ACTIONS(32440), 1, + anon_sym_COMMA, + STATE(14476), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055026] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16920), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + STATE(10274), 2, + sym_vid, + aux_sym_infix_dec_repeat1, + [1055039] = 5, + ACTIONS(17267), 1, + anon_sym_withtype, + ACTIONS(17271), 1, + anon_sym_with, + ACTIONS(32296), 1, + anon_sym_and, + STATE(21227), 1, + aux_sym__datbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055056] = 4, + ACTIONS(17089), 1, + anon_sym_COLON, + ACTIONS(32442), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17087), 2, + anon_sym_end, + anon_sym_COLON_GT, + [1055071] = 5, + ACTIONS(4475), 1, + anon_sym_RBRACK, + ACTIONS(32444), 1, + anon_sym_COMMA, + STATE(852), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055088] = 5, + ACTIONS(7889), 1, + anon_sym_RBRACK, + ACTIONS(32446), 1, + anon_sym_COMMA, + STATE(2065), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055105] = 5, + ACTIONS(9139), 1, + anon_sym_RBRACK, + ACTIONS(24847), 1, + anon_sym_COMMA, + STATE(2598), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055122] = 5, + ACTIONS(32448), 1, + anon_sym_SEMI, + ACTIONS(32450), 1, + anon_sym_end, + STATE(2066), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055139] = 5, + ACTIONS(21126), 1, + anon_sym_RBRACE, + ACTIONS(32452), 1, + anon_sym_COMMA, + STATE(14730), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055156] = 5, + ACTIONS(23098), 1, + anon_sym_RBRACE, + ACTIONS(32454), 1, + anon_sym_COMMA, + STATE(15882), 1, + aux_sym_record_exp_repeat1, + STATE(21335), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055173] = 5, + ACTIONS(6779), 1, + anon_sym_RBRACK, + ACTIONS(32456), 1, + anon_sym_COMMA, + STATE(1535), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055190] = 3, + ACTIONS(32458), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_as, + [1055203] = 5, + ACTIONS(32460), 1, + anon_sym_SEMI, + ACTIONS(32462), 1, + anon_sym_end, + STATE(1536), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055220] = 5, + ACTIONS(9141), 1, + anon_sym_RPAREN, + ACTIONS(32464), 1, + anon_sym_COMMA, + STATE(2600), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055237] = 5, + ACTIONS(9143), 1, + anon_sym_RPAREN, + ACTIONS(32466), 1, + anon_sym_SEMI, + STATE(2601), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055254] = 5, + ACTIONS(6327), 1, + anon_sym_RPAREN, + ACTIONS(32468), 1, + anon_sym_COMMA, + STATE(1319), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055271] = 4, + ACTIONS(17089), 1, + anon_sym_COLON, + ACTIONS(32470), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(17087), 2, + anon_sym_RPAREN, + anon_sym_COLON_GT, + [1055286] = 5, + ACTIONS(32472), 1, + anon_sym_SEMI, + ACTIONS(32474), 1, + anon_sym_end, + STATE(2069), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055303] = 5, + ACTIONS(22462), 1, + anon_sym_RBRACE, + ACTIONS(32476), 1, + anon_sym_COMMA, + STATE(15534), 1, + aux_sym_record_exp_repeat1, + STATE(21363), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055320] = 5, + ACTIONS(32478), 1, + anon_sym_SEMI, + ACTIONS(32480), 1, + anon_sym_end, + STATE(2070), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055337] = 5, + ACTIONS(23172), 1, + anon_sym_RBRACE, + ACTIONS(32482), 1, + anon_sym_COMMA, + STATE(15891), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055354] = 5, + ACTIONS(23172), 1, + anon_sym_RBRACE, + ACTIONS(32482), 1, + anon_sym_COMMA, + STATE(15891), 1, + aux_sym_record_exp_repeat1, + STATE(21341), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055371] = 5, + ACTIONS(32484), 1, + anon_sym_SEMI, + ACTIONS(32486), 1, + anon_sym_end, + STATE(2072), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055388] = 4, + ACTIONS(32488), 1, + anon_sym_and, + STATE(21270), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 2, + anon_sym_RPAREN, + anon_sym_where, + [1055403] = 4, + ACTIONS(32488), 1, + anon_sym_and, + STATE(21270), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16903), 2, + anon_sym_RPAREN, + anon_sym_where, + [1055418] = 5, + ACTIONS(6329), 1, + anon_sym_RPAREN, + ACTIONS(32490), 1, + anon_sym_SEMI, + STATE(1320), 1, + aux_sym_sequence_exp_repeat1, + STATE(19559), 1, + aux_sym_sequence_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055435] = 5, + ACTIONS(23182), 1, + anon_sym_RBRACE, + ACTIONS(32492), 1, + anon_sym_COMMA, + STATE(15893), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055452] = 4, + ACTIONS(32488), 1, + anon_sym_and, + STATE(21338), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16889), 2, + anon_sym_RPAREN, + anon_sym_where, + [1055467] = 4, + ACTIONS(32488), 1, + anon_sym_and, + STATE(21339), 1, + aux_sym_wheretype_sigexp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16896), 2, + anon_sym_RPAREN, + anon_sym_where, + [1055482] = 5, + ACTIONS(20457), 1, + anon_sym_RBRACE, + ACTIONS(32494), 1, + anon_sym_COMMA, + STATE(14839), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055499] = 5, + ACTIONS(6499), 1, + anon_sym_RPAREN, + ACTIONS(26428), 1, + anon_sym_COMMA, + STATE(1401), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055516] = 5, + ACTIONS(21636), 1, + anon_sym_RBRACE, + ACTIONS(32496), 1, + anon_sym_COMMA, + STATE(14503), 1, + aux_sym_record_exp_repeat1, + STATE(19928), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055533] = 5, + ACTIONS(4919), 1, + anon_sym_RBRACK, + ACTIONS(32498), 1, + anon_sym_COMMA, + STATE(1002), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055550] = 5, + ACTIONS(22444), 1, + anon_sym_RBRACE, + ACTIONS(32500), 1, + anon_sym_COMMA, + STATE(15916), 1, + aux_sym_record_exp_repeat1, + STATE(20907), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055567] = 5, + ACTIONS(32502), 1, + anon_sym_SEMI, + ACTIONS(32504), 1, + anon_sym_end, + STATE(1689), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055584] = 5, + ACTIONS(9145), 1, + anon_sym_RBRACK, + ACTIONS(32506), 1, + anon_sym_COMMA, + STATE(2602), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055601] = 5, + ACTIONS(32508), 1, + anon_sym_SEMI, + ACTIONS(32510), 1, + anon_sym_end, + STATE(2603), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055618] = 5, + ACTIONS(3855), 1, + anon_sym_RBRACK, + ACTIONS(32512), 1, + anon_sym_COMMA, + STATE(642), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055635] = 5, + ACTIONS(23292), 1, + anon_sym_RBRACE, + ACTIONS(32514), 1, + anon_sym_COMMA, + STATE(15993), 1, + aux_sym_record_exp_repeat1, + STATE(19265), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055652] = 5, + ACTIONS(32516), 1, + anon_sym_SEMI, + ACTIONS(32518), 1, + anon_sym_end, + STATE(1539), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055669] = 5, + ACTIONS(21050), 1, + anon_sym_RBRACE, + ACTIONS(32398), 1, + anon_sym_COMMA, + STATE(14704), 1, + aux_sym_record_exp_repeat1, + STATE(19366), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055686] = 3, + STATE(8942), 1, + sym_lab, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32520), 3, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + aux_sym_lab_token1, + [1055699] = 5, + ACTIONS(6331), 1, + anon_sym_RBRACK, + ACTIONS(32522), 1, + anon_sym_COMMA, + STATE(1321), 1, + aux_sym_record_exp_repeat1, + STATE(19035), 1, + aux_sym_tuple_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055716] = 5, + ACTIONS(32524), 1, + anon_sym_SEMI, + ACTIONS(32526), 1, + anon_sym_end, + STATE(1540), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055733] = 5, + ACTIONS(32528), 1, + anon_sym_SEMI, + ACTIONS(32530), 1, + anon_sym_end, + STATE(1322), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055750] = 5, + ACTIONS(22804), 1, + anon_sym_RBRACE, + ACTIONS(32532), 1, + anon_sym_COMMA, + STATE(15730), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055767] = 5, + ACTIONS(20665), 1, + anon_sym_RBRACE, + ACTIONS(32534), 1, + anon_sym_COMMA, + STATE(14488), 1, + aux_sym_record_exp_repeat1, + STATE(20308), 1, + aux_sym_record_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055784] = 5, + ACTIONS(28799), 1, + sym__alphaAlphaNumeric_ident, + STATE(15130), 1, + sym_strdesc, + STATE(15357), 1, + sym__strdesc, + STATE(25034), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055801] = 5, + ACTIONS(22517), 1, + anon_sym_RBRACE, + ACTIONS(29601), 1, + anon_sym_COMMA, + STATE(15537), 1, + aux_sym_record_exp_repeat1, + STATE(21104), 1, + aux_sym_record_ty_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055818] = 5, + ACTIONS(28624), 1, + sym__alphaAlphaNumeric_ident, + STATE(14049), 1, + sym__strbind, + STATE(14118), 1, + sym_strbind, + STATE(24721), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055835] = 5, + ACTIONS(32536), 1, + anon_sym_SEMI, + ACTIONS(32538), 1, + anon_sym_end, + STATE(1878), 1, + aux_sym_sequence_exp_repeat1, + STATE(19641), 1, + aux_sym_let_exp_repeat2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055852] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32540), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055866] = 4, + ACTIONS(32542), 1, + anon_sym_COMMA, + ACTIONS(32544), 1, + anon_sym_RBRACE, + STATE(21368), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055880] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32546), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055894] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4251), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055908] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32550), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055922] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23434), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055936] = 4, + ACTIONS(22432), 1, + anon_sym_RBRACE, + ACTIONS(32552), 1, + anon_sym_COMMA, + STATE(21376), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055950] = 4, + ACTIONS(20695), 1, + anon_sym_RBRACE, + ACTIONS(32554), 1, + anon_sym_COMMA, + STATE(22043), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055964] = 4, + ACTIONS(32556), 1, + sym__alphaAlphaNumeric_ident, + STATE(12849), 1, + sym_strid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055978] = 4, + ACTIONS(21593), 1, + anon_sym_RBRACE, + ACTIONS(32558), 1, + anon_sym_COMMA, + STATE(21440), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1055992] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22452), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056006] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4939), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056020] = 4, + ACTIONS(22452), 1, + anon_sym_RBRACE, + ACTIONS(32560), 1, + anon_sym_COMMA, + STATE(21382), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056034] = 4, + ACTIONS(22454), 1, + anon_sym_RBRACE, + ACTIONS(32562), 1, + anon_sym_COMMA, + STATE(21383), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056048] = 4, + ACTIONS(5041), 1, + anon_sym_RBRACK, + ACTIONS(32564), 1, + anon_sym_COMMA, + STATE(21453), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056062] = 4, + ACTIONS(23434), 1, + anon_sym_RBRACE, + ACTIONS(32566), 1, + anon_sym_COMMA, + STATE(21430), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056076] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22454), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056090] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22460), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056104] = 4, + ACTIONS(22460), 1, + anon_sym_RBRACE, + ACTIONS(32568), 1, + anon_sym_COMMA, + STATE(21386), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056118] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20948), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056132] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32570), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056146] = 4, + ACTIONS(32570), 1, + anon_sym_RBRACE, + ACTIONS(32572), 1, + anon_sym_COMMA, + STATE(21388), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056160] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32574), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056174] = 4, + ACTIONS(20948), 1, + anon_sym_RBRACE, + ACTIONS(32576), 1, + anon_sym_COMMA, + STATE(21602), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056188] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32578), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056202] = 4, + ACTIONS(4939), 1, + anon_sym_RBRACK, + ACTIONS(32580), 1, + anon_sym_COMMA, + STATE(21681), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056216] = 4, + ACTIONS(22470), 1, + anon_sym_RBRACE, + ACTIONS(32582), 1, + anon_sym_COMMA, + STATE(21395), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056230] = 4, + ACTIONS(23912), 1, + anon_sym_RBRACE, + ACTIONS(32584), 1, + anon_sym_COMMA, + STATE(21588), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056244] = 4, + ACTIONS(21142), 1, + anon_sym_RBRACE, + ACTIONS(32586), 1, + anon_sym_COMMA, + STATE(22817), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056258] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22478), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056272] = 4, + ACTIONS(20920), 1, + anon_sym_RBRACE, + ACTIONS(32588), 1, + anon_sym_COMMA, + STATE(21916), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056286] = 4, + ACTIONS(22478), 1, + anon_sym_RBRACE, + ACTIONS(32590), 1, + anon_sym_COMMA, + STATE(21401), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056300] = 4, + ACTIONS(22488), 1, + anon_sym_RBRACE, + ACTIONS(32592), 1, + anon_sym_COMMA, + STATE(21402), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056314] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32594), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056328] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4657), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056342] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22488), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056356] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22496), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056370] = 4, + ACTIONS(22496), 1, + anon_sym_RBRACE, + ACTIONS(32596), 1, + anon_sym_COMMA, + STATE(21405), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056384] = 4, + ACTIONS(4657), 1, + anon_sym_RBRACK, + ACTIONS(32598), 1, + anon_sym_COMMA, + STATE(21665), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056398] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32600), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056412] = 4, + ACTIONS(32600), 1, + anon_sym_RBRACE, + ACTIONS(32602), 1, + anon_sym_COMMA, + STATE(21407), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056426] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32604), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056440] = 4, + ACTIONS(22904), 1, + anon_sym_RBRACE, + ACTIONS(32606), 1, + anon_sym_COMMA, + STATE(21483), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056454] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32608), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056468] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4089), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056482] = 4, + ACTIONS(22508), 1, + anon_sym_RBRACE, + ACTIONS(32610), 1, + anon_sym_COMMA, + STATE(21415), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056496] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20954), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056510] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32612), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056524] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21595), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056538] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22510), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056552] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20647), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056566] = 4, + ACTIONS(22510), 1, + anon_sym_RBRACE, + ACTIONS(32614), 1, + anon_sym_COMMA, + STATE(21421), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056580] = 4, + ACTIONS(22525), 1, + anon_sym_RBRACE, + ACTIONS(32616), 1, + anon_sym_COMMA, + STATE(21422), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056594] = 4, + ACTIONS(20647), 1, + anon_sym_RBRACE, + ACTIONS(32618), 1, + anon_sym_COMMA, + STATE(21927), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056608] = 4, + ACTIONS(32620), 1, + anon_sym_COMMA, + ACTIONS(32622), 1, + anon_sym_RBRACE, + STATE(21436), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056622] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22525), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056636] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22527), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056650] = 4, + ACTIONS(22527), 1, + anon_sym_RBRACE, + ACTIONS(32624), 1, + anon_sym_COMMA, + STATE(21425), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056664] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20872), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056678] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32626), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056692] = 4, + ACTIONS(32626), 1, + anon_sym_RBRACE, + ACTIONS(32628), 1, + anon_sym_COMMA, + STATE(21427), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056706] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32630), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056720] = 4, + ACTIONS(20872), 1, + anon_sym_RBRACE, + ACTIONS(32632), 1, + anon_sym_COMMA, + STATE(21492), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056734] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32634), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056748] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32636), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056762] = 4, + ACTIONS(22572), 1, + anon_sym_RBRACE, + ACTIONS(32638), 1, + anon_sym_COMMA, + STATE(21435), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056776] = 4, + ACTIONS(32636), 1, + anon_sym_RBRACE, + ACTIONS(32640), 1, + anon_sym_COMMA, + STATE(21434), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056790] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4253), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056804] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32642), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056818] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22582), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056832] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32644), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056846] = 4, + ACTIONS(22582), 1, + anon_sym_RBRACE, + ACTIONS(32646), 1, + anon_sym_COMMA, + STATE(21441), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056860] = 4, + ACTIONS(22584), 1, + anon_sym_RBRACE, + ACTIONS(32648), 1, + anon_sym_COMMA, + STATE(21442), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056874] = 4, + ACTIONS(4253), 1, + anon_sym_RBRACK, + ACTIONS(32650), 1, + anon_sym_COMMA, + STATE(21503), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056888] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21597), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056902] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22584), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056916] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22586), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056930] = 4, + ACTIONS(22586), 1, + anon_sym_RBRACE, + ACTIONS(32652), 1, + anon_sym_COMMA, + STATE(21445), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056944] = 4, + ACTIONS(3891), 1, + anon_sym_RBRACK, + ACTIONS(32654), 1, + anon_sym_COMMA, + STATE(21939), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056958] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32656), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056972] = 4, + ACTIONS(32656), 1, + anon_sym_RBRACE, + ACTIONS(32658), 1, + anon_sym_COMMA, + STATE(21447), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1056986] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32660), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057000] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23912), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057014] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32662), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057028] = 4, + ACTIONS(23512), 1, + anon_sym_RBRACE, + ACTIONS(32664), 1, + anon_sym_COMMA, + STATE(22121), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057042] = 4, + ACTIONS(22600), 1, + anon_sym_RBRACE, + ACTIONS(32666), 1, + anon_sym_COMMA, + STATE(21455), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057056] = 4, + ACTIONS(21597), 1, + anon_sym_RBRACE, + ACTIONS(32668), 1, + anon_sym_COMMA, + STATE(21509), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057070] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5043), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057084] = 4, + ACTIONS(21595), 1, + anon_sym_RBRACE, + ACTIONS(32670), 1, + anon_sym_COMMA, + STATE(21864), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057098] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22602), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057112] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20920), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057126] = 4, + ACTIONS(22602), 1, + anon_sym_RBRACE, + ACTIONS(32672), 1, + anon_sym_COMMA, + STATE(21461), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057140] = 4, + ACTIONS(22604), 1, + anon_sym_RBRACE, + ACTIONS(32674), 1, + anon_sym_COMMA, + STATE(21462), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057154] = 4, + ACTIONS(5043), 1, + anon_sym_RBRACK, + ACTIONS(32676), 1, + anon_sym_COMMA, + STATE(21519), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057168] = 4, + ACTIONS(4637), 1, + anon_sym_RBRACK, + ACTIONS(32678), 1, + anon_sym_COMMA, + STATE(22039), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057182] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22604), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057196] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22614), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057210] = 4, + ACTIONS(22614), 1, + anon_sym_RBRACE, + ACTIONS(32680), 1, + anon_sym_COMMA, + STATE(21465), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057224] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14719), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057238] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32682), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057252] = 4, + ACTIONS(32682), 1, + anon_sym_RBRACE, + ACTIONS(32684), 1, + anon_sym_COMMA, + STATE(21467), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057266] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32686), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057280] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3945), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057294] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32688), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057308] = 4, + ACTIONS(21353), 1, + anon_sym_RBRACE, + ACTIONS(32690), 1, + anon_sym_COMMA, + STATE(24609), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057322] = 4, + ACTIONS(22620), 1, + anon_sym_RBRACE, + ACTIONS(32692), 1, + anon_sym_COMMA, + STATE(21474), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057336] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14773), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057350] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(32694), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057364] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22622), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057378] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21491), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057392] = 4, + ACTIONS(22622), 1, + anon_sym_RBRACE, + ACTIONS(32696), 1, + anon_sym_COMMA, + STATE(21480), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057406] = 4, + ACTIONS(22624), 1, + anon_sym_RBRACE, + ACTIONS(32698), 1, + anon_sym_COMMA, + STATE(21481), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057420] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4055), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057434] = 4, + ACTIONS(32700), 1, + anon_sym_COMMA, + ACTIONS(32702), 1, + anon_sym_RBRACE, + STATE(22782), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057448] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22624), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057462] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22626), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057476] = 4, + ACTIONS(22626), 1, + anon_sym_RBRACE, + ACTIONS(32704), 1, + anon_sym_COMMA, + STATE(21484), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057490] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22842), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057504] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32706), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057518] = 4, + ACTIONS(32706), 1, + anon_sym_RBRACE, + ACTIONS(32708), 1, + anon_sym_COMMA, + STATE(21486), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057532] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32710), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057546] = 4, + ACTIONS(21491), 1, + anon_sym_RBRACE, + ACTIONS(32712), 1, + anon_sym_COMMA, + STATE(21634), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057560] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32714), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057574] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4971), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057588] = 4, + ACTIONS(22642), 1, + anon_sym_RBRACE, + ACTIONS(32716), 1, + anon_sym_COMMA, + STATE(21494), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057602] = 4, + ACTIONS(22842), 1, + anon_sym_RBRACE, + ACTIONS(32718), 1, + anon_sym_COMMA, + STATE(21537), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057616] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32720), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057630] = 4, + ACTIONS(21599), 1, + anon_sym_RBRACE, + ACTIONS(32722), 1, + anon_sym_COMMA, + STATE(21574), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057644] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22648), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057658] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32724), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057672] = 4, + ACTIONS(22648), 1, + anon_sym_RBRACE, + ACTIONS(32726), 1, + anon_sym_COMMA, + STATE(21500), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057686] = 4, + ACTIONS(22655), 1, + anon_sym_RBRACE, + ACTIONS(32728), 1, + anon_sym_COMMA, + STATE(21501), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057700] = 4, + ACTIONS(32720), 1, + anon_sym_RBRACE, + ACTIONS(32730), 1, + anon_sym_COMMA, + STATE(21542), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057714] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4181), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057728] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22655), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057742] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22657), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057756] = 4, + ACTIONS(22657), 1, + anon_sym_RBRACE, + ACTIONS(32732), 1, + anon_sym_COMMA, + STATE(21504), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057770] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32734), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057784] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32736), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057798] = 4, + ACTIONS(32736), 1, + anon_sym_RBRACE, + ACTIONS(32738), 1, + anon_sym_COMMA, + STATE(21506), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057812] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32740), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057826] = 4, + ACTIONS(32734), 1, + anon_sym_RBRACK, + ACTIONS(32742), 1, + anon_sym_COMMA, + STATE(21546), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057840] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32744), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057854] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21599), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057868] = 4, + ACTIONS(22694), 1, + anon_sym_RBRACE, + ACTIONS(32746), 1, + anon_sym_COMMA, + STATE(21514), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057882] = 4, + ACTIONS(21581), 1, + anon_sym_RBRACE, + ACTIONS(32748), 1, + anon_sym_COMMA, + STATE(21658), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057896] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32750), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057910] = 4, + ACTIONS(5045), 1, + anon_sym_RBRACK, + ACTIONS(32752), 1, + anon_sym_COMMA, + STATE(21586), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057924] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22698), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057938] = 4, + ACTIONS(14719), 1, + anon_sym_RBRACK, + ACTIONS(32754), 1, + anon_sym_COMMA, + STATE(21880), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057952] = 4, + ACTIONS(22698), 1, + anon_sym_RBRACE, + ACTIONS(32756), 1, + anon_sym_COMMA, + STATE(21520), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057966] = 4, + ACTIONS(22700), 1, + anon_sym_RBRACE, + ACTIONS(32758), 1, + anon_sym_COMMA, + STATE(21521), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057980] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3891), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1057994] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5045), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058008] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22700), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058022] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22704), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058036] = 4, + ACTIONS(22704), 1, + anon_sym_RBRACE, + ACTIONS(32760), 1, + anon_sym_COMMA, + STATE(21524), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058050] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4087), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058064] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32762), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058078] = 4, + ACTIONS(32762), 1, + anon_sym_RBRACE, + ACTIONS(32764), 1, + anon_sym_COMMA, + STATE(21526), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058092] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32766), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058106] = 4, + ACTIONS(23022), 1, + anon_sym_RBRACE, + ACTIONS(32768), 1, + anon_sym_COMMA, + STATE(21551), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058120] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32770), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058134] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22438), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058148] = 4, + ACTIONS(22724), 1, + anon_sym_RBRACE, + ACTIONS(32772), 1, + anon_sym_COMMA, + STATE(21533), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058162] = 4, + ACTIONS(4971), 1, + anon_sym_RBRACK, + ACTIONS(32774), 1, + anon_sym_COMMA, + STATE(21686), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058176] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32776), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058190] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22728), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058204] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4637), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058218] = 4, + ACTIONS(22728), 1, + anon_sym_RBRACE, + ACTIONS(32778), 1, + anon_sym_COMMA, + STATE(21539), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058232] = 4, + ACTIONS(22734), 1, + anon_sym_RBRACE, + ACTIONS(32780), 1, + anon_sym_COMMA, + STATE(21540), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058246] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23022), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058260] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23070), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058274] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22734), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058288] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22740), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058302] = 4, + ACTIONS(22740), 1, + anon_sym_RBRACE, + ACTIONS(32782), 1, + anon_sym_COMMA, + STATE(21543), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058316] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32784), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058330] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32786), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058344] = 4, + ACTIONS(32786), 1, + anon_sym_RBRACE, + ACTIONS(32788), 1, + anon_sym_COMMA, + STATE(21545), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058358] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32790), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058372] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32792), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058386] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32794), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058400] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32796), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058414] = 4, + ACTIONS(22746), 1, + anon_sym_RBRACE, + ACTIONS(32798), 1, + anon_sym_COMMA, + STATE(21553), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058428] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21581), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058442] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23030), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058456] = 4, + ACTIONS(32776), 1, + anon_sym_RBRACK, + ACTIONS(32800), 1, + anon_sym_COMMA, + STATE(22827), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058470] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22748), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058484] = 4, + ACTIONS(23808), 1, + anon_sym_RBRACE, + ACTIONS(32802), 1, + anon_sym_COMMA, + STATE(21611), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058498] = 4, + ACTIONS(22748), 1, + anon_sym_RBRACE, + ACTIONS(32804), 1, + anon_sym_COMMA, + STATE(21559), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058512] = 4, + ACTIONS(22768), 1, + anon_sym_RBRACE, + ACTIONS(32806), 1, + anon_sym_COMMA, + STATE(21560), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058526] = 4, + ACTIONS(23030), 1, + anon_sym_RBRACE, + ACTIONS(32808), 1, + anon_sym_COMMA, + STATE(21566), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058540] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(32810), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058554] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22768), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058568] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22772), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058582] = 4, + ACTIONS(22772), 1, + anon_sym_RBRACE, + ACTIONS(32812), 1, + anon_sym_COMMA, + STATE(21563), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058596] = 4, + ACTIONS(3963), 1, + anon_sym_RBRACK, + ACTIONS(32814), 1, + anon_sym_COMMA, + STATE(21674), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058610] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32816), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058624] = 4, + ACTIONS(32816), 1, + anon_sym_RBRACE, + ACTIONS(32818), 1, + anon_sym_COMMA, + STATE(21565), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058638] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32820), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058652] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32822), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058666] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32824), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058680] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3925), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058694] = 4, + ACTIONS(22780), 1, + anon_sym_RBRACE, + ACTIONS(32826), 1, + anon_sym_COMMA, + STATE(21573), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058708] = 4, + ACTIONS(32822), 1, + anon_sym_RBRACE, + ACTIONS(32828), 1, + anon_sym_COMMA, + STATE(21571), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058722] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32830), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058736] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(32832), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058750] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22782), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058764] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21601), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058778] = 4, + ACTIONS(22782), 1, + anon_sym_RBRACE, + ACTIONS(32834), 1, + anon_sym_COMMA, + STATE(21579), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058792] = 4, + ACTIONS(22788), 1, + anon_sym_RBRACE, + ACTIONS(32836), 1, + anon_sym_COMMA, + STATE(21580), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058806] = 4, + ACTIONS(21601), 1, + anon_sym_RBRACE, + ACTIONS(32838), 1, + anon_sym_COMMA, + STATE(21616), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058820] = 4, + ACTIONS(23378), 1, + anon_sym_RBRACE, + ACTIONS(32840), 1, + anon_sym_COMMA, + STATE(21728), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058834] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22788), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058848] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22792), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058862] = 4, + ACTIONS(22792), 1, + anon_sym_RBRACE, + ACTIONS(32842), 1, + anon_sym_COMMA, + STATE(21583), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058876] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32844), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058890] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32846), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058904] = 4, + ACTIONS(32846), 1, + anon_sym_RBRACE, + ACTIONS(32848), 1, + anon_sym_COMMA, + STATE(21585), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058918] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32850), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058932] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5047), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058946] = 4, + ACTIONS(5047), 1, + anon_sym_RBRACK, + ACTIONS(32852), 1, + anon_sym_COMMA, + STATE(21618), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058960] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23920), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058974] = 4, + ACTIONS(23920), 1, + anon_sym_RBRACE, + ACTIONS(32854), 1, + anon_sym_COMMA, + STATE(21603), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1058988] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32856), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059002] = 4, + ACTIONS(32858), 1, + anon_sym_COMMA, + ACTIONS(32860), 1, + anon_sym_RPAREN, + STATE(22849), 1, + aux_sym_tyvarseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059016] = 4, + ACTIONS(4181), 1, + anon_sym_RBRACK, + ACTIONS(32862), 1, + anon_sym_COMMA, + STATE(22006), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059030] = 4, + ACTIONS(23070), 1, + anon_sym_RBRACE, + ACTIONS(32864), 1, + anon_sym_COMMA, + STATE(21726), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059044] = 4, + ACTIONS(32866), 1, + anon_sym_EQ, + ACTIONS(32868), 1, + anon_sym_COLON, + ACTIONS(32870), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059058] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21126), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059072] = 4, + ACTIONS(21020), 1, + anon_sym_RBRACE, + ACTIONS(32872), 1, + anon_sym_COMMA, + STATE(21625), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059086] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3963), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059100] = 4, + ACTIONS(23680), 1, + anon_sym_RBRACE, + ACTIONS(32874), 1, + anon_sym_COMMA, + STATE(21721), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059114] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23390), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059128] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(32876), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059142] = 4, + ACTIONS(4699), 1, + anon_sym_RBRACK, + ACTIONS(32878), 1, + anon_sym_COMMA, + STATE(21633), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059156] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32880), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059170] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32882), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059184] = 4, + ACTIONS(18768), 1, + anon_sym_with, + ACTIONS(32884), 1, + anon_sym_and, + STATE(21614), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059198] = 4, + ACTIONS(32882), 1, + anon_sym_RBRACE, + ACTIONS(32886), 1, + anon_sym_COMMA, + STATE(21607), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059212] = 4, + ACTIONS(23710), 1, + anon_sym_RBRACE, + ACTIONS(32888), 1, + anon_sym_COMMA, + STATE(22028), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059226] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32890), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059240] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20681), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059254] = 4, + ACTIONS(4049), 1, + anon_sym_RBRACK, + ACTIONS(32892), 1, + anon_sym_COMMA, + STATE(23522), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059268] = 4, + ACTIONS(23390), 1, + anon_sym_RBRACE, + ACTIONS(32894), 1, + anon_sym_COMMA, + STATE(21762), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059282] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23814), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059296] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32896), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059310] = 4, + ACTIONS(21493), 1, + anon_sym_RBRACE, + ACTIONS(32898), 1, + anon_sym_COMMA, + STATE(21750), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059324] = 4, + ACTIONS(16667), 1, + anon_sym_with, + ACTIONS(32900), 1, + anon_sym_and, + STATE(21614), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059338] = 4, + ACTIONS(23814), 1, + anon_sym_RBRACE, + ACTIONS(32903), 1, + anon_sym_COMMA, + STATE(21635), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059352] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32905), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059366] = 4, + ACTIONS(32905), 1, + anon_sym_RBRACE, + ACTIONS(32907), 1, + anon_sym_COMMA, + STATE(21637), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059380] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32909), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059394] = 4, + ACTIONS(32909), 1, + anon_sym_RBRACK, + ACTIONS(32911), 1, + anon_sym_COMMA, + STATE(21639), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059408] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(32913), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059422] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21555), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059436] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(32915), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059450] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32917), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059464] = 4, + ACTIONS(20681), 1, + anon_sym_RBRACE, + ACTIONS(32919), 1, + anon_sym_COMMA, + STATE(21806), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059478] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21022), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059492] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32921), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059506] = 4, + ACTIONS(20906), 1, + anon_sym_RBRACE, + ACTIONS(32923), 1, + anon_sym_COMMA, + STATE(21660), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059520] = 4, + ACTIONS(23892), 1, + anon_sym_RBRACE, + ACTIONS(32925), 1, + anon_sym_COMMA, + STATE(21748), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059534] = 4, + ACTIONS(23818), 1, + anon_sym_RBRACE, + ACTIONS(32927), 1, + anon_sym_COMMA, + STATE(21643), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059548] = 4, + ACTIONS(21022), 1, + anon_sym_RBRACE, + ACTIONS(32929), 1, + anon_sym_COMMA, + STATE(21667), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059562] = 4, + ACTIONS(4265), 1, + anon_sym_RBRACK, + ACTIONS(32931), 1, + anon_sym_COMMA, + STATE(21663), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059576] = 4, + ACTIONS(32921), 1, + anon_sym_RBRACE, + ACTIONS(32933), 1, + anon_sym_COMMA, + STATE(21807), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059590] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4701), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059604] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21493), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059618] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23818), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059632] = 4, + ACTIONS(21555), 1, + anon_sym_RBRACE, + ACTIONS(32935), 1, + anon_sym_COMMA, + STATE(21742), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059646] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32937), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059660] = 4, + ACTIONS(4701), 1, + anon_sym_RBRACK, + ACTIONS(32939), 1, + anon_sym_COMMA, + STATE(21676), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059674] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32941), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059688] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23770), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059702] = 4, + ACTIONS(32943), 1, + anon_sym_COMMA, + ACTIONS(32946), 1, + anon_sym_RPAREN, + STATE(21641), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059716] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(32948), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059730] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23824), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059744] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20679), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059758] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(32950), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059772] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4109), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059786] = 4, + ACTIONS(23824), 1, + anon_sym_RBRACE, + ACTIONS(32952), 1, + anon_sym_COMMA, + STATE(21651), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059800] = 4, + ACTIONS(4109), 1, + anon_sym_RBRACK, + ACTIONS(32954), 1, + anon_sym_COMMA, + STATE(21752), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059814] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4199), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059828] = 4, + ACTIONS(4493), 1, + anon_sym_RBRACK, + ACTIONS(32956), 1, + anon_sym_COMMA, + STATE(22565), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059842] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32958), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059856] = 4, + ACTIONS(32960), 1, + anon_sym_QED, + ACTIONS(32962), 1, + anon_sym_BSLASH_BSLASH, + STATE(23708), 1, + aux_sym_THEN_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059870] = 4, + ACTIONS(32958), 1, + anon_sym_RBRACE, + ACTIONS(32964), 1, + anon_sym_COMMA, + STATE(21654), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059884] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32966), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059898] = 4, + ACTIONS(32880), 1, + anon_sym_RBRACE, + ACTIONS(32968), 1, + anon_sym_COMMA, + STATE(21732), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059912] = 4, + ACTIONS(4973), 1, + anon_sym_RBRACK, + ACTIONS(32970), 1, + anon_sym_COMMA, + STATE(21773), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059926] = 4, + ACTIONS(21028), 1, + anon_sym_RBRACE, + ACTIONS(32972), 1, + anon_sym_COMMA, + STATE(21705), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059940] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20483), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059954] = 4, + ACTIONS(23826), 1, + anon_sym_RBRACE, + ACTIONS(32974), 1, + anon_sym_COMMA, + STATE(22011), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059968] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20922), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059982] = 4, + ACTIONS(4199), 1, + anon_sym_RBRACK, + ACTIONS(32976), 1, + anon_sym_COMMA, + STATE(21816), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1059996] = 4, + ACTIONS(20922), 1, + anon_sym_RBRACE, + ACTIONS(32978), 1, + anon_sym_COMMA, + STATE(21699), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060010] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4267), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060024] = 4, + ACTIONS(4267), 1, + anon_sym_RBRACK, + ACTIONS(32980), 1, + anon_sym_COMMA, + STATE(21703), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060038] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32982), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060052] = 4, + ACTIONS(32982), 1, + anon_sym_RBRACK, + ACTIONS(32984), 1, + anon_sym_COMMA, + STATE(21747), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060066] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21028), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060080] = 4, + ACTIONS(20483), 1, + anon_sym_RBRACE, + ACTIONS(32986), 1, + anon_sym_COMMA, + STATE(21770), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060094] = 4, + ACTIONS(4703), 1, + anon_sym_RBRACK, + ACTIONS(32988), 1, + anon_sym_COMMA, + STATE(21711), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060108] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(32990), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060122] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20629), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060136] = 4, + ACTIONS(20629), 1, + anon_sym_RBRACE, + ACTIONS(32992), 1, + anon_sym_COMMA, + STATE(21780), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060150] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3727), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060164] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3965), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060178] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20847), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060192] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4703), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060206] = 4, + ACTIONS(20827), 1, + anon_sym_RBRACE, + ACTIONS(32994), 1, + anon_sym_COMMA, + STATE(21412), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060220] = 4, + ACTIONS(3727), 1, + anon_sym_RBRACK, + ACTIONS(32996), 1, + anon_sym_COMMA, + STATE(21784), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060234] = 4, + ACTIONS(3965), 1, + anon_sym_RBRACK, + ACTIONS(32998), 1, + anon_sym_COMMA, + STATE(21772), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060248] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(33000), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060262] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33002), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060276] = 3, + STATE(13587), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26878), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1060288] = 4, + ACTIONS(20847), 1, + anon_sym_RBRACE, + ACTIONS(33004), 1, + anon_sym_COMMA, + STATE(22110), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060302] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21611), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060316] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33006), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060330] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4973), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060344] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33008), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060358] = 3, + STATE(13400), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26878), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1060370] = 4, + ACTIONS(22523), 1, + anon_sym_RBRACE, + ACTIONS(33010), 1, + anon_sym_COMMA, + STATE(22581), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060384] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33012), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060398] = 4, + ACTIONS(33002), 1, + anon_sym_RBRACK, + ACTIONS(33014), 1, + anon_sym_COMMA, + STATE(21818), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060412] = 4, + ACTIONS(21611), 1, + anon_sym_RBRACE, + ACTIONS(33016), 1, + anon_sym_COMMA, + STATE(22074), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060426] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33018), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060440] = 4, + ACTIONS(23760), 1, + anon_sym_RBRACE, + ACTIONS(33020), 1, + anon_sym_COMMA, + STATE(21730), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060454] = 4, + ACTIONS(22438), 1, + anon_sym_RBRACE, + ACTIONS(33022), 1, + anon_sym_COMMA, + STATE(21960), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060468] = 4, + ACTIONS(20934), 1, + anon_sym_RBRACE, + ACTIONS(33024), 1, + anon_sym_COMMA, + STATE(21733), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060482] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33026), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060496] = 4, + ACTIONS(4055), 1, + anon_sym_RBRACK, + ACTIONS(33028), 1, + anon_sym_COMMA, + STATE(23019), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060510] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20934), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060524] = 4, + ACTIONS(4269), 1, + anon_sym_RBRACK, + ACTIONS(33030), 1, + anon_sym_COMMA, + STATE(21743), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060538] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22681), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060552] = 4, + ACTIONS(14183), 1, + anon_sym_RPAREN, + ACTIONS(33032), 1, + anon_sym_COMMA, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060566] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4269), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060580] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3685), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060594] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21030), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060608] = 4, + ACTIONS(21030), 1, + anon_sym_RBRACE, + ACTIONS(33035), 1, + anon_sym_COMMA, + STATE(21736), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060622] = 4, + ACTIONS(3685), 1, + anon_sym_RBRACK, + ACTIONS(33037), 1, + anon_sym_COMMA, + STATE(22089), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060636] = 4, + ACTIONS(20625), 1, + anon_sym_RBRACE, + ACTIONS(33039), 1, + anon_sym_COMMA, + STATE(22822), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060650] = 4, + ACTIONS(21613), 1, + anon_sym_RBRACE, + ACTIONS(33041), 1, + anon_sym_COMMA, + STATE(21753), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060664] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33043), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060678] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4705), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060692] = 4, + ACTIONS(4705), 1, + anon_sym_RBRACK, + ACTIONS(33045), 1, + anon_sym_COMMA, + STATE(21739), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060706] = 4, + ACTIONS(5059), 1, + anon_sym_RBRACK, + ACTIONS(33047), 1, + anon_sym_COMMA, + STATE(21756), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060720] = 4, + ACTIONS(33018), 1, + anon_sym_RBRACE, + ACTIONS(33049), 1, + anon_sym_COMMA, + STATE(23880), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060734] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23226), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060748] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33051), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060762] = 4, + ACTIONS(20649), 1, + anon_sym_RBRACE, + ACTIONS(33053), 1, + anon_sym_COMMA, + STATE(21834), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060776] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33055), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060790] = 4, + ACTIONS(14729), 1, + anon_sym_RBRACK, + ACTIONS(33057), 1, + anon_sym_COMMA, + STATE(21841), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060804] = 4, + ACTIONS(23107), 1, + anon_sym_RBRACE, + ACTIONS(33059), 1, + anon_sym_COMMA, + STATE(21795), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060818] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23724), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060832] = 4, + ACTIONS(28624), 1, + sym__alphaAlphaNumeric_ident, + STATE(12957), 1, + sym_strbind, + STATE(23639), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060846] = 4, + ACTIONS(23406), 1, + anon_sym_RBRACE, + ACTIONS(33061), 1, + anon_sym_COMMA, + STATE(21832), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060860] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33063), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060874] = 4, + ACTIONS(22900), 1, + anon_sym_RBRACE, + ACTIONS(33065), 1, + anon_sym_COMMA, + STATE(21763), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060888] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23107), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060902] = 4, + ACTIONS(4175), 1, + anon_sym_RBRACK, + ACTIONS(33067), 1, + anon_sym_COMMA, + STATE(22976), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060916] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23436), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060930] = 4, + ACTIONS(23590), 1, + anon_sym_RBRACE, + ACTIONS(33069), 1, + anon_sym_COMMA, + STATE(21863), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060944] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23800), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060958] = 4, + ACTIONS(22588), 1, + anon_sym_RBRACE, + ACTIONS(33071), 1, + anon_sym_COMMA, + STATE(22191), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060972] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33073), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1060986] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20946), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061000] = 4, + ACTIONS(23800), 1, + anon_sym_RBRACE, + ACTIONS(33075), 1, + anon_sym_COMMA, + STATE(21760), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061014] = 4, + ACTIONS(20946), 1, + anon_sym_RBRACE, + ACTIONS(33077), 1, + anon_sym_COMMA, + STATE(21766), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061028] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33079), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061042] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33081), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061056] = 4, + ACTIONS(33079), 1, + anon_sym_RBRACE, + ACTIONS(33083), 1, + anon_sym_COMMA, + STATE(21761), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061070] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33085), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061084] = 4, + ACTIONS(33085), 1, + anon_sym_RBRACK, + ACTIONS(33087), 1, + anon_sym_COMMA, + STATE(21786), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061098] = 4, + ACTIONS(23724), 1, + anon_sym_RBRACE, + ACTIONS(33089), 1, + anon_sym_COMMA, + STATE(21820), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061112] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33091), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061126] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4271), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061140] = 4, + ACTIONS(33091), 1, + anon_sym_RBRACE, + ACTIONS(33093), 1, + anon_sym_COMMA, + STATE(21821), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061154] = 4, + ACTIONS(4271), 1, + anon_sym_RBRACK, + ACTIONS(33095), 1, + anon_sym_COMMA, + STATE(21768), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061168] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(33097), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061182] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33099), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061196] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23330), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061210] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23884), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061224] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21495), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061238] = 4, + ACTIONS(23836), 1, + anon_sym_RBRACE, + ACTIONS(33101), 1, + anon_sym_COMMA, + STATE(21789), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061252] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33103), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061266] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21617), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061280] = 4, + ACTIONS(21495), 1, + anon_sym_RBRACE, + ACTIONS(33105), 1, + anon_sym_COMMA, + STATE(21884), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061294] = 4, + ACTIONS(21617), 1, + anon_sym_RBRACE, + ACTIONS(33107), 1, + anon_sym_COMMA, + STATE(21819), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061308] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5061), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061322] = 4, + ACTIONS(32960), 1, + anon_sym_RPAREN, + ACTIONS(33109), 1, + anon_sym_BSLASH_BSLASH, + STATE(22553), 1, + aux_sym_THEN_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061336] = 4, + ACTIONS(23330), 1, + anon_sym_RBRACE, + ACTIONS(33111), 1, + anon_sym_COMMA, + STATE(21809), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061350] = 4, + ACTIONS(23436), 1, + anon_sym_RBRACE, + ACTIONS(33113), 1, + anon_sym_COMMA, + STATE(21952), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061364] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23836), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061378] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33115), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061392] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23406), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061406] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23105), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061420] = 4, + ACTIONS(5061), 1, + anon_sym_RBRACK, + ACTIONS(33117), 1, + anon_sym_COMMA, + STATE(21825), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061434] = 4, + ACTIONS(23105), 1, + anon_sym_RBRACE, + ACTIONS(33119), 1, + anon_sym_COMMA, + STATE(21777), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061448] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33121), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061462] = 4, + ACTIONS(33121), 1, + anon_sym_RBRACE, + ACTIONS(33123), 1, + anon_sym_COMMA, + STATE(21779), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061476] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33125), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061490] = 4, + ACTIONS(33125), 1, + anon_sym_RBRACK, + ACTIONS(33127), 1, + anon_sym_COMMA, + STATE(21782), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061504] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33129), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061518] = 4, + ACTIONS(33129), 1, + anon_sym_RBRACE, + ACTIONS(33131), 1, + anon_sym_COMMA, + STATE(21810), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061532] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33133), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061546] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4975), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061560] = 4, + ACTIONS(23158), 1, + anon_sym_RBRACE, + ACTIONS(33135), 1, + anon_sym_COMMA, + STATE(21783), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061574] = 4, + ACTIONS(33133), 1, + anon_sym_RBRACK, + ACTIONS(33137), 1, + anon_sym_COMMA, + STATE(21811), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061588] = 4, + ACTIONS(4975), 1, + anon_sym_RBRACK, + ACTIONS(33139), 1, + anon_sym_COMMA, + STATE(21893), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061602] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23158), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061616] = 4, + ACTIONS(20683), 1, + anon_sym_RBRACE, + ACTIONS(33141), 1, + anon_sym_COMMA, + STATE(21910), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061630] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33143), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061644] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20683), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061658] = 4, + ACTIONS(3729), 1, + anon_sym_RBRACK, + ACTIONS(33145), 1, + anon_sym_COMMA, + STATE(21915), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061672] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33147), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061686] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23176), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061700] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3729), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061714] = 4, + ACTIONS(23176), 1, + anon_sym_RBRACE, + ACTIONS(33149), 1, + anon_sym_COMMA, + STATE(21796), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061728] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33151), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061742] = 3, + STATE(13600), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26878), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1061754] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20716), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061768] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23838), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061782] = 4, + ACTIONS(23838), 1, + anon_sym_RBRACE, + ACTIONS(33153), 1, + anon_sym_COMMA, + STATE(21793), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061796] = 4, + ACTIONS(33103), 1, + anon_sym_RBRACK, + ACTIONS(33155), 1, + anon_sym_COMMA, + STATE(21822), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061810] = 3, + STATE(13478), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26878), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1061822] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33157), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061836] = 4, + ACTIONS(33157), 1, + anon_sym_RBRACE, + ACTIONS(33159), 1, + anon_sym_COMMA, + STATE(21799), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061850] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23141), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061864] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33161), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061878] = 4, + ACTIONS(33161), 1, + anon_sym_RBRACE, + ACTIONS(33163), 1, + anon_sym_COMMA, + STATE(21798), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061892] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33165), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061906] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33167), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061920] = 4, + ACTIONS(23141), 1, + anon_sym_RBRACE, + ACTIONS(33169), 1, + anon_sym_COMMA, + STATE(21845), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061934] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33171), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061948] = 4, + ACTIONS(23364), 1, + anon_sym_RBRACE, + ACTIONS(33173), 1, + anon_sym_COMMA, + STATE(21830), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061962] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33175), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061976] = 4, + ACTIONS(28799), 1, + sym__alphaAlphaNumeric_ident, + STATE(14172), 1, + sym_strid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1061990] = 4, + ACTIONS(23226), 1, + anon_sym_RBRACE, + ACTIONS(33177), 1, + anon_sym_COMMA, + STATE(21829), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062004] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33179), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062018] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33181), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062032] = 4, + ACTIONS(33179), 1, + anon_sym_RBRACE, + ACTIONS(33183), 1, + anon_sym_COMMA, + STATE(21953), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062046] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23364), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062060] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33185), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062074] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33187), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062088] = 4, + ACTIONS(21630), 1, + anon_sym_RBRACE, + ACTIONS(33189), 1, + anon_sym_COMMA, + STATE(21866), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062102] = 4, + ACTIONS(23726), 1, + anon_sym_RBRACE, + ACTIONS(33191), 1, + anon_sym_COMMA, + STATE(21833), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062116] = 4, + ACTIONS(20787), 1, + anon_sym_RBRACE, + ACTIONS(33193), 1, + anon_sym_COMMA, + STATE(21906), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062130] = 4, + ACTIONS(20716), 1, + anon_sym_RBRACE, + ACTIONS(33195), 1, + anon_sym_COMMA, + STATE(22108), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062144] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33197), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062158] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3929), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062172] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33199), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062186] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21630), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062200] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23726), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062214] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33201), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062228] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33203), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062242] = 4, + ACTIONS(5063), 1, + anon_sym_RBRACK, + ACTIONS(33205), 1, + anon_sym_COMMA, + STATE(21869), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062256] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23125), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062270] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5063), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062284] = 4, + ACTIONS(4561), 1, + anon_sym_RBRACK, + ACTIONS(33207), 1, + anon_sym_COMMA, + STATE(21959), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062298] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4509), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062312] = 4, + ACTIONS(21632), 1, + anon_sym_RBRACE, + ACTIONS(33209), 1, + anon_sym_COMMA, + STATE(22145), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062326] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33211), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062340] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23402), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062354] = 4, + ACTIONS(28518), 1, + sym__alphaAlphaNumeric_ident, + STATE(14158), 1, + sym_strid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062368] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23414), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062382] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23728), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062396] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20689), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062410] = 4, + ACTIONS(23402), 1, + anon_sym_RBRACE, + ACTIONS(33213), 1, + anon_sym_COMMA, + STATE(21846), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062424] = 4, + ACTIONS(33197), 1, + anon_sym_RBRACK, + ACTIONS(33215), 1, + anon_sym_COMMA, + STATE(21956), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062438] = 4, + ACTIONS(23728), 1, + anon_sym_RBRACE, + ACTIONS(33217), 1, + anon_sym_COMMA, + STATE(21843), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062452] = 4, + ACTIONS(3929), 1, + anon_sym_RBRACK, + ACTIONS(33219), 1, + anon_sym_COMMA, + STATE(22169), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062466] = 4, + ACTIONS(23414), 1, + anon_sym_RBRACE, + ACTIONS(33221), 1, + anon_sym_COMMA, + STATE(21879), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062480] = 4, + ACTIONS(20689), 1, + anon_sym_RBRACE, + ACTIONS(33223), 1, + anon_sym_COMMA, + STATE(21937), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062494] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14731), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062508] = 4, + ACTIONS(21040), 1, + anon_sym_RBRACE, + ACTIONS(33225), 1, + anon_sym_COMMA, + STATE(21885), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062522] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33227), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062536] = 4, + ACTIONS(22872), 1, + anon_sym_RBRACE, + ACTIONS(33229), 1, + anon_sym_COMMA, + STATE(22205), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062550] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33231), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062564] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33233), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062578] = 4, + ACTIONS(14731), 1, + anon_sym_RBRACK, + ACTIONS(33235), 1, + anon_sym_COMMA, + STATE(21943), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062592] = 4, + ACTIONS(4717), 1, + anon_sym_RBRACK, + ACTIONS(33237), 1, + anon_sym_COMMA, + STATE(21891), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062606] = 4, + ACTIONS(33233), 1, + anon_sym_RBRACE, + ACTIONS(33239), 1, + anon_sym_COMMA, + STATE(21853), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062620] = 4, + ACTIONS(33231), 1, + anon_sym_RBRACE, + ACTIONS(33241), 1, + anon_sym_COMMA, + STATE(21868), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062634] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33243), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062648] = 4, + ACTIONS(20990), 1, + anon_sym_RBRACE, + ACTIONS(33245), 1, + anon_sym_COMMA, + STATE(21870), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062662] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33247), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062676] = 4, + ACTIONS(4283), 1, + anon_sym_RBRACK, + ACTIONS(33249), 1, + anon_sym_COMMA, + STATE(21875), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062690] = 4, + ACTIONS(33227), 1, + anon_sym_RBRACE, + ACTIONS(33251), 1, + anon_sym_COMMA, + STATE(21857), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062704] = 4, + ACTIONS(4053), 1, + anon_sym_RBRACK, + ACTIONS(33253), 1, + anon_sym_COMMA, + STATE(21478), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062718] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33255), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062732] = 4, + ACTIONS(23880), 1, + anon_sym_RBRACE, + ACTIONS(33257), 1, + anon_sym_COMMA, + STATE(21898), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062746] = 4, + ACTIONS(33211), 1, + anon_sym_RBRACE, + ACTIONS(33259), 1, + anon_sym_COMMA, + STATE(21901), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062760] = 4, + ACTIONS(4509), 1, + anon_sym_RBRACK, + ACTIONS(33261), 1, + anon_sym_COMMA, + STATE(22142), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062774] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4493), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062788] = 4, + ACTIONS(22681), 1, + anon_sym_RBRACE, + ACTIONS(33263), 1, + anon_sym_COMMA, + STATE(22233), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062802] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23600), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062816] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21632), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062830] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21255), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062844] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21634), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062858] = 4, + ACTIONS(21634), 1, + anon_sym_RBRACE, + ACTIONS(33265), 1, + anon_sym_COMMA, + STATE(21904), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062872] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33267), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062886] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5065), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062900] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21000), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062914] = 4, + ACTIONS(5065), 1, + anon_sym_RBRACK, + ACTIONS(33269), 1, + anon_sym_COMMA, + STATE(21909), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062928] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(33271), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062942] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33273), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062956] = 4, + ACTIONS(21000), 1, + anon_sym_RBRACE, + ACTIONS(33275), 1, + anon_sym_COMMA, + STATE(21923), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062970] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4285), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062984] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(33277), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1062998] = 4, + ACTIONS(14721), 1, + anon_sym_RBRACK, + ACTIONS(33279), 1, + anon_sym_COMMA, + STATE(22152), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063012] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33281), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063026] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33283), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063040] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14721), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063054] = 3, + STATE(13897), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26878), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1063066] = 4, + ACTIONS(21195), 1, + anon_sym_RBRACE, + ACTIONS(33285), 1, + anon_sym_COMMA, + STATE(22297), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063080] = 4, + ACTIONS(23600), 1, + anon_sym_RBRACE, + ACTIONS(33287), 1, + anon_sym_COMMA, + STATE(21947), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063094] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33289), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063108] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21046), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063122] = 3, + STATE(13608), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26878), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1063134] = 4, + ACTIONS(21046), 1, + anon_sym_RBRACE, + ACTIONS(33291), 1, + anon_sym_COMMA, + STATE(21920), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063148] = 4, + ACTIONS(23702), 1, + anon_sym_RBRACE, + ACTIONS(33293), 1, + anon_sym_COMMA, + STATE(22002), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063162] = 4, + ACTIONS(33289), 1, + anon_sym_RBRACE, + ACTIONS(33295), 1, + anon_sym_COMMA, + STATE(21963), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063176] = 4, + ACTIONS(4285), 1, + anon_sym_RBRACK, + ACTIONS(33297), 1, + anon_sym_COMMA, + STATE(21930), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063190] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4719), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063204] = 4, + ACTIONS(14773), 1, + anon_sym_RBRACK, + ACTIONS(33299), 1, + anon_sym_COMMA, + STATE(22499), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063218] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33301), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063232] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3889), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063246] = 4, + ACTIONS(4719), 1, + anon_sym_RBRACK, + ACTIONS(33303), 1, + anon_sym_COMMA, + STATE(21928), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063260] = 4, + ACTIONS(33301), 1, + anon_sym_RBRACK, + ACTIONS(33305), 1, + anon_sym_COMMA, + STATE(21979), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063274] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20671), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063288] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23886), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063302] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33307), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063316] = 4, + ACTIONS(21255), 1, + anon_sym_RBRACE, + ACTIONS(33309), 1, + anon_sym_COMMA, + STATE(22311), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063330] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33311), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063344] = 4, + ACTIONS(33283), 1, + anon_sym_RBRACE, + ACTIONS(33313), 1, + anon_sym_COMMA, + STATE(21918), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063358] = 4, + ACTIONS(23886), 1, + anon_sym_RBRACE, + ACTIONS(33315), 1, + anon_sym_COMMA, + STATE(21929), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063372] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33317), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063386] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33319), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063400] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20793), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063414] = 4, + ACTIONS(21010), 1, + anon_sym_RBRACE, + ACTIONS(33321), 1, + anon_sym_COMMA, + STATE(21954), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063428] = 4, + ACTIONS(33317), 1, + anon_sym_RBRACE, + ACTIONS(33323), 1, + anon_sym_COMMA, + STATE(21931), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063442] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33325), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063456] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20743), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063470] = 4, + ACTIONS(33325), 1, + anon_sym_RBRACK, + ACTIONS(33327), 1, + anon_sym_COMMA, + STATE(21932), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063484] = 4, + ACTIONS(21048), 1, + anon_sym_RBRACE, + ACTIONS(33329), 1, + anon_sym_COMMA, + STATE(21976), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063498] = 4, + ACTIONS(20743), 1, + anon_sym_RBRACE, + ACTIONS(33331), 1, + anon_sym_COMMA, + STATE(22009), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063512] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20722), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063526] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3731), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063540] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20924), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063554] = 4, + ACTIONS(23125), 1, + anon_sym_RBRACE, + ACTIONS(33333), 1, + anon_sym_COMMA, + STATE(22109), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063568] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33335), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063582] = 4, + ACTIONS(23604), 1, + anon_sym_RBRACE, + ACTIONS(33337), 1, + anon_sym_COMMA, + STATE(21991), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063596] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21048), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063610] = 4, + ACTIONS(3731), 1, + anon_sym_RBRACK, + ACTIONS(33339), 1, + anon_sym_COMMA, + STATE(22016), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063624] = 4, + ACTIONS(23890), 1, + anon_sym_RBRACE, + ACTIONS(33341), 1, + anon_sym_COMMA, + STATE(21936), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063638] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21010), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063652] = 4, + ACTIONS(4287), 1, + anon_sym_RBRACK, + ACTIONS(33343), 1, + anon_sym_COMMA, + STATE(21957), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063666] = 4, + ACTIONS(4721), 1, + anon_sym_RBRACK, + ACTIONS(33345), 1, + anon_sym_COMMA, + STATE(21980), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063680] = 4, + ACTIONS(23478), 1, + anon_sym_RBRACE, + ACTIONS(33347), 1, + anon_sym_COMMA, + STATE(21962), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063694] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33349), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063708] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4721), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063722] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23890), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063736] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4287), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063750] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33351), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063764] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33353), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063778] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33355), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063792] = 4, + ACTIONS(20747), 1, + anon_sym_RBRACE, + ACTIONS(33357), 1, + anon_sym_COMMA, + STATE(22026), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063806] = 4, + ACTIONS(20793), 1, + anon_sym_RBRACE, + ACTIONS(33359), 1, + anon_sym_COMMA, + STATE(22076), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063820] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23894), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063834] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20747), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063848] = 4, + ACTIONS(23894), 1, + anon_sym_RBRACE, + ACTIONS(33361), 1, + anon_sym_COMMA, + STATE(21944), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063862] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3893), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063876] = 4, + ACTIONS(14733), 1, + anon_sym_RBRACK, + ACTIONS(33363), 1, + anon_sym_COMMA, + STATE(22031), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063890] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23316), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063904] = 4, + ACTIONS(28430), 1, + sym__alphaAlphaNumeric_ident, + STATE(14062), 1, + sym_strid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063918] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14733), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063932] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33365), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063946] = 4, + ACTIONS(33365), 1, + anon_sym_RBRACE, + ACTIONS(33367), 1, + anon_sym_COMMA, + STATE(21946), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063960] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33369), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063974] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23604), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1063988] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33371), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064002] = 4, + ACTIONS(20813), 1, + anon_sym_RBRACE, + ACTIONS(33373), 1, + anon_sym_COMMA, + STATE(21675), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064016] = 4, + ACTIONS(23560), 1, + anon_sym_RBRACE, + ACTIONS(33375), 1, + anon_sym_COMMA, + STATE(21970), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064030] = 4, + ACTIONS(3893), 1, + anon_sym_RBRACK, + ACTIONS(33377), 1, + anon_sym_COMMA, + STATE(22355), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064044] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23478), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064058] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33379), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064072] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21012), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064086] = 4, + ACTIONS(21012), 1, + anon_sym_RBRACE, + ACTIONS(33381), 1, + anon_sym_COMMA, + STATE(21972), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064100] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33383), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064114] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4289), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064128] = 4, + ACTIONS(4289), 1, + anon_sym_RBRACK, + ACTIONS(33385), 1, + anon_sym_COMMA, + STATE(21974), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064142] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4563), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064156] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33387), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064170] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33389), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064184] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23480), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064198] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33391), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064212] = 4, + ACTIONS(22416), 1, + anon_sym_RBRACE, + ACTIONS(33393), 1, + anon_sym_COMMA, + STATE(22008), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064226] = 4, + ACTIONS(23480), 1, + anon_sym_RBRACE, + ACTIONS(33395), 1, + anon_sym_COMMA, + STATE(21985), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064240] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23940), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064254] = 4, + ACTIONS(28420), 1, + sym__alphaAlphaNumeric_ident, + STATE(13719), 1, + sym_strid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064268] = 4, + ACTIONS(28685), 1, + anon_sym_COLON_COLON, + ACTIONS(33397), 1, + anon_sym_RPAREN, + STATE(23248), 1, + aux_sym_hol_pcons_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064282] = 4, + ACTIONS(33355), 1, + anon_sym_RBRACE, + ACTIONS(33399), 1, + anon_sym_COMMA, + STATE(22234), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064296] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23615), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064310] = 4, + ACTIONS(23615), 1, + anon_sym_RBRACE, + ACTIONS(33401), 1, + anon_sym_COMMA, + STATE(21993), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064324] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33403), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064338] = 4, + ACTIONS(33403), 1, + anon_sym_RBRACE, + ACTIONS(33405), 1, + anon_sym_COMMA, + STATE(21994), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064352] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33407), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064366] = 4, + ACTIONS(33407), 1, + anon_sym_RBRACK, + ACTIONS(33409), 1, + anon_sym_COMMA, + STATE(21995), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064380] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21052), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064394] = 3, + STATE(13620), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26878), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1064406] = 4, + ACTIONS(21052), 1, + anon_sym_RBRACE, + ACTIONS(33411), 1, + anon_sym_COMMA, + STATE(22015), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064420] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33413), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064434] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4723), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064448] = 4, + ACTIONS(4723), 1, + anon_sym_RBRACK, + ACTIONS(33415), 1, + anon_sym_COMMA, + STATE(22023), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064462] = 3, + STATE(13393), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26878), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1064474] = 4, + ACTIONS(4563), 1, + anon_sym_RBRACK, + ACTIONS(33417), 1, + anon_sym_COMMA, + STATE(22085), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064488] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33419), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064502] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33421), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064516] = 4, + ACTIONS(4067), 1, + anon_sym_RBRACK, + ACTIONS(33423), 1, + anon_sym_COMMA, + STATE(22347), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064530] = 4, + ACTIONS(28681), 1, + anon_sym_COMMA, + ACTIONS(33425), 1, + anon_sym_RPAREN, + STATE(22641), 1, + aux_sym_hol_ptuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064544] = 4, + ACTIONS(33349), 1, + anon_sym_RBRACE, + ACTIONS(33427), 1, + anon_sym_COMMA, + STATE(22116), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064558] = 4, + ACTIONS(23624), 1, + anon_sym_RBRACE, + ACTIONS(33429), 1, + anon_sym_COMMA, + STATE(21997), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064572] = 4, + ACTIONS(20722), 1, + anon_sym_RBRACE, + ACTIONS(33431), 1, + anon_sym_COMMA, + STATE(23212), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064586] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23606), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064600] = 4, + ACTIONS(21655), 1, + anon_sym_RBRACE, + ACTIONS(33433), 1, + anon_sym_COMMA, + STATE(22052), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064614] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23624), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064628] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33435), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064642] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33437), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064656] = 4, + ACTIONS(33421), 1, + anon_sym_RBRACE, + ACTIONS(33439), 1, + anon_sym_COMMA, + STATE(22003), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064670] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23626), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064684] = 4, + ACTIONS(23626), 1, + anon_sym_RBRACE, + ACTIONS(33441), 1, + anon_sym_COMMA, + STATE(22018), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064698] = 4, + ACTIONS(5077), 1, + anon_sym_RBRACK, + ACTIONS(33443), 1, + anon_sym_COMMA, + STATE(22060), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064712] = 4, + ACTIONS(23606), 1, + anon_sym_RBRACE, + ACTIONS(33445), 1, + anon_sym_COMMA, + STATE(22007), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064726] = 4, + ACTIONS(28799), 1, + sym__alphaAlphaNumeric_ident, + STATE(15105), 1, + sym_strdesc, + STATE(24888), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064740] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23952), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064754] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33447), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064768] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33449), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064782] = 4, + ACTIONS(23952), 1, + anon_sym_RBRACE, + ACTIONS(33451), 1, + anon_sym_COMMA, + STATE(22067), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064796] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33453), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064810] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33455), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064824] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22434), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064838] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33457), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064852] = 4, + ACTIONS(33457), 1, + anon_sym_RBRACE, + ACTIONS(33459), 1, + anon_sym_COMMA, + STATE(22068), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064866] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23918), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064880] = 4, + ACTIONS(33455), 1, + anon_sym_RBRACE, + ACTIONS(33461), 1, + anon_sym_COMMA, + STATE(22013), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064894] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33463), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064908] = 4, + ACTIONS(22434), 1, + anon_sym_RBRACE, + ACTIONS(33465), 1, + anon_sym_COMMA, + STATE(22037), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064922] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33467), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064936] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33469), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064950] = 4, + ACTIONS(33469), 1, + anon_sym_RBRACK, + ACTIONS(33471), 1, + anon_sym_COMMA, + STATE(22069), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064964] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33473), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064978] = 4, + ACTIONS(33473), 1, + anon_sym_RBRACE, + ACTIONS(33475), 1, + anon_sym_COMMA, + STATE(22020), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1064992] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33477), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065006] = 4, + ACTIONS(33467), 1, + anon_sym_RBRACE, + ACTIONS(33479), 1, + anon_sym_COMMA, + STATE(22041), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065020] = 4, + ACTIONS(20924), 1, + anon_sym_RBRACE, + ACTIONS(33481), 1, + anon_sym_COMMA, + STATE(22235), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065034] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33483), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065048] = 4, + ACTIONS(33483), 1, + anon_sym_RBRACK, + ACTIONS(33485), 1, + anon_sym_COMMA, + STATE(22042), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065062] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3871), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065076] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20771), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065090] = 4, + ACTIONS(21615), 1, + anon_sym_RBRACE, + ACTIONS(33487), 1, + anon_sym_COMMA, + STATE(22113), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065104] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23174), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065118] = 4, + ACTIONS(20771), 1, + anon_sym_RBRACE, + ACTIONS(33489), 1, + anon_sym_COMMA, + STATE(22071), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065132] = 4, + ACTIONS(33453), 1, + anon_sym_RBRACK, + ACTIONS(33491), 1, + anon_sym_COMMA, + STATE(22160), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065146] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14735), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065160] = 4, + ACTIONS(23884), 1, + anon_sym_RBRACE, + ACTIONS(33493), 1, + anon_sym_COMMA, + STATE(22946), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065174] = 4, + ACTIONS(22440), 1, + anon_sym_RBRACE, + ACTIONS(33495), 1, + anon_sym_COMMA, + STATE(22046), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065188] = 4, + ACTIONS(14735), 1, + anon_sym_RBRACK, + ACTIONS(33497), 1, + anon_sym_COMMA, + STATE(22077), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065202] = 4, + ACTIONS(4121), 1, + anon_sym_RBRACK, + ACTIONS(33499), 1, + anon_sym_COMMA, + STATE(22119), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065216] = 4, + ACTIONS(23918), 1, + anon_sym_RBRACE, + ACTIONS(33501), 1, + anon_sym_COMMA, + STATE(22288), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065230] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22440), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065244] = 4, + ACTIONS(20581), 1, + anon_sym_RBRACE, + ACTIONS(33503), 1, + anon_sym_COMMA, + STATE(22131), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065258] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065272] = 4, + ACTIONS(3977), 1, + anon_sym_RBRACK, + ACTIONS(33505), 1, + anon_sym_COMMA, + STATE(22164), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065286] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33507), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065300] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33509), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065314] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20813), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065328] = 4, + ACTIONS(3927), 1, + anon_sym_RBRACK, + ACTIONS(33511), 1, + anon_sym_COMMA, + STATE(21817), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065342] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(33513), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065356] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22442), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065370] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33515), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065384] = 4, + ACTIONS(22442), 1, + anon_sym_RBRACE, + ACTIONS(33517), 1, + anon_sym_COMMA, + STATE(22050), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065398] = 4, + ACTIONS(23888), 1, + anon_sym_RBRACE, + ACTIONS(33519), 1, + anon_sym_COMMA, + STATE(22084), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065412] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33521), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065426] = 4, + ACTIONS(33521), 1, + anon_sym_RBRACE, + ACTIONS(33523), 1, + anon_sym_COMMA, + STATE(22053), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065440] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21657), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065454] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33525), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065468] = 4, + ACTIONS(4639), 1, + anon_sym_RBRACK, + ACTIONS(33527), 1, + anon_sym_COMMA, + STATE(22252), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065482] = 4, + ACTIONS(21054), 1, + anon_sym_RBRACE, + ACTIONS(33529), 1, + anon_sym_COMMA, + STATE(22102), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065496] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33531), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065510] = 4, + ACTIONS(4301), 1, + anon_sym_RBRACK, + ACTIONS(33533), 1, + anon_sym_COMMA, + STATE(22105), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065524] = 4, + ACTIONS(21657), 1, + anon_sym_RBRACE, + ACTIONS(33535), 1, + anon_sym_COMMA, + STATE(22098), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065538] = 4, + ACTIONS(33537), 1, + anon_sym_COMMA, + ACTIONS(33539), 1, + anon_sym_RBRACE, + STATE(22513), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065552] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5079), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065566] = 4, + ACTIONS(23174), 1, + anon_sym_RBRACE, + ACTIONS(33541), 1, + anon_sym_COMMA, + STATE(22373), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065580] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33543), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065594] = 4, + ACTIONS(14767), 1, + anon_sym_RBRACK, + ACTIONS(33545), 1, + anon_sym_COMMA, + STATE(22519), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065608] = 4, + ACTIONS(5079), 1, + anon_sym_RBRACK, + ACTIONS(33547), 1, + anon_sym_COMMA, + STATE(22106), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065622] = 4, + ACTIONS(20769), 1, + anon_sym_RBRACE, + ACTIONS(33549), 1, + anon_sym_COMMA, + STATE(22572), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065636] = 4, + ACTIONS(33551), 1, + anon_sym_RBRACK, + ACTIONS(33553), 1, + anon_sym_SEMI, + STATE(22875), 1, + aux_sym_hol_plist_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065650] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23888), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065664] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33555), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065678] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33557), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065692] = 4, + ACTIONS(20795), 1, + anon_sym_RBRACE, + ACTIONS(33559), 1, + anon_sym_COMMA, + STATE(22155), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065706] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33561), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065720] = 4, + ACTIONS(33561), 1, + anon_sym_RBRACE, + ACTIONS(33563), 1, + anon_sym_COMMA, + STATE(22090), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065734] = 4, + ACTIONS(20720), 1, + anon_sym_RBRACE, + ACTIONS(33565), 1, + anon_sym_COMMA, + STATE(22532), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065748] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33567), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065762] = 4, + ACTIONS(4087), 1, + anon_sym_RBRACK, + ACTIONS(33569), 1, + anon_sym_COMMA, + STATE(21410), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065776] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20795), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065790] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33571), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065804] = 4, + ACTIONS(33571), 1, + anon_sym_RBRACK, + ACTIONS(33573), 1, + anon_sym_COMMA, + STATE(22095), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065818] = 4, + ACTIONS(33387), 1, + anon_sym_RBRACE, + ACTIONS(33575), 1, + anon_sym_COMMA, + STATE(21612), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065832] = 4, + ACTIONS(23127), 1, + anon_sym_RBRACE, + ACTIONS(33577), 1, + anon_sym_COMMA, + STATE(22272), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065846] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33579), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065860] = 4, + ACTIONS(4565), 1, + anon_sym_RBRACK, + ACTIONS(33581), 1, + anon_sym_COMMA, + STATE(22184), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065874] = 4, + ACTIONS(23424), 1, + anon_sym_RBRACE, + ACTIONS(33583), 1, + anon_sym_COMMA, + STATE(21966), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065888] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23914), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065902] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4565), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065916] = 4, + ACTIONS(23914), 1, + anon_sym_RBRACE, + ACTIONS(33585), 1, + anon_sym_COMMA, + STATE(22099), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065930] = 4, + ACTIONS(33515), 1, + anon_sym_RBRACK, + ACTIONS(33587), 1, + anon_sym_COMMA, + STATE(22251), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065944] = 4, + ACTIONS(33567), 1, + anon_sym_RBRACE, + ACTIONS(33589), 1, + anon_sym_COMMA, + STATE(22310), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065958] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33591), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065972] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33593), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1065986] = 4, + ACTIONS(21444), 1, + anon_sym_RBRACE, + ACTIONS(33595), 1, + anon_sym_COMMA, + STATE(22199), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066000] = 4, + ACTIONS(21068), 1, + anon_sym_RBRACE, + ACTIONS(33597), 1, + anon_sym_COMMA, + STATE(22133), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066014] = 4, + ACTIONS(21396), 1, + anon_sym_RBRACE, + ACTIONS(33599), 1, + anon_sym_COMMA, + STATE(22903), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066028] = 4, + ACTIONS(21659), 1, + anon_sym_RBRACE, + ACTIONS(33601), 1, + anon_sym_COMMA, + STATE(22134), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066042] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33603), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066056] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23458), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066070] = 4, + ACTIONS(4735), 1, + anon_sym_RBRACK, + ACTIONS(33605), 1, + anon_sym_COMMA, + STATE(22136), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066084] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21659), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066098] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33607), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066112] = 4, + ACTIONS(33607), 1, + anon_sym_RBRACE, + ACTIONS(33609), 1, + anon_sym_COMMA, + STATE(22123), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066126] = 4, + ACTIONS(5081), 1, + anon_sym_RBRACK, + ACTIONS(33611), 1, + anon_sym_COMMA, + STATE(22139), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066140] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21058), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066154] = 4, + ACTIONS(33591), 1, + anon_sym_RBRACK, + ACTIONS(33613), 1, + anon_sym_COMMA, + STATE(22318), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066168] = 4, + ACTIONS(21058), 1, + anon_sym_RBRACE, + ACTIONS(33615), 1, + anon_sym_COMMA, + STATE(22146), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066182] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4303), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066196] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5081), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066210] = 4, + ACTIONS(4303), 1, + anon_sym_RBRACK, + ACTIONS(33617), 1, + anon_sym_COMMA, + STATE(22149), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066224] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20720), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066238] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23127), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066252] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33619), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066266] = 4, + ACTIONS(23328), 1, + anon_sym_RBRACE, + ACTIONS(33621), 1, + anon_sym_COMMA, + STATE(22906), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066280] = 4, + ACTIONS(4511), 1, + anon_sym_RBRACK, + ACTIONS(33623), 1, + anon_sym_COMMA, + STATE(22536), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066294] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21638), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066308] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33625), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066322] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33627), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066336] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33629), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066350] = 4, + ACTIONS(21638), 1, + anon_sym_RBRACE, + ACTIONS(33631), 1, + anon_sym_COMMA, + STATE(22255), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066364] = 4, + ACTIONS(20966), 1, + anon_sym_RBRACE, + ACTIONS(33633), 1, + anon_sym_COMMA, + STATE(22275), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066378] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4123), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066392] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33635), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066406] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33637), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066420] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33639), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066434] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33641), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066448] = 3, + STATE(8842), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27457), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1066460] = 4, + ACTIONS(22914), 1, + anon_sym_RBRACE, + ACTIONS(33643), 1, + anon_sym_COMMA, + STATE(22264), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066474] = 4, + ACTIONS(23942), 1, + anon_sym_RBRACE, + ACTIONS(33645), 1, + anon_sym_COMMA, + STATE(22166), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066488] = 4, + ACTIONS(33619), 1, + anon_sym_RBRACE, + ACTIONS(33647), 1, + anon_sym_COMMA, + STATE(22447), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066502] = 4, + ACTIONS(21478), 1, + anon_sym_RBRACE, + ACTIONS(33649), 1, + anon_sym_COMMA, + STATE(22781), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066516] = 4, + ACTIONS(3871), 1, + anon_sym_RBRACK, + ACTIONS(33651), 1, + anon_sym_COMMA, + STATE(23349), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066530] = 4, + ACTIONS(4663), 1, + anon_sym_RBRACK, + ACTIONS(33653), 1, + anon_sym_COMMA, + STATE(22281), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066544] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20627), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066558] = 4, + ACTIONS(4933), 1, + anon_sym_RBRACK, + ACTIONS(33655), 1, + anon_sym_COMMA, + STATE(22993), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066572] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21072), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066586] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21661), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066600] = 4, + ACTIONS(21072), 1, + anon_sym_RBRACE, + ACTIONS(33657), 1, + anon_sym_COMMA, + STATE(22175), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066614] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4737), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066628] = 4, + ACTIONS(21661), 1, + anon_sym_RBRACE, + ACTIONS(33659), 1, + anon_sym_COMMA, + STATE(22173), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066642] = 4, + ACTIONS(4543), 1, + anon_sym_RBRACK, + ACTIONS(33661), 1, + anon_sym_COMMA, + STATE(22678), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066656] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5083), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066670] = 4, + ACTIONS(5083), 1, + anon_sym_RBRACK, + ACTIONS(33663), 1, + anon_sym_COMMA, + STATE(22179), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066684] = 4, + ACTIONS(4737), 1, + anon_sym_RBRACK, + ACTIONS(33665), 1, + anon_sym_COMMA, + STATE(22180), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066698] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4511), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066712] = 4, + ACTIONS(21070), 1, + anon_sym_RBRACE, + ACTIONS(33667), 1, + anon_sym_COMMA, + STATE(22171), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066726] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3927), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066740] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21663), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066754] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21070), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066768] = 4, + ACTIONS(4305), 1, + anon_sym_RBRACK, + ACTIONS(33669), 1, + anon_sym_COMMA, + STATE(22174), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066782] = 4, + ACTIONS(21663), 1, + anon_sym_RBRACE, + ACTIONS(33671), 1, + anon_sym_COMMA, + STATE(22333), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066796] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4305), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066810] = 4, + ACTIONS(3875), 1, + anon_sym_RBRACK, + ACTIONS(33673), 1, + anon_sym_COMMA, + STATE(23268), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066824] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33675), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066838] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14723), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066852] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33677), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066866] = 4, + ACTIONS(21517), 1, + anon_sym_RBRACE, + ACTIONS(33679), 1, + anon_sym_COMMA, + STATE(22276), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066880] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20797), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066894] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33681), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066908] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33683), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066922] = 4, + ACTIONS(4123), 1, + anon_sym_RBRACK, + ACTIONS(33685), 1, + anon_sym_COMMA, + STATE(22270), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066936] = 4, + ACTIONS(20797), 1, + anon_sym_RBRACE, + ACTIONS(33687), 1, + anon_sym_COMMA, + STATE(22282), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066950] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33689), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066964] = 4, + ACTIONS(22490), 1, + anon_sym_RBRACE, + ACTIONS(33691), 1, + anon_sym_COMMA, + STATE(22192), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066978] = 4, + ACTIONS(20627), 1, + anon_sym_RBRACE, + ACTIONS(33693), 1, + anon_sym_COMMA, + STATE(22269), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1066992] = 4, + ACTIONS(4987), 1, + anon_sym_RBRACK, + ACTIONS(33695), 1, + anon_sym_COMMA, + STATE(22289), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067006] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3979), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067020] = 4, + ACTIONS(23318), 1, + anon_sym_RBRACE, + ACTIONS(33697), 1, + anon_sym_COMMA, + STATE(22904), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067034] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23962), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067048] = 4, + ACTIONS(33625), 1, + anon_sym_RBRACE, + ACTIONS(33699), 1, + anon_sym_COMMA, + STATE(23090), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067062] = 4, + ACTIONS(21076), 1, + anon_sym_RBRACE, + ACTIONS(33701), 1, + anon_sym_COMMA, + STATE(22215), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067076] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33703), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067090] = 4, + ACTIONS(23962), 1, + anon_sym_RBRACE, + ACTIONS(33705), 1, + anon_sym_COMMA, + STATE(22200), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067104] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21074), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067118] = 4, + ACTIONS(21074), 1, + anon_sym_RBRACE, + ACTIONS(33707), 1, + anon_sym_COMMA, + STATE(22195), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067132] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33709), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067146] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4307), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067160] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21076), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067174] = 4, + ACTIONS(4307), 1, + anon_sym_RBRACK, + ACTIONS(33711), 1, + anon_sym_COMMA, + STATE(22197), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067188] = 4, + ACTIONS(4739), 1, + anon_sym_RBRACK, + ACTIONS(33713), 1, + anon_sym_COMMA, + STATE(22221), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067202] = 4, + ACTIONS(33709), 1, + anon_sym_RBRACE, + ACTIONS(33715), 1, + anon_sym_COMMA, + STATE(22201), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067216] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33717), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067230] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4739), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067244] = 3, + ACTIONS(33719), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(28460), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1067256] = 4, + ACTIONS(3979), 1, + anon_sym_RBRACK, + ACTIONS(33721), 1, + anon_sym_COMMA, + STATE(22274), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067270] = 4, + ACTIONS(33717), 1, + anon_sym_RBRACK, + ACTIONS(33723), 1, + anon_sym_COMMA, + STATE(22202), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067284] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4567), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067298] = 4, + ACTIONS(14723), 1, + anon_sym_RBRACK, + ACTIONS(33725), 1, + anon_sym_COMMA, + STATE(22358), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067312] = 4, + ACTIONS(22790), 1, + anon_sym_RBRACE, + ACTIONS(33727), 1, + anon_sym_COMMA, + STATE(22332), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067326] = 4, + ACTIONS(23866), 1, + anon_sym_RBRACE, + ACTIONS(33729), 1, + anon_sym_COMMA, + STATE(21749), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067340] = 4, + ACTIONS(33637), 1, + anon_sym_RBRACE, + ACTIONS(33731), 1, + anon_sym_COMMA, + STATE(22238), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067354] = 4, + ACTIONS(4567), 1, + anon_sym_RBRACK, + ACTIONS(33733), 1, + anon_sym_COMMA, + STATE(22285), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067368] = 4, + ACTIONS(23954), 1, + anon_sym_RBRACE, + ACTIONS(33735), 1, + anon_sym_COMMA, + STATE(22206), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067382] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22666), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067396] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22529), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067410] = 4, + ACTIONS(23458), 1, + anon_sym_RBRACE, + ACTIONS(33737), 1, + anon_sym_COMMA, + STATE(23136), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067424] = 4, + ACTIONS(22529), 1, + anon_sym_RBRACE, + ACTIONS(33739), 1, + anon_sym_COMMA, + STATE(22208), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067438] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33741), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067452] = 4, + ACTIONS(33741), 1, + anon_sym_RBRACE, + ACTIONS(33743), 1, + anon_sym_COMMA, + STATE(22209), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067466] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33745), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067480] = 4, + ACTIONS(33745), 1, + anon_sym_RBRACK, + ACTIONS(33747), 1, + anon_sym_COMMA, + STATE(22213), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067494] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33749), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067508] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23954), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067522] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33751), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067536] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33753), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067550] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33755), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067564] = 4, + ACTIONS(22553), 1, + anon_sym_RBRACE, + ACTIONS(33757), 1, + anon_sym_COMMA, + STATE(22218), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067578] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23732), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067592] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23198), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067606] = 4, + ACTIONS(22519), 1, + anon_sym_RBRACE, + ACTIONS(33759), 1, + anon_sym_COMMA, + STATE(22239), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067620] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22553), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067634] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33761), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067648] = 4, + ACTIONS(33703), 1, + anon_sym_RBRACK, + ACTIONS(33763), 1, + anon_sym_COMMA, + STATE(22471), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067662] = 4, + ACTIONS(33749), 1, + anon_sym_RBRACE, + ACTIONS(33765), 1, + anon_sym_COMMA, + STATE(23846), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067676] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33767), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067690] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33769), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067704] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33771), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067718] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21084), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067732] = 4, + ACTIONS(21084), 1, + anon_sym_RBRACE, + ACTIONS(33773), 1, + anon_sym_COMMA, + STATE(22242), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067746] = 4, + ACTIONS(23198), 1, + anon_sym_RBRACE, + ACTIONS(33775), 1, + anon_sym_COMMA, + STATE(22222), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067760] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22557), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067774] = 4, + ACTIONS(4103), 1, + anon_sym_RBRACK, + ACTIONS(33777), 1, + anon_sym_COMMA, + STATE(22909), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067788] = 4, + ACTIONS(22557), 1, + anon_sym_RBRACE, + ACTIONS(33779), 1, + anon_sym_COMMA, + STATE(22226), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067802] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4741), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067816] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33781), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067830] = 4, + ACTIONS(4741), 1, + anon_sym_RBRACK, + ACTIONS(33783), 1, + anon_sym_COMMA, + STATE(22246), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067844] = 4, + ACTIONS(33781), 1, + anon_sym_RBRACE, + ACTIONS(33785), 1, + anon_sym_COMMA, + STATE(22225), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067858] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33787), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067872] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33789), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067886] = 4, + ACTIONS(33791), 1, + anon_sym_COMMA, + ACTIONS(33793), 1, + anon_sym_RBRACK, + STATE(22515), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067900] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33795), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067914] = 4, + ACTIONS(33789), 1, + anon_sym_RBRACE, + ACTIONS(33797), 1, + anon_sym_COMMA, + STATE(22231), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067928] = 4, + ACTIONS(22666), 1, + anon_sym_RBRACE, + ACTIONS(33799), 1, + anon_sym_COMMA, + STATE(22517), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067942] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33801), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067956] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33803), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067970] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22790), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067984] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33805), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1067998] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33807), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068012] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21086), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068026] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(33809), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068040] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33811), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068054] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22546), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068068] = 4, + ACTIONS(22546), 1, + anon_sym_RBRACE, + ACTIONS(33813), 1, + anon_sym_COMMA, + STATE(22257), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068082] = 4, + ACTIONS(33807), 1, + anon_sym_RBRACE, + ACTIONS(33815), 1, + anon_sym_COMMA, + STATE(22549), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068096] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33817), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068110] = 4, + ACTIONS(33817), 1, + anon_sym_RBRACE, + ACTIONS(33819), 1, + anon_sym_COMMA, + STATE(22258), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068124] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4053), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068138] = 4, + ACTIONS(20651), 1, + anon_sym_RBRACE, + ACTIONS(33821), 1, + anon_sym_COMMA, + STATE(22364), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068152] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33823), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068166] = 4, + ACTIONS(33823), 1, + anon_sym_RBRACK, + ACTIONS(33825), 1, + anon_sym_COMMA, + STATE(22259), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068180] = 4, + ACTIONS(23732), 1, + anon_sym_RBRACE, + ACTIONS(33827), 1, + anon_sym_COMMA, + STATE(22507), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068194] = 4, + ACTIONS(20701), 1, + anon_sym_RBRACE, + ACTIONS(33829), 1, + anon_sym_COMMA, + STATE(22496), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068208] = 4, + ACTIONS(21124), 1, + anon_sym_RBRACE, + ACTIONS(33831), 1, + anon_sym_COMMA, + STATE(22298), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068222] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33833), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068236] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33835), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068250] = 4, + ACTIONS(20467), 1, + anon_sym_RBRACE, + ACTIONS(33837), 1, + anon_sym_COMMA, + STATE(22301), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068264] = 4, + ACTIONS(22559), 1, + anon_sym_RBRACE, + ACTIONS(33839), 1, + anon_sym_COMMA, + STATE(22261), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068278] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21124), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068292] = 4, + ACTIONS(4211), 1, + anon_sym_RBRACK, + ACTIONS(33841), 1, + anon_sym_COMMA, + STATE(22525), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068306] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22559), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068320] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33843), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068334] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33845), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068348] = 4, + ACTIONS(4125), 1, + anon_sym_RBRACK, + ACTIONS(33847), 1, + anon_sym_COMMA, + STATE(22309), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068362] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22570), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068376] = 4, + ACTIONS(5095), 1, + anon_sym_RBRACK, + ACTIONS(33849), 1, + anon_sym_COMMA, + STATE(22308), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068390] = 4, + ACTIONS(22570), 1, + anon_sym_RBRACE, + ACTIONS(33851), 1, + anon_sym_COMMA, + STATE(22265), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068404] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23038), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068418] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33853), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068432] = 4, + ACTIONS(33853), 1, + anon_sym_RBRACE, + ACTIONS(33855), 1, + anon_sym_COMMA, + STATE(22267), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068446] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33857), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068460] = 4, + ACTIONS(33835), 1, + anon_sym_RBRACK, + ACTIONS(33859), 1, + anon_sym_COMMA, + STATE(22560), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068474] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20651), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068488] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4125), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068502] = 4, + ACTIONS(3981), 1, + anon_sym_RBRACK, + ACTIONS(33861), 1, + anon_sym_COMMA, + STATE(22392), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068516] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23178), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068530] = 4, + ACTIONS(23042), 1, + anon_sym_RBRACE, + ACTIONS(33863), 1, + anon_sym_COMMA, + STATE(22396), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068544] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3981), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068558] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20970), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068572] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21521), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068586] = 4, + ACTIONS(21116), 1, + anon_sym_RBRACE, + ACTIONS(33865), 1, + anon_sym_COMMA, + STATE(22320), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068600] = 4, + ACTIONS(20970), 1, + anon_sym_RBRACE, + ACTIONS(33867), 1, + anon_sym_COMMA, + STATE(22522), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068614] = 4, + ACTIONS(4319), 1, + anon_sym_RBRACK, + ACTIONS(33869), 1, + anon_sym_COMMA, + STATE(22324), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068628] = 4, + ACTIONS(23038), 1, + anon_sym_RBRACE, + ACTIONS(33871), 1, + anon_sym_COMMA, + STATE(22313), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068642] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4665), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068656] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33873), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068670] = 4, + ACTIONS(33873), 1, + anon_sym_RBRACE, + ACTIONS(33875), 1, + anon_sym_COMMA, + STATE(22316), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068684] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(33877), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068698] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33879), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068712] = 4, + ACTIONS(21521), 1, + anon_sym_RBRACE, + ACTIONS(33881), 1, + anon_sym_COMMA, + STATE(22381), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068726] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33883), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068740] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23042), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068754] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4989), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068768] = 4, + ACTIONS(23416), 1, + anon_sym_RBRACE, + ACTIONS(33885), 1, + anon_sym_COMMA, + STATE(22382), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068782] = 4, + ACTIONS(23178), 1, + anon_sym_RBRACE, + ACTIONS(33887), 1, + anon_sym_COMMA, + STATE(22336), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068796] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20753), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068810] = 4, + ACTIONS(33879), 1, + anon_sym_RBRACK, + ACTIONS(33889), 1, + anon_sym_COMMA, + STATE(22323), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068824] = 3, + ACTIONS(33893), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(33891), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1068836] = 4, + ACTIONS(4665), 1, + anon_sym_RBRACK, + ACTIONS(33895), 1, + anon_sym_COMMA, + STATE(22547), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068850] = 4, + ACTIONS(20859), 1, + anon_sym_RBRACE, + ACTIONS(33897), 1, + anon_sym_COMMA, + STATE(23662), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068864] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21217), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068878] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20461), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068892] = 4, + ACTIONS(4989), 1, + anon_sym_RBRACK, + ACTIONS(33899), 1, + anon_sym_COMMA, + STATE(22413), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068906] = 4, + ACTIONS(21114), 1, + anon_sym_RBRACE, + ACTIONS(33901), 1, + anon_sym_COMMA, + STATE(22334), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068920] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20469), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068934] = 4, + ACTIONS(20461), 1, + anon_sym_RBRACE, + ACTIONS(33903), 1, + anon_sym_COMMA, + STATE(22409), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068948] = 4, + ACTIONS(4753), 1, + anon_sym_RBRACK, + ACTIONS(33905), 1, + anon_sym_COMMA, + STATE(22341), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068962] = 4, + ACTIONS(33803), 1, + anon_sym_RBRACE, + ACTIONS(33907), 1, + anon_sym_COMMA, + STATE(23172), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068976] = 4, + ACTIONS(20469), 1, + anon_sym_RBRACE, + ACTIONS(33909), 1, + anon_sym_COMMA, + STATE(22342), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1068990] = 4, + ACTIONS(22808), 1, + anon_sym_RBRACE, + ACTIONS(33911), 1, + anon_sym_COMMA, + STATE(22531), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069004] = 4, + ACTIONS(23068), 1, + anon_sym_RBRACE, + ACTIONS(33913), 1, + anon_sym_COMMA, + STATE(22331), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069018] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5097), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069032] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4127), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069046] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33915), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069060] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33917), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069074] = 4, + ACTIONS(5097), 1, + anon_sym_RBRACK, + ACTIONS(33919), 1, + anon_sym_COMMA, + STATE(22349), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069088] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23068), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069102] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(33921), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069116] = 4, + ACTIONS(21432), 1, + anon_sym_RBRACE, + ACTIONS(33923), 1, + anon_sym_COMMA, + STATE(22778), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069130] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33925), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069144] = 4, + ACTIONS(4127), 1, + anon_sym_RBRACK, + ACTIONS(33927), 1, + anon_sym_COMMA, + STATE(22414), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069158] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33929), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069172] = 4, + ACTIONS(30339), 1, + sym__alphaAlphaNumeric_ident, + STATE(12664), 1, + sym_fctbind, + STATE(24954), 1, + sym_fctid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069186] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21128), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069200] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21394), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069214] = 4, + ACTIONS(21128), 1, + anon_sym_RBRACE, + ACTIONS(33931), 1, + anon_sym_COMMA, + STATE(22368), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069228] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33933), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069242] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4321), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069256] = 4, + ACTIONS(21394), 1, + anon_sym_RBRACE, + ACTIONS(33935), 1, + anon_sym_COMMA, + STATE(22980), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069270] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33937), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069284] = 4, + ACTIONS(4321), 1, + anon_sym_RBRACK, + ACTIONS(33939), 1, + anon_sym_COMMA, + STATE(22379), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069298] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22702), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069312] = 4, + ACTIONS(23236), 1, + anon_sym_RBRACE, + ACTIONS(33941), 1, + anon_sym_COMMA, + STATE(22466), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069326] = 4, + ACTIONS(21217), 1, + anon_sym_RBRACE, + ACTIONS(33943), 1, + anon_sym_COMMA, + STATE(22713), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069340] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23076), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069354] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22794), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069368] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33945), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069382] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21120), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069396] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33947), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069410] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33949), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069424] = 4, + ACTIONS(21120), 1, + anon_sym_RBRACE, + ACTIONS(33951), 1, + anon_sym_COMMA, + STATE(22371), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069438] = 4, + ACTIONS(20471), 1, + anon_sym_RBRACE, + ACTIONS(33953), 1, + anon_sym_COMMA, + STATE(22383), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069452] = 4, + ACTIONS(33949), 1, + anon_sym_RBRACE, + ACTIONS(33955), 1, + anon_sym_COMMA, + STATE(22367), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069466] = 4, + ACTIONS(20874), 1, + anon_sym_RBRACE, + ACTIONS(33957), 1, + anon_sym_COMMA, + STATE(22423), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069480] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4755), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069494] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20471), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069508] = 4, + ACTIONS(5099), 1, + anon_sym_RBRACK, + ACTIONS(33959), 1, + anon_sym_COMMA, + STATE(22388), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069522] = 4, + ACTIONS(4755), 1, + anon_sym_RBRACK, + ACTIONS(33961), 1, + anon_sym_COMMA, + STATE(22376), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069536] = 4, + ACTIONS(3743), 1, + anon_sym_RBRACK, + ACTIONS(33963), 1, + anon_sym_COMMA, + STATE(22441), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069550] = 4, + ACTIONS(23076), 1, + anon_sym_RBRACE, + ACTIONS(33965), 1, + anon_sym_COMMA, + STATE(22350), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069564] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4069), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069578] = 4, + ACTIONS(33945), 1, + anon_sym_RBRACE, + ACTIONS(33967), 1, + anon_sym_COMMA, + STATE(22430), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069592] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5099), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069606] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33969), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069620] = 4, + ACTIONS(33969), 1, + anon_sym_RBRACE, + ACTIONS(33971), 1, + anon_sym_COMMA, + STATE(22360), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069634] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33973), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069648] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33975), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069662] = 4, + ACTIONS(33917), 1, + anon_sym_RBRACE, + ACTIONS(33977), 1, + anon_sym_COMMA, + STATE(22508), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069676] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33979), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069690] = 4, + ACTIONS(33979), 1, + anon_sym_RBRACK, + ACTIONS(33981), 1, + anon_sym_COMMA, + STATE(22518), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069704] = 4, + ACTIONS(4951), 1, + anon_sym_RBRACK, + ACTIONS(33983), 1, + anon_sym_COMMA, + STATE(22796), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069718] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33985), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069732] = 4, + ACTIONS(20914), 1, + anon_sym_RBRACE, + ACTIONS(33987), 1, + anon_sym_COMMA, + STATE(23399), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069746] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33989), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069760] = 4, + ACTIONS(33985), 1, + anon_sym_RBRACK, + ACTIONS(33991), 1, + anon_sym_COMMA, + STATE(22432), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069774] = 4, + ACTIONS(21523), 1, + anon_sym_RBRACE, + ACTIONS(33993), 1, + anon_sym_COMMA, + STATE(22537), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069788] = 4, + ACTIONS(21136), 1, + anon_sym_RBRACE, + ACTIONS(33995), 1, + anon_sym_COMMA, + STATE(22407), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069802] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20669), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069816] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(33997), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069830] = 4, + ACTIONS(21665), 1, + anon_sym_RBRACE, + ACTIONS(33999), 1, + anon_sym_COMMA, + STATE(22400), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069844] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34001), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069858] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21136), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069872] = 4, + ACTIONS(23382), 1, + anon_sym_RBRACE, + ACTIONS(34003), 1, + anon_sym_COMMA, + STATE(23475), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069886] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34005), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069900] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21665), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069914] = 4, + ACTIONS(4757), 1, + anon_sym_RBRACK, + ACTIONS(34007), 1, + anon_sym_COMMA, + STATE(22405), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069928] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22808), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069942] = 4, + ACTIONS(4323), 1, + anon_sym_RBRACK, + ACTIONS(34009), 1, + anon_sym_COMMA, + STATE(22420), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069956] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20859), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069970] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4757), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069984] = 4, + ACTIONS(20669), 1, + anon_sym_RBRACE, + ACTIONS(34011), 1, + anon_sym_COMMA, + STATE(22497), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1069998] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34013), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070012] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4323), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070026] = 4, + ACTIONS(23446), 1, + anon_sym_RBRACE, + ACTIONS(34015), 1, + anon_sym_COMMA, + STATE(22416), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070040] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21523), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070054] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22778), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070068] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20473), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070082] = 4, + ACTIONS(20473), 1, + anon_sym_RBRACE, + ACTIONS(34017), 1, + anon_sym_COMMA, + STATE(22422), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070096] = 4, + ACTIONS(14765), 1, + anon_sym_RBRACK, + ACTIONS(34019), 1, + anon_sym_COMMA, + STATE(21472), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070110] = 4, + ACTIONS(22794), 1, + anon_sym_RBRACE, + ACTIONS(34021), 1, + anon_sym_COMMA, + STATE(22485), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070124] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22523), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070138] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5101), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070152] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14765), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070166] = 4, + ACTIONS(5101), 1, + anon_sym_RBRACK, + ACTIONS(34023), 1, + anon_sym_COMMA, + STATE(22426), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070180] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(34025), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070194] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3983), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070208] = 4, + ACTIONS(3889), 1, + anon_sym_RBRACK, + ACTIONS(34027), 1, + anon_sym_COMMA, + STATE(21518), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070222] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34029), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070236] = 4, + ACTIONS(22650), 1, + anon_sym_RBRACE, + ACTIONS(34031), 1, + anon_sym_COMMA, + STATE(22428), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070250] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22978), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070264] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34033), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070278] = 4, + ACTIONS(4991), 1, + anon_sym_RBRACK, + ACTIONS(34035), 1, + anon_sym_COMMA, + STATE(22555), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070292] = 4, + ACTIONS(22720), 1, + anon_sym_RBRACE, + ACTIONS(34037), 1, + anon_sym_COMMA, + STATE(22438), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070306] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21130), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070320] = 4, + ACTIONS(3983), 1, + anon_sym_RBRACK, + ACTIONS(34039), 1, + anon_sym_COMMA, + STATE(22502), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070334] = 4, + ACTIONS(22978), 1, + anon_sym_RBRACE, + ACTIONS(34041), 1, + anon_sym_COMMA, + STATE(22512), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070348] = 4, + ACTIONS(21130), 1, + anon_sym_RBRACE, + ACTIONS(34043), 1, + anon_sym_COMMA, + STATE(22435), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070362] = 4, + ACTIONS(22778), 1, + anon_sym_RBRACE, + ACTIONS(34045), 1, + anon_sym_COMMA, + STATE(22484), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070376] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4759), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070390] = 4, + ACTIONS(4759), 1, + anon_sym_RBRACK, + ACTIONS(34047), 1, + anon_sym_COMMA, + STATE(22443), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070404] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21160), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070418] = 4, + ACTIONS(21160), 1, + anon_sym_RBRACE, + ACTIONS(34049), 1, + anon_sym_COMMA, + STATE(22451), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070432] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34051), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070446] = 4, + ACTIONS(34051), 1, + anon_sym_RBRACE, + ACTIONS(34053), 1, + anon_sym_COMMA, + STATE(22492), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070460] = 4, + ACTIONS(21525), 1, + anon_sym_RBRACE, + ACTIONS(34055), 1, + anon_sym_COMMA, + STATE(23105), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070474] = 4, + ACTIONS(20705), 1, + anon_sym_RBRACE, + ACTIONS(34057), 1, + anon_sym_COMMA, + STATE(21788), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070488] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4991), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070502] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34059), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070516] = 4, + ACTIONS(4633), 1, + anon_sym_RBRACK, + ACTIONS(34061), 1, + anon_sym_COMMA, + STATE(23690), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070530] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22964), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070544] = 4, + ACTIONS(34059), 1, + anon_sym_RBRACK, + ACTIONS(34063), 1, + anon_sym_COMMA, + STATE(22498), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070558] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21512), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070572] = 4, + ACTIONS(22964), 1, + anon_sym_RBRACE, + ACTIONS(34065), 1, + anon_sym_COMMA, + STATE(22448), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070586] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4325), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070600] = 4, + ACTIONS(4325), 1, + anon_sym_RBRACK, + ACTIONS(34067), 1, + anon_sym_COMMA, + STATE(22457), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070614] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34069), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070628] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20898), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070642] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(34071), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070656] = 4, + ACTIONS(34069), 1, + anon_sym_RBRACE, + ACTIONS(34073), 1, + anon_sym_COMMA, + STATE(22449), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070670] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34075), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070684] = 4, + ACTIONS(34075), 1, + anon_sym_RBRACK, + ACTIONS(34077), 1, + anon_sym_COMMA, + STATE(22450), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070698] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22677), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070712] = 4, + ACTIONS(20753), 1, + anon_sym_RBRACE, + ACTIONS(34079), 1, + anon_sym_COMMA, + STATE(22114), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070726] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34081), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070740] = 4, + ACTIONS(22677), 1, + anon_sym_RBRACE, + ACTIONS(34083), 1, + anon_sym_COMMA, + STATE(22459), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070754] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34085), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070768] = 4, + ACTIONS(3679), 1, + anon_sym_RBRACK, + ACTIONS(34087), 1, + anon_sym_COMMA, + STATE(23174), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070782] = 4, + ACTIONS(20898), 1, + anon_sym_RBRACE, + ACTIONS(34089), 1, + anon_sym_COMMA, + STATE(22584), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070796] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34091), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070810] = 4, + ACTIONS(23040), 1, + anon_sym_RBRACE, + ACTIONS(34093), 1, + anon_sym_COMMA, + STATE(22595), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070824] = 4, + ACTIONS(22980), 1, + anon_sym_RBRACE, + ACTIONS(34095), 1, + anon_sym_COMMA, + STATE(22456), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070838] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22786), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070852] = 4, + ACTIONS(21512), 1, + anon_sym_RBRACE, + ACTIONS(34097), 1, + anon_sym_COMMA, + STATE(24518), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070866] = 4, + ACTIONS(34091), 1, + anon_sym_RBRACE, + ACTIONS(34099), 1, + anon_sym_COMMA, + STATE(22461), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070880] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3745), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070894] = 4, + ACTIONS(22786), 1, + anon_sym_RBRACE, + ACTIONS(34101), 1, + anon_sym_COMMA, + STATE(22468), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070908] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34103), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070922] = 4, + ACTIONS(34103), 1, + anon_sym_RBRACK, + ACTIONS(34105), 1, + anon_sym_COMMA, + STATE(22462), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070936] = 4, + ACTIONS(22722), 1, + anon_sym_RBRACE, + ACTIONS(34107), 1, + anon_sym_COMMA, + STATE(22571), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070950] = 4, + ACTIONS(3745), 1, + anon_sym_RBRACK, + ACTIONS(34109), 1, + anon_sym_COMMA, + STATE(22593), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070964] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34111), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070978] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22980), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1070992] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34113), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071006] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34115), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071020] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34117), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071034] = 4, + ACTIONS(3925), 1, + anon_sym_RBRACK, + ACTIONS(34119), 1, + anon_sym_COMMA, + STATE(22144), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071048] = 4, + ACTIONS(34117), 1, + anon_sym_RBRACE, + ACTIONS(34121), 1, + anon_sym_COMMA, + STATE(22469), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071062] = 4, + ACTIONS(22688), 1, + anon_sym_RBRACE, + ACTIONS(34123), 1, + anon_sym_COMMA, + STATE(22472), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071076] = 4, + ACTIONS(23002), 1, + anon_sym_RBRACE, + ACTIONS(34125), 1, + anon_sym_COMMA, + STATE(22500), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071090] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23034), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071104] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34127), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071118] = 4, + ACTIONS(34127), 1, + anon_sym_RBRACK, + ACTIONS(34129), 1, + anon_sym_COMMA, + STATE(22470), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071132] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22688), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071146] = 4, + ACTIONS(23034), 1, + anon_sym_RBRACE, + ACTIONS(34131), 1, + anon_sym_COMMA, + STATE(22464), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071160] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34133), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071174] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34135), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071188] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34137), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071202] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34139), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071216] = 4, + ACTIONS(22802), 1, + anon_sym_RBRACE, + ACTIONS(34141), 1, + anon_sym_COMMA, + STATE(22476), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071230] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23430), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071244] = 4, + ACTIONS(34139), 1, + anon_sym_RBRACE, + ACTIONS(34143), 1, + anon_sym_COMMA, + STATE(22474), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071258] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22802), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071272] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34145), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071286] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34147), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071300] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34149), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071314] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22696), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071328] = 4, + ACTIONS(22696), 1, + anon_sym_RBRACE, + ACTIONS(34151), 1, + anon_sym_COMMA, + STATE(22477), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071342] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34153), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071356] = 4, + ACTIONS(20978), 1, + anon_sym_RBRACE, + ACTIONS(34155), 1, + anon_sym_COMMA, + STATE(22628), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071370] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22806), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071384] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34157), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071398] = 4, + ACTIONS(34157), 1, + anon_sym_RBRACE, + ACTIONS(34159), 1, + anon_sym_COMMA, + STATE(22479), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071412] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34161), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071426] = 4, + ACTIONS(4069), 1, + anon_sym_RBRACK, + ACTIONS(34163), 1, + anon_sym_COMMA, + STATE(22744), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071440] = 4, + ACTIONS(22806), 1, + anon_sym_RBRACE, + ACTIONS(34165), 1, + anon_sym_COMMA, + STATE(22488), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071454] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34167), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071468] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34169), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071482] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23002), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071496] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34171), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071510] = 4, + ACTIONS(20908), 1, + anon_sym_RBRACE, + ACTIONS(34173), 1, + anon_sym_COMMA, + STATE(22625), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071524] = 4, + ACTIONS(23430), 1, + anon_sym_RBRACE, + ACTIONS(34175), 1, + anon_sym_COMMA, + STATE(22550), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071538] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34177), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071552] = 4, + ACTIONS(14741), 1, + anon_sym_RBRACK, + ACTIONS(34179), 1, + anon_sym_COMMA, + STATE(22639), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071566] = 4, + ACTIONS(34177), 1, + anon_sym_RBRACE, + ACTIONS(34181), 1, + anon_sym_COMMA, + STATE(22491), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071580] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34183), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071594] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34185), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071608] = 4, + ACTIONS(21086), 1, + anon_sym_RBRACE, + ACTIONS(34187), 1, + anon_sym_COMMA, + STATE(22375), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071622] = 4, + ACTIONS(23650), 1, + anon_sym_RBRACE, + ACTIONS(34189), 1, + anon_sym_COMMA, + STATE(22599), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071636] = 4, + ACTIONS(23648), 1, + anon_sym_RBRACE, + ACTIONS(34191), 1, + anon_sym_COMMA, + STATE(22745), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071650] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20714), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071664] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34193), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071678] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34195), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071692] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34197), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071706] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23090), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071720] = 4, + ACTIONS(34193), 1, + anon_sym_RBRACE, + ACTIONS(34199), 1, + anon_sym_COMMA, + STATE(22559), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071734] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34201), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071748] = 4, + ACTIONS(34201), 1, + anon_sym_RBRACK, + ACTIONS(34203), 1, + anon_sym_COMMA, + STATE(22591), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071762] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4531), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071776] = 4, + ACTIONS(23090), 1, + anon_sym_RBRACE, + ACTIONS(34205), 1, + anon_sym_COMMA, + STATE(22511), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071790] = 4, + ACTIONS(20714), 1, + anon_sym_RBRACE, + ACTIONS(34207), 1, + anon_sym_COMMA, + STATE(22685), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071804] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23040), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071818] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34209), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071832] = 4, + ACTIONS(4531), 1, + anon_sym_RBRACK, + ACTIONS(34211), 1, + anon_sym_COMMA, + STATE(22718), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071846] = 4, + ACTIONS(28624), 1, + sym__alphaAlphaNumeric_ident, + STATE(9389), 1, + sym_strid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071860] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34213), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071874] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34215), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071888] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34217), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071902] = 4, + ACTIONS(34213), 1, + anon_sym_RBRACE, + ACTIONS(34219), 1, + anon_sym_COMMA, + STATE(22521), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071916] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34221), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071930] = 4, + ACTIONS(34215), 1, + anon_sym_RBRACE, + ACTIONS(34223), 1, + anon_sym_COMMA, + STATE(22554), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071944] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22722), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071958] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34225), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071972] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14775), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1071986] = 4, + ACTIONS(21148), 1, + anon_sym_RBRACE, + ACTIONS(34227), 1, + anon_sym_COMMA, + STATE(22546), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072000] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34229), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072014] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20978), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072028] = 4, + ACTIONS(4771), 1, + anon_sym_RBRACK, + ACTIONS(34231), 1, + anon_sym_COMMA, + STATE(22551), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072042] = 4, + ACTIONS(23536), 1, + anon_sym_RBRACE, + ACTIONS(34233), 1, + anon_sym_COMMA, + STATE(22615), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072056] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4213), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072070] = 4, + ACTIONS(21215), 1, + anon_sym_RBRACE, + ACTIONS(34235), 1, + anon_sym_COMMA, + STATE(22561), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072084] = 4, + ACTIONS(4667), 1, + anon_sym_RBRACK, + ACTIONS(34237), 1, + anon_sym_COMMA, + STATE(22643), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072098] = 4, + ACTIONS(4337), 1, + anon_sym_RBRACK, + ACTIONS(34239), 1, + anon_sym_COMMA, + STATE(22563), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072112] = 4, + ACTIONS(34197), 1, + anon_sym_RBRACK, + ACTIONS(34241), 1, + anon_sym_COMMA, + STATE(23971), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072126] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20685), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072140] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22840), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072154] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20724), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072168] = 4, + ACTIONS(20724), 1, + anon_sym_RBRACE, + ACTIONS(34243), 1, + anon_sym_COMMA, + STATE(22800), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072182] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34245), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072196] = 4, + ACTIONS(20685), 1, + anon_sym_RBRACE, + ACTIONS(34247), 1, + anon_sym_COMMA, + STATE(23718), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072210] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4513), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072224] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21527), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072238] = 4, + ACTIONS(21527), 1, + anon_sym_RBRACE, + ACTIONS(34249), 1, + anon_sym_COMMA, + STATE(22607), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072252] = 4, + ACTIONS(20485), 1, + anon_sym_RBRACE, + ACTIONS(34251), 1, + anon_sym_COMMA, + STATE(22576), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072266] = 4, + ACTIONS(20811), 1, + anon_sym_RBRACE, + ACTIONS(34253), 1, + anon_sym_COMMA, + STATE(22692), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072280] = 4, + ACTIONS(4513), 1, + anon_sym_RBRACK, + ACTIONS(34255), 1, + anon_sym_COMMA, + STATE(22847), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072294] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34257), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072308] = 4, + ACTIONS(4213), 1, + anon_sym_RBRACK, + ACTIONS(34259), 1, + anon_sym_COMMA, + STATE(22750), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072322] = 4, + ACTIONS(5113), 1, + anon_sym_RBRACK, + ACTIONS(34261), 1, + anon_sym_COMMA, + STATE(22583), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072336] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(34263), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072350] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21152), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072364] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4667), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072378] = 4, + ACTIONS(21152), 1, + anon_sym_RBRACE, + ACTIONS(34265), 1, + anon_sym_COMMA, + STATE(22585), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072392] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34267), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072406] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23536), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072420] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4773), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072434] = 4, + ACTIONS(4579), 1, + anon_sym_RBRACK, + ACTIONS(34269), 1, + anon_sym_COMMA, + STATE(22712), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072448] = 4, + ACTIONS(33109), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(34271), 1, + anon_sym_RPAREN, + STATE(22566), 1, + aux_sym_THEN_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072462] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34273), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072476] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4993), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072490] = 4, + ACTIONS(4773), 1, + anon_sym_RBRACK, + ACTIONS(34275), 1, + anon_sym_COMMA, + STATE(22590), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072504] = 4, + ACTIONS(34277), 1, + anon_sym_PIPE, + ACTIONS(34280), 1, + anon_sym_End, + STATE(22557), 1, + aux_sym_hol_constructor_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072518] = 4, + ACTIONS(4993), 1, + anon_sym_RBRACK, + ACTIONS(34282), 1, + anon_sym_COMMA, + STATE(22626), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072532] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34284), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072546] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34286), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072560] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21225), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072574] = 4, + ACTIONS(21225), 1, + anon_sym_RBRACE, + ACTIONS(34288), 1, + anon_sym_COMMA, + STATE(22619), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072588] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4339), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072602] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4091), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072616] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4495), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072630] = 4, + ACTIONS(29913), 1, + anon_sym_RPAREN, + ACTIONS(34290), 1, + anon_sym_BSLASH_BSLASH, + STATE(22566), 1, + aux_sym_THEN_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072644] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34293), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072658] = 4, + ACTIONS(4495), 1, + anon_sym_RBRACK, + ACTIONS(34295), 1, + anon_sym_COMMA, + STATE(23741), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072672] = 4, + ACTIONS(14775), 1, + anon_sym_RBRACK, + ACTIONS(34297), 1, + anon_sym_COMMA, + STATE(22389), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072686] = 4, + ACTIONS(34299), 1, + anon_sym_EQ, + ACTIONS(34301), 1, + anon_sym_COLON, + ACTIONS(34303), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072700] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22738), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072714] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20773), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072728] = 4, + ACTIONS(22738), 1, + anon_sym_RBRACE, + ACTIONS(34305), 1, + anon_sym_COMMA, + STATE(22596), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072742] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34307), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072756] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3435), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072770] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20489), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072784] = 4, + ACTIONS(34169), 1, + anon_sym_RBRACK, + ACTIONS(34309), 1, + anon_sym_COMMA, + STATE(23318), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072798] = 4, + ACTIONS(21154), 1, + anon_sym_RBRACE, + ACTIONS(34311), 1, + anon_sym_COMMA, + STATE(22622), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072812] = 4, + ACTIONS(20926), 1, + anon_sym_RBRACE, + ACTIONS(34313), 1, + anon_sym_COMMA, + STATE(22697), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072826] = 4, + ACTIONS(4339), 1, + anon_sym_RBRACK, + ACTIONS(34315), 1, + anon_sym_COMMA, + STATE(22623), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072840] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22531), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072854] = 4, + ACTIONS(20489), 1, + anon_sym_RBRACE, + ACTIONS(34317), 1, + anon_sym_COMMA, + STATE(22616), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072868] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5115), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072882] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20926), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072896] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21154), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072910] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34319), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072924] = 4, + ACTIONS(4775), 1, + anon_sym_RBRACK, + ACTIONS(34321), 1, + anon_sym_COMMA, + STATE(22631), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072938] = 4, + ACTIONS(4091), 1, + anon_sym_RBRACK, + ACTIONS(34323), 1, + anon_sym_COMMA, + STATE(23096), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072952] = 4, + ACTIONS(3747), 1, + anon_sym_RBRACK, + ACTIONS(34325), 1, + anon_sym_COMMA, + STATE(22704), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072966] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4775), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072980] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34327), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1072994] = 4, + ACTIONS(5115), 1, + anon_sym_RBRACK, + ACTIONS(34329), 1, + anon_sym_COMMA, + STATE(22624), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073008] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3747), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073022] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34331), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073036] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22762), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073050] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34333), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073064] = 4, + ACTIONS(23326), 1, + anon_sym_RBRACE, + ACTIONS(34335), 1, + anon_sym_COMMA, + STATE(22794), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073078] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4529), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073092] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23654), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073106] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22894), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073120] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34337), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073134] = 4, + ACTIONS(34171), 1, + anon_sym_RBRACE, + ACTIONS(34339), 1, + anon_sym_COMMA, + STATE(22603), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073148] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34341), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073162] = 4, + ACTIONS(32858), 1, + anon_sym_COMMA, + ACTIONS(34343), 1, + anon_sym_RPAREN, + STATE(22931), 1, + aux_sym_tyvarseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073176] = 4, + ACTIONS(21263), 1, + anon_sym_RBRACE, + ACTIONS(34345), 1, + anon_sym_COMMA, + STATE(23093), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073190] = 4, + ACTIONS(23654), 1, + anon_sym_RBRACE, + ACTIONS(34347), 1, + anon_sym_COMMA, + STATE(22681), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073204] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34349), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073218] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34351), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073232] = 4, + ACTIONS(20495), 1, + anon_sym_RBRACE, + ACTIONS(34353), 1, + anon_sym_COMMA, + STATE(22654), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073246] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34355), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073260] = 4, + ACTIONS(22736), 1, + anon_sym_RBRACE, + ACTIONS(34357), 1, + anon_sym_COMMA, + STATE(22653), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073274] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23026), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073288] = 4, + ACTIONS(34349), 1, + anon_sym_RBRACE, + ACTIONS(34359), 1, + anon_sym_COMMA, + STATE(22689), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073302] = 4, + ACTIONS(21233), 1, + anon_sym_RBRACE, + ACTIONS(34361), 1, + anon_sym_COMMA, + STATE(22657), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073316] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23562), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073330] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20495), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073344] = 4, + ACTIONS(5117), 1, + anon_sym_RBRACK, + ACTIONS(34363), 1, + anon_sym_COMMA, + STATE(22671), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073358] = 4, + ACTIONS(20773), 1, + anon_sym_RBRACE, + ACTIONS(34365), 1, + anon_sym_COMMA, + STATE(23070), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073372] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21233), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073386] = 4, + ACTIONS(4341), 1, + anon_sym_RBRACK, + ACTIONS(34367), 1, + anon_sym_COMMA, + STATE(22662), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073400] = 3, + ACTIONS(34371), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(34369), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1073412] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21156), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073426] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4341), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073440] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5117), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073454] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20936), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073468] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34373), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073482] = 4, + ACTIONS(23562), 1, + anon_sym_RBRACE, + ACTIONS(34375), 1, + anon_sym_COMMA, + STATE(22661), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073496] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20984), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073510] = 4, + ACTIONS(21156), 1, + anon_sym_RBRACE, + ACTIONS(34377), 1, + anon_sym_COMMA, + STATE(22656), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073524] = 4, + ACTIONS(22840), 1, + anon_sym_RBRACE, + ACTIONS(34379), 1, + anon_sym_COMMA, + STATE(22636), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073538] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4777), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073552] = 4, + ACTIONS(4777), 1, + anon_sym_RBRACK, + ACTIONS(34381), 1, + anon_sym_COMMA, + STATE(22660), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073566] = 4, + ACTIONS(22531), 1, + anon_sym_RBRACE, + ACTIONS(34383), 1, + anon_sym_COMMA, + STATE(22958), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073580] = 4, + ACTIONS(34373), 1, + anon_sym_RBRACK, + ACTIONS(34385), 1, + anon_sym_COMMA, + STATE(22709), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073594] = 4, + ACTIONS(21162), 1, + anon_sym_RBRACE, + ACTIONS(34387), 1, + anon_sym_COMMA, + STATE(22965), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073608] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34389), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073622] = 4, + ACTIONS(20984), 1, + anon_sym_RBRACE, + ACTIONS(34391), 1, + anon_sym_COMMA, + STATE(22804), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073636] = 4, + ACTIONS(20936), 1, + anon_sym_RBRACE, + ACTIONS(34393), 1, + anon_sym_COMMA, + STATE(22751), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073650] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14743), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073664] = 4, + ACTIONS(34333), 1, + anon_sym_RBRACE, + ACTIONS(34395), 1, + anon_sym_COMMA, + STATE(22679), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073678] = 4, + ACTIONS(34397), 1, + anon_sym_COMMA, + ACTIONS(34400), 1, + anon_sym_RPAREN, + STATE(22641), 1, + aux_sym_hol_ptuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073692] = 4, + ACTIONS(3591), 1, + anon_sym_RBRACK, + ACTIONS(34402), 1, + anon_sym_COMMA, + STATE(22973), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073706] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4669), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073720] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34404), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073734] = 4, + ACTIONS(3435), 1, + anon_sym_RBRACK, + ACTIONS(34406), 1, + anon_sym_COMMA, + STATE(24568), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073748] = 4, + ACTIONS(23544), 1, + anon_sym_RBRACE, + ACTIONS(34408), 1, + anon_sym_COMMA, + STATE(22714), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073762] = 4, + ACTIONS(14743), 1, + anon_sym_RBRACK, + ACTIONS(34410), 1, + anon_sym_COMMA, + STATE(22757), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073776] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34412), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073790] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4491), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073804] = 4, + ACTIONS(22962), 1, + anon_sym_RBRACE, + ACTIONS(34414), 1, + anon_sym_COMMA, + STATE(22688), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073818] = 4, + ACTIONS(22762), 1, + anon_sym_RBRACE, + ACTIONS(34416), 1, + anon_sym_COMMA, + STATE(22711), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073832] = 4, + ACTIONS(23658), 1, + anon_sym_RBRACE, + ACTIONS(34418), 1, + anon_sym_COMMA, + STATE(22736), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073846] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22752), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073860] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20497), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073874] = 4, + ACTIONS(22752), 1, + anon_sym_RBRACE, + ACTIONS(34420), 1, + anon_sym_COMMA, + STATE(22683), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073888] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34422), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073902] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21247), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073916] = 4, + ACTIONS(21247), 1, + anon_sym_RBRACE, + ACTIONS(34424), 1, + anon_sym_COMMA, + STATE(22694), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073930] = 4, + ACTIONS(34422), 1, + anon_sym_RBRACE, + ACTIONS(34426), 1, + anon_sym_COMMA, + STATE(22686), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073944] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34428), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073958] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34430), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073972] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4343), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1073986] = 4, + ACTIONS(4343), 1, + anon_sym_RBRACK, + ACTIONS(34432), 1, + anon_sym_COMMA, + STATE(22696), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074000] = 4, + ACTIONS(34428), 1, + anon_sym_RBRACK, + ACTIONS(34434), 1, + anon_sym_COMMA, + STATE(22687), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074014] = 4, + ACTIONS(20497), 1, + anon_sym_RBRACE, + ACTIONS(34436), 1, + anon_sym_COMMA, + STATE(22726), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074028] = 4, + ACTIONS(34389), 1, + anon_sym_RBRACE, + ACTIONS(34438), 1, + anon_sym_COMMA, + STATE(22723), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074042] = 4, + ACTIONS(34430), 1, + anon_sym_RBRACE, + ACTIONS(34440), 1, + anon_sym_COMMA, + STATE(22676), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074056] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(34442), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074070] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34444), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074084] = 4, + ACTIONS(20718), 1, + anon_sym_RBRACE, + ACTIONS(34446), 1, + anon_sym_COMMA, + STATE(22807), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074098] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5119), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074112] = 4, + ACTIONS(5119), 1, + anon_sym_RBRACK, + ACTIONS(34448), 1, + anon_sym_COMMA, + STATE(22729), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074126] = 4, + ACTIONS(22756), 1, + anon_sym_RBRACE, + ACTIONS(34450), 1, + anon_sym_COMMA, + STATE(22690), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074140] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(34452), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074154] = 4, + ACTIONS(4669), 1, + anon_sym_RBRACK, + ACTIONS(34454), 1, + anon_sym_COMMA, + STATE(22812), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074168] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34456), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074182] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34458), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074196] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4545), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074210] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34460), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074224] = 4, + ACTIONS(21050), 1, + anon_sym_RBRACE, + ACTIONS(34462), 1, + anon_sym_COMMA, + STATE(24641), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074238] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23658), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074252] = 4, + ACTIONS(23078), 1, + anon_sym_RBRACE, + ACTIONS(34464), 1, + anon_sym_COMMA, + STATE(22799), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074266] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22756), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074280] = 4, + ACTIONS(23420), 1, + anon_sym_RBRACE, + ACTIONS(34466), 1, + anon_sym_COMMA, + STATE(23155), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074294] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20718), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074308] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34468), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074322] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34470), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074336] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23004), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074350] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34472), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074364] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22760), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074378] = 4, + ACTIONS(22760), 1, + anon_sym_RBRACE, + ACTIONS(34474), 1, + anon_sym_COMMA, + STATE(22700), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074392] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20819), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074406] = 4, + ACTIONS(23004), 1, + anon_sym_RBRACE, + ACTIONS(34476), 1, + anon_sym_COMMA, + STATE(22715), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074420] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34478), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074434] = 4, + ACTIONS(34478), 1, + anon_sym_RBRACE, + ACTIONS(34480), 1, + anon_sym_COMMA, + STATE(22716), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074448] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34482), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074462] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20952), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074476] = 4, + ACTIONS(20952), 1, + anon_sym_RBRACE, + ACTIONS(34484), 1, + anon_sym_COMMA, + STATE(22808), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074490] = 4, + ACTIONS(34482), 1, + anon_sym_RBRACK, + ACTIONS(34486), 1, + anon_sym_COMMA, + STATE(22717), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074504] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34488), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074518] = 4, + ACTIONS(22702), 1, + anon_sym_RBRACE, + ACTIONS(34490), 1, + anon_sym_COMMA, + STATE(23435), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074532] = 4, + ACTIONS(34488), 1, + anon_sym_RBRACE, + ACTIONS(34492), 1, + anon_sym_COMMA, + STATE(22703), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074546] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34494), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074560] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3749), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074574] = 4, + ACTIONS(3749), 1, + anon_sym_RBRACK, + ACTIONS(34496), 1, + anon_sym_COMMA, + STATE(22811), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074588] = 4, + ACTIONS(4215), 1, + anon_sym_RBRACK, + ACTIONS(34498), 1, + anon_sym_COMMA, + STATE(22828), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074602] = 4, + ACTIONS(20819), 1, + anon_sym_RBRACE, + ACTIONS(34500), 1, + anon_sym_COMMA, + STATE(22762), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074616] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(34502), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074630] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34504), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074644] = 4, + ACTIONS(23014), 1, + anon_sym_RBRACE, + ACTIONS(34506), 1, + anon_sym_COMMA, + STATE(22719), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074658] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34508), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074672] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4581), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074686] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21263), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074700] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23938), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074714] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23014), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074728] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34510), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074742] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34512), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074756] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34514), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074770] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23020), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074784] = 4, + ACTIONS(4581), 1, + anon_sym_RBRACK, + ACTIONS(34516), 1, + anon_sym_COMMA, + STATE(22769), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074798] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3911), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074812] = 4, + ACTIONS(4071), 1, + anon_sym_RBRACK, + ACTIONS(34518), 1, + anon_sym_COMMA, + STATE(23198), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074826] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34520), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074840] = 4, + ACTIONS(23938), 1, + anon_sym_RBRACE, + ACTIONS(34522), 1, + anon_sym_COMMA, + STATE(22746), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074854] = 4, + ACTIONS(23020), 1, + anon_sym_RBRACE, + ACTIONS(34524), 1, + anon_sym_COMMA, + STATE(22732), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074868] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34526), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074882] = 4, + ACTIONS(34508), 1, + anon_sym_RBRACE, + ACTIONS(34528), 1, + anon_sym_COMMA, + STATE(22761), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074896] = 4, + ACTIONS(34526), 1, + anon_sym_RBRACE, + ACTIONS(34530), 1, + anon_sym_COMMA, + STATE(22747), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074910] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34532), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074924] = 4, + ACTIONS(34532), 1, + anon_sym_RBRACK, + ACTIONS(34534), 1, + anon_sym_COMMA, + STATE(22748), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074938] = 4, + ACTIONS(20501), 1, + anon_sym_RBRACE, + ACTIONS(34536), 1, + anon_sym_COMMA, + STATE(22874), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074952] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34538), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074966] = 4, + ACTIONS(34538), 1, + anon_sym_RBRACE, + ACTIONS(34540), 1, + anon_sym_COMMA, + STATE(22734), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074980] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34542), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1074994] = 3, + ACTIONS(34544), 1, + anon_sym_STAR, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16505), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + [1075006] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23660), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075020] = 4, + ACTIONS(23660), 1, + anon_sym_RBRACE, + ACTIONS(34546), 1, + anon_sym_COMMA, + STATE(22758), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075034] = 4, + ACTIONS(4139), 1, + anon_sym_RBRACK, + ACTIONS(34548), 1, + anon_sym_COMMA, + STATE(22942), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075048] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34550), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075062] = 4, + ACTIONS(20964), 1, + anon_sym_RBRACE, + ACTIONS(34552), 1, + anon_sym_COMMA, + STATE(22832), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075076] = 4, + ACTIONS(22521), 1, + anon_sym_RBRACE, + ACTIONS(34554), 1, + anon_sym_COMMA, + STATE(22754), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075090] = 4, + ACTIONS(34271), 1, + anon_sym_End, + ACTIONS(34556), 1, + anon_sym_BSLASH_BSLASH, + STATE(23315), 1, + aux_sym_THEN_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075104] = 4, + ACTIONS(34514), 1, + anon_sym_RBRACK, + ACTIONS(34558), 1, + anon_sym_COMMA, + STATE(23192), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075118] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4071), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075132] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23666), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075146] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22521), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075160] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34560), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075174] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34562), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075188] = 4, + ACTIONS(21178), 1, + anon_sym_RBRACE, + ACTIONS(34564), 1, + anon_sym_COMMA, + STATE(22783), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075202] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075216] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20964), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075230] = 4, + ACTIONS(14745), 1, + anon_sym_RBRACK, + ACTIONS(34566), 1, + anon_sym_COMMA, + STATE(22839), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075244] = 4, + ACTIONS(4789), 1, + anon_sym_RBRACK, + ACTIONS(34568), 1, + anon_sym_COMMA, + STATE(22787), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075258] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22800), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075272] = 4, + ACTIONS(22800), 1, + anon_sym_RBRACE, + ACTIONS(34570), 1, + anon_sym_COMMA, + STATE(22759), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075286] = 4, + ACTIONS(20823), 1, + anon_sym_RBRACE, + ACTIONS(34572), 1, + anon_sym_COMMA, + STATE(22865), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075300] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14745), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075314] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34574), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075328] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34576), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075342] = 4, + ACTIONS(34576), 1, + anon_sym_RBRACE, + ACTIONS(34578), 1, + anon_sym_COMMA, + STATE(22765), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075356] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34580), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075370] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20823), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075384] = 3, + STATE(14037), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26878), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1075396] = 4, + ACTIONS(4583), 1, + anon_sym_RBRACK, + ACTIONS(34582), 1, + anon_sym_COMMA, + STATE(22926), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075410] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34584), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075424] = 4, + ACTIONS(4545), 1, + anon_sym_RBRACK, + ACTIONS(34586), 1, + anon_sym_COMMA, + STATE(23085), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075438] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23420), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075452] = 4, + ACTIONS(34574), 1, + anon_sym_RBRACE, + ACTIONS(34588), 1, + anon_sym_COMMA, + STATE(22771), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075466] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4583), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075480] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34590), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075494] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34592), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075508] = 4, + ACTIONS(4491), 1, + anon_sym_RBRACK, + ACTIONS(34594), 1, + anon_sym_COMMA, + STATE(21861), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075522] = 4, + ACTIONS(3943), 1, + anon_sym_RBRACK, + ACTIONS(34596), 1, + anon_sym_COMMA, + STATE(21468), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075536] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23318), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075550] = 4, + ACTIONS(23026), 1, + anon_sym_RBRACE, + ACTIONS(34598), 1, + anon_sym_COMMA, + STATE(22777), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075564] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34600), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075578] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22418), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075592] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21434), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075606] = 4, + ACTIONS(21299), 1, + anon_sym_RBRACE, + ACTIONS(34602), 1, + anon_sym_COMMA, + STATE(22818), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075620] = 4, + ACTIONS(22517), 1, + anon_sym_RBRACE, + ACTIONS(34604), 1, + anon_sym_COMMA, + STATE(22387), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075634] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21499), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075648] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34606), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075662] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21184), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075676] = 4, + ACTIONS(4355), 1, + anon_sym_RBRACK, + ACTIONS(34608), 1, + anon_sym_COMMA, + STATE(22821), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075690] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34610), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075704] = 4, + ACTIONS(21184), 1, + anon_sym_RBRACE, + ACTIONS(34612), 1, + anon_sym_COMMA, + STATE(22825), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075718] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4791), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075732] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34614), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075746] = 4, + ACTIONS(21434), 1, + anon_sym_RBRACE, + ACTIONS(34616), 1, + anon_sym_COMMA, + STATE(23043), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075760] = 4, + ACTIONS(23676), 1, + anon_sym_RBRACE, + ACTIONS(34618), 1, + anon_sym_COMMA, + STATE(22959), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075774] = 4, + ACTIONS(4791), 1, + anon_sym_RBRACK, + ACTIONS(34620), 1, + anon_sym_COMMA, + STATE(22834), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075788] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3875), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075802] = 4, + ACTIONS(20509), 1, + anon_sym_RBRACE, + ACTIONS(34622), 1, + anon_sym_COMMA, + STATE(22831), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075816] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23366), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075830] = 4, + ACTIONS(5131), 1, + anon_sym_RBRACK, + ACTIONS(34624), 1, + anon_sym_COMMA, + STATE(22842), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075844] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4953), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075858] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34626), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075872] = 4, + ACTIONS(23666), 1, + anon_sym_RBRACE, + ACTIONS(34628), 1, + anon_sym_COMMA, + STATE(23200), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075886] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23358), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075900] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34630), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075914] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34632), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075928] = 4, + ACTIONS(23366), 1, + anon_sym_RBRACE, + ACTIONS(34634), 1, + anon_sym_COMMA, + STATE(22859), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075942] = 4, + ACTIONS(23358), 1, + anon_sym_RBRACE, + ACTIONS(34636), 1, + anon_sym_COMMA, + STATE(22862), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075956] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34638), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075970] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34640), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075984] = 4, + ACTIONS(34638), 1, + anon_sym_RBRACE, + ACTIONS(34642), 1, + anon_sym_COMMA, + STATE(22861), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1075998] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20726), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076012] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34644), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076026] = 4, + ACTIONS(34644), 1, + anon_sym_RBRACE, + ACTIONS(34646), 1, + anon_sym_COMMA, + STATE(22863), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076040] = 4, + ACTIONS(20809), 1, + anon_sym_RBRACE, + ACTIONS(34648), 1, + anon_sym_COMMA, + STATE(22945), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076054] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34650), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076068] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34652), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076082] = 4, + ACTIONS(34652), 1, + anon_sym_RBRACK, + ACTIONS(34654), 1, + anon_sym_COMMA, + STATE(22868), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076096] = 4, + ACTIONS(20726), 1, + anon_sym_RBRACE, + ACTIONS(34656), 1, + anon_sym_COMMA, + STATE(22975), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076110] = 4, + ACTIONS(34650), 1, + anon_sym_RBRACK, + ACTIONS(34658), 1, + anon_sym_COMMA, + STATE(22864), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076124] = 4, + ACTIONS(21186), 1, + anon_sym_RBRACE, + ACTIONS(34660), 1, + anon_sym_COMMA, + STATE(22869), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076138] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34662), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076152] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21307), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076166] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34664), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076180] = 4, + ACTIONS(21307), 1, + anon_sym_RBRACE, + ACTIONS(34666), 1, + anon_sym_COMMA, + STATE(22850), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076194] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4357), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076208] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20631), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076222] = 4, + ACTIONS(4357), 1, + anon_sym_RBRACK, + ACTIONS(34668), 1, + anon_sym_COMMA, + STATE(22858), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076236] = 4, + ACTIONS(22555), 1, + anon_sym_RBRACE, + ACTIONS(34670), 1, + anon_sym_COMMA, + STATE(21701), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076250] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21186), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076264] = 4, + ACTIONS(3995), 1, + anon_sym_RBRACK, + ACTIONS(34672), 1, + anon_sym_COMMA, + STATE(22950), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076278] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34674), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076292] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4217), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076306] = 4, + ACTIONS(4793), 1, + anon_sym_RBRACK, + ACTIONS(34676), 1, + anon_sym_COMMA, + STATE(22876), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076320] = 4, + ACTIONS(4953), 1, + anon_sym_RBRACK, + ACTIONS(34678), 1, + anon_sym_COMMA, + STATE(23087), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076334] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20515), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076348] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21006), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076362] = 4, + ACTIONS(21006), 1, + anon_sym_RBRACE, + ACTIONS(34680), 1, + anon_sym_COMMA, + STATE(22872), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076376] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4793), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076390] = 4, + ACTIONS(23904), 1, + anon_sym_RBRACE, + ACTIONS(34682), 1, + anon_sym_COMMA, + STATE(23269), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076404] = 4, + ACTIONS(23556), 1, + anon_sym_RBRACE, + ACTIONS(34684), 1, + anon_sym_COMMA, + STATE(22992), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076418] = 4, + ACTIONS(20515), 1, + anon_sym_RBRACE, + ACTIONS(34686), 1, + anon_sym_COMMA, + STATE(22891), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076432] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34688), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076446] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14747), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076460] = 4, + ACTIONS(14747), 1, + anon_sym_RBRACK, + ACTIONS(34690), 1, + anon_sym_COMMA, + STATE(22877), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076474] = 4, + ACTIONS(34630), 1, + anon_sym_RBRACE, + ACTIONS(34692), 1, + anon_sym_COMMA, + STATE(23202), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076488] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5133), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076502] = 4, + ACTIONS(4217), 1, + anon_sym_RBRACK, + ACTIONS(34694), 1, + anon_sym_COMMA, + STATE(22990), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076516] = 4, + ACTIONS(5133), 1, + anon_sym_RBRACK, + ACTIONS(34696), 1, + anon_sym_COMMA, + STATE(22897), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076530] = 4, + ACTIONS(21315), 1, + anon_sym_RBRACE, + ACTIONS(34698), 1, + anon_sym_COMMA, + STATE(22885), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076544] = 4, + ACTIONS(23396), 1, + anon_sym_RBRACE, + ACTIONS(34700), 1, + anon_sym_COMMA, + STATE(22901), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076558] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34702), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076572] = 4, + ACTIONS(21499), 1, + anon_sym_RBRACE, + ACTIONS(34704), 1, + anon_sym_COMMA, + STATE(24382), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076586] = 4, + ACTIONS(34706), 1, + anon_sym_COMMA, + ACTIONS(34709), 1, + anon_sym_RPAREN, + STATE(22849), 1, + aux_sym_tyvarseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076600] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21315), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076614] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(34711), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076628] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34713), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076642] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34715), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076656] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20695), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076670] = 4, + ACTIONS(4359), 1, + anon_sym_RBRACK, + ACTIONS(34717), 1, + anon_sym_COMMA, + STATE(22888), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076684] = 4, + ACTIONS(22830), 1, + anon_sym_RBRACE, + ACTIONS(34719), 1, + anon_sym_COMMA, + STATE(22899), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076698] = 4, + ACTIONS(23594), 1, + anon_sym_RBRACE, + ACTIONS(34721), 1, + anon_sym_COMMA, + STATE(22895), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076712] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4359), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076726] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23396), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076740] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34723), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076754] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34725), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076768] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23594), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076782] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34727), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076796] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34729), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076810] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20825), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076824] = 4, + ACTIONS(20825), 1, + anon_sym_RBRACE, + ACTIONS(34731), 1, + anon_sym_COMMA, + STATE(23000), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076838] = 4, + ACTIONS(34733), 1, + anon_sym_COMMA, + ACTIONS(34735), 1, + anon_sym_RBRACE, + STATE(22776), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076852] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34737), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076866] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21188), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076880] = 4, + ACTIONS(21188), 1, + anon_sym_RBRACE, + ACTIONS(34739), 1, + anon_sym_COMMA, + STATE(22914), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076894] = 3, + STATE(24886), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1076906] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34741), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076920] = 4, + ACTIONS(34741), 1, + anon_sym_RBRACE, + ACTIONS(34743), 1, + anon_sym_COMMA, + STATE(22900), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076934] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20513), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076948] = 4, + ACTIONS(34745), 1, + anon_sym_RBRACK, + ACTIONS(34747), 1, + anon_sym_SEMI, + STATE(22875), 1, + aux_sym_hol_plist_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076962] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4795), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076976] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34750), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1076990] = 4, + ACTIONS(34750), 1, + anon_sym_RBRACK, + ACTIONS(34752), 1, + anon_sym_COMMA, + STATE(22902), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077004] = 4, + ACTIONS(4795), 1, + anon_sym_RBRACK, + ACTIONS(34754), 1, + anon_sym_COMMA, + STATE(22919), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077018] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34756), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077032] = 4, + ACTIONS(23568), 1, + anon_sym_RBRACE, + ACTIONS(34758), 1, + anon_sym_COMMA, + STATE(24320), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077046] = 4, + ACTIONS(23170), 1, + anon_sym_RBRACE, + ACTIONS(34760), 1, + anon_sym_COMMA, + STATE(22908), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077060] = 4, + ACTIONS(20517), 1, + anon_sym_RBRACE, + ACTIONS(34762), 1, + anon_sym_COMMA, + STATE(22943), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077074] = 4, + ACTIONS(4507), 1, + anon_sym_RBRACK, + ACTIONS(34764), 1, + anon_sym_COMMA, + STATE(21827), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077088] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21323), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077102] = 4, + ACTIONS(21323), 1, + anon_sym_RBRACE, + ACTIONS(34766), 1, + anon_sym_COMMA, + STATE(22911), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077116] = 4, + ACTIONS(21245), 1, + anon_sym_RBRACE, + ACTIONS(34768), 1, + anon_sym_COMMA, + STATE(22236), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077130] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4361), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077144] = 4, + ACTIONS(4361), 1, + anon_sym_RBRACK, + ACTIONS(34770), 1, + anon_sym_COMMA, + STATE(22913), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077158] = 4, + ACTIONS(21541), 1, + anon_sym_RBRACE, + ACTIONS(34772), 1, + anon_sym_COMMA, + STATE(23037), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077172] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20517), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077186] = 4, + ACTIONS(5135), 1, + anon_sym_RBRACK, + ACTIONS(34774), 1, + anon_sym_COMMA, + STATE(22951), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077200] = 4, + ACTIONS(34702), 1, + anon_sym_RBRACK, + ACTIONS(34776), 1, + anon_sym_COMMA, + STATE(23204), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077214] = 4, + ACTIONS(22894), 1, + anon_sym_RBRACE, + ACTIONS(34778), 1, + anon_sym_COMMA, + STATE(23607), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077228] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23730), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077242] = 4, + ACTIONS(23730), 1, + anon_sym_RBRACE, + ACTIONS(34780), 1, + anon_sym_COMMA, + STATE(22917), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077256] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5135), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077270] = 4, + ACTIONS(5005), 1, + anon_sym_RBRACK, + ACTIONS(34782), 1, + anon_sym_COMMA, + STATE(23061), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077284] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22838), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077298] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34784), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077312] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23398), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077326] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34786), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077340] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21404), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077354] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23322), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077368] = 4, + ACTIONS(22838), 1, + anon_sym_RBRACE, + ACTIONS(34788), 1, + anon_sym_COMMA, + STATE(22948), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077382] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23418), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077396] = 4, + ACTIONS(23398), 1, + anon_sym_RBRACE, + ACTIONS(34790), 1, + anon_sym_COMMA, + STATE(22927), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077410] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23194), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077424] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4105), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077438] = 4, + ACTIONS(23194), 1, + anon_sym_RBRACE, + ACTIONS(34792), 1, + anon_sym_COMMA, + STATE(22928), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077452] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34794), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077466] = 4, + ACTIONS(34794), 1, + anon_sym_RBRACE, + ACTIONS(34796), 1, + anon_sym_COMMA, + STATE(22929), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077480] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34798), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077494] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34800), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077508] = 4, + ACTIONS(34798), 1, + anon_sym_RBRACK, + ACTIONS(34802), 1, + anon_sym_COMMA, + STATE(22930), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077522] = 4, + ACTIONS(34800), 1, + anon_sym_RBRACE, + ACTIONS(34804), 1, + anon_sym_COMMA, + STATE(22949), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077536] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34806), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077550] = 4, + ACTIONS(34806), 1, + anon_sym_RBRACE, + ACTIONS(34808), 1, + anon_sym_COMMA, + STATE(22924), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077564] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34810), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077578] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34812), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077592] = 4, + ACTIONS(34810), 1, + anon_sym_RBRACK, + ACTIONS(34814), 1, + anon_sym_COMMA, + STATE(22953), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077606] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34816), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077620] = 4, + ACTIONS(23115), 1, + anon_sym_RBRACE, + ACTIONS(34818), 1, + anon_sym_COMMA, + STATE(22979), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077634] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34820), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077648] = 4, + ACTIONS(23202), 1, + anon_sym_RBRACE, + ACTIONS(34822), 1, + anon_sym_COMMA, + STATE(22932), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077662] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4585), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077676] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34824), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077690] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23202), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077704] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34826), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077718] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34828), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077732] = 4, + ACTIONS(32858), 1, + anon_sym_COMMA, + ACTIONS(34830), 1, + anon_sym_RPAREN, + STATE(22849), 1, + aux_sym_tyvarseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077746] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23204), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077760] = 4, + ACTIONS(23204), 1, + anon_sym_RBRACE, + ACTIONS(34832), 1, + anon_sym_COMMA, + STATE(22935), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077774] = 4, + ACTIONS(4585), 1, + anon_sym_RBRACK, + ACTIONS(34834), 1, + anon_sym_COMMA, + STATE(23003), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077788] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34836), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077802] = 4, + ACTIONS(20513), 1, + anon_sym_RBRACE, + ACTIONS(34838), 1, + anon_sym_COMMA, + STATE(23129), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077816] = 4, + ACTIONS(34836), 1, + anon_sym_RBRACE, + ACTIONS(34840), 1, + anon_sym_COMMA, + STATE(22938), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077830] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34842), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077844] = 4, + ACTIONS(34824), 1, + anon_sym_RBRACE, + ACTIONS(34844), 1, + anon_sym_COMMA, + STATE(22955), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077858] = 4, + ACTIONS(28588), 1, + sym__alphaAlphaNumeric_ident, + STATE(13850), 1, + sym_strid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077872] = 4, + ACTIONS(22844), 1, + anon_sym_RBRACE, + ACTIONS(34846), 1, + anon_sym_COMMA, + STATE(22956), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077886] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4141), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077900] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20519), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077914] = 4, + ACTIONS(20519), 1, + anon_sym_RBRACE, + ACTIONS(34848), 1, + anon_sym_COMMA, + STATE(22982), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077928] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20829), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077942] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23904), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077956] = 4, + ACTIONS(20829), 1, + anon_sym_RBRACE, + ACTIONS(34850), 1, + anon_sym_COMMA, + STATE(23031), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077970] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22844), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077984] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34852), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1077998] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3997), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078012] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5137), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078026] = 4, + ACTIONS(3997), 1, + anon_sym_RBRACK, + ACTIONS(34854), 1, + anon_sym_COMMA, + STATE(23048), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078040] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34856), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078054] = 4, + ACTIONS(5137), 1, + anon_sym_RBRACK, + ACTIONS(34858), 1, + anon_sym_COMMA, + STATE(22984), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078068] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34860), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078082] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22846), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078096] = 4, + ACTIONS(22846), 1, + anon_sym_RBRACE, + ACTIONS(34862), 1, + anon_sym_COMMA, + STATE(22960), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078110] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34864), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078124] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23738), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078138] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34866), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078152] = 4, + ACTIONS(20631), 1, + anon_sym_RBRACE, + ACTIONS(34868), 1, + anon_sym_COMMA, + STATE(24079), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078166] = 4, + ACTIONS(34866), 1, + anon_sym_RBRACE, + ACTIONS(34870), 1, + anon_sym_COMMA, + STATE(22963), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078180] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34872), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078194] = 4, + ACTIONS(23738), 1, + anon_sym_RBRACE, + ACTIONS(34874), 1, + anon_sym_COMMA, + STATE(23040), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078208] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21190), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078222] = 4, + ACTIONS(21404), 1, + anon_sym_RBRACE, + ACTIONS(34876), 1, + anon_sym_COMMA, + STATE(23758), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078236] = 4, + ACTIONS(21190), 1, + anon_sym_RBRACE, + ACTIONS(34878), 1, + anon_sym_COMMA, + STATE(23441), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078250] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3857), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078264] = 3, + ACTIONS(12420), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1078276] = 4, + ACTIONS(21379), 1, + anon_sym_RBRACE, + ACTIONS(34880), 1, + anon_sym_COMMA, + STATE(23006), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078290] = 4, + ACTIONS(23418), 1, + anon_sym_RBRACE, + ACTIONS(34882), 1, + anon_sym_COMMA, + STATE(23892), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078304] = 4, + ACTIONS(4373), 1, + anon_sym_RBRACK, + ACTIONS(34884), 1, + anon_sym_COMMA, + STATE(23009), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078318] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3593), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078332] = 4, + ACTIONS(21106), 1, + anon_sym_RBRACE, + ACTIONS(34886), 1, + anon_sym_COMMA, + STATE(22574), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078346] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34888), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078360] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4177), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078374] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34890), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078388] = 4, + ACTIONS(4141), 1, + anon_sym_RBRACK, + ACTIONS(34892), 1, + anon_sym_COMMA, + STATE(23163), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078402] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23248), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078416] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34894), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078430] = 4, + ACTIONS(23248), 1, + anon_sym_RBRACE, + ACTIONS(34896), 1, + anon_sym_COMMA, + STATE(22997), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078444] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34898), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078458] = 4, + ACTIONS(34898), 1, + anon_sym_RBRACE, + ACTIONS(34900), 1, + anon_sym_COMMA, + STATE(23002), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078472] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34902), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078486] = 4, + ACTIONS(3593), 1, + anon_sym_RBRACK, + ACTIONS(34904), 1, + anon_sym_COMMA, + STATE(23467), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078500] = 4, + ACTIONS(34902), 1, + anon_sym_RBRACK, + ACTIONS(34906), 1, + anon_sym_COMMA, + STATE(23005), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078514] = 4, + ACTIONS(23672), 1, + anon_sym_RBRACE, + ACTIONS(34908), 1, + anon_sym_COMMA, + STATE(23217), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078528] = 4, + ACTIONS(34888), 1, + anon_sym_RBRACE, + ACTIONS(34910), 1, + anon_sym_COMMA, + STATE(23046), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078542] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(34912), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078556] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34914), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078570] = 4, + ACTIONS(34914), 1, + anon_sym_RBRACK, + ACTIONS(34916), 1, + anon_sym_COMMA, + STATE(23049), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078584] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23592), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078598] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4935), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078612] = 4, + ACTIONS(23324), 1, + anon_sym_RBRACE, + ACTIONS(34918), 1, + anon_sym_COMMA, + STATE(23011), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078626] = 4, + ACTIONS(21201), 1, + anon_sym_RBRACE, + ACTIONS(34920), 1, + anon_sym_COMMA, + STATE(23025), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078640] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34922), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078654] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23324), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078668] = 4, + ACTIONS(4807), 1, + anon_sym_RBRACK, + ACTIONS(34924), 1, + anon_sym_COMMA, + STATE(23041), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078682] = 4, + ACTIONS(23592), 1, + anon_sym_RBRACE, + ACTIONS(34926), 1, + anon_sym_COMMA, + STATE(23054), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078696] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34928), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078710] = 4, + ACTIONS(34928), 1, + anon_sym_RBRACE, + ACTIONS(34930), 1, + anon_sym_COMMA, + STATE(23056), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078724] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34932), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078738] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34934), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078752] = 4, + ACTIONS(34934), 1, + anon_sym_RBRACK, + ACTIONS(34936), 1, + anon_sym_COMMA, + STATE(23058), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078766] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34938), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078780] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21383), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078794] = 4, + ACTIONS(34940), 1, + anon_sym_COMMA, + ACTIONS(34942), 1, + anon_sym_RBRACK, + STATE(22788), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078808] = 4, + ACTIONS(21383), 1, + anon_sym_RBRACE, + ACTIONS(34944), 1, + anon_sym_COMMA, + STATE(23038), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078822] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4375), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078836] = 4, + ACTIONS(33553), 1, + anon_sym_SEMI, + ACTIONS(34946), 1, + anon_sym_RBRACK, + STATE(22066), 1, + aux_sym_hol_plist_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078850] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23332), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078864] = 4, + ACTIONS(23332), 1, + anon_sym_RBRACE, + ACTIONS(34948), 1, + anon_sym_COMMA, + STATE(23016), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078878] = 4, + ACTIONS(4375), 1, + anon_sym_RBRACK, + ACTIONS(34950), 1, + anon_sym_COMMA, + STATE(23044), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078892] = 4, + ACTIONS(23032), 1, + anon_sym_RBRACE, + ACTIONS(34952), 1, + anon_sym_COMMA, + STATE(23332), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078906] = 4, + ACTIONS(34662), 1, + anon_sym_RBRACE, + ACTIONS(34954), 1, + anon_sym_COMMA, + STATE(23490), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078920] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34956), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078934] = 4, + ACTIONS(34956), 1, + anon_sym_RBRACE, + ACTIONS(34958), 1, + anon_sym_COMMA, + STATE(23018), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078948] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34960), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078962] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34962), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078976] = 4, + ACTIONS(23664), 1, + anon_sym_RBRACE, + ACTIONS(34964), 1, + anon_sym_COMMA, + STATE(23075), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1078990] = 4, + ACTIONS(3577), 1, + anon_sym_RBRACK, + ACTIONS(34966), 1, + anon_sym_COMMA, + STATE(24555), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079004] = 4, + ACTIONS(34962), 1, + anon_sym_RBRACK, + ACTIONS(34968), 1, + anon_sym_COMMA, + STATE(23511), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079018] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34970), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079032] = 4, + ACTIONS(21436), 1, + anon_sym_RBRACE, + ACTIONS(34972), 1, + anon_sym_COMMA, + STATE(23360), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079046] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21207), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079060] = 4, + ACTIONS(23788), 1, + anon_sym_RBRACE, + ACTIONS(34974), 1, + anon_sym_COMMA, + STATE(23052), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079074] = 4, + ACTIONS(20845), 1, + anon_sym_RBRACE, + ACTIONS(34976), 1, + anon_sym_COMMA, + STATE(23166), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079088] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(34978), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079102] = 4, + ACTIONS(20932), 1, + anon_sym_RBRACE, + ACTIONS(34980), 1, + anon_sym_COMMA, + STATE(23616), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079116] = 4, + ACTIONS(34894), 1, + anon_sym_RBRACE, + ACTIONS(34982), 1, + anon_sym_COMMA, + STATE(24022), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079130] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20845), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079144] = 4, + ACTIONS(23322), 1, + anon_sym_RBRACE, + ACTIONS(34984), 1, + anon_sym_COMMA, + STATE(23103), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079158] = 4, + ACTIONS(4935), 1, + anon_sym_RBRACK, + ACTIONS(34986), 1, + anon_sym_COMMA, + STATE(23917), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079172] = 4, + ACTIONS(21414), 1, + anon_sym_RBRACE, + ACTIONS(34988), 1, + anon_sym_COMMA, + STATE(23065), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079186] = 4, + ACTIONS(3999), 1, + anon_sym_RBRACK, + ACTIONS(34990), 1, + anon_sym_COMMA, + STATE(23170), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079200] = 4, + ACTIONS(21207), 1, + anon_sym_RBRACE, + ACTIONS(34992), 1, + anon_sym_COMMA, + STATE(23078), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079214] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21547), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079228] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21414), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079242] = 4, + ACTIONS(4377), 1, + anon_sym_RBRACK, + ACTIONS(34994), 1, + anon_sym_COMMA, + STATE(23073), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079256] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23788), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079270] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4809), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079284] = 4, + ACTIONS(20775), 1, + anon_sym_RBRACE, + ACTIONS(34996), 1, + anon_sym_COMMA, + STATE(23283), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079298] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21436), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079312] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4377), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079326] = 3, + STATE(25013), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1079338] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34998), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079352] = 4, + ACTIONS(4809), 1, + anon_sym_RBRACK, + ACTIONS(35000), 1, + anon_sym_COMMA, + STATE(23082), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079366] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3999), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079380] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35002), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079394] = 4, + ACTIONS(21547), 1, + anon_sym_RBRACE, + ACTIONS(35004), 1, + anon_sym_COMMA, + STATE(23141), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079408] = 4, + ACTIONS(20535), 1, + anon_sym_RBRACE, + ACTIONS(35006), 1, + anon_sym_COMMA, + STATE(23089), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079422] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23812), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079436] = 4, + ACTIONS(5149), 1, + anon_sym_RBRACK, + ACTIONS(35008), 1, + anon_sym_COMMA, + STATE(23092), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079450] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23664), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079464] = 4, + ACTIONS(4105), 1, + anon_sym_RBRACK, + ACTIONS(35010), 1, + anon_sym_COMMA, + STATE(24526), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079478] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35012), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079492] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35014), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079506] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35016), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079520] = 4, + ACTIONS(21209), 1, + anon_sym_RBRACE, + ACTIONS(35018), 1, + anon_sym_COMMA, + STATE(23561), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079534] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35020), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079548] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5007), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079562] = 4, + ACTIONS(23410), 1, + anon_sym_RBRACE, + ACTIONS(35022), 1, + anon_sym_COMMA, + STATE(23097), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079576] = 4, + ACTIONS(23812), 1, + anon_sym_RBRACE, + ACTIONS(35024), 1, + anon_sym_COMMA, + STATE(23086), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079590] = 4, + ACTIONS(32960), 1, + anon_sym_End, + ACTIONS(34556), 1, + anon_sym_BSLASH_BSLASH, + STATE(22742), 1, + aux_sym_THEN_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079604] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21424), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079618] = 4, + ACTIONS(4955), 1, + anon_sym_RBRACK, + ACTIONS(35026), 1, + anon_sym_COMMA, + STATE(23409), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079632] = 4, + ACTIONS(21424), 1, + anon_sym_RBRACE, + ACTIONS(35028), 1, + anon_sym_COMMA, + STATE(23107), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079646] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35030), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079660] = 4, + ACTIONS(5007), 1, + anon_sym_RBRACK, + ACTIONS(35032), 1, + anon_sym_COMMA, + STATE(23169), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079674] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20775), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079688] = 4, + ACTIONS(21211), 1, + anon_sym_RBRACE, + ACTIONS(35034), 1, + anon_sym_COMMA, + STATE(23110), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079702] = 4, + ACTIONS(21088), 1, + anon_sym_RBRACE, + ACTIONS(35036), 1, + anon_sym_COMMA, + STATE(23115), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079716] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4379), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079730] = 4, + ACTIONS(3761), 1, + anon_sym_RBRACK, + ACTIONS(35038), 1, + anon_sym_COMMA, + STATE(23121), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079744] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23722), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079758] = 4, + ACTIONS(4379), 1, + anon_sym_RBRACK, + ACTIONS(35040), 1, + anon_sym_COMMA, + STATE(23112), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079772] = 4, + ACTIONS(4651), 1, + anon_sym_RBRACK, + ACTIONS(35042), 1, + anon_sym_COMMA, + STATE(23678), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079786] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21211), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079800] = 4, + ACTIONS(4811), 1, + anon_sym_RBRACK, + ACTIONS(35044), 1, + anon_sym_COMMA, + STATE(23117), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079814] = 4, + ACTIONS(14705), 1, + anon_sym_RBRACK, + ACTIONS(35046), 1, + anon_sym_COMMA, + STATE(23584), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079828] = 4, + ACTIONS(4547), 1, + anon_sym_RBRACK, + ACTIONS(35048), 1, + anon_sym_COMMA, + STATE(23446), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079842] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4811), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079856] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3943), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079870] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(35050), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079884] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4547), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079898] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35052), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079912] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4955), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079926] = 4, + ACTIONS(23722), 1, + anon_sym_RBRACE, + ACTIONS(35054), 1, + anon_sym_COMMA, + STATE(23094), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079940] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20541), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079954] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35056), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079968] = 4, + ACTIONS(20541), 1, + anon_sym_RBRACE, + ACTIONS(35058), 1, + anon_sym_COMMA, + STATE(23138), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079982] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5151), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1079996] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21277), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080010] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35060), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080024] = 4, + ACTIONS(35060), 1, + anon_sym_RBRACE, + ACTIONS(35062), 1, + anon_sym_COMMA, + STATE(23104), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080038] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35064), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080052] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23426), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080066] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35066), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080080] = 4, + ACTIONS(5151), 1, + anon_sym_RBRACK, + ACTIONS(35068), 1, + anon_sym_COMMA, + STATE(23147), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080094] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35070), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080108] = 4, + ACTIONS(22882), 1, + anon_sym_RBRACE, + ACTIONS(35072), 1, + anon_sym_COMMA, + STATE(23148), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080122] = 4, + ACTIONS(23426), 1, + anon_sym_RBRACE, + ACTIONS(35074), 1, + anon_sym_COMMA, + STATE(23137), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080136] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35076), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080150] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35078), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080164] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21549), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080178] = 4, + ACTIONS(4177), 1, + anon_sym_RBRACK, + ACTIONS(35080), 1, + anon_sym_COMMA, + STATE(24256), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080192] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35082), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080206] = 4, + ACTIONS(35082), 1, + anon_sym_RBRACE, + ACTIONS(35084), 1, + anon_sym_COMMA, + STATE(23142), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080220] = 4, + ACTIONS(35076), 1, + anon_sym_RBRACE, + ACTIONS(35086), 1, + anon_sym_COMMA, + STATE(23314), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080234] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21213), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080248] = 4, + ACTIONS(21213), 1, + anon_sym_RBRACE, + ACTIONS(35088), 1, + anon_sym_COMMA, + STATE(23152), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080262] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35090), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080276] = 4, + ACTIONS(35090), 1, + anon_sym_RBRACK, + ACTIONS(35092), 1, + anon_sym_COMMA, + STATE(23144), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080290] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35094), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080304] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21112), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080318] = 4, + ACTIONS(20523), 1, + anon_sym_RBRACE, + ACTIONS(35096), 1, + anon_sym_COMMA, + STATE(23250), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080332] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4813), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080346] = 4, + ACTIONS(35052), 1, + anon_sym_RBRACE, + ACTIONS(35098), 1, + anon_sym_COMMA, + STATE(23133), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080360] = 4, + ACTIONS(21112), 1, + anon_sym_RBRACE, + ACTIONS(35100), 1, + anon_sym_COMMA, + STATE(23184), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080374] = 4, + ACTIONS(4813), 1, + anon_sym_RBRACK, + ACTIONS(35102), 1, + anon_sym_COMMA, + STATE(23160), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080388] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3763), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080402] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35104), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080416] = 4, + ACTIONS(20998), 1, + anon_sym_RBRACE, + ACTIONS(35106), 1, + anon_sym_COMMA, + STATE(23329), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080430] = 4, + ACTIONS(34307), 1, + anon_sym_RBRACE, + ACTIONS(35108), 1, + anon_sym_COMMA, + STATE(21685), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080444] = 4, + ACTIONS(3763), 1, + anon_sym_RBRACK, + ACTIONS(35110), 1, + anon_sym_COMMA, + STATE(23189), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080458] = 4, + ACTIONS(20980), 1, + anon_sym_RBRACE, + ACTIONS(35112), 1, + anon_sym_COMMA, + STATE(21914), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080472] = 4, + ACTIONS(21551), 1, + anon_sym_RBRACE, + ACTIONS(35114), 1, + anon_sym_COMMA, + STATE(23260), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080486] = 4, + ACTIONS(20663), 1, + anon_sym_RBRACE, + ACTIONS(35116), 1, + anon_sym_COMMA, + STATE(23775), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080500] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20523), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080514] = 4, + ACTIONS(20543), 1, + anon_sym_RBRACE, + ACTIONS(35118), 1, + anon_sym_COMMA, + STATE(23195), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080528] = 4, + ACTIONS(32858), 1, + anon_sym_COMMA, + ACTIONS(35120), 1, + anon_sym_RPAREN, + STATE(23653), 1, + aux_sym_tyvarseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080542] = 4, + ACTIONS(23440), 1, + anon_sym_RBRACE, + ACTIONS(35122), 1, + anon_sym_COMMA, + STATE(23151), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080556] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35124), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080570] = 4, + ACTIONS(23910), 1, + anon_sym_RBRACE, + ACTIONS(35126), 1, + anon_sym_COMMA, + STATE(23231), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080584] = 4, + ACTIONS(35128), 1, + anon_sym_COMMA, + ACTIONS(35130), 1, + anon_sym_RBRACK, + STATE(24274), 1, + aux_sym_hol_attributes_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080598] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23568), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080612] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23440), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080626] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20543), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080640] = 4, + ACTIONS(21122), 1, + anon_sym_RBRACE, + ACTIONS(35132), 1, + anon_sym_COMMA, + STATE(23215), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080654] = 4, + ACTIONS(5153), 1, + anon_sym_RBRACK, + ACTIONS(35134), 1, + anon_sym_COMMA, + STATE(23199), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080668] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21551), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080682] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35136), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080696] = 4, + ACTIONS(14753), 1, + anon_sym_RBRACK, + ACTIONS(35138), 1, + anon_sym_COMMA, + STATE(23219), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080710] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35140), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080724] = 4, + ACTIONS(4143), 1, + anon_sym_RBRACK, + ACTIONS(35142), 1, + anon_sym_COMMA, + STATE(23289), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080738] = 4, + ACTIONS(21269), 1, + anon_sym_RBRACE, + ACTIONS(35144), 1, + anon_sym_COMMA, + STATE(21897), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080752] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5153), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080766] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22890), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080780] = 4, + ACTIONS(5009), 1, + anon_sym_RBRACK, + ACTIONS(35146), 1, + anon_sym_COMMA, + STATE(23275), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080794] = 4, + ACTIONS(22890), 1, + anon_sym_RBRACE, + ACTIONS(35148), 1, + anon_sym_COMMA, + STATE(23173), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080808] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23448), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080822] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35150), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080836] = 4, + ACTIONS(35150), 1, + anon_sym_RBRACE, + ACTIONS(35152), 1, + anon_sym_COMMA, + STATE(23175), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080850] = 4, + ACTIONS(23448), 1, + anon_sym_RBRACE, + ACTIONS(35154), 1, + anon_sym_COMMA, + STATE(23156), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080864] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23534), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080878] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35156), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080892] = 4, + ACTIONS(35156), 1, + anon_sym_RBRACE, + ACTIONS(35158), 1, + anon_sym_COMMA, + STATE(23158), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080906] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35160), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080920] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35162), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080934] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35164), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080948] = 4, + ACTIONS(35164), 1, + anon_sym_RBRACK, + ACTIONS(35166), 1, + anon_sym_COMMA, + STATE(23176), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080962] = 4, + ACTIONS(21277), 1, + anon_sym_RBRACE, + ACTIONS(35168), 1, + anon_sym_COMMA, + STATE(23411), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080976] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4143), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1080990] = 4, + ACTIONS(4681), 1, + anon_sym_RBRACK, + ACTIONS(35170), 1, + anon_sym_COMMA, + STATE(23380), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081004] = 4, + ACTIONS(21549), 1, + anon_sym_RBRACE, + ACTIONS(35172), 1, + anon_sym_COMMA, + STATE(24426), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081018] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20876), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081032] = 4, + ACTIONS(20876), 1, + anon_sym_RBRACE, + ACTIONS(35174), 1, + anon_sym_COMMA, + STATE(23247), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081046] = 4, + ACTIONS(22892), 1, + anon_sym_RBRACE, + ACTIONS(35176), 1, + anon_sym_COMMA, + STATE(23182), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081060] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5009), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081074] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4001), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081088] = 4, + ACTIONS(23940), 1, + anon_sym_RBRACE, + ACTIONS(35178), 1, + anon_sym_COMMA, + STATE(22767), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081102] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35180), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081116] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22892), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081130] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3681), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081144] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35182), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081158] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35184), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081172] = 4, + ACTIONS(21132), 1, + anon_sym_RBRACE, + ACTIONS(35186), 1, + anon_sym_COMMA, + STATE(23251), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081186] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35188), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081200] = 4, + ACTIONS(4001), 1, + anon_sym_RBRACK, + ACTIONS(35190), 1, + anon_sym_COMMA, + STATE(23263), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081214] = 4, + ACTIONS(20878), 1, + anon_sym_RBRACE, + ACTIONS(35192), 1, + anon_sym_COMMA, + STATE(23461), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081228] = 4, + ACTIONS(21381), 1, + anon_sym_RBRACE, + ACTIONS(35194), 1, + anon_sym_COMMA, + STATE(22321), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081242] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22898), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081256] = 4, + ACTIONS(23608), 1, + anon_sym_RBRACE, + ACTIONS(35196), 1, + anon_sym_COMMA, + STATE(23227), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081270] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21132), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081284] = 4, + ACTIONS(3765), 1, + anon_sym_RBRACK, + ACTIONS(35198), 1, + anon_sym_COMMA, + STATE(23255), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081298] = 4, + ACTIONS(22898), 1, + anon_sym_RBRACE, + ACTIONS(35200), 1, + anon_sym_COMMA, + STATE(23188), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081312] = 4, + ACTIONS(3869), 1, + anon_sym_RBRACK, + ACTIONS(35202), 1, + anon_sym_COMMA, + STATE(22025), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081326] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35204), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081340] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3765), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081354] = 4, + ACTIONS(3905), 1, + anon_sym_RBRACK, + ACTIONS(35206), 1, + anon_sym_COMMA, + STATE(23505), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081368] = 4, + ACTIONS(21104), 1, + anon_sym_RBRACE, + ACTIONS(35208), 1, + anon_sym_COMMA, + STATE(23474), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081382] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35210), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081396] = 4, + ACTIONS(35204), 1, + anon_sym_RBRACE, + ACTIONS(35212), 1, + anon_sym_COMMA, + STATE(23194), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081410] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35214), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081424] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20545), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081438] = 4, + ACTIONS(20545), 1, + anon_sym_RBRACE, + ACTIONS(35216), 1, + anon_sym_COMMA, + STATE(23233), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081452] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35218), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081466] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4073), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081480] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5155), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081494] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23672), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081508] = 4, + ACTIONS(4073), 1, + anon_sym_RBRACK, + ACTIONS(35220), 1, + anon_sym_COMMA, + STATE(23427), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081522] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35222), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081536] = 4, + ACTIONS(5155), 1, + anon_sym_RBRACK, + ACTIONS(35224), 1, + anon_sym_COMMA, + STATE(23237), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081550] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35226), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081564] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35228), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081578] = 4, + ACTIONS(35064), 1, + anon_sym_RBRACK, + ACTIONS(35230), 1, + anon_sym_COMMA, + STATE(24576), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081592] = 4, + ACTIONS(21476), 1, + anon_sym_RBRACE, + ACTIONS(35232), 1, + anon_sym_COMMA, + STATE(23259), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081606] = 4, + ACTIONS(20547), 1, + anon_sym_RBRACE, + ACTIONS(35234), 1, + anon_sym_COMMA, + STATE(21671), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081620] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35236), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081634] = 4, + ACTIONS(35236), 1, + anon_sym_RBRACE, + ACTIONS(35238), 1, + anon_sym_COMMA, + STATE(23330), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081648] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35240), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081662] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21269), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081676] = 4, + ACTIONS(4391), 1, + anon_sym_RBRACK, + ACTIONS(35242), 1, + anon_sym_COMMA, + STATE(23262), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081690] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35244), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081704] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21134), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081718] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35246), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081732] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23678), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081746] = 4, + ACTIONS(21134), 1, + anon_sym_RBRACE, + ACTIONS(35248), 1, + anon_sym_COMMA, + STATE(23277), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081760] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14755), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081774] = 4, + ACTIONS(3725), 1, + anon_sym_RBRACK, + ACTIONS(35250), 1, + anon_sym_COMMA, + STATE(21673), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081788] = 4, + ACTIONS(23468), 1, + anon_sym_RBRACE, + ACTIONS(35252), 1, + anon_sym_COMMA, + STATE(23750), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081802] = 4, + ACTIONS(23372), 1, + anon_sym_RBRACE, + ACTIONS(35254), 1, + anon_sym_COMMA, + STATE(23439), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081816] = 4, + ACTIONS(23786), 1, + anon_sym_RBRACE, + ACTIONS(35256), 1, + anon_sym_COMMA, + STATE(24116), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081830] = 4, + ACTIONS(14755), 1, + anon_sym_RBRACK, + ACTIONS(35258), 1, + anon_sym_COMMA, + STATE(23281), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081844] = 4, + ACTIONS(22754), 1, + anon_sym_RBRACE, + ACTIONS(35260), 1, + anon_sym_COMMA, + STATE(23533), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081858] = 4, + ACTIONS(23696), 1, + anon_sym_RBRACE, + ACTIONS(35262), 1, + anon_sym_COMMA, + STATE(23406), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081872] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23646), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081886] = 4, + ACTIONS(4193), 1, + anon_sym_RBRACK, + ACTIONS(35264), 1, + anon_sym_COMMA, + STATE(23815), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081900] = 4, + ACTIONS(23678), 1, + anon_sym_RBRACE, + ACTIONS(35266), 1, + anon_sym_COMMA, + STATE(23257), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081914] = 4, + ACTIONS(23646), 1, + anon_sym_RBRACE, + ACTIONS(35268), 1, + anon_sym_COMMA, + STATE(23270), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081928] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23052), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081942] = 4, + ACTIONS(20677), 1, + anon_sym_RBRACE, + ACTIONS(35270), 1, + anon_sym_COMMA, + STATE(24607), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081956] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35272), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081970] = 4, + ACTIONS(35272), 1, + anon_sym_RBRACE, + ACTIONS(35274), 1, + anon_sym_COMMA, + STATE(23271), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081984] = 4, + ACTIONS(21235), 1, + anon_sym_RBRACE, + ACTIONS(35276), 1, + anon_sym_COMMA, + STATE(23292), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1081998] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(35278), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082012] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35280), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082026] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35282), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082040] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(35284), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082054] = 4, + ACTIONS(23052), 1, + anon_sym_RBRACE, + ACTIONS(35286), 1, + anon_sym_COMMA, + STATE(23335), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082068] = 4, + ACTIONS(35280), 1, + anon_sym_RBRACK, + ACTIONS(35288), 1, + anon_sym_COMMA, + STATE(23274), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082082] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35290), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082096] = 4, + ACTIONS(23770), 1, + anon_sym_RBRACE, + ACTIONS(35292), 1, + anon_sym_COMMA, + STATE(21715), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082110] = 4, + ACTIONS(22714), 1, + anon_sym_RBRACE, + ACTIONS(35294), 1, + anon_sym_COMMA, + STATE(23302), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082124] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23756), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082138] = 4, + ACTIONS(4825), 1, + anon_sym_RBRACK, + ACTIONS(35296), 1, + anon_sym_COMMA, + STATE(23307), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082152] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35298), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082166] = 4, + ACTIONS(35300), 1, + anon_sym_RPAREN, + ACTIONS(35302), 1, + anon_sym_COLON_COLON, + STATE(23248), 1, + aux_sym_hol_pcons_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082180] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35305), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082194] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20533), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082208] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21150), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082222] = 4, + ACTIONS(21150), 1, + anon_sym_RBRACE, + ACTIONS(35307), 1, + anon_sym_COMMA, + STATE(23308), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082236] = 4, + ACTIONS(35298), 1, + anon_sym_RBRACE, + ACTIONS(35309), 1, + anon_sym_COMMA, + STATE(23337), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082250] = 4, + ACTIONS(3681), 1, + anon_sym_RBRACK, + ACTIONS(35311), 1, + anon_sym_COMMA, + STATE(24522), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082264] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3767), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082278] = 4, + ACTIONS(3767), 1, + anon_sym_RBRACK, + ACTIONS(35313), 1, + anon_sym_COMMA, + STATE(23310), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082292] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35315), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082306] = 4, + ACTIONS(35315), 1, + anon_sym_RBRACE, + ACTIONS(35317), 1, + anon_sym_COMMA, + STATE(23265), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082320] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21487), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082334] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21553), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082348] = 4, + ACTIONS(21487), 1, + anon_sym_RBRACE, + ACTIONS(35319), 1, + anon_sym_COMMA, + STATE(23303), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082362] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4393), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082376] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35321), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082390] = 4, + ACTIONS(23652), 1, + anon_sym_RBRACE, + ACTIONS(35323), 1, + anon_sym_COMMA, + STATE(23280), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082404] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35325), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082418] = 4, + ACTIONS(20533), 1, + anon_sym_RBRACE, + ACTIONS(35327), 1, + anon_sym_COMMA, + STATE(23465), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082432] = 4, + ACTIONS(21553), 1, + anon_sym_RBRACE, + ACTIONS(35329), 1, + anon_sym_COMMA, + STATE(23431), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082446] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35331), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082460] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23908), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082474] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23652), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082488] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35333), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082502] = 4, + ACTIONS(4393), 1, + anon_sym_RBRACK, + ACTIONS(35335), 1, + anon_sym_COMMA, + STATE(23313), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082516] = 4, + ACTIONS(21158), 1, + anon_sym_RBRACE, + ACTIONS(35337), 1, + anon_sym_COMMA, + STATE(23320), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082530] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35339), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082544] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5011), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082558] = 4, + ACTIONS(28624), 1, + sym__alphaAlphaNumeric_ident, + STATE(13561), 1, + sym_strbind, + STATE(21594), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082572] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21158), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082586] = 4, + ACTIONS(14757), 1, + anon_sym_RBRACK, + ACTIONS(35341), 1, + anon_sym_COMMA, + STATE(23324), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082600] = 4, + ACTIONS(35321), 1, + anon_sym_RBRACK, + ACTIONS(35343), 1, + anon_sym_COMMA, + STATE(23345), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082614] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23682), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082628] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14757), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082642] = 4, + ACTIONS(23682), 1, + anon_sym_RBRACE, + ACTIONS(35345), 1, + anon_sym_COMMA, + STATE(23284), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082656] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20777), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082670] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35347), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082684] = 4, + ACTIONS(20839), 1, + anon_sym_RBRACE, + ACTIONS(35349), 1, + anon_sym_COMMA, + STATE(23491), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082698] = 4, + ACTIONS(3873), 1, + anon_sym_RBRACK, + ACTIONS(35351), 1, + anon_sym_COMMA, + STATE(22792), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082712] = 4, + ACTIONS(35347), 1, + anon_sym_RBRACE, + ACTIONS(35353), 1, + anon_sym_COMMA, + STATE(23288), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082726] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35355), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082740] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4145), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082754] = 4, + ACTIONS(20777), 1, + anon_sym_RBRACE, + ACTIONS(35357), 1, + anon_sym_COMMA, + STATE(24169), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082768] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35359), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082782] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21237), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082796] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35361), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082810] = 4, + ACTIONS(5011), 1, + anon_sym_RBRACK, + ACTIONS(35363), 1, + anon_sym_COMMA, + STATE(23444), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082824] = 4, + ACTIONS(23908), 1, + anon_sym_RBRACE, + ACTIONS(35365), 1, + anon_sym_COMMA, + STATE(23386), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082838] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35367), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082852] = 4, + ACTIONS(21497), 1, + anon_sym_RBRACE, + ACTIONS(35369), 1, + anon_sym_COMMA, + STATE(23338), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082866] = 4, + ACTIONS(23208), 1, + anon_sym_RBRACE, + ACTIONS(35371), 1, + anon_sym_COMMA, + STATE(23350), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082880] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35373), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082894] = 4, + ACTIONS(21237), 1, + anon_sym_RBRACE, + ACTIONS(35375), 1, + anon_sym_COMMA, + STATE(23381), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082908] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(35377), 3, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + [1082918] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22770), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082932] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21497), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082946] = 4, + ACTIONS(23776), 1, + anon_sym_RBRACE, + ACTIONS(35379), 1, + anon_sym_COMMA, + STATE(23317), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082960] = 4, + ACTIONS(22770), 1, + anon_sym_RBRACE, + ACTIONS(35381), 1, + anon_sym_COMMA, + STATE(23341), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082974] = 4, + ACTIONS(4395), 1, + anon_sym_RBRACK, + ACTIONS(35383), 1, + anon_sym_COMMA, + STATE(23346), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1082988] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4827), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083002] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35385), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083016] = 4, + ACTIONS(35385), 1, + anon_sym_RBRACE, + ACTIONS(35387), 1, + anon_sym_COMMA, + STATE(23342), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083030] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35389), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083044] = 4, + ACTIONS(35391), 1, + anon_sym_PIPE, + ACTIONS(35393), 1, + anon_sym_End, + STATE(24276), 1, + aux_sym_hol_constructor_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083058] = 4, + ACTIONS(35389), 1, + anon_sym_RBRACK, + ACTIONS(35395), 1, + anon_sym_COMMA, + STATE(23344), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083072] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4395), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083086] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35397), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083100] = 4, + ACTIONS(29913), 1, + anon_sym_End, + ACTIONS(35399), 1, + anon_sym_BSLASH_BSLASH, + STATE(23315), 1, + aux_sym_THEN_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083114] = 4, + ACTIONS(22679), 1, + anon_sym_RBRACE, + ACTIONS(35402), 1, + anon_sym_COMMA, + STATE(22328), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083128] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23784), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083142] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35404), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083156] = 4, + ACTIONS(4827), 1, + anon_sym_RBRACK, + ACTIONS(35406), 1, + anon_sym_COMMA, + STATE(23385), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083170] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21176), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083184] = 4, + ACTIONS(21176), 1, + anon_sym_RBRACE, + ACTIONS(35408), 1, + anon_sym_COMMA, + STATE(23347), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083198] = 4, + ACTIONS(4597), 1, + anon_sym_RBRACK, + ACTIONS(35410), 1, + anon_sym_COMMA, + STATE(23497), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083212] = 4, + ACTIONS(23784), 1, + anon_sym_RBRACE, + ACTIONS(35412), 1, + anon_sym_COMMA, + STATE(23340), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083226] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14759), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083240] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35414), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083254] = 4, + ACTIONS(14759), 1, + anon_sym_RBRACK, + ACTIONS(35416), 1, + anon_sym_COMMA, + STATE(23352), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083268] = 4, + ACTIONS(23794), 1, + anon_sym_RBRACE, + ACTIONS(35418), 1, + anon_sym_COMMA, + STATE(23355), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083282] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35420), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083296] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21002), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083310] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35422), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083324] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(35424), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083338] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23092), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083352] = 4, + ACTIONS(23617), 1, + anon_sym_RBRACE, + ACTIONS(35426), 1, + anon_sym_COMMA, + STATE(23370), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083366] = 4, + ACTIONS(22796), 1, + anon_sym_RBRACE, + ACTIONS(35428), 1, + anon_sym_COMMA, + STATE(23357), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083380] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23208), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083394] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35430), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083408] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35432), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083422] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21519), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083436] = 4, + ACTIONS(21519), 1, + anon_sym_RBRACE, + ACTIONS(35434), 1, + anon_sym_COMMA, + STATE(23375), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083450] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23794), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083464] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22796), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083478] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35436), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083492] = 4, + ACTIONS(4145), 1, + anon_sym_RBRACK, + ACTIONS(35438), 1, + anon_sym_COMMA, + STATE(23476), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083506] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35440), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083520] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35442), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083534] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4397), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083548] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35444), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083562] = 4, + ACTIONS(4397), 1, + anon_sym_RBRACK, + ACTIONS(35446), 1, + anon_sym_COMMA, + STATE(23377), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083576] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3873), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083590] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23254), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083604] = 4, + ACTIONS(35444), 1, + anon_sym_RBRACE, + ACTIONS(35448), 1, + anon_sym_COMMA, + STATE(23361), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083618] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35450), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083632] = 4, + ACTIONS(35450), 1, + anon_sym_RBRACK, + ACTIONS(35452), 1, + anon_sym_COMMA, + STATE(23362), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083646] = 4, + ACTIONS(23254), 1, + anon_sym_RBRACE, + ACTIONS(35454), 1, + anon_sym_COMMA, + STATE(23359), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083660] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23810), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083674] = 4, + ACTIONS(23810), 1, + anon_sym_RBRACE, + ACTIONS(35456), 1, + anon_sym_COMMA, + STATE(23363), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083688] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22824), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083702] = 4, + ACTIONS(22824), 1, + anon_sym_RBRACE, + ACTIONS(35458), 1, + anon_sym_COMMA, + STATE(23367), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083716] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35460), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083730] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21446), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083744] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35462), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083758] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35464), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083772] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35466), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083786] = 4, + ACTIONS(35466), 1, + anon_sym_RBRACE, + ACTIONS(35468), 1, + anon_sym_COMMA, + STATE(23369), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083800] = 4, + ACTIONS(21239), 1, + anon_sym_RBRACE, + ACTIONS(35470), 1, + anon_sym_COMMA, + STATE(23412), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083814] = 4, + ACTIONS(35460), 1, + anon_sym_RBRACE, + ACTIONS(35472), 1, + anon_sym_COMMA, + STATE(23379), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083828] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35474), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083842] = 4, + ACTIONS(35474), 1, + anon_sym_RBRACE, + ACTIONS(35476), 1, + anon_sym_COMMA, + STATE(23371), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083856] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35478), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083870] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23674), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083884] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35480), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083898] = 4, + ACTIONS(21002), 1, + anon_sym_RBRACE, + ACTIONS(35482), 1, + anon_sym_COMMA, + STATE(23612), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083912] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20673), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083926] = 4, + ACTIONS(23674), 1, + anon_sym_RBRACE, + ACTIONS(35484), 1, + anon_sym_COMMA, + STATE(23390), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083940] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35486), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083954] = 4, + ACTIONS(35486), 1, + anon_sym_RBRACE, + ACTIONS(35488), 1, + anon_sym_COMMA, + STATE(23392), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083968] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35490), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083982] = 4, + ACTIONS(35490), 1, + anon_sym_RBRACK, + ACTIONS(35492), 1, + anon_sym_COMMA, + STATE(23393), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1083996] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35494), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084010] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4683), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084024] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21239), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084038] = 4, + ACTIONS(4829), 1, + anon_sym_RBRACK, + ACTIONS(35496), 1, + anon_sym_COMMA, + STATE(23415), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084052] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35498), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084066] = 4, + ACTIONS(23534), 1, + anon_sym_RBRACE, + ACTIONS(35500), 1, + anon_sym_COMMA, + STATE(24297), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084080] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4829), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084094] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35502), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084108] = 4, + ACTIONS(23704), 1, + anon_sym_RBRACE, + ACTIONS(35504), 1, + anon_sym_COMMA, + STATE(23396), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084122] = 4, + ACTIONS(21351), 1, + anon_sym_RBRACE, + ACTIONS(35506), 1, + anon_sym_COMMA, + STATE(24251), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084136] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35508), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084150] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23704), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084164] = 4, + ACTIONS(23756), 1, + anon_sym_RBRACE, + ACTIONS(35510), 1, + anon_sym_COMMA, + STATE(24308), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084178] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35512), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084192] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35514), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084206] = 4, + ACTIONS(21446), 1, + anon_sym_RBRACE, + ACTIONS(35516), 1, + anon_sym_COMMA, + STATE(23793), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084220] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35518), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084234] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23716), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084248] = 4, + ACTIONS(23716), 1, + anon_sym_RBRACE, + ACTIONS(35520), 1, + anon_sym_COMMA, + STATE(23400), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084262] = 4, + ACTIONS(23944), 1, + anon_sym_RBRACE, + ACTIONS(35522), 1, + anon_sym_COMMA, + STATE(23408), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084276] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20918), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084290] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35524), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084304] = 4, + ACTIONS(35524), 1, + anon_sym_RBRACE, + ACTIONS(35526), 1, + anon_sym_COMMA, + STATE(23402), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084318] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35528), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084332] = 4, + ACTIONS(23092), 1, + anon_sym_RBRACE, + ACTIONS(35530), 1, + anon_sym_COMMA, + STATE(23694), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084346] = 4, + ACTIONS(20799), 1, + anon_sym_RBRACE, + ACTIONS(35532), 1, + anon_sym_COMMA, + STATE(23539), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084360] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35534), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084374] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23700), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084388] = 4, + ACTIONS(22936), 1, + anon_sym_RBRACE, + ACTIONS(35536), 1, + anon_sym_COMMA, + STATE(23430), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084402] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23960), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084416] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4957), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084430] = 4, + ACTIONS(3857), 1, + anon_sym_RBRACK, + ACTIONS(35538), 1, + anon_sym_COMMA, + STATE(24218), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084444] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35540), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084458] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21241), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084472] = 4, + ACTIONS(21241), 1, + anon_sym_RBRACE, + ACTIONS(35542), 1, + anon_sym_COMMA, + STATE(23434), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084486] = 4, + ACTIONS(23960), 1, + anon_sym_RBRACE, + ACTIONS(35544), 1, + anon_sym_COMMA, + STATE(23421), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084500] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4831), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084514] = 4, + ACTIONS(4831), 1, + anon_sym_RBRACK, + ACTIONS(35546), 1, + anon_sym_COMMA, + STATE(23437), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084528] = 4, + ACTIONS(35540), 1, + anon_sym_RBRACE, + ACTIONS(35548), 1, + anon_sym_COMMA, + STATE(23712), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084542] = 4, + ACTIONS(23816), 1, + anon_sym_RBRACE, + ACTIONS(35550), 1, + anon_sym_COMMA, + STATE(23422), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084556] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20707), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084570] = 4, + ACTIONS(23700), 1, + anon_sym_RBRACE, + ACTIONS(35552), 1, + anon_sym_COMMA, + STATE(23513), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084584] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23816), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084598] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22708), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084612] = 4, + ACTIONS(22708), 1, + anon_sym_RBRACE, + ACTIONS(35554), 1, + anon_sym_COMMA, + STATE(23426), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084626] = 4, + ACTIONS(21243), 1, + anon_sym_RBRACE, + ACTIONS(35556), 1, + anon_sym_COMMA, + STATE(23813), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084640] = 4, + ACTIONS(4229), 1, + anon_sym_RBRACK, + ACTIONS(35558), 1, + anon_sym_COMMA, + STATE(23554), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084654] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35560), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084668] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35562), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084682] = 4, + ACTIONS(35560), 1, + anon_sym_RBRACE, + ACTIONS(35564), 1, + anon_sym_COMMA, + STATE(23429), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084696] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35566), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084710] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22940), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084724] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35568), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084738] = 4, + ACTIONS(4683), 1, + anon_sym_RBRACK, + ACTIONS(35570), 1, + anon_sym_COMMA, + STATE(23657), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084752] = 4, + ACTIONS(22940), 1, + anon_sym_RBRACE, + ACTIONS(35572), 1, + anon_sym_COMMA, + STATE(23448), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084766] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35574), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084780] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22754), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084794] = 4, + ACTIONS(35574), 1, + anon_sym_RBRACE, + ACTIONS(35576), 1, + anon_sym_COMMA, + STATE(23451), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084808] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35578), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084822] = 4, + ACTIONS(35578), 1, + anon_sym_RBRACK, + ACTIONS(35580), 1, + anon_sym_COMMA, + STATE(23453), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084836] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23720), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084850] = 4, + ACTIONS(35568), 1, + anon_sym_RBRACE, + ACTIONS(35582), 1, + anon_sym_COMMA, + STATE(23517), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084864] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21243), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084878] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35584), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084892] = 4, + ACTIONS(22946), 1, + anon_sym_RBRACE, + ACTIONS(35586), 1, + anon_sym_COMMA, + STATE(23455), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084906] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35588), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084920] = 4, + ACTIONS(23806), 1, + anon_sym_RBRACE, + ACTIONS(35590), 1, + anon_sym_COMMA, + STATE(23464), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084934] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4549), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084948] = 4, + ACTIONS(21223), 1, + anon_sym_RBRACE, + ACTIONS(35592), 1, + anon_sym_COMMA, + STATE(23478), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084962] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22946), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084976] = 4, + ACTIONS(3959), 1, + anon_sym_RBRACK, + ACTIONS(35594), 1, + anon_sym_COMMA, + STATE(24283), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1084990] = 4, + ACTIONS(3779), 1, + anon_sym_RBRACK, + ACTIONS(35596), 1, + anon_sym_COMMA, + STATE(23482), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085004] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35598), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085018] = 4, + ACTIONS(35588), 1, + anon_sym_RBRACK, + ACTIONS(35600), 1, + anon_sym_COMMA, + STATE(23524), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085032] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35602), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085046] = 4, + ACTIONS(3595), 1, + anon_sym_RBRACK, + ACTIONS(35604), 1, + anon_sym_COMMA, + STATE(23835), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085060] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22948), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085074] = 4, + ACTIONS(21579), 1, + anon_sym_RBRACE, + ACTIONS(35606), 1, + anon_sym_COMMA, + STATE(23507), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085088] = 4, + ACTIONS(22948), 1, + anon_sym_RBRACE, + ACTIONS(35608), 1, + anon_sym_COMMA, + STATE(23459), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085102] = 4, + ACTIONS(23720), 1, + anon_sym_RBRACE, + ACTIONS(35610), 1, + anon_sym_COMMA, + STATE(23542), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085116] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35612), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085130] = 4, + ACTIONS(35612), 1, + anon_sym_RBRACE, + ACTIONS(35614), 1, + anon_sym_COMMA, + STATE(23463), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085144] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20972), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085158] = 4, + ACTIONS(4409), 1, + anon_sym_RBRACK, + ACTIONS(35616), 1, + anon_sym_COMMA, + STATE(23509), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085172] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35618), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085186] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22436), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085200] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35620), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085214] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21090), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085228] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3595), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085242] = 4, + ACTIONS(22436), 1, + anon_sym_RBRACE, + ACTIONS(35622), 1, + anon_sym_COMMA, + STATE(23473), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085256] = 4, + ACTIONS(22492), 1, + anon_sym_RBRACE, + ACTIONS(35624), 1, + anon_sym_COMMA, + STATE(23477), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085270] = 4, + ACTIONS(35620), 1, + anon_sym_RBRACE, + ACTIONS(35626), 1, + anon_sym_COMMA, + STATE(23579), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085284] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35628), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085298] = 4, + ACTIONS(4957), 1, + anon_sym_RBRACK, + ACTIONS(35630), 1, + anon_sym_COMMA, + STATE(23848), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085312] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22492), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085326] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21118), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085340] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23472), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085354] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35632), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085368] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22706), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085382] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21231), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085396] = 4, + ACTIONS(20950), 1, + anon_sym_RBRACE, + ACTIONS(35634), 1, + anon_sym_COMMA, + STATE(23582), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085410] = 4, + ACTIONS(22706), 1, + anon_sym_RBRACE, + ACTIONS(35636), 1, + anon_sym_COMMA, + STATE(23487), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085424] = 4, + ACTIONS(21231), 1, + anon_sym_RBRACE, + ACTIONS(35638), 1, + anon_sym_COMMA, + STATE(23557), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085438] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3781), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085452] = 4, + ACTIONS(35632), 1, + anon_sym_RBRACK, + ACTIONS(35640), 1, + anon_sym_COMMA, + STATE(23601), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085466] = 4, + ACTIONS(35562), 1, + anon_sym_RBRACK, + ACTIONS(35642), 1, + anon_sym_COMMA, + STATE(23714), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085480] = 4, + ACTIONS(4549), 1, + anon_sym_RBRACK, + ACTIONS(35644), 1, + anon_sym_COMMA, + STATE(24231), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085494] = 4, + ACTIONS(3781), 1, + anon_sym_RBRACK, + ACTIONS(35646), 1, + anon_sym_COMMA, + STATE(23576), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085508] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35648), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085522] = 4, + ACTIONS(35648), 1, + anon_sym_RBRACE, + ACTIONS(35650), 1, + anon_sym_COMMA, + STATE(23489), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085536] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35652), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085550] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35654), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085564] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20851), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085578] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35656), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085592] = 4, + ACTIONS(20972), 1, + anon_sym_RBRACE, + ACTIONS(35658), 1, + anon_sym_COMMA, + STATE(24307), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085606] = 4, + ACTIONS(4013), 1, + anon_sym_RBRACK, + ACTIONS(35660), 1, + anon_sym_COMMA, + STATE(23592), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085620] = 4, + ACTIONS(20851), 1, + anon_sym_RBRACE, + ACTIONS(35662), 1, + anon_sym_COMMA, + STATE(23654), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085634] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34735), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085648] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4599), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085662] = 4, + ACTIONS(23706), 1, + anon_sym_RBRACE, + ACTIONS(35664), 1, + anon_sym_COMMA, + STATE(23538), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085676] = 4, + ACTIONS(20815), 1, + anon_sym_RBRACE, + ACTIONS(35666), 1, + anon_sym_COMMA, + STATE(22418), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085690] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35668), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085704] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35670), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085718] = 4, + ACTIONS(21090), 1, + anon_sym_RBRACE, + ACTIONS(35672), 1, + anon_sym_COMMA, + STATE(21933), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085732] = 4, + ACTIONS(21253), 1, + anon_sym_RBRACE, + ACTIONS(35674), 1, + anon_sym_COMMA, + STATE(23544), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085746] = 4, + ACTIONS(23856), 1, + anon_sym_RBRACE, + ACTIONS(35676), 1, + anon_sym_COMMA, + STATE(23636), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085760] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3907), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085774] = 4, + ACTIONS(22960), 1, + anon_sym_RBRACE, + ACTIONS(35678), 1, + anon_sym_COMMA, + STATE(23515), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085788] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21603), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085802] = 4, + ACTIONS(21603), 1, + anon_sym_RBRACE, + ACTIONS(35680), 1, + anon_sym_COMMA, + STATE(23528), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085816] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4411), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085830] = 4, + ACTIONS(4843), 1, + anon_sym_RBRACK, + ACTIONS(35682), 1, + anon_sym_COMMA, + STATE(23559), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085844] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35684), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085858] = 4, + ACTIONS(4411), 1, + anon_sym_RBRACK, + ACTIONS(35686), 1, + anon_sym_COMMA, + STATE(23531), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085872] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23706), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085886] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35688), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085900] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23074), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085914] = 4, + ACTIONS(4599), 1, + anon_sym_RBRACK, + ACTIONS(35690), 1, + anon_sym_COMMA, + STATE(23669), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085928] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35692), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085942] = 4, + ACTIONS(23074), 1, + anon_sym_RBRACE, + ACTIONS(35694), 1, + anon_sym_COMMA, + STATE(23527), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085956] = 4, + ACTIONS(21118), 1, + anon_sym_RBRACE, + ACTIONS(35696), 1, + anon_sym_COMMA, + STATE(21595), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085970] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35698), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085984] = 4, + ACTIONS(23082), 1, + anon_sym_RBRACE, + ACTIONS(35700), 1, + anon_sym_COMMA, + STATE(23530), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1085998] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4051), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086012] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35702), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086026] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35704), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086040] = 4, + ACTIONS(21619), 1, + anon_sym_RBRACE, + ACTIONS(35706), 1, + anon_sym_COMMA, + STATE(23567), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086054] = 4, + ACTIONS(3887), 1, + anon_sym_RBRACK, + ACTIONS(35708), 1, + anon_sym_COMMA, + STATE(21894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086068] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23082), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086082] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21619), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086096] = 4, + ACTIONS(4413), 1, + anon_sym_RBRACK, + ACTIONS(35710), 1, + anon_sym_COMMA, + STATE(23572), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086110] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23168), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086124] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4413), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086138] = 4, + ACTIONS(23168), 1, + anon_sym_RBRACE, + ACTIONS(35712), 1, + anon_sym_COMMA, + STATE(23534), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086152] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22758), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086166] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35714), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086180] = 4, + ACTIONS(35714), 1, + anon_sym_RBRACE, + ACTIONS(35716), 1, + anon_sym_COMMA, + STATE(23536), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086194] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35718), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086208] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35720), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086222] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23708), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086236] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20801), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086250] = 4, + ACTIONS(23708), 1, + anon_sym_RBRACE, + ACTIONS(35722), 1, + anon_sym_COMMA, + STATE(23556), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086264] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35724), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086278] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23856), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086292] = 4, + ACTIONS(20801), 1, + anon_sym_RBRACE, + ACTIONS(35726), 1, + anon_sym_COMMA, + STATE(23751), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086306] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21259), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086320] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35728), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086334] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35730), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086348] = 4, + ACTIONS(35502), 1, + anon_sym_RBRACE, + ACTIONS(35732), 1, + anon_sym_COMMA, + STATE(23570), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086362] = 3, + STATE(24909), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1086374] = 4, + ACTIONS(18704), 1, + anon_sym_with, + ACTIONS(32884), 1, + anon_sym_and, + STATE(21604), 1, + aux_sym__typbind_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086388] = 3, + STATE(24869), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1086400] = 4, + ACTIONS(23310), 1, + anon_sym_RBRACE, + ACTIONS(35734), 1, + anon_sym_COMMA, + STATE(23562), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086414] = 4, + ACTIONS(23896), 1, + anon_sym_RBRACE, + ACTIONS(35736), 1, + anon_sym_COMMA, + STATE(23594), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086428] = 4, + ACTIONS(21267), 1, + anon_sym_RBRACE, + ACTIONS(35738), 1, + anon_sym_COMMA, + STATE(23619), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086442] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4231), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086456] = 4, + ACTIONS(21259), 1, + anon_sym_RBRACE, + ACTIONS(35740), 1, + anon_sym_COMMA, + STATE(23605), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086470] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35742), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086484] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21267), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086498] = 4, + ACTIONS(35742), 1, + anon_sym_RBRACE, + ACTIONS(35744), 1, + anon_sym_COMMA, + STATE(23565), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086512] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4845), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086526] = 3, + STATE(19245), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1086538] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21257), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086552] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23320), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086566] = 4, + ACTIONS(3783), 1, + anon_sym_RBRACK, + ACTIONS(35746), 1, + anon_sym_COMMA, + STATE(23622), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086580] = 4, + ACTIONS(4845), 1, + anon_sym_RBRACK, + ACTIONS(35748), 1, + anon_sym_COMMA, + STATE(23610), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086594] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35750), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086608] = 4, + ACTIONS(23320), 1, + anon_sym_RBRACE, + ACTIONS(35752), 1, + anon_sym_COMMA, + STATE(23580), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086622] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21649), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086636] = 4, + ACTIONS(21649), 1, + anon_sym_RBRACE, + ACTIONS(35754), 1, + anon_sym_COMMA, + STATE(23596), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086650] = 4, + ACTIONS(23450), 1, + anon_sym_RBRACE, + ACTIONS(35756), 1, + anon_sym_COMMA, + STATE(23581), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086664] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35758), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086678] = 4, + ACTIONS(23094), 1, + anon_sym_RBRACE, + ACTIONS(35760), 1, + anon_sym_COMMA, + STATE(23745), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086692] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5157), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086706] = 3, + STATE(15051), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1086718] = 4, + ACTIONS(5157), 1, + anon_sym_RBRACK, + ACTIONS(35762), 1, + anon_sym_COMMA, + STATE(23598), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086732] = 4, + ACTIONS(3907), 1, + anon_sym_RBRACK, + ACTIONS(35764), 1, + anon_sym_COMMA, + STATE(24393), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086746] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086760] = 4, + ACTIONS(21557), 1, + anon_sym_RBRACE, + ACTIONS(35766), 1, + anon_sym_COMMA, + STATE(21414), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086774] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35768), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086788] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35770), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086802] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23450), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086816] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23470), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086830] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20956), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086844] = 4, + ACTIONS(21257), 1, + anon_sym_RBRACE, + ACTIONS(35772), 1, + anon_sym_COMMA, + STATE(23927), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086858] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14707), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086872] = 4, + ACTIONS(23470), 1, + anon_sym_RBRACE, + ACTIONS(35774), 1, + anon_sym_COMMA, + STATE(23587), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086886] = 4, + ACTIONS(4231), 1, + anon_sym_RBRACK, + ACTIONS(35776), 1, + anon_sym_COMMA, + STATE(23756), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086900] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35778), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086914] = 4, + ACTIONS(20956), 1, + anon_sym_RBRACE, + ACTIONS(35780), 1, + anon_sym_COMMA, + STATE(23753), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086928] = 4, + ACTIONS(35778), 1, + anon_sym_RBRACE, + ACTIONS(35782), 1, + anon_sym_COMMA, + STATE(23590), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086942] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35784), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086956] = 4, + ACTIONS(21004), 1, + anon_sym_RBRACE, + ACTIONS(35786), 1, + anon_sym_COMMA, + STATE(23977), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086970] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4015), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086984] = 4, + ACTIONS(35788), 1, + anon_sym_EQ, + ACTIONS(35790), 1, + anon_sym_COLON, + ACTIONS(35792), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1086998] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23964), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087012] = 4, + ACTIONS(23964), 1, + anon_sym_RBRACE, + ACTIONS(35794), 1, + anon_sym_COMMA, + STATE(23634), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087026] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35796), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087040] = 4, + ACTIONS(35796), 1, + anon_sym_RBRACE, + ACTIONS(35798), 1, + anon_sym_COMMA, + STATE(23637), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087054] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35800), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087068] = 4, + ACTIONS(22418), 1, + anon_sym_RBRACE, + ACTIONS(35802), 1, + anon_sym_COMMA, + STATE(21529), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087082] = 4, + ACTIONS(21261), 1, + anon_sym_RBRACE, + ACTIONS(35804), 1, + anon_sym_COMMA, + STATE(23646), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087096] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35806), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087110] = 4, + ACTIONS(35800), 1, + anon_sym_RBRACK, + ACTIONS(35808), 1, + anon_sym_COMMA, + STATE(23638), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087124] = 4, + ACTIONS(14717), 1, + anon_sym_RBRACK, + ACTIONS(35810), 1, + anon_sym_COMMA, + STATE(21464), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087138] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35812), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087152] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21261), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087166] = 4, + ACTIONS(4847), 1, + anon_sym_RBRACK, + ACTIONS(35814), 1, + anon_sym_COMMA, + STATE(23649), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087180] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35816), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087194] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(35818), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087208] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35820), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087222] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4847), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087236] = 4, + ACTIONS(23662), 1, + anon_sym_RBRACE, + ACTIONS(35822), 1, + anon_sym_COMMA, + STATE(23617), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087250] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21004), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087264] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(35824), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087278] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35826), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087292] = 4, + ACTIONS(23062), 1, + anon_sym_RBRACE, + ACTIONS(35828), 1, + anon_sym_COMMA, + STATE(23642), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087306] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20942), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087320] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23778), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087334] = 4, + ACTIONS(14707), 1, + anon_sym_RBRACK, + ACTIONS(35830), 1, + anon_sym_COMMA, + STATE(23952), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087348] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21291), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087362] = 4, + ACTIONS(21291), 1, + anon_sym_RBRACE, + ACTIONS(35832), 1, + anon_sym_COMMA, + STATE(23671), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087376] = 4, + ACTIONS(20918), 1, + anon_sym_RBRACE, + ACTIONS(35834), 1, + anon_sym_COMMA, + STATE(21456), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087390] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3785), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087404] = 4, + ACTIONS(3785), 1, + anon_sym_RBRACK, + ACTIONS(35836), 1, + anon_sym_COMMA, + STATE(23673), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087418] = 4, + ACTIONS(23778), 1, + anon_sym_RBRACE, + ACTIONS(35838), 1, + anon_sym_COMMA, + STATE(23632), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087432] = 4, + ACTIONS(23305), 1, + anon_sym_RBRACE, + ACTIONS(35840), 1, + anon_sym_COMMA, + STATE(23640), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087446] = 4, + ACTIONS(23798), 1, + anon_sym_RBRACE, + ACTIONS(35842), 1, + anon_sym_COMMA, + STATE(23633), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087460] = 4, + ACTIONS(4685), 1, + anon_sym_RBRACK, + ACTIONS(35844), 1, + anon_sym_COMMA, + STATE(24061), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087474] = 4, + ACTIONS(20861), 1, + anon_sym_RBRACE, + ACTIONS(35846), 1, + anon_sym_COMMA, + STATE(23721), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087488] = 4, + ACTIONS(20942), 1, + anon_sym_RBRACE, + ACTIONS(35848), 1, + anon_sym_COMMA, + STATE(24070), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087502] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35850), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087516] = 4, + ACTIONS(4015), 1, + anon_sym_RBRACK, + ACTIONS(35852), 1, + anon_sym_COMMA, + STATE(23773), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087530] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23798), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087544] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23828), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087558] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23305), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087572] = 4, + ACTIONS(23000), 1, + anon_sym_RBRACE, + ACTIONS(35854), 1, + anon_sym_COMMA, + STATE(23661), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087586] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23870), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087600] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35856), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087614] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35858), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087628] = 4, + ACTIONS(35860), 1, + anon_sym_EQ, + ACTIONS(35862), 1, + anon_sym_COLON, + ACTIONS(35864), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087642] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23548), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087656] = 4, + ACTIONS(23828), 1, + anon_sym_RBRACE, + ACTIONS(35866), 1, + anon_sym_COMMA, + STATE(23648), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087670] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23080), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087684] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35868), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087698] = 4, + ACTIONS(23080), 1, + anon_sym_RBRACE, + ACTIONS(35870), 1, + anon_sym_COMMA, + STATE(23709), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087712] = 4, + ACTIONS(23870), 1, + anon_sym_RBRACE, + ACTIONS(35872), 1, + anon_sym_COMMA, + STATE(23656), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087726] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21265), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087740] = 4, + ACTIONS(21265), 1, + anon_sym_RBRACE, + ACTIONS(35874), 1, + anon_sym_COMMA, + STATE(23664), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087754] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35876), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087768] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4849), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087782] = 4, + ACTIONS(4849), 1, + anon_sym_RBRACK, + ACTIONS(35878), 1, + anon_sym_COMMA, + STATE(23666), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087796] = 4, + ACTIONS(35876), 1, + anon_sym_RBRACE, + ACTIONS(35880), 1, + anon_sym_COMMA, + STATE(23652), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087810] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35882), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087824] = 4, + ACTIONS(32858), 1, + anon_sym_COMMA, + ACTIONS(35884), 1, + anon_sym_RPAREN, + STATE(22849), 1, + aux_sym_tyvarseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087838] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20861), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087852] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(35886), 3, + anon_sym_End, + anon_sym_Termination, + anon_sym_SLASH_BSLASH, + [1087862] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35888), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087876] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4685), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087890] = 4, + ACTIONS(4601), 1, + anon_sym_RBRACK, + ACTIONS(35890), 1, + anon_sym_COMMA, + STATE(23731), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087904] = 4, + ACTIONS(35888), 1, + anon_sym_RBRACE, + ACTIONS(35892), 1, + anon_sym_COMMA, + STATE(23677), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087918] = 4, + ACTIONS(21406), 1, + anon_sym_RBRACE, + ACTIONS(35894), 1, + anon_sym_COMMA, + STATE(24622), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087932] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23006), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087946] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21444), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087960] = 4, + ACTIONS(23006), 1, + anon_sym_RBRACE, + ACTIONS(35896), 1, + anon_sym_COMMA, + STATE(23683), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087974] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35898), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1087988] = 4, + ACTIONS(35898), 1, + anon_sym_RBRACE, + ACTIONS(35900), 1, + anon_sym_COMMA, + STATE(23688), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088002] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35902), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088016] = 4, + ACTIONS(35902), 1, + anon_sym_RBRACK, + ACTIONS(35904), 1, + anon_sym_COMMA, + STATE(23689), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088030] = 3, + STATE(13571), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26878), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1088042] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4601), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088056] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35906), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088070] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35908), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088084] = 4, + ACTIONS(35908), 1, + anon_sym_RBRACE, + ACTIONS(35910), 1, + anon_sym_COMMA, + STATE(23710), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088098] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35912), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088112] = 4, + ACTIONS(35912), 1, + anon_sym_RBRACK, + ACTIONS(35914), 1, + anon_sym_COMMA, + STATE(23713), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088126] = 4, + ACTIONS(23548), 1, + anon_sym_RBRACE, + ACTIONS(35916), 1, + anon_sym_COMMA, + STATE(23680), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088140] = 4, + ACTIONS(23008), 1, + anon_sym_RBRACE, + ACTIONS(35918), 1, + anon_sym_COMMA, + STATE(23692), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088154] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35920), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088168] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4653), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088182] = 3, + STATE(24865), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1088194] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35922), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088208] = 3, + STATE(24866), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1088220] = 4, + ACTIONS(23858), 1, + anon_sym_RBRACE, + ACTIONS(35924), 1, + anon_sym_COMMA, + STATE(23699), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088234] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23008), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088248] = 4, + ACTIONS(35922), 1, + anon_sym_RBRACE, + ACTIONS(35926), 1, + anon_sym_COMMA, + STATE(23686), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088262] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(35928), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088276] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35930), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088290] = 4, + ACTIONS(23096), 1, + anon_sym_RBRACE, + ACTIONS(35932), 1, + anon_sym_COMMA, + STATE(23715), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088304] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35934), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088318] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35936), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088332] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4635), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088346] = 4, + ACTIONS(20803), 1, + anon_sym_RBRACE, + ACTIONS(35938), 1, + anon_sym_COMMA, + STATE(23875), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088360] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23010), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088374] = 4, + ACTIONS(23010), 1, + anon_sym_RBRACE, + ACTIONS(35940), 1, + anon_sym_COMMA, + STATE(23696), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088388] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23094), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088402] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20751), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088416] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35942), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088430] = 4, + ACTIONS(35942), 1, + anon_sym_RBRACE, + ACTIONS(35944), 1, + anon_sym_COMMA, + STATE(23698), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088444] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35946), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088458] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23834), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088472] = 4, + ACTIONS(23432), 1, + anon_sym_RBRACE, + ACTIONS(35948), 1, + anon_sym_COMMA, + STATE(21371), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088486] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(35950), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088500] = 4, + ACTIONS(23834), 1, + anon_sym_RBRACE, + ACTIONS(35952), 1, + anon_sym_COMMA, + STATE(23722), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088514] = 4, + ACTIONS(23472), 1, + anon_sym_RBRACE, + ACTIONS(35954), 1, + anon_sym_COMMA, + STATE(24062), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088528] = 4, + ACTIONS(22402), 1, + anon_sym_RBRACE, + ACTIONS(35956), 1, + anon_sym_COMMA, + STATE(23725), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088542] = 4, + ACTIONS(22758), 1, + anon_sym_RBRACE, + ACTIONS(35958), 1, + anon_sym_COMMA, + STATE(24472), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088556] = 4, + ACTIONS(4051), 1, + anon_sym_RBRACK, + ACTIONS(35960), 1, + anon_sym_COMMA, + STATE(22244), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088570] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(35962), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088584] = 4, + ACTIONS(32962), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(34271), 1, + anon_sym_QED, + STATE(24460), 1, + aux_sym_THEN_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088598] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23096), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088612] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35964), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088626] = 4, + ACTIONS(22938), 1, + anon_sym_RBRACE, + ACTIONS(35966), 1, + anon_sym_COMMA, + STATE(23786), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088640] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35968), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088654] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35970), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088668] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35972), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088682] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23117), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088696] = 4, + ACTIONS(23117), 1, + anon_sym_RBRACE, + ACTIONS(35974), 1, + anon_sym_COMMA, + STATE(23719), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088710] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(35976), 3, + anon_sym_LPAREN, + anon_sym_DOT, + sym__hol_alphanumeric, + [1088720] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35978), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088734] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35980), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088748] = 4, + ACTIONS(35980), 1, + anon_sym_RBRACE, + ACTIONS(35982), 1, + anon_sym_COMMA, + STATE(23728), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088762] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20870), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088776] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22402), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088790] = 4, + ACTIONS(20870), 1, + anon_sym_RBRACE, + ACTIONS(35984), 1, + anon_sym_COMMA, + STATE(23790), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088804] = 4, + ACTIONS(35978), 1, + anon_sym_RBRACE, + ACTIONS(35986), 1, + anon_sym_COMMA, + STATE(24075), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088818] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23392), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088832] = 4, + ACTIONS(23392), 1, + anon_sym_RBRACE, + ACTIONS(35988), 1, + anon_sym_COMMA, + STATE(23736), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088846] = 4, + ACTIONS(20487), 1, + anon_sym_RBRACE, + ACTIONS(35990), 1, + anon_sym_COMMA, + STATE(23762), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088860] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(35992), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088874] = 4, + ACTIONS(4653), 1, + anon_sym_RBRACK, + ACTIONS(35994), 1, + anon_sym_COMMA, + STATE(24177), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088888] = 4, + ACTIONS(4429), 1, + anon_sym_RBRACK, + ACTIONS(35996), 1, + anon_sym_COMMA, + STATE(23765), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088902] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4603), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088916] = 4, + ACTIONS(20962), 1, + anon_sym_RBRACE, + ACTIONS(35998), 1, + anon_sym_COMMA, + STATE(23891), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088930] = 4, + ACTIONS(4603), 1, + anon_sym_RBRACK, + ACTIONS(36000), 1, + anon_sym_COMMA, + STATE(23822), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088944] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(36002), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088958] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36004), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088972] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36006), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1088986] = 3, + STATE(15034), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1088998] = 4, + ACTIONS(21275), 1, + anon_sym_RBRACE, + ACTIONS(36008), 1, + anon_sym_COMMA, + STATE(23771), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089012] = 4, + ACTIONS(36006), 1, + anon_sym_RBRACE, + ACTIONS(36010), 1, + anon_sym_COMMA, + STATE(23748), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089026] = 4, + ACTIONS(4861), 1, + anon_sym_RBRACK, + ACTIONS(36012), 1, + anon_sym_COMMA, + STATE(23776), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089040] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36014), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089054] = 3, + STATE(25060), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1089066] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(36016), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089080] = 3, + STATE(24856), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1089092] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23103), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089106] = 4, + ACTIONS(20992), 1, + anon_sym_RBRACE, + ACTIONS(36018), 1, + anon_sym_COMMA, + STATE(24633), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089120] = 4, + ACTIONS(23103), 1, + anon_sym_RBRACE, + ACTIONS(36020), 1, + anon_sym_COMMA, + STATE(23760), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089134] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36022), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089148] = 4, + ACTIONS(35331), 1, + anon_sym_RBRACK, + ACTIONS(36024), 1, + anon_sym_COMMA, + STATE(23471), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089162] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23488), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089176] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20803), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089190] = 4, + ACTIONS(4233), 1, + anon_sym_RBRACK, + ACTIONS(36026), 1, + anon_sym_COMMA, + STATE(23889), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089204] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20962), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089218] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36028), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089232] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3947), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089246] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4233), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089260] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36030), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089274] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21406), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089288] = 4, + ACTIONS(4017), 1, + anon_sym_RBRACK, + ACTIONS(36032), 1, + anon_sym_COMMA, + STATE(23926), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089302] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36034), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089316] = 4, + ACTIONS(23376), 1, + anon_sym_RBRACE, + ACTIONS(36036), 1, + anon_sym_COMMA, + STATE(23772), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089330] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20499), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089344] = 4, + ACTIONS(32858), 1, + anon_sym_COMMA, + ACTIONS(36038), 1, + anon_sym_RPAREN, + STATE(21591), 1, + aux_sym_tyvarseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089358] = 4, + ACTIONS(20499), 1, + anon_sym_RBRACE, + ACTIONS(36040), 1, + anon_sym_COMMA, + STATE(23805), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089372] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4431), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089386] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(36042), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089400] = 4, + ACTIONS(23488), 1, + anon_sym_RBRACE, + ACTIONS(36044), 1, + anon_sym_COMMA, + STATE(23978), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089414] = 4, + ACTIONS(4431), 1, + anon_sym_RBRACK, + ACTIONS(36046), 1, + anon_sym_COMMA, + STATE(23807), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089428] = 4, + ACTIONS(3941), 1, + anon_sym_RBRACK, + ACTIONS(36048), 1, + anon_sym_COMMA, + STATE(23083), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089442] = 4, + ACTIONS(21563), 1, + anon_sym_RBRACE, + ACTIONS(36050), 1, + anon_sym_COMMA, + STATE(23904), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089456] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21279), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089470] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23380), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089484] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4017), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089498] = 4, + ACTIONS(21279), 1, + anon_sym_RBRACE, + ACTIONS(36052), 1, + anon_sym_COMMA, + STATE(23802), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089512] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20667), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089526] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4863), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089540] = 3, + STATE(24949), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1089552] = 4, + ACTIONS(23046), 1, + anon_sym_RBRACE, + ACTIONS(36054), 1, + anon_sym_COMMA, + STATE(24114), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089566] = 4, + ACTIONS(23380), 1, + anon_sym_RBRACE, + ACTIONS(36056), 1, + anon_sym_COMMA, + STATE(23784), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089580] = 4, + ACTIONS(4863), 1, + anon_sym_RBRACK, + ACTIONS(36058), 1, + anon_sym_COMMA, + STATE(23814), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089594] = 4, + ACTIONS(23766), 1, + anon_sym_RBRACE, + ACTIONS(36060), 1, + anon_sym_COMMA, + STATE(23787), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089608] = 4, + ACTIONS(5023), 1, + anon_sym_RBRACK, + ACTIONS(36062), 1, + anon_sym_COMMA, + STATE(23943), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089622] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36064), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089636] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23766), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089650] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36066), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089664] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23542), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089678] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23844), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089692] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36068), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089706] = 4, + ACTIONS(23542), 1, + anon_sym_RBRACE, + ACTIONS(36070), 1, + anon_sym_COMMA, + STATE(23898), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089720] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36072), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089734] = 4, + ACTIONS(15499), 1, + anon_sym_RPAREN, + ACTIONS(36074), 1, + anon_sym_COLON, + ACTIONS(36076), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089748] = 4, + ACTIONS(23844), 1, + anon_sym_RBRACE, + ACTIONS(36078), 1, + anon_sym_COMMA, + STATE(23796), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089762] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36080), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089776] = 4, + ACTIONS(21281), 1, + anon_sym_RBRACE, + ACTIONS(36082), 1, + anon_sym_COMMA, + STATE(23839), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089790] = 4, + ACTIONS(36072), 1, + anon_sym_RBRACE, + ACTIONS(36084), 1, + anon_sym_COMMA, + STATE(23911), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089804] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36086), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089818] = 4, + ACTIONS(36086), 1, + anon_sym_RBRACE, + ACTIONS(36088), 1, + anon_sym_COMMA, + STATE(23801), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089832] = 3, + STATE(24968), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1089844] = 3, + STATE(24969), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1089856] = 4, + ACTIONS(20503), 1, + anon_sym_RBRACE, + ACTIONS(36090), 1, + anon_sym_COMMA, + STATE(23823), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089870] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36092), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089884] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21281), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089898] = 4, + ACTIONS(36080), 1, + anon_sym_RBRACE, + ACTIONS(36094), 1, + anon_sym_COMMA, + STATE(23982), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089912] = 4, + ACTIONS(20667), 1, + anon_sym_RBRACE, + ACTIONS(36096), 1, + anon_sym_COMMA, + STATE(24646), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089926] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20503), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089940] = 4, + ACTIONS(4433), 1, + anon_sym_RBRACK, + ACTIONS(36098), 1, + anon_sym_COMMA, + STATE(23827), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089954] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4433), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089968] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36100), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089982] = 4, + ACTIONS(4865), 1, + anon_sym_RBRACK, + ACTIONS(36102), 1, + anon_sym_COMMA, + STATE(23844), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1089996] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36104), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090010] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36106), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090024] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36108), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090038] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21283), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090052] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4865), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090066] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4195), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090080] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36110), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090094] = 4, + ACTIONS(21283), 1, + anon_sym_RBRACE, + ACTIONS(36112), 1, + anon_sym_COMMA, + STATE(24146), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090108] = 4, + ACTIONS(22884), 1, + anon_sym_RBRACE, + ACTIONS(36114), 1, + anon_sym_COMMA, + STATE(23832), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090122] = 4, + ACTIONS(22920), 1, + anon_sym_RBRACE, + ACTIONS(36116), 1, + anon_sym_COMMA, + STATE(23866), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090136] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22632), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090150] = 3, + STATE(10763), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1090162] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36118), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090176] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20511), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090190] = 4, + ACTIONS(20511), 1, + anon_sym_RBRACE, + ACTIONS(36120), 1, + anon_sym_COMMA, + STATE(23869), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090204] = 4, + ACTIONS(23282), 1, + anon_sym_RBRACE, + ACTIONS(36122), 1, + anon_sym_COMMA, + STATE(24010), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090218] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36124), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090232] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4435), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090246] = 4, + ACTIONS(36118), 1, + anon_sym_RBRACK, + ACTIONS(36126), 1, + anon_sym_COMMA, + STATE(23916), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090260] = 4, + ACTIONS(36034), 1, + anon_sym_RBRACE, + ACTIONS(36128), 1, + anon_sym_COMMA, + STATE(23834), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090274] = 4, + ACTIONS(4435), 1, + anon_sym_RBRACK, + ACTIONS(36130), 1, + anon_sym_COMMA, + STATE(23872), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090288] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36132), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090302] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22888), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090316] = 4, + ACTIONS(23058), 1, + anon_sym_RBRACE, + ACTIONS(36134), 1, + anon_sym_COMMA, + STATE(23862), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090330] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36136), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090344] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3597), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090358] = 4, + ACTIONS(3947), 1, + anon_sym_RBRACK, + ACTIONS(36138), 1, + anon_sym_COMMA, + STATE(22047), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090372] = 4, + ACTIONS(21349), 1, + anon_sym_RBRACE, + ACTIONS(36140), 1, + anon_sym_COMMA, + STATE(23882), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090386] = 4, + ACTIONS(3597), 1, + anon_sym_RBRACK, + ACTIONS(36142), 1, + anon_sym_COMMA, + STATE(24149), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090400] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21285), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090414] = 4, + ACTIONS(21285), 1, + anon_sym_RBRACE, + ACTIONS(36144), 1, + anon_sym_COMMA, + STATE(23873), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090428] = 4, + ACTIONS(22888), 1, + anon_sym_RBRACE, + ACTIONS(36146), 1, + anon_sym_COMMA, + STATE(23851), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090442] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36148), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090456] = 4, + ACTIONS(3797), 1, + anon_sym_RBRACK, + ACTIONS(36150), 1, + anon_sym_COMMA, + STATE(23885), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090470] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4867), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090484] = 4, + ACTIONS(4867), 1, + anon_sym_RBRACK, + ACTIONS(36152), 1, + anon_sym_COMMA, + STATE(23878), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090498] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36154), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090512] = 4, + ACTIONS(22966), 1, + anon_sym_RBRACE, + ACTIONS(36156), 1, + anon_sym_COMMA, + STATE(23852), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090526] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36158), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090540] = 4, + ACTIONS(20569), 1, + anon_sym_RBRACE, + ACTIONS(36160), 1, + anon_sym_COMMA, + STATE(24042), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090554] = 4, + ACTIONS(36158), 1, + anon_sym_RBRACK, + ACTIONS(36162), 1, + anon_sym_COMMA, + STATE(24012), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090568] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22966), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090582] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23044), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090596] = 4, + ACTIONS(23044), 1, + anon_sym_RBRACE, + ACTIONS(36164), 1, + anon_sym_COMMA, + STATE(23859), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090610] = 4, + ACTIONS(4195), 1, + anon_sym_RBRACK, + ACTIONS(36166), 1, + anon_sym_COMMA, + STATE(24665), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090624] = 4, + ACTIONS(23846), 1, + anon_sym_RBRACE, + ACTIONS(36168), 1, + anon_sym_COMMA, + STATE(23933), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090638] = 4, + ACTIONS(23262), 1, + anon_sym_RBRACE, + ACTIONS(36170), 1, + anon_sym_COMMA, + STATE(24037), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090652] = 3, + STATE(24990), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1090664] = 3, + STATE(24993), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1090676] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36172), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090690] = 4, + ACTIONS(4157), 1, + anon_sym_RBRACK, + ACTIONS(36174), 1, + anon_sym_COMMA, + STATE(24058), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090704] = 4, + ACTIONS(36172), 1, + anon_sym_RBRACE, + ACTIONS(36176), 1, + anon_sym_COMMA, + STATE(23863), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090718] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23072), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090732] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36178), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090746] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(36180), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090760] = 4, + ACTIONS(23518), 1, + anon_sym_RBRACE, + ACTIONS(36182), 1, + anon_sym_COMMA, + STATE(24306), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090774] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23028), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090788] = 4, + ACTIONS(4937), 1, + anon_sym_RBRACK, + ACTIONS(36184), 1, + anon_sym_COMMA, + STATE(21377), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090802] = 4, + ACTIONS(23028), 1, + anon_sym_RBRACE, + ACTIONS(36186), 1, + anon_sym_COMMA, + STATE(23906), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090816] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36188), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090830] = 4, + ACTIONS(23072), 1, + anon_sym_RBRACE, + ACTIONS(36190), 1, + anon_sym_COMMA, + STATE(23901), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090844] = 4, + ACTIONS(36188), 1, + anon_sym_RBRACE, + ACTIONS(36192), 1, + anon_sym_COMMA, + STATE(23908), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090858] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36194), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090872] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36196), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090886] = 4, + ACTIONS(36194), 1, + anon_sym_RBRACK, + ACTIONS(36198), 1, + anon_sym_COMMA, + STATE(23913), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090900] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20821), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090914] = 4, + ACTIONS(20821), 1, + anon_sym_RBRACE, + ACTIONS(36200), 1, + anon_sym_COMMA, + STATE(24015), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090928] = 4, + ACTIONS(36196), 1, + anon_sym_RBRACE, + ACTIONS(36202), 1, + anon_sym_COMMA, + STATE(23903), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090942] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36204), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090956] = 4, + ACTIONS(36204), 1, + anon_sym_RBRACK, + ACTIONS(36206), 1, + anon_sym_COMMA, + STATE(23905), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090970] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36208), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090984] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36210), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1090998] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21359), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091012] = 4, + ACTIONS(36100), 1, + anon_sym_RBRACK, + ACTIONS(36212), 1, + anon_sym_COMMA, + STATE(21687), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091026] = 4, + ACTIONS(21359), 1, + anon_sym_RBRACE, + ACTIONS(36214), 1, + anon_sym_COMMA, + STATE(23932), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091040] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3799), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091054] = 4, + ACTIONS(28891), 1, + sym__alphaAlphaNumeric_ident, + STATE(8599), 1, + sym_strid, + STATE(20277), 1, + aux_sym_longvid_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091068] = 4, + ACTIONS(23342), 1, + anon_sym_RBRACE, + ACTIONS(36216), 1, + anon_sym_COMMA, + STATE(23894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091082] = 4, + ACTIONS(3799), 1, + anon_sym_RBRACK, + ACTIONS(36218), 1, + anon_sym_COMMA, + STATE(23936), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091096] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4235), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091110] = 4, + ACTIONS(4235), 1, + anon_sym_RBRACK, + ACTIONS(36220), 1, + anon_sym_COMMA, + STATE(24028), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091124] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20968), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091138] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23432), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091152] = 3, + STATE(24862), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1091164] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23558), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091178] = 4, + ACTIONS(20639), 1, + anon_sym_RBRACE, + ACTIONS(36222), 1, + anon_sym_COMMA, + STATE(21416), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091192] = 4, + ACTIONS(23086), 1, + anon_sym_RBRACE, + ACTIONS(36224), 1, + anon_sym_COMMA, + STATE(23909), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091206] = 4, + ACTIONS(23558), 1, + anon_sym_RBRACE, + ACTIONS(36226), 1, + anon_sym_COMMA, + STATE(23923), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091220] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23846), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091234] = 4, + ACTIONS(23119), 1, + anon_sym_RBRACE, + ACTIONS(36228), 1, + anon_sym_COMMA, + STATE(23921), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091248] = 4, + ACTIONS(23712), 1, + anon_sym_RBRACE, + ACTIONS(36230), 1, + anon_sym_COMMA, + STATE(23925), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091262] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23086), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091276] = 4, + ACTIONS(20968), 1, + anon_sym_RBRACE, + ACTIONS(36232), 1, + anon_sym_COMMA, + STATE(24066), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091290] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36234), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091304] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21571), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091318] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36236), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091332] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23119), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091346] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36238), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091360] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36240), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091374] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23088), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091388] = 4, + ACTIONS(23088), 1, + anon_sym_RBRACE, + ACTIONS(36242), 1, + anon_sym_COMMA, + STATE(23912), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091402] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36244), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091416] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36246), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091430] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36248), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091444] = 4, + ACTIONS(36246), 1, + anon_sym_RBRACE, + ACTIONS(36250), 1, + anon_sym_COMMA, + STATE(23915), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091458] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36252), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091472] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36254), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091486] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4937), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091500] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36256), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091514] = 4, + ACTIONS(21293), 1, + anon_sym_RBRACE, + ACTIONS(36258), 1, + anon_sym_COMMA, + STATE(24202), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091528] = 3, + STATE(25004), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1091540] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23256), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091554] = 4, + ACTIONS(20745), 1, + anon_sym_RBRACE, + ACTIONS(36260), 1, + anon_sym_COMMA, + STATE(24093), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091568] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23712), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091582] = 4, + ACTIONS(23256), 1, + anon_sym_RBRACE, + ACTIONS(36262), 1, + anon_sym_COMMA, + STATE(23930), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091596] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23796), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091610] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4019), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091624] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21293), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091638] = 4, + ACTIONS(23796), 1, + anon_sym_RBRACE, + ACTIONS(36264), 1, + anon_sym_COMMA, + STATE(23938), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091652] = 4, + ACTIONS(21367), 1, + anon_sym_RBRACE, + ACTIONS(36266), 1, + anon_sym_COMMA, + STATE(23967), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091666] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36268), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091680] = 4, + ACTIONS(21571), 1, + anon_sym_RBRACE, + ACTIONS(36270), 1, + anon_sym_COMMA, + STATE(24086), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091694] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21367), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091708] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23946), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091722] = 4, + ACTIONS(3801), 1, + anon_sym_RBRACK, + ACTIONS(36272), 1, + anon_sym_COMMA, + STATE(23970), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091736] = 4, + ACTIONS(36268), 1, + anon_sym_RBRACE, + ACTIONS(36274), 1, + anon_sym_COMMA, + STATE(23942), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091750] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3801), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091764] = 4, + ACTIONS(23946), 1, + anon_sym_RBRACE, + ACTIONS(36276), 1, + anon_sym_COMMA, + STATE(23939), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091778] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36278), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091792] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36280), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091806] = 4, + ACTIONS(36278), 1, + anon_sym_RBRACE, + ACTIONS(36282), 1, + anon_sym_COMMA, + STATE(23941), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091820] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36284), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091834] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36286), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091848] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5025), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091862] = 4, + ACTIONS(36280), 1, + anon_sym_RBRACE, + ACTIONS(36288), 1, + anon_sym_COMMA, + STATE(23946), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091876] = 4, + ACTIONS(14709), 1, + anon_sym_RBRACK, + ACTIONS(36290), 1, + anon_sym_COMMA, + STATE(24223), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091890] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36292), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091904] = 3, + STATE(24872), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1091916] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20815), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091930] = 4, + ACTIONS(36014), 1, + anon_sym_RBRACK, + ACTIONS(36294), 1, + anon_sym_COMMA, + STATE(24197), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091944] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(36296), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091958] = 4, + ACTIONS(4019), 1, + anon_sym_RBRACK, + ACTIONS(36298), 1, + anon_sym_COMMA, + STATE(24088), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091972] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14709), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1091986] = 4, + ACTIONS(4525), 1, + anon_sym_RBRACK, + ACTIONS(36300), 1, + anon_sym_COMMA, + STATE(24144), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092000] = 4, + ACTIONS(20657), 1, + anon_sym_RBRACE, + ACTIONS(36302), 1, + anon_sym_COMMA, + STATE(22854), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092014] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36304), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092028] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(36306), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092042] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36308), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092056] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36310), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092070] = 4, + ACTIONS(23526), 1, + anon_sym_RBRACE, + ACTIONS(36312), 1, + anon_sym_COMMA, + STATE(24038), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092084] = 4, + ACTIONS(5025), 1, + anon_sym_RBRACK, + ACTIONS(36314), 1, + anon_sym_COMMA, + STATE(24098), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092098] = 4, + ACTIONS(23264), 1, + anon_sym_RBRACE, + ACTIONS(36316), 1, + anon_sym_COMMA, + STATE(23995), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092112] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32242), 3, + anon_sym_End, + anon_sym_Termination, + anon_sym_u2227, + [1092122] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20521), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092136] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36318), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092150] = 4, + ACTIONS(23876), 1, + anon_sym_RBRACE, + ACTIONS(36320), 1, + anon_sym_COMMA, + STATE(23980), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092164] = 3, + STATE(14987), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1092176] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21371), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092190] = 4, + ACTIONS(21371), 1, + anon_sym_RBRACE, + ACTIONS(36322), 1, + anon_sym_COMMA, + STATE(24006), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092204] = 4, + ACTIONS(21301), 1, + anon_sym_RBRACE, + ACTIONS(36324), 1, + anon_sym_COMMA, + STATE(24003), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092218] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3803), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092232] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36326), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092246] = 4, + ACTIONS(3803), 1, + anon_sym_RBRACK, + ACTIONS(36328), 1, + anon_sym_COMMA, + STATE(24008), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092260] = 4, + ACTIONS(4879), 1, + anon_sym_RBRACK, + ACTIONS(36330), 1, + anon_sym_COMMA, + STATE(24011), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092274] = 4, + ACTIONS(20673), 1, + anon_sym_RBRACE, + ACTIONS(36332), 1, + anon_sym_COMMA, + STATE(21644), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092288] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36334), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092302] = 4, + ACTIONS(23384), 1, + anon_sym_RBRACE, + ACTIONS(36336), 1, + anon_sym_COMMA, + STATE(24372), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092316] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21008), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092330] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23526), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092344] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36338), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092358] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23878), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092372] = 4, + ACTIONS(22632), 1, + anon_sym_RBRACE, + ACTIONS(36340), 1, + anon_sym_COMMA, + STATE(23245), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092386] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36342), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092400] = 4, + ACTIONS(23878), 1, + anon_sym_RBRACE, + ACTIONS(36344), 1, + anon_sym_COMMA, + STATE(23991), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092414] = 4, + ACTIONS(23898), 1, + anon_sym_RBRACE, + ACTIONS(36346), 1, + anon_sym_COMMA, + STATE(23993), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092428] = 4, + ACTIONS(3923), 1, + anon_sym_RBRACK, + ACTIONS(36348), 1, + anon_sym_COMMA, + STATE(21568), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092442] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23210), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092456] = 4, + ACTIONS(36350), 1, + anon_sym_COLON, + ACTIONS(36352), 1, + anon_sym_end, + ACTIONS(36354), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092470] = 4, + ACTIONS(21008), 1, + anon_sym_RBRACE, + ACTIONS(36356), 1, + anon_sym_COMMA, + STATE(24348), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092484] = 4, + ACTIONS(20944), 1, + anon_sym_RBRACE, + ACTIONS(36358), 1, + anon_sym_COMMA, + STATE(21385), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092498] = 4, + ACTIONS(23490), 1, + anon_sym_RBRACE, + ACTIONS(36360), 1, + anon_sym_COMMA, + STATE(24298), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092512] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23898), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092526] = 4, + ACTIONS(3911), 1, + anon_sym_RBRACK, + ACTIONS(36362), 1, + anon_sym_COMMA, + STATE(23808), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092540] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23900), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092554] = 4, + ACTIONS(23900), 1, + anon_sym_RBRACE, + ACTIONS(36364), 1, + anon_sym_COMMA, + STATE(23997), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092568] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23284), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092582] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36366), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092596] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36368), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092610] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36370), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092624] = 4, + ACTIONS(23284), 1, + anon_sym_RBRACE, + ACTIONS(36372), 1, + anon_sym_COMMA, + STATE(24019), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092638] = 4, + ACTIONS(36368), 1, + anon_sym_RBRACE, + ACTIONS(36374), 1, + anon_sym_COMMA, + STATE(24001), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092652] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36376), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092666] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(36378), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092680] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21303), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092694] = 4, + ACTIONS(21539), 1, + anon_sym_RBRACE, + ACTIONS(36380), 1, + anon_sym_COMMA, + STATE(21621), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092708] = 4, + ACTIONS(21303), 1, + anon_sym_RBRACE, + ACTIONS(36382), 1, + anon_sym_COMMA, + STATE(24050), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092722] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36384), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092736] = 4, + ACTIONS(36384), 1, + anon_sym_RBRACE, + ACTIONS(36386), 1, + anon_sym_COMMA, + STATE(24020), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092750] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36388), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092764] = 4, + ACTIONS(36388), 1, + anon_sym_RBRACK, + ACTIONS(36390), 1, + anon_sym_COMMA, + STATE(24021), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092778] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23502), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092792] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4881), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092806] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36392), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092820] = 4, + ACTIONS(23502), 1, + anon_sym_RBRACE, + ACTIONS(36394), 1, + anon_sym_COMMA, + STATE(24095), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092834] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(36396), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092848] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36398), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092862] = 4, + ACTIONS(23288), 1, + anon_sym_RBRACE, + ACTIONS(36400), 1, + anon_sym_COMMA, + STATE(24025), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092876] = 4, + ACTIONS(20549), 1, + anon_sym_RBRACE, + ACTIONS(36402), 1, + anon_sym_COMMA, + STATE(24069), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092890] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36404), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092904] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23288), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092918] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36406), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092932] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36408), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092946] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36410), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092960] = 4, + ACTIONS(4881), 1, + anon_sym_RBRACK, + ACTIONS(36412), 1, + anon_sym_COMMA, + STATE(24056), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092974] = 4, + ACTIONS(22446), 1, + anon_sym_RBRACE, + ACTIONS(36414), 1, + anon_sym_COMMA, + STATE(24034), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1092988] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23290), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093002] = 4, + ACTIONS(36398), 1, + anon_sym_RBRACE, + ACTIONS(36416), 1, + anon_sym_COMMA, + STATE(24107), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093016] = 4, + ACTIONS(23290), 1, + anon_sym_RBRACE, + ACTIONS(36418), 1, + anon_sym_COMMA, + STATE(24032), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093030] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36420), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093044] = 4, + ACTIONS(23316), 1, + anon_sym_RBRACE, + ACTIONS(36422), 1, + anon_sym_COMMA, + STATE(22774), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093058] = 4, + ACTIONS(4441), 1, + anon_sym_RBRACK, + ACTIONS(36424), 1, + anon_sym_COMMA, + STATE(24074), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093072] = 4, + ACTIONS(29355), 1, + sym__alphaAlphaNumeric_ident, + STATE(12989), 1, + sym_sigbind, + STATE(24932), 1, + sym_sigid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093086] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36426), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093100] = 4, + ACTIONS(36426), 1, + anon_sym_RBRACE, + ACTIONS(36428), 1, + anon_sym_COMMA, + STATE(24035), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093114] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22468), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093128] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36430), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093142] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36432), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093156] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23360), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093170] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23532), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093184] = 4, + ACTIONS(20521), 1, + anon_sym_RBRACE, + ACTIONS(36434), 1, + anon_sym_COMMA, + STATE(23948), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093198] = 4, + ACTIONS(22468), 1, + anon_sym_RBRACE, + ACTIONS(36436), 1, + anon_sym_COMMA, + STATE(24047), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093212] = 4, + ACTIONS(36438), 1, + anon_sym_EQ, + ACTIONS(36440), 1, + anon_sym_COLON, + ACTIONS(36442), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093226] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20575), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093240] = 4, + ACTIONS(22484), 1, + anon_sym_RBRACE, + ACTIONS(36444), 1, + anon_sym_COMMA, + STATE(24048), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093254] = 4, + ACTIONS(36420), 1, + anon_sym_RBRACK, + ACTIONS(36446), 1, + anon_sym_COMMA, + STATE(24121), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093268] = 4, + ACTIONS(21305), 1, + anon_sym_RBRACE, + ACTIONS(36448), 1, + anon_sym_COMMA, + STATE(24078), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093282] = 4, + ACTIONS(23532), 1, + anon_sym_RBRACE, + ACTIONS(36450), 1, + anon_sym_COMMA, + STATE(24090), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093296] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22484), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093310] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22486), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093324] = 4, + ACTIONS(22486), 1, + anon_sym_RBRACE, + ACTIONS(36452), 1, + anon_sym_COMMA, + STATE(24055), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093338] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21305), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093352] = 4, + ACTIONS(36454), 1, + anon_sym_COLON, + ACTIONS(36456), 1, + anon_sym_LBRACK, + STATE(24952), 1, + sym_hol_attributes, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093366] = 4, + ACTIONS(23360), 1, + anon_sym_RBRACE, + ACTIONS(36458), 1, + anon_sym_COMMA, + STATE(24178), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093380] = 4, + ACTIONS(4883), 1, + anon_sym_RBRACK, + ACTIONS(36460), 1, + anon_sym_COMMA, + STATE(24082), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093394] = 4, + ACTIONS(20575), 1, + anon_sym_RBRACE, + ACTIONS(36462), 1, + anon_sym_COMMA, + STATE(24172), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093408] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36464), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093422] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4883), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093436] = 4, + ACTIONS(36464), 1, + anon_sym_RBRACE, + ACTIONS(36466), 1, + anon_sym_COMMA, + STATE(24059), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093450] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4159), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093464] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36468), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093478] = 4, + ACTIONS(20892), 1, + anon_sym_RBRACE, + ACTIONS(36470), 1, + anon_sym_COMMA, + STATE(24213), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093492] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4687), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093506] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23490), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093520] = 4, + ACTIONS(4615), 1, + anon_sym_RBRACK, + ACTIONS(36472), 1, + anon_sym_COMMA, + STATE(24252), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093534] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36474), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093548] = 4, + ACTIONS(21573), 1, + anon_sym_RBRACE, + ACTIONS(36476), 1, + anon_sym_COMMA, + STATE(24248), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093562] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36478), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093576] = 4, + ACTIONS(2663), 1, + anon_sym_RBRACK, + ACTIONS(36480), 1, + anon_sym_COMMA, + STATE(22575), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093590] = 4, + ACTIONS(23145), 1, + anon_sym_RBRACE, + ACTIONS(36482), 1, + anon_sym_COMMA, + STATE(24096), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093604] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20551), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093618] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20944), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093632] = 4, + ACTIONS(23550), 1, + anon_sym_RBRACE, + ACTIONS(36484), 1, + anon_sym_COMMA, + STATE(24129), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093646] = 4, + ACTIONS(20551), 1, + anon_sym_RBRACE, + ACTIONS(36486), 1, + anon_sym_COMMA, + STATE(24113), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093660] = 4, + ACTIONS(4159), 1, + anon_sym_RBRACK, + ACTIONS(36488), 1, + anon_sym_COMMA, + STATE(24190), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093674] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4443), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093688] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36490), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093702] = 4, + ACTIONS(36478), 1, + anon_sym_RBRACE, + ACTIONS(36492), 1, + anon_sym_COMMA, + STATE(24180), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093716] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36494), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093730] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21313), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093744] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20639), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093758] = 4, + ACTIONS(21313), 1, + anon_sym_RBRACE, + ACTIONS(36496), 1, + anon_sym_COMMA, + STATE(24100), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093772] = 4, + ACTIONS(4443), 1, + anon_sym_RBRACK, + ACTIONS(36498), 1, + anon_sym_COMMA, + STATE(24126), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093786] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4885), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093800] = 4, + ACTIONS(4885), 1, + anon_sym_RBRACK, + ACTIONS(36500), 1, + anon_sym_COMMA, + STATE(24109), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093814] = 4, + ACTIONS(22590), 1, + anon_sym_RBRACE, + ACTIONS(36502), 1, + anon_sym_COMMA, + STATE(24089), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093828] = 4, + ACTIONS(4687), 1, + anon_sym_RBRACK, + ACTIONS(36504), 1, + anon_sym_COMMA, + STATE(24368), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093842] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21573), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093856] = 4, + ACTIONS(5027), 1, + anon_sym_RBRACK, + ACTIONS(36506), 1, + anon_sym_COMMA, + STATE(24264), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093870] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36508), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093884] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22592), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093898] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36510), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093912] = 4, + ACTIONS(22592), 1, + anon_sym_RBRACE, + ACTIONS(36512), 1, + anon_sym_COMMA, + STATE(24102), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093926] = 4, + ACTIONS(36508), 1, + anon_sym_RBRACK, + ACTIONS(36514), 1, + anon_sym_COMMA, + STATE(24186), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093940] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20749), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093954] = 4, + ACTIONS(22594), 1, + anon_sym_RBRACE, + ACTIONS(36516), 1, + anon_sym_COMMA, + STATE(24104), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093968] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23550), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093982] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23162), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1093996] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36518), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094010] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5027), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094024] = 4, + ACTIONS(23162), 1, + anon_sym_RBRACE, + ACTIONS(36520), 1, + anon_sym_COMMA, + STATE(24122), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094038] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36522), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094052] = 4, + ACTIONS(36522), 1, + anon_sym_RBRACE, + ACTIONS(36524), 1, + anon_sym_COMMA, + STATE(24124), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094066] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22594), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094080] = 4, + ACTIONS(21402), 1, + anon_sym_RBRACE, + ACTIONS(36526), 1, + anon_sym_COMMA, + STATE(24134), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094094] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22612), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094108] = 4, + ACTIONS(22612), 1, + anon_sym_RBRACE, + ACTIONS(36528), 1, + anon_sym_COMMA, + STATE(24110), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094122] = 4, + ACTIONS(20557), 1, + anon_sym_RBRACE, + ACTIONS(36530), 1, + anon_sym_COMMA, + STATE(24193), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094136] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36532), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094150] = 4, + ACTIONS(3815), 1, + anon_sym_RBRACK, + ACTIONS(36534), 1, + anon_sym_COMMA, + STATE(24138), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094164] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36536), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094178] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36538), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094192] = 4, + ACTIONS(36536), 1, + anon_sym_RBRACK, + ACTIONS(36540), 1, + anon_sym_COMMA, + STATE(24125), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094206] = 4, + ACTIONS(36538), 1, + anon_sym_RBRACE, + ACTIONS(36542), 1, + anon_sym_COMMA, + STATE(24115), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094220] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20557), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094234] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23160), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094248] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36544), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094262] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23864), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094276] = 4, + ACTIONS(23164), 1, + anon_sym_RBRACE, + ACTIONS(36546), 1, + anon_sym_COMMA, + STATE(24128), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094290] = 4, + ACTIONS(4445), 1, + anon_sym_RBRACK, + ACTIONS(36548), 1, + anon_sym_COMMA, + STATE(24200), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094304] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(36550), 3, + anon_sym_LPAREN, + anon_sym_DOT, + sym__hol_alphanumeric, + [1094314] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36552), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094328] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36554), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094342] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23164), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094356] = 4, + ACTIONS(23428), 1, + anon_sym_RBRACE, + ACTIONS(36556), 1, + anon_sym_COMMA, + STATE(24205), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094370] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36558), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094384] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36560), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094398] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4445), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094412] = 4, + ACTIONS(23160), 1, + anon_sym_RBRACE, + ACTIONS(36562), 1, + anon_sym_COMMA, + STATE(24497), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094426] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23166), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094440] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23636), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094454] = 4, + ACTIONS(23166), 1, + anon_sym_RBRACE, + ACTIONS(36564), 1, + anon_sym_COMMA, + STATE(24135), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094468] = 4, + ACTIONS(23636), 1, + anon_sym_RBRACE, + ACTIONS(36566), 1, + anon_sym_COMMA, + STATE(24145), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094482] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36568), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094496] = 4, + ACTIONS(36510), 1, + anon_sym_RBRACE, + ACTIONS(36570), 1, + anon_sym_COMMA, + STATE(24148), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094510] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21410), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094524] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36572), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094538] = 4, + ACTIONS(22726), 1, + anon_sym_RBRACE, + ACTIONS(36574), 1, + anon_sym_COMMA, + STATE(24150), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094552] = 4, + ACTIONS(21410), 1, + anon_sym_RBRACE, + ACTIONS(36576), 1, + anon_sym_COMMA, + STATE(24170), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094566] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3817), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094580] = 4, + ACTIONS(36572), 1, + anon_sym_RBRACE, + ACTIONS(36578), 1, + anon_sym_COMMA, + STATE(24141), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094594] = 4, + ACTIONS(4655), 1, + anon_sym_RBRACK, + ACTIONS(36580), 1, + anon_sym_COMMA, + STATE(21400), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094608] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36582), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094622] = 4, + ACTIONS(3817), 1, + anon_sym_RBRACK, + ACTIONS(36584), 1, + anon_sym_COMMA, + STATE(24176), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094636] = 4, + ACTIONS(20749), 1, + anon_sym_RBRACE, + ACTIONS(36586), 1, + anon_sym_COMMA, + STATE(23695), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094650] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4527), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094664] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36588), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094678] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36590), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094692] = 4, + ACTIONS(36590), 1, + anon_sym_RBRACE, + ACTIONS(36592), 1, + anon_sym_COMMA, + STATE(24498), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094706] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36594), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094720] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36596), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094734] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22750), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094748] = 4, + ACTIONS(36596), 1, + anon_sym_RBRACK, + ACTIONS(36598), 1, + anon_sym_COMMA, + STATE(24521), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094762] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36600), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094776] = 4, + ACTIONS(22750), 1, + anon_sym_RBRACE, + ACTIONS(36602), 1, + anon_sym_COMMA, + STATE(24158), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094790] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36604), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094804] = 4, + ACTIONS(22766), 1, + anon_sym_RBRACE, + ACTIONS(36606), 1, + anon_sym_COMMA, + STATE(24159), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094818] = 4, + ACTIONS(36588), 1, + anon_sym_RBRACE, + ACTIONS(36608), 1, + anon_sym_COMMA, + STATE(24162), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094832] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21353), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094846] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22766), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094860] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22784), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094874] = 4, + ACTIONS(20577), 1, + anon_sym_RBRACE, + ACTIONS(36610), 1, + anon_sym_COMMA, + STATE(24389), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094888] = 4, + ACTIONS(22784), 1, + anon_sym_RBRACE, + ACTIONS(36612), 1, + anon_sym_COMMA, + STATE(24164), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094902] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36614), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094916] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36616), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094930] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36618), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094944] = 4, + ACTIONS(36618), 1, + anon_sym_RBRACE, + ACTIONS(36620), 1, + anon_sym_COMMA, + STATE(24166), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094958] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36622), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094972] = 4, + ACTIONS(21416), 1, + anon_sym_RBRACE, + ACTIONS(36624), 1, + anon_sym_COMMA, + STATE(24203), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1094986] = 4, + ACTIONS(23864), 1, + anon_sym_RBRACE, + ACTIONS(36626), 1, + anon_sym_COMMA, + STATE(21448), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095000] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36628), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095014] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21416), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095028] = 4, + ACTIONS(3819), 1, + anon_sym_RBRACK, + ACTIONS(36630), 1, + anon_sym_COMMA, + STATE(24206), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095042] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20577), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095056] = 4, + ACTIONS(23270), 1, + anon_sym_RBRACE, + ACTIONS(36632), 1, + anon_sym_COMMA, + STATE(24249), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095070] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36634), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095084] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(2663), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095098] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3819), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095112] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4655), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095126] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23428), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095140] = 4, + ACTIONS(36628), 1, + anon_sym_RBRACE, + ACTIONS(36636), 1, + anon_sym_COMMA, + STATE(21512), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095154] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36638), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095168] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36640), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095182] = 4, + ACTIONS(4161), 1, + anon_sym_RBRACK, + ACTIONS(36642), 1, + anon_sym_COMMA, + STATE(24425), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095196] = 4, + ACTIONS(4179), 1, + anon_sym_RBRACK, + ACTIONS(36644), 1, + anon_sym_COMMA, + STATE(21499), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095210] = 4, + ACTIONS(4527), 1, + anon_sym_RBRACK, + ACTIONS(36646), 1, + anon_sym_COMMA, + STATE(22598), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095224] = 4, + ACTIONS(22836), 1, + anon_sym_RBRACE, + ACTIONS(36648), 1, + anon_sym_COMMA, + STATE(24210), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095238] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36650), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095252] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(36652), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095266] = 4, + ACTIONS(21333), 1, + anon_sym_RBRACE, + ACTIONS(36654), 1, + anon_sym_COMMA, + STATE(24261), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095280] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36656), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095294] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4161), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095308] = 4, + ACTIONS(4897), 1, + anon_sym_RBRACK, + ACTIONS(36658), 1, + anon_sym_COMMA, + STATE(24273), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095322] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(36660), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095336] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20567), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095350] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36662), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095364] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36664), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095378] = 4, + ACTIONS(23394), 1, + anon_sym_RBRACE, + ACTIONS(36666), 1, + anon_sym_COMMA, + STATE(24220), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095392] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36668), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095406] = 4, + ACTIONS(20567), 1, + anon_sym_RBRACE, + ACTIONS(36670), 1, + anon_sym_COMMA, + STATE(24258), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095420] = 4, + ACTIONS(20954), 1, + anon_sym_RBRACE, + ACTIONS(36672), 1, + anon_sym_COMMA, + STATE(21865), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095434] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4447), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095448] = 4, + ACTIONS(4447), 1, + anon_sym_RBRACK, + ACTIONS(36674), 1, + anon_sym_COMMA, + STATE(24262), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095462] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21335), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095476] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21422), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095490] = 4, + ACTIONS(21422), 1, + anon_sym_RBRACE, + ACTIONS(36676), 1, + anon_sym_COMMA, + STATE(24224), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095504] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23456), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095518] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3821), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095532] = 4, + ACTIONS(3821), 1, + anon_sym_RBRACK, + ACTIONS(36678), 1, + anon_sym_COMMA, + STATE(24226), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095546] = 4, + ACTIONS(21078), 1, + anon_sym_RBRACE, + ACTIONS(36680), 1, + anon_sym_COMMA, + STATE(23466), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095560] = 4, + ACTIONS(21335), 1, + anon_sym_RBRACE, + ACTIONS(36682), 1, + anon_sym_COMMA, + STATE(24525), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095574] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22858), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095588] = 4, + ACTIONS(23758), 1, + anon_sym_RBRACE, + ACTIONS(36684), 1, + anon_sym_COMMA, + STATE(24373), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095602] = 4, + ACTIONS(22858), 1, + anon_sym_RBRACE, + ACTIONS(36686), 1, + anon_sym_COMMA, + STATE(24219), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095616] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20894), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095630] = 4, + ACTIONS(22864), 1, + anon_sym_RBRACE, + ACTIONS(36688), 1, + anon_sym_COMMA, + STATE(24221), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095644] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21142), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095658] = 4, + ACTIONS(20894), 1, + anon_sym_RBRACE, + ACTIONS(36690), 1, + anon_sym_COMMA, + STATE(24479), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095672] = 4, + ACTIONS(23456), 1, + anon_sym_RBRACE, + ACTIONS(36692), 1, + anon_sym_COMMA, + STATE(24230), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095686] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(34942), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095700] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22864), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095714] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23404), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095728] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22874), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095742] = 4, + ACTIONS(23404), 1, + anon_sym_RBRACE, + ACTIONS(36694), 1, + anon_sym_COMMA, + STATE(24236), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095756] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(14711), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095770] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36696), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095784] = 4, + ACTIONS(36696), 1, + anon_sym_RBRACE, + ACTIONS(36698), 1, + anon_sym_COMMA, + STATE(24237), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095798] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36700), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095812] = 4, + ACTIONS(36700), 1, + anon_sym_RBRACK, + ACTIONS(36702), 1, + anon_sym_COMMA, + STATE(24238), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095826] = 3, + ACTIONS(36704), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(16526), 2, + anon_sym_and, + anon_sym_with, + [1095838] = 4, + ACTIONS(22874), 1, + anon_sym_RBRACE, + ACTIONS(36706), 1, + anon_sym_COMMA, + STATE(24234), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095852] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36708), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095866] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36710), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095880] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(36712), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095894] = 4, + ACTIONS(23408), 1, + anon_sym_RBRACE, + ACTIONS(36714), 1, + anon_sym_COMMA, + STATE(24240), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095908] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36716), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095922] = 4, + ACTIONS(36716), 1, + anon_sym_RBRACE, + ACTIONS(36718), 1, + anon_sym_COMMA, + STATE(24242), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095936] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23408), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095950] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36720), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095964] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36722), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095978] = 4, + ACTIONS(36708), 1, + anon_sym_RBRACE, + ACTIONS(36724), 1, + anon_sym_COMMA, + STATE(24246), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1095992] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23412), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096006] = 4, + ACTIONS(23412), 1, + anon_sym_RBRACE, + ACTIONS(36726), 1, + anon_sym_COMMA, + STATE(24244), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096020] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36728), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096034] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36730), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096048] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36732), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096062] = 4, + ACTIONS(36732), 1, + anon_sym_RBRACE, + ACTIONS(36734), 1, + anon_sym_COMMA, + STATE(24247), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096076] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36736), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096090] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36738), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096104] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21575), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096118] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22664), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096132] = 4, + ACTIONS(14711), 1, + anon_sym_RBRACK, + ACTIONS(36740), 1, + anon_sym_COMMA, + STATE(24534), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096146] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21450), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096160] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4617), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096174] = 4, + ACTIONS(21575), 1, + anon_sym_RBRACE, + ACTIONS(36742), 1, + anon_sym_COMMA, + STATE(24386), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096188] = 4, + ACTIONS(22664), 1, + anon_sym_RBRACE, + ACTIONS(36744), 1, + anon_sym_COMMA, + STATE(24270), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096202] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36746), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096216] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4179), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096230] = 4, + ACTIONS(22968), 1, + anon_sym_RBRACE, + ACTIONS(36748), 1, + anon_sym_COMMA, + STATE(24269), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096244] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36750), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096258] = 4, + ACTIONS(21450), 1, + anon_sym_RBRACE, + ACTIONS(36752), 1, + anon_sym_COMMA, + STATE(21550), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096272] = 4, + ACTIONS(36750), 1, + anon_sym_RBRACE, + ACTIONS(36754), 1, + anon_sym_COMMA, + STATE(24271), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096286] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21337), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096300] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36756), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096314] = 4, + ACTIONS(36756), 1, + anon_sym_RBRACK, + ACTIONS(36758), 1, + anon_sym_COMMA, + STATE(24272), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096328] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(5029), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096342] = 4, + ACTIONS(21337), 1, + anon_sym_RBRACE, + ACTIONS(36760), 1, + anon_sym_COMMA, + STATE(24304), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096356] = 4, + ACTIONS(21018), 1, + anon_sym_RBRACE, + ACTIONS(36762), 1, + anon_sym_COMMA, + STATE(24720), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096370] = 4, + ACTIONS(5029), 1, + anon_sym_RBRACK, + ACTIONS(36764), 1, + anon_sym_COMMA, + STATE(24391), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096384] = 4, + ACTIONS(22798), 1, + anon_sym_RBRACE, + ACTIONS(36766), 1, + anon_sym_COMMA, + STATE(24280), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096398] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22998), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096412] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22798), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096426] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36768), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096440] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36770), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096454] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4899), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096468] = 4, + ACTIONS(35128), 1, + anon_sym_COMMA, + ACTIONS(36772), 1, + anon_sym_RBRACK, + STATE(24662), 1, + aux_sym_hol_attributes_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096482] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32702), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096496] = 4, + ACTIONS(35391), 1, + anon_sym_PIPE, + ACTIONS(36774), 1, + anon_sym_End, + STATE(22557), 1, + aux_sym_hol_constructor_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096510] = 4, + ACTIONS(22998), 1, + anon_sym_RBRACE, + ACTIONS(36776), 1, + anon_sym_COMMA, + STATE(24287), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096524] = 4, + ACTIONS(23024), 1, + anon_sym_RBRACE, + ACTIONS(36778), 1, + anon_sym_COMMA, + STATE(24290), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096538] = 4, + ACTIONS(4899), 1, + anon_sym_RBRACK, + ACTIONS(36780), 1, + anon_sym_COMMA, + STATE(24312), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096552] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23196), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096566] = 4, + ACTIONS(23196), 1, + anon_sym_RBRACE, + ACTIONS(36782), 1, + anon_sym_COMMA, + STATE(24284), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096580] = 4, + ACTIONS(4617), 1, + anon_sym_RBRACK, + ACTIONS(36784), 1, + anon_sym_COMMA, + STATE(24513), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096594] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3961), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096608] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36786), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096622] = 4, + ACTIONS(36786), 1, + anon_sym_RBRACE, + ACTIONS(36788), 1, + anon_sym_COMMA, + STATE(24288), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096636] = 4, + ACTIONS(4635), 1, + anon_sym_RBRACK, + ACTIONS(36790), 1, + anon_sym_COMMA, + STATE(21534), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096650] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23024), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096664] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36792), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096678] = 4, + ACTIONS(21347), 1, + anon_sym_RBRACE, + ACTIONS(36794), 1, + anon_sym_COMMA, + STATE(24157), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096692] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23036), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096706] = 4, + ACTIONS(21442), 1, + anon_sym_RBRACE, + ACTIONS(36796), 1, + anon_sym_COMMA, + STATE(24315), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096720] = 4, + ACTIONS(23036), 1, + anon_sym_RBRACE, + ACTIONS(36798), 1, + anon_sym_COMMA, + STATE(24299), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096734] = 4, + ACTIONS(3833), 1, + anon_sym_RBRACK, + ACTIONS(36800), 1, + anon_sym_COMMA, + STATE(24318), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096748] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36802), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096762] = 4, + ACTIONS(20671), 1, + anon_sym_RBRACE, + ACTIONS(36804), 1, + anon_sym_COMMA, + STATE(23209), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096776] = 4, + ACTIONS(21577), 1, + anon_sym_RBRACE, + ACTIONS(36806), 1, + anon_sym_COMMA, + STATE(21684), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096790] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36808), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096804] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23512), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096818] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36810), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096832] = 4, + ACTIONS(36810), 1, + anon_sym_RBRACE, + ACTIONS(36812), 1, + anon_sym_COMMA, + STATE(24303), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096846] = 4, + ACTIONS(21343), 1, + anon_sym_RBRACE, + ACTIONS(36814), 1, + anon_sym_COMMA, + STATE(24349), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096860] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36816), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096874] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36818), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096888] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21343), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096902] = 4, + ACTIONS(4901), 1, + anon_sym_RBRACK, + ACTIONS(36820), 1, + anon_sym_COMMA, + STATE(24364), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096916] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23522), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096930] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21018), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096944] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36822), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096958] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36824), 1, + anon_sym_RPAREN, + STATE(21641), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096972] = 4, + ACTIONS(23522), 1, + anon_sym_RBRACE, + ACTIONS(36826), 1, + anon_sym_COMMA, + STATE(24428), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1096986] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36828), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097000] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4901), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097014] = 4, + ACTIONS(20707), 1, + anon_sym_RBRACE, + ACTIONS(36830), 1, + anon_sym_COMMA, + STATE(23496), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097028] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33793), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097042] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21448), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097056] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36832), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097070] = 4, + ACTIONS(21448), 1, + anon_sym_RBRACE, + ACTIONS(36834), 1, + anon_sym_COMMA, + STATE(24344), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097084] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3835), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097098] = 4, + ACTIONS(3909), 1, + anon_sym_RBRACK, + ACTIONS(36836), 1, + anon_sym_COMMA, + STATE(22721), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097112] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23698), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097126] = 4, + ACTIONS(3835), 1, + anon_sym_RBRACK, + ACTIONS(36838), 1, + anon_sym_COMMA, + STATE(24347), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097140] = 4, + ACTIONS(23139), 1, + anon_sym_RBRACE, + ACTIONS(36840), 1, + anon_sym_COMMA, + STATE(24327), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097154] = 4, + ACTIONS(3961), 1, + anon_sym_RBRACK, + ACTIONS(36842), 1, + anon_sym_COMMA, + STATE(21597), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097168] = 4, + ACTIONS(23698), 1, + anon_sym_RBRACE, + ACTIONS(36844), 1, + anon_sym_COMMA, + STATE(24730), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097182] = 4, + ACTIONS(36350), 1, + anon_sym_COLON, + ACTIONS(36354), 1, + anon_sym_COLON_GT, + ACTIONS(36846), 1, + anon_sym_end, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097196] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36848), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097210] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23143), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097224] = 4, + ACTIONS(15527), 1, + anon_sym_RPAREN, + ACTIONS(36074), 1, + anon_sym_COLON, + ACTIONS(36076), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097238] = 4, + ACTIONS(36822), 1, + anon_sym_RBRACE, + ACTIONS(36850), 1, + anon_sym_COMMA, + STATE(22797), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097252] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32271), 3, + anon_sym_End, + anon_sym_Termination, + anon_sym_SLASH_BSLASH, + [1097262] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36852), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097276] = 4, + ACTIONS(23143), 1, + anon_sym_RBRACE, + ACTIONS(36854), 1, + anon_sym_COMMA, + STATE(24340), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097290] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36856), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097304] = 4, + ACTIONS(4085), 1, + anon_sym_RBRACK, + ACTIONS(36858), 1, + anon_sym_COMMA, + STATE(21523), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097318] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36860), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097332] = 4, + ACTIONS(23153), 1, + anon_sym_RBRACE, + ACTIONS(36862), 1, + anon_sym_COMMA, + STATE(24343), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097346] = 4, + ACTIONS(23200), 1, + anon_sym_RBRACE, + ACTIONS(36864), 1, + anon_sym_COMMA, + STATE(24399), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097360] = 4, + ACTIONS(20841), 1, + anon_sym_RBRACE, + ACTIONS(36866), 1, + anon_sym_COMMA, + STATE(24495), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097374] = 4, + ACTIONS(35816), 1, + anon_sym_RBRACE, + ACTIONS(36868), 1, + anon_sym_COMMA, + STATE(24443), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097388] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23153), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097402] = 4, + ACTIONS(21452), 1, + anon_sym_RBRACE, + ACTIONS(36870), 1, + anon_sym_COMMA, + STATE(24366), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097416] = 4, + ACTIONS(23206), 1, + anon_sym_RBRACE, + ACTIONS(36872), 1, + anon_sym_COMMA, + STATE(24538), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097430] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23214), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097444] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21452), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097458] = 4, + ACTIONS(3837), 1, + anon_sym_RBRACK, + ACTIONS(36874), 1, + anon_sym_COMMA, + STATE(24369), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097472] = 4, + ACTIONS(23214), 1, + anon_sym_RBRACE, + ACTIONS(36876), 1, + anon_sym_COMMA, + STATE(24350), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097486] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3837), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097500] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36878), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097514] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21345), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097528] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36880), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097542] = 4, + ACTIONS(36880), 1, + anon_sym_RBRACE, + ACTIONS(36882), 1, + anon_sym_COMMA, + STATE(24352), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097556] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36884), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097570] = 4, + ACTIONS(21345), 1, + anon_sym_RBRACE, + ACTIONS(36886), 1, + anon_sym_COMMA, + STATE(24410), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097584] = 4, + ACTIONS(36878), 1, + anon_sym_RBRACE, + ACTIONS(36888), 1, + anon_sym_COMMA, + STATE(24429), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097598] = 4, + ACTIONS(20589), 1, + anon_sym_RBRACE, + ACTIONS(36890), 1, + anon_sym_COMMA, + STATE(24402), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097612] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(36892), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097626] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36894), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097640] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(36896), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097654] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36898), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097668] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36900), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097682] = 4, + ACTIONS(4247), 1, + anon_sym_RBRACK, + ACTIONS(36902), 1, + anon_sym_COMMA, + STATE(24517), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097696] = 4, + ACTIONS(23504), 1, + anon_sym_RBRACE, + ACTIONS(36904), 1, + anon_sym_COMMA, + STATE(24385), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097710] = 4, + ACTIONS(4453), 1, + anon_sym_RBRACK, + ACTIONS(36906), 1, + anon_sym_COMMA, + STATE(24405), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097724] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4903), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097738] = 4, + ACTIONS(4903), 1, + anon_sym_RBRACK, + ACTIONS(36908), 1, + anon_sym_COMMA, + STATE(24418), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097752] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21454), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097766] = 4, + ACTIONS(21454), 1, + anon_sym_RBRACE, + ACTIONS(36910), 1, + anon_sym_COMMA, + STATE(24411), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097780] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36912), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097794] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3839), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097808] = 4, + ACTIONS(3839), 1, + anon_sym_RBRACK, + ACTIONS(36914), 1, + anon_sym_COMMA, + STATE(24413), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097822] = 4, + ACTIONS(36912), 1, + anon_sym_RBRACK, + ACTIONS(36916), 1, + anon_sym_COMMA, + STATE(24456), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097836] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23496), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097850] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23768), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097864] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(36918), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097878] = 4, + ACTIONS(23374), 1, + anon_sym_RBRACE, + ACTIONS(36920), 1, + anon_sym_COMMA, + STATE(21599), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097892] = 4, + ACTIONS(23496), 1, + anon_sym_RBRACE, + ACTIONS(36922), 1, + anon_sym_COMMA, + STATE(23820), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097906] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(36924), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097920] = 4, + ACTIONS(23266), 1, + anon_sym_RBRACE, + ACTIONS(36926), 1, + anon_sym_COMMA, + STATE(24384), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097934] = 4, + ACTIONS(36710), 1, + anon_sym_RBRACK, + ACTIONS(36928), 1, + anon_sym_COMMA, + STATE(21582), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097948] = 3, + STATE(8843), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27457), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1097960] = 4, + ACTIONS(33553), 1, + anon_sym_SEMI, + ACTIONS(36930), 1, + anon_sym_RBRACK, + STATE(24640), 1, + aux_sym_hol_plist_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097974] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21539), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1097988] = 4, + ACTIONS(23768), 1, + anon_sym_RBRACE, + ACTIONS(36932), 1, + anon_sym_COMMA, + STATE(24496), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098002] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23268), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098016] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23516), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098030] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36934), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098044] = 4, + ACTIONS(23268), 1, + anon_sym_RBRACE, + ACTIONS(36936), 1, + anon_sym_COMMA, + STATE(24395), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098058] = 4, + ACTIONS(23272), 1, + anon_sym_RBRACE, + ACTIONS(36938), 1, + anon_sym_COMMA, + STATE(24397), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098072] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20579), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098086] = 4, + ACTIONS(36934), 1, + anon_sym_RBRACE, + ACTIONS(36940), 1, + anon_sym_COMMA, + STATE(24503), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098100] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36942), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098114] = 4, + ACTIONS(21032), 1, + anon_sym_RBRACE, + ACTIONS(36944), 1, + anon_sym_COMMA, + STATE(24490), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098128] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3909), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098142] = 4, + ACTIONS(23516), 1, + anon_sym_RBRACE, + ACTIONS(36946), 1, + anon_sym_COMMA, + STATE(24440), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098156] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23272), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098170] = 4, + ACTIONS(20579), 1, + anon_sym_RBRACE, + ACTIONS(36948), 1, + anon_sym_COMMA, + STATE(24567), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098184] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23286), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098198] = 4, + ACTIONS(23286), 1, + anon_sym_RBRACE, + ACTIONS(36950), 1, + anon_sym_COMMA, + STATE(24403), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098212] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23212), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098226] = 4, + ACTIONS(4031), 1, + anon_sym_RBRACK, + ACTIONS(36952), 1, + anon_sym_COMMA, + STATE(24508), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098240] = 4, + ACTIONS(23540), 1, + anon_sym_RBRACE, + ACTIONS(36954), 1, + anon_sym_COMMA, + STATE(24483), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098254] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20597), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098268] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36956), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098282] = 4, + ACTIONS(20597), 1, + anon_sym_RBRACE, + ACTIONS(36958), 1, + anon_sym_COMMA, + STATE(24433), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098296] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4455), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098310] = 4, + ACTIONS(36956), 1, + anon_sym_RBRACE, + ACTIONS(36960), 1, + anon_sym_COMMA, + STATE(24407), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098324] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36962), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098338] = 4, + ACTIONS(4455), 1, + anon_sym_RBRACK, + ACTIONS(36964), 1, + anon_sym_COMMA, + STATE(24436), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098352] = 4, + ACTIONS(23212), 1, + anon_sym_RBRACE, + ACTIONS(36966), 1, + anon_sym_COMMA, + STATE(24450), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098366] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36968), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098380] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36970), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098394] = 4, + ACTIONS(36970), 1, + anon_sym_RBRACE, + ACTIONS(36972), 1, + anon_sym_COMMA, + STATE(24441), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098408] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36974), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098422] = 4, + ACTIONS(36974), 1, + anon_sym_RBRACK, + ACTIONS(36976), 1, + anon_sym_COMMA, + STATE(24442), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098436] = 4, + ACTIONS(4107), 1, + anon_sym_RBRACK, + ACTIONS(36978), 1, + anon_sym_COMMA, + STATE(21646), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098450] = 4, + ACTIONS(36968), 1, + anon_sym_RBRACE, + ACTIONS(36980), 1, + anon_sym_COMMA, + STATE(21366), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098464] = 3, + STATE(8879), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27457), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1098476] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36982), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098490] = 4, + ACTIONS(36982), 1, + anon_sym_RBRACK, + ACTIONS(36984), 1, + anon_sym_COMMA, + STATE(24455), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098504] = 4, + ACTIONS(36942), 1, + anon_sym_RBRACK, + ACTIONS(36986), 1, + anon_sym_COMMA, + STATE(24519), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098518] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(36988), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098532] = 4, + ACTIONS(20896), 1, + anon_sym_RBRACE, + ACTIONS(36990), 1, + anon_sym_COMMA, + STATE(24626), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098546] = 4, + ACTIONS(21034), 1, + anon_sym_RBRACE, + ACTIONS(36992), 1, + anon_sym_COMMA, + STATE(23963), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098560] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(36994), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098574] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4163), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098588] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21577), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098602] = 4, + ACTIONS(4163), 1, + anon_sym_RBRACK, + ACTIONS(36996), 1, + anon_sym_COMMA, + STATE(24582), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098616] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23540), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098630] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(36998), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098644] = 4, + ACTIONS(20603), 1, + anon_sym_RBRACE, + ACTIONS(37000), 1, + anon_sym_COMMA, + STATE(24458), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098658] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37002), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098672] = 4, + ACTIONS(3683), 1, + anon_sym_RBRACK, + ACTIONS(37004), 1, + anon_sym_COMMA, + STATE(21704), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098686] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20603), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098700] = 4, + ACTIONS(4457), 1, + anon_sym_RBRACK, + ACTIONS(37006), 1, + anon_sym_COMMA, + STATE(24461), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098714] = 4, + ACTIONS(23224), 1, + anon_sym_RBRACE, + ACTIONS(37008), 1, + anon_sym_COMMA, + STATE(24469), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098728] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4457), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098742] = 4, + ACTIONS(23356), 1, + anon_sym_RBRACE, + ACTIONS(37010), 1, + anon_sym_COMMA, + STATE(24448), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098756] = 4, + ACTIONS(23586), 1, + anon_sym_RBRACE, + ACTIONS(37012), 1, + anon_sym_COMMA, + STATE(24445), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098770] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(37014), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098784] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23586), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098798] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37016), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098812] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37018), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098826] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37020), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098840] = 3, + STATE(8907), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27457), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1098852] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23588), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098866] = 4, + ACTIONS(23588), 1, + anon_sym_RBRACE, + ACTIONS(37022), 1, + anon_sym_COMMA, + STATE(24464), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098880] = 4, + ACTIONS(4529), 1, + anon_sym_RBRACK, + ACTIONS(37024), 1, + anon_sym_COMMA, + STATE(22504), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098894] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23362), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098908] = 4, + ACTIONS(23772), 1, + anon_sym_RBRACE, + ACTIONS(37026), 1, + anon_sym_COMMA, + STATE(24527), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098922] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23224), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098936] = 4, + ACTIONS(23362), 1, + anon_sym_RBRACE, + ACTIONS(37028), 1, + anon_sym_COMMA, + STATE(24463), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098950] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37030), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098964] = 4, + ACTIONS(23400), 1, + anon_sym_RBRACE, + ACTIONS(37032), 1, + anon_sym_COMMA, + STATE(24466), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098978] = 4, + ACTIONS(23438), 1, + anon_sym_RBRACE, + ACTIONS(37034), 1, + anon_sym_COMMA, + STATE(24482), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1098992] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37036), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099006] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37038), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099020] = 4, + ACTIONS(36350), 1, + anon_sym_COLON, + ACTIONS(36354), 1, + anon_sym_COLON_GT, + ACTIONS(37040), 1, + anon_sym_end, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099034] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20613), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099048] = 4, + ACTIONS(20613), 1, + anon_sym_RBRACE, + ACTIONS(37042), 1, + anon_sym_COMMA, + STATE(24485), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099062] = 4, + ACTIONS(29913), 1, + anon_sym_QED, + ACTIONS(37044), 1, + anon_sym_BSLASH_BSLASH, + STATE(24460), 1, + aux_sym_THEN_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099076] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4459), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099090] = 4, + ACTIONS(4459), 1, + anon_sym_RBRACK, + ACTIONS(37047), 1, + anon_sym_COMMA, + STATE(24487), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099104] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23400), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099118] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37049), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099132] = 4, + ACTIONS(37049), 1, + anon_sym_RBRACE, + ACTIONS(37051), 1, + anon_sym_COMMA, + STATE(24467), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099146] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23422), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099160] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37053), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099174] = 4, + ACTIONS(23422), 1, + anon_sym_RBRACE, + ACTIONS(37055), 1, + anon_sym_COMMA, + STATE(24476), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099188] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23232), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099202] = 4, + ACTIONS(23232), 1, + anon_sym_RBRACE, + ACTIONS(37057), 1, + anon_sym_COMMA, + STATE(24473), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099216] = 3, + STATE(8943), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27457), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1099228] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37059), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099242] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37061), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099256] = 4, + ACTIONS(37061), 1, + anon_sym_RBRACE, + ACTIONS(37063), 1, + anon_sym_COMMA, + STATE(24477), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099270] = 3, + STATE(11154), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(26943), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1099282] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37065), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099296] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37067), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099310] = 4, + ACTIONS(37065), 1, + anon_sym_RBRACE, + ACTIONS(37069), 1, + anon_sym_COMMA, + STATE(24481), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099324] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20896), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099338] = 4, + ACTIONS(23234), 1, + anon_sym_RBRACE, + ACTIONS(37071), 1, + anon_sym_COMMA, + STATE(24697), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099352] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37073), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099366] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22880), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099380] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23552), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099394] = 4, + ACTIONS(22880), 1, + anon_sym_RBRACE, + ACTIONS(37075), 1, + anon_sym_COMMA, + STATE(24501), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099408] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37077), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099422] = 4, + ACTIONS(37077), 1, + anon_sym_RBRACE, + ACTIONS(37079), 1, + anon_sym_COMMA, + STATE(24502), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099436] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37081), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099450] = 4, + ACTIONS(37081), 1, + anon_sym_RBRACK, + ACTIONS(37083), 1, + anon_sym_COMMA, + STATE(24504), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099464] = 4, + ACTIONS(23552), 1, + anon_sym_RBRACE, + ACTIONS(37085), 1, + anon_sym_COMMA, + STATE(24556), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099478] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21056), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099492] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(28661), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099506] = 4, + ACTIONS(4619), 1, + anon_sym_RBRACK, + ACTIONS(37087), 1, + anon_sym_COMMA, + STATE(24701), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099520] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37089), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099534] = 4, + ACTIONS(22896), 1, + anon_sym_RBRACE, + ACTIONS(37091), 1, + anon_sym_COMMA, + STATE(24506), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099548] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20849), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099562] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23772), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099576] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23234), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099590] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37093), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099604] = 3, + STATE(8851), 1, + sym_vid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(27457), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1099616] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37095), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099630] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22896), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099644] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37097), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099658] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37099), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099672] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37101), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099686] = 4, + ACTIONS(21056), 1, + anon_sym_RBRACE, + ACTIONS(37103), 1, + anon_sym_COMMA, + STATE(24574), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099700] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22902), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099714] = 4, + ACTIONS(22902), 1, + anon_sym_RBRACE, + ACTIONS(37105), 1, + anon_sym_COMMA, + STATE(24509), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099728] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4033), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099742] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37107), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099756] = 4, + ACTIONS(37107), 1, + anon_sym_RBRACE, + ACTIONS(37109), 1, + anon_sym_COMMA, + STATE(24512), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099770] = 4, + ACTIONS(21126), 1, + anon_sym_RBRACE, + ACTIONS(37111), 1, + anon_sym_COMMA, + STATE(24215), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099784] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37113), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099798] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4619), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099812] = 4, + ACTIONS(23506), 1, + anon_sym_RBRACE, + ACTIONS(37115), 1, + anon_sym_COMMA, + STATE(24520), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099826] = 4, + ACTIONS(20849), 1, + anon_sym_RBRACE, + ACTIONS(37117), 1, + anon_sym_COMMA, + STATE(24705), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099840] = 4, + ACTIONS(4033), 1, + anon_sym_RBRACK, + ACTIONS(37119), 1, + anon_sym_COMMA, + STATE(24592), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099854] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4249), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099868] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37121), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099882] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37123), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099896] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23514), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099910] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37125), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099924] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3683), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099938] = 4, + ACTIONS(23514), 1, + anon_sym_RBRACE, + ACTIONS(37127), 1, + anon_sym_COMMA, + STATE(24529), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099952] = 4, + ACTIONS(23520), 1, + anon_sym_RBRACE, + ACTIONS(37129), 1, + anon_sym_COMMA, + STATE(24530), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099966] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37131), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099980] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4107), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1099994] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23774), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100008] = 4, + ACTIONS(23210), 1, + anon_sym_RBRACE, + ACTIONS(37133), 1, + anon_sym_COMMA, + STATE(21640), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100022] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23520), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100036] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23524), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100050] = 4, + ACTIONS(37131), 1, + anon_sym_RBRACE, + ACTIONS(37135), 1, + anon_sym_COMMA, + STATE(24727), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100064] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(37137), 1, + anon_sym_RBRACE, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100078] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(37139), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100092] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37141), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100106] = 4, + ACTIONS(23524), 1, + anon_sym_RBRACE, + ACTIONS(37143), 1, + anon_sym_COMMA, + STATE(24543), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100120] = 4, + ACTIONS(21361), 1, + anon_sym_RBRACE, + ACTIONS(37145), 1, + anon_sym_COMMA, + STATE(24587), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100134] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(37147), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100148] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22426), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100162] = 4, + ACTIONS(23774), 1, + anon_sym_RBRACE, + ACTIONS(37149), 1, + anon_sym_COMMA, + STATE(24561), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100176] = 4, + ACTIONS(20637), 1, + anon_sym_RBRACE, + ACTIONS(37151), 1, + anon_sym_COMMA, + STATE(24563), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100190] = 4, + ACTIONS(4471), 1, + anon_sym_RBRACK, + ACTIONS(37153), 1, + anon_sym_COMMA, + STATE(24570), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100204] = 4, + ACTIONS(4915), 1, + anon_sym_RBRACK, + ACTIONS(37155), 1, + anon_sym_COMMA, + STATE(24602), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100218] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37157), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100232] = 4, + ACTIONS(21569), 1, + anon_sym_RBRACE, + ACTIONS(37159), 1, + anon_sym_COMMA, + STATE(24590), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100246] = 4, + ACTIONS(37157), 1, + anon_sym_RBRACE, + ACTIONS(37161), 1, + anon_sym_COMMA, + STATE(24546), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100260] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37163), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100274] = 4, + ACTIONS(37141), 1, + anon_sym_RBRACK, + ACTIONS(37165), 1, + anon_sym_COMMA, + STATE(24735), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100288] = 4, + ACTIONS(4249), 1, + anon_sym_RBRACK, + ACTIONS(37167), 1, + anon_sym_COMMA, + STATE(21369), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100302] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37169), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100316] = 4, + ACTIONS(20675), 1, + anon_sym_RBRACE, + ACTIONS(37171), 1, + anon_sym_COMMA, + STATE(21608), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100330] = 4, + ACTIONS(3851), 1, + anon_sym_RBRACK, + ACTIONS(37173), 1, + anon_sym_COMMA, + STATE(24598), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100344] = 4, + ACTIONS(21060), 1, + anon_sym_RBRACE, + ACTIONS(37175), 1, + anon_sym_COMMA, + STATE(24676), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100358] = 4, + ACTIONS(13931), 1, + anon_sym_SEMI, + ACTIONS(37177), 1, + anon_sym_RBRACK, + STATE(21101), 1, + aux_sym_hol_list_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100372] = 4, + ACTIONS(23570), 1, + anon_sym_RBRACE, + ACTIONS(37179), 1, + anon_sym_COMMA, + STATE(24562), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100386] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3579), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100400] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37181), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100414] = 4, + ACTIONS(37181), 1, + anon_sym_RBRACE, + ACTIONS(37183), 1, + anon_sym_COMMA, + STATE(24585), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100428] = 4, + ACTIONS(37121), 1, + anon_sym_RBRACE, + ACTIONS(37185), 1, + anon_sym_COMMA, + STATE(22004), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100442] = 4, + ACTIONS(22426), 1, + anon_sym_RBRACE, + ACTIONS(37187), 1, + anon_sym_COMMA, + STATE(24737), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100456] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37189), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100470] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37191), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100484] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23580), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100498] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20641), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100512] = 4, + ACTIONS(37191), 1, + anon_sym_RBRACE, + ACTIONS(37193), 1, + anon_sym_COMMA, + STATE(24575), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100526] = 4, + ACTIONS(23580), 1, + anon_sym_RBRACE, + ACTIONS(37195), 1, + anon_sym_COMMA, + STATE(24577), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100540] = 4, + ACTIONS(20641), 1, + anon_sym_RBRACE, + ACTIONS(37197), 1, + anon_sym_COMMA, + STATE(24612), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100554] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37199), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100568] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37201), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100582] = 4, + ACTIONS(37201), 1, + anon_sym_RBRACK, + ACTIONS(37203), 1, + anon_sym_COMMA, + STATE(23523), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100596] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4473), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100610] = 4, + ACTIONS(37199), 1, + anon_sym_RBRACE, + ACTIONS(37205), 1, + anon_sym_COMMA, + STATE(24738), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100624] = 4, + ACTIONS(23602), 1, + anon_sym_RBRACE, + ACTIONS(37207), 1, + anon_sym_COMMA, + STATE(24579), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100638] = 4, + ACTIONS(36350), 1, + anon_sym_COLON, + ACTIONS(36354), 1, + anon_sym_COLON_GT, + ACTIONS(37209), 1, + anon_sym_end, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100652] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21060), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100666] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37211), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100680] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37213), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100694] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23602), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100708] = 4, + ACTIONS(23242), 1, + anon_sym_RBRACE, + ACTIONS(37215), 1, + anon_sym_COMMA, + STATE(22096), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100722] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23619), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100736] = 4, + ACTIONS(4473), 1, + anon_sym_RBRACK, + ACTIONS(37217), 1, + anon_sym_COMMA, + STATE(24620), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100750] = 4, + ACTIONS(13897), 1, + anon_sym_COMMA, + ACTIONS(37219), 1, + anon_sym_RPAREN, + STATE(21702), 1, + aux_sym_hol_tuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100764] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37221), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100778] = 4, + ACTIONS(4035), 1, + anon_sym_RBRACK, + ACTIONS(37223), 1, + anon_sym_COMMA, + STATE(24690), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100792] = 4, + ACTIONS(23619), 1, + anon_sym_RBRACE, + ACTIONS(37225), 1, + anon_sym_COMMA, + STATE(24586), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100806] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37227), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100820] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37229), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100834] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21369), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100848] = 4, + ACTIONS(37229), 1, + anon_sym_RBRACE, + ACTIONS(37231), 1, + anon_sym_COMMA, + STATE(24591), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100862] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(37233), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100876] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21583), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100890] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37235), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100904] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4035), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100918] = 4, + ACTIONS(20679), 1, + anon_sym_RBRACE, + ACTIONS(37237), 1, + anon_sym_COMMA, + STATE(22530), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100932] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37239), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100946] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(37241), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100960] = 4, + ACTIONS(20643), 1, + anon_sym_RBRACE, + ACTIONS(37243), 1, + anon_sym_COMMA, + STATE(24635), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100974] = 4, + ACTIONS(21583), 1, + anon_sym_RBRACE, + ACTIONS(37245), 1, + anon_sym_COMMA, + STATE(24685), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1100988] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3853), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101002] = 4, + ACTIONS(21369), 1, + anon_sym_RBRACE, + ACTIONS(37247), 1, + anon_sym_COMMA, + STATE(24680), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101016] = 4, + ACTIONS(23656), 1, + anon_sym_RBRACE, + ACTIONS(37249), 1, + anon_sym_COMMA, + STATE(24608), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101030] = 4, + ACTIONS(3853), 1, + anon_sym_RBRACK, + ACTIONS(37251), 1, + anon_sym_COMMA, + STATE(24700), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101044] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4917), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101058] = 4, + ACTIONS(37221), 1, + anon_sym_RBRACK, + ACTIONS(37253), 1, + anon_sym_COMMA, + STATE(23249), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101072] = 4, + ACTIONS(37059), 1, + anon_sym_RBRACE, + ACTIONS(37255), 1, + anon_sym_COMMA, + STATE(21413), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101086] = 4, + ACTIONS(36456), 1, + anon_sym_LBRACK, + ACTIONS(37257), 1, + anon_sym_COLON, + STATE(24892), 1, + sym_hol_attributes, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101100] = 4, + ACTIONS(4917), 1, + anon_sym_RBRACK, + ACTIONS(37259), 1, + anon_sym_COMMA, + STATE(24687), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101114] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20827), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101128] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23714), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101142] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21381), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101156] = 3, + STATE(24985), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1101168] = 4, + ACTIONS(23714), 1, + anon_sym_RBRACE, + ACTIONS(37261), 1, + anon_sym_COMMA, + STATE(24623), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101182] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20643), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101196] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(37263), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101210] = 4, + ACTIONS(20751), 1, + anon_sym_RBRACE, + ACTIONS(37265), 1, + anon_sym_COMMA, + STATE(22292), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101224] = 4, + ACTIONS(28685), 1, + anon_sym_COLON_COLON, + ACTIONS(37267), 1, + anon_sym_RPAREN, + STATE(23248), 1, + aux_sym_hol_pcons_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101238] = 3, + STATE(24994), 1, + sym_tycon, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(22089), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1101250] = 4, + ACTIONS(4475), 1, + anon_sym_RBRACK, + ACTIONS(37269), 1, + anon_sym_COMMA, + STATE(24638), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101264] = 4, + ACTIONS(3579), 1, + anon_sym_RBRACK, + ACTIONS(37271), 1, + anon_sym_COMMA, + STATE(24175), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101278] = 4, + ACTIONS(23782), 1, + anon_sym_RBRACE, + ACTIONS(37273), 1, + anon_sym_COMMA, + STATE(24624), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101292] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4475), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101306] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(37275), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101320] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21412), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101334] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23782), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101348] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23868), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101362] = 4, + ACTIONS(23868), 1, + anon_sym_RBRACE, + ACTIONS(37277), 1, + anon_sym_COMMA, + STATE(24630), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101376] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20900), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101390] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37279), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101404] = 4, + ACTIONS(23060), 1, + anon_sym_RBRACE, + ACTIONS(37281), 1, + anon_sym_COMMA, + STATE(21824), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101418] = 4, + ACTIONS(23098), 1, + anon_sym_RBRACE, + ACTIONS(37283), 1, + anon_sym_COMMA, + STATE(24651), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101432] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37285), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101446] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(37287), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101460] = 4, + ACTIONS(37285), 1, + anon_sym_RBRACE, + ACTIONS(37289), 1, + anon_sym_COMMA, + STATE(24634), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101474] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21050), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101488] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37291), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101502] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20645), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101516] = 4, + ACTIONS(20645), 1, + anon_sym_RBRACE, + ACTIONS(37293), 1, + anon_sym_COMMA, + STATE(24654), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101530] = 4, + ACTIONS(28681), 1, + anon_sym_COMMA, + ACTIONS(37295), 1, + anon_sym_RPAREN, + STATE(22641), 1, + aux_sym_hol_ptuple_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101544] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4477), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101558] = 4, + ACTIONS(4477), 1, + anon_sym_RBRACK, + ACTIONS(37297), 1, + anon_sym_COMMA, + STATE(24656), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101572] = 4, + ACTIONS(33553), 1, + anon_sym_SEMI, + ACTIONS(37299), 1, + anon_sym_RBRACK, + STATE(22875), 1, + aux_sym_hol_plist_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101586] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21078), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101600] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37301), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101614] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(33539), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101628] = 4, + ACTIONS(23882), 1, + anon_sym_RBRACE, + ACTIONS(37303), 1, + anon_sym_COMMA, + STATE(24650), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101642] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37305), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101656] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20675), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101670] = 4, + ACTIONS(4197), 1, + anon_sym_RBRACK, + ACTIONS(37307), 1, + anon_sym_COMMA, + STATE(21649), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101684] = 4, + ACTIONS(20457), 1, + anon_sym_RBRACE, + ACTIONS(37309), 1, + anon_sym_COMMA, + STATE(24716), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101698] = 4, + ACTIONS(22462), 1, + anon_sym_RBRACE, + ACTIONS(37311), 1, + anon_sym_COMMA, + STATE(24736), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101712] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23902), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101726] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23172), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101740] = 4, + ACTIONS(21412), 1, + anon_sym_RBRACE, + ACTIONS(37313), 1, + anon_sym_COMMA, + STATE(21626), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101754] = 4, + ACTIONS(23172), 1, + anon_sym_RBRACE, + ACTIONS(37315), 1, + anon_sym_COMMA, + STATE(24670), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101768] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37317), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101782] = 4, + ACTIONS(37317), 1, + anon_sym_RBRACE, + ACTIONS(37319), 1, + anon_sym_COMMA, + STATE(24671), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101796] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37321), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101810] = 4, + ACTIONS(37321), 1, + anon_sym_RBRACK, + ACTIONS(37323), 1, + anon_sym_COMMA, + STATE(24672), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101824] = 4, + ACTIONS(20900), 1, + anon_sym_RBRACE, + ACTIONS(37325), 1, + anon_sym_COMMA, + STATE(22232), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101838] = 4, + ACTIONS(23546), 1, + anon_sym_RBRACE, + ACTIONS(37327), 1, + anon_sym_COMMA, + STATE(22612), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101852] = 4, + ACTIONS(23902), 1, + anon_sym_RBRACE, + ACTIONS(37329), 1, + anon_sym_COMMA, + STATE(24667), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101866] = 4, + ACTIONS(23182), 1, + anon_sym_RBRACE, + ACTIONS(37331), 1, + anon_sym_COMMA, + STATE(24674), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101880] = 4, + ACTIONS(37333), 1, + anon_sym_COMMA, + ACTIONS(37336), 1, + anon_sym_RBRACK, + STATE(24662), 1, + aux_sym_hol_attributes_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101894] = 4, + ACTIONS(23906), 1, + anon_sym_RBRACE, + ACTIONS(37338), 1, + anon_sym_COMMA, + STATE(24668), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101908] = 4, + ACTIONS(21489), 1, + anon_sym_RBRACE, + ACTIONS(37340), 1, + anon_sym_COMMA, + STATE(21475), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101922] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4197), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101936] = 4, + ACTIONS(21636), 1, + anon_sym_RBRACE, + ACTIONS(37342), 1, + anon_sym_COMMA, + STATE(23419), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101950] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23906), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101964] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23916), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101978] = 4, + ACTIONS(23916), 1, + anon_sym_RBRACE, + ACTIONS(37344), 1, + anon_sym_COMMA, + STATE(24683), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1101992] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23182), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102006] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37346), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102020] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37348), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102034] = 4, + ACTIONS(20857), 1, + anon_sym_RBRACE, + ACTIONS(37350), 1, + anon_sym_COMMA, + STATE(21424), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102048] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23184), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102062] = 4, + ACTIONS(23184), 1, + anon_sym_RBRACE, + ACTIONS(37352), 1, + anon_sym_COMMA, + STATE(24677), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102076] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21066), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102090] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37354), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102104] = 4, + ACTIONS(37354), 1, + anon_sym_RBRACE, + ACTIONS(37356), 1, + anon_sym_COMMA, + STATE(24679), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102118] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37358), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102132] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20457), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102146] = 4, + ACTIONS(21066), 1, + anon_sym_RBRACE, + ACTIONS(37360), 1, + anon_sym_COMMA, + STATE(24643), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102160] = 4, + ACTIONS(4919), 1, + anon_sym_RBRACK, + ACTIONS(37362), 1, + anon_sym_COMMA, + STATE(24722), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102174] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37364), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102188] = 4, + ACTIONS(37364), 1, + anon_sym_RBRACE, + ACTIONS(37366), 1, + anon_sym_COMMA, + STATE(24688), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102202] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21636), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102216] = 4, + ACTIONS(3855), 1, + anon_sym_RBRACK, + ACTIONS(37368), 1, + anon_sym_COMMA, + STATE(22968), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102230] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4919), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102244] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37370), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102258] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37372), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102272] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4037), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102286] = 4, + ACTIONS(4037), 1, + anon_sym_RBRACK, + ACTIONS(37374), 1, + anon_sym_COMMA, + STATE(24314), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102300] = 4, + ACTIONS(11537), 1, + anon_sym_DASH_GT, + ACTIONS(11539), 1, + anon_sym_list, + ACTIONS(37376), 1, + anon_sym_u201d, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102314] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37378), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102328] = 4, + ACTIONS(3945), 1, + anon_sym_RBRACK, + ACTIONS(37380), 1, + anon_sym_COMMA, + STATE(23755), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102342] = 4, + ACTIONS(22444), 1, + anon_sym_RBRACE, + ACTIONS(37382), 1, + anon_sym_COMMA, + STATE(23986), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102356] = 4, + ACTIONS(36808), 1, + anon_sym_RBRACE, + ACTIONS(37384), 1, + anon_sym_COMMA, + STATE(24719), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102370] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(23294), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102384] = 4, + ACTIONS(22406), 1, + anon_sym_RBRACE, + ACTIONS(37386), 1, + anon_sym_COMMA, + STATE(24710), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102398] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37388), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102412] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(3855), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102426] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4621), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102440] = 4, + ACTIONS(4621), 1, + anon_sym_RBRACK, + ACTIONS(37390), 1, + anon_sym_COMMA, + STATE(22483), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102454] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37392), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102468] = 4, + ACTIONS(32548), 1, + anon_sym_COMMA, + ACTIONS(37394), 1, + anon_sym_RPAREN, + STATE(24309), 1, + aux_sym_tyseq_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102482] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(20857), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102496] = 4, + ACTIONS(23292), 1, + anon_sym_RBRACE, + ACTIONS(37396), 1, + anon_sym_COMMA, + STATE(21941), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102510] = 4, + ACTIONS(4969), 1, + anon_sym_RBRACK, + ACTIONS(37398), 1, + anon_sym_COMMA, + STATE(21489), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102524] = 4, + ACTIONS(22804), 1, + anon_sym_RBRACE, + ACTIONS(37400), 1, + anon_sym_COMMA, + STATE(22600), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102538] = 4, + ACTIONS(23294), 1, + anon_sym_RBRACE, + ACTIONS(37402), 1, + anon_sym_COMMA, + STATE(21693), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102552] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22408), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102566] = 4, + ACTIONS(23012), 1, + anon_sym_RBRACE, + ACTIONS(37404), 1, + anon_sym_COMMA, + STATE(21538), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102580] = 4, + ACTIONS(22408), 1, + anon_sym_RBRACE, + ACTIONS(37406), 1, + anon_sym_COMMA, + STATE(24724), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102594] = 4, + ACTIONS(22410), 1, + anon_sym_RBRACE, + ACTIONS(37408), 1, + anon_sym_COMMA, + STATE(24728), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102608] = 4, + ACTIONS(4251), 1, + anon_sym_RBRACK, + ACTIONS(37410), 1, + anon_sym_COMMA, + STATE(21433), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102622] = 4, + ACTIONS(28799), 1, + sym__alphaAlphaNumeric_ident, + STATE(15105), 1, + sym_strdesc, + STATE(25034), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102636] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21377), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102650] = 4, + ACTIONS(21377), 1, + anon_sym_RBRACE, + ACTIONS(37412), 1, + anon_sym_COMMA, + STATE(24275), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102664] = 4, + ACTIONS(4089), 1, + anon_sym_RBRACK, + ACTIONS(37414), 1, + anon_sym_COMMA, + STATE(22564), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102678] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37416), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102692] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(21106), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102706] = 4, + ACTIONS(37418), 1, + anon_sym_EQ, + ACTIONS(37420), 1, + anon_sym_COLON, + ACTIONS(37422), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102720] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(4921), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102734] = 4, + ACTIONS(4921), 1, + anon_sym_RBRACK, + ACTIONS(37424), 1, + anon_sym_COMMA, + STATE(21532), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102748] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22410), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102762] = 4, + ACTIONS(20665), 1, + anon_sym_RBRACE, + ACTIONS(37426), 1, + anon_sym_COMMA, + STATE(23373), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102776] = 4, + ACTIONS(37428), 1, + anon_sym_EQ, + ACTIONS(37430), 1, + anon_sym_COLON, + ACTIONS(37432), 1, + anon_sym_COLON_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102790] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37434), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102804] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22420), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102818] = 4, + ACTIONS(22420), 1, + anon_sym_RBRACE, + ACTIONS(37436), 1, + anon_sym_COMMA, + STATE(24732), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102832] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32622), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102846] = 4, + ACTIONS(28624), 1, + sym__alphaAlphaNumeric_ident, + STATE(13561), 1, + sym_strbind, + STATE(24721), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102860] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(32544), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102874] = 4, + ACTIONS(28624), 1, + sym__alphaAlphaNumeric_ident, + STATE(13561), 1, + sym_strbind, + STATE(24726), 1, + sym_strid, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102888] = 4, + ACTIONS(4489), 1, + anon_sym_RBRACK, + ACTIONS(37438), 1, + anon_sym_COMMA, + STATE(22649), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102902] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37440), 1, + anon_sym_RBRACK, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102916] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22517), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102930] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(22804), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102944] = 4, + ACTIONS(2659), 1, + anon_sym_COMMA, + ACTIONS(37442), 1, + anon_sym_RBRACE, + STATE(8894), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102958] = 4, + ACTIONS(34864), 1, + anon_sym_RBRACE, + ACTIONS(37444), 1, + anon_sym_COMMA, + STATE(23395), 1, + aux_sym_record_exp_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1102972] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12942), 2, + anon_sym_EQ, + anon_sym_COLON, + [1102981] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(37446), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1102990] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19645), 2, + anon_sym_EQ, + anon_sym_COLON, + [1102999] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19364), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103008] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19342), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103017] = 3, + ACTIONS(37448), 1, + anon_sym_EQ, + ACTIONS(37450), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103028] = 3, + ACTIONS(37452), 1, + anon_sym_End, + ACTIONS(37454), 1, + anon_sym_Termination, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103039] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19356), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103048] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19633), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103057] = 3, + ACTIONS(37456), 1, + anon_sym_withtype, + ACTIONS(37458), 1, + anon_sym_with, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103068] = 3, + ACTIONS(37460), 1, + anon_sym_QED, + ACTIONS(37462), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103079] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14565), 2, + anon_sym_and, + anon_sym_with, + [1103088] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19623), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103097] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19641), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103106] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19494), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103115] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19615), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103124] = 3, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + STATE(24796), 1, + sym_tyvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103135] = 3, + ACTIONS(37450), 1, + anon_sym_where, + ACTIONS(37464), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103146] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19428), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103155] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19432), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103164] = 3, + ACTIONS(37466), 1, + anon_sym_RPAREN, + ACTIONS(37468), 1, + anon_sym_where, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103175] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19458), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103184] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20423), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103193] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19498), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103202] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32946), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [1103211] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19633), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103220] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19619), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103229] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19681), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103238] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19649), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103247] = 3, + ACTIONS(37470), 1, + anon_sym_EQ, + ACTIONS(37472), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103258] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19424), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103267] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19619), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103276] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13064), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103285] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19585), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103294] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(32072), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1103303] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19458), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103312] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19645), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103321] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(34400), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [1103330] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19494), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103339] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19466), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103348] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19498), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103357] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19502), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103366] = 3, + ACTIONS(37474), 1, + anon_sym_End, + ACTIONS(37476), 1, + anon_sym_Termination, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103377] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19470), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103386] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19338), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103395] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19338), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103404] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19474), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103413] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(15621), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103422] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19482), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103431] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30650), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103440] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19428), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103449] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19649), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103458] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(14417), 2, + anon_sym_and, + anon_sym_with, + [1103467] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19653), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103476] = 3, + ACTIONS(37478), 1, + anon_sym_EQ, + ACTIONS(37480), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103487] = 3, + ACTIONS(37450), 1, + anon_sym_where, + ACTIONS(37482), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103498] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(34709), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [1103507] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19342), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103516] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19574), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103525] = 3, + ACTIONS(37484), 1, + anon_sym_EQ, + ACTIONS(37486), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103536] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(37488), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1103545] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(37490), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [1103554] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19681), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103563] = 3, + ACTIONS(16526), 1, + anon_sym_EQ, + ACTIONS(37492), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103574] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19466), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103583] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19470), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103592] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19627), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103601] = 3, + ACTIONS(37494), 1, + sym__hol_alphanumeric, + STATE(25015), 1, + sym__hol_bvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103612] = 3, + ACTIONS(31793), 1, + anon_sym_RPAREN, + ACTIONS(37496), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103623] = 3, + ACTIONS(37450), 1, + anon_sym_where, + ACTIONS(37498), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103634] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19474), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103643] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20417), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103652] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19482), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103661] = 3, + ACTIONS(37500), 1, + anon_sym_EQ, + ACTIONS(37502), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103672] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19615), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103681] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19623), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103690] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19627), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103699] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19356), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103708] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19502), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103717] = 3, + ACTIONS(37504), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(37506), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103728] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19364), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103737] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19530), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103746] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19574), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103755] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19585), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103764] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19432), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103773] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103782] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(12416), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103791] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(34280), 2, + anon_sym_PIPE, + anon_sym_End, + [1103800] = 3, + ACTIONS(37450), 1, + anon_sym_where, + ACTIONS(37508), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103811] = 3, + ACTIONS(37510), 1, + anon_sym_EQ, + ACTIONS(37512), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103822] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(37514), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103831] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(37460), 2, + anon_sym_End, + anon_sym_QED, + [1103840] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19530), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103849] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(35300), 2, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + [1103858] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(20392), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103867] = 3, + ACTIONS(37516), 1, + anon_sym_EQ, + ACTIONS(37518), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103878] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19436), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103887] = 3, + ACTIONS(14275), 1, + sym__primeAlphaNumeric_ident, + STATE(23763), 1, + sym_tyvar, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103898] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19653), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103907] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30035), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1103916] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19424), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103925] = 3, + ACTIONS(37450), 1, + anon_sym_where, + ACTIONS(37520), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103936] = 3, + ACTIONS(37450), 1, + anon_sym_where, + ACTIONS(37522), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1103947] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(37524), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1103956] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(13040), 2, + sym__alphaAlphaNumeric_ident, + sym__symbolic_ident, + [1103965] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19641), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103974] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(34745), 2, + anon_sym_RBRACK, + anon_sym_SEMI, + [1103983] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(19436), 2, + anon_sym_EQ, + anon_sym_COLON, + [1103992] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(30871), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [1104001] = 3, + ACTIONS(37526), 1, + anon_sym_withtype, + ACTIONS(37528), 1, + anon_sym_with, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104012] = 3, + ACTIONS(37460), 1, + anon_sym_End, + ACTIONS(37530), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104023] = 2, + ACTIONS(37532), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104031] = 2, + ACTIONS(37534), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104039] = 2, + ACTIONS(37536), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104047] = 2, + ACTIONS(37538), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104055] = 2, + ACTIONS(37540), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104063] = 2, + ACTIONS(37542), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104071] = 2, + ACTIONS(37544), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104079] = 2, + ACTIONS(37546), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104087] = 2, + ACTIONS(37548), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104095] = 2, + ACTIONS(37550), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104103] = 2, + ACTIONS(37552), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104111] = 2, + ACTIONS(37554), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104119] = 2, + ACTIONS(37556), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104127] = 2, + ACTIONS(37558), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104135] = 2, + ACTIONS(37560), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104143] = 2, + ACTIONS(37562), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104151] = 2, + ACTIONS(37564), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104159] = 2, + ACTIONS(37566), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104167] = 2, + ACTIONS(37568), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104175] = 2, + ACTIONS(37570), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104183] = 2, + ACTIONS(37572), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104191] = 2, + ACTIONS(21716), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104199] = 2, + ACTIONS(37574), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104207] = 2, + ACTIONS(37576), 1, + anon_sym_QED, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104215] = 2, + ACTIONS(37578), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104223] = 2, + ACTIONS(37580), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104231] = 2, + ACTIONS(37582), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104239] = 2, + ACTIONS(37584), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104247] = 2, + ACTIONS(37586), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104255] = 2, + ACTIONS(37588), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104263] = 2, + ACTIONS(37590), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104271] = 2, + ACTIONS(37592), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104279] = 2, + ACTIONS(37594), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104287] = 2, + ACTIONS(37596), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104295] = 2, + ACTIONS(37598), 1, + anon_sym_with, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104303] = 2, + ACTIONS(37600), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104311] = 2, + ACTIONS(37602), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104319] = 2, + ACTIONS(37604), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104327] = 2, + ACTIONS(37606), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104335] = 2, + ACTIONS(37608), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104343] = 2, + ACTIONS(37610), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104351] = 2, + ACTIONS(37612), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104359] = 2, + ACTIONS(37614), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104367] = 2, + ACTIONS(37616), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104375] = 2, + ACTIONS(37618), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104383] = 2, + ACTIONS(37620), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104391] = 2, + ACTIONS(37622), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104399] = 2, + ACTIONS(37624), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104407] = 2, + ACTIONS(37626), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104415] = 2, + ACTIONS(37628), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104423] = 2, + ACTIONS(37630), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104431] = 2, + ACTIONS(37632), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104439] = 2, + ACTIONS(37634), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104447] = 2, + ACTIONS(37636), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104455] = 2, + ACTIONS(37638), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104463] = 2, + ACTIONS(37640), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104471] = 2, + ACTIONS(37642), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104479] = 2, + ACTIONS(37644), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104487] = 2, + ACTIONS(37646), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104495] = 2, + ACTIONS(37648), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104503] = 2, + ACTIONS(37650), 1, + anon_sym_End, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104511] = 2, + ACTIONS(37652), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104519] = 2, + ACTIONS(37654), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104527] = 2, + ACTIONS(37656), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104535] = 2, + ACTIONS(37658), 1, + anon_sym_End, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104543] = 2, + ACTIONS(37660), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104551] = 2, + ACTIONS(37662), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104559] = 2, + ACTIONS(37664), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104567] = 2, + ACTIONS(37666), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104575] = 2, + ACTIONS(37668), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104583] = 2, + ACTIONS(37670), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104591] = 2, + ACTIONS(37672), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104599] = 2, + ACTIONS(37674), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104607] = 2, + ACTIONS(37676), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104615] = 2, + ACTIONS(37678), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104623] = 2, + ACTIONS(37680), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104631] = 2, + ACTIONS(37682), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104639] = 2, + ACTIONS(37684), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104647] = 2, + ACTIONS(37686), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104655] = 2, + ACTIONS(37688), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104663] = 2, + ACTIONS(37690), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104671] = 2, + ACTIONS(37692), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104679] = 2, + ACTIONS(37694), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104687] = 2, + ACTIONS(16094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104695] = 2, + ACTIONS(37696), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104703] = 2, + ACTIONS(37698), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104711] = 2, + ACTIONS(37700), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104719] = 2, + ACTIONS(37702), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104727] = 2, + ACTIONS(37704), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104735] = 2, + ACTIONS(37706), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104743] = 2, + ACTIONS(37708), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104751] = 2, + ACTIONS(37710), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104759] = 2, + ACTIONS(37712), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104767] = 2, + ACTIONS(37714), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104775] = 2, + ACTIONS(37716), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104783] = 2, + ACTIONS(37718), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104791] = 2, + ACTIONS(37720), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104799] = 2, + ACTIONS(37722), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104807] = 2, + ACTIONS(37724), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104815] = 2, + ACTIONS(37726), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104823] = 2, + ACTIONS(37728), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104831] = 2, + ACTIONS(37730), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104839] = 2, + ACTIONS(37732), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104847] = 2, + ACTIONS(37734), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104855] = 2, + ACTIONS(37736), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104863] = 2, + ACTIONS(16681), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104871] = 2, + ACTIONS(37738), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104879] = 2, + ACTIONS(37740), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104887] = 2, + ACTIONS(37742), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104895] = 2, + ACTIONS(37744), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104903] = 2, + ACTIONS(37746), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104911] = 2, + ACTIONS(37748), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104919] = 2, + ACTIONS(37750), 1, + sym__alphaAlphaNumeric_ident, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104927] = 2, + ACTIONS(37752), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104935] = 2, + ACTIONS(37754), 1, + anon_sym_End, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104943] = 2, + ACTIONS(37756), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104951] = 2, + ACTIONS(37758), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104959] = 2, + ACTIONS(37760), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104967] = 2, + ACTIONS(37762), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104975] = 2, + ACTIONS(37764), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104983] = 2, + ACTIONS(37766), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104991] = 2, + ACTIONS(37768), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1104999] = 2, + ACTIONS(37770), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105007] = 2, + ACTIONS(37772), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105015] = 2, + ACTIONS(37774), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105023] = 2, + ACTIONS(37776), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105031] = 2, + ACTIONS(21765), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105039] = 2, + ACTIONS(37778), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105047] = 2, + ACTIONS(37780), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105055] = 2, + ACTIONS(37782), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105063] = 2, + ACTIONS(37784), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105071] = 2, + ACTIONS(37786), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105079] = 2, + ACTIONS(37788), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105087] = 2, + ACTIONS(37790), 1, + anon_sym_with, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105095] = 2, + ACTIONS(37792), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105103] = 2, + ACTIONS(37794), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105111] = 2, + ACTIONS(37796), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105119] = 2, + ACTIONS(37798), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105127] = 2, + ACTIONS(37800), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105135] = 2, + ACTIONS(37802), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105143] = 2, + ACTIONS(37804), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105151] = 2, + ACTIONS(37806), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105159] = 2, + ACTIONS(37808), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105167] = 2, + ACTIONS(37810), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105175] = 2, + ACTIONS(37812), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105183] = 2, + ACTIONS(37814), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105191] = 2, + ACTIONS(37816), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105199] = 2, + ACTIONS(37818), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105207] = 2, + ACTIONS(37820), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105215] = 2, + ACTIONS(37822), 1, + anon_sym_End, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105223] = 2, + ACTIONS(37824), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105231] = 2, + ACTIONS(37826), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105239] = 2, + ACTIONS(37828), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105247] = 2, + ACTIONS(21698), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105255] = 2, + ACTIONS(37830), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105263] = 2, + ACTIONS(37832), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105271] = 2, + ACTIONS(37834), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105279] = 2, + ACTIONS(37836), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105287] = 2, + ACTIONS(37838), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105295] = 2, + ACTIONS(37840), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105303] = 2, + ACTIONS(37842), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105311] = 2, + ACTIONS(37844), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105319] = 2, + ACTIONS(37846), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105327] = 2, + ACTIONS(37848), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105335] = 2, + ACTIONS(37850), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105343] = 2, + ACTIONS(37852), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105351] = 2, + ACTIONS(37854), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105359] = 2, + ACTIONS(37856), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105367] = 2, + ACTIONS(37858), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105375] = 2, + ACTIONS(37860), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105383] = 2, + ACTIONS(37862), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105391] = 2, + ACTIONS(37864), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105399] = 2, + ACTIONS(37866), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105407] = 2, + ACTIONS(37868), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105415] = 2, + ACTIONS(37870), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105423] = 2, + ACTIONS(37872), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105431] = 2, + ACTIONS(37874), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105439] = 2, + ACTIONS(37876), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105447] = 2, + ACTIONS(37878), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105455] = 2, + ACTIONS(37880), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105463] = 2, + ACTIONS(37882), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105471] = 2, + ACTIONS(37884), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105479] = 2, + ACTIONS(37886), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105487] = 2, + ACTIONS(37888), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105495] = 2, + ACTIONS(37890), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105503] = 2, + ACTIONS(37892), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105511] = 2, + ACTIONS(37894), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105519] = 2, + ACTIONS(37896), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105527] = 2, + ACTIONS(37898), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105535] = 2, + ACTIONS(37900), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105543] = 2, + ACTIONS(21706), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105551] = 2, + ACTIONS(37902), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105559] = 2, + ACTIONS(37904), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105567] = 2, + ACTIONS(37906), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105575] = 2, + ACTIONS(37908), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105583] = 2, + ACTIONS(37910), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105591] = 2, + ACTIONS(37912), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105599] = 2, + ACTIONS(37914), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105607] = 2, + ACTIONS(37916), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105615] = 2, + ACTIONS(37918), 1, + anon_sym_QED, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105623] = 2, + ACTIONS(37920), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105631] = 2, + ACTIONS(37922), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105639] = 2, + ACTIONS(37924), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105647] = 2, + ACTIONS(37926), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105655] = 2, + ACTIONS(37928), 1, + anon_sym_type, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105663] = 2, + ACTIONS(37930), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105671] = 2, + ACTIONS(37932), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105679] = 2, + ACTIONS(37934), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105687] = 2, + ACTIONS(37936), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105695] = 2, + ACTIONS(37938), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105703] = 2, + ACTIONS(37940), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [1105711] = 2, + ACTIONS(37942), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(486)] = 0, + [SMALL_STATE(487)] = 111, + [SMALL_STATE(488)] = 222, + [SMALL_STATE(489)] = 333, + [SMALL_STATE(490)] = 442, + [SMALL_STATE(491)] = 551, + [SMALL_STATE(492)] = 660, + [SMALL_STATE(493)] = 769, + [SMALL_STATE(494)] = 878, + [SMALL_STATE(495)] = 987, + [SMALL_STATE(496)] = 1096, + [SMALL_STATE(497)] = 1205, + [SMALL_STATE(498)] = 1314, + [SMALL_STATE(499)] = 1447, + [SMALL_STATE(500)] = 1580, + [SMALL_STATE(501)] = 1713, + [SMALL_STATE(502)] = 1821, + [SMALL_STATE(503)] = 1929, + [SMALL_STATE(504)] = 2037, + [SMALL_STATE(505)] = 2145, + [SMALL_STATE(506)] = 2253, + [SMALL_STATE(507)] = 2361, + [SMALL_STATE(508)] = 2469, + [SMALL_STATE(509)] = 2577, + [SMALL_STATE(510)] = 2685, + [SMALL_STATE(511)] = 2793, + [SMALL_STATE(512)] = 2901, + [SMALL_STATE(513)] = 3009, + [SMALL_STATE(514)] = 3117, + [SMALL_STATE(515)] = 3225, + [SMALL_STATE(516)] = 3333, + [SMALL_STATE(517)] = 3441, + [SMALL_STATE(518)] = 3549, + [SMALL_STATE(519)] = 3657, + [SMALL_STATE(520)] = 3765, + [SMALL_STATE(521)] = 3873, + [SMALL_STATE(522)] = 3981, + [SMALL_STATE(523)] = 4089, + [SMALL_STATE(524)] = 4197, + [SMALL_STATE(525)] = 4305, + [SMALL_STATE(526)] = 4413, + [SMALL_STATE(527)] = 4521, + [SMALL_STATE(528)] = 4629, + [SMALL_STATE(529)] = 4737, + [SMALL_STATE(530)] = 4845, + [SMALL_STATE(531)] = 4953, + [SMALL_STATE(532)] = 5061, + [SMALL_STATE(533)] = 5169, + [SMALL_STATE(534)] = 5277, + [SMALL_STATE(535)] = 5404, + [SMALL_STATE(536)] = 5511, + [SMALL_STATE(537)] = 5638, + [SMALL_STATE(538)] = 5745, + [SMALL_STATE(539)] = 5852, + [SMALL_STATE(540)] = 5959, + [SMALL_STATE(541)] = 6066, + [SMALL_STATE(542)] = 6173, + [SMALL_STATE(543)] = 6280, + [SMALL_STATE(544)] = 6387, + [SMALL_STATE(545)] = 6494, + [SMALL_STATE(546)] = 6601, + [SMALL_STATE(547)] = 6708, + [SMALL_STATE(548)] = 6815, + [SMALL_STATE(549)] = 6922, + [SMALL_STATE(550)] = 7029, + [SMALL_STATE(551)] = 7136, + [SMALL_STATE(552)] = 7243, + [SMALL_STATE(553)] = 7350, + [SMALL_STATE(554)] = 7457, + [SMALL_STATE(555)] = 7564, + [SMALL_STATE(556)] = 7671, + [SMALL_STATE(557)] = 7778, + [SMALL_STATE(558)] = 7885, + [SMALL_STATE(559)] = 7992, + [SMALL_STATE(560)] = 8099, + [SMALL_STATE(561)] = 8206, + [SMALL_STATE(562)] = 8313, + [SMALL_STATE(563)] = 8420, + [SMALL_STATE(564)] = 8527, + [SMALL_STATE(565)] = 8634, + [SMALL_STATE(566)] = 8741, + [SMALL_STATE(567)] = 8848, + [SMALL_STATE(568)] = 8955, + [SMALL_STATE(569)] = 9062, + [SMALL_STATE(570)] = 9169, + [SMALL_STATE(571)] = 9296, + [SMALL_STATE(572)] = 9403, + [SMALL_STATE(573)] = 9510, + [SMALL_STATE(574)] = 9617, + [SMALL_STATE(575)] = 9724, + [SMALL_STATE(576)] = 9831, + [SMALL_STATE(577)] = 9938, + [SMALL_STATE(578)] = 10065, + [SMALL_STATE(579)] = 10192, + [SMALL_STATE(580)] = 10319, + [SMALL_STATE(581)] = 10446, + [SMALL_STATE(582)] = 10573, + [SMALL_STATE(583)] = 10700, + [SMALL_STATE(584)] = 10827, + [SMALL_STATE(585)] = 10954, + [SMALL_STATE(586)] = 11061, + [SMALL_STATE(587)] = 11168, + [SMALL_STATE(588)] = 11275, + [SMALL_STATE(589)] = 11402, + [SMALL_STATE(590)] = 11529, + [SMALL_STATE(591)] = 11656, + [SMALL_STATE(592)] = 11783, + [SMALL_STATE(593)] = 11910, + [SMALL_STATE(594)] = 12037, + [SMALL_STATE(595)] = 12144, + [SMALL_STATE(596)] = 12271, + [SMALL_STATE(597)] = 12398, + [SMALL_STATE(598)] = 12525, + [SMALL_STATE(599)] = 12652, + [SMALL_STATE(600)] = 12779, + [SMALL_STATE(601)] = 12906, + [SMALL_STATE(602)] = 13033, + [SMALL_STATE(603)] = 13160, + [SMALL_STATE(604)] = 13287, + [SMALL_STATE(605)] = 13414, + [SMALL_STATE(606)] = 13541, + [SMALL_STATE(607)] = 13668, + [SMALL_STATE(608)] = 13795, + [SMALL_STATE(609)] = 13922, + [SMALL_STATE(610)] = 14049, + [SMALL_STATE(611)] = 14176, + [SMALL_STATE(612)] = 14303, + [SMALL_STATE(613)] = 14430, + [SMALL_STATE(614)] = 14557, + [SMALL_STATE(615)] = 14684, + [SMALL_STATE(616)] = 14811, + [SMALL_STATE(617)] = 14938, + [SMALL_STATE(618)] = 15065, + [SMALL_STATE(619)] = 15192, + [SMALL_STATE(620)] = 15319, + [SMALL_STATE(621)] = 15446, + [SMALL_STATE(622)] = 15573, + [SMALL_STATE(623)] = 15700, + [SMALL_STATE(624)] = 15827, + [SMALL_STATE(625)] = 15954, + [SMALL_STATE(626)] = 16081, + [SMALL_STATE(627)] = 16208, + [SMALL_STATE(628)] = 16335, + [SMALL_STATE(629)] = 16462, + [SMALL_STATE(630)] = 16589, + [SMALL_STATE(631)] = 16716, + [SMALL_STATE(632)] = 16843, + [SMALL_STATE(633)] = 16970, + [SMALL_STATE(634)] = 17097, + [SMALL_STATE(635)] = 17224, + [SMALL_STATE(636)] = 17351, + [SMALL_STATE(637)] = 17478, + [SMALL_STATE(638)] = 17605, + [SMALL_STATE(639)] = 17732, + [SMALL_STATE(640)] = 17859, + [SMALL_STATE(641)] = 17986, + [SMALL_STATE(642)] = 18113, + [SMALL_STATE(643)] = 18240, + [SMALL_STATE(644)] = 18367, + [SMALL_STATE(645)] = 18494, + [SMALL_STATE(646)] = 18621, + [SMALL_STATE(647)] = 18748, + [SMALL_STATE(648)] = 18875, + [SMALL_STATE(649)] = 19002, + [SMALL_STATE(650)] = 19129, + [SMALL_STATE(651)] = 19256, + [SMALL_STATE(652)] = 19383, + [SMALL_STATE(653)] = 19510, + [SMALL_STATE(654)] = 19637, + [SMALL_STATE(655)] = 19764, + [SMALL_STATE(656)] = 19891, + [SMALL_STATE(657)] = 20018, + [SMALL_STATE(658)] = 20145, + [SMALL_STATE(659)] = 20272, + [SMALL_STATE(660)] = 20399, + [SMALL_STATE(661)] = 20526, + [SMALL_STATE(662)] = 20653, + [SMALL_STATE(663)] = 20780, + [SMALL_STATE(664)] = 20907, + [SMALL_STATE(665)] = 21034, + [SMALL_STATE(666)] = 21161, + [SMALL_STATE(667)] = 21288, + [SMALL_STATE(668)] = 21415, + [SMALL_STATE(669)] = 21542, + [SMALL_STATE(670)] = 21669, + [SMALL_STATE(671)] = 21796, + [SMALL_STATE(672)] = 21923, + [SMALL_STATE(673)] = 22050, + [SMALL_STATE(674)] = 22177, + [SMALL_STATE(675)] = 22304, + [SMALL_STATE(676)] = 22431, + [SMALL_STATE(677)] = 22558, + [SMALL_STATE(678)] = 22685, + [SMALL_STATE(679)] = 22812, + [SMALL_STATE(680)] = 22939, + [SMALL_STATE(681)] = 23066, + [SMALL_STATE(682)] = 23193, + [SMALL_STATE(683)] = 23320, + [SMALL_STATE(684)] = 23447, + [SMALL_STATE(685)] = 23574, + [SMALL_STATE(686)] = 23701, + [SMALL_STATE(687)] = 23828, + [SMALL_STATE(688)] = 23955, + [SMALL_STATE(689)] = 24082, + [SMALL_STATE(690)] = 24209, + [SMALL_STATE(691)] = 24336, + [SMALL_STATE(692)] = 24463, + [SMALL_STATE(693)] = 24590, + [SMALL_STATE(694)] = 24717, + [SMALL_STATE(695)] = 24844, + [SMALL_STATE(696)] = 24971, + [SMALL_STATE(697)] = 25098, + [SMALL_STATE(698)] = 25225, + [SMALL_STATE(699)] = 25352, + [SMALL_STATE(700)] = 25479, + [SMALL_STATE(701)] = 25606, + [SMALL_STATE(702)] = 25733, + [SMALL_STATE(703)] = 25860, + [SMALL_STATE(704)] = 25987, + [SMALL_STATE(705)] = 26114, + [SMALL_STATE(706)] = 26241, + [SMALL_STATE(707)] = 26368, + [SMALL_STATE(708)] = 26495, + [SMALL_STATE(709)] = 26622, + [SMALL_STATE(710)] = 26749, + [SMALL_STATE(711)] = 26876, + [SMALL_STATE(712)] = 27003, + [SMALL_STATE(713)] = 27130, + [SMALL_STATE(714)] = 27257, + [SMALL_STATE(715)] = 27384, + [SMALL_STATE(716)] = 27511, + [SMALL_STATE(717)] = 27638, + [SMALL_STATE(718)] = 27765, + [SMALL_STATE(719)] = 27892, + [SMALL_STATE(720)] = 28019, + [SMALL_STATE(721)] = 28146, + [SMALL_STATE(722)] = 28273, + [SMALL_STATE(723)] = 28400, + [SMALL_STATE(724)] = 28527, + [SMALL_STATE(725)] = 28654, + [SMALL_STATE(726)] = 28781, + [SMALL_STATE(727)] = 28908, + [SMALL_STATE(728)] = 29035, + [SMALL_STATE(729)] = 29162, + [SMALL_STATE(730)] = 29289, + [SMALL_STATE(731)] = 29416, + [SMALL_STATE(732)] = 29543, + [SMALL_STATE(733)] = 29670, + [SMALL_STATE(734)] = 29797, + [SMALL_STATE(735)] = 29924, + [SMALL_STATE(736)] = 30051, + [SMALL_STATE(737)] = 30178, + [SMALL_STATE(738)] = 30305, + [SMALL_STATE(739)] = 30432, + [SMALL_STATE(740)] = 30559, + [SMALL_STATE(741)] = 30686, + [SMALL_STATE(742)] = 30813, + [SMALL_STATE(743)] = 30940, + [SMALL_STATE(744)] = 31067, + [SMALL_STATE(745)] = 31194, + [SMALL_STATE(746)] = 31321, + [SMALL_STATE(747)] = 31448, + [SMALL_STATE(748)] = 31575, + [SMALL_STATE(749)] = 31702, + [SMALL_STATE(750)] = 31829, + [SMALL_STATE(751)] = 31956, + [SMALL_STATE(752)] = 32083, + [SMALL_STATE(753)] = 32210, + [SMALL_STATE(754)] = 32337, + [SMALL_STATE(755)] = 32464, + [SMALL_STATE(756)] = 32591, + [SMALL_STATE(757)] = 32718, + [SMALL_STATE(758)] = 32845, + [SMALL_STATE(759)] = 32972, + [SMALL_STATE(760)] = 33099, + [SMALL_STATE(761)] = 33226, + [SMALL_STATE(762)] = 33353, + [SMALL_STATE(763)] = 33480, + [SMALL_STATE(764)] = 33607, + [SMALL_STATE(765)] = 33734, + [SMALL_STATE(766)] = 33861, + [SMALL_STATE(767)] = 33988, + [SMALL_STATE(768)] = 34115, + [SMALL_STATE(769)] = 34242, + [SMALL_STATE(770)] = 34369, + [SMALL_STATE(771)] = 34496, + [SMALL_STATE(772)] = 34623, + [SMALL_STATE(773)] = 34750, + [SMALL_STATE(774)] = 34877, + [SMALL_STATE(775)] = 35004, + [SMALL_STATE(776)] = 35131, + [SMALL_STATE(777)] = 35258, + [SMALL_STATE(778)] = 35385, + [SMALL_STATE(779)] = 35512, + [SMALL_STATE(780)] = 35639, + [SMALL_STATE(781)] = 35766, + [SMALL_STATE(782)] = 35893, + [SMALL_STATE(783)] = 36020, + [SMALL_STATE(784)] = 36147, + [SMALL_STATE(785)] = 36274, + [SMALL_STATE(786)] = 36401, + [SMALL_STATE(787)] = 36528, + [SMALL_STATE(788)] = 36655, + [SMALL_STATE(789)] = 36782, + [SMALL_STATE(790)] = 36909, + [SMALL_STATE(791)] = 37036, + [SMALL_STATE(792)] = 37163, + [SMALL_STATE(793)] = 37290, + [SMALL_STATE(794)] = 37417, + [SMALL_STATE(795)] = 37544, + [SMALL_STATE(796)] = 37671, + [SMALL_STATE(797)] = 37798, + [SMALL_STATE(798)] = 37925, + [SMALL_STATE(799)] = 38052, + [SMALL_STATE(800)] = 38179, + [SMALL_STATE(801)] = 38306, + [SMALL_STATE(802)] = 38433, + [SMALL_STATE(803)] = 38560, + [SMALL_STATE(804)] = 38687, + [SMALL_STATE(805)] = 38814, + [SMALL_STATE(806)] = 38941, + [SMALL_STATE(807)] = 39068, + [SMALL_STATE(808)] = 39195, + [SMALL_STATE(809)] = 39322, + [SMALL_STATE(810)] = 39449, + [SMALL_STATE(811)] = 39576, + [SMALL_STATE(812)] = 39703, + [SMALL_STATE(813)] = 39830, + [SMALL_STATE(814)] = 39957, + [SMALL_STATE(815)] = 40084, + [SMALL_STATE(816)] = 40211, + [SMALL_STATE(817)] = 40338, + [SMALL_STATE(818)] = 40465, + [SMALL_STATE(819)] = 40592, + [SMALL_STATE(820)] = 40719, + [SMALL_STATE(821)] = 40846, + [SMALL_STATE(822)] = 40973, + [SMALL_STATE(823)] = 41100, + [SMALL_STATE(824)] = 41227, + [SMALL_STATE(825)] = 41354, + [SMALL_STATE(826)] = 41481, + [SMALL_STATE(827)] = 41608, + [SMALL_STATE(828)] = 41735, + [SMALL_STATE(829)] = 41862, + [SMALL_STATE(830)] = 41989, + [SMALL_STATE(831)] = 42116, + [SMALL_STATE(832)] = 42243, + [SMALL_STATE(833)] = 42370, + [SMALL_STATE(834)] = 42497, + [SMALL_STATE(835)] = 42624, + [SMALL_STATE(836)] = 42751, + [SMALL_STATE(837)] = 42878, + [SMALL_STATE(838)] = 43005, + [SMALL_STATE(839)] = 43132, + [SMALL_STATE(840)] = 43259, + [SMALL_STATE(841)] = 43386, + [SMALL_STATE(842)] = 43513, + [SMALL_STATE(843)] = 43640, + [SMALL_STATE(844)] = 43767, + [SMALL_STATE(845)] = 43894, + [SMALL_STATE(846)] = 44021, + [SMALL_STATE(847)] = 44148, + [SMALL_STATE(848)] = 44275, + [SMALL_STATE(849)] = 44402, + [SMALL_STATE(850)] = 44529, + [SMALL_STATE(851)] = 44656, + [SMALL_STATE(852)] = 44783, + [SMALL_STATE(853)] = 44910, + [SMALL_STATE(854)] = 45037, + [SMALL_STATE(855)] = 45164, + [SMALL_STATE(856)] = 45291, + [SMALL_STATE(857)] = 45418, + [SMALL_STATE(858)] = 45545, + [SMALL_STATE(859)] = 45672, + [SMALL_STATE(860)] = 45799, + [SMALL_STATE(861)] = 45926, + [SMALL_STATE(862)] = 46053, + [SMALL_STATE(863)] = 46180, + [SMALL_STATE(864)] = 46307, + [SMALL_STATE(865)] = 46434, + [SMALL_STATE(866)] = 46561, + [SMALL_STATE(867)] = 46688, + [SMALL_STATE(868)] = 46815, + [SMALL_STATE(869)] = 46942, + [SMALL_STATE(870)] = 47069, + [SMALL_STATE(871)] = 47196, + [SMALL_STATE(872)] = 47323, + [SMALL_STATE(873)] = 47450, + [SMALL_STATE(874)] = 47577, + [SMALL_STATE(875)] = 47704, + [SMALL_STATE(876)] = 47831, + [SMALL_STATE(877)] = 47958, + [SMALL_STATE(878)] = 48085, + [SMALL_STATE(879)] = 48212, + [SMALL_STATE(880)] = 48339, + [SMALL_STATE(881)] = 48466, + [SMALL_STATE(882)] = 48593, + [SMALL_STATE(883)] = 48720, + [SMALL_STATE(884)] = 48847, + [SMALL_STATE(885)] = 48974, + [SMALL_STATE(886)] = 49101, + [SMALL_STATE(887)] = 49228, + [SMALL_STATE(888)] = 49355, + [SMALL_STATE(889)] = 49482, + [SMALL_STATE(890)] = 49609, + [SMALL_STATE(891)] = 49736, + [SMALL_STATE(892)] = 49863, + [SMALL_STATE(893)] = 49990, + [SMALL_STATE(894)] = 50117, + [SMALL_STATE(895)] = 50244, + [SMALL_STATE(896)] = 50371, + [SMALL_STATE(897)] = 50498, + [SMALL_STATE(898)] = 50625, + [SMALL_STATE(899)] = 50752, + [SMALL_STATE(900)] = 50879, + [SMALL_STATE(901)] = 51006, + [SMALL_STATE(902)] = 51133, + [SMALL_STATE(903)] = 51260, + [SMALL_STATE(904)] = 51387, + [SMALL_STATE(905)] = 51514, + [SMALL_STATE(906)] = 51641, + [SMALL_STATE(907)] = 51768, + [SMALL_STATE(908)] = 51895, + [SMALL_STATE(909)] = 52022, + [SMALL_STATE(910)] = 52149, + [SMALL_STATE(911)] = 52276, + [SMALL_STATE(912)] = 52403, + [SMALL_STATE(913)] = 52530, + [SMALL_STATE(914)] = 52657, + [SMALL_STATE(915)] = 52784, + [SMALL_STATE(916)] = 52911, + [SMALL_STATE(917)] = 53038, + [SMALL_STATE(918)] = 53165, + [SMALL_STATE(919)] = 53292, + [SMALL_STATE(920)] = 53419, + [SMALL_STATE(921)] = 53546, + [SMALL_STATE(922)] = 53673, + [SMALL_STATE(923)] = 53800, + [SMALL_STATE(924)] = 53927, + [SMALL_STATE(925)] = 54054, + [SMALL_STATE(926)] = 54181, + [SMALL_STATE(927)] = 54308, + [SMALL_STATE(928)] = 54435, + [SMALL_STATE(929)] = 54562, + [SMALL_STATE(930)] = 54689, + [SMALL_STATE(931)] = 54816, + [SMALL_STATE(932)] = 54943, + [SMALL_STATE(933)] = 55070, + [SMALL_STATE(934)] = 55197, + [SMALL_STATE(935)] = 55324, + [SMALL_STATE(936)] = 55451, + [SMALL_STATE(937)] = 55578, + [SMALL_STATE(938)] = 55705, + [SMALL_STATE(939)] = 55832, + [SMALL_STATE(940)] = 55959, + [SMALL_STATE(941)] = 56086, + [SMALL_STATE(942)] = 56213, + [SMALL_STATE(943)] = 56340, + [SMALL_STATE(944)] = 56467, + [SMALL_STATE(945)] = 56594, + [SMALL_STATE(946)] = 56721, + [SMALL_STATE(947)] = 56848, + [SMALL_STATE(948)] = 56975, + [SMALL_STATE(949)] = 57102, + [SMALL_STATE(950)] = 57229, + [SMALL_STATE(951)] = 57356, + [SMALL_STATE(952)] = 57483, + [SMALL_STATE(953)] = 57610, + [SMALL_STATE(954)] = 57737, + [SMALL_STATE(955)] = 57864, + [SMALL_STATE(956)] = 57991, + [SMALL_STATE(957)] = 58118, + [SMALL_STATE(958)] = 58245, + [SMALL_STATE(959)] = 58372, + [SMALL_STATE(960)] = 58499, + [SMALL_STATE(961)] = 58626, + [SMALL_STATE(962)] = 58753, + [SMALL_STATE(963)] = 58880, + [SMALL_STATE(964)] = 59007, + [SMALL_STATE(965)] = 59134, + [SMALL_STATE(966)] = 59261, + [SMALL_STATE(967)] = 59388, + [SMALL_STATE(968)] = 59515, + [SMALL_STATE(969)] = 59642, + [SMALL_STATE(970)] = 59769, + [SMALL_STATE(971)] = 59896, + [SMALL_STATE(972)] = 60023, + [SMALL_STATE(973)] = 60150, + [SMALL_STATE(974)] = 60277, + [SMALL_STATE(975)] = 60404, + [SMALL_STATE(976)] = 60531, + [SMALL_STATE(977)] = 60658, + [SMALL_STATE(978)] = 60785, + [SMALL_STATE(979)] = 60912, + [SMALL_STATE(980)] = 61039, + [SMALL_STATE(981)] = 61166, + [SMALL_STATE(982)] = 61293, + [SMALL_STATE(983)] = 61420, + [SMALL_STATE(984)] = 61547, + [SMALL_STATE(985)] = 61674, + [SMALL_STATE(986)] = 61801, + [SMALL_STATE(987)] = 61928, + [SMALL_STATE(988)] = 62055, + [SMALL_STATE(989)] = 62182, + [SMALL_STATE(990)] = 62309, + [SMALL_STATE(991)] = 62436, + [SMALL_STATE(992)] = 62563, + [SMALL_STATE(993)] = 62690, + [SMALL_STATE(994)] = 62817, + [SMALL_STATE(995)] = 62944, + [SMALL_STATE(996)] = 63071, + [SMALL_STATE(997)] = 63198, + [SMALL_STATE(998)] = 63325, + [SMALL_STATE(999)] = 63452, + [SMALL_STATE(1000)] = 63579, + [SMALL_STATE(1001)] = 63706, + [SMALL_STATE(1002)] = 63833, + [SMALL_STATE(1003)] = 63960, + [SMALL_STATE(1004)] = 64087, + [SMALL_STATE(1005)] = 64214, + [SMALL_STATE(1006)] = 64341, + [SMALL_STATE(1007)] = 64468, + [SMALL_STATE(1008)] = 64595, + [SMALL_STATE(1009)] = 64722, + [SMALL_STATE(1010)] = 64849, + [SMALL_STATE(1011)] = 64976, + [SMALL_STATE(1012)] = 65103, + [SMALL_STATE(1013)] = 65230, + [SMALL_STATE(1014)] = 65357, + [SMALL_STATE(1015)] = 65484, + [SMALL_STATE(1016)] = 65611, + [SMALL_STATE(1017)] = 65738, + [SMALL_STATE(1018)] = 65865, + [SMALL_STATE(1019)] = 65992, + [SMALL_STATE(1020)] = 66119, + [SMALL_STATE(1021)] = 66246, + [SMALL_STATE(1022)] = 66373, + [SMALL_STATE(1023)] = 66500, + [SMALL_STATE(1024)] = 66627, + [SMALL_STATE(1025)] = 66754, + [SMALL_STATE(1026)] = 66881, + [SMALL_STATE(1027)] = 67008, + [SMALL_STATE(1028)] = 67135, + [SMALL_STATE(1029)] = 67262, + [SMALL_STATE(1030)] = 67389, + [SMALL_STATE(1031)] = 67516, + [SMALL_STATE(1032)] = 67643, + [SMALL_STATE(1033)] = 67770, + [SMALL_STATE(1034)] = 67897, + [SMALL_STATE(1035)] = 68024, + [SMALL_STATE(1036)] = 68151, + [SMALL_STATE(1037)] = 68278, + [SMALL_STATE(1038)] = 68405, + [SMALL_STATE(1039)] = 68532, + [SMALL_STATE(1040)] = 68659, + [SMALL_STATE(1041)] = 68786, + [SMALL_STATE(1042)] = 68913, + [SMALL_STATE(1043)] = 69040, + [SMALL_STATE(1044)] = 69167, + [SMALL_STATE(1045)] = 69294, + [SMALL_STATE(1046)] = 69421, + [SMALL_STATE(1047)] = 69548, + [SMALL_STATE(1048)] = 69675, + [SMALL_STATE(1049)] = 69802, + [SMALL_STATE(1050)] = 69929, + [SMALL_STATE(1051)] = 70056, + [SMALL_STATE(1052)] = 70183, + [SMALL_STATE(1053)] = 70310, + [SMALL_STATE(1054)] = 70437, + [SMALL_STATE(1055)] = 70564, + [SMALL_STATE(1056)] = 70691, + [SMALL_STATE(1057)] = 70818, + [SMALL_STATE(1058)] = 70945, + [SMALL_STATE(1059)] = 71072, + [SMALL_STATE(1060)] = 71199, + [SMALL_STATE(1061)] = 71326, + [SMALL_STATE(1062)] = 71453, + [SMALL_STATE(1063)] = 71580, + [SMALL_STATE(1064)] = 71707, + [SMALL_STATE(1065)] = 71834, + [SMALL_STATE(1066)] = 71961, + [SMALL_STATE(1067)] = 72088, + [SMALL_STATE(1068)] = 72215, + [SMALL_STATE(1069)] = 72342, + [SMALL_STATE(1070)] = 72469, + [SMALL_STATE(1071)] = 72596, + [SMALL_STATE(1072)] = 72723, + [SMALL_STATE(1073)] = 72850, + [SMALL_STATE(1074)] = 72977, + [SMALL_STATE(1075)] = 73104, + [SMALL_STATE(1076)] = 73231, + [SMALL_STATE(1077)] = 73358, + [SMALL_STATE(1078)] = 73485, + [SMALL_STATE(1079)] = 73612, + [SMALL_STATE(1080)] = 73739, + [SMALL_STATE(1081)] = 73866, + [SMALL_STATE(1082)] = 73973, + [SMALL_STATE(1083)] = 74100, + [SMALL_STATE(1084)] = 74206, + [SMALL_STATE(1085)] = 74312, + [SMALL_STATE(1086)] = 74418, + [SMALL_STATE(1087)] = 74524, + [SMALL_STATE(1088)] = 74630, + [SMALL_STATE(1089)] = 74736, + [SMALL_STATE(1090)] = 74842, + [SMALL_STATE(1091)] = 74948, + [SMALL_STATE(1092)] = 75054, + [SMALL_STATE(1093)] = 75160, + [SMALL_STATE(1094)] = 75266, + [SMALL_STATE(1095)] = 75372, + [SMALL_STATE(1096)] = 75478, + [SMALL_STATE(1097)] = 75584, + [SMALL_STATE(1098)] = 75690, + [SMALL_STATE(1099)] = 75796, + [SMALL_STATE(1100)] = 75902, + [SMALL_STATE(1101)] = 76008, + [SMALL_STATE(1102)] = 76114, + [SMALL_STATE(1103)] = 76220, + [SMALL_STATE(1104)] = 76326, + [SMALL_STATE(1105)] = 76432, + [SMALL_STATE(1106)] = 76538, + [SMALL_STATE(1107)] = 76644, + [SMALL_STATE(1108)] = 76750, + [SMALL_STATE(1109)] = 76856, + [SMALL_STATE(1110)] = 76962, + [SMALL_STATE(1111)] = 77083, + [SMALL_STATE(1112)] = 77204, + [SMALL_STATE(1113)] = 77325, + [SMALL_STATE(1114)] = 77446, + [SMALL_STATE(1115)] = 77551, + [SMALL_STATE(1116)] = 77656, + [SMALL_STATE(1117)] = 77761, + [SMALL_STATE(1118)] = 77882, + [SMALL_STATE(1119)] = 78003, + [SMALL_STATE(1120)] = 78124, + [SMALL_STATE(1121)] = 78245, + [SMALL_STATE(1122)] = 78366, + [SMALL_STATE(1123)] = 78487, + [SMALL_STATE(1124)] = 78608, + [SMALL_STATE(1125)] = 78729, + [SMALL_STATE(1126)] = 78850, + [SMALL_STATE(1127)] = 78971, + [SMALL_STATE(1128)] = 79092, + [SMALL_STATE(1129)] = 79213, + [SMALL_STATE(1130)] = 79334, + [SMALL_STATE(1131)] = 79455, + [SMALL_STATE(1132)] = 79576, + [SMALL_STATE(1133)] = 79697, + [SMALL_STATE(1134)] = 79818, + [SMALL_STATE(1135)] = 79939, + [SMALL_STATE(1136)] = 80060, + [SMALL_STATE(1137)] = 80181, + [SMALL_STATE(1138)] = 80302, + [SMALL_STATE(1139)] = 80423, + [SMALL_STATE(1140)] = 80544, + [SMALL_STATE(1141)] = 80665, + [SMALL_STATE(1142)] = 80786, + [SMALL_STATE(1143)] = 80907, + [SMALL_STATE(1144)] = 81028, + [SMALL_STATE(1145)] = 81149, + [SMALL_STATE(1146)] = 81270, + [SMALL_STATE(1147)] = 81391, + [SMALL_STATE(1148)] = 81512, + [SMALL_STATE(1149)] = 81633, + [SMALL_STATE(1150)] = 81754, + [SMALL_STATE(1151)] = 81875, + [SMALL_STATE(1152)] = 81996, + [SMALL_STATE(1153)] = 82117, + [SMALL_STATE(1154)] = 82238, + [SMALL_STATE(1155)] = 82359, + [SMALL_STATE(1156)] = 82480, + [SMALL_STATE(1157)] = 82601, + [SMALL_STATE(1158)] = 82722, + [SMALL_STATE(1159)] = 82843, + [SMALL_STATE(1160)] = 82964, + [SMALL_STATE(1161)] = 83085, + [SMALL_STATE(1162)] = 83206, + [SMALL_STATE(1163)] = 83327, + [SMALL_STATE(1164)] = 83448, + [SMALL_STATE(1165)] = 83569, + [SMALL_STATE(1166)] = 83690, + [SMALL_STATE(1167)] = 83811, + [SMALL_STATE(1168)] = 83932, + [SMALL_STATE(1169)] = 84053, + [SMALL_STATE(1170)] = 84174, + [SMALL_STATE(1171)] = 84295, + [SMALL_STATE(1172)] = 84416, + [SMALL_STATE(1173)] = 84537, + [SMALL_STATE(1174)] = 84658, + [SMALL_STATE(1175)] = 84779, + [SMALL_STATE(1176)] = 84900, + [SMALL_STATE(1177)] = 85021, + [SMALL_STATE(1178)] = 85142, + [SMALL_STATE(1179)] = 85263, + [SMALL_STATE(1180)] = 85384, + [SMALL_STATE(1181)] = 85505, + [SMALL_STATE(1182)] = 85626, + [SMALL_STATE(1183)] = 85747, + [SMALL_STATE(1184)] = 85868, + [SMALL_STATE(1185)] = 85989, + [SMALL_STATE(1186)] = 86110, + [SMALL_STATE(1187)] = 86231, + [SMALL_STATE(1188)] = 86352, + [SMALL_STATE(1189)] = 86473, + [SMALL_STATE(1190)] = 86594, + [SMALL_STATE(1191)] = 86715, + [SMALL_STATE(1192)] = 86836, + [SMALL_STATE(1193)] = 86957, + [SMALL_STATE(1194)] = 87078, + [SMALL_STATE(1195)] = 87199, + [SMALL_STATE(1196)] = 87320, + [SMALL_STATE(1197)] = 87441, + [SMALL_STATE(1198)] = 87562, + [SMALL_STATE(1199)] = 87683, + [SMALL_STATE(1200)] = 87804, + [SMALL_STATE(1201)] = 87925, + [SMALL_STATE(1202)] = 88046, + [SMALL_STATE(1203)] = 88167, + [SMALL_STATE(1204)] = 88288, + [SMALL_STATE(1205)] = 88409, + [SMALL_STATE(1206)] = 88530, + [SMALL_STATE(1207)] = 88651, + [SMALL_STATE(1208)] = 88772, + [SMALL_STATE(1209)] = 88893, + [SMALL_STATE(1210)] = 89014, + [SMALL_STATE(1211)] = 89135, + [SMALL_STATE(1212)] = 89256, + [SMALL_STATE(1213)] = 89377, + [SMALL_STATE(1214)] = 89498, + [SMALL_STATE(1215)] = 89619, + [SMALL_STATE(1216)] = 89740, + [SMALL_STATE(1217)] = 89861, + [SMALL_STATE(1218)] = 89982, + [SMALL_STATE(1219)] = 90103, + [SMALL_STATE(1220)] = 90224, + [SMALL_STATE(1221)] = 90345, + [SMALL_STATE(1222)] = 90466, + [SMALL_STATE(1223)] = 90587, + [SMALL_STATE(1224)] = 90708, + [SMALL_STATE(1225)] = 90829, + [SMALL_STATE(1226)] = 90950, + [SMALL_STATE(1227)] = 91071, + [SMALL_STATE(1228)] = 91192, + [SMALL_STATE(1229)] = 91313, + [SMALL_STATE(1230)] = 91434, + [SMALL_STATE(1231)] = 91555, + [SMALL_STATE(1232)] = 91676, + [SMALL_STATE(1233)] = 91797, + [SMALL_STATE(1234)] = 91918, + [SMALL_STATE(1235)] = 92039, + [SMALL_STATE(1236)] = 92160, + [SMALL_STATE(1237)] = 92281, + [SMALL_STATE(1238)] = 92402, + [SMALL_STATE(1239)] = 92523, + [SMALL_STATE(1240)] = 92644, + [SMALL_STATE(1241)] = 92765, + [SMALL_STATE(1242)] = 92886, + [SMALL_STATE(1243)] = 93007, + [SMALL_STATE(1244)] = 93128, + [SMALL_STATE(1245)] = 93249, + [SMALL_STATE(1246)] = 93370, + [SMALL_STATE(1247)] = 93491, + [SMALL_STATE(1248)] = 93612, + [SMALL_STATE(1249)] = 93733, + [SMALL_STATE(1250)] = 93854, + [SMALL_STATE(1251)] = 93975, + [SMALL_STATE(1252)] = 94096, + [SMALL_STATE(1253)] = 94217, + [SMALL_STATE(1254)] = 94338, + [SMALL_STATE(1255)] = 94459, + [SMALL_STATE(1256)] = 94580, + [SMALL_STATE(1257)] = 94701, + [SMALL_STATE(1258)] = 94822, + [SMALL_STATE(1259)] = 94943, + [SMALL_STATE(1260)] = 95064, + [SMALL_STATE(1261)] = 95185, + [SMALL_STATE(1262)] = 95306, + [SMALL_STATE(1263)] = 95427, + [SMALL_STATE(1264)] = 95548, + [SMALL_STATE(1265)] = 95669, + [SMALL_STATE(1266)] = 95790, + [SMALL_STATE(1267)] = 95911, + [SMALL_STATE(1268)] = 96032, + [SMALL_STATE(1269)] = 96153, + [SMALL_STATE(1270)] = 96274, + [SMALL_STATE(1271)] = 96395, + [SMALL_STATE(1272)] = 96516, + [SMALL_STATE(1273)] = 96637, + [SMALL_STATE(1274)] = 96758, + [SMALL_STATE(1275)] = 96879, + [SMALL_STATE(1276)] = 97000, + [SMALL_STATE(1277)] = 97121, + [SMALL_STATE(1278)] = 97242, + [SMALL_STATE(1279)] = 97363, + [SMALL_STATE(1280)] = 97484, + [SMALL_STATE(1281)] = 97605, + [SMALL_STATE(1282)] = 97726, + [SMALL_STATE(1283)] = 97847, + [SMALL_STATE(1284)] = 97968, + [SMALL_STATE(1285)] = 98089, + [SMALL_STATE(1286)] = 98210, + [SMALL_STATE(1287)] = 98331, + [SMALL_STATE(1288)] = 98452, + [SMALL_STATE(1289)] = 98573, + [SMALL_STATE(1290)] = 98694, + [SMALL_STATE(1291)] = 98815, + [SMALL_STATE(1292)] = 98936, + [SMALL_STATE(1293)] = 99057, + [SMALL_STATE(1294)] = 99178, + [SMALL_STATE(1295)] = 99299, + [SMALL_STATE(1296)] = 99420, + [SMALL_STATE(1297)] = 99541, + [SMALL_STATE(1298)] = 99662, + [SMALL_STATE(1299)] = 99783, + [SMALL_STATE(1300)] = 99904, + [SMALL_STATE(1301)] = 100025, + [SMALL_STATE(1302)] = 100146, + [SMALL_STATE(1303)] = 100267, + [SMALL_STATE(1304)] = 100388, + [SMALL_STATE(1305)] = 100509, + [SMALL_STATE(1306)] = 100630, + [SMALL_STATE(1307)] = 100751, + [SMALL_STATE(1308)] = 100872, + [SMALL_STATE(1309)] = 100993, + [SMALL_STATE(1310)] = 101114, + [SMALL_STATE(1311)] = 101235, + [SMALL_STATE(1312)] = 101356, + [SMALL_STATE(1313)] = 101477, + [SMALL_STATE(1314)] = 101598, + [SMALL_STATE(1315)] = 101719, + [SMALL_STATE(1316)] = 101840, + [SMALL_STATE(1317)] = 101961, + [SMALL_STATE(1318)] = 102082, + [SMALL_STATE(1319)] = 102203, + [SMALL_STATE(1320)] = 102324, + [SMALL_STATE(1321)] = 102445, + [SMALL_STATE(1322)] = 102566, + [SMALL_STATE(1323)] = 102687, + [SMALL_STATE(1324)] = 102808, + [SMALL_STATE(1325)] = 102929, + [SMALL_STATE(1326)] = 103050, + [SMALL_STATE(1327)] = 103171, + [SMALL_STATE(1328)] = 103292, + [SMALL_STATE(1329)] = 103413, + [SMALL_STATE(1330)] = 103534, + [SMALL_STATE(1331)] = 103655, + [SMALL_STATE(1332)] = 103776, + [SMALL_STATE(1333)] = 103897, + [SMALL_STATE(1334)] = 104018, + [SMALL_STATE(1335)] = 104139, + [SMALL_STATE(1336)] = 104260, + [SMALL_STATE(1337)] = 104381, + [SMALL_STATE(1338)] = 104502, + [SMALL_STATE(1339)] = 104623, + [SMALL_STATE(1340)] = 104744, + [SMALL_STATE(1341)] = 104865, + [SMALL_STATE(1342)] = 104986, + [SMALL_STATE(1343)] = 105107, + [SMALL_STATE(1344)] = 105228, + [SMALL_STATE(1345)] = 105349, + [SMALL_STATE(1346)] = 105470, + [SMALL_STATE(1347)] = 105591, + [SMALL_STATE(1348)] = 105712, + [SMALL_STATE(1349)] = 105833, + [SMALL_STATE(1350)] = 105954, + [SMALL_STATE(1351)] = 106075, + [SMALL_STATE(1352)] = 106196, + [SMALL_STATE(1353)] = 106317, + [SMALL_STATE(1354)] = 106438, + [SMALL_STATE(1355)] = 106559, + [SMALL_STATE(1356)] = 106680, + [SMALL_STATE(1357)] = 106801, + [SMALL_STATE(1358)] = 106922, + [SMALL_STATE(1359)] = 107043, + [SMALL_STATE(1360)] = 107164, + [SMALL_STATE(1361)] = 107285, + [SMALL_STATE(1362)] = 107406, + [SMALL_STATE(1363)] = 107527, + [SMALL_STATE(1364)] = 107648, + [SMALL_STATE(1365)] = 107769, + [SMALL_STATE(1366)] = 107890, + [SMALL_STATE(1367)] = 108011, + [SMALL_STATE(1368)] = 108132, + [SMALL_STATE(1369)] = 108253, + [SMALL_STATE(1370)] = 108374, + [SMALL_STATE(1371)] = 108495, + [SMALL_STATE(1372)] = 108616, + [SMALL_STATE(1373)] = 108737, + [SMALL_STATE(1374)] = 108858, + [SMALL_STATE(1375)] = 108979, + [SMALL_STATE(1376)] = 109100, + [SMALL_STATE(1377)] = 109221, + [SMALL_STATE(1378)] = 109342, + [SMALL_STATE(1379)] = 109463, + [SMALL_STATE(1380)] = 109584, + [SMALL_STATE(1381)] = 109705, + [SMALL_STATE(1382)] = 109826, + [SMALL_STATE(1383)] = 109947, + [SMALL_STATE(1384)] = 110068, + [SMALL_STATE(1385)] = 110189, + [SMALL_STATE(1386)] = 110310, + [SMALL_STATE(1387)] = 110431, + [SMALL_STATE(1388)] = 110552, + [SMALL_STATE(1389)] = 110673, + [SMALL_STATE(1390)] = 110794, + [SMALL_STATE(1391)] = 110915, + [SMALL_STATE(1392)] = 111036, + [SMALL_STATE(1393)] = 111157, + [SMALL_STATE(1394)] = 111278, + [SMALL_STATE(1395)] = 111399, + [SMALL_STATE(1396)] = 111520, + [SMALL_STATE(1397)] = 111641, + [SMALL_STATE(1398)] = 111762, + [SMALL_STATE(1399)] = 111883, + [SMALL_STATE(1400)] = 112004, + [SMALL_STATE(1401)] = 112125, + [SMALL_STATE(1402)] = 112246, + [SMALL_STATE(1403)] = 112367, + [SMALL_STATE(1404)] = 112488, + [SMALL_STATE(1405)] = 112609, + [SMALL_STATE(1406)] = 112730, + [SMALL_STATE(1407)] = 112851, + [SMALL_STATE(1408)] = 112972, + [SMALL_STATE(1409)] = 113093, + [SMALL_STATE(1410)] = 113214, + [SMALL_STATE(1411)] = 113335, + [SMALL_STATE(1412)] = 113456, + [SMALL_STATE(1413)] = 113577, + [SMALL_STATE(1414)] = 113698, + [SMALL_STATE(1415)] = 113819, + [SMALL_STATE(1416)] = 113940, + [SMALL_STATE(1417)] = 114061, + [SMALL_STATE(1418)] = 114182, + [SMALL_STATE(1419)] = 114303, + [SMALL_STATE(1420)] = 114424, + [SMALL_STATE(1421)] = 114545, + [SMALL_STATE(1422)] = 114666, + [SMALL_STATE(1423)] = 114787, + [SMALL_STATE(1424)] = 114908, + [SMALL_STATE(1425)] = 115029, + [SMALL_STATE(1426)] = 115150, + [SMALL_STATE(1427)] = 115271, + [SMALL_STATE(1428)] = 115392, + [SMALL_STATE(1429)] = 115513, + [SMALL_STATE(1430)] = 115634, + [SMALL_STATE(1431)] = 115755, + [SMALL_STATE(1432)] = 115876, + [SMALL_STATE(1433)] = 115997, + [SMALL_STATE(1434)] = 116118, + [SMALL_STATE(1435)] = 116239, + [SMALL_STATE(1436)] = 116360, + [SMALL_STATE(1437)] = 116481, + [SMALL_STATE(1438)] = 116602, + [SMALL_STATE(1439)] = 116723, + [SMALL_STATE(1440)] = 116844, + [SMALL_STATE(1441)] = 116965, + [SMALL_STATE(1442)] = 117086, + [SMALL_STATE(1443)] = 117207, + [SMALL_STATE(1444)] = 117328, + [SMALL_STATE(1445)] = 117449, + [SMALL_STATE(1446)] = 117570, + [SMALL_STATE(1447)] = 117691, + [SMALL_STATE(1448)] = 117812, + [SMALL_STATE(1449)] = 117933, + [SMALL_STATE(1450)] = 118054, + [SMALL_STATE(1451)] = 118175, + [SMALL_STATE(1452)] = 118296, + [SMALL_STATE(1453)] = 118417, + [SMALL_STATE(1454)] = 118538, + [SMALL_STATE(1455)] = 118659, + [SMALL_STATE(1456)] = 118780, + [SMALL_STATE(1457)] = 118901, + [SMALL_STATE(1458)] = 119022, + [SMALL_STATE(1459)] = 119143, + [SMALL_STATE(1460)] = 119264, + [SMALL_STATE(1461)] = 119385, + [SMALL_STATE(1462)] = 119506, + [SMALL_STATE(1463)] = 119627, + [SMALL_STATE(1464)] = 119748, + [SMALL_STATE(1465)] = 119869, + [SMALL_STATE(1466)] = 119990, + [SMALL_STATE(1467)] = 120111, + [SMALL_STATE(1468)] = 120232, + [SMALL_STATE(1469)] = 120353, + [SMALL_STATE(1470)] = 120474, + [SMALL_STATE(1471)] = 120595, + [SMALL_STATE(1472)] = 120716, + [SMALL_STATE(1473)] = 120837, + [SMALL_STATE(1474)] = 120958, + [SMALL_STATE(1475)] = 121079, + [SMALL_STATE(1476)] = 121200, + [SMALL_STATE(1477)] = 121321, + [SMALL_STATE(1478)] = 121442, + [SMALL_STATE(1479)] = 121563, + [SMALL_STATE(1480)] = 121684, + [SMALL_STATE(1481)] = 121805, + [SMALL_STATE(1482)] = 121926, + [SMALL_STATE(1483)] = 122047, + [SMALL_STATE(1484)] = 122168, + [SMALL_STATE(1485)] = 122289, + [SMALL_STATE(1486)] = 122410, + [SMALL_STATE(1487)] = 122531, + [SMALL_STATE(1488)] = 122652, + [SMALL_STATE(1489)] = 122773, + [SMALL_STATE(1490)] = 122894, + [SMALL_STATE(1491)] = 123015, + [SMALL_STATE(1492)] = 123136, + [SMALL_STATE(1493)] = 123257, + [SMALL_STATE(1494)] = 123378, + [SMALL_STATE(1495)] = 123499, + [SMALL_STATE(1496)] = 123620, + [SMALL_STATE(1497)] = 123741, + [SMALL_STATE(1498)] = 123862, + [SMALL_STATE(1499)] = 123983, + [SMALL_STATE(1500)] = 124104, + [SMALL_STATE(1501)] = 124225, + [SMALL_STATE(1502)] = 124346, + [SMALL_STATE(1503)] = 124467, + [SMALL_STATE(1504)] = 124588, + [SMALL_STATE(1505)] = 124709, + [SMALL_STATE(1506)] = 124830, + [SMALL_STATE(1507)] = 124951, + [SMALL_STATE(1508)] = 125072, + [SMALL_STATE(1509)] = 125193, + [SMALL_STATE(1510)] = 125314, + [SMALL_STATE(1511)] = 125435, + [SMALL_STATE(1512)] = 125556, + [SMALL_STATE(1513)] = 125677, + [SMALL_STATE(1514)] = 125798, + [SMALL_STATE(1515)] = 125919, + [SMALL_STATE(1516)] = 126040, + [SMALL_STATE(1517)] = 126161, + [SMALL_STATE(1518)] = 126282, + [SMALL_STATE(1519)] = 126403, + [SMALL_STATE(1520)] = 126524, + [SMALL_STATE(1521)] = 126645, + [SMALL_STATE(1522)] = 126766, + [SMALL_STATE(1523)] = 126887, + [SMALL_STATE(1524)] = 127008, + [SMALL_STATE(1525)] = 127129, + [SMALL_STATE(1526)] = 127250, + [SMALL_STATE(1527)] = 127371, + [SMALL_STATE(1528)] = 127492, + [SMALL_STATE(1529)] = 127613, + [SMALL_STATE(1530)] = 127734, + [SMALL_STATE(1531)] = 127855, + [SMALL_STATE(1532)] = 127976, + [SMALL_STATE(1533)] = 128097, + [SMALL_STATE(1534)] = 128218, + [SMALL_STATE(1535)] = 128339, + [SMALL_STATE(1536)] = 128460, + [SMALL_STATE(1537)] = 128581, + [SMALL_STATE(1538)] = 128702, + [SMALL_STATE(1539)] = 128823, + [SMALL_STATE(1540)] = 128944, + [SMALL_STATE(1541)] = 129065, + [SMALL_STATE(1542)] = 129186, + [SMALL_STATE(1543)] = 129307, + [SMALL_STATE(1544)] = 129428, + [SMALL_STATE(1545)] = 129549, + [SMALL_STATE(1546)] = 129670, + [SMALL_STATE(1547)] = 129791, + [SMALL_STATE(1548)] = 129912, + [SMALL_STATE(1549)] = 130033, + [SMALL_STATE(1550)] = 130154, + [SMALL_STATE(1551)] = 130275, + [SMALL_STATE(1552)] = 130396, + [SMALL_STATE(1553)] = 130517, + [SMALL_STATE(1554)] = 130638, + [SMALL_STATE(1555)] = 130759, + [SMALL_STATE(1556)] = 130880, + [SMALL_STATE(1557)] = 131001, + [SMALL_STATE(1558)] = 131122, + [SMALL_STATE(1559)] = 131243, + [SMALL_STATE(1560)] = 131364, + [SMALL_STATE(1561)] = 131485, + [SMALL_STATE(1562)] = 131606, + [SMALL_STATE(1563)] = 131727, + [SMALL_STATE(1564)] = 131848, + [SMALL_STATE(1565)] = 131969, + [SMALL_STATE(1566)] = 132090, + [SMALL_STATE(1567)] = 132211, + [SMALL_STATE(1568)] = 132332, + [SMALL_STATE(1569)] = 132453, + [SMALL_STATE(1570)] = 132574, + [SMALL_STATE(1571)] = 132695, + [SMALL_STATE(1572)] = 132816, + [SMALL_STATE(1573)] = 132937, + [SMALL_STATE(1574)] = 133058, + [SMALL_STATE(1575)] = 133179, + [SMALL_STATE(1576)] = 133300, + [SMALL_STATE(1577)] = 133421, + [SMALL_STATE(1578)] = 133542, + [SMALL_STATE(1579)] = 133663, + [SMALL_STATE(1580)] = 133784, + [SMALL_STATE(1581)] = 133905, + [SMALL_STATE(1582)] = 134026, + [SMALL_STATE(1583)] = 134147, + [SMALL_STATE(1584)] = 134268, + [SMALL_STATE(1585)] = 134389, + [SMALL_STATE(1586)] = 134510, + [SMALL_STATE(1587)] = 134631, + [SMALL_STATE(1588)] = 134752, + [SMALL_STATE(1589)] = 134873, + [SMALL_STATE(1590)] = 134994, + [SMALL_STATE(1591)] = 135115, + [SMALL_STATE(1592)] = 135236, + [SMALL_STATE(1593)] = 135357, + [SMALL_STATE(1594)] = 135478, + [SMALL_STATE(1595)] = 135599, + [SMALL_STATE(1596)] = 135720, + [SMALL_STATE(1597)] = 135841, + [SMALL_STATE(1598)] = 135962, + [SMALL_STATE(1599)] = 136083, + [SMALL_STATE(1600)] = 136204, + [SMALL_STATE(1601)] = 136325, + [SMALL_STATE(1602)] = 136446, + [SMALL_STATE(1603)] = 136567, + [SMALL_STATE(1604)] = 136688, + [SMALL_STATE(1605)] = 136809, + [SMALL_STATE(1606)] = 136930, + [SMALL_STATE(1607)] = 137051, + [SMALL_STATE(1608)] = 137172, + [SMALL_STATE(1609)] = 137293, + [SMALL_STATE(1610)] = 137414, + [SMALL_STATE(1611)] = 137535, + [SMALL_STATE(1612)] = 137656, + [SMALL_STATE(1613)] = 137777, + [SMALL_STATE(1614)] = 137898, + [SMALL_STATE(1615)] = 138019, + [SMALL_STATE(1616)] = 138140, + [SMALL_STATE(1617)] = 138261, + [SMALL_STATE(1618)] = 138382, + [SMALL_STATE(1619)] = 138503, + [SMALL_STATE(1620)] = 138624, + [SMALL_STATE(1621)] = 138745, + [SMALL_STATE(1622)] = 138866, + [SMALL_STATE(1623)] = 138987, + [SMALL_STATE(1624)] = 139108, + [SMALL_STATE(1625)] = 139229, + [SMALL_STATE(1626)] = 139350, + [SMALL_STATE(1627)] = 139471, + [SMALL_STATE(1628)] = 139592, + [SMALL_STATE(1629)] = 139713, + [SMALL_STATE(1630)] = 139834, + [SMALL_STATE(1631)] = 139955, + [SMALL_STATE(1632)] = 140076, + [SMALL_STATE(1633)] = 140197, + [SMALL_STATE(1634)] = 140318, + [SMALL_STATE(1635)] = 140439, + [SMALL_STATE(1636)] = 140560, + [SMALL_STATE(1637)] = 140681, + [SMALL_STATE(1638)] = 140802, + [SMALL_STATE(1639)] = 140923, + [SMALL_STATE(1640)] = 141044, + [SMALL_STATE(1641)] = 141165, + [SMALL_STATE(1642)] = 141286, + [SMALL_STATE(1643)] = 141407, + [SMALL_STATE(1644)] = 141528, + [SMALL_STATE(1645)] = 141649, + [SMALL_STATE(1646)] = 141770, + [SMALL_STATE(1647)] = 141891, + [SMALL_STATE(1648)] = 142012, + [SMALL_STATE(1649)] = 142133, + [SMALL_STATE(1650)] = 142254, + [SMALL_STATE(1651)] = 142375, + [SMALL_STATE(1652)] = 142496, + [SMALL_STATE(1653)] = 142617, + [SMALL_STATE(1654)] = 142738, + [SMALL_STATE(1655)] = 142859, + [SMALL_STATE(1656)] = 142980, + [SMALL_STATE(1657)] = 143101, + [SMALL_STATE(1658)] = 143222, + [SMALL_STATE(1659)] = 143343, + [SMALL_STATE(1660)] = 143464, + [SMALL_STATE(1661)] = 143585, + [SMALL_STATE(1662)] = 143706, + [SMALL_STATE(1663)] = 143827, + [SMALL_STATE(1664)] = 143948, + [SMALL_STATE(1665)] = 144069, + [SMALL_STATE(1666)] = 144190, + [SMALL_STATE(1667)] = 144311, + [SMALL_STATE(1668)] = 144432, + [SMALL_STATE(1669)] = 144553, + [SMALL_STATE(1670)] = 144674, + [SMALL_STATE(1671)] = 144795, + [SMALL_STATE(1672)] = 144916, + [SMALL_STATE(1673)] = 145037, + [SMALL_STATE(1674)] = 145158, + [SMALL_STATE(1675)] = 145279, + [SMALL_STATE(1676)] = 145400, + [SMALL_STATE(1677)] = 145521, + [SMALL_STATE(1678)] = 145642, + [SMALL_STATE(1679)] = 145763, + [SMALL_STATE(1680)] = 145884, + [SMALL_STATE(1681)] = 146005, + [SMALL_STATE(1682)] = 146126, + [SMALL_STATE(1683)] = 146247, + [SMALL_STATE(1684)] = 146368, + [SMALL_STATE(1685)] = 146489, + [SMALL_STATE(1686)] = 146610, + [SMALL_STATE(1687)] = 146731, + [SMALL_STATE(1688)] = 146852, + [SMALL_STATE(1689)] = 146973, + [SMALL_STATE(1690)] = 147094, + [SMALL_STATE(1691)] = 147215, + [SMALL_STATE(1692)] = 147336, + [SMALL_STATE(1693)] = 147457, + [SMALL_STATE(1694)] = 147578, + [SMALL_STATE(1695)] = 147699, + [SMALL_STATE(1696)] = 147820, + [SMALL_STATE(1697)] = 147941, + [SMALL_STATE(1698)] = 148062, + [SMALL_STATE(1699)] = 148183, + [SMALL_STATE(1700)] = 148304, + [SMALL_STATE(1701)] = 148425, + [SMALL_STATE(1702)] = 148546, + [SMALL_STATE(1703)] = 148667, + [SMALL_STATE(1704)] = 148788, + [SMALL_STATE(1705)] = 148909, + [SMALL_STATE(1706)] = 149030, + [SMALL_STATE(1707)] = 149151, + [SMALL_STATE(1708)] = 149272, + [SMALL_STATE(1709)] = 149393, + [SMALL_STATE(1710)] = 149514, + [SMALL_STATE(1711)] = 149635, + [SMALL_STATE(1712)] = 149756, + [SMALL_STATE(1713)] = 149877, + [SMALL_STATE(1714)] = 149998, + [SMALL_STATE(1715)] = 150119, + [SMALL_STATE(1716)] = 150240, + [SMALL_STATE(1717)] = 150361, + [SMALL_STATE(1718)] = 150482, + [SMALL_STATE(1719)] = 150603, + [SMALL_STATE(1720)] = 150724, + [SMALL_STATE(1721)] = 150845, + [SMALL_STATE(1722)] = 150966, + [SMALL_STATE(1723)] = 151087, + [SMALL_STATE(1724)] = 151208, + [SMALL_STATE(1725)] = 151329, + [SMALL_STATE(1726)] = 151450, + [SMALL_STATE(1727)] = 151571, + [SMALL_STATE(1728)] = 151692, + [SMALL_STATE(1729)] = 151813, + [SMALL_STATE(1730)] = 151934, + [SMALL_STATE(1731)] = 152055, + [SMALL_STATE(1732)] = 152176, + [SMALL_STATE(1733)] = 152297, + [SMALL_STATE(1734)] = 152418, + [SMALL_STATE(1735)] = 152539, + [SMALL_STATE(1736)] = 152660, + [SMALL_STATE(1737)] = 152781, + [SMALL_STATE(1738)] = 152902, + [SMALL_STATE(1739)] = 153023, + [SMALL_STATE(1740)] = 153144, + [SMALL_STATE(1741)] = 153265, + [SMALL_STATE(1742)] = 153386, + [SMALL_STATE(1743)] = 153507, + [SMALL_STATE(1744)] = 153628, + [SMALL_STATE(1745)] = 153749, + [SMALL_STATE(1746)] = 153870, + [SMALL_STATE(1747)] = 153991, + [SMALL_STATE(1748)] = 154112, + [SMALL_STATE(1749)] = 154233, + [SMALL_STATE(1750)] = 154354, + [SMALL_STATE(1751)] = 154475, + [SMALL_STATE(1752)] = 154596, + [SMALL_STATE(1753)] = 154717, + [SMALL_STATE(1754)] = 154838, + [SMALL_STATE(1755)] = 154959, + [SMALL_STATE(1756)] = 155080, + [SMALL_STATE(1757)] = 155201, + [SMALL_STATE(1758)] = 155322, + [SMALL_STATE(1759)] = 155443, + [SMALL_STATE(1760)] = 155564, + [SMALL_STATE(1761)] = 155685, + [SMALL_STATE(1762)] = 155806, + [SMALL_STATE(1763)] = 155927, + [SMALL_STATE(1764)] = 156048, + [SMALL_STATE(1765)] = 156169, + [SMALL_STATE(1766)] = 156290, + [SMALL_STATE(1767)] = 156411, + [SMALL_STATE(1768)] = 156532, + [SMALL_STATE(1769)] = 156653, + [SMALL_STATE(1770)] = 156774, + [SMALL_STATE(1771)] = 156895, + [SMALL_STATE(1772)] = 157016, + [SMALL_STATE(1773)] = 157137, + [SMALL_STATE(1774)] = 157258, + [SMALL_STATE(1775)] = 157379, + [SMALL_STATE(1776)] = 157500, + [SMALL_STATE(1777)] = 157621, + [SMALL_STATE(1778)] = 157742, + [SMALL_STATE(1779)] = 157863, + [SMALL_STATE(1780)] = 157984, + [SMALL_STATE(1781)] = 158105, + [SMALL_STATE(1782)] = 158226, + [SMALL_STATE(1783)] = 158347, + [SMALL_STATE(1784)] = 158468, + [SMALL_STATE(1785)] = 158589, + [SMALL_STATE(1786)] = 158710, + [SMALL_STATE(1787)] = 158831, + [SMALL_STATE(1788)] = 158952, + [SMALL_STATE(1789)] = 159073, + [SMALL_STATE(1790)] = 159194, + [SMALL_STATE(1791)] = 159315, + [SMALL_STATE(1792)] = 159436, + [SMALL_STATE(1793)] = 159557, + [SMALL_STATE(1794)] = 159678, + [SMALL_STATE(1795)] = 159799, + [SMALL_STATE(1796)] = 159920, + [SMALL_STATE(1797)] = 160041, + [SMALL_STATE(1798)] = 160162, + [SMALL_STATE(1799)] = 160283, + [SMALL_STATE(1800)] = 160404, + [SMALL_STATE(1801)] = 160525, + [SMALL_STATE(1802)] = 160646, + [SMALL_STATE(1803)] = 160767, + [SMALL_STATE(1804)] = 160888, + [SMALL_STATE(1805)] = 161009, + [SMALL_STATE(1806)] = 161130, + [SMALL_STATE(1807)] = 161251, + [SMALL_STATE(1808)] = 161372, + [SMALL_STATE(1809)] = 161493, + [SMALL_STATE(1810)] = 161614, + [SMALL_STATE(1811)] = 161735, + [SMALL_STATE(1812)] = 161856, + [SMALL_STATE(1813)] = 161977, + [SMALL_STATE(1814)] = 162098, + [SMALL_STATE(1815)] = 162219, + [SMALL_STATE(1816)] = 162340, + [SMALL_STATE(1817)] = 162461, + [SMALL_STATE(1818)] = 162582, + [SMALL_STATE(1819)] = 162703, + [SMALL_STATE(1820)] = 162824, + [SMALL_STATE(1821)] = 162945, + [SMALL_STATE(1822)] = 163066, + [SMALL_STATE(1823)] = 163187, + [SMALL_STATE(1824)] = 163308, + [SMALL_STATE(1825)] = 163429, + [SMALL_STATE(1826)] = 163550, + [SMALL_STATE(1827)] = 163671, + [SMALL_STATE(1828)] = 163792, + [SMALL_STATE(1829)] = 163913, + [SMALL_STATE(1830)] = 164034, + [SMALL_STATE(1831)] = 164155, + [SMALL_STATE(1832)] = 164276, + [SMALL_STATE(1833)] = 164397, + [SMALL_STATE(1834)] = 164518, + [SMALL_STATE(1835)] = 164639, + [SMALL_STATE(1836)] = 164760, + [SMALL_STATE(1837)] = 164881, + [SMALL_STATE(1838)] = 165002, + [SMALL_STATE(1839)] = 165123, + [SMALL_STATE(1840)] = 165244, + [SMALL_STATE(1841)] = 165365, + [SMALL_STATE(1842)] = 165486, + [SMALL_STATE(1843)] = 165607, + [SMALL_STATE(1844)] = 165728, + [SMALL_STATE(1845)] = 165849, + [SMALL_STATE(1846)] = 165970, + [SMALL_STATE(1847)] = 166091, + [SMALL_STATE(1848)] = 166212, + [SMALL_STATE(1849)] = 166333, + [SMALL_STATE(1850)] = 166454, + [SMALL_STATE(1851)] = 166575, + [SMALL_STATE(1852)] = 166696, + [SMALL_STATE(1853)] = 166817, + [SMALL_STATE(1854)] = 166938, + [SMALL_STATE(1855)] = 167059, + [SMALL_STATE(1856)] = 167180, + [SMALL_STATE(1857)] = 167301, + [SMALL_STATE(1858)] = 167422, + [SMALL_STATE(1859)] = 167543, + [SMALL_STATE(1860)] = 167664, + [SMALL_STATE(1861)] = 167785, + [SMALL_STATE(1862)] = 167906, + [SMALL_STATE(1863)] = 168027, + [SMALL_STATE(1864)] = 168148, + [SMALL_STATE(1865)] = 168269, + [SMALL_STATE(1866)] = 168390, + [SMALL_STATE(1867)] = 168511, + [SMALL_STATE(1868)] = 168632, + [SMALL_STATE(1869)] = 168753, + [SMALL_STATE(1870)] = 168874, + [SMALL_STATE(1871)] = 168995, + [SMALL_STATE(1872)] = 169116, + [SMALL_STATE(1873)] = 169237, + [SMALL_STATE(1874)] = 169358, + [SMALL_STATE(1875)] = 169479, + [SMALL_STATE(1876)] = 169600, + [SMALL_STATE(1877)] = 169721, + [SMALL_STATE(1878)] = 169842, + [SMALL_STATE(1879)] = 169963, + [SMALL_STATE(1880)] = 170084, + [SMALL_STATE(1881)] = 170205, + [SMALL_STATE(1882)] = 170326, + [SMALL_STATE(1883)] = 170447, + [SMALL_STATE(1884)] = 170568, + [SMALL_STATE(1885)] = 170689, + [SMALL_STATE(1886)] = 170810, + [SMALL_STATE(1887)] = 170931, + [SMALL_STATE(1888)] = 171052, + [SMALL_STATE(1889)] = 171173, + [SMALL_STATE(1890)] = 171294, + [SMALL_STATE(1891)] = 171415, + [SMALL_STATE(1892)] = 171536, + [SMALL_STATE(1893)] = 171657, + [SMALL_STATE(1894)] = 171778, + [SMALL_STATE(1895)] = 171899, + [SMALL_STATE(1896)] = 172020, + [SMALL_STATE(1897)] = 172141, + [SMALL_STATE(1898)] = 172262, + [SMALL_STATE(1899)] = 172383, + [SMALL_STATE(1900)] = 172504, + [SMALL_STATE(1901)] = 172625, + [SMALL_STATE(1902)] = 172746, + [SMALL_STATE(1903)] = 172867, + [SMALL_STATE(1904)] = 172988, + [SMALL_STATE(1905)] = 173109, + [SMALL_STATE(1906)] = 173230, + [SMALL_STATE(1907)] = 173351, + [SMALL_STATE(1908)] = 173472, + [SMALL_STATE(1909)] = 173593, + [SMALL_STATE(1910)] = 173714, + [SMALL_STATE(1911)] = 173835, + [SMALL_STATE(1912)] = 173956, + [SMALL_STATE(1913)] = 174077, + [SMALL_STATE(1914)] = 174198, + [SMALL_STATE(1915)] = 174319, + [SMALL_STATE(1916)] = 174440, + [SMALL_STATE(1917)] = 174561, + [SMALL_STATE(1918)] = 174682, + [SMALL_STATE(1919)] = 174803, + [SMALL_STATE(1920)] = 174924, + [SMALL_STATE(1921)] = 175045, + [SMALL_STATE(1922)] = 175166, + [SMALL_STATE(1923)] = 175287, + [SMALL_STATE(1924)] = 175408, + [SMALL_STATE(1925)] = 175529, + [SMALL_STATE(1926)] = 175650, + [SMALL_STATE(1927)] = 175771, + [SMALL_STATE(1928)] = 175892, + [SMALL_STATE(1929)] = 176013, + [SMALL_STATE(1930)] = 176134, + [SMALL_STATE(1931)] = 176255, + [SMALL_STATE(1932)] = 176376, + [SMALL_STATE(1933)] = 176497, + [SMALL_STATE(1934)] = 176618, + [SMALL_STATE(1935)] = 176739, + [SMALL_STATE(1936)] = 176860, + [SMALL_STATE(1937)] = 176981, + [SMALL_STATE(1938)] = 177102, + [SMALL_STATE(1939)] = 177223, + [SMALL_STATE(1940)] = 177344, + [SMALL_STATE(1941)] = 177465, + [SMALL_STATE(1942)] = 177586, + [SMALL_STATE(1943)] = 177707, + [SMALL_STATE(1944)] = 177828, + [SMALL_STATE(1945)] = 177949, + [SMALL_STATE(1946)] = 178070, + [SMALL_STATE(1947)] = 178191, + [SMALL_STATE(1948)] = 178312, + [SMALL_STATE(1949)] = 178433, + [SMALL_STATE(1950)] = 178554, + [SMALL_STATE(1951)] = 178675, + [SMALL_STATE(1952)] = 178796, + [SMALL_STATE(1953)] = 178917, + [SMALL_STATE(1954)] = 179038, + [SMALL_STATE(1955)] = 179159, + [SMALL_STATE(1956)] = 179280, + [SMALL_STATE(1957)] = 179401, + [SMALL_STATE(1958)] = 179522, + [SMALL_STATE(1959)] = 179643, + [SMALL_STATE(1960)] = 179764, + [SMALL_STATE(1961)] = 179885, + [SMALL_STATE(1962)] = 180006, + [SMALL_STATE(1963)] = 180127, + [SMALL_STATE(1964)] = 180248, + [SMALL_STATE(1965)] = 180369, + [SMALL_STATE(1966)] = 180490, + [SMALL_STATE(1967)] = 180611, + [SMALL_STATE(1968)] = 180732, + [SMALL_STATE(1969)] = 180853, + [SMALL_STATE(1970)] = 180974, + [SMALL_STATE(1971)] = 181095, + [SMALL_STATE(1972)] = 181216, + [SMALL_STATE(1973)] = 181337, + [SMALL_STATE(1974)] = 181458, + [SMALL_STATE(1975)] = 181579, + [SMALL_STATE(1976)] = 181700, + [SMALL_STATE(1977)] = 181821, + [SMALL_STATE(1978)] = 181942, + [SMALL_STATE(1979)] = 182063, + [SMALL_STATE(1980)] = 182184, + [SMALL_STATE(1981)] = 182305, + [SMALL_STATE(1982)] = 182426, + [SMALL_STATE(1983)] = 182547, + [SMALL_STATE(1984)] = 182668, + [SMALL_STATE(1985)] = 182789, + [SMALL_STATE(1986)] = 182910, + [SMALL_STATE(1987)] = 183031, + [SMALL_STATE(1988)] = 183152, + [SMALL_STATE(1989)] = 183273, + [SMALL_STATE(1990)] = 183394, + [SMALL_STATE(1991)] = 183515, + [SMALL_STATE(1992)] = 183636, + [SMALL_STATE(1993)] = 183757, + [SMALL_STATE(1994)] = 183878, + [SMALL_STATE(1995)] = 183999, + [SMALL_STATE(1996)] = 184120, + [SMALL_STATE(1997)] = 184241, + [SMALL_STATE(1998)] = 184362, + [SMALL_STATE(1999)] = 184483, + [SMALL_STATE(2000)] = 184604, + [SMALL_STATE(2001)] = 184725, + [SMALL_STATE(2002)] = 184846, + [SMALL_STATE(2003)] = 184967, + [SMALL_STATE(2004)] = 185088, + [SMALL_STATE(2005)] = 185209, + [SMALL_STATE(2006)] = 185330, + [SMALL_STATE(2007)] = 185451, + [SMALL_STATE(2008)] = 185572, + [SMALL_STATE(2009)] = 185693, + [SMALL_STATE(2010)] = 185814, + [SMALL_STATE(2011)] = 185935, + [SMALL_STATE(2012)] = 186056, + [SMALL_STATE(2013)] = 186177, + [SMALL_STATE(2014)] = 186298, + [SMALL_STATE(2015)] = 186419, + [SMALL_STATE(2016)] = 186540, + [SMALL_STATE(2017)] = 186661, + [SMALL_STATE(2018)] = 186782, + [SMALL_STATE(2019)] = 186903, + [SMALL_STATE(2020)] = 187024, + [SMALL_STATE(2021)] = 187145, + [SMALL_STATE(2022)] = 187266, + [SMALL_STATE(2023)] = 187387, + [SMALL_STATE(2024)] = 187508, + [SMALL_STATE(2025)] = 187629, + [SMALL_STATE(2026)] = 187750, + [SMALL_STATE(2027)] = 187871, + [SMALL_STATE(2028)] = 187992, + [SMALL_STATE(2029)] = 188113, + [SMALL_STATE(2030)] = 188234, + [SMALL_STATE(2031)] = 188355, + [SMALL_STATE(2032)] = 188476, + [SMALL_STATE(2033)] = 188597, + [SMALL_STATE(2034)] = 188718, + [SMALL_STATE(2035)] = 188839, + [SMALL_STATE(2036)] = 188960, + [SMALL_STATE(2037)] = 189081, + [SMALL_STATE(2038)] = 189202, + [SMALL_STATE(2039)] = 189323, + [SMALL_STATE(2040)] = 189444, + [SMALL_STATE(2041)] = 189565, + [SMALL_STATE(2042)] = 189686, + [SMALL_STATE(2043)] = 189807, + [SMALL_STATE(2044)] = 189928, + [SMALL_STATE(2045)] = 190049, + [SMALL_STATE(2046)] = 190170, + [SMALL_STATE(2047)] = 190291, + [SMALL_STATE(2048)] = 190412, + [SMALL_STATE(2049)] = 190533, + [SMALL_STATE(2050)] = 190654, + [SMALL_STATE(2051)] = 190775, + [SMALL_STATE(2052)] = 190896, + [SMALL_STATE(2053)] = 191017, + [SMALL_STATE(2054)] = 191138, + [SMALL_STATE(2055)] = 191259, + [SMALL_STATE(2056)] = 191380, + [SMALL_STATE(2057)] = 191501, + [SMALL_STATE(2058)] = 191622, + [SMALL_STATE(2059)] = 191743, + [SMALL_STATE(2060)] = 191864, + [SMALL_STATE(2061)] = 191985, + [SMALL_STATE(2062)] = 192106, + [SMALL_STATE(2063)] = 192227, + [SMALL_STATE(2064)] = 192348, + [SMALL_STATE(2065)] = 192469, + [SMALL_STATE(2066)] = 192590, + [SMALL_STATE(2067)] = 192711, + [SMALL_STATE(2068)] = 192832, + [SMALL_STATE(2069)] = 192953, + [SMALL_STATE(2070)] = 193074, + [SMALL_STATE(2071)] = 193195, + [SMALL_STATE(2072)] = 193316, + [SMALL_STATE(2073)] = 193437, + [SMALL_STATE(2074)] = 193558, + [SMALL_STATE(2075)] = 193679, + [SMALL_STATE(2076)] = 193800, + [SMALL_STATE(2077)] = 193921, + [SMALL_STATE(2078)] = 194042, + [SMALL_STATE(2079)] = 194163, + [SMALL_STATE(2080)] = 194284, + [SMALL_STATE(2081)] = 194405, + [SMALL_STATE(2082)] = 194526, + [SMALL_STATE(2083)] = 194647, + [SMALL_STATE(2084)] = 194768, + [SMALL_STATE(2085)] = 194889, + [SMALL_STATE(2086)] = 195010, + [SMALL_STATE(2087)] = 195131, + [SMALL_STATE(2088)] = 195252, + [SMALL_STATE(2089)] = 195373, + [SMALL_STATE(2090)] = 195494, + [SMALL_STATE(2091)] = 195615, + [SMALL_STATE(2092)] = 195736, + [SMALL_STATE(2093)] = 195857, + [SMALL_STATE(2094)] = 195978, + [SMALL_STATE(2095)] = 196099, + [SMALL_STATE(2096)] = 196220, + [SMALL_STATE(2097)] = 196341, + [SMALL_STATE(2098)] = 196462, + [SMALL_STATE(2099)] = 196583, + [SMALL_STATE(2100)] = 196704, + [SMALL_STATE(2101)] = 196825, + [SMALL_STATE(2102)] = 196946, + [SMALL_STATE(2103)] = 197067, + [SMALL_STATE(2104)] = 197188, + [SMALL_STATE(2105)] = 197309, + [SMALL_STATE(2106)] = 197430, + [SMALL_STATE(2107)] = 197551, + [SMALL_STATE(2108)] = 197672, + [SMALL_STATE(2109)] = 197793, + [SMALL_STATE(2110)] = 197914, + [SMALL_STATE(2111)] = 198035, + [SMALL_STATE(2112)] = 198156, + [SMALL_STATE(2113)] = 198277, + [SMALL_STATE(2114)] = 198398, + [SMALL_STATE(2115)] = 198519, + [SMALL_STATE(2116)] = 198640, + [SMALL_STATE(2117)] = 198761, + [SMALL_STATE(2118)] = 198882, + [SMALL_STATE(2119)] = 199003, + [SMALL_STATE(2120)] = 199124, + [SMALL_STATE(2121)] = 199245, + [SMALL_STATE(2122)] = 199366, + [SMALL_STATE(2123)] = 199487, + [SMALL_STATE(2124)] = 199608, + [SMALL_STATE(2125)] = 199729, + [SMALL_STATE(2126)] = 199850, + [SMALL_STATE(2127)] = 199971, + [SMALL_STATE(2128)] = 200092, + [SMALL_STATE(2129)] = 200213, + [SMALL_STATE(2130)] = 200334, + [SMALL_STATE(2131)] = 200455, + [SMALL_STATE(2132)] = 200576, + [SMALL_STATE(2133)] = 200697, + [SMALL_STATE(2134)] = 200818, + [SMALL_STATE(2135)] = 200939, + [SMALL_STATE(2136)] = 201060, + [SMALL_STATE(2137)] = 201181, + [SMALL_STATE(2138)] = 201302, + [SMALL_STATE(2139)] = 201423, + [SMALL_STATE(2140)] = 201544, + [SMALL_STATE(2141)] = 201665, + [SMALL_STATE(2142)] = 201786, + [SMALL_STATE(2143)] = 201907, + [SMALL_STATE(2144)] = 202028, + [SMALL_STATE(2145)] = 202149, + [SMALL_STATE(2146)] = 202270, + [SMALL_STATE(2147)] = 202391, + [SMALL_STATE(2148)] = 202512, + [SMALL_STATE(2149)] = 202633, + [SMALL_STATE(2150)] = 202754, + [SMALL_STATE(2151)] = 202875, + [SMALL_STATE(2152)] = 202996, + [SMALL_STATE(2153)] = 203117, + [SMALL_STATE(2154)] = 203238, + [SMALL_STATE(2155)] = 203359, + [SMALL_STATE(2156)] = 203480, + [SMALL_STATE(2157)] = 203601, + [SMALL_STATE(2158)] = 203722, + [SMALL_STATE(2159)] = 203843, + [SMALL_STATE(2160)] = 203964, + [SMALL_STATE(2161)] = 204085, + [SMALL_STATE(2162)] = 204206, + [SMALL_STATE(2163)] = 204327, + [SMALL_STATE(2164)] = 204448, + [SMALL_STATE(2165)] = 204569, + [SMALL_STATE(2166)] = 204690, + [SMALL_STATE(2167)] = 204811, + [SMALL_STATE(2168)] = 204932, + [SMALL_STATE(2169)] = 205053, + [SMALL_STATE(2170)] = 205174, + [SMALL_STATE(2171)] = 205295, + [SMALL_STATE(2172)] = 205416, + [SMALL_STATE(2173)] = 205537, + [SMALL_STATE(2174)] = 205658, + [SMALL_STATE(2175)] = 205779, + [SMALL_STATE(2176)] = 205900, + [SMALL_STATE(2177)] = 206021, + [SMALL_STATE(2178)] = 206142, + [SMALL_STATE(2179)] = 206263, + [SMALL_STATE(2180)] = 206384, + [SMALL_STATE(2181)] = 206505, + [SMALL_STATE(2182)] = 206626, + [SMALL_STATE(2183)] = 206747, + [SMALL_STATE(2184)] = 206868, + [SMALL_STATE(2185)] = 206989, + [SMALL_STATE(2186)] = 207110, + [SMALL_STATE(2187)] = 207231, + [SMALL_STATE(2188)] = 207352, + [SMALL_STATE(2189)] = 207473, + [SMALL_STATE(2190)] = 207594, + [SMALL_STATE(2191)] = 207715, + [SMALL_STATE(2192)] = 207836, + [SMALL_STATE(2193)] = 207957, + [SMALL_STATE(2194)] = 208078, + [SMALL_STATE(2195)] = 208199, + [SMALL_STATE(2196)] = 208320, + [SMALL_STATE(2197)] = 208441, + [SMALL_STATE(2198)] = 208562, + [SMALL_STATE(2199)] = 208683, + [SMALL_STATE(2200)] = 208804, + [SMALL_STATE(2201)] = 208925, + [SMALL_STATE(2202)] = 209046, + [SMALL_STATE(2203)] = 209167, + [SMALL_STATE(2204)] = 209288, + [SMALL_STATE(2205)] = 209409, + [SMALL_STATE(2206)] = 209530, + [SMALL_STATE(2207)] = 209651, + [SMALL_STATE(2208)] = 209772, + [SMALL_STATE(2209)] = 209893, + [SMALL_STATE(2210)] = 210014, + [SMALL_STATE(2211)] = 210135, + [SMALL_STATE(2212)] = 210256, + [SMALL_STATE(2213)] = 210377, + [SMALL_STATE(2214)] = 210498, + [SMALL_STATE(2215)] = 210619, + [SMALL_STATE(2216)] = 210740, + [SMALL_STATE(2217)] = 210861, + [SMALL_STATE(2218)] = 210982, + [SMALL_STATE(2219)] = 211103, + [SMALL_STATE(2220)] = 211224, + [SMALL_STATE(2221)] = 211345, + [SMALL_STATE(2222)] = 211466, + [SMALL_STATE(2223)] = 211587, + [SMALL_STATE(2224)] = 211708, + [SMALL_STATE(2225)] = 211829, + [SMALL_STATE(2226)] = 211950, + [SMALL_STATE(2227)] = 212071, + [SMALL_STATE(2228)] = 212192, + [SMALL_STATE(2229)] = 212313, + [SMALL_STATE(2230)] = 212434, + [SMALL_STATE(2231)] = 212555, + [SMALL_STATE(2232)] = 212676, + [SMALL_STATE(2233)] = 212797, + [SMALL_STATE(2234)] = 212918, + [SMALL_STATE(2235)] = 213039, + [SMALL_STATE(2236)] = 213160, + [SMALL_STATE(2237)] = 213281, + [SMALL_STATE(2238)] = 213402, + [SMALL_STATE(2239)] = 213523, + [SMALL_STATE(2240)] = 213644, + [SMALL_STATE(2241)] = 213765, + [SMALL_STATE(2242)] = 213886, + [SMALL_STATE(2243)] = 214007, + [SMALL_STATE(2244)] = 214128, + [SMALL_STATE(2245)] = 214249, + [SMALL_STATE(2246)] = 214370, + [SMALL_STATE(2247)] = 214491, + [SMALL_STATE(2248)] = 214612, + [SMALL_STATE(2249)] = 214733, + [SMALL_STATE(2250)] = 214854, + [SMALL_STATE(2251)] = 214975, + [SMALL_STATE(2252)] = 215096, + [SMALL_STATE(2253)] = 215217, + [SMALL_STATE(2254)] = 215338, + [SMALL_STATE(2255)] = 215459, + [SMALL_STATE(2256)] = 215580, + [SMALL_STATE(2257)] = 215701, + [SMALL_STATE(2258)] = 215822, + [SMALL_STATE(2259)] = 215943, + [SMALL_STATE(2260)] = 216064, + [SMALL_STATE(2261)] = 216185, + [SMALL_STATE(2262)] = 216306, + [SMALL_STATE(2263)] = 216427, + [SMALL_STATE(2264)] = 216548, + [SMALL_STATE(2265)] = 216669, + [SMALL_STATE(2266)] = 216790, + [SMALL_STATE(2267)] = 216911, + [SMALL_STATE(2268)] = 217032, + [SMALL_STATE(2269)] = 217153, + [SMALL_STATE(2270)] = 217274, + [SMALL_STATE(2271)] = 217395, + [SMALL_STATE(2272)] = 217516, + [SMALL_STATE(2273)] = 217637, + [SMALL_STATE(2274)] = 217758, + [SMALL_STATE(2275)] = 217879, + [SMALL_STATE(2276)] = 218000, + [SMALL_STATE(2277)] = 218121, + [SMALL_STATE(2278)] = 218242, + [SMALL_STATE(2279)] = 218363, + [SMALL_STATE(2280)] = 218484, + [SMALL_STATE(2281)] = 218605, + [SMALL_STATE(2282)] = 218726, + [SMALL_STATE(2283)] = 218847, + [SMALL_STATE(2284)] = 218968, + [SMALL_STATE(2285)] = 219089, + [SMALL_STATE(2286)] = 219210, + [SMALL_STATE(2287)] = 219331, + [SMALL_STATE(2288)] = 219452, + [SMALL_STATE(2289)] = 219573, + [SMALL_STATE(2290)] = 219694, + [SMALL_STATE(2291)] = 219815, + [SMALL_STATE(2292)] = 219936, + [SMALL_STATE(2293)] = 220057, + [SMALL_STATE(2294)] = 220178, + [SMALL_STATE(2295)] = 220299, + [SMALL_STATE(2296)] = 220420, + [SMALL_STATE(2297)] = 220541, + [SMALL_STATE(2298)] = 220662, + [SMALL_STATE(2299)] = 220783, + [SMALL_STATE(2300)] = 220904, + [SMALL_STATE(2301)] = 221025, + [SMALL_STATE(2302)] = 221146, + [SMALL_STATE(2303)] = 221267, + [SMALL_STATE(2304)] = 221388, + [SMALL_STATE(2305)] = 221509, + [SMALL_STATE(2306)] = 221630, + [SMALL_STATE(2307)] = 221751, + [SMALL_STATE(2308)] = 221872, + [SMALL_STATE(2309)] = 221993, + [SMALL_STATE(2310)] = 222114, + [SMALL_STATE(2311)] = 222235, + [SMALL_STATE(2312)] = 222356, + [SMALL_STATE(2313)] = 222477, + [SMALL_STATE(2314)] = 222598, + [SMALL_STATE(2315)] = 222719, + [SMALL_STATE(2316)] = 222840, + [SMALL_STATE(2317)] = 222961, + [SMALL_STATE(2318)] = 223082, + [SMALL_STATE(2319)] = 223203, + [SMALL_STATE(2320)] = 223324, + [SMALL_STATE(2321)] = 223445, + [SMALL_STATE(2322)] = 223566, + [SMALL_STATE(2323)] = 223687, + [SMALL_STATE(2324)] = 223808, + [SMALL_STATE(2325)] = 223929, + [SMALL_STATE(2326)] = 224050, + [SMALL_STATE(2327)] = 224171, + [SMALL_STATE(2328)] = 224292, + [SMALL_STATE(2329)] = 224413, + [SMALL_STATE(2330)] = 224534, + [SMALL_STATE(2331)] = 224655, + [SMALL_STATE(2332)] = 224776, + [SMALL_STATE(2333)] = 224897, + [SMALL_STATE(2334)] = 225018, + [SMALL_STATE(2335)] = 225139, + [SMALL_STATE(2336)] = 225260, + [SMALL_STATE(2337)] = 225381, + [SMALL_STATE(2338)] = 225502, + [SMALL_STATE(2339)] = 225623, + [SMALL_STATE(2340)] = 225744, + [SMALL_STATE(2341)] = 225865, + [SMALL_STATE(2342)] = 225986, + [SMALL_STATE(2343)] = 226107, + [SMALL_STATE(2344)] = 226228, + [SMALL_STATE(2345)] = 226349, + [SMALL_STATE(2346)] = 226470, + [SMALL_STATE(2347)] = 226591, + [SMALL_STATE(2348)] = 226712, + [SMALL_STATE(2349)] = 226833, + [SMALL_STATE(2350)] = 226954, + [SMALL_STATE(2351)] = 227075, + [SMALL_STATE(2352)] = 227196, + [SMALL_STATE(2353)] = 227317, + [SMALL_STATE(2354)] = 227438, + [SMALL_STATE(2355)] = 227559, + [SMALL_STATE(2356)] = 227680, + [SMALL_STATE(2357)] = 227801, + [SMALL_STATE(2358)] = 227922, + [SMALL_STATE(2359)] = 228043, + [SMALL_STATE(2360)] = 228164, + [SMALL_STATE(2361)] = 228285, + [SMALL_STATE(2362)] = 228406, + [SMALL_STATE(2363)] = 228527, + [SMALL_STATE(2364)] = 228648, + [SMALL_STATE(2365)] = 228769, + [SMALL_STATE(2366)] = 228890, + [SMALL_STATE(2367)] = 229011, + [SMALL_STATE(2368)] = 229132, + [SMALL_STATE(2369)] = 229253, + [SMALL_STATE(2370)] = 229374, + [SMALL_STATE(2371)] = 229495, + [SMALL_STATE(2372)] = 229616, + [SMALL_STATE(2373)] = 229737, + [SMALL_STATE(2374)] = 229858, + [SMALL_STATE(2375)] = 229979, + [SMALL_STATE(2376)] = 230100, + [SMALL_STATE(2377)] = 230221, + [SMALL_STATE(2378)] = 230342, + [SMALL_STATE(2379)] = 230463, + [SMALL_STATE(2380)] = 230584, + [SMALL_STATE(2381)] = 230705, + [SMALL_STATE(2382)] = 230826, + [SMALL_STATE(2383)] = 230947, + [SMALL_STATE(2384)] = 231068, + [SMALL_STATE(2385)] = 231189, + [SMALL_STATE(2386)] = 231310, + [SMALL_STATE(2387)] = 231431, + [SMALL_STATE(2388)] = 231552, + [SMALL_STATE(2389)] = 231673, + [SMALL_STATE(2390)] = 231794, + [SMALL_STATE(2391)] = 231915, + [SMALL_STATE(2392)] = 232036, + [SMALL_STATE(2393)] = 232157, + [SMALL_STATE(2394)] = 232278, + [SMALL_STATE(2395)] = 232399, + [SMALL_STATE(2396)] = 232520, + [SMALL_STATE(2397)] = 232641, + [SMALL_STATE(2398)] = 232762, + [SMALL_STATE(2399)] = 232883, + [SMALL_STATE(2400)] = 233004, + [SMALL_STATE(2401)] = 233125, + [SMALL_STATE(2402)] = 233246, + [SMALL_STATE(2403)] = 233367, + [SMALL_STATE(2404)] = 233488, + [SMALL_STATE(2405)] = 233609, + [SMALL_STATE(2406)] = 233730, + [SMALL_STATE(2407)] = 233851, + [SMALL_STATE(2408)] = 233972, + [SMALL_STATE(2409)] = 234093, + [SMALL_STATE(2410)] = 234214, + [SMALL_STATE(2411)] = 234335, + [SMALL_STATE(2412)] = 234456, + [SMALL_STATE(2413)] = 234577, + [SMALL_STATE(2414)] = 234698, + [SMALL_STATE(2415)] = 234819, + [SMALL_STATE(2416)] = 234940, + [SMALL_STATE(2417)] = 235061, + [SMALL_STATE(2418)] = 235182, + [SMALL_STATE(2419)] = 235303, + [SMALL_STATE(2420)] = 235424, + [SMALL_STATE(2421)] = 235545, + [SMALL_STATE(2422)] = 235666, + [SMALL_STATE(2423)] = 235787, + [SMALL_STATE(2424)] = 235908, + [SMALL_STATE(2425)] = 236029, + [SMALL_STATE(2426)] = 236150, + [SMALL_STATE(2427)] = 236271, + [SMALL_STATE(2428)] = 236392, + [SMALL_STATE(2429)] = 236513, + [SMALL_STATE(2430)] = 236634, + [SMALL_STATE(2431)] = 236755, + [SMALL_STATE(2432)] = 236876, + [SMALL_STATE(2433)] = 236997, + [SMALL_STATE(2434)] = 237118, + [SMALL_STATE(2435)] = 237239, + [SMALL_STATE(2436)] = 237360, + [SMALL_STATE(2437)] = 237481, + [SMALL_STATE(2438)] = 237602, + [SMALL_STATE(2439)] = 237723, + [SMALL_STATE(2440)] = 237844, + [SMALL_STATE(2441)] = 237965, + [SMALL_STATE(2442)] = 238086, + [SMALL_STATE(2443)] = 238207, + [SMALL_STATE(2444)] = 238328, + [SMALL_STATE(2445)] = 238449, + [SMALL_STATE(2446)] = 238570, + [SMALL_STATE(2447)] = 238691, + [SMALL_STATE(2448)] = 238812, + [SMALL_STATE(2449)] = 238933, + [SMALL_STATE(2450)] = 239054, + [SMALL_STATE(2451)] = 239175, + [SMALL_STATE(2452)] = 239296, + [SMALL_STATE(2453)] = 239417, + [SMALL_STATE(2454)] = 239538, + [SMALL_STATE(2455)] = 239659, + [SMALL_STATE(2456)] = 239780, + [SMALL_STATE(2457)] = 239901, + [SMALL_STATE(2458)] = 240022, + [SMALL_STATE(2459)] = 240143, + [SMALL_STATE(2460)] = 240264, + [SMALL_STATE(2461)] = 240385, + [SMALL_STATE(2462)] = 240506, + [SMALL_STATE(2463)] = 240627, + [SMALL_STATE(2464)] = 240748, + [SMALL_STATE(2465)] = 240869, + [SMALL_STATE(2466)] = 240990, + [SMALL_STATE(2467)] = 241111, + [SMALL_STATE(2468)] = 241232, + [SMALL_STATE(2469)] = 241353, + [SMALL_STATE(2470)] = 241474, + [SMALL_STATE(2471)] = 241595, + [SMALL_STATE(2472)] = 241716, + [SMALL_STATE(2473)] = 241837, + [SMALL_STATE(2474)] = 241958, + [SMALL_STATE(2475)] = 242079, + [SMALL_STATE(2476)] = 242200, + [SMALL_STATE(2477)] = 242321, + [SMALL_STATE(2478)] = 242442, + [SMALL_STATE(2479)] = 242563, + [SMALL_STATE(2480)] = 242684, + [SMALL_STATE(2481)] = 242805, + [SMALL_STATE(2482)] = 242926, + [SMALL_STATE(2483)] = 243047, + [SMALL_STATE(2484)] = 243168, + [SMALL_STATE(2485)] = 243289, + [SMALL_STATE(2486)] = 243410, + [SMALL_STATE(2487)] = 243531, + [SMALL_STATE(2488)] = 243652, + [SMALL_STATE(2489)] = 243773, + [SMALL_STATE(2490)] = 243894, + [SMALL_STATE(2491)] = 244015, + [SMALL_STATE(2492)] = 244136, + [SMALL_STATE(2493)] = 244257, + [SMALL_STATE(2494)] = 244378, + [SMALL_STATE(2495)] = 244499, + [SMALL_STATE(2496)] = 244620, + [SMALL_STATE(2497)] = 244741, + [SMALL_STATE(2498)] = 244862, + [SMALL_STATE(2499)] = 244983, + [SMALL_STATE(2500)] = 245104, + [SMALL_STATE(2501)] = 245225, + [SMALL_STATE(2502)] = 245346, + [SMALL_STATE(2503)] = 245467, + [SMALL_STATE(2504)] = 245588, + [SMALL_STATE(2505)] = 245709, + [SMALL_STATE(2506)] = 245830, + [SMALL_STATE(2507)] = 245951, + [SMALL_STATE(2508)] = 246072, + [SMALL_STATE(2509)] = 246193, + [SMALL_STATE(2510)] = 246314, + [SMALL_STATE(2511)] = 246435, + [SMALL_STATE(2512)] = 246540, + [SMALL_STATE(2513)] = 246661, + [SMALL_STATE(2514)] = 246782, + [SMALL_STATE(2515)] = 246903, + [SMALL_STATE(2516)] = 247024, + [SMALL_STATE(2517)] = 247129, + [SMALL_STATE(2518)] = 247250, + [SMALL_STATE(2519)] = 247371, + [SMALL_STATE(2520)] = 247492, + [SMALL_STATE(2521)] = 247613, + [SMALL_STATE(2522)] = 247734, + [SMALL_STATE(2523)] = 247855, + [SMALL_STATE(2524)] = 247976, + [SMALL_STATE(2525)] = 248097, + [SMALL_STATE(2526)] = 248202, + [SMALL_STATE(2527)] = 248323, + [SMALL_STATE(2528)] = 248444, + [SMALL_STATE(2529)] = 248565, + [SMALL_STATE(2530)] = 248686, + [SMALL_STATE(2531)] = 248807, + [SMALL_STATE(2532)] = 248928, + [SMALL_STATE(2533)] = 249049, + [SMALL_STATE(2534)] = 249170, + [SMALL_STATE(2535)] = 249291, + [SMALL_STATE(2536)] = 249412, + [SMALL_STATE(2537)] = 249533, + [SMALL_STATE(2538)] = 249654, + [SMALL_STATE(2539)] = 249775, + [SMALL_STATE(2540)] = 249896, + [SMALL_STATE(2541)] = 250017, + [SMALL_STATE(2542)] = 250138, + [SMALL_STATE(2543)] = 250259, + [SMALL_STATE(2544)] = 250380, + [SMALL_STATE(2545)] = 250501, + [SMALL_STATE(2546)] = 250622, + [SMALL_STATE(2547)] = 250743, + [SMALL_STATE(2548)] = 250864, + [SMALL_STATE(2549)] = 250985, + [SMALL_STATE(2550)] = 251106, + [SMALL_STATE(2551)] = 251227, + [SMALL_STATE(2552)] = 251348, + [SMALL_STATE(2553)] = 251469, + [SMALL_STATE(2554)] = 251590, + [SMALL_STATE(2555)] = 251711, + [SMALL_STATE(2556)] = 251832, + [SMALL_STATE(2557)] = 251953, + [SMALL_STATE(2558)] = 252074, + [SMALL_STATE(2559)] = 252195, + [SMALL_STATE(2560)] = 252316, + [SMALL_STATE(2561)] = 252437, + [SMALL_STATE(2562)] = 252558, + [SMALL_STATE(2563)] = 252679, + [SMALL_STATE(2564)] = 252800, + [SMALL_STATE(2565)] = 252921, + [SMALL_STATE(2566)] = 253042, + [SMALL_STATE(2567)] = 253163, + [SMALL_STATE(2568)] = 253284, + [SMALL_STATE(2569)] = 253405, + [SMALL_STATE(2570)] = 253526, + [SMALL_STATE(2571)] = 253647, + [SMALL_STATE(2572)] = 253768, + [SMALL_STATE(2573)] = 253889, + [SMALL_STATE(2574)] = 254010, + [SMALL_STATE(2575)] = 254131, + [SMALL_STATE(2576)] = 254252, + [SMALL_STATE(2577)] = 254373, + [SMALL_STATE(2578)] = 254494, + [SMALL_STATE(2579)] = 254615, + [SMALL_STATE(2580)] = 254736, + [SMALL_STATE(2581)] = 254857, + [SMALL_STATE(2582)] = 254978, + [SMALL_STATE(2583)] = 255099, + [SMALL_STATE(2584)] = 255220, + [SMALL_STATE(2585)] = 255341, + [SMALL_STATE(2586)] = 255462, + [SMALL_STATE(2587)] = 255583, + [SMALL_STATE(2588)] = 255704, + [SMALL_STATE(2589)] = 255825, + [SMALL_STATE(2590)] = 255946, + [SMALL_STATE(2591)] = 256067, + [SMALL_STATE(2592)] = 256188, + [SMALL_STATE(2593)] = 256309, + [SMALL_STATE(2594)] = 256430, + [SMALL_STATE(2595)] = 256551, + [SMALL_STATE(2596)] = 256672, + [SMALL_STATE(2597)] = 256793, + [SMALL_STATE(2598)] = 256914, + [SMALL_STATE(2599)] = 257035, + [SMALL_STATE(2600)] = 257156, + [SMALL_STATE(2601)] = 257277, + [SMALL_STATE(2602)] = 257398, + [SMALL_STATE(2603)] = 257519, + [SMALL_STATE(2604)] = 257640, + [SMALL_STATE(2605)] = 257761, + [SMALL_STATE(2606)] = 257882, + [SMALL_STATE(2607)] = 258003, + [SMALL_STATE(2608)] = 258124, + [SMALL_STATE(2609)] = 258245, + [SMALL_STATE(2610)] = 258366, + [SMALL_STATE(2611)] = 258487, + [SMALL_STATE(2612)] = 258608, + [SMALL_STATE(2613)] = 258729, + [SMALL_STATE(2614)] = 258850, + [SMALL_STATE(2615)] = 258971, + [SMALL_STATE(2616)] = 259092, + [SMALL_STATE(2617)] = 259213, + [SMALL_STATE(2618)] = 259334, + [SMALL_STATE(2619)] = 259455, + [SMALL_STATE(2620)] = 259576, + [SMALL_STATE(2621)] = 259697, + [SMALL_STATE(2622)] = 259818, + [SMALL_STATE(2623)] = 259939, + [SMALL_STATE(2624)] = 260060, + [SMALL_STATE(2625)] = 260181, + [SMALL_STATE(2626)] = 260302, + [SMALL_STATE(2627)] = 260423, + [SMALL_STATE(2628)] = 260544, + [SMALL_STATE(2629)] = 260665, + [SMALL_STATE(2630)] = 260786, + [SMALL_STATE(2631)] = 260907, + [SMALL_STATE(2632)] = 261028, + [SMALL_STATE(2633)] = 261149, + [SMALL_STATE(2634)] = 261270, + [SMALL_STATE(2635)] = 261391, + [SMALL_STATE(2636)] = 261512, + [SMALL_STATE(2637)] = 261633, + [SMALL_STATE(2638)] = 261754, + [SMALL_STATE(2639)] = 261875, + [SMALL_STATE(2640)] = 261996, + [SMALL_STATE(2641)] = 262117, + [SMALL_STATE(2642)] = 262238, + [SMALL_STATE(2643)] = 262359, + [SMALL_STATE(2644)] = 262480, + [SMALL_STATE(2645)] = 262601, + [SMALL_STATE(2646)] = 262722, + [SMALL_STATE(2647)] = 262843, + [SMALL_STATE(2648)] = 262964, + [SMALL_STATE(2649)] = 263085, + [SMALL_STATE(2650)] = 263206, + [SMALL_STATE(2651)] = 263327, + [SMALL_STATE(2652)] = 263448, + [SMALL_STATE(2653)] = 263569, + [SMALL_STATE(2654)] = 263690, + [SMALL_STATE(2655)] = 263811, + [SMALL_STATE(2656)] = 263932, + [SMALL_STATE(2657)] = 264053, + [SMALL_STATE(2658)] = 264174, + [SMALL_STATE(2659)] = 264295, + [SMALL_STATE(2660)] = 264416, + [SMALL_STATE(2661)] = 264537, + [SMALL_STATE(2662)] = 264658, + [SMALL_STATE(2663)] = 264779, + [SMALL_STATE(2664)] = 264900, + [SMALL_STATE(2665)] = 265021, + [SMALL_STATE(2666)] = 265142, + [SMALL_STATE(2667)] = 265263, + [SMALL_STATE(2668)] = 265384, + [SMALL_STATE(2669)] = 265505, + [SMALL_STATE(2670)] = 265626, + [SMALL_STATE(2671)] = 265747, + [SMALL_STATE(2672)] = 265868, + [SMALL_STATE(2673)] = 265989, + [SMALL_STATE(2674)] = 266110, + [SMALL_STATE(2675)] = 266231, + [SMALL_STATE(2676)] = 266352, + [SMALL_STATE(2677)] = 266473, + [SMALL_STATE(2678)] = 266594, + [SMALL_STATE(2679)] = 266715, + [SMALL_STATE(2680)] = 266836, + [SMALL_STATE(2681)] = 266957, + [SMALL_STATE(2682)] = 267078, + [SMALL_STATE(2683)] = 267199, + [SMALL_STATE(2684)] = 267320, + [SMALL_STATE(2685)] = 267441, + [SMALL_STATE(2686)] = 267562, + [SMALL_STATE(2687)] = 267683, + [SMALL_STATE(2688)] = 267804, + [SMALL_STATE(2689)] = 267925, + [SMALL_STATE(2690)] = 268046, + [SMALL_STATE(2691)] = 268167, + [SMALL_STATE(2692)] = 268288, + [SMALL_STATE(2693)] = 268409, + [SMALL_STATE(2694)] = 268530, + [SMALL_STATE(2695)] = 268651, + [SMALL_STATE(2696)] = 268772, + [SMALL_STATE(2697)] = 268893, + [SMALL_STATE(2698)] = 269014, + [SMALL_STATE(2699)] = 269135, + [SMALL_STATE(2700)] = 269256, + [SMALL_STATE(2701)] = 269377, + [SMALL_STATE(2702)] = 269498, + [SMALL_STATE(2703)] = 269619, + [SMALL_STATE(2704)] = 269740, + [SMALL_STATE(2705)] = 269861, + [SMALL_STATE(2706)] = 269982, + [SMALL_STATE(2707)] = 270103, + [SMALL_STATE(2708)] = 270224, + [SMALL_STATE(2709)] = 270345, + [SMALL_STATE(2710)] = 270466, + [SMALL_STATE(2711)] = 270587, + [SMALL_STATE(2712)] = 270708, + [SMALL_STATE(2713)] = 270829, + [SMALL_STATE(2714)] = 270950, + [SMALL_STATE(2715)] = 271071, + [SMALL_STATE(2716)] = 271192, + [SMALL_STATE(2717)] = 271313, + [SMALL_STATE(2718)] = 271434, + [SMALL_STATE(2719)] = 271555, + [SMALL_STATE(2720)] = 271676, + [SMALL_STATE(2721)] = 271797, + [SMALL_STATE(2722)] = 271918, + [SMALL_STATE(2723)] = 272039, + [SMALL_STATE(2724)] = 272160, + [SMALL_STATE(2725)] = 272281, + [SMALL_STATE(2726)] = 272402, + [SMALL_STATE(2727)] = 272523, + [SMALL_STATE(2728)] = 272644, + [SMALL_STATE(2729)] = 272765, + [SMALL_STATE(2730)] = 272886, + [SMALL_STATE(2731)] = 273007, + [SMALL_STATE(2732)] = 273128, + [SMALL_STATE(2733)] = 273249, + [SMALL_STATE(2734)] = 273370, + [SMALL_STATE(2735)] = 273491, + [SMALL_STATE(2736)] = 273612, + [SMALL_STATE(2737)] = 273733, + [SMALL_STATE(2738)] = 273854, + [SMALL_STATE(2739)] = 273975, + [SMALL_STATE(2740)] = 274096, + [SMALL_STATE(2741)] = 274217, + [SMALL_STATE(2742)] = 274338, + [SMALL_STATE(2743)] = 274459, + [SMALL_STATE(2744)] = 274580, + [SMALL_STATE(2745)] = 274701, + [SMALL_STATE(2746)] = 274822, + [SMALL_STATE(2747)] = 274943, + [SMALL_STATE(2748)] = 275064, + [SMALL_STATE(2749)] = 275185, + [SMALL_STATE(2750)] = 275306, + [SMALL_STATE(2751)] = 275427, + [SMALL_STATE(2752)] = 275548, + [SMALL_STATE(2753)] = 275669, + [SMALL_STATE(2754)] = 275790, + [SMALL_STATE(2755)] = 275911, + [SMALL_STATE(2756)] = 276032, + [SMALL_STATE(2757)] = 276153, + [SMALL_STATE(2758)] = 276274, + [SMALL_STATE(2759)] = 276395, + [SMALL_STATE(2760)] = 276516, + [SMALL_STATE(2761)] = 276637, + [SMALL_STATE(2762)] = 276758, + [SMALL_STATE(2763)] = 276879, + [SMALL_STATE(2764)] = 277000, + [SMALL_STATE(2765)] = 277121, + [SMALL_STATE(2766)] = 277242, + [SMALL_STATE(2767)] = 277363, + [SMALL_STATE(2768)] = 277484, + [SMALL_STATE(2769)] = 277605, + [SMALL_STATE(2770)] = 277726, + [SMALL_STATE(2771)] = 277847, + [SMALL_STATE(2772)] = 277968, + [SMALL_STATE(2773)] = 278089, + [SMALL_STATE(2774)] = 278210, + [SMALL_STATE(2775)] = 278331, + [SMALL_STATE(2776)] = 278452, + [SMALL_STATE(2777)] = 278573, + [SMALL_STATE(2778)] = 278694, + [SMALL_STATE(2779)] = 278815, + [SMALL_STATE(2780)] = 278936, + [SMALL_STATE(2781)] = 279057, + [SMALL_STATE(2782)] = 279178, + [SMALL_STATE(2783)] = 279299, + [SMALL_STATE(2784)] = 279420, + [SMALL_STATE(2785)] = 279541, + [SMALL_STATE(2786)] = 279662, + [SMALL_STATE(2787)] = 279783, + [SMALL_STATE(2788)] = 279904, + [SMALL_STATE(2789)] = 280025, + [SMALL_STATE(2790)] = 280146, + [SMALL_STATE(2791)] = 280267, + [SMALL_STATE(2792)] = 280388, + [SMALL_STATE(2793)] = 280509, + [SMALL_STATE(2794)] = 280630, + [SMALL_STATE(2795)] = 280751, + [SMALL_STATE(2796)] = 280872, + [SMALL_STATE(2797)] = 280993, + [SMALL_STATE(2798)] = 281114, + [SMALL_STATE(2799)] = 281235, + [SMALL_STATE(2800)] = 281356, + [SMALL_STATE(2801)] = 281477, + [SMALL_STATE(2802)] = 281598, + [SMALL_STATE(2803)] = 281719, + [SMALL_STATE(2804)] = 281840, + [SMALL_STATE(2805)] = 281961, + [SMALL_STATE(2806)] = 282082, + [SMALL_STATE(2807)] = 282203, + [SMALL_STATE(2808)] = 282324, + [SMALL_STATE(2809)] = 282445, + [SMALL_STATE(2810)] = 282566, + [SMALL_STATE(2811)] = 282687, + [SMALL_STATE(2812)] = 282808, + [SMALL_STATE(2813)] = 282929, + [SMALL_STATE(2814)] = 283050, + [SMALL_STATE(2815)] = 283171, + [SMALL_STATE(2816)] = 283292, + [SMALL_STATE(2817)] = 283413, + [SMALL_STATE(2818)] = 283534, + [SMALL_STATE(2819)] = 283655, + [SMALL_STATE(2820)] = 283776, + [SMALL_STATE(2821)] = 283897, + [SMALL_STATE(2822)] = 284018, + [SMALL_STATE(2823)] = 284139, + [SMALL_STATE(2824)] = 284260, + [SMALL_STATE(2825)] = 284381, + [SMALL_STATE(2826)] = 284502, + [SMALL_STATE(2827)] = 284623, + [SMALL_STATE(2828)] = 284744, + [SMALL_STATE(2829)] = 284865, + [SMALL_STATE(2830)] = 284986, + [SMALL_STATE(2831)] = 285107, + [SMALL_STATE(2832)] = 285228, + [SMALL_STATE(2833)] = 285349, + [SMALL_STATE(2834)] = 285470, + [SMALL_STATE(2835)] = 285591, + [SMALL_STATE(2836)] = 285712, + [SMALL_STATE(2837)] = 285833, + [SMALL_STATE(2838)] = 285954, + [SMALL_STATE(2839)] = 286075, + [SMALL_STATE(2840)] = 286196, + [SMALL_STATE(2841)] = 286317, + [SMALL_STATE(2842)] = 286438, + [SMALL_STATE(2843)] = 286559, + [SMALL_STATE(2844)] = 286680, + [SMALL_STATE(2845)] = 286801, + [SMALL_STATE(2846)] = 286922, + [SMALL_STATE(2847)] = 287043, + [SMALL_STATE(2848)] = 287164, + [SMALL_STATE(2849)] = 287285, + [SMALL_STATE(2850)] = 287406, + [SMALL_STATE(2851)] = 287527, + [SMALL_STATE(2852)] = 287648, + [SMALL_STATE(2853)] = 287769, + [SMALL_STATE(2854)] = 287890, + [SMALL_STATE(2855)] = 288011, + [SMALL_STATE(2856)] = 288132, + [SMALL_STATE(2857)] = 288253, + [SMALL_STATE(2858)] = 288374, + [SMALL_STATE(2859)] = 288495, + [SMALL_STATE(2860)] = 288616, + [SMALL_STATE(2861)] = 288737, + [SMALL_STATE(2862)] = 288858, + [SMALL_STATE(2863)] = 288979, + [SMALL_STATE(2864)] = 289100, + [SMALL_STATE(2865)] = 289221, + [SMALL_STATE(2866)] = 289342, + [SMALL_STATE(2867)] = 289463, + [SMALL_STATE(2868)] = 289584, + [SMALL_STATE(2869)] = 289705, + [SMALL_STATE(2870)] = 289826, + [SMALL_STATE(2871)] = 289947, + [SMALL_STATE(2872)] = 290068, + [SMALL_STATE(2873)] = 290189, + [SMALL_STATE(2874)] = 290310, + [SMALL_STATE(2875)] = 290431, + [SMALL_STATE(2876)] = 290552, + [SMALL_STATE(2877)] = 290673, + [SMALL_STATE(2878)] = 290794, + [SMALL_STATE(2879)] = 290915, + [SMALL_STATE(2880)] = 291036, + [SMALL_STATE(2881)] = 291157, + [SMALL_STATE(2882)] = 291278, + [SMALL_STATE(2883)] = 291399, + [SMALL_STATE(2884)] = 291520, + [SMALL_STATE(2885)] = 291638, + [SMALL_STATE(2886)] = 291756, + [SMALL_STATE(2887)] = 291874, + [SMALL_STATE(2888)] = 291992, + [SMALL_STATE(2889)] = 292110, + [SMALL_STATE(2890)] = 292228, + [SMALL_STATE(2891)] = 292346, + [SMALL_STATE(2892)] = 292464, + [SMALL_STATE(2893)] = 292582, + [SMALL_STATE(2894)] = 292700, + [SMALL_STATE(2895)] = 292818, + [SMALL_STATE(2896)] = 292936, + [SMALL_STATE(2897)] = 293054, + [SMALL_STATE(2898)] = 293172, + [SMALL_STATE(2899)] = 293290, + [SMALL_STATE(2900)] = 293408, + [SMALL_STATE(2901)] = 293526, + [SMALL_STATE(2902)] = 293644, + [SMALL_STATE(2903)] = 293762, + [SMALL_STATE(2904)] = 293880, + [SMALL_STATE(2905)] = 293998, + [SMALL_STATE(2906)] = 294116, + [SMALL_STATE(2907)] = 294234, + [SMALL_STATE(2908)] = 294352, + [SMALL_STATE(2909)] = 294470, + [SMALL_STATE(2910)] = 294588, + [SMALL_STATE(2911)] = 294706, + [SMALL_STATE(2912)] = 294824, + [SMALL_STATE(2913)] = 294942, + [SMALL_STATE(2914)] = 295060, + [SMALL_STATE(2915)] = 295178, + [SMALL_STATE(2916)] = 295296, + [SMALL_STATE(2917)] = 295414, + [SMALL_STATE(2918)] = 295532, + [SMALL_STATE(2919)] = 295650, + [SMALL_STATE(2920)] = 295768, + [SMALL_STATE(2921)] = 295886, + [SMALL_STATE(2922)] = 296004, + [SMALL_STATE(2923)] = 296122, + [SMALL_STATE(2924)] = 296240, + [SMALL_STATE(2925)] = 296358, + [SMALL_STATE(2926)] = 296476, + [SMALL_STATE(2927)] = 296594, + [SMALL_STATE(2928)] = 296712, + [SMALL_STATE(2929)] = 296830, + [SMALL_STATE(2930)] = 296948, + [SMALL_STATE(2931)] = 297066, + [SMALL_STATE(2932)] = 297184, + [SMALL_STATE(2933)] = 297302, + [SMALL_STATE(2934)] = 297420, + [SMALL_STATE(2935)] = 297538, + [SMALL_STATE(2936)] = 297656, + [SMALL_STATE(2937)] = 297774, + [SMALL_STATE(2938)] = 297892, + [SMALL_STATE(2939)] = 298010, + [SMALL_STATE(2940)] = 298128, + [SMALL_STATE(2941)] = 298246, + [SMALL_STATE(2942)] = 298364, + [SMALL_STATE(2943)] = 298482, + [SMALL_STATE(2944)] = 298600, + [SMALL_STATE(2945)] = 298718, + [SMALL_STATE(2946)] = 298836, + [SMALL_STATE(2947)] = 298954, + [SMALL_STATE(2948)] = 299072, + [SMALL_STATE(2949)] = 299190, + [SMALL_STATE(2950)] = 299308, + [SMALL_STATE(2951)] = 299426, + [SMALL_STATE(2952)] = 299544, + [SMALL_STATE(2953)] = 299662, + [SMALL_STATE(2954)] = 299780, + [SMALL_STATE(2955)] = 299898, + [SMALL_STATE(2956)] = 300016, + [SMALL_STATE(2957)] = 300134, + [SMALL_STATE(2958)] = 300252, + [SMALL_STATE(2959)] = 300370, + [SMALL_STATE(2960)] = 300488, + [SMALL_STATE(2961)] = 300606, + [SMALL_STATE(2962)] = 300724, + [SMALL_STATE(2963)] = 300842, + [SMALL_STATE(2964)] = 300960, + [SMALL_STATE(2965)] = 301078, + [SMALL_STATE(2966)] = 301196, + [SMALL_STATE(2967)] = 301314, + [SMALL_STATE(2968)] = 301432, + [SMALL_STATE(2969)] = 301550, + [SMALL_STATE(2970)] = 301668, + [SMALL_STATE(2971)] = 301786, + [SMALL_STATE(2972)] = 301904, + [SMALL_STATE(2973)] = 302022, + [SMALL_STATE(2974)] = 302140, + [SMALL_STATE(2975)] = 302258, + [SMALL_STATE(2976)] = 302376, + [SMALL_STATE(2977)] = 302494, + [SMALL_STATE(2978)] = 302612, + [SMALL_STATE(2979)] = 302730, + [SMALL_STATE(2980)] = 302848, + [SMALL_STATE(2981)] = 302966, + [SMALL_STATE(2982)] = 303084, + [SMALL_STATE(2983)] = 303202, + [SMALL_STATE(2984)] = 303320, + [SMALL_STATE(2985)] = 303438, + [SMALL_STATE(2986)] = 303556, + [SMALL_STATE(2987)] = 303674, + [SMALL_STATE(2988)] = 303792, + [SMALL_STATE(2989)] = 303910, + [SMALL_STATE(2990)] = 304028, + [SMALL_STATE(2991)] = 304146, + [SMALL_STATE(2992)] = 304264, + [SMALL_STATE(2993)] = 304382, + [SMALL_STATE(2994)] = 304500, + [SMALL_STATE(2995)] = 304618, + [SMALL_STATE(2996)] = 304736, + [SMALL_STATE(2997)] = 304854, + [SMALL_STATE(2998)] = 304972, + [SMALL_STATE(2999)] = 305090, + [SMALL_STATE(3000)] = 305208, + [SMALL_STATE(3001)] = 305326, + [SMALL_STATE(3002)] = 305444, + [SMALL_STATE(3003)] = 305562, + [SMALL_STATE(3004)] = 305680, + [SMALL_STATE(3005)] = 305798, + [SMALL_STATE(3006)] = 305916, + [SMALL_STATE(3007)] = 306034, + [SMALL_STATE(3008)] = 306152, + [SMALL_STATE(3009)] = 306270, + [SMALL_STATE(3010)] = 306388, + [SMALL_STATE(3011)] = 306506, + [SMALL_STATE(3012)] = 306624, + [SMALL_STATE(3013)] = 306742, + [SMALL_STATE(3014)] = 306860, + [SMALL_STATE(3015)] = 306978, + [SMALL_STATE(3016)] = 307096, + [SMALL_STATE(3017)] = 307214, + [SMALL_STATE(3018)] = 307332, + [SMALL_STATE(3019)] = 307450, + [SMALL_STATE(3020)] = 307568, + [SMALL_STATE(3021)] = 307686, + [SMALL_STATE(3022)] = 307804, + [SMALL_STATE(3023)] = 307922, + [SMALL_STATE(3024)] = 308040, + [SMALL_STATE(3025)] = 308158, + [SMALL_STATE(3026)] = 308276, + [SMALL_STATE(3027)] = 308394, + [SMALL_STATE(3028)] = 308512, + [SMALL_STATE(3029)] = 308630, + [SMALL_STATE(3030)] = 308748, + [SMALL_STATE(3031)] = 308866, + [SMALL_STATE(3032)] = 308984, + [SMALL_STATE(3033)] = 309102, + [SMALL_STATE(3034)] = 309220, + [SMALL_STATE(3035)] = 309338, + [SMALL_STATE(3036)] = 309456, + [SMALL_STATE(3037)] = 309574, + [SMALL_STATE(3038)] = 309692, + [SMALL_STATE(3039)] = 309810, + [SMALL_STATE(3040)] = 309928, + [SMALL_STATE(3041)] = 310046, + [SMALL_STATE(3042)] = 310164, + [SMALL_STATE(3043)] = 310282, + [SMALL_STATE(3044)] = 310400, + [SMALL_STATE(3045)] = 310518, + [SMALL_STATE(3046)] = 310636, + [SMALL_STATE(3047)] = 310754, + [SMALL_STATE(3048)] = 310872, + [SMALL_STATE(3049)] = 310990, + [SMALL_STATE(3050)] = 311108, + [SMALL_STATE(3051)] = 311226, + [SMALL_STATE(3052)] = 311344, + [SMALL_STATE(3053)] = 311462, + [SMALL_STATE(3054)] = 311580, + [SMALL_STATE(3055)] = 311698, + [SMALL_STATE(3056)] = 311816, + [SMALL_STATE(3057)] = 311934, + [SMALL_STATE(3058)] = 312052, + [SMALL_STATE(3059)] = 312170, + [SMALL_STATE(3060)] = 312288, + [SMALL_STATE(3061)] = 312406, + [SMALL_STATE(3062)] = 312524, + [SMALL_STATE(3063)] = 312642, + [SMALL_STATE(3064)] = 312760, + [SMALL_STATE(3065)] = 312878, + [SMALL_STATE(3066)] = 312996, + [SMALL_STATE(3067)] = 313114, + [SMALL_STATE(3068)] = 313232, + [SMALL_STATE(3069)] = 313350, + [SMALL_STATE(3070)] = 313468, + [SMALL_STATE(3071)] = 313586, + [SMALL_STATE(3072)] = 313704, + [SMALL_STATE(3073)] = 313822, + [SMALL_STATE(3074)] = 313940, + [SMALL_STATE(3075)] = 314058, + [SMALL_STATE(3076)] = 314176, + [SMALL_STATE(3077)] = 314294, + [SMALL_STATE(3078)] = 314412, + [SMALL_STATE(3079)] = 314530, + [SMALL_STATE(3080)] = 314648, + [SMALL_STATE(3081)] = 314766, + [SMALL_STATE(3082)] = 314884, + [SMALL_STATE(3083)] = 315002, + [SMALL_STATE(3084)] = 315120, + [SMALL_STATE(3085)] = 315238, + [SMALL_STATE(3086)] = 315356, + [SMALL_STATE(3087)] = 315474, + [SMALL_STATE(3088)] = 315592, + [SMALL_STATE(3089)] = 315710, + [SMALL_STATE(3090)] = 315828, + [SMALL_STATE(3091)] = 315946, + [SMALL_STATE(3092)] = 316064, + [SMALL_STATE(3093)] = 316182, + [SMALL_STATE(3094)] = 316300, + [SMALL_STATE(3095)] = 316418, + [SMALL_STATE(3096)] = 316536, + [SMALL_STATE(3097)] = 316654, + [SMALL_STATE(3098)] = 316772, + [SMALL_STATE(3099)] = 316890, + [SMALL_STATE(3100)] = 317008, + [SMALL_STATE(3101)] = 317126, + [SMALL_STATE(3102)] = 317244, + [SMALL_STATE(3103)] = 317362, + [SMALL_STATE(3104)] = 317480, + [SMALL_STATE(3105)] = 317598, + [SMALL_STATE(3106)] = 317716, + [SMALL_STATE(3107)] = 317834, + [SMALL_STATE(3108)] = 317952, + [SMALL_STATE(3109)] = 318070, + [SMALL_STATE(3110)] = 318188, + [SMALL_STATE(3111)] = 318306, + [SMALL_STATE(3112)] = 318424, + [SMALL_STATE(3113)] = 318542, + [SMALL_STATE(3114)] = 318660, + [SMALL_STATE(3115)] = 318778, + [SMALL_STATE(3116)] = 318896, + [SMALL_STATE(3117)] = 319014, + [SMALL_STATE(3118)] = 319132, + [SMALL_STATE(3119)] = 319250, + [SMALL_STATE(3120)] = 319368, + [SMALL_STATE(3121)] = 319486, + [SMALL_STATE(3122)] = 319604, + [SMALL_STATE(3123)] = 319722, + [SMALL_STATE(3124)] = 319840, + [SMALL_STATE(3125)] = 319958, + [SMALL_STATE(3126)] = 320076, + [SMALL_STATE(3127)] = 320194, + [SMALL_STATE(3128)] = 320312, + [SMALL_STATE(3129)] = 320430, + [SMALL_STATE(3130)] = 320548, + [SMALL_STATE(3131)] = 320666, + [SMALL_STATE(3132)] = 320784, + [SMALL_STATE(3133)] = 320902, + [SMALL_STATE(3134)] = 321020, + [SMALL_STATE(3135)] = 321138, + [SMALL_STATE(3136)] = 321256, + [SMALL_STATE(3137)] = 321374, + [SMALL_STATE(3138)] = 321492, + [SMALL_STATE(3139)] = 321610, + [SMALL_STATE(3140)] = 321728, + [SMALL_STATE(3141)] = 321846, + [SMALL_STATE(3142)] = 321964, + [SMALL_STATE(3143)] = 322082, + [SMALL_STATE(3144)] = 322200, + [SMALL_STATE(3145)] = 322318, + [SMALL_STATE(3146)] = 322436, + [SMALL_STATE(3147)] = 322554, + [SMALL_STATE(3148)] = 322672, + [SMALL_STATE(3149)] = 322790, + [SMALL_STATE(3150)] = 322908, + [SMALL_STATE(3151)] = 323026, + [SMALL_STATE(3152)] = 323144, + [SMALL_STATE(3153)] = 323262, + [SMALL_STATE(3154)] = 323380, + [SMALL_STATE(3155)] = 323498, + [SMALL_STATE(3156)] = 323616, + [SMALL_STATE(3157)] = 323734, + [SMALL_STATE(3158)] = 323852, + [SMALL_STATE(3159)] = 323970, + [SMALL_STATE(3160)] = 324088, + [SMALL_STATE(3161)] = 324206, + [SMALL_STATE(3162)] = 324324, + [SMALL_STATE(3163)] = 324442, + [SMALL_STATE(3164)] = 324560, + [SMALL_STATE(3165)] = 324678, + [SMALL_STATE(3166)] = 324796, + [SMALL_STATE(3167)] = 324914, + [SMALL_STATE(3168)] = 325032, + [SMALL_STATE(3169)] = 325150, + [SMALL_STATE(3170)] = 325268, + [SMALL_STATE(3171)] = 325386, + [SMALL_STATE(3172)] = 325504, + [SMALL_STATE(3173)] = 325622, + [SMALL_STATE(3174)] = 325740, + [SMALL_STATE(3175)] = 325858, + [SMALL_STATE(3176)] = 325976, + [SMALL_STATE(3177)] = 326094, + [SMALL_STATE(3178)] = 326212, + [SMALL_STATE(3179)] = 326330, + [SMALL_STATE(3180)] = 326448, + [SMALL_STATE(3181)] = 326566, + [SMALL_STATE(3182)] = 326684, + [SMALL_STATE(3183)] = 326802, + [SMALL_STATE(3184)] = 326920, + [SMALL_STATE(3185)] = 327038, + [SMALL_STATE(3186)] = 327156, + [SMALL_STATE(3187)] = 327274, + [SMALL_STATE(3188)] = 327392, + [SMALL_STATE(3189)] = 327510, + [SMALL_STATE(3190)] = 327628, + [SMALL_STATE(3191)] = 327746, + [SMALL_STATE(3192)] = 327864, + [SMALL_STATE(3193)] = 327982, + [SMALL_STATE(3194)] = 328100, + [SMALL_STATE(3195)] = 328218, + [SMALL_STATE(3196)] = 328336, + [SMALL_STATE(3197)] = 328454, + [SMALL_STATE(3198)] = 328572, + [SMALL_STATE(3199)] = 328690, + [SMALL_STATE(3200)] = 328808, + [SMALL_STATE(3201)] = 328926, + [SMALL_STATE(3202)] = 329044, + [SMALL_STATE(3203)] = 329162, + [SMALL_STATE(3204)] = 329280, + [SMALL_STATE(3205)] = 329398, + [SMALL_STATE(3206)] = 329516, + [SMALL_STATE(3207)] = 329634, + [SMALL_STATE(3208)] = 329752, + [SMALL_STATE(3209)] = 329870, + [SMALL_STATE(3210)] = 329988, + [SMALL_STATE(3211)] = 330106, + [SMALL_STATE(3212)] = 330224, + [SMALL_STATE(3213)] = 330342, + [SMALL_STATE(3214)] = 330460, + [SMALL_STATE(3215)] = 330578, + [SMALL_STATE(3216)] = 330696, + [SMALL_STATE(3217)] = 330814, + [SMALL_STATE(3218)] = 330932, + [SMALL_STATE(3219)] = 331050, + [SMALL_STATE(3220)] = 331168, + [SMALL_STATE(3221)] = 331286, + [SMALL_STATE(3222)] = 331404, + [SMALL_STATE(3223)] = 331522, + [SMALL_STATE(3224)] = 331637, + [SMALL_STATE(3225)] = 331752, + [SMALL_STATE(3226)] = 331867, + [SMALL_STATE(3227)] = 331982, + [SMALL_STATE(3228)] = 332097, + [SMALL_STATE(3229)] = 332212, + [SMALL_STATE(3230)] = 332324, + [SMALL_STATE(3231)] = 332436, + [SMALL_STATE(3232)] = 332548, + [SMALL_STATE(3233)] = 332660, + [SMALL_STATE(3234)] = 332772, + [SMALL_STATE(3235)] = 332884, + [SMALL_STATE(3236)] = 332996, + [SMALL_STATE(3237)] = 333108, + [SMALL_STATE(3238)] = 333220, + [SMALL_STATE(3239)] = 333332, + [SMALL_STATE(3240)] = 333444, + [SMALL_STATE(3241)] = 333556, + [SMALL_STATE(3242)] = 333668, + [SMALL_STATE(3243)] = 333780, + [SMALL_STATE(3244)] = 333892, + [SMALL_STATE(3245)] = 334004, + [SMALL_STATE(3246)] = 334116, + [SMALL_STATE(3247)] = 334228, + [SMALL_STATE(3248)] = 334340, + [SMALL_STATE(3249)] = 334452, + [SMALL_STATE(3250)] = 334564, + [SMALL_STATE(3251)] = 334676, + [SMALL_STATE(3252)] = 334788, + [SMALL_STATE(3253)] = 334900, + [SMALL_STATE(3254)] = 335012, + [SMALL_STATE(3255)] = 335124, + [SMALL_STATE(3256)] = 335236, + [SMALL_STATE(3257)] = 335348, + [SMALL_STATE(3258)] = 335460, + [SMALL_STATE(3259)] = 335572, + [SMALL_STATE(3260)] = 335684, + [SMALL_STATE(3261)] = 335796, + [SMALL_STATE(3262)] = 335908, + [SMALL_STATE(3263)] = 336020, + [SMALL_STATE(3264)] = 336132, + [SMALL_STATE(3265)] = 336244, + [SMALL_STATE(3266)] = 336356, + [SMALL_STATE(3267)] = 336468, + [SMALL_STATE(3268)] = 336580, + [SMALL_STATE(3269)] = 336692, + [SMALL_STATE(3270)] = 336804, + [SMALL_STATE(3271)] = 336916, + [SMALL_STATE(3272)] = 337028, + [SMALL_STATE(3273)] = 337140, + [SMALL_STATE(3274)] = 337252, + [SMALL_STATE(3275)] = 337364, + [SMALL_STATE(3276)] = 337476, + [SMALL_STATE(3277)] = 337588, + [SMALL_STATE(3278)] = 337700, + [SMALL_STATE(3279)] = 337812, + [SMALL_STATE(3280)] = 337924, + [SMALL_STATE(3281)] = 338036, + [SMALL_STATE(3282)] = 338148, + [SMALL_STATE(3283)] = 338260, + [SMALL_STATE(3284)] = 338372, + [SMALL_STATE(3285)] = 338484, + [SMALL_STATE(3286)] = 338596, + [SMALL_STATE(3287)] = 338708, + [SMALL_STATE(3288)] = 338820, + [SMALL_STATE(3289)] = 338932, + [SMALL_STATE(3290)] = 339044, + [SMALL_STATE(3291)] = 339156, + [SMALL_STATE(3292)] = 339268, + [SMALL_STATE(3293)] = 339380, + [SMALL_STATE(3294)] = 339492, + [SMALL_STATE(3295)] = 339604, + [SMALL_STATE(3296)] = 339716, + [SMALL_STATE(3297)] = 339828, + [SMALL_STATE(3298)] = 339940, + [SMALL_STATE(3299)] = 340052, + [SMALL_STATE(3300)] = 340164, + [SMALL_STATE(3301)] = 340276, + [SMALL_STATE(3302)] = 340388, + [SMALL_STATE(3303)] = 340500, + [SMALL_STATE(3304)] = 340612, + [SMALL_STATE(3305)] = 340724, + [SMALL_STATE(3306)] = 340836, + [SMALL_STATE(3307)] = 340948, + [SMALL_STATE(3308)] = 341060, + [SMALL_STATE(3309)] = 341172, + [SMALL_STATE(3310)] = 341284, + [SMALL_STATE(3311)] = 341396, + [SMALL_STATE(3312)] = 341508, + [SMALL_STATE(3313)] = 341620, + [SMALL_STATE(3314)] = 341732, + [SMALL_STATE(3315)] = 341844, + [SMALL_STATE(3316)] = 341956, + [SMALL_STATE(3317)] = 342068, + [SMALL_STATE(3318)] = 342180, + [SMALL_STATE(3319)] = 342292, + [SMALL_STATE(3320)] = 342404, + [SMALL_STATE(3321)] = 342516, + [SMALL_STATE(3322)] = 342628, + [SMALL_STATE(3323)] = 342740, + [SMALL_STATE(3324)] = 342852, + [SMALL_STATE(3325)] = 342964, + [SMALL_STATE(3326)] = 343076, + [SMALL_STATE(3327)] = 343188, + [SMALL_STATE(3328)] = 343300, + [SMALL_STATE(3329)] = 343412, + [SMALL_STATE(3330)] = 343524, + [SMALL_STATE(3331)] = 343636, + [SMALL_STATE(3332)] = 343748, + [SMALL_STATE(3333)] = 343860, + [SMALL_STATE(3334)] = 343972, + [SMALL_STATE(3335)] = 344084, + [SMALL_STATE(3336)] = 344196, + [SMALL_STATE(3337)] = 344308, + [SMALL_STATE(3338)] = 344420, + [SMALL_STATE(3339)] = 344532, + [SMALL_STATE(3340)] = 344644, + [SMALL_STATE(3341)] = 344756, + [SMALL_STATE(3342)] = 344868, + [SMALL_STATE(3343)] = 344980, + [SMALL_STATE(3344)] = 345092, + [SMALL_STATE(3345)] = 345204, + [SMALL_STATE(3346)] = 345316, + [SMALL_STATE(3347)] = 345428, + [SMALL_STATE(3348)] = 345540, + [SMALL_STATE(3349)] = 345652, + [SMALL_STATE(3350)] = 345764, + [SMALL_STATE(3351)] = 345876, + [SMALL_STATE(3352)] = 345988, + [SMALL_STATE(3353)] = 346100, + [SMALL_STATE(3354)] = 346212, + [SMALL_STATE(3355)] = 346324, + [SMALL_STATE(3356)] = 346436, + [SMALL_STATE(3357)] = 346548, + [SMALL_STATE(3358)] = 346660, + [SMALL_STATE(3359)] = 346772, + [SMALL_STATE(3360)] = 346884, + [SMALL_STATE(3361)] = 346996, + [SMALL_STATE(3362)] = 347108, + [SMALL_STATE(3363)] = 347220, + [SMALL_STATE(3364)] = 347332, + [SMALL_STATE(3365)] = 347444, + [SMALL_STATE(3366)] = 347556, + [SMALL_STATE(3367)] = 347668, + [SMALL_STATE(3368)] = 347780, + [SMALL_STATE(3369)] = 347892, + [SMALL_STATE(3370)] = 348004, + [SMALL_STATE(3371)] = 348116, + [SMALL_STATE(3372)] = 348228, + [SMALL_STATE(3373)] = 348340, + [SMALL_STATE(3374)] = 348452, + [SMALL_STATE(3375)] = 348564, + [SMALL_STATE(3376)] = 348676, + [SMALL_STATE(3377)] = 348788, + [SMALL_STATE(3378)] = 348900, + [SMALL_STATE(3379)] = 349012, + [SMALL_STATE(3380)] = 349124, + [SMALL_STATE(3381)] = 349236, + [SMALL_STATE(3382)] = 349348, + [SMALL_STATE(3383)] = 349460, + [SMALL_STATE(3384)] = 349572, + [SMALL_STATE(3385)] = 349684, + [SMALL_STATE(3386)] = 349796, + [SMALL_STATE(3387)] = 349908, + [SMALL_STATE(3388)] = 350020, + [SMALL_STATE(3389)] = 350132, + [SMALL_STATE(3390)] = 350244, + [SMALL_STATE(3391)] = 350356, + [SMALL_STATE(3392)] = 350468, + [SMALL_STATE(3393)] = 350580, + [SMALL_STATE(3394)] = 350692, + [SMALL_STATE(3395)] = 350804, + [SMALL_STATE(3396)] = 350916, + [SMALL_STATE(3397)] = 351028, + [SMALL_STATE(3398)] = 351140, + [SMALL_STATE(3399)] = 351252, + [SMALL_STATE(3400)] = 351364, + [SMALL_STATE(3401)] = 351476, + [SMALL_STATE(3402)] = 351588, + [SMALL_STATE(3403)] = 351700, + [SMALL_STATE(3404)] = 351812, + [SMALL_STATE(3405)] = 351924, + [SMALL_STATE(3406)] = 352036, + [SMALL_STATE(3407)] = 352148, + [SMALL_STATE(3408)] = 352260, + [SMALL_STATE(3409)] = 352372, + [SMALL_STATE(3410)] = 352484, + [SMALL_STATE(3411)] = 352596, + [SMALL_STATE(3412)] = 352708, + [SMALL_STATE(3413)] = 352820, + [SMALL_STATE(3414)] = 352932, + [SMALL_STATE(3415)] = 353044, + [SMALL_STATE(3416)] = 353156, + [SMALL_STATE(3417)] = 353268, + [SMALL_STATE(3418)] = 353380, + [SMALL_STATE(3419)] = 353492, + [SMALL_STATE(3420)] = 353604, + [SMALL_STATE(3421)] = 353716, + [SMALL_STATE(3422)] = 353828, + [SMALL_STATE(3423)] = 353940, + [SMALL_STATE(3424)] = 354052, + [SMALL_STATE(3425)] = 354164, + [SMALL_STATE(3426)] = 354276, + [SMALL_STATE(3427)] = 354388, + [SMALL_STATE(3428)] = 354500, + [SMALL_STATE(3429)] = 354612, + [SMALL_STATE(3430)] = 354724, + [SMALL_STATE(3431)] = 354836, + [SMALL_STATE(3432)] = 354948, + [SMALL_STATE(3433)] = 355060, + [SMALL_STATE(3434)] = 355172, + [SMALL_STATE(3435)] = 355284, + [SMALL_STATE(3436)] = 355396, + [SMALL_STATE(3437)] = 355508, + [SMALL_STATE(3438)] = 355620, + [SMALL_STATE(3439)] = 355732, + [SMALL_STATE(3440)] = 355844, + [SMALL_STATE(3441)] = 355956, + [SMALL_STATE(3442)] = 356068, + [SMALL_STATE(3443)] = 356180, + [SMALL_STATE(3444)] = 356292, + [SMALL_STATE(3445)] = 356404, + [SMALL_STATE(3446)] = 356516, + [SMALL_STATE(3447)] = 356628, + [SMALL_STATE(3448)] = 356740, + [SMALL_STATE(3449)] = 356852, + [SMALL_STATE(3450)] = 356964, + [SMALL_STATE(3451)] = 357076, + [SMALL_STATE(3452)] = 357188, + [SMALL_STATE(3453)] = 357300, + [SMALL_STATE(3454)] = 357412, + [SMALL_STATE(3455)] = 357524, + [SMALL_STATE(3456)] = 357636, + [SMALL_STATE(3457)] = 357748, + [SMALL_STATE(3458)] = 357860, + [SMALL_STATE(3459)] = 357972, + [SMALL_STATE(3460)] = 358084, + [SMALL_STATE(3461)] = 358196, + [SMALL_STATE(3462)] = 358308, + [SMALL_STATE(3463)] = 358420, + [SMALL_STATE(3464)] = 358532, + [SMALL_STATE(3465)] = 358644, + [SMALL_STATE(3466)] = 358756, + [SMALL_STATE(3467)] = 358868, + [SMALL_STATE(3468)] = 358980, + [SMALL_STATE(3469)] = 359092, + [SMALL_STATE(3470)] = 359204, + [SMALL_STATE(3471)] = 359316, + [SMALL_STATE(3472)] = 359428, + [SMALL_STATE(3473)] = 359540, + [SMALL_STATE(3474)] = 359652, + [SMALL_STATE(3475)] = 359764, + [SMALL_STATE(3476)] = 359876, + [SMALL_STATE(3477)] = 359988, + [SMALL_STATE(3478)] = 360100, + [SMALL_STATE(3479)] = 360212, + [SMALL_STATE(3480)] = 360324, + [SMALL_STATE(3481)] = 360436, + [SMALL_STATE(3482)] = 360548, + [SMALL_STATE(3483)] = 360660, + [SMALL_STATE(3484)] = 360772, + [SMALL_STATE(3485)] = 360884, + [SMALL_STATE(3486)] = 360996, + [SMALL_STATE(3487)] = 361108, + [SMALL_STATE(3488)] = 361220, + [SMALL_STATE(3489)] = 361332, + [SMALL_STATE(3490)] = 361444, + [SMALL_STATE(3491)] = 361556, + [SMALL_STATE(3492)] = 361668, + [SMALL_STATE(3493)] = 361780, + [SMALL_STATE(3494)] = 361892, + [SMALL_STATE(3495)] = 362004, + [SMALL_STATE(3496)] = 362116, + [SMALL_STATE(3497)] = 362228, + [SMALL_STATE(3498)] = 362340, + [SMALL_STATE(3499)] = 362452, + [SMALL_STATE(3500)] = 362564, + [SMALL_STATE(3501)] = 362676, + [SMALL_STATE(3502)] = 362788, + [SMALL_STATE(3503)] = 362900, + [SMALL_STATE(3504)] = 363012, + [SMALL_STATE(3505)] = 363124, + [SMALL_STATE(3506)] = 363236, + [SMALL_STATE(3507)] = 363348, + [SMALL_STATE(3508)] = 363460, + [SMALL_STATE(3509)] = 363572, + [SMALL_STATE(3510)] = 363684, + [SMALL_STATE(3511)] = 363796, + [SMALL_STATE(3512)] = 363908, + [SMALL_STATE(3513)] = 364020, + [SMALL_STATE(3514)] = 364132, + [SMALL_STATE(3515)] = 364244, + [SMALL_STATE(3516)] = 364356, + [SMALL_STATE(3517)] = 364468, + [SMALL_STATE(3518)] = 364580, + [SMALL_STATE(3519)] = 364692, + [SMALL_STATE(3520)] = 364804, + [SMALL_STATE(3521)] = 364916, + [SMALL_STATE(3522)] = 365028, + [SMALL_STATE(3523)] = 365140, + [SMALL_STATE(3524)] = 365252, + [SMALL_STATE(3525)] = 365364, + [SMALL_STATE(3526)] = 365476, + [SMALL_STATE(3527)] = 365588, + [SMALL_STATE(3528)] = 365700, + [SMALL_STATE(3529)] = 365812, + [SMALL_STATE(3530)] = 365924, + [SMALL_STATE(3531)] = 366036, + [SMALL_STATE(3532)] = 366148, + [SMALL_STATE(3533)] = 366260, + [SMALL_STATE(3534)] = 366372, + [SMALL_STATE(3535)] = 366484, + [SMALL_STATE(3536)] = 366596, + [SMALL_STATE(3537)] = 366708, + [SMALL_STATE(3538)] = 366820, + [SMALL_STATE(3539)] = 366932, + [SMALL_STATE(3540)] = 367044, + [SMALL_STATE(3541)] = 367156, + [SMALL_STATE(3542)] = 367268, + [SMALL_STATE(3543)] = 367380, + [SMALL_STATE(3544)] = 367492, + [SMALL_STATE(3545)] = 367604, + [SMALL_STATE(3546)] = 367716, + [SMALL_STATE(3547)] = 367828, + [SMALL_STATE(3548)] = 367940, + [SMALL_STATE(3549)] = 368052, + [SMALL_STATE(3550)] = 368164, + [SMALL_STATE(3551)] = 368276, + [SMALL_STATE(3552)] = 368388, + [SMALL_STATE(3553)] = 368500, + [SMALL_STATE(3554)] = 368612, + [SMALL_STATE(3555)] = 368724, + [SMALL_STATE(3556)] = 368836, + [SMALL_STATE(3557)] = 368948, + [SMALL_STATE(3558)] = 369060, + [SMALL_STATE(3559)] = 369172, + [SMALL_STATE(3560)] = 369284, + [SMALL_STATE(3561)] = 369396, + [SMALL_STATE(3562)] = 369508, + [SMALL_STATE(3563)] = 369620, + [SMALL_STATE(3564)] = 369732, + [SMALL_STATE(3565)] = 369844, + [SMALL_STATE(3566)] = 369956, + [SMALL_STATE(3567)] = 370068, + [SMALL_STATE(3568)] = 370180, + [SMALL_STATE(3569)] = 370292, + [SMALL_STATE(3570)] = 370404, + [SMALL_STATE(3571)] = 370516, + [SMALL_STATE(3572)] = 370628, + [SMALL_STATE(3573)] = 370740, + [SMALL_STATE(3574)] = 370852, + [SMALL_STATE(3575)] = 370964, + [SMALL_STATE(3576)] = 371076, + [SMALL_STATE(3577)] = 371188, + [SMALL_STATE(3578)] = 371300, + [SMALL_STATE(3579)] = 371412, + [SMALL_STATE(3580)] = 371524, + [SMALL_STATE(3581)] = 371636, + [SMALL_STATE(3582)] = 371748, + [SMALL_STATE(3583)] = 371860, + [SMALL_STATE(3584)] = 371972, + [SMALL_STATE(3585)] = 372084, + [SMALL_STATE(3586)] = 372196, + [SMALL_STATE(3587)] = 372308, + [SMALL_STATE(3588)] = 372420, + [SMALL_STATE(3589)] = 372532, + [SMALL_STATE(3590)] = 372644, + [SMALL_STATE(3591)] = 372756, + [SMALL_STATE(3592)] = 372868, + [SMALL_STATE(3593)] = 372980, + [SMALL_STATE(3594)] = 373092, + [SMALL_STATE(3595)] = 373204, + [SMALL_STATE(3596)] = 373316, + [SMALL_STATE(3597)] = 373428, + [SMALL_STATE(3598)] = 373540, + [SMALL_STATE(3599)] = 373652, + [SMALL_STATE(3600)] = 373764, + [SMALL_STATE(3601)] = 373876, + [SMALL_STATE(3602)] = 373988, + [SMALL_STATE(3603)] = 374100, + [SMALL_STATE(3604)] = 374212, + [SMALL_STATE(3605)] = 374324, + [SMALL_STATE(3606)] = 374436, + [SMALL_STATE(3607)] = 374548, + [SMALL_STATE(3608)] = 374660, + [SMALL_STATE(3609)] = 374772, + [SMALL_STATE(3610)] = 374884, + [SMALL_STATE(3611)] = 374996, + [SMALL_STATE(3612)] = 375108, + [SMALL_STATE(3613)] = 375220, + [SMALL_STATE(3614)] = 375332, + [SMALL_STATE(3615)] = 375444, + [SMALL_STATE(3616)] = 375556, + [SMALL_STATE(3617)] = 375668, + [SMALL_STATE(3618)] = 375780, + [SMALL_STATE(3619)] = 375892, + [SMALL_STATE(3620)] = 376004, + [SMALL_STATE(3621)] = 376116, + [SMALL_STATE(3622)] = 376228, + [SMALL_STATE(3623)] = 376340, + [SMALL_STATE(3624)] = 376452, + [SMALL_STATE(3625)] = 376564, + [SMALL_STATE(3626)] = 376676, + [SMALL_STATE(3627)] = 376788, + [SMALL_STATE(3628)] = 376900, + [SMALL_STATE(3629)] = 377012, + [SMALL_STATE(3630)] = 377124, + [SMALL_STATE(3631)] = 377236, + [SMALL_STATE(3632)] = 377348, + [SMALL_STATE(3633)] = 377460, + [SMALL_STATE(3634)] = 377572, + [SMALL_STATE(3635)] = 377684, + [SMALL_STATE(3636)] = 377796, + [SMALL_STATE(3637)] = 377908, + [SMALL_STATE(3638)] = 378020, + [SMALL_STATE(3639)] = 378132, + [SMALL_STATE(3640)] = 378244, + [SMALL_STATE(3641)] = 378356, + [SMALL_STATE(3642)] = 378468, + [SMALL_STATE(3643)] = 378580, + [SMALL_STATE(3644)] = 378692, + [SMALL_STATE(3645)] = 378804, + [SMALL_STATE(3646)] = 378916, + [SMALL_STATE(3647)] = 379028, + [SMALL_STATE(3648)] = 379140, + [SMALL_STATE(3649)] = 379252, + [SMALL_STATE(3650)] = 379364, + [SMALL_STATE(3651)] = 379476, + [SMALL_STATE(3652)] = 379588, + [SMALL_STATE(3653)] = 379700, + [SMALL_STATE(3654)] = 379812, + [SMALL_STATE(3655)] = 379924, + [SMALL_STATE(3656)] = 380036, + [SMALL_STATE(3657)] = 380148, + [SMALL_STATE(3658)] = 380260, + [SMALL_STATE(3659)] = 380372, + [SMALL_STATE(3660)] = 380484, + [SMALL_STATE(3661)] = 380596, + [SMALL_STATE(3662)] = 380708, + [SMALL_STATE(3663)] = 380820, + [SMALL_STATE(3664)] = 380932, + [SMALL_STATE(3665)] = 381044, + [SMALL_STATE(3666)] = 381156, + [SMALL_STATE(3667)] = 381268, + [SMALL_STATE(3668)] = 381380, + [SMALL_STATE(3669)] = 381492, + [SMALL_STATE(3670)] = 381604, + [SMALL_STATE(3671)] = 381716, + [SMALL_STATE(3672)] = 381828, + [SMALL_STATE(3673)] = 381940, + [SMALL_STATE(3674)] = 382052, + [SMALL_STATE(3675)] = 382164, + [SMALL_STATE(3676)] = 382276, + [SMALL_STATE(3677)] = 382388, + [SMALL_STATE(3678)] = 382500, + [SMALL_STATE(3679)] = 382612, + [SMALL_STATE(3680)] = 382724, + [SMALL_STATE(3681)] = 382836, + [SMALL_STATE(3682)] = 382948, + [SMALL_STATE(3683)] = 383060, + [SMALL_STATE(3684)] = 383172, + [SMALL_STATE(3685)] = 383284, + [SMALL_STATE(3686)] = 383396, + [SMALL_STATE(3687)] = 383508, + [SMALL_STATE(3688)] = 383620, + [SMALL_STATE(3689)] = 383732, + [SMALL_STATE(3690)] = 383844, + [SMALL_STATE(3691)] = 383956, + [SMALL_STATE(3692)] = 384068, + [SMALL_STATE(3693)] = 384180, + [SMALL_STATE(3694)] = 384292, + [SMALL_STATE(3695)] = 384404, + [SMALL_STATE(3696)] = 384516, + [SMALL_STATE(3697)] = 384628, + [SMALL_STATE(3698)] = 384740, + [SMALL_STATE(3699)] = 384852, + [SMALL_STATE(3700)] = 384964, + [SMALL_STATE(3701)] = 385076, + [SMALL_STATE(3702)] = 385188, + [SMALL_STATE(3703)] = 385300, + [SMALL_STATE(3704)] = 385412, + [SMALL_STATE(3705)] = 385524, + [SMALL_STATE(3706)] = 385636, + [SMALL_STATE(3707)] = 385748, + [SMALL_STATE(3708)] = 385860, + [SMALL_STATE(3709)] = 385972, + [SMALL_STATE(3710)] = 386084, + [SMALL_STATE(3711)] = 386196, + [SMALL_STATE(3712)] = 386308, + [SMALL_STATE(3713)] = 386420, + [SMALL_STATE(3714)] = 386532, + [SMALL_STATE(3715)] = 386644, + [SMALL_STATE(3716)] = 386756, + [SMALL_STATE(3717)] = 386868, + [SMALL_STATE(3718)] = 386980, + [SMALL_STATE(3719)] = 387092, + [SMALL_STATE(3720)] = 387204, + [SMALL_STATE(3721)] = 387316, + [SMALL_STATE(3722)] = 387428, + [SMALL_STATE(3723)] = 387540, + [SMALL_STATE(3724)] = 387652, + [SMALL_STATE(3725)] = 387764, + [SMALL_STATE(3726)] = 387876, + [SMALL_STATE(3727)] = 387988, + [SMALL_STATE(3728)] = 388100, + [SMALL_STATE(3729)] = 388212, + [SMALL_STATE(3730)] = 388324, + [SMALL_STATE(3731)] = 388436, + [SMALL_STATE(3732)] = 388548, + [SMALL_STATE(3733)] = 388660, + [SMALL_STATE(3734)] = 388772, + [SMALL_STATE(3735)] = 388884, + [SMALL_STATE(3736)] = 388996, + [SMALL_STATE(3737)] = 389108, + [SMALL_STATE(3738)] = 389220, + [SMALL_STATE(3739)] = 389332, + [SMALL_STATE(3740)] = 389444, + [SMALL_STATE(3741)] = 389556, + [SMALL_STATE(3742)] = 389668, + [SMALL_STATE(3743)] = 389780, + [SMALL_STATE(3744)] = 389892, + [SMALL_STATE(3745)] = 390004, + [SMALL_STATE(3746)] = 390116, + [SMALL_STATE(3747)] = 390228, + [SMALL_STATE(3748)] = 390340, + [SMALL_STATE(3749)] = 390452, + [SMALL_STATE(3750)] = 390564, + [SMALL_STATE(3751)] = 390676, + [SMALL_STATE(3752)] = 390788, + [SMALL_STATE(3753)] = 390900, + [SMALL_STATE(3754)] = 391012, + [SMALL_STATE(3755)] = 391124, + [SMALL_STATE(3756)] = 391236, + [SMALL_STATE(3757)] = 391348, + [SMALL_STATE(3758)] = 391460, + [SMALL_STATE(3759)] = 391572, + [SMALL_STATE(3760)] = 391684, + [SMALL_STATE(3761)] = 391796, + [SMALL_STATE(3762)] = 391908, + [SMALL_STATE(3763)] = 392020, + [SMALL_STATE(3764)] = 392132, + [SMALL_STATE(3765)] = 392244, + [SMALL_STATE(3766)] = 392356, + [SMALL_STATE(3767)] = 392468, + [SMALL_STATE(3768)] = 392580, + [SMALL_STATE(3769)] = 392692, + [SMALL_STATE(3770)] = 392804, + [SMALL_STATE(3771)] = 392916, + [SMALL_STATE(3772)] = 393028, + [SMALL_STATE(3773)] = 393140, + [SMALL_STATE(3774)] = 393252, + [SMALL_STATE(3775)] = 393364, + [SMALL_STATE(3776)] = 393476, + [SMALL_STATE(3777)] = 393588, + [SMALL_STATE(3778)] = 393700, + [SMALL_STATE(3779)] = 393812, + [SMALL_STATE(3780)] = 393924, + [SMALL_STATE(3781)] = 394036, + [SMALL_STATE(3782)] = 394148, + [SMALL_STATE(3783)] = 394260, + [SMALL_STATE(3784)] = 394372, + [SMALL_STATE(3785)] = 394484, + [SMALL_STATE(3786)] = 394596, + [SMALL_STATE(3787)] = 394708, + [SMALL_STATE(3788)] = 394820, + [SMALL_STATE(3789)] = 394932, + [SMALL_STATE(3790)] = 395044, + [SMALL_STATE(3791)] = 395156, + [SMALL_STATE(3792)] = 395268, + [SMALL_STATE(3793)] = 395380, + [SMALL_STATE(3794)] = 395492, + [SMALL_STATE(3795)] = 395604, + [SMALL_STATE(3796)] = 395716, + [SMALL_STATE(3797)] = 395828, + [SMALL_STATE(3798)] = 395940, + [SMALL_STATE(3799)] = 396052, + [SMALL_STATE(3800)] = 396164, + [SMALL_STATE(3801)] = 396276, + [SMALL_STATE(3802)] = 396388, + [SMALL_STATE(3803)] = 396500, + [SMALL_STATE(3804)] = 396612, + [SMALL_STATE(3805)] = 396724, + [SMALL_STATE(3806)] = 396836, + [SMALL_STATE(3807)] = 396948, + [SMALL_STATE(3808)] = 397060, + [SMALL_STATE(3809)] = 397172, + [SMALL_STATE(3810)] = 397284, + [SMALL_STATE(3811)] = 397396, + [SMALL_STATE(3812)] = 397508, + [SMALL_STATE(3813)] = 397620, + [SMALL_STATE(3814)] = 397732, + [SMALL_STATE(3815)] = 397844, + [SMALL_STATE(3816)] = 397956, + [SMALL_STATE(3817)] = 398068, + [SMALL_STATE(3818)] = 398180, + [SMALL_STATE(3819)] = 398292, + [SMALL_STATE(3820)] = 398404, + [SMALL_STATE(3821)] = 398516, + [SMALL_STATE(3822)] = 398628, + [SMALL_STATE(3823)] = 398740, + [SMALL_STATE(3824)] = 398852, + [SMALL_STATE(3825)] = 398964, + [SMALL_STATE(3826)] = 399076, + [SMALL_STATE(3827)] = 399188, + [SMALL_STATE(3828)] = 399300, + [SMALL_STATE(3829)] = 399412, + [SMALL_STATE(3830)] = 399524, + [SMALL_STATE(3831)] = 399636, + [SMALL_STATE(3832)] = 399748, + [SMALL_STATE(3833)] = 399860, + [SMALL_STATE(3834)] = 399972, + [SMALL_STATE(3835)] = 400084, + [SMALL_STATE(3836)] = 400196, + [SMALL_STATE(3837)] = 400308, + [SMALL_STATE(3838)] = 400420, + [SMALL_STATE(3839)] = 400532, + [SMALL_STATE(3840)] = 400644, + [SMALL_STATE(3841)] = 400756, + [SMALL_STATE(3842)] = 400868, + [SMALL_STATE(3843)] = 400980, + [SMALL_STATE(3844)] = 401092, + [SMALL_STATE(3845)] = 401204, + [SMALL_STATE(3846)] = 401316, + [SMALL_STATE(3847)] = 401428, + [SMALL_STATE(3848)] = 401540, + [SMALL_STATE(3849)] = 401652, + [SMALL_STATE(3850)] = 401764, + [SMALL_STATE(3851)] = 401876, + [SMALL_STATE(3852)] = 401988, + [SMALL_STATE(3853)] = 402100, + [SMALL_STATE(3854)] = 402212, + [SMALL_STATE(3855)] = 402324, + [SMALL_STATE(3856)] = 402436, + [SMALL_STATE(3857)] = 402548, + [SMALL_STATE(3858)] = 402660, + [SMALL_STATE(3859)] = 402772, + [SMALL_STATE(3860)] = 402884, + [SMALL_STATE(3861)] = 402996, + [SMALL_STATE(3862)] = 403108, + [SMALL_STATE(3863)] = 403220, + [SMALL_STATE(3864)] = 403332, + [SMALL_STATE(3865)] = 403444, + [SMALL_STATE(3866)] = 403556, + [SMALL_STATE(3867)] = 403668, + [SMALL_STATE(3868)] = 403780, + [SMALL_STATE(3869)] = 403892, + [SMALL_STATE(3870)] = 404004, + [SMALL_STATE(3871)] = 404116, + [SMALL_STATE(3872)] = 404228, + [SMALL_STATE(3873)] = 404340, + [SMALL_STATE(3874)] = 404452, + [SMALL_STATE(3875)] = 404564, + [SMALL_STATE(3876)] = 404676, + [SMALL_STATE(3877)] = 404788, + [SMALL_STATE(3878)] = 404900, + [SMALL_STATE(3879)] = 405012, + [SMALL_STATE(3880)] = 405124, + [SMALL_STATE(3881)] = 405236, + [SMALL_STATE(3882)] = 405348, + [SMALL_STATE(3883)] = 405460, + [SMALL_STATE(3884)] = 405572, + [SMALL_STATE(3885)] = 405684, + [SMALL_STATE(3886)] = 405796, + [SMALL_STATE(3887)] = 405908, + [SMALL_STATE(3888)] = 406020, + [SMALL_STATE(3889)] = 406132, + [SMALL_STATE(3890)] = 406244, + [SMALL_STATE(3891)] = 406356, + [SMALL_STATE(3892)] = 406468, + [SMALL_STATE(3893)] = 406580, + [SMALL_STATE(3894)] = 406692, + [SMALL_STATE(3895)] = 406804, + [SMALL_STATE(3896)] = 406916, + [SMALL_STATE(3897)] = 407028, + [SMALL_STATE(3898)] = 407140, + [SMALL_STATE(3899)] = 407252, + [SMALL_STATE(3900)] = 407364, + [SMALL_STATE(3901)] = 407476, + [SMALL_STATE(3902)] = 407588, + [SMALL_STATE(3903)] = 407700, + [SMALL_STATE(3904)] = 407812, + [SMALL_STATE(3905)] = 407924, + [SMALL_STATE(3906)] = 408036, + [SMALL_STATE(3907)] = 408148, + [SMALL_STATE(3908)] = 408260, + [SMALL_STATE(3909)] = 408372, + [SMALL_STATE(3910)] = 408484, + [SMALL_STATE(3911)] = 408596, + [SMALL_STATE(3912)] = 408708, + [SMALL_STATE(3913)] = 408820, + [SMALL_STATE(3914)] = 408932, + [SMALL_STATE(3915)] = 409044, + [SMALL_STATE(3916)] = 409156, + [SMALL_STATE(3917)] = 409268, + [SMALL_STATE(3918)] = 409380, + [SMALL_STATE(3919)] = 409492, + [SMALL_STATE(3920)] = 409604, + [SMALL_STATE(3921)] = 409716, + [SMALL_STATE(3922)] = 409828, + [SMALL_STATE(3923)] = 409940, + [SMALL_STATE(3924)] = 410052, + [SMALL_STATE(3925)] = 410164, + [SMALL_STATE(3926)] = 410276, + [SMALL_STATE(3927)] = 410388, + [SMALL_STATE(3928)] = 410500, + [SMALL_STATE(3929)] = 410612, + [SMALL_STATE(3930)] = 410724, + [SMALL_STATE(3931)] = 410836, + [SMALL_STATE(3932)] = 410948, + [SMALL_STATE(3933)] = 411060, + [SMALL_STATE(3934)] = 411172, + [SMALL_STATE(3935)] = 411284, + [SMALL_STATE(3936)] = 411396, + [SMALL_STATE(3937)] = 411508, + [SMALL_STATE(3938)] = 411620, + [SMALL_STATE(3939)] = 411732, + [SMALL_STATE(3940)] = 411844, + [SMALL_STATE(3941)] = 411956, + [SMALL_STATE(3942)] = 412068, + [SMALL_STATE(3943)] = 412180, + [SMALL_STATE(3944)] = 412292, + [SMALL_STATE(3945)] = 412404, + [SMALL_STATE(3946)] = 412516, + [SMALL_STATE(3947)] = 412628, + [SMALL_STATE(3948)] = 412740, + [SMALL_STATE(3949)] = 412852, + [SMALL_STATE(3950)] = 412964, + [SMALL_STATE(3951)] = 413076, + [SMALL_STATE(3952)] = 413188, + [SMALL_STATE(3953)] = 413300, + [SMALL_STATE(3954)] = 413412, + [SMALL_STATE(3955)] = 413524, + [SMALL_STATE(3956)] = 413636, + [SMALL_STATE(3957)] = 413748, + [SMALL_STATE(3958)] = 413860, + [SMALL_STATE(3959)] = 413972, + [SMALL_STATE(3960)] = 414084, + [SMALL_STATE(3961)] = 414196, + [SMALL_STATE(3962)] = 414308, + [SMALL_STATE(3963)] = 414420, + [SMALL_STATE(3964)] = 414532, + [SMALL_STATE(3965)] = 414644, + [SMALL_STATE(3966)] = 414756, + [SMALL_STATE(3967)] = 414868, + [SMALL_STATE(3968)] = 414980, + [SMALL_STATE(3969)] = 415092, + [SMALL_STATE(3970)] = 415204, + [SMALL_STATE(3971)] = 415316, + [SMALL_STATE(3972)] = 415428, + [SMALL_STATE(3973)] = 415540, + [SMALL_STATE(3974)] = 415652, + [SMALL_STATE(3975)] = 415764, + [SMALL_STATE(3976)] = 415876, + [SMALL_STATE(3977)] = 415988, + [SMALL_STATE(3978)] = 416100, + [SMALL_STATE(3979)] = 416212, + [SMALL_STATE(3980)] = 416324, + [SMALL_STATE(3981)] = 416436, + [SMALL_STATE(3982)] = 416548, + [SMALL_STATE(3983)] = 416660, + [SMALL_STATE(3984)] = 416772, + [SMALL_STATE(3985)] = 416884, + [SMALL_STATE(3986)] = 416996, + [SMALL_STATE(3987)] = 417108, + [SMALL_STATE(3988)] = 417220, + [SMALL_STATE(3989)] = 417332, + [SMALL_STATE(3990)] = 417444, + [SMALL_STATE(3991)] = 417556, + [SMALL_STATE(3992)] = 417668, + [SMALL_STATE(3993)] = 417780, + [SMALL_STATE(3994)] = 417892, + [SMALL_STATE(3995)] = 418004, + [SMALL_STATE(3996)] = 418116, + [SMALL_STATE(3997)] = 418228, + [SMALL_STATE(3998)] = 418340, + [SMALL_STATE(3999)] = 418452, + [SMALL_STATE(4000)] = 418564, + [SMALL_STATE(4001)] = 418676, + [SMALL_STATE(4002)] = 418788, + [SMALL_STATE(4003)] = 418900, + [SMALL_STATE(4004)] = 419012, + [SMALL_STATE(4005)] = 419124, + [SMALL_STATE(4006)] = 419236, + [SMALL_STATE(4007)] = 419348, + [SMALL_STATE(4008)] = 419460, + [SMALL_STATE(4009)] = 419572, + [SMALL_STATE(4010)] = 419684, + [SMALL_STATE(4011)] = 419796, + [SMALL_STATE(4012)] = 419908, + [SMALL_STATE(4013)] = 420020, + [SMALL_STATE(4014)] = 420132, + [SMALL_STATE(4015)] = 420244, + [SMALL_STATE(4016)] = 420356, + [SMALL_STATE(4017)] = 420468, + [SMALL_STATE(4018)] = 420580, + [SMALL_STATE(4019)] = 420692, + [SMALL_STATE(4020)] = 420804, + [SMALL_STATE(4021)] = 420916, + [SMALL_STATE(4022)] = 421028, + [SMALL_STATE(4023)] = 421140, + [SMALL_STATE(4024)] = 421252, + [SMALL_STATE(4025)] = 421364, + [SMALL_STATE(4026)] = 421476, + [SMALL_STATE(4027)] = 421588, + [SMALL_STATE(4028)] = 421700, + [SMALL_STATE(4029)] = 421812, + [SMALL_STATE(4030)] = 421924, + [SMALL_STATE(4031)] = 422036, + [SMALL_STATE(4032)] = 422148, + [SMALL_STATE(4033)] = 422260, + [SMALL_STATE(4034)] = 422372, + [SMALL_STATE(4035)] = 422484, + [SMALL_STATE(4036)] = 422596, + [SMALL_STATE(4037)] = 422708, + [SMALL_STATE(4038)] = 422820, + [SMALL_STATE(4039)] = 422932, + [SMALL_STATE(4040)] = 423044, + [SMALL_STATE(4041)] = 423156, + [SMALL_STATE(4042)] = 423268, + [SMALL_STATE(4043)] = 423380, + [SMALL_STATE(4044)] = 423492, + [SMALL_STATE(4045)] = 423604, + [SMALL_STATE(4046)] = 423716, + [SMALL_STATE(4047)] = 423828, + [SMALL_STATE(4048)] = 423940, + [SMALL_STATE(4049)] = 424052, + [SMALL_STATE(4050)] = 424164, + [SMALL_STATE(4051)] = 424276, + [SMALL_STATE(4052)] = 424388, + [SMALL_STATE(4053)] = 424500, + [SMALL_STATE(4054)] = 424612, + [SMALL_STATE(4055)] = 424724, + [SMALL_STATE(4056)] = 424836, + [SMALL_STATE(4057)] = 424948, + [SMALL_STATE(4058)] = 425060, + [SMALL_STATE(4059)] = 425172, + [SMALL_STATE(4060)] = 425284, + [SMALL_STATE(4061)] = 425396, + [SMALL_STATE(4062)] = 425457, + [SMALL_STATE(4063)] = 425518, + [SMALL_STATE(4064)] = 425581, + [SMALL_STATE(4065)] = 425646, + [SMALL_STATE(4066)] = 425707, + [SMALL_STATE(4067)] = 425766, + [SMALL_STATE(4068)] = 425825, + [SMALL_STATE(4069)] = 425884, + [SMALL_STATE(4070)] = 425943, + [SMALL_STATE(4071)] = 426002, + [SMALL_STATE(4072)] = 426061, + [SMALL_STATE(4073)] = 426120, + [SMALL_STATE(4074)] = 426179, + [SMALL_STATE(4075)] = 426238, + [SMALL_STATE(4076)] = 426297, + [SMALL_STATE(4077)] = 426356, + [SMALL_STATE(4078)] = 426415, + [SMALL_STATE(4079)] = 426474, + [SMALL_STATE(4080)] = 426572, + [SMALL_STATE(4081)] = 426670, + [SMALL_STATE(4082)] = 426768, + [SMALL_STATE(4083)] = 426865, + [SMALL_STATE(4084)] = 426962, + [SMALL_STATE(4085)] = 427059, + [SMALL_STATE(4086)] = 427156, + [SMALL_STATE(4087)] = 427253, + [SMALL_STATE(4088)] = 427350, + [SMALL_STATE(4089)] = 427447, + [SMALL_STATE(4090)] = 427544, + [SMALL_STATE(4091)] = 427641, + [SMALL_STATE(4092)] = 427737, + [SMALL_STATE(4093)] = 427833, + [SMALL_STATE(4094)] = 427929, + [SMALL_STATE(4095)] = 428025, + [SMALL_STATE(4096)] = 428121, + [SMALL_STATE(4097)] = 428217, + [SMALL_STATE(4098)] = 428313, + [SMALL_STATE(4099)] = 428409, + [SMALL_STATE(4100)] = 428505, + [SMALL_STATE(4101)] = 428598, + [SMALL_STATE(4102)] = 428691, + [SMALL_STATE(4103)] = 428750, + [SMALL_STATE(4104)] = 428845, + [SMALL_STATE(4105)] = 428904, + [SMALL_STATE(4106)] = 428963, + [SMALL_STATE(4107)] = 429058, + [SMALL_STATE(4108)] = 429153, + [SMALL_STATE(4109)] = 429248, + [SMALL_STATE(4110)] = 429307, + [SMALL_STATE(4111)] = 429402, + [SMALL_STATE(4112)] = 429497, + [SMALL_STATE(4113)] = 429592, + [SMALL_STATE(4114)] = 429687, + [SMALL_STATE(4115)] = 429786, + [SMALL_STATE(4116)] = 429845, + [SMALL_STATE(4117)] = 429904, + [SMALL_STATE(4118)] = 429963, + [SMALL_STATE(4119)] = 430064, + [SMALL_STATE(4120)] = 430121, + [SMALL_STATE(4121)] = 430214, + [SMALL_STATE(4122)] = 430309, + [SMALL_STATE(4123)] = 430402, + [SMALL_STATE(4124)] = 430495, + [SMALL_STATE(4125)] = 430552, + [SMALL_STATE(4126)] = 430645, + [SMALL_STATE(4127)] = 430739, + [SMALL_STATE(4128)] = 430817, + [SMALL_STATE(4129)] = 430895, + [SMALL_STATE(4130)] = 430989, + [SMALL_STATE(4131)] = 431081, + [SMALL_STATE(4132)] = 431173, + [SMALL_STATE(4133)] = 431265, + [SMALL_STATE(4134)] = 431359, + [SMALL_STATE(4135)] = 431437, + [SMALL_STATE(4136)] = 431539, + [SMALL_STATE(4137)] = 431631, + [SMALL_STATE(4138)] = 431723, + [SMALL_STATE(4139)] = 431815, + [SMALL_STATE(4140)] = 431907, + [SMALL_STATE(4141)] = 432009, + [SMALL_STATE(4142)] = 432101, + [SMALL_STATE(4143)] = 432165, + [SMALL_STATE(4144)] = 432237, + [SMALL_STATE(4145)] = 432329, + [SMALL_STATE(4146)] = 432421, + [SMALL_STATE(4147)] = 432513, + [SMALL_STATE(4148)] = 432575, + [SMALL_STATE(4149)] = 432667, + [SMALL_STATE(4150)] = 432759, + [SMALL_STATE(4151)] = 432853, + [SMALL_STATE(4152)] = 432947, + [SMALL_STATE(4153)] = 433003, + [SMALL_STATE(4154)] = 433097, + [SMALL_STATE(4155)] = 433191, + [SMALL_STATE(4156)] = 433285, + [SMALL_STATE(4157)] = 433361, + [SMALL_STATE(4158)] = 433455, + [SMALL_STATE(4159)] = 433547, + [SMALL_STATE(4160)] = 433639, + [SMALL_STATE(4161)] = 433731, + [SMALL_STATE(4162)] = 433823, + [SMALL_STATE(4163)] = 433897, + [SMALL_STATE(4164)] = 433989, + [SMALL_STATE(4165)] = 434083, + [SMALL_STATE(4166)] = 434175, + [SMALL_STATE(4167)] = 434249, + [SMALL_STATE(4168)] = 434317, + [SMALL_STATE(4169)] = 434381, + [SMALL_STATE(4170)] = 434475, + [SMALL_STATE(4171)] = 434533, + [SMALL_STATE(4172)] = 434591, + [SMALL_STATE(4173)] = 434685, + [SMALL_STATE(4174)] = 434777, + [SMALL_STATE(4175)] = 434869, + [SMALL_STATE(4176)] = 434940, + [SMALL_STATE(4177)] = 434993, + [SMALL_STATE(4178)] = 435046, + [SMALL_STATE(4179)] = 435099, + [SMALL_STATE(4180)] = 435152, + [SMALL_STATE(4181)] = 435205, + [SMALL_STATE(4182)] = 435258, + [SMALL_STATE(4183)] = 435311, + [SMALL_STATE(4184)] = 435364, + [SMALL_STATE(4185)] = 435417, + [SMALL_STATE(4186)] = 435508, + [SMALL_STATE(4187)] = 435599, + [SMALL_STATE(4188)] = 435690, + [SMALL_STATE(4189)] = 435743, + [SMALL_STATE(4190)] = 435796, + [SMALL_STATE(4191)] = 435857, + [SMALL_STATE(4192)] = 435912, + [SMALL_STATE(4193)] = 435989, + [SMALL_STATE(4194)] = 436042, + [SMALL_STATE(4195)] = 436095, + [SMALL_STATE(4196)] = 436148, + [SMALL_STATE(4197)] = 436201, + [SMALL_STATE(4198)] = 436292, + [SMALL_STATE(4199)] = 436349, + [SMALL_STATE(4200)] = 436424, + [SMALL_STATE(4201)] = 436479, + [SMALL_STATE(4202)] = 436570, + [SMALL_STATE(4203)] = 436661, + [SMALL_STATE(4204)] = 436714, + [SMALL_STATE(4205)] = 436805, + [SMALL_STATE(4206)] = 436898, + [SMALL_STATE(4207)] = 436951, + [SMALL_STATE(4208)] = 437014, + [SMALL_STATE(4209)] = 437067, + [SMALL_STATE(4210)] = 437158, + [SMALL_STATE(4211)] = 437249, + [SMALL_STATE(4212)] = 437302, + [SMALL_STATE(4213)] = 437355, + [SMALL_STATE(4214)] = 437408, + [SMALL_STATE(4215)] = 437461, + [SMALL_STATE(4216)] = 437552, + [SMALL_STATE(4217)] = 437643, + [SMALL_STATE(4218)] = 437736, + [SMALL_STATE(4219)] = 437789, + [SMALL_STATE(4220)] = 437842, + [SMALL_STATE(4221)] = 437895, + [SMALL_STATE(4222)] = 437988, + [SMALL_STATE(4223)] = 438041, + [SMALL_STATE(4224)] = 438094, + [SMALL_STATE(4225)] = 438171, + [SMALL_STATE(4226)] = 438262, + [SMALL_STATE(4227)] = 438315, + [SMALL_STATE(4228)] = 438368, + [SMALL_STATE(4229)] = 438423, + [SMALL_STATE(4230)] = 438476, + [SMALL_STATE(4231)] = 438569, + [SMALL_STATE(4232)] = 438622, + [SMALL_STATE(4233)] = 438715, + [SMALL_STATE(4234)] = 438768, + [SMALL_STATE(4235)] = 438821, + [SMALL_STATE(4236)] = 438912, + [SMALL_STATE(4237)] = 438965, + [SMALL_STATE(4238)] = 439018, + [SMALL_STATE(4239)] = 439071, + [SMALL_STATE(4240)] = 439124, + [SMALL_STATE(4241)] = 439177, + [SMALL_STATE(4242)] = 439230, + [SMALL_STATE(4243)] = 439283, + [SMALL_STATE(4244)] = 439336, + [SMALL_STATE(4245)] = 439427, + [SMALL_STATE(4246)] = 439480, + [SMALL_STATE(4247)] = 439533, + [SMALL_STATE(4248)] = 439624, + [SMALL_STATE(4249)] = 439677, + [SMALL_STATE(4250)] = 439730, + [SMALL_STATE(4251)] = 439803, + [SMALL_STATE(4252)] = 439876, + [SMALL_STATE(4253)] = 439967, + [SMALL_STATE(4254)] = 440058, + [SMALL_STATE(4255)] = 440125, + [SMALL_STATE(4256)] = 440216, + [SMALL_STATE(4257)] = 440269, + [SMALL_STATE(4258)] = 440360, + [SMALL_STATE(4259)] = 440451, + [SMALL_STATE(4260)] = 440542, + [SMALL_STATE(4261)] = 440635, + [SMALL_STATE(4262)] = 440698, + [SMALL_STATE(4263)] = 440755, + [SMALL_STATE(4264)] = 440808, + [SMALL_STATE(4265)] = 440861, + [SMALL_STATE(4266)] = 440914, + [SMALL_STATE(4267)] = 440967, + [SMALL_STATE(4268)] = 441020, + [SMALL_STATE(4269)] = 441073, + [SMALL_STATE(4270)] = 441126, + [SMALL_STATE(4271)] = 441179, + [SMALL_STATE(4272)] = 441232, + [SMALL_STATE(4273)] = 441285, + [SMALL_STATE(4274)] = 441376, + [SMALL_STATE(4275)] = 441467, + [SMALL_STATE(4276)] = 441558, + [SMALL_STATE(4277)] = 441611, + [SMALL_STATE(4278)] = 441664, + [SMALL_STATE(4279)] = 441716, + [SMALL_STATE(4280)] = 441796, + [SMALL_STATE(4281)] = 441876, + [SMALL_STATE(4282)] = 441928, + [SMALL_STATE(4283)] = 442008, + [SMALL_STATE(4284)] = 442098, + [SMALL_STATE(4285)] = 442150, + [SMALL_STATE(4286)] = 442202, + [SMALL_STATE(4287)] = 442282, + [SMALL_STATE(4288)] = 442362, + [SMALL_STATE(4289)] = 442442, + [SMALL_STATE(4290)] = 442522, + [SMALL_STATE(4291)] = 442602, + [SMALL_STATE(4292)] = 442682, + [SMALL_STATE(4293)] = 442772, + [SMALL_STATE(4294)] = 442824, + [SMALL_STATE(4295)] = 442876, + [SMALL_STATE(4296)] = 442928, + [SMALL_STATE(4297)] = 442980, + [SMALL_STATE(4298)] = 443032, + [SMALL_STATE(4299)] = 443084, + [SMALL_STATE(4300)] = 443136, + [SMALL_STATE(4301)] = 443188, + [SMALL_STATE(4302)] = 443240, + [SMALL_STATE(4303)] = 443292, + [SMALL_STATE(4304)] = 443344, + [SMALL_STATE(4305)] = 443396, + [SMALL_STATE(4306)] = 443476, + [SMALL_STATE(4307)] = 443528, + [SMALL_STATE(4308)] = 443608, + [SMALL_STATE(4309)] = 443698, + [SMALL_STATE(4310)] = 443778, + [SMALL_STATE(4311)] = 443858, + [SMALL_STATE(4312)] = 443910, + [SMALL_STATE(4313)] = 443990, + [SMALL_STATE(4314)] = 444042, + [SMALL_STATE(4315)] = 444122, + [SMALL_STATE(4316)] = 444174, + [SMALL_STATE(4317)] = 444226, + [SMALL_STATE(4318)] = 444278, + [SMALL_STATE(4319)] = 444330, + [SMALL_STATE(4320)] = 444382, + [SMALL_STATE(4321)] = 444434, + [SMALL_STATE(4322)] = 444486, + [SMALL_STATE(4323)] = 444538, + [SMALL_STATE(4324)] = 444590, + [SMALL_STATE(4325)] = 444642, + [SMALL_STATE(4326)] = 444694, + [SMALL_STATE(4327)] = 444746, + [SMALL_STATE(4328)] = 444798, + [SMALL_STATE(4329)] = 444850, + [SMALL_STATE(4330)] = 444902, + [SMALL_STATE(4331)] = 444954, + [SMALL_STATE(4332)] = 445006, + [SMALL_STATE(4333)] = 445086, + [SMALL_STATE(4334)] = 445166, + [SMALL_STATE(4335)] = 445246, + [SMALL_STATE(4336)] = 445298, + [SMALL_STATE(4337)] = 445350, + [SMALL_STATE(4338)] = 445402, + [SMALL_STATE(4339)] = 445454, + [SMALL_STATE(4340)] = 445506, + [SMALL_STATE(4341)] = 445558, + [SMALL_STATE(4342)] = 445610, + [SMALL_STATE(4343)] = 445662, + [SMALL_STATE(4344)] = 445714, + [SMALL_STATE(4345)] = 445794, + [SMALL_STATE(4346)] = 445846, + [SMALL_STATE(4347)] = 445898, + [SMALL_STATE(4348)] = 445950, + [SMALL_STATE(4349)] = 446002, + [SMALL_STATE(4350)] = 446054, + [SMALL_STATE(4351)] = 446144, + [SMALL_STATE(4352)] = 446196, + [SMALL_STATE(4353)] = 446248, + [SMALL_STATE(4354)] = 446328, + [SMALL_STATE(4355)] = 446380, + [SMALL_STATE(4356)] = 446432, + [SMALL_STATE(4357)] = 446484, + [SMALL_STATE(4358)] = 446536, + [SMALL_STATE(4359)] = 446588, + [SMALL_STATE(4360)] = 446668, + [SMALL_STATE(4361)] = 446720, + [SMALL_STATE(4362)] = 446800, + [SMALL_STATE(4363)] = 446880, + [SMALL_STATE(4364)] = 446960, + [SMALL_STATE(4365)] = 447012, + [SMALL_STATE(4366)] = 447064, + [SMALL_STATE(4367)] = 447144, + [SMALL_STATE(4368)] = 447196, + [SMALL_STATE(4369)] = 447248, + [SMALL_STATE(4370)] = 447328, + [SMALL_STATE(4371)] = 447380, + [SMALL_STATE(4372)] = 447432, + [SMALL_STATE(4373)] = 447512, + [SMALL_STATE(4374)] = 447564, + [SMALL_STATE(4375)] = 447644, + [SMALL_STATE(4376)] = 447696, + [SMALL_STATE(4377)] = 447748, + [SMALL_STATE(4378)] = 447828, + [SMALL_STATE(4379)] = 447880, + [SMALL_STATE(4380)] = 447932, + [SMALL_STATE(4381)] = 448012, + [SMALL_STATE(4382)] = 448064, + [SMALL_STATE(4383)] = 448116, + [SMALL_STATE(4384)] = 448168, + [SMALL_STATE(4385)] = 448220, + [SMALL_STATE(4386)] = 448300, + [SMALL_STATE(4387)] = 448352, + [SMALL_STATE(4388)] = 448404, + [SMALL_STATE(4389)] = 448456, + [SMALL_STATE(4390)] = 448508, + [SMALL_STATE(4391)] = 448588, + [SMALL_STATE(4392)] = 448668, + [SMALL_STATE(4393)] = 448720, + [SMALL_STATE(4394)] = 448772, + [SMALL_STATE(4395)] = 448824, + [SMALL_STATE(4396)] = 448904, + [SMALL_STATE(4397)] = 448956, + [SMALL_STATE(4398)] = 449036, + [SMALL_STATE(4399)] = 449088, + [SMALL_STATE(4400)] = 449168, + [SMALL_STATE(4401)] = 449248, + [SMALL_STATE(4402)] = 449300, + [SMALL_STATE(4403)] = 449352, + [SMALL_STATE(4404)] = 449432, + [SMALL_STATE(4405)] = 449484, + [SMALL_STATE(4406)] = 449536, + [SMALL_STATE(4407)] = 449616, + [SMALL_STATE(4408)] = 449668, + [SMALL_STATE(4409)] = 449748, + [SMALL_STATE(4410)] = 449800, + [SMALL_STATE(4411)] = 449852, + [SMALL_STATE(4412)] = 449932, + [SMALL_STATE(4413)] = 449984, + [SMALL_STATE(4414)] = 450036, + [SMALL_STATE(4415)] = 450088, + [SMALL_STATE(4416)] = 450168, + [SMALL_STATE(4417)] = 450220, + [SMALL_STATE(4418)] = 450272, + [SMALL_STATE(4419)] = 450324, + [SMALL_STATE(4420)] = 450376, + [SMALL_STATE(4421)] = 450456, + [SMALL_STATE(4422)] = 450508, + [SMALL_STATE(4423)] = 450588, + [SMALL_STATE(4424)] = 450640, + [SMALL_STATE(4425)] = 450720, + [SMALL_STATE(4426)] = 450774, + [SMALL_STATE(4427)] = 450854, + [SMALL_STATE(4428)] = 450934, + [SMALL_STATE(4429)] = 450986, + [SMALL_STATE(4430)] = 451038, + [SMALL_STATE(4431)] = 451118, + [SMALL_STATE(4432)] = 451170, + [SMALL_STATE(4433)] = 451222, + [SMALL_STATE(4434)] = 451274, + [SMALL_STATE(4435)] = 451326, + [SMALL_STATE(4436)] = 451406, + [SMALL_STATE(4437)] = 451458, + [SMALL_STATE(4438)] = 451538, + [SMALL_STATE(4439)] = 451618, + [SMALL_STATE(4440)] = 451670, + [SMALL_STATE(4441)] = 451722, + [SMALL_STATE(4442)] = 451774, + [SMALL_STATE(4443)] = 451854, + [SMALL_STATE(4444)] = 451906, + [SMALL_STATE(4445)] = 451958, + [SMALL_STATE(4446)] = 452010, + [SMALL_STATE(4447)] = 452090, + [SMALL_STATE(4448)] = 452142, + [SMALL_STATE(4449)] = 452222, + [SMALL_STATE(4450)] = 452274, + [SMALL_STATE(4451)] = 452354, + [SMALL_STATE(4452)] = 452406, + [SMALL_STATE(4453)] = 452458, + [SMALL_STATE(4454)] = 452538, + [SMALL_STATE(4455)] = 452590, + [SMALL_STATE(4456)] = 452642, + [SMALL_STATE(4457)] = 452694, + [SMALL_STATE(4458)] = 452774, + [SMALL_STATE(4459)] = 452854, + [SMALL_STATE(4460)] = 452906, + [SMALL_STATE(4461)] = 452958, + [SMALL_STATE(4462)] = 453038, + [SMALL_STATE(4463)] = 453090, + [SMALL_STATE(4464)] = 453170, + [SMALL_STATE(4465)] = 453222, + [SMALL_STATE(4466)] = 453302, + [SMALL_STATE(4467)] = 453382, + [SMALL_STATE(4468)] = 453462, + [SMALL_STATE(4469)] = 453542, + [SMALL_STATE(4470)] = 453622, + [SMALL_STATE(4471)] = 453702, + [SMALL_STATE(4472)] = 453782, + [SMALL_STATE(4473)] = 453862, + [SMALL_STATE(4474)] = 453942, + [SMALL_STATE(4475)] = 454022, + [SMALL_STATE(4476)] = 454102, + [SMALL_STATE(4477)] = 454182, + [SMALL_STATE(4478)] = 454262, + [SMALL_STATE(4479)] = 454342, + [SMALL_STATE(4480)] = 454422, + [SMALL_STATE(4481)] = 454474, + [SMALL_STATE(4482)] = 454526, + [SMALL_STATE(4483)] = 454606, + [SMALL_STATE(4484)] = 454686, + [SMALL_STATE(4485)] = 454766, + [SMALL_STATE(4486)] = 454846, + [SMALL_STATE(4487)] = 454926, + [SMALL_STATE(4488)] = 454978, + [SMALL_STATE(4489)] = 455030, + [SMALL_STATE(4490)] = 455110, + [SMALL_STATE(4491)] = 455162, + [SMALL_STATE(4492)] = 455214, + [SMALL_STATE(4493)] = 455294, + [SMALL_STATE(4494)] = 455374, + [SMALL_STATE(4495)] = 455454, + [SMALL_STATE(4496)] = 455534, + [SMALL_STATE(4497)] = 455586, + [SMALL_STATE(4498)] = 455638, + [SMALL_STATE(4499)] = 455718, + [SMALL_STATE(4500)] = 455798, + [SMALL_STATE(4501)] = 455850, + [SMALL_STATE(4502)] = 455902, + [SMALL_STATE(4503)] = 455992, + [SMALL_STATE(4504)] = 456072, + [SMALL_STATE(4505)] = 456124, + [SMALL_STATE(4506)] = 456176, + [SMALL_STATE(4507)] = 456256, + [SMALL_STATE(4508)] = 456336, + [SMALL_STATE(4509)] = 456416, + [SMALL_STATE(4510)] = 456496, + [SMALL_STATE(4511)] = 456548, + [SMALL_STATE(4512)] = 456600, + [SMALL_STATE(4513)] = 456680, + [SMALL_STATE(4514)] = 456760, + [SMALL_STATE(4515)] = 456812, + [SMALL_STATE(4516)] = 456892, + [SMALL_STATE(4517)] = 456944, + [SMALL_STATE(4518)] = 457024, + [SMALL_STATE(4519)] = 457104, + [SMALL_STATE(4520)] = 457184, + [SMALL_STATE(4521)] = 457236, + [SMALL_STATE(4522)] = 457288, + [SMALL_STATE(4523)] = 457368, + [SMALL_STATE(4524)] = 457448, + [SMALL_STATE(4525)] = 457528, + [SMALL_STATE(4526)] = 457582, + [SMALL_STATE(4527)] = 457634, + [SMALL_STATE(4528)] = 457714, + [SMALL_STATE(4529)] = 457766, + [SMALL_STATE(4530)] = 457818, + [SMALL_STATE(4531)] = 457898, + [SMALL_STATE(4532)] = 457950, + [SMALL_STATE(4533)] = 458040, + [SMALL_STATE(4534)] = 458120, + [SMALL_STATE(4535)] = 458172, + [SMALL_STATE(4536)] = 458224, + [SMALL_STATE(4537)] = 458276, + [SMALL_STATE(4538)] = 458356, + [SMALL_STATE(4539)] = 458436, + [SMALL_STATE(4540)] = 458488, + [SMALL_STATE(4541)] = 458540, + [SMALL_STATE(4542)] = 458620, + [SMALL_STATE(4543)] = 458672, + [SMALL_STATE(4544)] = 458724, + [SMALL_STATE(4545)] = 458776, + [SMALL_STATE(4546)] = 458856, + [SMALL_STATE(4547)] = 458936, + [SMALL_STATE(4548)] = 459016, + [SMALL_STATE(4549)] = 459096, + [SMALL_STATE(4550)] = 459176, + [SMALL_STATE(4551)] = 459256, + [SMALL_STATE(4552)] = 459336, + [SMALL_STATE(4553)] = 459416, + [SMALL_STATE(4554)] = 459496, + [SMALL_STATE(4555)] = 459576, + [SMALL_STATE(4556)] = 459666, + [SMALL_STATE(4557)] = 459746, + [SMALL_STATE(4558)] = 459826, + [SMALL_STATE(4559)] = 459878, + [SMALL_STATE(4560)] = 459930, + [SMALL_STATE(4561)] = 459982, + [SMALL_STATE(4562)] = 460072, + [SMALL_STATE(4563)] = 460152, + [SMALL_STATE(4564)] = 460232, + [SMALL_STATE(4565)] = 460286, + [SMALL_STATE(4566)] = 460376, + [SMALL_STATE(4567)] = 460428, + [SMALL_STATE(4568)] = 460480, + [SMALL_STATE(4569)] = 460532, + [SMALL_STATE(4570)] = 460612, + [SMALL_STATE(4571)] = 460664, + [SMALL_STATE(4572)] = 460744, + [SMALL_STATE(4573)] = 460824, + [SMALL_STATE(4574)] = 460904, + [SMALL_STATE(4575)] = 460956, + [SMALL_STATE(4576)] = 461008, + [SMALL_STATE(4577)] = 461060, + [SMALL_STATE(4578)] = 461112, + [SMALL_STATE(4579)] = 461164, + [SMALL_STATE(4580)] = 461216, + [SMALL_STATE(4581)] = 461268, + [SMALL_STATE(4582)] = 461320, + [SMALL_STATE(4583)] = 461372, + [SMALL_STATE(4584)] = 461424, + [SMALL_STATE(4585)] = 461476, + [SMALL_STATE(4586)] = 461528, + [SMALL_STATE(4587)] = 461580, + [SMALL_STATE(4588)] = 461632, + [SMALL_STATE(4589)] = 461684, + [SMALL_STATE(4590)] = 461764, + [SMALL_STATE(4591)] = 461841, + [SMALL_STATE(4592)] = 461918, + [SMALL_STATE(4593)] = 461995, + [SMALL_STATE(4594)] = 462046, + [SMALL_STATE(4595)] = 462097, + [SMALL_STATE(4596)] = 462174, + [SMALL_STATE(4597)] = 462225, + [SMALL_STATE(4598)] = 462276, + [SMALL_STATE(4599)] = 462327, + [SMALL_STATE(4600)] = 462404, + [SMALL_STATE(4601)] = 462455, + [SMALL_STATE(4602)] = 462532, + [SMALL_STATE(4603)] = 462583, + [SMALL_STATE(4604)] = 462660, + [SMALL_STATE(4605)] = 462711, + [SMALL_STATE(4606)] = 462788, + [SMALL_STATE(4607)] = 462839, + [SMALL_STATE(4608)] = 462890, + [SMALL_STATE(4609)] = 462967, + [SMALL_STATE(4610)] = 463044, + [SMALL_STATE(4611)] = 463095, + [SMALL_STATE(4612)] = 463146, + [SMALL_STATE(4613)] = 463197, + [SMALL_STATE(4614)] = 463248, + [SMALL_STATE(4615)] = 463325, + [SMALL_STATE(4616)] = 463402, + [SMALL_STATE(4617)] = 463453, + [SMALL_STATE(4618)] = 463504, + [SMALL_STATE(4619)] = 463555, + [SMALL_STATE(4620)] = 463606, + [SMALL_STATE(4621)] = 463683, + [SMALL_STATE(4622)] = 463734, + [SMALL_STATE(4623)] = 463811, + [SMALL_STATE(4624)] = 463888, + [SMALL_STATE(4625)] = 463939, + [SMALL_STATE(4626)] = 464016, + [SMALL_STATE(4627)] = 464067, + [SMALL_STATE(4628)] = 464144, + [SMALL_STATE(4629)] = 464221, + [SMALL_STATE(4630)] = 464272, + [SMALL_STATE(4631)] = 464323, + [SMALL_STATE(4632)] = 464374, + [SMALL_STATE(4633)] = 464425, + [SMALL_STATE(4634)] = 464476, + [SMALL_STATE(4635)] = 464553, + [SMALL_STATE(4636)] = 464604, + [SMALL_STATE(4637)] = 464681, + [SMALL_STATE(4638)] = 464758, + [SMALL_STATE(4639)] = 464809, + [SMALL_STATE(4640)] = 464886, + [SMALL_STATE(4641)] = 464963, + [SMALL_STATE(4642)] = 465040, + [SMALL_STATE(4643)] = 465091, + [SMALL_STATE(4644)] = 465142, + [SMALL_STATE(4645)] = 465193, + [SMALL_STATE(4646)] = 465244, + [SMALL_STATE(4647)] = 465321, + [SMALL_STATE(4648)] = 465398, + [SMALL_STATE(4649)] = 465475, + [SMALL_STATE(4650)] = 465526, + [SMALL_STATE(4651)] = 465603, + [SMALL_STATE(4652)] = 465654, + [SMALL_STATE(4653)] = 465731, + [SMALL_STATE(4654)] = 465808, + [SMALL_STATE(4655)] = 465859, + [SMALL_STATE(4656)] = 465936, + [SMALL_STATE(4657)] = 465987, + [SMALL_STATE(4658)] = 466038, + [SMALL_STATE(4659)] = 466089, + [SMALL_STATE(4660)] = 466166, + [SMALL_STATE(4661)] = 466243, + [SMALL_STATE(4662)] = 466320, + [SMALL_STATE(4663)] = 466397, + [SMALL_STATE(4664)] = 466448, + [SMALL_STATE(4665)] = 466525, + [SMALL_STATE(4666)] = 466576, + [SMALL_STATE(4667)] = 466653, + [SMALL_STATE(4668)] = 466730, + [SMALL_STATE(4669)] = 466807, + [SMALL_STATE(4670)] = 466884, + [SMALL_STATE(4671)] = 466961, + [SMALL_STATE(4672)] = 467038, + [SMALL_STATE(4673)] = 467115, + [SMALL_STATE(4674)] = 467166, + [SMALL_STATE(4675)] = 467243, + [SMALL_STATE(4676)] = 467320, + [SMALL_STATE(4677)] = 467371, + [SMALL_STATE(4678)] = 467448, + [SMALL_STATE(4679)] = 467499, + [SMALL_STATE(4680)] = 467576, + [SMALL_STATE(4681)] = 467627, + [SMALL_STATE(4682)] = 467704, + [SMALL_STATE(4683)] = 467781, + [SMALL_STATE(4684)] = 467836, + [SMALL_STATE(4685)] = 467891, + [SMALL_STATE(4686)] = 467946, + [SMALL_STATE(4687)] = 467999, + [SMALL_STATE(4688)] = 468052, + [SMALL_STATE(4689)] = 468107, + [SMALL_STATE(4690)] = 468162, + [SMALL_STATE(4691)] = 468213, + [SMALL_STATE(4692)] = 468264, + [SMALL_STATE(4693)] = 468341, + [SMALL_STATE(4694)] = 468418, + [SMALL_STATE(4695)] = 468495, + [SMALL_STATE(4696)] = 468572, + [SMALL_STATE(4697)] = 468649, + [SMALL_STATE(4698)] = 468726, + [SMALL_STATE(4699)] = 468777, + [SMALL_STATE(4700)] = 468854, + [SMALL_STATE(4701)] = 468931, + [SMALL_STATE(4702)] = 469008, + [SMALL_STATE(4703)] = 469059, + [SMALL_STATE(4704)] = 469136, + [SMALL_STATE(4705)] = 469187, + [SMALL_STATE(4706)] = 469238, + [SMALL_STATE(4707)] = 469289, + [SMALL_STATE(4708)] = 469366, + [SMALL_STATE(4709)] = 469443, + [SMALL_STATE(4710)] = 469520, + [SMALL_STATE(4711)] = 469571, + [SMALL_STATE(4712)] = 469622, + [SMALL_STATE(4713)] = 469699, + [SMALL_STATE(4714)] = 469750, + [SMALL_STATE(4715)] = 469827, + [SMALL_STATE(4716)] = 469904, + [SMALL_STATE(4717)] = 469955, + [SMALL_STATE(4718)] = 470032, + [SMALL_STATE(4719)] = 470109, + [SMALL_STATE(4720)] = 470160, + [SMALL_STATE(4721)] = 470237, + [SMALL_STATE(4722)] = 470314, + [SMALL_STATE(4723)] = 470391, + [SMALL_STATE(4724)] = 470468, + [SMALL_STATE(4725)] = 470545, + [SMALL_STATE(4726)] = 470622, + [SMALL_STATE(4727)] = 470699, + [SMALL_STATE(4728)] = 470776, + [SMALL_STATE(4729)] = 470853, + [SMALL_STATE(4730)] = 470904, + [SMALL_STATE(4731)] = 470981, + [SMALL_STATE(4732)] = 471032, + [SMALL_STATE(4733)] = 471083, + [SMALL_STATE(4734)] = 471160, + [SMALL_STATE(4735)] = 471237, + [SMALL_STATE(4736)] = 471314, + [SMALL_STATE(4737)] = 471365, + [SMALL_STATE(4738)] = 471416, + [SMALL_STATE(4739)] = 471493, + [SMALL_STATE(4740)] = 471570, + [SMALL_STATE(4741)] = 471647, + [SMALL_STATE(4742)] = 471724, + [SMALL_STATE(4743)] = 471801, + [SMALL_STATE(4744)] = 471878, + [SMALL_STATE(4745)] = 471929, + [SMALL_STATE(4746)] = 471980, + [SMALL_STATE(4747)] = 472057, + [SMALL_STATE(4748)] = 472134, + [SMALL_STATE(4749)] = 472211, + [SMALL_STATE(4750)] = 472288, + [SMALL_STATE(4751)] = 472365, + [SMALL_STATE(4752)] = 472442, + [SMALL_STATE(4753)] = 472497, + [SMALL_STATE(4754)] = 472574, + [SMALL_STATE(4755)] = 472651, + [SMALL_STATE(4756)] = 472728, + [SMALL_STATE(4757)] = 472805, + [SMALL_STATE(4758)] = 472882, + [SMALL_STATE(4759)] = 472959, + [SMALL_STATE(4760)] = 473036, + [SMALL_STATE(4761)] = 473113, + [SMALL_STATE(4762)] = 473190, + [SMALL_STATE(4763)] = 473267, + [SMALL_STATE(4764)] = 473344, + [SMALL_STATE(4765)] = 473421, + [SMALL_STATE(4766)] = 473498, + [SMALL_STATE(4767)] = 473575, + [SMALL_STATE(4768)] = 473652, + [SMALL_STATE(4769)] = 473729, + [SMALL_STATE(4770)] = 473806, + [SMALL_STATE(4771)] = 473883, + [SMALL_STATE(4772)] = 473936, + [SMALL_STATE(4773)] = 474013, + [SMALL_STATE(4774)] = 474090, + [SMALL_STATE(4775)] = 474167, + [SMALL_STATE(4776)] = 474244, + [SMALL_STATE(4777)] = 474321, + [SMALL_STATE(4778)] = 474398, + [SMALL_STATE(4779)] = 474475, + [SMALL_STATE(4780)] = 474526, + [SMALL_STATE(4781)] = 474577, + [SMALL_STATE(4782)] = 474628, + [SMALL_STATE(4783)] = 474679, + [SMALL_STATE(4784)] = 474756, + [SMALL_STATE(4785)] = 474833, + [SMALL_STATE(4786)] = 474910, + [SMALL_STATE(4787)] = 474961, + [SMALL_STATE(4788)] = 475038, + [SMALL_STATE(4789)] = 475089, + [SMALL_STATE(4790)] = 475140, + [SMALL_STATE(4791)] = 475217, + [SMALL_STATE(4792)] = 475268, + [SMALL_STATE(4793)] = 475345, + [SMALL_STATE(4794)] = 475422, + [SMALL_STATE(4795)] = 475499, + [SMALL_STATE(4796)] = 475550, + [SMALL_STATE(4797)] = 475627, + [SMALL_STATE(4798)] = 475678, + [SMALL_STATE(4799)] = 475755, + [SMALL_STATE(4800)] = 475806, + [SMALL_STATE(4801)] = 475883, + [SMALL_STATE(4802)] = 475960, + [SMALL_STATE(4803)] = 476037, + [SMALL_STATE(4804)] = 476114, + [SMALL_STATE(4805)] = 476191, + [SMALL_STATE(4806)] = 476268, + [SMALL_STATE(4807)] = 476319, + [SMALL_STATE(4808)] = 476396, + [SMALL_STATE(4809)] = 476473, + [SMALL_STATE(4810)] = 476550, + [SMALL_STATE(4811)] = 476627, + [SMALL_STATE(4812)] = 476704, + [SMALL_STATE(4813)] = 476781, + [SMALL_STATE(4814)] = 476858, + [SMALL_STATE(4815)] = 476935, + [SMALL_STATE(4816)] = 477012, + [SMALL_STATE(4817)] = 477089, + [SMALL_STATE(4818)] = 477166, + [SMALL_STATE(4819)] = 477217, + [SMALL_STATE(4820)] = 477268, + [SMALL_STATE(4821)] = 477345, + [SMALL_STATE(4822)] = 477422, + [SMALL_STATE(4823)] = 477499, + [SMALL_STATE(4824)] = 477576, + [SMALL_STATE(4825)] = 477653, + [SMALL_STATE(4826)] = 477730, + [SMALL_STATE(4827)] = 477807, + [SMALL_STATE(4828)] = 477858, + [SMALL_STATE(4829)] = 477935, + [SMALL_STATE(4830)] = 478012, + [SMALL_STATE(4831)] = 478089, + [SMALL_STATE(4832)] = 478166, + [SMALL_STATE(4833)] = 478243, + [SMALL_STATE(4834)] = 478294, + [SMALL_STATE(4835)] = 478371, + [SMALL_STATE(4836)] = 478448, + [SMALL_STATE(4837)] = 478499, + [SMALL_STATE(4838)] = 478576, + [SMALL_STATE(4839)] = 478653, + [SMALL_STATE(4840)] = 478730, + [SMALL_STATE(4841)] = 478807, + [SMALL_STATE(4842)] = 478858, + [SMALL_STATE(4843)] = 478935, + [SMALL_STATE(4844)] = 478986, + [SMALL_STATE(4845)] = 479063, + [SMALL_STATE(4846)] = 479140, + [SMALL_STATE(4847)] = 479217, + [SMALL_STATE(4848)] = 479268, + [SMALL_STATE(4849)] = 479319, + [SMALL_STATE(4850)] = 479396, + [SMALL_STATE(4851)] = 479473, + [SMALL_STATE(4852)] = 479550, + [SMALL_STATE(4853)] = 479627, + [SMALL_STATE(4854)] = 479678, + [SMALL_STATE(4855)] = 479755, + [SMALL_STATE(4856)] = 479832, + [SMALL_STATE(4857)] = 479909, + [SMALL_STATE(4858)] = 479960, + [SMALL_STATE(4859)] = 480037, + [SMALL_STATE(4860)] = 480088, + [SMALL_STATE(4861)] = 480165, + [SMALL_STATE(4862)] = 480242, + [SMALL_STATE(4863)] = 480293, + [SMALL_STATE(4864)] = 480344, + [SMALL_STATE(4865)] = 480395, + [SMALL_STATE(4866)] = 480472, + [SMALL_STATE(4867)] = 480549, + [SMALL_STATE(4868)] = 480626, + [SMALL_STATE(4869)] = 480677, + [SMALL_STATE(4870)] = 480754, + [SMALL_STATE(4871)] = 480831, + [SMALL_STATE(4872)] = 480908, + [SMALL_STATE(4873)] = 480985, + [SMALL_STATE(4874)] = 481062, + [SMALL_STATE(4875)] = 481113, + [SMALL_STATE(4876)] = 481190, + [SMALL_STATE(4877)] = 481267, + [SMALL_STATE(4878)] = 481344, + [SMALL_STATE(4879)] = 481421, + [SMALL_STATE(4880)] = 481472, + [SMALL_STATE(4881)] = 481549, + [SMALL_STATE(4882)] = 481626, + [SMALL_STATE(4883)] = 481703, + [SMALL_STATE(4884)] = 481780, + [SMALL_STATE(4885)] = 481857, + [SMALL_STATE(4886)] = 481908, + [SMALL_STATE(4887)] = 481985, + [SMALL_STATE(4888)] = 482036, + [SMALL_STATE(4889)] = 482087, + [SMALL_STATE(4890)] = 482164, + [SMALL_STATE(4891)] = 482215, + [SMALL_STATE(4892)] = 482266, + [SMALL_STATE(4893)] = 482317, + [SMALL_STATE(4894)] = 482394, + [SMALL_STATE(4895)] = 482445, + [SMALL_STATE(4896)] = 482496, + [SMALL_STATE(4897)] = 482573, + [SMALL_STATE(4898)] = 482650, + [SMALL_STATE(4899)] = 482727, + [SMALL_STATE(4900)] = 482778, + [SMALL_STATE(4901)] = 482829, + [SMALL_STATE(4902)] = 482906, + [SMALL_STATE(4903)] = 482957, + [SMALL_STATE(4904)] = 483034, + [SMALL_STATE(4905)] = 483111, + [SMALL_STATE(4906)] = 483162, + [SMALL_STATE(4907)] = 483239, + [SMALL_STATE(4908)] = 483290, + [SMALL_STATE(4909)] = 483341, + [SMALL_STATE(4910)] = 483418, + [SMALL_STATE(4911)] = 483495, + [SMALL_STATE(4912)] = 483572, + [SMALL_STATE(4913)] = 483649, + [SMALL_STATE(4914)] = 483726, + [SMALL_STATE(4915)] = 483803, + [SMALL_STATE(4916)] = 483854, + [SMALL_STATE(4917)] = 483931, + [SMALL_STATE(4918)] = 484008, + [SMALL_STATE(4919)] = 484085, + [SMALL_STATE(4920)] = 484162, + [SMALL_STATE(4921)] = 484239, + [SMALL_STATE(4922)] = 484290, + [SMALL_STATE(4923)] = 484367, + [SMALL_STATE(4924)] = 484418, + [SMALL_STATE(4925)] = 484495, + [SMALL_STATE(4926)] = 484572, + [SMALL_STATE(4927)] = 484649, + [SMALL_STATE(4928)] = 484726, + [SMALL_STATE(4929)] = 484803, + [SMALL_STATE(4930)] = 484880, + [SMALL_STATE(4931)] = 484957, + [SMALL_STATE(4932)] = 485034, + [SMALL_STATE(4933)] = 485111, + [SMALL_STATE(4934)] = 485162, + [SMALL_STATE(4935)] = 485239, + [SMALL_STATE(4936)] = 485316, + [SMALL_STATE(4937)] = 485393, + [SMALL_STATE(4938)] = 485470, + [SMALL_STATE(4939)] = 485521, + [SMALL_STATE(4940)] = 485572, + [SMALL_STATE(4941)] = 485649, + [SMALL_STATE(4942)] = 485700, + [SMALL_STATE(4943)] = 485751, + [SMALL_STATE(4944)] = 485828, + [SMALL_STATE(4945)] = 485879, + [SMALL_STATE(4946)] = 485930, + [SMALL_STATE(4947)] = 486007, + [SMALL_STATE(4948)] = 486084, + [SMALL_STATE(4949)] = 486135, + [SMALL_STATE(4950)] = 486212, + [SMALL_STATE(4951)] = 486289, + [SMALL_STATE(4952)] = 486366, + [SMALL_STATE(4953)] = 486417, + [SMALL_STATE(4954)] = 486494, + [SMALL_STATE(4955)] = 486545, + [SMALL_STATE(4956)] = 486622, + [SMALL_STATE(4957)] = 486673, + [SMALL_STATE(4958)] = 486750, + [SMALL_STATE(4959)] = 486801, + [SMALL_STATE(4960)] = 486878, + [SMALL_STATE(4961)] = 486929, + [SMALL_STATE(4962)] = 486980, + [SMALL_STATE(4963)] = 487031, + [SMALL_STATE(4964)] = 487108, + [SMALL_STATE(4965)] = 487185, + [SMALL_STATE(4966)] = 487236, + [SMALL_STATE(4967)] = 487313, + [SMALL_STATE(4968)] = 487390, + [SMALL_STATE(4969)] = 487441, + [SMALL_STATE(4970)] = 487492, + [SMALL_STATE(4971)] = 487569, + [SMALL_STATE(4972)] = 487646, + [SMALL_STATE(4973)] = 487723, + [SMALL_STATE(4974)] = 487800, + [SMALL_STATE(4975)] = 487877, + [SMALL_STATE(4976)] = 487954, + [SMALL_STATE(4977)] = 488031, + [SMALL_STATE(4978)] = 488108, + [SMALL_STATE(4979)] = 488185, + [SMALL_STATE(4980)] = 488262, + [SMALL_STATE(4981)] = 488339, + [SMALL_STATE(4982)] = 488416, + [SMALL_STATE(4983)] = 488493, + [SMALL_STATE(4984)] = 488544, + [SMALL_STATE(4985)] = 488595, + [SMALL_STATE(4986)] = 488672, + [SMALL_STATE(4987)] = 488749, + [SMALL_STATE(4988)] = 488826, + [SMALL_STATE(4989)] = 488903, + [SMALL_STATE(4990)] = 488980, + [SMALL_STATE(4991)] = 489057, + [SMALL_STATE(4992)] = 489134, + [SMALL_STATE(4993)] = 489211, + [SMALL_STATE(4994)] = 489288, + [SMALL_STATE(4995)] = 489365, + [SMALL_STATE(4996)] = 489442, + [SMALL_STATE(4997)] = 489519, + [SMALL_STATE(4998)] = 489596, + [SMALL_STATE(4999)] = 489673, + [SMALL_STATE(5000)] = 489724, + [SMALL_STATE(5001)] = 489801, + [SMALL_STATE(5002)] = 489852, + [SMALL_STATE(5003)] = 489929, + [SMALL_STATE(5004)] = 490006, + [SMALL_STATE(5005)] = 490083, + [SMALL_STATE(5006)] = 490160, + [SMALL_STATE(5007)] = 490211, + [SMALL_STATE(5008)] = 490288, + [SMALL_STATE(5009)] = 490365, + [SMALL_STATE(5010)] = 490442, + [SMALL_STATE(5011)] = 490519, + [SMALL_STATE(5012)] = 490570, + [SMALL_STATE(5013)] = 490621, + [SMALL_STATE(5014)] = 490698, + [SMALL_STATE(5015)] = 490775, + [SMALL_STATE(5016)] = 490826, + [SMALL_STATE(5017)] = 490877, + [SMALL_STATE(5018)] = 490954, + [SMALL_STATE(5019)] = 491031, + [SMALL_STATE(5020)] = 491082, + [SMALL_STATE(5021)] = 491159, + [SMALL_STATE(5022)] = 491236, + [SMALL_STATE(5023)] = 491313, + [SMALL_STATE(5024)] = 491390, + [SMALL_STATE(5025)] = 491467, + [SMALL_STATE(5026)] = 491544, + [SMALL_STATE(5027)] = 491621, + [SMALL_STATE(5028)] = 491698, + [SMALL_STATE(5029)] = 491775, + [SMALL_STATE(5030)] = 491852, + [SMALL_STATE(5031)] = 491903, + [SMALL_STATE(5032)] = 491954, + [SMALL_STATE(5033)] = 492031, + [SMALL_STATE(5034)] = 492108, + [SMALL_STATE(5035)] = 492185, + [SMALL_STATE(5036)] = 492262, + [SMALL_STATE(5037)] = 492339, + [SMALL_STATE(5038)] = 492390, + [SMALL_STATE(5039)] = 492441, + [SMALL_STATE(5040)] = 492518, + [SMALL_STATE(5041)] = 492569, + [SMALL_STATE(5042)] = 492646, + [SMALL_STATE(5043)] = 492723, + [SMALL_STATE(5044)] = 492774, + [SMALL_STATE(5045)] = 492825, + [SMALL_STATE(5046)] = 492902, + [SMALL_STATE(5047)] = 492979, + [SMALL_STATE(5048)] = 493030, + [SMALL_STATE(5049)] = 493107, + [SMALL_STATE(5050)] = 493158, + [SMALL_STATE(5051)] = 493209, + [SMALL_STATE(5052)] = 493286, + [SMALL_STATE(5053)] = 493363, + [SMALL_STATE(5054)] = 493440, + [SMALL_STATE(5055)] = 493517, + [SMALL_STATE(5056)] = 493594, + [SMALL_STATE(5057)] = 493647, + [SMALL_STATE(5058)] = 493698, + [SMALL_STATE(5059)] = 493749, + [SMALL_STATE(5060)] = 493826, + [SMALL_STATE(5061)] = 493903, + [SMALL_STATE(5062)] = 493980, + [SMALL_STATE(5063)] = 494057, + [SMALL_STATE(5064)] = 494108, + [SMALL_STATE(5065)] = 494159, + [SMALL_STATE(5066)] = 494210, + [SMALL_STATE(5067)] = 494287, + [SMALL_STATE(5068)] = 494364, + [SMALL_STATE(5069)] = 494441, + [SMALL_STATE(5070)] = 494518, + [SMALL_STATE(5071)] = 494595, + [SMALL_STATE(5072)] = 494650, + [SMALL_STATE(5073)] = 494705, + [SMALL_STATE(5074)] = 494782, + [SMALL_STATE(5075)] = 494859, + [SMALL_STATE(5076)] = 494936, + [SMALL_STATE(5077)] = 495013, + [SMALL_STATE(5078)] = 495090, + [SMALL_STATE(5079)] = 495167, + [SMALL_STATE(5080)] = 495244, + [SMALL_STATE(5081)] = 495295, + [SMALL_STATE(5082)] = 495372, + [SMALL_STATE(5083)] = 495423, + [SMALL_STATE(5084)] = 495474, + [SMALL_STATE(5085)] = 495551, + [SMALL_STATE(5086)] = 495628, + [SMALL_STATE(5087)] = 495705, + [SMALL_STATE(5088)] = 495782, + [SMALL_STATE(5089)] = 495833, + [SMALL_STATE(5090)] = 495910, + [SMALL_STATE(5091)] = 495987, + [SMALL_STATE(5092)] = 496064, + [SMALL_STATE(5093)] = 496141, + [SMALL_STATE(5094)] = 496192, + [SMALL_STATE(5095)] = 496269, + [SMALL_STATE(5096)] = 496320, + [SMALL_STATE(5097)] = 496397, + [SMALL_STATE(5098)] = 496474, + [SMALL_STATE(5099)] = 496551, + [SMALL_STATE(5100)] = 496628, + [SMALL_STATE(5101)] = 496705, + [SMALL_STATE(5102)] = 496782, + [SMALL_STATE(5103)] = 496833, + [SMALL_STATE(5104)] = 496884, + [SMALL_STATE(5105)] = 496961, + [SMALL_STATE(5106)] = 497012, + [SMALL_STATE(5107)] = 497089, + [SMALL_STATE(5108)] = 497166, + [SMALL_STATE(5109)] = 497243, + [SMALL_STATE(5110)] = 497320, + [SMALL_STATE(5111)] = 497397, + [SMALL_STATE(5112)] = 497474, + [SMALL_STATE(5113)] = 497551, + [SMALL_STATE(5114)] = 497602, + [SMALL_STATE(5115)] = 497653, + [SMALL_STATE(5116)] = 497730, + [SMALL_STATE(5117)] = 497781, + [SMALL_STATE(5118)] = 497858, + [SMALL_STATE(5119)] = 497935, + [SMALL_STATE(5120)] = 498012, + [SMALL_STATE(5121)] = 498089, + [SMALL_STATE(5122)] = 498166, + [SMALL_STATE(5123)] = 498243, + [SMALL_STATE(5124)] = 498294, + [SMALL_STATE(5125)] = 498371, + [SMALL_STATE(5126)] = 498448, + [SMALL_STATE(5127)] = 498525, + [SMALL_STATE(5128)] = 498576, + [SMALL_STATE(5129)] = 498653, + [SMALL_STATE(5130)] = 498730, + [SMALL_STATE(5131)] = 498807, + [SMALL_STATE(5132)] = 498884, + [SMALL_STATE(5133)] = 498961, + [SMALL_STATE(5134)] = 499012, + [SMALL_STATE(5135)] = 499089, + [SMALL_STATE(5136)] = 499166, + [SMALL_STATE(5137)] = 499243, + [SMALL_STATE(5138)] = 499320, + [SMALL_STATE(5139)] = 499397, + [SMALL_STATE(5140)] = 499474, + [SMALL_STATE(5141)] = 499525, + [SMALL_STATE(5142)] = 499602, + [SMALL_STATE(5143)] = 499679, + [SMALL_STATE(5144)] = 499730, + [SMALL_STATE(5145)] = 499781, + [SMALL_STATE(5146)] = 499858, + [SMALL_STATE(5147)] = 499935, + [SMALL_STATE(5148)] = 499986, + [SMALL_STATE(5149)] = 500037, + [SMALL_STATE(5150)] = 500114, + [SMALL_STATE(5151)] = 500191, + [SMALL_STATE(5152)] = 500268, + [SMALL_STATE(5153)] = 500345, + [SMALL_STATE(5154)] = 500422, + [SMALL_STATE(5155)] = 500499, + [SMALL_STATE(5156)] = 500576, + [SMALL_STATE(5157)] = 500653, + [SMALL_STATE(5158)] = 500730, + [SMALL_STATE(5159)] = 500781, + [SMALL_STATE(5160)] = 500858, + [SMALL_STATE(5161)] = 500935, + [SMALL_STATE(5162)] = 501012, + [SMALL_STATE(5163)] = 501089, + [SMALL_STATE(5164)] = 501166, + [SMALL_STATE(5165)] = 501243, + [SMALL_STATE(5166)] = 501320, + [SMALL_STATE(5167)] = 501397, + [SMALL_STATE(5168)] = 501474, + [SMALL_STATE(5169)] = 501525, + [SMALL_STATE(5170)] = 501602, + [SMALL_STATE(5171)] = 501679, + [SMALL_STATE(5172)] = 501756, + [SMALL_STATE(5173)] = 501833, + [SMALL_STATE(5174)] = 501910, + [SMALL_STATE(5175)] = 501987, + [SMALL_STATE(5176)] = 502064, + [SMALL_STATE(5177)] = 502141, + [SMALL_STATE(5178)] = 502192, + [SMALL_STATE(5179)] = 502269, + [SMALL_STATE(5180)] = 502346, + [SMALL_STATE(5181)] = 502423, + [SMALL_STATE(5182)] = 502500, + [SMALL_STATE(5183)] = 502577, + [SMALL_STATE(5184)] = 502654, + [SMALL_STATE(5185)] = 502731, + [SMALL_STATE(5186)] = 502782, + [SMALL_STATE(5187)] = 502859, + [SMALL_STATE(5188)] = 502936, + [SMALL_STATE(5189)] = 503013, + [SMALL_STATE(5190)] = 503090, + [SMALL_STATE(5191)] = 503167, + [SMALL_STATE(5192)] = 503244, + [SMALL_STATE(5193)] = 503321, + [SMALL_STATE(5194)] = 503398, + [SMALL_STATE(5195)] = 503475, + [SMALL_STATE(5196)] = 503552, + [SMALL_STATE(5197)] = 503629, + [SMALL_STATE(5198)] = 503706, + [SMALL_STATE(5199)] = 503783, + [SMALL_STATE(5200)] = 503860, + [SMALL_STATE(5201)] = 503937, + [SMALL_STATE(5202)] = 504015, + [SMALL_STATE(5203)] = 504065, + [SMALL_STATE(5204)] = 504139, + [SMALL_STATE(5205)] = 504193, + [SMALL_STATE(5206)] = 504247, + [SMALL_STATE(5207)] = 504297, + [SMALL_STATE(5208)] = 504349, + [SMALL_STATE(5209)] = 504403, + [SMALL_STATE(5210)] = 504457, + [SMALL_STATE(5211)] = 504507, + [SMALL_STATE(5212)] = 504567, + [SMALL_STATE(5213)] = 504635, + [SMALL_STATE(5214)] = 504693, + [SMALL_STATE(5215)] = 504771, + [SMALL_STATE(5216)] = 504849, + [SMALL_STATE(5217)] = 504921, + [SMALL_STATE(5218)] = 504991, + [SMALL_STATE(5219)] = 505061, + [SMALL_STATE(5220)] = 505111, + [SMALL_STATE(5221)] = 505189, + [SMALL_STATE(5222)] = 505253, + [SMALL_STATE(5223)] = 505303, + [SMALL_STATE(5224)] = 505381, + [SMALL_STATE(5225)] = 505435, + [SMALL_STATE(5226)] = 505489, + [SMALL_STATE(5227)] = 505541, + [SMALL_STATE(5228)] = 505591, + [SMALL_STATE(5229)] = 505645, + [SMALL_STATE(5230)] = 505705, + [SMALL_STATE(5231)] = 505783, + [SMALL_STATE(5232)] = 505837, + [SMALL_STATE(5233)] = 505891, + [SMALL_STATE(5234)] = 505941, + [SMALL_STATE(5235)] = 506019, + [SMALL_STATE(5236)] = 506093, + [SMALL_STATE(5237)] = 506167, + [SMALL_STATE(5238)] = 506217, + [SMALL_STATE(5239)] = 506295, + [SMALL_STATE(5240)] = 506345, + [SMALL_STATE(5241)] = 506395, + [SMALL_STATE(5242)] = 506473, + [SMALL_STATE(5243)] = 506551, + [SMALL_STATE(5244)] = 506629, + [SMALL_STATE(5245)] = 506683, + [SMALL_STATE(5246)] = 506737, + [SMALL_STATE(5247)] = 506787, + [SMALL_STATE(5248)] = 506841, + [SMALL_STATE(5249)] = 506895, + [SMALL_STATE(5250)] = 506949, + [SMALL_STATE(5251)] = 507003, + [SMALL_STATE(5252)] = 507081, + [SMALL_STATE(5253)] = 507131, + [SMALL_STATE(5254)] = 507181, + [SMALL_STATE(5255)] = 507231, + [SMALL_STATE(5256)] = 507285, + [SMALL_STATE(5257)] = 507335, + [SMALL_STATE(5258)] = 507385, + [SMALL_STATE(5259)] = 507463, + [SMALL_STATE(5260)] = 507515, + [SMALL_STATE(5261)] = 507565, + [SMALL_STATE(5262)] = 507615, + [SMALL_STATE(5263)] = 507665, + [SMALL_STATE(5264)] = 507715, + [SMALL_STATE(5265)] = 507793, + [SMALL_STATE(5266)] = 507871, + [SMALL_STATE(5267)] = 507949, + [SMALL_STATE(5268)] = 508001, + [SMALL_STATE(5269)] = 508051, + [SMALL_STATE(5270)] = 508101, + [SMALL_STATE(5271)] = 508179, + [SMALL_STATE(5272)] = 508229, + [SMALL_STATE(5273)] = 508283, + [SMALL_STATE(5274)] = 508333, + [SMALL_STATE(5275)] = 508411, + [SMALL_STATE(5276)] = 508489, + [SMALL_STATE(5277)] = 508543, + [SMALL_STATE(5278)] = 508593, + [SMALL_STATE(5279)] = 508643, + [SMALL_STATE(5280)] = 508721, + [SMALL_STATE(5281)] = 508771, + [SMALL_STATE(5282)] = 508821, + [SMALL_STATE(5283)] = 508899, + [SMALL_STATE(5284)] = 508977, + [SMALL_STATE(5285)] = 509027, + [SMALL_STATE(5286)] = 509105, + [SMALL_STATE(5287)] = 509183, + [SMALL_STATE(5288)] = 509233, + [SMALL_STATE(5289)] = 509311, + [SMALL_STATE(5290)] = 509361, + [SMALL_STATE(5291)] = 509415, + [SMALL_STATE(5292)] = 509465, + [SMALL_STATE(5293)] = 509519, + [SMALL_STATE(5294)] = 509569, + [SMALL_STATE(5295)] = 509619, + [SMALL_STATE(5296)] = 509669, + [SMALL_STATE(5297)] = 509747, + [SMALL_STATE(5298)] = 509825, + [SMALL_STATE(5299)] = 509875, + [SMALL_STATE(5300)] = 509953, + [SMALL_STATE(5301)] = 510003, + [SMALL_STATE(5302)] = 510053, + [SMALL_STATE(5303)] = 510131, + [SMALL_STATE(5304)] = 510209, + [SMALL_STATE(5305)] = 510263, + [SMALL_STATE(5306)] = 510341, + [SMALL_STATE(5307)] = 510391, + [SMALL_STATE(5308)] = 510441, + [SMALL_STATE(5309)] = 510491, + [SMALL_STATE(5310)] = 510569, + [SMALL_STATE(5311)] = 510619, + [SMALL_STATE(5312)] = 510669, + [SMALL_STATE(5313)] = 510747, + [SMALL_STATE(5314)] = 510801, + [SMALL_STATE(5315)] = 510851, + [SMALL_STATE(5316)] = 510929, + [SMALL_STATE(5317)] = 510979, + [SMALL_STATE(5318)] = 511029, + [SMALL_STATE(5319)] = 511079, + [SMALL_STATE(5320)] = 511157, + [SMALL_STATE(5321)] = 511235, + [SMALL_STATE(5322)] = 511289, + [SMALL_STATE(5323)] = 511339, + [SMALL_STATE(5324)] = 511389, + [SMALL_STATE(5325)] = 511443, + [SMALL_STATE(5326)] = 511493, + [SMALL_STATE(5327)] = 511545, + [SMALL_STATE(5328)] = 511597, + [SMALL_STATE(5329)] = 511647, + [SMALL_STATE(5330)] = 511701, + [SMALL_STATE(5331)] = 511755, + [SMALL_STATE(5332)] = 511805, + [SMALL_STATE(5333)] = 511855, + [SMALL_STATE(5334)] = 511905, + [SMALL_STATE(5335)] = 511983, + [SMALL_STATE(5336)] = 512061, + [SMALL_STATE(5337)] = 512115, + [SMALL_STATE(5338)] = 512169, + [SMALL_STATE(5339)] = 512247, + [SMALL_STATE(5340)] = 512301, + [SMALL_STATE(5341)] = 512351, + [SMALL_STATE(5342)] = 512401, + [SMALL_STATE(5343)] = 512455, + [SMALL_STATE(5344)] = 512533, + [SMALL_STATE(5345)] = 512583, + [SMALL_STATE(5346)] = 512635, + [SMALL_STATE(5347)] = 512685, + [SMALL_STATE(5348)] = 512763, + [SMALL_STATE(5349)] = 512837, + [SMALL_STATE(5350)] = 512889, + [SMALL_STATE(5351)] = 512967, + [SMALL_STATE(5352)] = 513017, + [SMALL_STATE(5353)] = 513070, + [SMALL_STATE(5354)] = 513145, + [SMALL_STATE(5355)] = 513218, + [SMALL_STATE(5356)] = 513293, + [SMALL_STATE(5357)] = 513342, + [SMALL_STATE(5358)] = 513415, + [SMALL_STATE(5359)] = 513472, + [SMALL_STATE(5360)] = 513547, + [SMALL_STATE(5361)] = 513620, + [SMALL_STATE(5362)] = 513689, + [SMALL_STATE(5363)] = 513742, + [SMALL_STATE(5364)] = 513817, + [SMALL_STATE(5365)] = 513868, + [SMALL_STATE(5366)] = 513941, + [SMALL_STATE(5367)] = 513990, + [SMALL_STATE(5368)] = 514059, + [SMALL_STATE(5369)] = 514132, + [SMALL_STATE(5370)] = 514207, + [SMALL_STATE(5371)] = 514278, + [SMALL_STATE(5372)] = 514353, + [SMALL_STATE(5373)] = 514402, + [SMALL_STATE(5374)] = 514465, + [SMALL_STATE(5375)] = 514534, + [SMALL_STATE(5376)] = 514583, + [SMALL_STATE(5377)] = 514632, + [SMALL_STATE(5378)] = 514691, + [SMALL_STATE(5379)] = 514758, + [SMALL_STATE(5380)] = 514831, + [SMALL_STATE(5381)] = 514882, + [SMALL_STATE(5382)] = 514953, + [SMALL_STATE(5383)] = 515026, + [SMALL_STATE(5384)] = 515079, + [SMALL_STATE(5385)] = 515146, + [SMALL_STATE(5386)] = 515195, + [SMALL_STATE(5387)] = 515252, + [SMALL_STATE(5388)] = 515325, + [SMALL_STATE(5389)] = 515394, + [SMALL_STATE(5390)] = 515447, + [SMALL_STATE(5391)] = 515504, + [SMALL_STATE(5392)] = 515575, + [SMALL_STATE(5393)] = 515626, + [SMALL_STATE(5394)] = 515695, + [SMALL_STATE(5395)] = 515764, + [SMALL_STATE(5396)] = 515839, + [SMALL_STATE(5397)] = 515912, + [SMALL_STATE(5398)] = 515975, + [SMALL_STATE(5399)] = 516042, + [SMALL_STATE(5400)] = 516115, + [SMALL_STATE(5401)] = 516174, + [SMALL_STATE(5402)] = 516237, + [SMALL_STATE(5403)] = 516286, + [SMALL_STATE(5404)] = 516361, + [SMALL_STATE(5405)] = 516410, + [SMALL_STATE(5406)] = 516463, + [SMALL_STATE(5407)] = 516534, + [SMALL_STATE(5408)] = 516609, + [SMALL_STATE(5409)] = 516682, + [SMALL_STATE(5410)] = 516741, + [SMALL_STATE(5411)] = 516810, + [SMALL_STATE(5412)] = 516873, + [SMALL_STATE(5413)] = 516932, + [SMALL_STATE(5414)] = 517005, + [SMALL_STATE(5415)] = 517078, + [SMALL_STATE(5416)] = 517137, + [SMALL_STATE(5417)] = 517208, + [SMALL_STATE(5418)] = 517267, + [SMALL_STATE(5419)] = 517316, + [SMALL_STATE(5420)] = 517365, + [SMALL_STATE(5421)] = 517418, + [SMALL_STATE(5422)] = 517471, + [SMALL_STATE(5423)] = 517520, + [SMALL_STATE(5424)] = 517579, + [SMALL_STATE(5425)] = 517628, + [SMALL_STATE(5426)] = 517701, + [SMALL_STATE(5427)] = 517774, + [SMALL_STATE(5428)] = 517841, + [SMALL_STATE(5429)] = 517898, + [SMALL_STATE(5430)] = 517951, + [SMALL_STATE(5431)] = 518024, + [SMALL_STATE(5432)] = 518083, + [SMALL_STATE(5433)] = 518142, + [SMALL_STATE(5434)] = 518209, + [SMALL_STATE(5435)] = 518280, + [SMALL_STATE(5436)] = 518337, + [SMALL_STATE(5437)] = 518408, + [SMALL_STATE(5438)] = 518457, + [SMALL_STATE(5439)] = 518532, + [SMALL_STATE(5440)] = 518601, + [SMALL_STATE(5441)] = 518670, + [SMALL_STATE(5442)] = 518733, + [SMALL_STATE(5443)] = 518792, + [SMALL_STATE(5444)] = 518845, + [SMALL_STATE(5445)] = 518920, + [SMALL_STATE(5446)] = 518995, + [SMALL_STATE(5447)] = 519064, + [SMALL_STATE(5448)] = 519139, + [SMALL_STATE(5449)] = 519212, + [SMALL_STATE(5450)] = 519265, + [SMALL_STATE(5451)] = 519338, + [SMALL_STATE(5452)] = 519411, + [SMALL_STATE(5453)] = 519486, + [SMALL_STATE(5454)] = 519558, + [SMALL_STATE(5455)] = 519606, + [SMALL_STATE(5456)] = 519656, + [SMALL_STATE(5457)] = 519704, + [SMALL_STATE(5458)] = 519752, + [SMALL_STATE(5459)] = 519800, + [SMALL_STATE(5460)] = 519848, + [SMALL_STATE(5461)] = 519896, + [SMALL_STATE(5462)] = 519944, + [SMALL_STATE(5463)] = 519992, + [SMALL_STATE(5464)] = 520040, + [SMALL_STATE(5465)] = 520088, + [SMALL_STATE(5466)] = 520136, + [SMALL_STATE(5467)] = 520184, + [SMALL_STATE(5468)] = 520232, + [SMALL_STATE(5469)] = 520280, + [SMALL_STATE(5470)] = 520328, + [SMALL_STATE(5471)] = 520376, + [SMALL_STATE(5472)] = 520424, + [SMALL_STATE(5473)] = 520472, + [SMALL_STATE(5474)] = 520520, + [SMALL_STATE(5475)] = 520568, + [SMALL_STATE(5476)] = 520616, + [SMALL_STATE(5477)] = 520664, + [SMALL_STATE(5478)] = 520712, + [SMALL_STATE(5479)] = 520760, + [SMALL_STATE(5480)] = 520808, + [SMALL_STATE(5481)] = 520856, + [SMALL_STATE(5482)] = 520904, + [SMALL_STATE(5483)] = 520952, + [SMALL_STATE(5484)] = 521000, + [SMALL_STATE(5485)] = 521048, + [SMALL_STATE(5486)] = 521096, + [SMALL_STATE(5487)] = 521144, + [SMALL_STATE(5488)] = 521192, + [SMALL_STATE(5489)] = 521240, + [SMALL_STATE(5490)] = 521288, + [SMALL_STATE(5491)] = 521336, + [SMALL_STATE(5492)] = 521384, + [SMALL_STATE(5493)] = 521432, + [SMALL_STATE(5494)] = 521480, + [SMALL_STATE(5495)] = 521528, + [SMALL_STATE(5496)] = 521576, + [SMALL_STATE(5497)] = 521624, + [SMALL_STATE(5498)] = 521672, + [SMALL_STATE(5499)] = 521720, + [SMALL_STATE(5500)] = 521768, + [SMALL_STATE(5501)] = 521816, + [SMALL_STATE(5502)] = 521864, + [SMALL_STATE(5503)] = 521912, + [SMALL_STATE(5504)] = 521960, + [SMALL_STATE(5505)] = 522008, + [SMALL_STATE(5506)] = 522056, + [SMALL_STATE(5507)] = 522104, + [SMALL_STATE(5508)] = 522152, + [SMALL_STATE(5509)] = 522200, + [SMALL_STATE(5510)] = 522248, + [SMALL_STATE(5511)] = 522296, + [SMALL_STATE(5512)] = 522368, + [SMALL_STATE(5513)] = 522416, + [SMALL_STATE(5514)] = 522464, + [SMALL_STATE(5515)] = 522514, + [SMALL_STATE(5516)] = 522562, + [SMALL_STATE(5517)] = 522610, + [SMALL_STATE(5518)] = 522660, + [SMALL_STATE(5519)] = 522708, + [SMALL_STATE(5520)] = 522756, + [SMALL_STATE(5521)] = 522804, + [SMALL_STATE(5522)] = 522852, + [SMALL_STATE(5523)] = 522900, + [SMALL_STATE(5524)] = 522948, + [SMALL_STATE(5525)] = 522996, + [SMALL_STATE(5526)] = 523044, + [SMALL_STATE(5527)] = 523092, + [SMALL_STATE(5528)] = 523140, + [SMALL_STATE(5529)] = 523188, + [SMALL_STATE(5530)] = 523236, + [SMALL_STATE(5531)] = 523284, + [SMALL_STATE(5532)] = 523332, + [SMALL_STATE(5533)] = 523380, + [SMALL_STATE(5534)] = 523428, + [SMALL_STATE(5535)] = 523476, + [SMALL_STATE(5536)] = 523524, + [SMALL_STATE(5537)] = 523572, + [SMALL_STATE(5538)] = 523620, + [SMALL_STATE(5539)] = 523668, + [SMALL_STATE(5540)] = 523716, + [SMALL_STATE(5541)] = 523764, + [SMALL_STATE(5542)] = 523812, + [SMALL_STATE(5543)] = 523860, + [SMALL_STATE(5544)] = 523908, + [SMALL_STATE(5545)] = 523956, + [SMALL_STATE(5546)] = 524004, + [SMALL_STATE(5547)] = 524052, + [SMALL_STATE(5548)] = 524100, + [SMALL_STATE(5549)] = 524148, + [SMALL_STATE(5550)] = 524196, + [SMALL_STATE(5551)] = 524244, + [SMALL_STATE(5552)] = 524292, + [SMALL_STATE(5553)] = 524340, + [SMALL_STATE(5554)] = 524388, + [SMALL_STATE(5555)] = 524436, + [SMALL_STATE(5556)] = 524484, + [SMALL_STATE(5557)] = 524532, + [SMALL_STATE(5558)] = 524580, + [SMALL_STATE(5559)] = 524628, + [SMALL_STATE(5560)] = 524676, + [SMALL_STATE(5561)] = 524724, + [SMALL_STATE(5562)] = 524772, + [SMALL_STATE(5563)] = 524820, + [SMALL_STATE(5564)] = 524868, + [SMALL_STATE(5565)] = 524916, + [SMALL_STATE(5566)] = 524964, + [SMALL_STATE(5567)] = 525012, + [SMALL_STATE(5568)] = 525060, + [SMALL_STATE(5569)] = 525108, + [SMALL_STATE(5570)] = 525156, + [SMALL_STATE(5571)] = 525204, + [SMALL_STATE(5572)] = 525252, + [SMALL_STATE(5573)] = 525302, + [SMALL_STATE(5574)] = 525350, + [SMALL_STATE(5575)] = 525400, + [SMALL_STATE(5576)] = 525448, + [SMALL_STATE(5577)] = 525496, + [SMALL_STATE(5578)] = 525546, + [SMALL_STATE(5579)] = 525594, + [SMALL_STATE(5580)] = 525642, + [SMALL_STATE(5581)] = 525734, + [SMALL_STATE(5582)] = 525806, + [SMALL_STATE(5583)] = 525878, + [SMALL_STATE(5584)] = 525950, + [SMALL_STATE(5585)] = 526022, + [SMALL_STATE(5586)] = 526094, + [SMALL_STATE(5587)] = 526152, + [SMALL_STATE(5588)] = 526218, + [SMALL_STATE(5589)] = 526274, + [SMALL_STATE(5590)] = 526344, + [SMALL_STATE(5591)] = 526412, + [SMALL_STATE(5592)] = 526480, + [SMALL_STATE(5593)] = 526542, + [SMALL_STATE(5594)] = 526600, + [SMALL_STATE(5595)] = 526652, + [SMALL_STATE(5596)] = 526704, + [SMALL_STATE(5597)] = 526776, + [SMALL_STATE(5598)] = 526848, + [SMALL_STATE(5599)] = 526920, + [SMALL_STATE(5600)] = 526992, + [SMALL_STATE(5601)] = 527050, + [SMALL_STATE(5602)] = 527116, + [SMALL_STATE(5603)] = 527172, + [SMALL_STATE(5604)] = 527242, + [SMALL_STATE(5605)] = 527310, + [SMALL_STATE(5606)] = 527378, + [SMALL_STATE(5607)] = 527440, + [SMALL_STATE(5608)] = 527498, + [SMALL_STATE(5609)] = 527550, + [SMALL_STATE(5610)] = 527602, + [SMALL_STATE(5611)] = 527674, + [SMALL_STATE(5612)] = 527746, + [SMALL_STATE(5613)] = 527818, + [SMALL_STATE(5614)] = 527890, + [SMALL_STATE(5615)] = 527962, + [SMALL_STATE(5616)] = 528034, + [SMALL_STATE(5617)] = 528106, + [SMALL_STATE(5618)] = 528178, + [SMALL_STATE(5619)] = 528250, + [SMALL_STATE(5620)] = 528322, + [SMALL_STATE(5621)] = 528380, + [SMALL_STATE(5622)] = 528452, + [SMALL_STATE(5623)] = 528524, + [SMALL_STATE(5624)] = 528590, + [SMALL_STATE(5625)] = 528646, + [SMALL_STATE(5626)] = 528718, + [SMALL_STATE(5627)] = 528788, + [SMALL_STATE(5628)] = 528860, + [SMALL_STATE(5629)] = 528928, + [SMALL_STATE(5630)] = 528996, + [SMALL_STATE(5631)] = 529068, + [SMALL_STATE(5632)] = 529130, + [SMALL_STATE(5633)] = 529202, + [SMALL_STATE(5634)] = 529274, + [SMALL_STATE(5635)] = 529332, + [SMALL_STATE(5636)] = 529384, + [SMALL_STATE(5637)] = 529436, + [SMALL_STATE(5638)] = 529508, + [SMALL_STATE(5639)] = 529580, + [SMALL_STATE(5640)] = 529652, + [SMALL_STATE(5641)] = 529724, + [SMALL_STATE(5642)] = 529796, + [SMALL_STATE(5643)] = 529868, + [SMALL_STATE(5644)] = 529940, + [SMALL_STATE(5645)] = 530012, + [SMALL_STATE(5646)] = 530084, + [SMALL_STATE(5647)] = 530156, + [SMALL_STATE(5648)] = 530228, + [SMALL_STATE(5649)] = 530300, + [SMALL_STATE(5650)] = 530372, + [SMALL_STATE(5651)] = 530444, + [SMALL_STATE(5652)] = 530516, + [SMALL_STATE(5653)] = 530588, + [SMALL_STATE(5654)] = 530660, + [SMALL_STATE(5655)] = 530732, + [SMALL_STATE(5656)] = 530804, + [SMALL_STATE(5657)] = 530876, + [SMALL_STATE(5658)] = 530948, + [SMALL_STATE(5659)] = 530996, + [SMALL_STATE(5660)] = 531068, + [SMALL_STATE(5661)] = 531140, + [SMALL_STATE(5662)] = 531212, + [SMALL_STATE(5663)] = 531284, + [SMALL_STATE(5664)] = 531356, + [SMALL_STATE(5665)] = 531428, + [SMALL_STATE(5666)] = 531500, + [SMALL_STATE(5667)] = 531572, + [SMALL_STATE(5668)] = 531644, + [SMALL_STATE(5669)] = 531716, + [SMALL_STATE(5670)] = 531788, + [SMALL_STATE(5671)] = 531860, + [SMALL_STATE(5672)] = 531932, + [SMALL_STATE(5673)] = 532004, + [SMALL_STATE(5674)] = 532076, + [SMALL_STATE(5675)] = 532148, + [SMALL_STATE(5676)] = 532220, + [SMALL_STATE(5677)] = 532292, + [SMALL_STATE(5678)] = 532340, + [SMALL_STATE(5679)] = 532412, + [SMALL_STATE(5680)] = 532484, + [SMALL_STATE(5681)] = 532556, + [SMALL_STATE(5682)] = 532628, + [SMALL_STATE(5683)] = 532700, + [SMALL_STATE(5684)] = 532772, + [SMALL_STATE(5685)] = 532844, + [SMALL_STATE(5686)] = 532916, + [SMALL_STATE(5687)] = 532988, + [SMALL_STATE(5688)] = 533060, + [SMALL_STATE(5689)] = 533132, + [SMALL_STATE(5690)] = 533204, + [SMALL_STATE(5691)] = 533276, + [SMALL_STATE(5692)] = 533348, + [SMALL_STATE(5693)] = 533420, + [SMALL_STATE(5694)] = 533492, + [SMALL_STATE(5695)] = 533564, + [SMALL_STATE(5696)] = 533636, + [SMALL_STATE(5697)] = 533708, + [SMALL_STATE(5698)] = 533780, + [SMALL_STATE(5699)] = 533830, + [SMALL_STATE(5700)] = 533902, + [SMALL_STATE(5701)] = 533974, + [SMALL_STATE(5702)] = 534046, + [SMALL_STATE(5703)] = 534118, + [SMALL_STATE(5704)] = 534190, + [SMALL_STATE(5705)] = 534262, + [SMALL_STATE(5706)] = 534334, + [SMALL_STATE(5707)] = 534406, + [SMALL_STATE(5708)] = 534478, + [SMALL_STATE(5709)] = 534550, + [SMALL_STATE(5710)] = 534622, + [SMALL_STATE(5711)] = 534694, + [SMALL_STATE(5712)] = 534766, + [SMALL_STATE(5713)] = 534838, + [SMALL_STATE(5714)] = 534910, + [SMALL_STATE(5715)] = 534982, + [SMALL_STATE(5716)] = 535054, + [SMALL_STATE(5717)] = 535126, + [SMALL_STATE(5718)] = 535198, + [SMALL_STATE(5719)] = 535248, + [SMALL_STATE(5720)] = 535320, + [SMALL_STATE(5721)] = 535392, + [SMALL_STATE(5722)] = 535464, + [SMALL_STATE(5723)] = 535536, + [SMALL_STATE(5724)] = 535608, + [SMALL_STATE(5725)] = 535680, + [SMALL_STATE(5726)] = 535752, + [SMALL_STATE(5727)] = 535824, + [SMALL_STATE(5728)] = 535896, + [SMALL_STATE(5729)] = 535968, + [SMALL_STATE(5730)] = 536040, + [SMALL_STATE(5731)] = 536112, + [SMALL_STATE(5732)] = 536184, + [SMALL_STATE(5733)] = 536256, + [SMALL_STATE(5734)] = 536328, + [SMALL_STATE(5735)] = 536376, + [SMALL_STATE(5736)] = 536448, + [SMALL_STATE(5737)] = 536520, + [SMALL_STATE(5738)] = 536592, + [SMALL_STATE(5739)] = 536664, + [SMALL_STATE(5740)] = 536736, + [SMALL_STATE(5741)] = 536808, + [SMALL_STATE(5742)] = 536880, + [SMALL_STATE(5743)] = 536952, + [SMALL_STATE(5744)] = 537024, + [SMALL_STATE(5745)] = 537096, + [SMALL_STATE(5746)] = 537168, + [SMALL_STATE(5747)] = 537240, + [SMALL_STATE(5748)] = 537312, + [SMALL_STATE(5749)] = 537384, + [SMALL_STATE(5750)] = 537476, + [SMALL_STATE(5751)] = 537534, + [SMALL_STATE(5752)] = 537582, + [SMALL_STATE(5753)] = 537630, + [SMALL_STATE(5754)] = 537678, + [SMALL_STATE(5755)] = 537726, + [SMALL_STATE(5756)] = 537774, + [SMALL_STATE(5757)] = 537822, + [SMALL_STATE(5758)] = 537870, + [SMALL_STATE(5759)] = 537918, + [SMALL_STATE(5760)] = 537966, + [SMALL_STATE(5761)] = 538032, + [SMALL_STATE(5762)] = 538080, + [SMALL_STATE(5763)] = 538128, + [SMALL_STATE(5764)] = 538176, + [SMALL_STATE(5765)] = 538224, + [SMALL_STATE(5766)] = 538272, + [SMALL_STATE(5767)] = 538320, + [SMALL_STATE(5768)] = 538368, + [SMALL_STATE(5769)] = 538416, + [SMALL_STATE(5770)] = 538464, + [SMALL_STATE(5771)] = 538512, + [SMALL_STATE(5772)] = 538560, + [SMALL_STATE(5773)] = 538608, + [SMALL_STATE(5774)] = 538656, + [SMALL_STATE(5775)] = 538704, + [SMALL_STATE(5776)] = 538752, + [SMALL_STATE(5777)] = 538800, + [SMALL_STATE(5778)] = 538848, + [SMALL_STATE(5779)] = 538896, + [SMALL_STATE(5780)] = 538944, + [SMALL_STATE(5781)] = 538992, + [SMALL_STATE(5782)] = 539040, + [SMALL_STATE(5783)] = 539088, + [SMALL_STATE(5784)] = 539136, + [SMALL_STATE(5785)] = 539184, + [SMALL_STATE(5786)] = 539232, + [SMALL_STATE(5787)] = 539280, + [SMALL_STATE(5788)] = 539328, + [SMALL_STATE(5789)] = 539376, + [SMALL_STATE(5790)] = 539424, + [SMALL_STATE(5791)] = 539472, + [SMALL_STATE(5792)] = 539520, + [SMALL_STATE(5793)] = 539568, + [SMALL_STATE(5794)] = 539616, + [SMALL_STATE(5795)] = 539664, + [SMALL_STATE(5796)] = 539712, + [SMALL_STATE(5797)] = 539760, + [SMALL_STATE(5798)] = 539808, + [SMALL_STATE(5799)] = 539856, + [SMALL_STATE(5800)] = 539904, + [SMALL_STATE(5801)] = 539952, + [SMALL_STATE(5802)] = 540000, + [SMALL_STATE(5803)] = 540048, + [SMALL_STATE(5804)] = 540096, + [SMALL_STATE(5805)] = 540144, + [SMALL_STATE(5806)] = 540194, + [SMALL_STATE(5807)] = 540242, + [SMALL_STATE(5808)] = 540314, + [SMALL_STATE(5809)] = 540386, + [SMALL_STATE(5810)] = 540478, + [SMALL_STATE(5811)] = 540534, + [SMALL_STATE(5812)] = 540604, + [SMALL_STATE(5813)] = 540676, + [SMALL_STATE(5814)] = 540748, + [SMALL_STATE(5815)] = 540840, + [SMALL_STATE(5816)] = 540912, + [SMALL_STATE(5817)] = 540984, + [SMALL_STATE(5818)] = 541076, + [SMALL_STATE(5819)] = 541148, + [SMALL_STATE(5820)] = 541220, + [SMALL_STATE(5821)] = 541312, + [SMALL_STATE(5822)] = 541384, + [SMALL_STATE(5823)] = 541456, + [SMALL_STATE(5824)] = 541528, + [SMALL_STATE(5825)] = 541600, + [SMALL_STATE(5826)] = 541672, + [SMALL_STATE(5827)] = 541744, + [SMALL_STATE(5828)] = 541816, + [SMALL_STATE(5829)] = 541888, + [SMALL_STATE(5830)] = 541960, + [SMALL_STATE(5831)] = 542032, + [SMALL_STATE(5832)] = 542100, + [SMALL_STATE(5833)] = 542172, + [SMALL_STATE(5834)] = 542244, + [SMALL_STATE(5835)] = 542316, + [SMALL_STATE(5836)] = 542388, + [SMALL_STATE(5837)] = 542460, + [SMALL_STATE(5838)] = 542528, + [SMALL_STATE(5839)] = 542600, + [SMALL_STATE(5840)] = 542672, + [SMALL_STATE(5841)] = 542744, + [SMALL_STATE(5842)] = 542816, + [SMALL_STATE(5843)] = 542888, + [SMALL_STATE(5844)] = 542950, + [SMALL_STATE(5845)] = 543000, + [SMALL_STATE(5846)] = 543058, + [SMALL_STATE(5847)] = 543110, + [SMALL_STATE(5848)] = 543182, + [SMALL_STATE(5849)] = 543254, + [SMALL_STATE(5850)] = 543326, + [SMALL_STATE(5851)] = 543378, + [SMALL_STATE(5852)] = 543450, + [SMALL_STATE(5853)] = 543500, + [SMALL_STATE(5854)] = 543572, + [SMALL_STATE(5855)] = 543661, + [SMALL_STATE(5856)] = 543708, + [SMALL_STATE(5857)] = 543755, + [SMALL_STATE(5858)] = 543802, + [SMALL_STATE(5859)] = 543849, + [SMALL_STATE(5860)] = 543898, + [SMALL_STATE(5861)] = 543945, + [SMALL_STATE(5862)] = 543992, + [SMALL_STATE(5863)] = 544039, + [SMALL_STATE(5864)] = 544086, + [SMALL_STATE(5865)] = 544133, + [SMALL_STATE(5866)] = 544180, + [SMALL_STATE(5867)] = 544227, + [SMALL_STATE(5868)] = 544274, + [SMALL_STATE(5869)] = 544321, + [SMALL_STATE(5870)] = 544368, + [SMALL_STATE(5871)] = 544415, + [SMALL_STATE(5872)] = 544462, + [SMALL_STATE(5873)] = 544509, + [SMALL_STATE(5874)] = 544556, + [SMALL_STATE(5875)] = 544603, + [SMALL_STATE(5876)] = 544650, + [SMALL_STATE(5877)] = 544697, + [SMALL_STATE(5878)] = 544744, + [SMALL_STATE(5879)] = 544791, + [SMALL_STATE(5880)] = 544838, + [SMALL_STATE(5881)] = 544885, + [SMALL_STATE(5882)] = 544932, + [SMALL_STATE(5883)] = 545021, + [SMALL_STATE(5884)] = 545110, + [SMALL_STATE(5885)] = 545157, + [SMALL_STATE(5886)] = 545246, + [SMALL_STATE(5887)] = 545335, + [SMALL_STATE(5888)] = 545382, + [SMALL_STATE(5889)] = 545471, + [SMALL_STATE(5890)] = 545518, + [SMALL_STATE(5891)] = 545565, + [SMALL_STATE(5892)] = 545654, + [SMALL_STATE(5893)] = 545701, + [SMALL_STATE(5894)] = 545748, + [SMALL_STATE(5895)] = 545795, + [SMALL_STATE(5896)] = 545842, + [SMALL_STATE(5897)] = 545889, + [SMALL_STATE(5898)] = 545936, + [SMALL_STATE(5899)] = 545983, + [SMALL_STATE(5900)] = 546030, + [SMALL_STATE(5901)] = 546077, + [SMALL_STATE(5902)] = 546124, + [SMALL_STATE(5903)] = 546171, + [SMALL_STATE(5904)] = 546218, + [SMALL_STATE(5905)] = 546265, + [SMALL_STATE(5906)] = 546354, + [SMALL_STATE(5907)] = 546401, + [SMALL_STATE(5908)] = 546490, + [SMALL_STATE(5909)] = 546579, + [SMALL_STATE(5910)] = 546668, + [SMALL_STATE(5911)] = 546715, + [SMALL_STATE(5912)] = 546804, + [SMALL_STATE(5913)] = 546851, + [SMALL_STATE(5914)] = 546898, + [SMALL_STATE(5915)] = 546945, + [SMALL_STATE(5916)] = 546992, + [SMALL_STATE(5917)] = 547039, + [SMALL_STATE(5918)] = 547086, + [SMALL_STATE(5919)] = 547133, + [SMALL_STATE(5920)] = 547180, + [SMALL_STATE(5921)] = 547227, + [SMALL_STATE(5922)] = 547274, + [SMALL_STATE(5923)] = 547321, + [SMALL_STATE(5924)] = 547368, + [SMALL_STATE(5925)] = 547457, + [SMALL_STATE(5926)] = 547504, + [SMALL_STATE(5927)] = 547593, + [SMALL_STATE(5928)] = 547682, + [SMALL_STATE(5929)] = 547771, + [SMALL_STATE(5930)] = 547818, + [SMALL_STATE(5931)] = 547907, + [SMALL_STATE(5932)] = 547996, + [SMALL_STATE(5933)] = 548043, + [SMALL_STATE(5934)] = 548132, + [SMALL_STATE(5935)] = 548221, + [SMALL_STATE(5936)] = 548310, + [SMALL_STATE(5937)] = 548357, + [SMALL_STATE(5938)] = 548446, + [SMALL_STATE(5939)] = 548535, + [SMALL_STATE(5940)] = 548582, + [SMALL_STATE(5941)] = 548671, + [SMALL_STATE(5942)] = 548760, + [SMALL_STATE(5943)] = 548849, + [SMALL_STATE(5944)] = 548896, + [SMALL_STATE(5945)] = 548985, + [SMALL_STATE(5946)] = 549032, + [SMALL_STATE(5947)] = 549079, + [SMALL_STATE(5948)] = 549126, + [SMALL_STATE(5949)] = 549173, + [SMALL_STATE(5950)] = 549220, + [SMALL_STATE(5951)] = 549267, + [SMALL_STATE(5952)] = 549314, + [SMALL_STATE(5953)] = 549361, + [SMALL_STATE(5954)] = 549408, + [SMALL_STATE(5955)] = 549457, + [SMALL_STATE(5956)] = 549504, + [SMALL_STATE(5957)] = 549551, + [SMALL_STATE(5958)] = 549598, + [SMALL_STATE(5959)] = 549645, + [SMALL_STATE(5960)] = 549692, + [SMALL_STATE(5961)] = 549739, + [SMALL_STATE(5962)] = 549786, + [SMALL_STATE(5963)] = 549833, + [SMALL_STATE(5964)] = 549880, + [SMALL_STATE(5965)] = 549927, + [SMALL_STATE(5966)] = 549974, + [SMALL_STATE(5967)] = 550021, + [SMALL_STATE(5968)] = 550110, + [SMALL_STATE(5969)] = 550157, + [SMALL_STATE(5970)] = 550204, + [SMALL_STATE(5971)] = 550251, + [SMALL_STATE(5972)] = 550298, + [SMALL_STATE(5973)] = 550387, + [SMALL_STATE(5974)] = 550434, + [SMALL_STATE(5975)] = 550481, + [SMALL_STATE(5976)] = 550570, + [SMALL_STATE(5977)] = 550617, + [SMALL_STATE(5978)] = 550664, + [SMALL_STATE(5979)] = 550711, + [SMALL_STATE(5980)] = 550800, + [SMALL_STATE(5981)] = 550847, + [SMALL_STATE(5982)] = 550894, + [SMALL_STATE(5983)] = 550941, + [SMALL_STATE(5984)] = 550988, + [SMALL_STATE(5985)] = 551035, + [SMALL_STATE(5986)] = 551082, + [SMALL_STATE(5987)] = 551129, + [SMALL_STATE(5988)] = 551176, + [SMALL_STATE(5989)] = 551223, + [SMALL_STATE(5990)] = 551270, + [SMALL_STATE(5991)] = 551317, + [SMALL_STATE(5992)] = 551364, + [SMALL_STATE(5993)] = 551453, + [SMALL_STATE(5994)] = 551500, + [SMALL_STATE(5995)] = 551547, + [SMALL_STATE(5996)] = 551594, + [SMALL_STATE(5997)] = 551641, + [SMALL_STATE(5998)] = 551688, + [SMALL_STATE(5999)] = 551735, + [SMALL_STATE(6000)] = 551782, + [SMALL_STATE(6001)] = 551829, + [SMALL_STATE(6002)] = 551876, + [SMALL_STATE(6003)] = 551923, + [SMALL_STATE(6004)] = 551970, + [SMALL_STATE(6005)] = 552017, + [SMALL_STATE(6006)] = 552064, + [SMALL_STATE(6007)] = 552111, + [SMALL_STATE(6008)] = 552158, + [SMALL_STATE(6009)] = 552205, + [SMALL_STATE(6010)] = 552252, + [SMALL_STATE(6011)] = 552299, + [SMALL_STATE(6012)] = 552346, + [SMALL_STATE(6013)] = 552395, + [SMALL_STATE(6014)] = 552442, + [SMALL_STATE(6015)] = 552489, + [SMALL_STATE(6016)] = 552536, + [SMALL_STATE(6017)] = 552583, + [SMALL_STATE(6018)] = 552630, + [SMALL_STATE(6019)] = 552677, + [SMALL_STATE(6020)] = 552724, + [SMALL_STATE(6021)] = 552771, + [SMALL_STATE(6022)] = 552818, + [SMALL_STATE(6023)] = 552865, + [SMALL_STATE(6024)] = 552912, + [SMALL_STATE(6025)] = 552959, + [SMALL_STATE(6026)] = 553006, + [SMALL_STATE(6027)] = 553053, + [SMALL_STATE(6028)] = 553100, + [SMALL_STATE(6029)] = 553147, + [SMALL_STATE(6030)] = 553194, + [SMALL_STATE(6031)] = 553241, + [SMALL_STATE(6032)] = 553288, + [SMALL_STATE(6033)] = 553335, + [SMALL_STATE(6034)] = 553382, + [SMALL_STATE(6035)] = 553429, + [SMALL_STATE(6036)] = 553476, + [SMALL_STATE(6037)] = 553523, + [SMALL_STATE(6038)] = 553570, + [SMALL_STATE(6039)] = 553617, + [SMALL_STATE(6040)] = 553664, + [SMALL_STATE(6041)] = 553711, + [SMALL_STATE(6042)] = 553758, + [SMALL_STATE(6043)] = 553805, + [SMALL_STATE(6044)] = 553852, + [SMALL_STATE(6045)] = 553899, + [SMALL_STATE(6046)] = 553946, + [SMALL_STATE(6047)] = 553993, + [SMALL_STATE(6048)] = 554040, + [SMALL_STATE(6049)] = 554087, + [SMALL_STATE(6050)] = 554134, + [SMALL_STATE(6051)] = 554181, + [SMALL_STATE(6052)] = 554228, + [SMALL_STATE(6053)] = 554275, + [SMALL_STATE(6054)] = 554322, + [SMALL_STATE(6055)] = 554369, + [SMALL_STATE(6056)] = 554416, + [SMALL_STATE(6057)] = 554463, + [SMALL_STATE(6058)] = 554510, + [SMALL_STATE(6059)] = 554557, + [SMALL_STATE(6060)] = 554604, + [SMALL_STATE(6061)] = 554651, + [SMALL_STATE(6062)] = 554698, + [SMALL_STATE(6063)] = 554745, + [SMALL_STATE(6064)] = 554792, + [SMALL_STATE(6065)] = 554839, + [SMALL_STATE(6066)] = 554886, + [SMALL_STATE(6067)] = 554933, + [SMALL_STATE(6068)] = 554980, + [SMALL_STATE(6069)] = 555027, + [SMALL_STATE(6070)] = 555074, + [SMALL_STATE(6071)] = 555121, + [SMALL_STATE(6072)] = 555168, + [SMALL_STATE(6073)] = 555215, + [SMALL_STATE(6074)] = 555262, + [SMALL_STATE(6075)] = 555309, + [SMALL_STATE(6076)] = 555358, + [SMALL_STATE(6077)] = 555407, + [SMALL_STATE(6078)] = 555454, + [SMALL_STATE(6079)] = 555501, + [SMALL_STATE(6080)] = 555550, + [SMALL_STATE(6081)] = 555597, + [SMALL_STATE(6082)] = 555644, + [SMALL_STATE(6083)] = 555693, + [SMALL_STATE(6084)] = 555740, + [SMALL_STATE(6085)] = 555787, + [SMALL_STATE(6086)] = 555876, + [SMALL_STATE(6087)] = 555923, + [SMALL_STATE(6088)] = 555970, + [SMALL_STATE(6089)] = 556059, + [SMALL_STATE(6090)] = 556106, + [SMALL_STATE(6091)] = 556155, + [SMALL_STATE(6092)] = 556202, + [SMALL_STATE(6093)] = 556249, + [SMALL_STATE(6094)] = 556296, + [SMALL_STATE(6095)] = 556343, + [SMALL_STATE(6096)] = 556390, + [SMALL_STATE(6097)] = 556437, + [SMALL_STATE(6098)] = 556484, + [SMALL_STATE(6099)] = 556531, + [SMALL_STATE(6100)] = 556578, + [SMALL_STATE(6101)] = 556625, + [SMALL_STATE(6102)] = 556672, + [SMALL_STATE(6103)] = 556719, + [SMALL_STATE(6104)] = 556766, + [SMALL_STATE(6105)] = 556813, + [SMALL_STATE(6106)] = 556860, + [SMALL_STATE(6107)] = 556907, + [SMALL_STATE(6108)] = 556954, + [SMALL_STATE(6109)] = 557001, + [SMALL_STATE(6110)] = 557048, + [SMALL_STATE(6111)] = 557095, + [SMALL_STATE(6112)] = 557142, + [SMALL_STATE(6113)] = 557189, + [SMALL_STATE(6114)] = 557236, + [SMALL_STATE(6115)] = 557283, + [SMALL_STATE(6116)] = 557330, + [SMALL_STATE(6117)] = 557377, + [SMALL_STATE(6118)] = 557424, + [SMALL_STATE(6119)] = 557471, + [SMALL_STATE(6120)] = 557518, + [SMALL_STATE(6121)] = 557565, + [SMALL_STATE(6122)] = 557612, + [SMALL_STATE(6123)] = 557659, + [SMALL_STATE(6124)] = 557706, + [SMALL_STATE(6125)] = 557753, + [SMALL_STATE(6126)] = 557800, + [SMALL_STATE(6127)] = 557847, + [SMALL_STATE(6128)] = 557894, + [SMALL_STATE(6129)] = 557941, + [SMALL_STATE(6130)] = 557988, + [SMALL_STATE(6131)] = 558035, + [SMALL_STATE(6132)] = 558082, + [SMALL_STATE(6133)] = 558129, + [SMALL_STATE(6134)] = 558176, + [SMALL_STATE(6135)] = 558223, + [SMALL_STATE(6136)] = 558270, + [SMALL_STATE(6137)] = 558317, + [SMALL_STATE(6138)] = 558364, + [SMALL_STATE(6139)] = 558411, + [SMALL_STATE(6140)] = 558458, + [SMALL_STATE(6141)] = 558505, + [SMALL_STATE(6142)] = 558552, + [SMALL_STATE(6143)] = 558599, + [SMALL_STATE(6144)] = 558646, + [SMALL_STATE(6145)] = 558693, + [SMALL_STATE(6146)] = 558740, + [SMALL_STATE(6147)] = 558787, + [SMALL_STATE(6148)] = 558834, + [SMALL_STATE(6149)] = 558881, + [SMALL_STATE(6150)] = 558928, + [SMALL_STATE(6151)] = 558975, + [SMALL_STATE(6152)] = 559022, + [SMALL_STATE(6153)] = 559069, + [SMALL_STATE(6154)] = 559116, + [SMALL_STATE(6155)] = 559163, + [SMALL_STATE(6156)] = 559210, + [SMALL_STATE(6157)] = 559257, + [SMALL_STATE(6158)] = 559304, + [SMALL_STATE(6159)] = 559351, + [SMALL_STATE(6160)] = 559398, + [SMALL_STATE(6161)] = 559445, + [SMALL_STATE(6162)] = 559492, + [SMALL_STATE(6163)] = 559539, + [SMALL_STATE(6164)] = 559588, + [SMALL_STATE(6165)] = 559635, + [SMALL_STATE(6166)] = 559682, + [SMALL_STATE(6167)] = 559729, + [SMALL_STATE(6168)] = 559776, + [SMALL_STATE(6169)] = 559823, + [SMALL_STATE(6170)] = 559872, + [SMALL_STATE(6171)] = 559919, + [SMALL_STATE(6172)] = 559966, + [SMALL_STATE(6173)] = 560013, + [SMALL_STATE(6174)] = 560060, + [SMALL_STATE(6175)] = 560107, + [SMALL_STATE(6176)] = 560154, + [SMALL_STATE(6177)] = 560201, + [SMALL_STATE(6178)] = 560248, + [SMALL_STATE(6179)] = 560295, + [SMALL_STATE(6180)] = 560342, + [SMALL_STATE(6181)] = 560389, + [SMALL_STATE(6182)] = 560436, + [SMALL_STATE(6183)] = 560483, + [SMALL_STATE(6184)] = 560530, + [SMALL_STATE(6185)] = 560577, + [SMALL_STATE(6186)] = 560626, + [SMALL_STATE(6187)] = 560673, + [SMALL_STATE(6188)] = 560720, + [SMALL_STATE(6189)] = 560767, + [SMALL_STATE(6190)] = 560814, + [SMALL_STATE(6191)] = 560861, + [SMALL_STATE(6192)] = 560908, + [SMALL_STATE(6193)] = 560955, + [SMALL_STATE(6194)] = 561002, + [SMALL_STATE(6195)] = 561049, + [SMALL_STATE(6196)] = 561096, + [SMALL_STATE(6197)] = 561143, + [SMALL_STATE(6198)] = 561190, + [SMALL_STATE(6199)] = 561237, + [SMALL_STATE(6200)] = 561284, + [SMALL_STATE(6201)] = 561331, + [SMALL_STATE(6202)] = 561378, + [SMALL_STATE(6203)] = 561425, + [SMALL_STATE(6204)] = 561472, + [SMALL_STATE(6205)] = 561519, + [SMALL_STATE(6206)] = 561566, + [SMALL_STATE(6207)] = 561613, + [SMALL_STATE(6208)] = 561660, + [SMALL_STATE(6209)] = 561707, + [SMALL_STATE(6210)] = 561754, + [SMALL_STATE(6211)] = 561801, + [SMALL_STATE(6212)] = 561848, + [SMALL_STATE(6213)] = 561895, + [SMALL_STATE(6214)] = 561942, + [SMALL_STATE(6215)] = 561989, + [SMALL_STATE(6216)] = 562036, + [SMALL_STATE(6217)] = 562083, + [SMALL_STATE(6218)] = 562130, + [SMALL_STATE(6219)] = 562177, + [SMALL_STATE(6220)] = 562224, + [SMALL_STATE(6221)] = 562271, + [SMALL_STATE(6222)] = 562318, + [SMALL_STATE(6223)] = 562365, + [SMALL_STATE(6224)] = 562412, + [SMALL_STATE(6225)] = 562459, + [SMALL_STATE(6226)] = 562506, + [SMALL_STATE(6227)] = 562553, + [SMALL_STATE(6228)] = 562600, + [SMALL_STATE(6229)] = 562647, + [SMALL_STATE(6230)] = 562694, + [SMALL_STATE(6231)] = 562741, + [SMALL_STATE(6232)] = 562788, + [SMALL_STATE(6233)] = 562835, + [SMALL_STATE(6234)] = 562882, + [SMALL_STATE(6235)] = 562929, + [SMALL_STATE(6236)] = 562976, + [SMALL_STATE(6237)] = 563023, + [SMALL_STATE(6238)] = 563070, + [SMALL_STATE(6239)] = 563117, + [SMALL_STATE(6240)] = 563164, + [SMALL_STATE(6241)] = 563211, + [SMALL_STATE(6242)] = 563258, + [SMALL_STATE(6243)] = 563305, + [SMALL_STATE(6244)] = 563352, + [SMALL_STATE(6245)] = 563399, + [SMALL_STATE(6246)] = 563446, + [SMALL_STATE(6247)] = 563493, + [SMALL_STATE(6248)] = 563540, + [SMALL_STATE(6249)] = 563587, + [SMALL_STATE(6250)] = 563634, + [SMALL_STATE(6251)] = 563683, + [SMALL_STATE(6252)] = 563730, + [SMALL_STATE(6253)] = 563777, + [SMALL_STATE(6254)] = 563824, + [SMALL_STATE(6255)] = 563871, + [SMALL_STATE(6256)] = 563918, + [SMALL_STATE(6257)] = 563965, + [SMALL_STATE(6258)] = 564012, + [SMALL_STATE(6259)] = 564061, + [SMALL_STATE(6260)] = 564108, + [SMALL_STATE(6261)] = 564155, + [SMALL_STATE(6262)] = 564202, + [SMALL_STATE(6263)] = 564249, + [SMALL_STATE(6264)] = 564296, + [SMALL_STATE(6265)] = 564343, + [SMALL_STATE(6266)] = 564390, + [SMALL_STATE(6267)] = 564437, + [SMALL_STATE(6268)] = 564484, + [SMALL_STATE(6269)] = 564531, + [SMALL_STATE(6270)] = 564578, + [SMALL_STATE(6271)] = 564625, + [SMALL_STATE(6272)] = 564672, + [SMALL_STATE(6273)] = 564719, + [SMALL_STATE(6274)] = 564766, + [SMALL_STATE(6275)] = 564813, + [SMALL_STATE(6276)] = 564860, + [SMALL_STATE(6277)] = 564907, + [SMALL_STATE(6278)] = 564954, + [SMALL_STATE(6279)] = 565001, + [SMALL_STATE(6280)] = 565048, + [SMALL_STATE(6281)] = 565095, + [SMALL_STATE(6282)] = 565142, + [SMALL_STATE(6283)] = 565189, + [SMALL_STATE(6284)] = 565236, + [SMALL_STATE(6285)] = 565283, + [SMALL_STATE(6286)] = 565330, + [SMALL_STATE(6287)] = 565377, + [SMALL_STATE(6288)] = 565424, + [SMALL_STATE(6289)] = 565471, + [SMALL_STATE(6290)] = 565518, + [SMALL_STATE(6291)] = 565565, + [SMALL_STATE(6292)] = 565612, + [SMALL_STATE(6293)] = 565659, + [SMALL_STATE(6294)] = 565706, + [SMALL_STATE(6295)] = 565753, + [SMALL_STATE(6296)] = 565800, + [SMALL_STATE(6297)] = 565847, + [SMALL_STATE(6298)] = 565894, + [SMALL_STATE(6299)] = 565941, + [SMALL_STATE(6300)] = 565988, + [SMALL_STATE(6301)] = 566035, + [SMALL_STATE(6302)] = 566082, + [SMALL_STATE(6303)] = 566129, + [SMALL_STATE(6304)] = 566176, + [SMALL_STATE(6305)] = 566223, + [SMALL_STATE(6306)] = 566270, + [SMALL_STATE(6307)] = 566317, + [SMALL_STATE(6308)] = 566364, + [SMALL_STATE(6309)] = 566411, + [SMALL_STATE(6310)] = 566458, + [SMALL_STATE(6311)] = 566505, + [SMALL_STATE(6312)] = 566552, + [SMALL_STATE(6313)] = 566599, + [SMALL_STATE(6314)] = 566646, + [SMALL_STATE(6315)] = 566693, + [SMALL_STATE(6316)] = 566740, + [SMALL_STATE(6317)] = 566787, + [SMALL_STATE(6318)] = 566834, + [SMALL_STATE(6319)] = 566881, + [SMALL_STATE(6320)] = 566928, + [SMALL_STATE(6321)] = 566975, + [SMALL_STATE(6322)] = 567022, + [SMALL_STATE(6323)] = 567069, + [SMALL_STATE(6324)] = 567116, + [SMALL_STATE(6325)] = 567163, + [SMALL_STATE(6326)] = 567210, + [SMALL_STATE(6327)] = 567257, + [SMALL_STATE(6328)] = 567304, + [SMALL_STATE(6329)] = 567351, + [SMALL_STATE(6330)] = 567398, + [SMALL_STATE(6331)] = 567445, + [SMALL_STATE(6332)] = 567492, + [SMALL_STATE(6333)] = 567539, + [SMALL_STATE(6334)] = 567586, + [SMALL_STATE(6335)] = 567633, + [SMALL_STATE(6336)] = 567680, + [SMALL_STATE(6337)] = 567727, + [SMALL_STATE(6338)] = 567774, + [SMALL_STATE(6339)] = 567821, + [SMALL_STATE(6340)] = 567868, + [SMALL_STATE(6341)] = 567915, + [SMALL_STATE(6342)] = 567962, + [SMALL_STATE(6343)] = 568009, + [SMALL_STATE(6344)] = 568056, + [SMALL_STATE(6345)] = 568103, + [SMALL_STATE(6346)] = 568150, + [SMALL_STATE(6347)] = 568197, + [SMALL_STATE(6348)] = 568244, + [SMALL_STATE(6349)] = 568291, + [SMALL_STATE(6350)] = 568338, + [SMALL_STATE(6351)] = 568385, + [SMALL_STATE(6352)] = 568432, + [SMALL_STATE(6353)] = 568479, + [SMALL_STATE(6354)] = 568526, + [SMALL_STATE(6355)] = 568573, + [SMALL_STATE(6356)] = 568620, + [SMALL_STATE(6357)] = 568667, + [SMALL_STATE(6358)] = 568714, + [SMALL_STATE(6359)] = 568761, + [SMALL_STATE(6360)] = 568808, + [SMALL_STATE(6361)] = 568855, + [SMALL_STATE(6362)] = 568902, + [SMALL_STATE(6363)] = 568949, + [SMALL_STATE(6364)] = 568996, + [SMALL_STATE(6365)] = 569043, + [SMALL_STATE(6366)] = 569090, + [SMALL_STATE(6367)] = 569137, + [SMALL_STATE(6368)] = 569184, + [SMALL_STATE(6369)] = 569231, + [SMALL_STATE(6370)] = 569278, + [SMALL_STATE(6371)] = 569325, + [SMALL_STATE(6372)] = 569372, + [SMALL_STATE(6373)] = 569419, + [SMALL_STATE(6374)] = 569466, + [SMALL_STATE(6375)] = 569513, + [SMALL_STATE(6376)] = 569560, + [SMALL_STATE(6377)] = 569607, + [SMALL_STATE(6378)] = 569654, + [SMALL_STATE(6379)] = 569701, + [SMALL_STATE(6380)] = 569748, + [SMALL_STATE(6381)] = 569795, + [SMALL_STATE(6382)] = 569842, + [SMALL_STATE(6383)] = 569889, + [SMALL_STATE(6384)] = 569936, + [SMALL_STATE(6385)] = 569983, + [SMALL_STATE(6386)] = 570030, + [SMALL_STATE(6387)] = 570077, + [SMALL_STATE(6388)] = 570124, + [SMALL_STATE(6389)] = 570171, + [SMALL_STATE(6390)] = 570218, + [SMALL_STATE(6391)] = 570265, + [SMALL_STATE(6392)] = 570312, + [SMALL_STATE(6393)] = 570359, + [SMALL_STATE(6394)] = 570406, + [SMALL_STATE(6395)] = 570453, + [SMALL_STATE(6396)] = 570500, + [SMALL_STATE(6397)] = 570547, + [SMALL_STATE(6398)] = 570594, + [SMALL_STATE(6399)] = 570641, + [SMALL_STATE(6400)] = 570688, + [SMALL_STATE(6401)] = 570735, + [SMALL_STATE(6402)] = 570782, + [SMALL_STATE(6403)] = 570829, + [SMALL_STATE(6404)] = 570876, + [SMALL_STATE(6405)] = 570923, + [SMALL_STATE(6406)] = 570970, + [SMALL_STATE(6407)] = 571017, + [SMALL_STATE(6408)] = 571064, + [SMALL_STATE(6409)] = 571111, + [SMALL_STATE(6410)] = 571158, + [SMALL_STATE(6411)] = 571205, + [SMALL_STATE(6412)] = 571252, + [SMALL_STATE(6413)] = 571299, + [SMALL_STATE(6414)] = 571346, + [SMALL_STATE(6415)] = 571393, + [SMALL_STATE(6416)] = 571440, + [SMALL_STATE(6417)] = 571487, + [SMALL_STATE(6418)] = 571534, + [SMALL_STATE(6419)] = 571581, + [SMALL_STATE(6420)] = 571628, + [SMALL_STATE(6421)] = 571675, + [SMALL_STATE(6422)] = 571722, + [SMALL_STATE(6423)] = 571769, + [SMALL_STATE(6424)] = 571816, + [SMALL_STATE(6425)] = 571863, + [SMALL_STATE(6426)] = 571910, + [SMALL_STATE(6427)] = 571957, + [SMALL_STATE(6428)] = 572004, + [SMALL_STATE(6429)] = 572051, + [SMALL_STATE(6430)] = 572098, + [SMALL_STATE(6431)] = 572145, + [SMALL_STATE(6432)] = 572192, + [SMALL_STATE(6433)] = 572239, + [SMALL_STATE(6434)] = 572286, + [SMALL_STATE(6435)] = 572333, + [SMALL_STATE(6436)] = 572380, + [SMALL_STATE(6437)] = 572427, + [SMALL_STATE(6438)] = 572474, + [SMALL_STATE(6439)] = 572521, + [SMALL_STATE(6440)] = 572568, + [SMALL_STATE(6441)] = 572615, + [SMALL_STATE(6442)] = 572662, + [SMALL_STATE(6443)] = 572709, + [SMALL_STATE(6444)] = 572756, + [SMALL_STATE(6445)] = 572803, + [SMALL_STATE(6446)] = 572850, + [SMALL_STATE(6447)] = 572897, + [SMALL_STATE(6448)] = 572944, + [SMALL_STATE(6449)] = 572991, + [SMALL_STATE(6450)] = 573038, + [SMALL_STATE(6451)] = 573085, + [SMALL_STATE(6452)] = 573132, + [SMALL_STATE(6453)] = 573179, + [SMALL_STATE(6454)] = 573226, + [SMALL_STATE(6455)] = 573273, + [SMALL_STATE(6456)] = 573320, + [SMALL_STATE(6457)] = 573367, + [SMALL_STATE(6458)] = 573414, + [SMALL_STATE(6459)] = 573461, + [SMALL_STATE(6460)] = 573508, + [SMALL_STATE(6461)] = 573555, + [SMALL_STATE(6462)] = 573602, + [SMALL_STATE(6463)] = 573649, + [SMALL_STATE(6464)] = 573696, + [SMALL_STATE(6465)] = 573743, + [SMALL_STATE(6466)] = 573790, + [SMALL_STATE(6467)] = 573837, + [SMALL_STATE(6468)] = 573884, + [SMALL_STATE(6469)] = 573931, + [SMALL_STATE(6470)] = 573978, + [SMALL_STATE(6471)] = 574025, + [SMALL_STATE(6472)] = 574072, + [SMALL_STATE(6473)] = 574119, + [SMALL_STATE(6474)] = 574166, + [SMALL_STATE(6475)] = 574213, + [SMALL_STATE(6476)] = 574260, + [SMALL_STATE(6477)] = 574307, + [SMALL_STATE(6478)] = 574354, + [SMALL_STATE(6479)] = 574401, + [SMALL_STATE(6480)] = 574448, + [SMALL_STATE(6481)] = 574495, + [SMALL_STATE(6482)] = 574542, + [SMALL_STATE(6483)] = 574589, + [SMALL_STATE(6484)] = 574636, + [SMALL_STATE(6485)] = 574683, + [SMALL_STATE(6486)] = 574730, + [SMALL_STATE(6487)] = 574777, + [SMALL_STATE(6488)] = 574824, + [SMALL_STATE(6489)] = 574871, + [SMALL_STATE(6490)] = 574960, + [SMALL_STATE(6491)] = 575007, + [SMALL_STATE(6492)] = 575054, + [SMALL_STATE(6493)] = 575101, + [SMALL_STATE(6494)] = 575148, + [SMALL_STATE(6495)] = 575195, + [SMALL_STATE(6496)] = 575284, + [SMALL_STATE(6497)] = 575331, + [SMALL_STATE(6498)] = 575378, + [SMALL_STATE(6499)] = 575425, + [SMALL_STATE(6500)] = 575514, + [SMALL_STATE(6501)] = 575561, + [SMALL_STATE(6502)] = 575608, + [SMALL_STATE(6503)] = 575655, + [SMALL_STATE(6504)] = 575744, + [SMALL_STATE(6505)] = 575791, + [SMALL_STATE(6506)] = 575838, + [SMALL_STATE(6507)] = 575885, + [SMALL_STATE(6508)] = 575932, + [SMALL_STATE(6509)] = 575979, + [SMALL_STATE(6510)] = 576026, + [SMALL_STATE(6511)] = 576073, + [SMALL_STATE(6512)] = 576120, + [SMALL_STATE(6513)] = 576167, + [SMALL_STATE(6514)] = 576216, + [SMALL_STATE(6515)] = 576263, + [SMALL_STATE(6516)] = 576310, + [SMALL_STATE(6517)] = 576357, + [SMALL_STATE(6518)] = 576404, + [SMALL_STATE(6519)] = 576451, + [SMALL_STATE(6520)] = 576498, + [SMALL_STATE(6521)] = 576545, + [SMALL_STATE(6522)] = 576592, + [SMALL_STATE(6523)] = 576639, + [SMALL_STATE(6524)] = 576686, + [SMALL_STATE(6525)] = 576733, + [SMALL_STATE(6526)] = 576780, + [SMALL_STATE(6527)] = 576827, + [SMALL_STATE(6528)] = 576874, + [SMALL_STATE(6529)] = 576921, + [SMALL_STATE(6530)] = 576968, + [SMALL_STATE(6531)] = 577015, + [SMALL_STATE(6532)] = 577062, + [SMALL_STATE(6533)] = 577109, + [SMALL_STATE(6534)] = 577156, + [SMALL_STATE(6535)] = 577203, + [SMALL_STATE(6536)] = 577250, + [SMALL_STATE(6537)] = 577297, + [SMALL_STATE(6538)] = 577344, + [SMALL_STATE(6539)] = 577391, + [SMALL_STATE(6540)] = 577438, + [SMALL_STATE(6541)] = 577485, + [SMALL_STATE(6542)] = 577532, + [SMALL_STATE(6543)] = 577579, + [SMALL_STATE(6544)] = 577668, + [SMALL_STATE(6545)] = 577757, + [SMALL_STATE(6546)] = 577806, + [SMALL_STATE(6547)] = 577895, + [SMALL_STATE(6548)] = 577984, + [SMALL_STATE(6549)] = 578073, + [SMALL_STATE(6550)] = 578120, + [SMALL_STATE(6551)] = 578166, + [SMALL_STATE(6552)] = 578212, + [SMALL_STATE(6553)] = 578258, + [SMALL_STATE(6554)] = 578304, + [SMALL_STATE(6555)] = 578350, + [SMALL_STATE(6556)] = 578396, + [SMALL_STATE(6557)] = 578442, + [SMALL_STATE(6558)] = 578488, + [SMALL_STATE(6559)] = 578534, + [SMALL_STATE(6560)] = 578580, + [SMALL_STATE(6561)] = 578626, + [SMALL_STATE(6562)] = 578672, + [SMALL_STATE(6563)] = 578718, + [SMALL_STATE(6564)] = 578764, + [SMALL_STATE(6565)] = 578810, + [SMALL_STATE(6566)] = 578856, + [SMALL_STATE(6567)] = 578902, + [SMALL_STATE(6568)] = 578948, + [SMALL_STATE(6569)] = 578994, + [SMALL_STATE(6570)] = 579040, + [SMALL_STATE(6571)] = 579086, + [SMALL_STATE(6572)] = 579132, + [SMALL_STATE(6573)] = 579178, + [SMALL_STATE(6574)] = 579224, + [SMALL_STATE(6575)] = 579270, + [SMALL_STATE(6576)] = 579316, + [SMALL_STATE(6577)] = 579362, + [SMALL_STATE(6578)] = 579408, + [SMALL_STATE(6579)] = 579454, + [SMALL_STATE(6580)] = 579500, + [SMALL_STATE(6581)] = 579546, + [SMALL_STATE(6582)] = 579592, + [SMALL_STATE(6583)] = 579638, + [SMALL_STATE(6584)] = 579684, + [SMALL_STATE(6585)] = 579730, + [SMALL_STATE(6586)] = 579776, + [SMALL_STATE(6587)] = 579822, + [SMALL_STATE(6588)] = 579868, + [SMALL_STATE(6589)] = 579914, + [SMALL_STATE(6590)] = 579960, + [SMALL_STATE(6591)] = 580006, + [SMALL_STATE(6592)] = 580052, + [SMALL_STATE(6593)] = 580098, + [SMALL_STATE(6594)] = 580144, + [SMALL_STATE(6595)] = 580190, + [SMALL_STATE(6596)] = 580236, + [SMALL_STATE(6597)] = 580282, + [SMALL_STATE(6598)] = 580328, + [SMALL_STATE(6599)] = 580374, + [SMALL_STATE(6600)] = 580420, + [SMALL_STATE(6601)] = 580466, + [SMALL_STATE(6602)] = 580514, + [SMALL_STATE(6603)] = 580560, + [SMALL_STATE(6604)] = 580608, + [SMALL_STATE(6605)] = 580654, + [SMALL_STATE(6606)] = 580702, + [SMALL_STATE(6607)] = 580748, + [SMALL_STATE(6608)] = 580794, + [SMALL_STATE(6609)] = 580840, + [SMALL_STATE(6610)] = 580886, + [SMALL_STATE(6611)] = 580932, + [SMALL_STATE(6612)] = 580978, + [SMALL_STATE(6613)] = 581024, + [SMALL_STATE(6614)] = 581070, + [SMALL_STATE(6615)] = 581116, + [SMALL_STATE(6616)] = 581162, + [SMALL_STATE(6617)] = 581208, + [SMALL_STATE(6618)] = 581254, + [SMALL_STATE(6619)] = 581300, + [SMALL_STATE(6620)] = 581346, + [SMALL_STATE(6621)] = 581392, + [SMALL_STATE(6622)] = 581438, + [SMALL_STATE(6623)] = 581484, + [SMALL_STATE(6624)] = 581530, + [SMALL_STATE(6625)] = 581576, + [SMALL_STATE(6626)] = 581622, + [SMALL_STATE(6627)] = 581668, + [SMALL_STATE(6628)] = 581714, + [SMALL_STATE(6629)] = 581760, + [SMALL_STATE(6630)] = 581806, + [SMALL_STATE(6631)] = 581852, + [SMALL_STATE(6632)] = 581898, + [SMALL_STATE(6633)] = 581944, + [SMALL_STATE(6634)] = 581990, + [SMALL_STATE(6635)] = 582036, + [SMALL_STATE(6636)] = 582082, + [SMALL_STATE(6637)] = 582128, + [SMALL_STATE(6638)] = 582174, + [SMALL_STATE(6639)] = 582220, + [SMALL_STATE(6640)] = 582266, + [SMALL_STATE(6641)] = 582312, + [SMALL_STATE(6642)] = 582358, + [SMALL_STATE(6643)] = 582404, + [SMALL_STATE(6644)] = 582450, + [SMALL_STATE(6645)] = 582496, + [SMALL_STATE(6646)] = 582542, + [SMALL_STATE(6647)] = 582588, + [SMALL_STATE(6648)] = 582634, + [SMALL_STATE(6649)] = 582680, + [SMALL_STATE(6650)] = 582726, + [SMALL_STATE(6651)] = 582772, + [SMALL_STATE(6652)] = 582818, + [SMALL_STATE(6653)] = 582864, + [SMALL_STATE(6654)] = 582910, + [SMALL_STATE(6655)] = 582956, + [SMALL_STATE(6656)] = 583002, + [SMALL_STATE(6657)] = 583048, + [SMALL_STATE(6658)] = 583094, + [SMALL_STATE(6659)] = 583140, + [SMALL_STATE(6660)] = 583186, + [SMALL_STATE(6661)] = 583232, + [SMALL_STATE(6662)] = 583278, + [SMALL_STATE(6663)] = 583324, + [SMALL_STATE(6664)] = 583370, + [SMALL_STATE(6665)] = 583416, + [SMALL_STATE(6666)] = 583462, + [SMALL_STATE(6667)] = 583508, + [SMALL_STATE(6668)] = 583554, + [SMALL_STATE(6669)] = 583600, + [SMALL_STATE(6670)] = 583646, + [SMALL_STATE(6671)] = 583692, + [SMALL_STATE(6672)] = 583738, + [SMALL_STATE(6673)] = 583784, + [SMALL_STATE(6674)] = 583830, + [SMALL_STATE(6675)] = 583876, + [SMALL_STATE(6676)] = 583922, + [SMALL_STATE(6677)] = 583968, + [SMALL_STATE(6678)] = 584014, + [SMALL_STATE(6679)] = 584060, + [SMALL_STATE(6680)] = 584106, + [SMALL_STATE(6681)] = 584152, + [SMALL_STATE(6682)] = 584198, + [SMALL_STATE(6683)] = 584244, + [SMALL_STATE(6684)] = 584290, + [SMALL_STATE(6685)] = 584336, + [SMALL_STATE(6686)] = 584382, + [SMALL_STATE(6687)] = 584428, + [SMALL_STATE(6688)] = 584474, + [SMALL_STATE(6689)] = 584520, + [SMALL_STATE(6690)] = 584566, + [SMALL_STATE(6691)] = 584612, + [SMALL_STATE(6692)] = 584658, + [SMALL_STATE(6693)] = 584704, + [SMALL_STATE(6694)] = 584750, + [SMALL_STATE(6695)] = 584796, + [SMALL_STATE(6696)] = 584842, + [SMALL_STATE(6697)] = 584888, + [SMALL_STATE(6698)] = 584934, + [SMALL_STATE(6699)] = 584980, + [SMALL_STATE(6700)] = 585026, + [SMALL_STATE(6701)] = 585072, + [SMALL_STATE(6702)] = 585118, + [SMALL_STATE(6703)] = 585164, + [SMALL_STATE(6704)] = 585210, + [SMALL_STATE(6705)] = 585256, + [SMALL_STATE(6706)] = 585302, + [SMALL_STATE(6707)] = 585348, + [SMALL_STATE(6708)] = 585394, + [SMALL_STATE(6709)] = 585440, + [SMALL_STATE(6710)] = 585486, + [SMALL_STATE(6711)] = 585532, + [SMALL_STATE(6712)] = 585578, + [SMALL_STATE(6713)] = 585624, + [SMALL_STATE(6714)] = 585670, + [SMALL_STATE(6715)] = 585716, + [SMALL_STATE(6716)] = 585762, + [SMALL_STATE(6717)] = 585808, + [SMALL_STATE(6718)] = 585854, + [SMALL_STATE(6719)] = 585900, + [SMALL_STATE(6720)] = 585946, + [SMALL_STATE(6721)] = 585992, + [SMALL_STATE(6722)] = 586038, + [SMALL_STATE(6723)] = 586084, + [SMALL_STATE(6724)] = 586130, + [SMALL_STATE(6725)] = 586176, + [SMALL_STATE(6726)] = 586222, + [SMALL_STATE(6727)] = 586268, + [SMALL_STATE(6728)] = 586314, + [SMALL_STATE(6729)] = 586360, + [SMALL_STATE(6730)] = 586406, + [SMALL_STATE(6731)] = 586452, + [SMALL_STATE(6732)] = 586498, + [SMALL_STATE(6733)] = 586544, + [SMALL_STATE(6734)] = 586590, + [SMALL_STATE(6735)] = 586636, + [SMALL_STATE(6736)] = 586682, + [SMALL_STATE(6737)] = 586728, + [SMALL_STATE(6738)] = 586774, + [SMALL_STATE(6739)] = 586820, + [SMALL_STATE(6740)] = 586866, + [SMALL_STATE(6741)] = 586912, + [SMALL_STATE(6742)] = 586958, + [SMALL_STATE(6743)] = 587004, + [SMALL_STATE(6744)] = 587050, + [SMALL_STATE(6745)] = 587096, + [SMALL_STATE(6746)] = 587142, + [SMALL_STATE(6747)] = 587188, + [SMALL_STATE(6748)] = 587234, + [SMALL_STATE(6749)] = 587280, + [SMALL_STATE(6750)] = 587326, + [SMALL_STATE(6751)] = 587372, + [SMALL_STATE(6752)] = 587418, + [SMALL_STATE(6753)] = 587464, + [SMALL_STATE(6754)] = 587510, + [SMALL_STATE(6755)] = 587556, + [SMALL_STATE(6756)] = 587602, + [SMALL_STATE(6757)] = 587648, + [SMALL_STATE(6758)] = 587694, + [SMALL_STATE(6759)] = 587740, + [SMALL_STATE(6760)] = 587786, + [SMALL_STATE(6761)] = 587832, + [SMALL_STATE(6762)] = 587878, + [SMALL_STATE(6763)] = 587924, + [SMALL_STATE(6764)] = 587970, + [SMALL_STATE(6765)] = 588016, + [SMALL_STATE(6766)] = 588062, + [SMALL_STATE(6767)] = 588108, + [SMALL_STATE(6768)] = 588154, + [SMALL_STATE(6769)] = 588200, + [SMALL_STATE(6770)] = 588246, + [SMALL_STATE(6771)] = 588292, + [SMALL_STATE(6772)] = 588338, + [SMALL_STATE(6773)] = 588384, + [SMALL_STATE(6774)] = 588430, + [SMALL_STATE(6775)] = 588476, + [SMALL_STATE(6776)] = 588522, + [SMALL_STATE(6777)] = 588568, + [SMALL_STATE(6778)] = 588614, + [SMALL_STATE(6779)] = 588660, + [SMALL_STATE(6780)] = 588706, + [SMALL_STATE(6781)] = 588752, + [SMALL_STATE(6782)] = 588798, + [SMALL_STATE(6783)] = 588844, + [SMALL_STATE(6784)] = 588890, + [SMALL_STATE(6785)] = 588936, + [SMALL_STATE(6786)] = 588982, + [SMALL_STATE(6787)] = 589028, + [SMALL_STATE(6788)] = 589074, + [SMALL_STATE(6789)] = 589120, + [SMALL_STATE(6790)] = 589166, + [SMALL_STATE(6791)] = 589212, + [SMALL_STATE(6792)] = 589258, + [SMALL_STATE(6793)] = 589304, + [SMALL_STATE(6794)] = 589350, + [SMALL_STATE(6795)] = 589396, + [SMALL_STATE(6796)] = 589442, + [SMALL_STATE(6797)] = 589488, + [SMALL_STATE(6798)] = 589534, + [SMALL_STATE(6799)] = 589580, + [SMALL_STATE(6800)] = 589626, + [SMALL_STATE(6801)] = 589672, + [SMALL_STATE(6802)] = 589718, + [SMALL_STATE(6803)] = 589764, + [SMALL_STATE(6804)] = 589810, + [SMALL_STATE(6805)] = 589856, + [SMALL_STATE(6806)] = 589902, + [SMALL_STATE(6807)] = 589948, + [SMALL_STATE(6808)] = 589994, + [SMALL_STATE(6809)] = 590040, + [SMALL_STATE(6810)] = 590086, + [SMALL_STATE(6811)] = 590132, + [SMALL_STATE(6812)] = 590178, + [SMALL_STATE(6813)] = 590224, + [SMALL_STATE(6814)] = 590270, + [SMALL_STATE(6815)] = 590316, + [SMALL_STATE(6816)] = 590362, + [SMALL_STATE(6817)] = 590408, + [SMALL_STATE(6818)] = 590454, + [SMALL_STATE(6819)] = 590500, + [SMALL_STATE(6820)] = 590546, + [SMALL_STATE(6821)] = 590592, + [SMALL_STATE(6822)] = 590638, + [SMALL_STATE(6823)] = 590684, + [SMALL_STATE(6824)] = 590730, + [SMALL_STATE(6825)] = 590776, + [SMALL_STATE(6826)] = 590822, + [SMALL_STATE(6827)] = 590868, + [SMALL_STATE(6828)] = 590914, + [SMALL_STATE(6829)] = 590960, + [SMALL_STATE(6830)] = 591006, + [SMALL_STATE(6831)] = 591052, + [SMALL_STATE(6832)] = 591098, + [SMALL_STATE(6833)] = 591144, + [SMALL_STATE(6834)] = 591190, + [SMALL_STATE(6835)] = 591236, + [SMALL_STATE(6836)] = 591282, + [SMALL_STATE(6837)] = 591328, + [SMALL_STATE(6838)] = 591374, + [SMALL_STATE(6839)] = 591420, + [SMALL_STATE(6840)] = 591466, + [SMALL_STATE(6841)] = 591512, + [SMALL_STATE(6842)] = 591558, + [SMALL_STATE(6843)] = 591604, + [SMALL_STATE(6844)] = 591650, + [SMALL_STATE(6845)] = 591696, + [SMALL_STATE(6846)] = 591742, + [SMALL_STATE(6847)] = 591788, + [SMALL_STATE(6848)] = 591834, + [SMALL_STATE(6849)] = 591880, + [SMALL_STATE(6850)] = 591926, + [SMALL_STATE(6851)] = 591972, + [SMALL_STATE(6852)] = 592018, + [SMALL_STATE(6853)] = 592064, + [SMALL_STATE(6854)] = 592110, + [SMALL_STATE(6855)] = 592156, + [SMALL_STATE(6856)] = 592202, + [SMALL_STATE(6857)] = 592248, + [SMALL_STATE(6858)] = 592294, + [SMALL_STATE(6859)] = 592340, + [SMALL_STATE(6860)] = 592386, + [SMALL_STATE(6861)] = 592432, + [SMALL_STATE(6862)] = 592478, + [SMALL_STATE(6863)] = 592524, + [SMALL_STATE(6864)] = 592570, + [SMALL_STATE(6865)] = 592616, + [SMALL_STATE(6866)] = 592662, + [SMALL_STATE(6867)] = 592708, + [SMALL_STATE(6868)] = 592754, + [SMALL_STATE(6869)] = 592800, + [SMALL_STATE(6870)] = 592846, + [SMALL_STATE(6871)] = 592892, + [SMALL_STATE(6872)] = 592938, + [SMALL_STATE(6873)] = 592984, + [SMALL_STATE(6874)] = 593030, + [SMALL_STATE(6875)] = 593076, + [SMALL_STATE(6876)] = 593122, + [SMALL_STATE(6877)] = 593168, + [SMALL_STATE(6878)] = 593214, + [SMALL_STATE(6879)] = 593260, + [SMALL_STATE(6880)] = 593306, + [SMALL_STATE(6881)] = 593354, + [SMALL_STATE(6882)] = 593400, + [SMALL_STATE(6883)] = 593446, + [SMALL_STATE(6884)] = 593494, + [SMALL_STATE(6885)] = 593540, + [SMALL_STATE(6886)] = 593586, + [SMALL_STATE(6887)] = 593632, + [SMALL_STATE(6888)] = 593678, + [SMALL_STATE(6889)] = 593724, + [SMALL_STATE(6890)] = 593770, + [SMALL_STATE(6891)] = 593816, + [SMALL_STATE(6892)] = 593862, + [SMALL_STATE(6893)] = 593908, + [SMALL_STATE(6894)] = 593954, + [SMALL_STATE(6895)] = 594000, + [SMALL_STATE(6896)] = 594046, + [SMALL_STATE(6897)] = 594092, + [SMALL_STATE(6898)] = 594138, + [SMALL_STATE(6899)] = 594184, + [SMALL_STATE(6900)] = 594230, + [SMALL_STATE(6901)] = 594276, + [SMALL_STATE(6902)] = 594322, + [SMALL_STATE(6903)] = 594368, + [SMALL_STATE(6904)] = 594414, + [SMALL_STATE(6905)] = 594460, + [SMALL_STATE(6906)] = 594506, + [SMALL_STATE(6907)] = 594552, + [SMALL_STATE(6908)] = 594598, + [SMALL_STATE(6909)] = 594644, + [SMALL_STATE(6910)] = 594690, + [SMALL_STATE(6911)] = 594736, + [SMALL_STATE(6912)] = 594782, + [SMALL_STATE(6913)] = 594828, + [SMALL_STATE(6914)] = 594874, + [SMALL_STATE(6915)] = 594920, + [SMALL_STATE(6916)] = 594966, + [SMALL_STATE(6917)] = 595012, + [SMALL_STATE(6918)] = 595058, + [SMALL_STATE(6919)] = 595104, + [SMALL_STATE(6920)] = 595150, + [SMALL_STATE(6921)] = 595196, + [SMALL_STATE(6922)] = 595242, + [SMALL_STATE(6923)] = 595288, + [SMALL_STATE(6924)] = 595334, + [SMALL_STATE(6925)] = 595380, + [SMALL_STATE(6926)] = 595426, + [SMALL_STATE(6927)] = 595472, + [SMALL_STATE(6928)] = 595518, + [SMALL_STATE(6929)] = 595564, + [SMALL_STATE(6930)] = 595610, + [SMALL_STATE(6931)] = 595656, + [SMALL_STATE(6932)] = 595702, + [SMALL_STATE(6933)] = 595748, + [SMALL_STATE(6934)] = 595794, + [SMALL_STATE(6935)] = 595840, + [SMALL_STATE(6936)] = 595886, + [SMALL_STATE(6937)] = 595932, + [SMALL_STATE(6938)] = 595978, + [SMALL_STATE(6939)] = 596024, + [SMALL_STATE(6940)] = 596070, + [SMALL_STATE(6941)] = 596116, + [SMALL_STATE(6942)] = 596162, + [SMALL_STATE(6943)] = 596208, + [SMALL_STATE(6944)] = 596254, + [SMALL_STATE(6945)] = 596300, + [SMALL_STATE(6946)] = 596346, + [SMALL_STATE(6947)] = 596392, + [SMALL_STATE(6948)] = 596438, + [SMALL_STATE(6949)] = 596484, + [SMALL_STATE(6950)] = 596530, + [SMALL_STATE(6951)] = 596576, + [SMALL_STATE(6952)] = 596622, + [SMALL_STATE(6953)] = 596668, + [SMALL_STATE(6954)] = 596714, + [SMALL_STATE(6955)] = 596760, + [SMALL_STATE(6956)] = 596806, + [SMALL_STATE(6957)] = 596852, + [SMALL_STATE(6958)] = 596898, + [SMALL_STATE(6959)] = 596944, + [SMALL_STATE(6960)] = 596990, + [SMALL_STATE(6961)] = 597036, + [SMALL_STATE(6962)] = 597082, + [SMALL_STATE(6963)] = 597128, + [SMALL_STATE(6964)] = 597174, + [SMALL_STATE(6965)] = 597220, + [SMALL_STATE(6966)] = 597266, + [SMALL_STATE(6967)] = 597312, + [SMALL_STATE(6968)] = 597358, + [SMALL_STATE(6969)] = 597404, + [SMALL_STATE(6970)] = 597450, + [SMALL_STATE(6971)] = 597496, + [SMALL_STATE(6972)] = 597542, + [SMALL_STATE(6973)] = 597588, + [SMALL_STATE(6974)] = 597634, + [SMALL_STATE(6975)] = 597680, + [SMALL_STATE(6976)] = 597726, + [SMALL_STATE(6977)] = 597772, + [SMALL_STATE(6978)] = 597818, + [SMALL_STATE(6979)] = 597864, + [SMALL_STATE(6980)] = 597910, + [SMALL_STATE(6981)] = 597956, + [SMALL_STATE(6982)] = 598002, + [SMALL_STATE(6983)] = 598048, + [SMALL_STATE(6984)] = 598094, + [SMALL_STATE(6985)] = 598140, + [SMALL_STATE(6986)] = 598186, + [SMALL_STATE(6987)] = 598232, + [SMALL_STATE(6988)] = 598278, + [SMALL_STATE(6989)] = 598324, + [SMALL_STATE(6990)] = 598370, + [SMALL_STATE(6991)] = 598416, + [SMALL_STATE(6992)] = 598462, + [SMALL_STATE(6993)] = 598508, + [SMALL_STATE(6994)] = 598554, + [SMALL_STATE(6995)] = 598600, + [SMALL_STATE(6996)] = 598646, + [SMALL_STATE(6997)] = 598692, + [SMALL_STATE(6998)] = 598738, + [SMALL_STATE(6999)] = 598784, + [SMALL_STATE(7000)] = 598830, + [SMALL_STATE(7001)] = 598876, + [SMALL_STATE(7002)] = 598922, + [SMALL_STATE(7003)] = 598968, + [SMALL_STATE(7004)] = 599014, + [SMALL_STATE(7005)] = 599060, + [SMALL_STATE(7006)] = 599106, + [SMALL_STATE(7007)] = 599152, + [SMALL_STATE(7008)] = 599198, + [SMALL_STATE(7009)] = 599244, + [SMALL_STATE(7010)] = 599290, + [SMALL_STATE(7011)] = 599336, + [SMALL_STATE(7012)] = 599382, + [SMALL_STATE(7013)] = 599428, + [SMALL_STATE(7014)] = 599474, + [SMALL_STATE(7015)] = 599520, + [SMALL_STATE(7016)] = 599566, + [SMALL_STATE(7017)] = 599612, + [SMALL_STATE(7018)] = 599658, + [SMALL_STATE(7019)] = 599704, + [SMALL_STATE(7020)] = 599750, + [SMALL_STATE(7021)] = 599796, + [SMALL_STATE(7022)] = 599842, + [SMALL_STATE(7023)] = 599888, + [SMALL_STATE(7024)] = 599934, + [SMALL_STATE(7025)] = 599980, + [SMALL_STATE(7026)] = 600026, + [SMALL_STATE(7027)] = 600072, + [SMALL_STATE(7028)] = 600118, + [SMALL_STATE(7029)] = 600164, + [SMALL_STATE(7030)] = 600210, + [SMALL_STATE(7031)] = 600256, + [SMALL_STATE(7032)] = 600302, + [SMALL_STATE(7033)] = 600348, + [SMALL_STATE(7034)] = 600394, + [SMALL_STATE(7035)] = 600440, + [SMALL_STATE(7036)] = 600486, + [SMALL_STATE(7037)] = 600532, + [SMALL_STATE(7038)] = 600578, + [SMALL_STATE(7039)] = 600624, + [SMALL_STATE(7040)] = 600670, + [SMALL_STATE(7041)] = 600716, + [SMALL_STATE(7042)] = 600762, + [SMALL_STATE(7043)] = 600808, + [SMALL_STATE(7044)] = 600854, + [SMALL_STATE(7045)] = 600900, + [SMALL_STATE(7046)] = 600946, + [SMALL_STATE(7047)] = 600992, + [SMALL_STATE(7048)] = 601038, + [SMALL_STATE(7049)] = 601084, + [SMALL_STATE(7050)] = 601130, + [SMALL_STATE(7051)] = 601176, + [SMALL_STATE(7052)] = 601222, + [SMALL_STATE(7053)] = 601268, + [SMALL_STATE(7054)] = 601314, + [SMALL_STATE(7055)] = 601360, + [SMALL_STATE(7056)] = 601406, + [SMALL_STATE(7057)] = 601452, + [SMALL_STATE(7058)] = 601498, + [SMALL_STATE(7059)] = 601544, + [SMALL_STATE(7060)] = 601592, + [SMALL_STATE(7061)] = 601638, + [SMALL_STATE(7062)] = 601684, + [SMALL_STATE(7063)] = 601730, + [SMALL_STATE(7064)] = 601776, + [SMALL_STATE(7065)] = 601822, + [SMALL_STATE(7066)] = 601868, + [SMALL_STATE(7067)] = 601914, + [SMALL_STATE(7068)] = 601960, + [SMALL_STATE(7069)] = 602006, + [SMALL_STATE(7070)] = 602052, + [SMALL_STATE(7071)] = 602098, + [SMALL_STATE(7072)] = 602144, + [SMALL_STATE(7073)] = 602190, + [SMALL_STATE(7074)] = 602236, + [SMALL_STATE(7075)] = 602282, + [SMALL_STATE(7076)] = 602328, + [SMALL_STATE(7077)] = 602374, + [SMALL_STATE(7078)] = 602420, + [SMALL_STATE(7079)] = 602466, + [SMALL_STATE(7080)] = 602512, + [SMALL_STATE(7081)] = 602558, + [SMALL_STATE(7082)] = 602604, + [SMALL_STATE(7083)] = 602650, + [SMALL_STATE(7084)] = 602696, + [SMALL_STATE(7085)] = 602742, + [SMALL_STATE(7086)] = 602788, + [SMALL_STATE(7087)] = 602834, + [SMALL_STATE(7088)] = 602880, + [SMALL_STATE(7089)] = 602926, + [SMALL_STATE(7090)] = 602972, + [SMALL_STATE(7091)] = 603018, + [SMALL_STATE(7092)] = 603064, + [SMALL_STATE(7093)] = 603110, + [SMALL_STATE(7094)] = 603156, + [SMALL_STATE(7095)] = 603202, + [SMALL_STATE(7096)] = 603248, + [SMALL_STATE(7097)] = 603294, + [SMALL_STATE(7098)] = 603340, + [SMALL_STATE(7099)] = 603386, + [SMALL_STATE(7100)] = 603432, + [SMALL_STATE(7101)] = 603478, + [SMALL_STATE(7102)] = 603524, + [SMALL_STATE(7103)] = 603570, + [SMALL_STATE(7104)] = 603616, + [SMALL_STATE(7105)] = 603662, + [SMALL_STATE(7106)] = 603708, + [SMALL_STATE(7107)] = 603754, + [SMALL_STATE(7108)] = 603800, + [SMALL_STATE(7109)] = 603846, + [SMALL_STATE(7110)] = 603892, + [SMALL_STATE(7111)] = 603938, + [SMALL_STATE(7112)] = 603984, + [SMALL_STATE(7113)] = 604030, + [SMALL_STATE(7114)] = 604076, + [SMALL_STATE(7115)] = 604122, + [SMALL_STATE(7116)] = 604168, + [SMALL_STATE(7117)] = 604214, + [SMALL_STATE(7118)] = 604260, + [SMALL_STATE(7119)] = 604306, + [SMALL_STATE(7120)] = 604352, + [SMALL_STATE(7121)] = 604398, + [SMALL_STATE(7122)] = 604444, + [SMALL_STATE(7123)] = 604490, + [SMALL_STATE(7124)] = 604536, + [SMALL_STATE(7125)] = 604582, + [SMALL_STATE(7126)] = 604628, + [SMALL_STATE(7127)] = 604674, + [SMALL_STATE(7128)] = 604720, + [SMALL_STATE(7129)] = 604766, + [SMALL_STATE(7130)] = 604812, + [SMALL_STATE(7131)] = 604858, + [SMALL_STATE(7132)] = 604904, + [SMALL_STATE(7133)] = 604950, + [SMALL_STATE(7134)] = 604996, + [SMALL_STATE(7135)] = 605042, + [SMALL_STATE(7136)] = 605088, + [SMALL_STATE(7137)] = 605134, + [SMALL_STATE(7138)] = 605180, + [SMALL_STATE(7139)] = 605226, + [SMALL_STATE(7140)] = 605272, + [SMALL_STATE(7141)] = 605318, + [SMALL_STATE(7142)] = 605364, + [SMALL_STATE(7143)] = 605410, + [SMALL_STATE(7144)] = 605456, + [SMALL_STATE(7145)] = 605502, + [SMALL_STATE(7146)] = 605548, + [SMALL_STATE(7147)] = 605594, + [SMALL_STATE(7148)] = 605640, + [SMALL_STATE(7149)] = 605686, + [SMALL_STATE(7150)] = 605732, + [SMALL_STATE(7151)] = 605778, + [SMALL_STATE(7152)] = 605824, + [SMALL_STATE(7153)] = 605870, + [SMALL_STATE(7154)] = 605916, + [SMALL_STATE(7155)] = 605962, + [SMALL_STATE(7156)] = 606008, + [SMALL_STATE(7157)] = 606054, + [SMALL_STATE(7158)] = 606100, + [SMALL_STATE(7159)] = 606146, + [SMALL_STATE(7160)] = 606192, + [SMALL_STATE(7161)] = 606238, + [SMALL_STATE(7162)] = 606284, + [SMALL_STATE(7163)] = 606330, + [SMALL_STATE(7164)] = 606376, + [SMALL_STATE(7165)] = 606422, + [SMALL_STATE(7166)] = 606468, + [SMALL_STATE(7167)] = 606514, + [SMALL_STATE(7168)] = 606560, + [SMALL_STATE(7169)] = 606606, + [SMALL_STATE(7170)] = 606652, + [SMALL_STATE(7171)] = 606698, + [SMALL_STATE(7172)] = 606744, + [SMALL_STATE(7173)] = 606790, + [SMALL_STATE(7174)] = 606836, + [SMALL_STATE(7175)] = 606882, + [SMALL_STATE(7176)] = 606928, + [SMALL_STATE(7177)] = 606974, + [SMALL_STATE(7178)] = 607020, + [SMALL_STATE(7179)] = 607066, + [SMALL_STATE(7180)] = 607112, + [SMALL_STATE(7181)] = 607160, + [SMALL_STATE(7182)] = 607206, + [SMALL_STATE(7183)] = 607252, + [SMALL_STATE(7184)] = 607298, + [SMALL_STATE(7185)] = 607344, + [SMALL_STATE(7186)] = 607390, + [SMALL_STATE(7187)] = 607438, + [SMALL_STATE(7188)] = 607484, + [SMALL_STATE(7189)] = 607530, + [SMALL_STATE(7190)] = 607576, + [SMALL_STATE(7191)] = 607622, + [SMALL_STATE(7192)] = 607668, + [SMALL_STATE(7193)] = 607714, + [SMALL_STATE(7194)] = 607762, + [SMALL_STATE(7195)] = 607808, + [SMALL_STATE(7196)] = 607854, + [SMALL_STATE(7197)] = 607900, + [SMALL_STATE(7198)] = 607946, + [SMALL_STATE(7199)] = 607992, + [SMALL_STATE(7200)] = 608038, + [SMALL_STATE(7201)] = 608084, + [SMALL_STATE(7202)] = 608130, + [SMALL_STATE(7203)] = 608176, + [SMALL_STATE(7204)] = 608222, + [SMALL_STATE(7205)] = 608268, + [SMALL_STATE(7206)] = 608314, + [SMALL_STATE(7207)] = 608360, + [SMALL_STATE(7208)] = 608406, + [SMALL_STATE(7209)] = 608452, + [SMALL_STATE(7210)] = 608498, + [SMALL_STATE(7211)] = 608544, + [SMALL_STATE(7212)] = 608590, + [SMALL_STATE(7213)] = 608636, + [SMALL_STATE(7214)] = 608682, + [SMALL_STATE(7215)] = 608728, + [SMALL_STATE(7216)] = 608774, + [SMALL_STATE(7217)] = 608820, + [SMALL_STATE(7218)] = 608866, + [SMALL_STATE(7219)] = 608912, + [SMALL_STATE(7220)] = 608958, + [SMALL_STATE(7221)] = 609004, + [SMALL_STATE(7222)] = 609050, + [SMALL_STATE(7223)] = 609096, + [SMALL_STATE(7224)] = 609142, + [SMALL_STATE(7225)] = 609188, + [SMALL_STATE(7226)] = 609234, + [SMALL_STATE(7227)] = 609280, + [SMALL_STATE(7228)] = 609326, + [SMALL_STATE(7229)] = 609372, + [SMALL_STATE(7230)] = 609418, + [SMALL_STATE(7231)] = 609464, + [SMALL_STATE(7232)] = 609510, + [SMALL_STATE(7233)] = 609556, + [SMALL_STATE(7234)] = 609602, + [SMALL_STATE(7235)] = 609648, + [SMALL_STATE(7236)] = 609694, + [SMALL_STATE(7237)] = 609740, + [SMALL_STATE(7238)] = 609786, + [SMALL_STATE(7239)] = 609832, + [SMALL_STATE(7240)] = 609878, + [SMALL_STATE(7241)] = 609924, + [SMALL_STATE(7242)] = 609970, + [SMALL_STATE(7243)] = 610016, + [SMALL_STATE(7244)] = 610062, + [SMALL_STATE(7245)] = 610108, + [SMALL_STATE(7246)] = 610154, + [SMALL_STATE(7247)] = 610200, + [SMALL_STATE(7248)] = 610246, + [SMALL_STATE(7249)] = 610292, + [SMALL_STATE(7250)] = 610338, + [SMALL_STATE(7251)] = 610384, + [SMALL_STATE(7252)] = 610430, + [SMALL_STATE(7253)] = 610476, + [SMALL_STATE(7254)] = 610522, + [SMALL_STATE(7255)] = 610568, + [SMALL_STATE(7256)] = 610614, + [SMALL_STATE(7257)] = 610660, + [SMALL_STATE(7258)] = 610706, + [SMALL_STATE(7259)] = 610752, + [SMALL_STATE(7260)] = 610798, + [SMALL_STATE(7261)] = 610844, + [SMALL_STATE(7262)] = 610890, + [SMALL_STATE(7263)] = 610936, + [SMALL_STATE(7264)] = 610982, + [SMALL_STATE(7265)] = 611028, + [SMALL_STATE(7266)] = 611074, + [SMALL_STATE(7267)] = 611120, + [SMALL_STATE(7268)] = 611166, + [SMALL_STATE(7269)] = 611212, + [SMALL_STATE(7270)] = 611258, + [SMALL_STATE(7271)] = 611304, + [SMALL_STATE(7272)] = 611350, + [SMALL_STATE(7273)] = 611396, + [SMALL_STATE(7274)] = 611442, + [SMALL_STATE(7275)] = 611488, + [SMALL_STATE(7276)] = 611534, + [SMALL_STATE(7277)] = 611580, + [SMALL_STATE(7278)] = 611626, + [SMALL_STATE(7279)] = 611672, + [SMALL_STATE(7280)] = 611718, + [SMALL_STATE(7281)] = 611764, + [SMALL_STATE(7282)] = 611810, + [SMALL_STATE(7283)] = 611856, + [SMALL_STATE(7284)] = 611902, + [SMALL_STATE(7285)] = 611948, + [SMALL_STATE(7286)] = 611994, + [SMALL_STATE(7287)] = 612040, + [SMALL_STATE(7288)] = 612086, + [SMALL_STATE(7289)] = 612132, + [SMALL_STATE(7290)] = 612178, + [SMALL_STATE(7291)] = 612224, + [SMALL_STATE(7292)] = 612270, + [SMALL_STATE(7293)] = 612316, + [SMALL_STATE(7294)] = 612362, + [SMALL_STATE(7295)] = 612408, + [SMALL_STATE(7296)] = 612454, + [SMALL_STATE(7297)] = 612500, + [SMALL_STATE(7298)] = 612546, + [SMALL_STATE(7299)] = 612592, + [SMALL_STATE(7300)] = 612638, + [SMALL_STATE(7301)] = 612684, + [SMALL_STATE(7302)] = 612730, + [SMALL_STATE(7303)] = 612776, + [SMALL_STATE(7304)] = 612822, + [SMALL_STATE(7305)] = 612868, + [SMALL_STATE(7306)] = 612914, + [SMALL_STATE(7307)] = 612960, + [SMALL_STATE(7308)] = 613006, + [SMALL_STATE(7309)] = 613052, + [SMALL_STATE(7310)] = 613098, + [SMALL_STATE(7311)] = 613144, + [SMALL_STATE(7312)] = 613190, + [SMALL_STATE(7313)] = 613236, + [SMALL_STATE(7314)] = 613282, + [SMALL_STATE(7315)] = 613328, + [SMALL_STATE(7316)] = 613374, + [SMALL_STATE(7317)] = 613420, + [SMALL_STATE(7318)] = 613466, + [SMALL_STATE(7319)] = 613512, + [SMALL_STATE(7320)] = 613558, + [SMALL_STATE(7321)] = 613604, + [SMALL_STATE(7322)] = 613650, + [SMALL_STATE(7323)] = 613696, + [SMALL_STATE(7324)] = 613742, + [SMALL_STATE(7325)] = 613788, + [SMALL_STATE(7326)] = 613834, + [SMALL_STATE(7327)] = 613880, + [SMALL_STATE(7328)] = 613926, + [SMALL_STATE(7329)] = 613972, + [SMALL_STATE(7330)] = 614018, + [SMALL_STATE(7331)] = 614064, + [SMALL_STATE(7332)] = 614110, + [SMALL_STATE(7333)] = 614156, + [SMALL_STATE(7334)] = 614202, + [SMALL_STATE(7335)] = 614248, + [SMALL_STATE(7336)] = 614294, + [SMALL_STATE(7337)] = 614340, + [SMALL_STATE(7338)] = 614386, + [SMALL_STATE(7339)] = 614432, + [SMALL_STATE(7340)] = 614478, + [SMALL_STATE(7341)] = 614524, + [SMALL_STATE(7342)] = 614570, + [SMALL_STATE(7343)] = 614616, + [SMALL_STATE(7344)] = 614662, + [SMALL_STATE(7345)] = 614708, + [SMALL_STATE(7346)] = 614754, + [SMALL_STATE(7347)] = 614800, + [SMALL_STATE(7348)] = 614846, + [SMALL_STATE(7349)] = 614892, + [SMALL_STATE(7350)] = 614938, + [SMALL_STATE(7351)] = 614984, + [SMALL_STATE(7352)] = 615030, + [SMALL_STATE(7353)] = 615076, + [SMALL_STATE(7354)] = 615122, + [SMALL_STATE(7355)] = 615168, + [SMALL_STATE(7356)] = 615214, + [SMALL_STATE(7357)] = 615260, + [SMALL_STATE(7358)] = 615306, + [SMALL_STATE(7359)] = 615352, + [SMALL_STATE(7360)] = 615398, + [SMALL_STATE(7361)] = 615444, + [SMALL_STATE(7362)] = 615490, + [SMALL_STATE(7363)] = 615536, + [SMALL_STATE(7364)] = 615582, + [SMALL_STATE(7365)] = 615628, + [SMALL_STATE(7366)] = 615674, + [SMALL_STATE(7367)] = 615720, + [SMALL_STATE(7368)] = 615766, + [SMALL_STATE(7369)] = 615812, + [SMALL_STATE(7370)] = 615858, + [SMALL_STATE(7371)] = 615904, + [SMALL_STATE(7372)] = 615950, + [SMALL_STATE(7373)] = 615996, + [SMALL_STATE(7374)] = 616042, + [SMALL_STATE(7375)] = 616088, + [SMALL_STATE(7376)] = 616134, + [SMALL_STATE(7377)] = 616180, + [SMALL_STATE(7378)] = 616226, + [SMALL_STATE(7379)] = 616272, + [SMALL_STATE(7380)] = 616318, + [SMALL_STATE(7381)] = 616364, + [SMALL_STATE(7382)] = 616410, + [SMALL_STATE(7383)] = 616456, + [SMALL_STATE(7384)] = 616502, + [SMALL_STATE(7385)] = 616548, + [SMALL_STATE(7386)] = 616594, + [SMALL_STATE(7387)] = 616640, + [SMALL_STATE(7388)] = 616686, + [SMALL_STATE(7389)] = 616732, + [SMALL_STATE(7390)] = 616778, + [SMALL_STATE(7391)] = 616824, + [SMALL_STATE(7392)] = 616870, + [SMALL_STATE(7393)] = 616916, + [SMALL_STATE(7394)] = 616962, + [SMALL_STATE(7395)] = 617008, + [SMALL_STATE(7396)] = 617054, + [SMALL_STATE(7397)] = 617100, + [SMALL_STATE(7398)] = 617146, + [SMALL_STATE(7399)] = 617192, + [SMALL_STATE(7400)] = 617238, + [SMALL_STATE(7401)] = 617284, + [SMALL_STATE(7402)] = 617330, + [SMALL_STATE(7403)] = 617376, + [SMALL_STATE(7404)] = 617422, + [SMALL_STATE(7405)] = 617468, + [SMALL_STATE(7406)] = 617514, + [SMALL_STATE(7407)] = 617560, + [SMALL_STATE(7408)] = 617606, + [SMALL_STATE(7409)] = 617652, + [SMALL_STATE(7410)] = 617698, + [SMALL_STATE(7411)] = 617744, + [SMALL_STATE(7412)] = 617790, + [SMALL_STATE(7413)] = 617836, + [SMALL_STATE(7414)] = 617882, + [SMALL_STATE(7415)] = 617928, + [SMALL_STATE(7416)] = 617974, + [SMALL_STATE(7417)] = 618020, + [SMALL_STATE(7418)] = 618066, + [SMALL_STATE(7419)] = 618112, + [SMALL_STATE(7420)] = 618158, + [SMALL_STATE(7421)] = 618204, + [SMALL_STATE(7422)] = 618250, + [SMALL_STATE(7423)] = 618296, + [SMALL_STATE(7424)] = 618342, + [SMALL_STATE(7425)] = 618388, + [SMALL_STATE(7426)] = 618434, + [SMALL_STATE(7427)] = 618480, + [SMALL_STATE(7428)] = 618526, + [SMALL_STATE(7429)] = 618572, + [SMALL_STATE(7430)] = 618618, + [SMALL_STATE(7431)] = 618664, + [SMALL_STATE(7432)] = 618710, + [SMALL_STATE(7433)] = 618756, + [SMALL_STATE(7434)] = 618802, + [SMALL_STATE(7435)] = 618848, + [SMALL_STATE(7436)] = 618931, + [SMALL_STATE(7437)] = 619014, + [SMALL_STATE(7438)] = 619059, + [SMALL_STATE(7439)] = 619104, + [SMALL_STATE(7440)] = 619149, + [SMALL_STATE(7441)] = 619194, + [SMALL_STATE(7442)] = 619239, + [SMALL_STATE(7443)] = 619284, + [SMALL_STATE(7444)] = 619329, + [SMALL_STATE(7445)] = 619374, + [SMALL_STATE(7446)] = 619419, + [SMALL_STATE(7447)] = 619464, + [SMALL_STATE(7448)] = 619509, + [SMALL_STATE(7449)] = 619554, + [SMALL_STATE(7450)] = 619599, + [SMALL_STATE(7451)] = 619644, + [SMALL_STATE(7452)] = 619689, + [SMALL_STATE(7453)] = 619734, + [SMALL_STATE(7454)] = 619779, + [SMALL_STATE(7455)] = 619824, + [SMALL_STATE(7456)] = 619869, + [SMALL_STATE(7457)] = 619914, + [SMALL_STATE(7458)] = 619959, + [SMALL_STATE(7459)] = 620004, + [SMALL_STATE(7460)] = 620049, + [SMALL_STATE(7461)] = 620094, + [SMALL_STATE(7462)] = 620139, + [SMALL_STATE(7463)] = 620184, + [SMALL_STATE(7464)] = 620229, + [SMALL_STATE(7465)] = 620274, + [SMALL_STATE(7466)] = 620319, + [SMALL_STATE(7467)] = 620364, + [SMALL_STATE(7468)] = 620409, + [SMALL_STATE(7469)] = 620454, + [SMALL_STATE(7470)] = 620499, + [SMALL_STATE(7471)] = 620544, + [SMALL_STATE(7472)] = 620589, + [SMALL_STATE(7473)] = 620634, + [SMALL_STATE(7474)] = 620679, + [SMALL_STATE(7475)] = 620724, + [SMALL_STATE(7476)] = 620769, + [SMALL_STATE(7477)] = 620814, + [SMALL_STATE(7478)] = 620859, + [SMALL_STATE(7479)] = 620904, + [SMALL_STATE(7480)] = 620949, + [SMALL_STATE(7481)] = 620994, + [SMALL_STATE(7482)] = 621039, + [SMALL_STATE(7483)] = 621084, + [SMALL_STATE(7484)] = 621129, + [SMALL_STATE(7485)] = 621174, + [SMALL_STATE(7486)] = 621219, + [SMALL_STATE(7487)] = 621264, + [SMALL_STATE(7488)] = 621309, + [SMALL_STATE(7489)] = 621354, + [SMALL_STATE(7490)] = 621399, + [SMALL_STATE(7491)] = 621444, + [SMALL_STATE(7492)] = 621489, + [SMALL_STATE(7493)] = 621534, + [SMALL_STATE(7494)] = 621579, + [SMALL_STATE(7495)] = 621624, + [SMALL_STATE(7496)] = 621669, + [SMALL_STATE(7497)] = 621714, + [SMALL_STATE(7498)] = 621759, + [SMALL_STATE(7499)] = 621804, + [SMALL_STATE(7500)] = 621849, + [SMALL_STATE(7501)] = 621894, + [SMALL_STATE(7502)] = 621939, + [SMALL_STATE(7503)] = 621984, + [SMALL_STATE(7504)] = 622067, + [SMALL_STATE(7505)] = 622150, + [SMALL_STATE(7506)] = 622195, + [SMALL_STATE(7507)] = 622278, + [SMALL_STATE(7508)] = 622361, + [SMALL_STATE(7509)] = 622444, + [SMALL_STATE(7510)] = 622527, + [SMALL_STATE(7511)] = 622572, + [SMALL_STATE(7512)] = 622617, + [SMALL_STATE(7513)] = 622662, + [SMALL_STATE(7514)] = 622707, + [SMALL_STATE(7515)] = 622752, + [SMALL_STATE(7516)] = 622797, + [SMALL_STATE(7517)] = 622842, + [SMALL_STATE(7518)] = 622887, + [SMALL_STATE(7519)] = 622932, + [SMALL_STATE(7520)] = 622977, + [SMALL_STATE(7521)] = 623022, + [SMALL_STATE(7522)] = 623067, + [SMALL_STATE(7523)] = 623112, + [SMALL_STATE(7524)] = 623157, + [SMALL_STATE(7525)] = 623202, + [SMALL_STATE(7526)] = 623285, + [SMALL_STATE(7527)] = 623330, + [SMALL_STATE(7528)] = 623377, + [SMALL_STATE(7529)] = 623422, + [SMALL_STATE(7530)] = 623467, + [SMALL_STATE(7531)] = 623512, + [SMALL_STATE(7532)] = 623557, + [SMALL_STATE(7533)] = 623602, + [SMALL_STATE(7534)] = 623647, + [SMALL_STATE(7535)] = 623692, + [SMALL_STATE(7536)] = 623737, + [SMALL_STATE(7537)] = 623782, + [SMALL_STATE(7538)] = 623827, + [SMALL_STATE(7539)] = 623910, + [SMALL_STATE(7540)] = 623955, + [SMALL_STATE(7541)] = 624000, + [SMALL_STATE(7542)] = 624045, + [SMALL_STATE(7543)] = 624090, + [SMALL_STATE(7544)] = 624135, + [SMALL_STATE(7545)] = 624180, + [SMALL_STATE(7546)] = 624225, + [SMALL_STATE(7547)] = 624270, + [SMALL_STATE(7548)] = 624315, + [SMALL_STATE(7549)] = 624360, + [SMALL_STATE(7550)] = 624405, + [SMALL_STATE(7551)] = 624450, + [SMALL_STATE(7552)] = 624495, + [SMALL_STATE(7553)] = 624540, + [SMALL_STATE(7554)] = 624585, + [SMALL_STATE(7555)] = 624630, + [SMALL_STATE(7556)] = 624675, + [SMALL_STATE(7557)] = 624720, + [SMALL_STATE(7558)] = 624765, + [SMALL_STATE(7559)] = 624810, + [SMALL_STATE(7560)] = 624855, + [SMALL_STATE(7561)] = 624938, + [SMALL_STATE(7562)] = 624983, + [SMALL_STATE(7563)] = 625028, + [SMALL_STATE(7564)] = 625073, + [SMALL_STATE(7565)] = 625118, + [SMALL_STATE(7566)] = 625163, + [SMALL_STATE(7567)] = 625208, + [SMALL_STATE(7568)] = 625253, + [SMALL_STATE(7569)] = 625298, + [SMALL_STATE(7570)] = 625343, + [SMALL_STATE(7571)] = 625388, + [SMALL_STATE(7572)] = 625433, + [SMALL_STATE(7573)] = 625516, + [SMALL_STATE(7574)] = 625561, + [SMALL_STATE(7575)] = 625606, + [SMALL_STATE(7576)] = 625651, + [SMALL_STATE(7577)] = 625696, + [SMALL_STATE(7578)] = 625741, + [SMALL_STATE(7579)] = 625786, + [SMALL_STATE(7580)] = 625831, + [SMALL_STATE(7581)] = 625876, + [SMALL_STATE(7582)] = 625921, + [SMALL_STATE(7583)] = 625966, + [SMALL_STATE(7584)] = 626011, + [SMALL_STATE(7585)] = 626056, + [SMALL_STATE(7586)] = 626101, + [SMALL_STATE(7587)] = 626146, + [SMALL_STATE(7588)] = 626191, + [SMALL_STATE(7589)] = 626236, + [SMALL_STATE(7590)] = 626281, + [SMALL_STATE(7591)] = 626326, + [SMALL_STATE(7592)] = 626371, + [SMALL_STATE(7593)] = 626416, + [SMALL_STATE(7594)] = 626461, + [SMALL_STATE(7595)] = 626506, + [SMALL_STATE(7596)] = 626551, + [SMALL_STATE(7597)] = 626596, + [SMALL_STATE(7598)] = 626641, + [SMALL_STATE(7599)] = 626686, + [SMALL_STATE(7600)] = 626731, + [SMALL_STATE(7601)] = 626776, + [SMALL_STATE(7602)] = 626821, + [SMALL_STATE(7603)] = 626866, + [SMALL_STATE(7604)] = 626911, + [SMALL_STATE(7605)] = 626956, + [SMALL_STATE(7606)] = 627001, + [SMALL_STATE(7607)] = 627046, + [SMALL_STATE(7608)] = 627091, + [SMALL_STATE(7609)] = 627136, + [SMALL_STATE(7610)] = 627181, + [SMALL_STATE(7611)] = 627226, + [SMALL_STATE(7612)] = 627271, + [SMALL_STATE(7613)] = 627316, + [SMALL_STATE(7614)] = 627361, + [SMALL_STATE(7615)] = 627406, + [SMALL_STATE(7616)] = 627451, + [SMALL_STATE(7617)] = 627496, + [SMALL_STATE(7618)] = 627541, + [SMALL_STATE(7619)] = 627586, + [SMALL_STATE(7620)] = 627631, + [SMALL_STATE(7621)] = 627676, + [SMALL_STATE(7622)] = 627721, + [SMALL_STATE(7623)] = 627766, + [SMALL_STATE(7624)] = 627811, + [SMALL_STATE(7625)] = 627856, + [SMALL_STATE(7626)] = 627903, + [SMALL_STATE(7627)] = 627948, + [SMALL_STATE(7628)] = 627993, + [SMALL_STATE(7629)] = 628076, + [SMALL_STATE(7630)] = 628121, + [SMALL_STATE(7631)] = 628210, + [SMALL_STATE(7632)] = 628293, + [SMALL_STATE(7633)] = 628338, + [SMALL_STATE(7634)] = 628421, + [SMALL_STATE(7635)] = 628466, + [SMALL_STATE(7636)] = 628511, + [SMALL_STATE(7637)] = 628556, + [SMALL_STATE(7638)] = 628639, + [SMALL_STATE(7639)] = 628722, + [SMALL_STATE(7640)] = 628805, + [SMALL_STATE(7641)] = 628850, + [SMALL_STATE(7642)] = 628933, + [SMALL_STATE(7643)] = 628978, + [SMALL_STATE(7644)] = 629023, + [SMALL_STATE(7645)] = 629068, + [SMALL_STATE(7646)] = 629113, + [SMALL_STATE(7647)] = 629158, + [SMALL_STATE(7648)] = 629203, + [SMALL_STATE(7649)] = 629248, + [SMALL_STATE(7650)] = 629331, + [SMALL_STATE(7651)] = 629414, + [SMALL_STATE(7652)] = 629459, + [SMALL_STATE(7653)] = 629504, + [SMALL_STATE(7654)] = 629549, + [SMALL_STATE(7655)] = 629632, + [SMALL_STATE(7656)] = 629677, + [SMALL_STATE(7657)] = 629722, + [SMALL_STATE(7658)] = 629767, + [SMALL_STATE(7659)] = 629812, + [SMALL_STATE(7660)] = 629857, + [SMALL_STATE(7661)] = 629902, + [SMALL_STATE(7662)] = 629947, + [SMALL_STATE(7663)] = 629992, + [SMALL_STATE(7664)] = 630037, + [SMALL_STATE(7665)] = 630082, + [SMALL_STATE(7666)] = 630127, + [SMALL_STATE(7667)] = 630172, + [SMALL_STATE(7668)] = 630217, + [SMALL_STATE(7669)] = 630262, + [SMALL_STATE(7670)] = 630307, + [SMALL_STATE(7671)] = 630352, + [SMALL_STATE(7672)] = 630397, + [SMALL_STATE(7673)] = 630442, + [SMALL_STATE(7674)] = 630487, + [SMALL_STATE(7675)] = 630532, + [SMALL_STATE(7676)] = 630577, + [SMALL_STATE(7677)] = 630622, + [SMALL_STATE(7678)] = 630667, + [SMALL_STATE(7679)] = 630712, + [SMALL_STATE(7680)] = 630757, + [SMALL_STATE(7681)] = 630802, + [SMALL_STATE(7682)] = 630847, + [SMALL_STATE(7683)] = 630892, + [SMALL_STATE(7684)] = 630937, + [SMALL_STATE(7685)] = 630982, + [SMALL_STATE(7686)] = 631027, + [SMALL_STATE(7687)] = 631072, + [SMALL_STATE(7688)] = 631117, + [SMALL_STATE(7689)] = 631162, + [SMALL_STATE(7690)] = 631207, + [SMALL_STATE(7691)] = 631252, + [SMALL_STATE(7692)] = 631297, + [SMALL_STATE(7693)] = 631342, + [SMALL_STATE(7694)] = 631387, + [SMALL_STATE(7695)] = 631432, + [SMALL_STATE(7696)] = 631477, + [SMALL_STATE(7697)] = 631522, + [SMALL_STATE(7698)] = 631567, + [SMALL_STATE(7699)] = 631612, + [SMALL_STATE(7700)] = 631657, + [SMALL_STATE(7701)] = 631702, + [SMALL_STATE(7702)] = 631747, + [SMALL_STATE(7703)] = 631792, + [SMALL_STATE(7704)] = 631837, + [SMALL_STATE(7705)] = 631882, + [SMALL_STATE(7706)] = 631927, + [SMALL_STATE(7707)] = 631972, + [SMALL_STATE(7708)] = 632017, + [SMALL_STATE(7709)] = 632062, + [SMALL_STATE(7710)] = 632107, + [SMALL_STATE(7711)] = 632152, + [SMALL_STATE(7712)] = 632197, + [SMALL_STATE(7713)] = 632242, + [SMALL_STATE(7714)] = 632287, + [SMALL_STATE(7715)] = 632332, + [SMALL_STATE(7716)] = 632377, + [SMALL_STATE(7717)] = 632422, + [SMALL_STATE(7718)] = 632467, + [SMALL_STATE(7719)] = 632512, + [SMALL_STATE(7720)] = 632557, + [SMALL_STATE(7721)] = 632602, + [SMALL_STATE(7722)] = 632647, + [SMALL_STATE(7723)] = 632692, + [SMALL_STATE(7724)] = 632737, + [SMALL_STATE(7725)] = 632782, + [SMALL_STATE(7726)] = 632827, + [SMALL_STATE(7727)] = 632872, + [SMALL_STATE(7728)] = 632917, + [SMALL_STATE(7729)] = 632962, + [SMALL_STATE(7730)] = 633007, + [SMALL_STATE(7731)] = 633052, + [SMALL_STATE(7732)] = 633097, + [SMALL_STATE(7733)] = 633142, + [SMALL_STATE(7734)] = 633187, + [SMALL_STATE(7735)] = 633232, + [SMALL_STATE(7736)] = 633277, + [SMALL_STATE(7737)] = 633322, + [SMALL_STATE(7738)] = 633367, + [SMALL_STATE(7739)] = 633412, + [SMALL_STATE(7740)] = 633457, + [SMALL_STATE(7741)] = 633502, + [SMALL_STATE(7742)] = 633547, + [SMALL_STATE(7743)] = 633592, + [SMALL_STATE(7744)] = 633637, + [SMALL_STATE(7745)] = 633682, + [SMALL_STATE(7746)] = 633727, + [SMALL_STATE(7747)] = 633772, + [SMALL_STATE(7748)] = 633817, + [SMALL_STATE(7749)] = 633862, + [SMALL_STATE(7750)] = 633907, + [SMALL_STATE(7751)] = 633952, + [SMALL_STATE(7752)] = 633997, + [SMALL_STATE(7753)] = 634042, + [SMALL_STATE(7754)] = 634087, + [SMALL_STATE(7755)] = 634132, + [SMALL_STATE(7756)] = 634177, + [SMALL_STATE(7757)] = 634222, + [SMALL_STATE(7758)] = 634267, + [SMALL_STATE(7759)] = 634312, + [SMALL_STATE(7760)] = 634357, + [SMALL_STATE(7761)] = 634402, + [SMALL_STATE(7762)] = 634447, + [SMALL_STATE(7763)] = 634492, + [SMALL_STATE(7764)] = 634537, + [SMALL_STATE(7765)] = 634582, + [SMALL_STATE(7766)] = 634627, + [SMALL_STATE(7767)] = 634672, + [SMALL_STATE(7768)] = 634717, + [SMALL_STATE(7769)] = 634762, + [SMALL_STATE(7770)] = 634807, + [SMALL_STATE(7771)] = 634852, + [SMALL_STATE(7772)] = 634897, + [SMALL_STATE(7773)] = 634942, + [SMALL_STATE(7774)] = 634987, + [SMALL_STATE(7775)] = 635032, + [SMALL_STATE(7776)] = 635077, + [SMALL_STATE(7777)] = 635122, + [SMALL_STATE(7778)] = 635167, + [SMALL_STATE(7779)] = 635212, + [SMALL_STATE(7780)] = 635257, + [SMALL_STATE(7781)] = 635302, + [SMALL_STATE(7782)] = 635347, + [SMALL_STATE(7783)] = 635392, + [SMALL_STATE(7784)] = 635437, + [SMALL_STATE(7785)] = 635482, + [SMALL_STATE(7786)] = 635527, + [SMALL_STATE(7787)] = 635572, + [SMALL_STATE(7788)] = 635617, + [SMALL_STATE(7789)] = 635662, + [SMALL_STATE(7790)] = 635707, + [SMALL_STATE(7791)] = 635752, + [SMALL_STATE(7792)] = 635797, + [SMALL_STATE(7793)] = 635842, + [SMALL_STATE(7794)] = 635887, + [SMALL_STATE(7795)] = 635932, + [SMALL_STATE(7796)] = 635977, + [SMALL_STATE(7797)] = 636022, + [SMALL_STATE(7798)] = 636067, + [SMALL_STATE(7799)] = 636112, + [SMALL_STATE(7800)] = 636157, + [SMALL_STATE(7801)] = 636202, + [SMALL_STATE(7802)] = 636247, + [SMALL_STATE(7803)] = 636292, + [SMALL_STATE(7804)] = 636337, + [SMALL_STATE(7805)] = 636382, + [SMALL_STATE(7806)] = 636427, + [SMALL_STATE(7807)] = 636472, + [SMALL_STATE(7808)] = 636517, + [SMALL_STATE(7809)] = 636562, + [SMALL_STATE(7810)] = 636607, + [SMALL_STATE(7811)] = 636652, + [SMALL_STATE(7812)] = 636697, + [SMALL_STATE(7813)] = 636742, + [SMALL_STATE(7814)] = 636787, + [SMALL_STATE(7815)] = 636832, + [SMALL_STATE(7816)] = 636877, + [SMALL_STATE(7817)] = 636922, + [SMALL_STATE(7818)] = 636967, + [SMALL_STATE(7819)] = 637012, + [SMALL_STATE(7820)] = 637057, + [SMALL_STATE(7821)] = 637102, + [SMALL_STATE(7822)] = 637147, + [SMALL_STATE(7823)] = 637192, + [SMALL_STATE(7824)] = 637237, + [SMALL_STATE(7825)] = 637282, + [SMALL_STATE(7826)] = 637327, + [SMALL_STATE(7827)] = 637372, + [SMALL_STATE(7828)] = 637417, + [SMALL_STATE(7829)] = 637462, + [SMALL_STATE(7830)] = 637507, + [SMALL_STATE(7831)] = 637552, + [SMALL_STATE(7832)] = 637597, + [SMALL_STATE(7833)] = 637642, + [SMALL_STATE(7834)] = 637687, + [SMALL_STATE(7835)] = 637732, + [SMALL_STATE(7836)] = 637777, + [SMALL_STATE(7837)] = 637822, + [SMALL_STATE(7838)] = 637867, + [SMALL_STATE(7839)] = 637912, + [SMALL_STATE(7840)] = 637995, + [SMALL_STATE(7841)] = 638040, + [SMALL_STATE(7842)] = 638085, + [SMALL_STATE(7843)] = 638130, + [SMALL_STATE(7844)] = 638175, + [SMALL_STATE(7845)] = 638220, + [SMALL_STATE(7846)] = 638265, + [SMALL_STATE(7847)] = 638310, + [SMALL_STATE(7848)] = 638355, + [SMALL_STATE(7849)] = 638438, + [SMALL_STATE(7850)] = 638521, + [SMALL_STATE(7851)] = 638566, + [SMALL_STATE(7852)] = 638611, + [SMALL_STATE(7853)] = 638656, + [SMALL_STATE(7854)] = 638701, + [SMALL_STATE(7855)] = 638746, + [SMALL_STATE(7856)] = 638791, + [SMALL_STATE(7857)] = 638836, + [SMALL_STATE(7858)] = 638919, + [SMALL_STATE(7859)] = 638964, + [SMALL_STATE(7860)] = 639009, + [SMALL_STATE(7861)] = 639092, + [SMALL_STATE(7862)] = 639137, + [SMALL_STATE(7863)] = 639182, + [SMALL_STATE(7864)] = 639227, + [SMALL_STATE(7865)] = 639272, + [SMALL_STATE(7866)] = 639317, + [SMALL_STATE(7867)] = 639362, + [SMALL_STATE(7868)] = 639407, + [SMALL_STATE(7869)] = 639490, + [SMALL_STATE(7870)] = 639535, + [SMALL_STATE(7871)] = 639580, + [SMALL_STATE(7872)] = 639663, + [SMALL_STATE(7873)] = 639708, + [SMALL_STATE(7874)] = 639753, + [SMALL_STATE(7875)] = 639798, + [SMALL_STATE(7876)] = 639843, + [SMALL_STATE(7877)] = 639888, + [SMALL_STATE(7878)] = 639933, + [SMALL_STATE(7879)] = 639978, + [SMALL_STATE(7880)] = 640023, + [SMALL_STATE(7881)] = 640068, + [SMALL_STATE(7882)] = 640113, + [SMALL_STATE(7883)] = 640158, + [SMALL_STATE(7884)] = 640203, + [SMALL_STATE(7885)] = 640286, + [SMALL_STATE(7886)] = 640369, + [SMALL_STATE(7887)] = 640414, + [SMALL_STATE(7888)] = 640497, + [SMALL_STATE(7889)] = 640542, + [SMALL_STATE(7890)] = 640625, + [SMALL_STATE(7891)] = 640708, + [SMALL_STATE(7892)] = 640753, + [SMALL_STATE(7893)] = 640836, + [SMALL_STATE(7894)] = 640919, + [SMALL_STATE(7895)] = 640964, + [SMALL_STATE(7896)] = 641047, + [SMALL_STATE(7897)] = 641130, + [SMALL_STATE(7898)] = 641175, + [SMALL_STATE(7899)] = 641220, + [SMALL_STATE(7900)] = 641265, + [SMALL_STATE(7901)] = 641348, + [SMALL_STATE(7902)] = 641393, + [SMALL_STATE(7903)] = 641476, + [SMALL_STATE(7904)] = 641559, + [SMALL_STATE(7905)] = 641604, + [SMALL_STATE(7906)] = 641649, + [SMALL_STATE(7907)] = 641694, + [SMALL_STATE(7908)] = 641739, + [SMALL_STATE(7909)] = 641784, + [SMALL_STATE(7910)] = 641829, + [SMALL_STATE(7911)] = 641874, + [SMALL_STATE(7912)] = 641919, + [SMALL_STATE(7913)] = 641964, + [SMALL_STATE(7914)] = 642009, + [SMALL_STATE(7915)] = 642054, + [SMALL_STATE(7916)] = 642099, + [SMALL_STATE(7917)] = 642144, + [SMALL_STATE(7918)] = 642189, + [SMALL_STATE(7919)] = 642234, + [SMALL_STATE(7920)] = 642279, + [SMALL_STATE(7921)] = 642324, + [SMALL_STATE(7922)] = 642369, + [SMALL_STATE(7923)] = 642414, + [SMALL_STATE(7924)] = 642459, + [SMALL_STATE(7925)] = 642504, + [SMALL_STATE(7926)] = 642549, + [SMALL_STATE(7927)] = 642594, + [SMALL_STATE(7928)] = 642639, + [SMALL_STATE(7929)] = 642684, + [SMALL_STATE(7930)] = 642729, + [SMALL_STATE(7931)] = 642774, + [SMALL_STATE(7932)] = 642819, + [SMALL_STATE(7933)] = 642864, + [SMALL_STATE(7934)] = 642909, + [SMALL_STATE(7935)] = 642954, + [SMALL_STATE(7936)] = 642999, + [SMALL_STATE(7937)] = 643076, + [SMALL_STATE(7938)] = 643159, + [SMALL_STATE(7939)] = 643242, + [SMALL_STATE(7940)] = 643325, + [SMALL_STATE(7941)] = 643408, + [SMALL_STATE(7942)] = 643491, + [SMALL_STATE(7943)] = 643574, + [SMALL_STATE(7944)] = 643651, + [SMALL_STATE(7945)] = 643734, + [SMALL_STATE(7946)] = 643817, + [SMALL_STATE(7947)] = 643900, + [SMALL_STATE(7948)] = 643983, + [SMALL_STATE(7949)] = 644066, + [SMALL_STATE(7950)] = 644149, + [SMALL_STATE(7951)] = 644232, + [SMALL_STATE(7952)] = 644315, + [SMALL_STATE(7953)] = 644398, + [SMALL_STATE(7954)] = 644481, + [SMALL_STATE(7955)] = 644564, + [SMALL_STATE(7956)] = 644647, + [SMALL_STATE(7957)] = 644730, + [SMALL_STATE(7958)] = 644775, + [SMALL_STATE(7959)] = 644858, + [SMALL_STATE(7960)] = 644903, + [SMALL_STATE(7961)] = 644986, + [SMALL_STATE(7962)] = 645075, + [SMALL_STATE(7963)] = 645120, + [SMALL_STATE(7964)] = 645165, + [SMALL_STATE(7965)] = 645248, + [SMALL_STATE(7966)] = 645293, + [SMALL_STATE(7967)] = 645338, + [SMALL_STATE(7968)] = 645383, + [SMALL_STATE(7969)] = 645466, + [SMALL_STATE(7970)] = 645549, + [SMALL_STATE(7971)] = 645594, + [SMALL_STATE(7972)] = 645639, + [SMALL_STATE(7973)] = 645722, + [SMALL_STATE(7974)] = 645805, + [SMALL_STATE(7975)] = 645850, + [SMALL_STATE(7976)] = 645895, + [SMALL_STATE(7977)] = 645940, + [SMALL_STATE(7978)] = 645985, + [SMALL_STATE(7979)] = 646030, + [SMALL_STATE(7980)] = 646075, + [SMALL_STATE(7981)] = 646120, + [SMALL_STATE(7982)] = 646165, + [SMALL_STATE(7983)] = 646248, + [SMALL_STATE(7984)] = 646331, + [SMALL_STATE(7985)] = 646376, + [SMALL_STATE(7986)] = 646421, + [SMALL_STATE(7987)] = 646466, + [SMALL_STATE(7988)] = 646511, + [SMALL_STATE(7989)] = 646556, + [SMALL_STATE(7990)] = 646601, + [SMALL_STATE(7991)] = 646646, + [SMALL_STATE(7992)] = 646729, + [SMALL_STATE(7993)] = 646812, + [SMALL_STATE(7994)] = 646857, + [SMALL_STATE(7995)] = 646902, + [SMALL_STATE(7996)] = 646947, + [SMALL_STATE(7997)] = 646992, + [SMALL_STATE(7998)] = 647037, + [SMALL_STATE(7999)] = 647120, + [SMALL_STATE(8000)] = 647203, + [SMALL_STATE(8001)] = 647248, + [SMALL_STATE(8002)] = 647293, + [SMALL_STATE(8003)] = 647338, + [SMALL_STATE(8004)] = 647383, + [SMALL_STATE(8005)] = 647428, + [SMALL_STATE(8006)] = 647473, + [SMALL_STATE(8007)] = 647518, + [SMALL_STATE(8008)] = 647563, + [SMALL_STATE(8009)] = 647608, + [SMALL_STATE(8010)] = 647653, + [SMALL_STATE(8011)] = 647698, + [SMALL_STATE(8012)] = 647743, + [SMALL_STATE(8013)] = 647788, + [SMALL_STATE(8014)] = 647833, + [SMALL_STATE(8015)] = 647878, + [SMALL_STATE(8016)] = 647923, + [SMALL_STATE(8017)] = 647968, + [SMALL_STATE(8018)] = 648013, + [SMALL_STATE(8019)] = 648058, + [SMALL_STATE(8020)] = 648103, + [SMALL_STATE(8021)] = 648148, + [SMALL_STATE(8022)] = 648193, + [SMALL_STATE(8023)] = 648238, + [SMALL_STATE(8024)] = 648283, + [SMALL_STATE(8025)] = 648328, + [SMALL_STATE(8026)] = 648373, + [SMALL_STATE(8027)] = 648418, + [SMALL_STATE(8028)] = 648463, + [SMALL_STATE(8029)] = 648508, + [SMALL_STATE(8030)] = 648553, + [SMALL_STATE(8031)] = 648598, + [SMALL_STATE(8032)] = 648643, + [SMALL_STATE(8033)] = 648726, + [SMALL_STATE(8034)] = 648809, + [SMALL_STATE(8035)] = 648854, + [SMALL_STATE(8036)] = 648899, + [SMALL_STATE(8037)] = 648982, + [SMALL_STATE(8038)] = 649065, + [SMALL_STATE(8039)] = 649148, + [SMALL_STATE(8040)] = 649231, + [SMALL_STATE(8041)] = 649314, + [SMALL_STATE(8042)] = 649397, + [SMALL_STATE(8043)] = 649480, + [SMALL_STATE(8044)] = 649563, + [SMALL_STATE(8045)] = 649646, + [SMALL_STATE(8046)] = 649729, + [SMALL_STATE(8047)] = 649812, + [SMALL_STATE(8048)] = 649895, + [SMALL_STATE(8049)] = 649978, + [SMALL_STATE(8050)] = 650061, + [SMALL_STATE(8051)] = 650144, + [SMALL_STATE(8052)] = 650227, + [SMALL_STATE(8053)] = 650310, + [SMALL_STATE(8054)] = 650393, + [SMALL_STATE(8055)] = 650476, + [SMALL_STATE(8056)] = 650559, + [SMALL_STATE(8057)] = 650642, + [SMALL_STATE(8058)] = 650725, + [SMALL_STATE(8059)] = 650808, + [SMALL_STATE(8060)] = 650891, + [SMALL_STATE(8061)] = 650968, + [SMALL_STATE(8062)] = 651051, + [SMALL_STATE(8063)] = 651134, + [SMALL_STATE(8064)] = 651217, + [SMALL_STATE(8065)] = 651300, + [SMALL_STATE(8066)] = 651383, + [SMALL_STATE(8067)] = 651466, + [SMALL_STATE(8068)] = 651549, + [SMALL_STATE(8069)] = 651632, + [SMALL_STATE(8070)] = 651715, + [SMALL_STATE(8071)] = 651798, + [SMALL_STATE(8072)] = 651881, + [SMALL_STATE(8073)] = 651964, + [SMALL_STATE(8074)] = 652047, + [SMALL_STATE(8075)] = 652130, + [SMALL_STATE(8076)] = 652213, + [SMALL_STATE(8077)] = 652296, + [SMALL_STATE(8078)] = 652379, + [SMALL_STATE(8079)] = 652462, + [SMALL_STATE(8080)] = 652545, + [SMALL_STATE(8081)] = 652628, + [SMALL_STATE(8082)] = 652711, + [SMALL_STATE(8083)] = 652794, + [SMALL_STATE(8084)] = 652877, + [SMALL_STATE(8085)] = 652960, + [SMALL_STATE(8086)] = 653043, + [SMALL_STATE(8087)] = 653126, + [SMALL_STATE(8088)] = 653209, + [SMALL_STATE(8089)] = 653292, + [SMALL_STATE(8090)] = 653375, + [SMALL_STATE(8091)] = 653458, + [SMALL_STATE(8092)] = 653541, + [SMALL_STATE(8093)] = 653624, + [SMALL_STATE(8094)] = 653707, + [SMALL_STATE(8095)] = 653790, + [SMALL_STATE(8096)] = 653873, + [SMALL_STATE(8097)] = 653956, + [SMALL_STATE(8098)] = 654039, + [SMALL_STATE(8099)] = 654122, + [SMALL_STATE(8100)] = 654205, + [SMALL_STATE(8101)] = 654288, + [SMALL_STATE(8102)] = 654371, + [SMALL_STATE(8103)] = 654454, + [SMALL_STATE(8104)] = 654537, + [SMALL_STATE(8105)] = 654620, + [SMALL_STATE(8106)] = 654703, + [SMALL_STATE(8107)] = 654786, + [SMALL_STATE(8108)] = 654869, + [SMALL_STATE(8109)] = 654952, + [SMALL_STATE(8110)] = 655035, + [SMALL_STATE(8111)] = 655118, + [SMALL_STATE(8112)] = 655201, + [SMALL_STATE(8113)] = 655284, + [SMALL_STATE(8114)] = 655367, + [SMALL_STATE(8115)] = 655450, + [SMALL_STATE(8116)] = 655533, + [SMALL_STATE(8117)] = 655616, + [SMALL_STATE(8118)] = 655699, + [SMALL_STATE(8119)] = 655782, + [SMALL_STATE(8120)] = 655865, + [SMALL_STATE(8121)] = 655948, + [SMALL_STATE(8122)] = 656031, + [SMALL_STATE(8123)] = 656114, + [SMALL_STATE(8124)] = 656197, + [SMALL_STATE(8125)] = 656280, + [SMALL_STATE(8126)] = 656363, + [SMALL_STATE(8127)] = 656446, + [SMALL_STATE(8128)] = 656529, + [SMALL_STATE(8129)] = 656612, + [SMALL_STATE(8130)] = 656695, + [SMALL_STATE(8131)] = 656778, + [SMALL_STATE(8132)] = 656861, + [SMALL_STATE(8133)] = 656944, + [SMALL_STATE(8134)] = 657027, + [SMALL_STATE(8135)] = 657110, + [SMALL_STATE(8136)] = 657193, + [SMALL_STATE(8137)] = 657276, + [SMALL_STATE(8138)] = 657359, + [SMALL_STATE(8139)] = 657442, + [SMALL_STATE(8140)] = 657525, + [SMALL_STATE(8141)] = 657608, + [SMALL_STATE(8142)] = 657691, + [SMALL_STATE(8143)] = 657774, + [SMALL_STATE(8144)] = 657857, + [SMALL_STATE(8145)] = 657940, + [SMALL_STATE(8146)] = 658023, + [SMALL_STATE(8147)] = 658106, + [SMALL_STATE(8148)] = 658151, + [SMALL_STATE(8149)] = 658240, + [SMALL_STATE(8150)] = 658329, + [SMALL_STATE(8151)] = 658418, + [SMALL_STATE(8152)] = 658501, + [SMALL_STATE(8153)] = 658590, + [SMALL_STATE(8154)] = 658673, + [SMALL_STATE(8155)] = 658756, + [SMALL_STATE(8156)] = 658839, + [SMALL_STATE(8157)] = 658922, + [SMALL_STATE(8158)] = 659005, + [SMALL_STATE(8159)] = 659050, + [SMALL_STATE(8160)] = 659094, + [SMALL_STATE(8161)] = 659138, + [SMALL_STATE(8162)] = 659218, + [SMALL_STATE(8163)] = 659262, + [SMALL_STATE(8164)] = 659306, + [SMALL_STATE(8165)] = 659386, + [SMALL_STATE(8166)] = 659430, + [SMALL_STATE(8167)] = 659474, + [SMALL_STATE(8168)] = 659518, + [SMALL_STATE(8169)] = 659562, + [SMALL_STATE(8170)] = 659606, + [SMALL_STATE(8171)] = 659650, + [SMALL_STATE(8172)] = 659694, + [SMALL_STATE(8173)] = 659738, + [SMALL_STATE(8174)] = 659782, + [SMALL_STATE(8175)] = 659826, + [SMALL_STATE(8176)] = 659870, + [SMALL_STATE(8177)] = 659914, + [SMALL_STATE(8178)] = 659958, + [SMALL_STATE(8179)] = 660002, + [SMALL_STATE(8180)] = 660046, + [SMALL_STATE(8181)] = 660090, + [SMALL_STATE(8182)] = 660134, + [SMALL_STATE(8183)] = 660178, + [SMALL_STATE(8184)] = 660222, + [SMALL_STATE(8185)] = 660302, + [SMALL_STATE(8186)] = 660346, + [SMALL_STATE(8187)] = 660390, + [SMALL_STATE(8188)] = 660434, + [SMALL_STATE(8189)] = 660478, + [SMALL_STATE(8190)] = 660522, + [SMALL_STATE(8191)] = 660566, + [SMALL_STATE(8192)] = 660610, + [SMALL_STATE(8193)] = 660654, + [SMALL_STATE(8194)] = 660698, + [SMALL_STATE(8195)] = 660742, + [SMALL_STATE(8196)] = 660786, + [SMALL_STATE(8197)] = 660830, + [SMALL_STATE(8198)] = 660874, + [SMALL_STATE(8199)] = 660918, + [SMALL_STATE(8200)] = 660962, + [SMALL_STATE(8201)] = 661006, + [SMALL_STATE(8202)] = 661050, + [SMALL_STATE(8203)] = 661094, + [SMALL_STATE(8204)] = 661138, + [SMALL_STATE(8205)] = 661182, + [SMALL_STATE(8206)] = 661226, + [SMALL_STATE(8207)] = 661270, + [SMALL_STATE(8208)] = 661350, + [SMALL_STATE(8209)] = 661394, + [SMALL_STATE(8210)] = 661438, + [SMALL_STATE(8211)] = 661482, + [SMALL_STATE(8212)] = 661526, + [SMALL_STATE(8213)] = 661570, + [SMALL_STATE(8214)] = 661614, + [SMALL_STATE(8215)] = 661658, + [SMALL_STATE(8216)] = 661702, + [SMALL_STATE(8217)] = 661746, + [SMALL_STATE(8218)] = 661826, + [SMALL_STATE(8219)] = 661870, + [SMALL_STATE(8220)] = 661914, + [SMALL_STATE(8221)] = 661958, + [SMALL_STATE(8222)] = 662002, + [SMALL_STATE(8223)] = 662046, + [SMALL_STATE(8224)] = 662090, + [SMALL_STATE(8225)] = 662134, + [SMALL_STATE(8226)] = 662178, + [SMALL_STATE(8227)] = 662222, + [SMALL_STATE(8228)] = 662266, + [SMALL_STATE(8229)] = 662310, + [SMALL_STATE(8230)] = 662354, + [SMALL_STATE(8231)] = 662398, + [SMALL_STATE(8232)] = 662442, + [SMALL_STATE(8233)] = 662486, + [SMALL_STATE(8234)] = 662530, + [SMALL_STATE(8235)] = 662574, + [SMALL_STATE(8236)] = 662618, + [SMALL_STATE(8237)] = 662662, + [SMALL_STATE(8238)] = 662706, + [SMALL_STATE(8239)] = 662750, + [SMALL_STATE(8240)] = 662794, + [SMALL_STATE(8241)] = 662838, + [SMALL_STATE(8242)] = 662882, + [SMALL_STATE(8243)] = 662926, + [SMALL_STATE(8244)] = 662970, + [SMALL_STATE(8245)] = 663014, + [SMALL_STATE(8246)] = 663058, + [SMALL_STATE(8247)] = 663102, + [SMALL_STATE(8248)] = 663146, + [SMALL_STATE(8249)] = 663190, + [SMALL_STATE(8250)] = 663270, + [SMALL_STATE(8251)] = 663314, + [SMALL_STATE(8252)] = 663394, + [SMALL_STATE(8253)] = 663474, + [SMALL_STATE(8254)] = 663518, + [SMALL_STATE(8255)] = 663562, + [SMALL_STATE(8256)] = 663606, + [SMALL_STATE(8257)] = 663650, + [SMALL_STATE(8258)] = 663694, + [SMALL_STATE(8259)] = 663738, + [SMALL_STATE(8260)] = 663782, + [SMALL_STATE(8261)] = 663826, + [SMALL_STATE(8262)] = 663870, + [SMALL_STATE(8263)] = 663950, + [SMALL_STATE(8264)] = 663994, + [SMALL_STATE(8265)] = 664038, + [SMALL_STATE(8266)] = 664082, + [SMALL_STATE(8267)] = 664162, + [SMALL_STATE(8268)] = 664206, + [SMALL_STATE(8269)] = 664250, + [SMALL_STATE(8270)] = 664294, + [SMALL_STATE(8271)] = 664338, + [SMALL_STATE(8272)] = 664382, + [SMALL_STATE(8273)] = 664426, + [SMALL_STATE(8274)] = 664470, + [SMALL_STATE(8275)] = 664514, + [SMALL_STATE(8276)] = 664558, + [SMALL_STATE(8277)] = 664638, + [SMALL_STATE(8278)] = 664682, + [SMALL_STATE(8279)] = 664762, + [SMALL_STATE(8280)] = 664806, + [SMALL_STATE(8281)] = 664850, + [SMALL_STATE(8282)] = 664894, + [SMALL_STATE(8283)] = 664974, + [SMALL_STATE(8284)] = 665018, + [SMALL_STATE(8285)] = 665062, + [SMALL_STATE(8286)] = 665106, + [SMALL_STATE(8287)] = 665150, + [SMALL_STATE(8288)] = 665194, + [SMALL_STATE(8289)] = 665238, + [SMALL_STATE(8290)] = 665315, + [SMALL_STATE(8291)] = 665392, + [SMALL_STATE(8292)] = 665469, + [SMALL_STATE(8293)] = 665546, + [SMALL_STATE(8294)] = 665621, + [SMALL_STATE(8295)] = 665698, + [SMALL_STATE(8296)] = 665775, + [SMALL_STATE(8297)] = 665852, + [SMALL_STATE(8298)] = 665929, + [SMALL_STATE(8299)] = 666006, + [SMALL_STATE(8300)] = 666083, + [SMALL_STATE(8301)] = 666160, + [SMALL_STATE(8302)] = 666237, + [SMALL_STATE(8303)] = 666314, + [SMALL_STATE(8304)] = 666391, + [SMALL_STATE(8305)] = 666468, + [SMALL_STATE(8306)] = 666545, + [SMALL_STATE(8307)] = 666622, + [SMALL_STATE(8308)] = 666699, + [SMALL_STATE(8309)] = 666776, + [SMALL_STATE(8310)] = 666853, + [SMALL_STATE(8311)] = 666930, + [SMALL_STATE(8312)] = 667007, + [SMALL_STATE(8313)] = 667084, + [SMALL_STATE(8314)] = 667161, + [SMALL_STATE(8315)] = 667238, + [SMALL_STATE(8316)] = 667315, + [SMALL_STATE(8317)] = 667392, + [SMALL_STATE(8318)] = 667469, + [SMALL_STATE(8319)] = 667546, + [SMALL_STATE(8320)] = 667623, + [SMALL_STATE(8321)] = 667700, + [SMALL_STATE(8322)] = 667777, + [SMALL_STATE(8323)] = 667854, + [SMALL_STATE(8324)] = 667931, + [SMALL_STATE(8325)] = 668008, + [SMALL_STATE(8326)] = 668085, + [SMALL_STATE(8327)] = 668162, + [SMALL_STATE(8328)] = 668239, + [SMALL_STATE(8329)] = 668316, + [SMALL_STATE(8330)] = 668393, + [SMALL_STATE(8331)] = 668470, + [SMALL_STATE(8332)] = 668547, + [SMALL_STATE(8333)] = 668624, + [SMALL_STATE(8334)] = 668701, + [SMALL_STATE(8335)] = 668778, + [SMALL_STATE(8336)] = 668855, + [SMALL_STATE(8337)] = 668932, + [SMALL_STATE(8338)] = 669007, + [SMALL_STATE(8339)] = 669084, + [SMALL_STATE(8340)] = 669161, + [SMALL_STATE(8341)] = 669238, + [SMALL_STATE(8342)] = 669315, + [SMALL_STATE(8343)] = 669392, + [SMALL_STATE(8344)] = 669469, + [SMALL_STATE(8345)] = 669546, + [SMALL_STATE(8346)] = 669623, + [SMALL_STATE(8347)] = 669700, + [SMALL_STATE(8348)] = 669777, + [SMALL_STATE(8349)] = 669854, + [SMALL_STATE(8350)] = 669931, + [SMALL_STATE(8351)] = 670008, + [SMALL_STATE(8352)] = 670085, + [SMALL_STATE(8353)] = 670162, + [SMALL_STATE(8354)] = 670239, + [SMALL_STATE(8355)] = 670316, + [SMALL_STATE(8356)] = 670393, + [SMALL_STATE(8357)] = 670470, + [SMALL_STATE(8358)] = 670547, + [SMALL_STATE(8359)] = 670624, + [SMALL_STATE(8360)] = 670701, + [SMALL_STATE(8361)] = 670778, + [SMALL_STATE(8362)] = 670855, + [SMALL_STATE(8363)] = 670932, + [SMALL_STATE(8364)] = 671009, + [SMALL_STATE(8365)] = 671086, + [SMALL_STATE(8366)] = 671163, + [SMALL_STATE(8367)] = 671240, + [SMALL_STATE(8368)] = 671317, + [SMALL_STATE(8369)] = 671394, + [SMALL_STATE(8370)] = 671471, + [SMALL_STATE(8371)] = 671548, + [SMALL_STATE(8372)] = 671625, + [SMALL_STATE(8373)] = 671702, + [SMALL_STATE(8374)] = 671779, + [SMALL_STATE(8375)] = 671856, + [SMALL_STATE(8376)] = 671933, + [SMALL_STATE(8377)] = 672010, + [SMALL_STATE(8378)] = 672087, + [SMALL_STATE(8379)] = 672164, + [SMALL_STATE(8380)] = 672241, + [SMALL_STATE(8381)] = 672316, + [SMALL_STATE(8382)] = 672391, + [SMALL_STATE(8383)] = 672466, + [SMALL_STATE(8384)] = 672541, + [SMALL_STATE(8385)] = 672618, + [SMALL_STATE(8386)] = 672692, + [SMALL_STATE(8387)] = 672766, + [SMALL_STATE(8388)] = 672840, + [SMALL_STATE(8389)] = 672912, + [SMALL_STATE(8390)] = 672986, + [SMALL_STATE(8391)] = 673066, + [SMALL_STATE(8392)] = 673138, + [SMALL_STATE(8393)] = 673212, + [SMALL_STATE(8394)] = 673292, + [SMALL_STATE(8395)] = 673366, + [SMALL_STATE(8396)] = 673440, + [SMALL_STATE(8397)] = 673512, + [SMALL_STATE(8398)] = 673586, + [SMALL_STATE(8399)] = 673628, + [SMALL_STATE(8400)] = 673702, + [SMALL_STATE(8401)] = 673774, + [SMALL_STATE(8402)] = 673846, + [SMALL_STATE(8403)] = 673920, + [SMALL_STATE(8404)] = 673994, + [SMALL_STATE(8405)] = 674066, + [SMALL_STATE(8406)] = 674140, + [SMALL_STATE(8407)] = 674182, + [SMALL_STATE(8408)] = 674256, + [SMALL_STATE(8409)] = 674336, + [SMALL_STATE(8410)] = 674410, + [SMALL_STATE(8411)] = 674490, + [SMALL_STATE(8412)] = 674564, + [SMALL_STATE(8413)] = 674644, + [SMALL_STATE(8414)] = 674724, + [SMALL_STATE(8415)] = 674798, + [SMALL_STATE(8416)] = 674872, + [SMALL_STATE(8417)] = 674945, + [SMALL_STATE(8418)] = 675018, + [SMALL_STATE(8419)] = 675091, + [SMALL_STATE(8420)] = 675168, + [SMALL_STATE(8421)] = 675241, + [SMALL_STATE(8422)] = 675314, + [SMALL_STATE(8423)] = 675387, + [SMALL_STATE(8424)] = 675460, + [SMALL_STATE(8425)] = 675533, + [SMALL_STATE(8426)] = 675606, + [SMALL_STATE(8427)] = 675679, + [SMALL_STATE(8428)] = 675752, + [SMALL_STATE(8429)] = 675825, + [SMALL_STATE(8430)] = 675898, + [SMALL_STATE(8431)] = 675971, + [SMALL_STATE(8432)] = 676042, + [SMALL_STATE(8433)] = 676115, + [SMALL_STATE(8434)] = 676188, + [SMALL_STATE(8435)] = 676261, + [SMALL_STATE(8436)] = 676338, + [SMALL_STATE(8437)] = 676411, + [SMALL_STATE(8438)] = 676484, + [SMALL_STATE(8439)] = 676561, + [SMALL_STATE(8440)] = 676634, + [SMALL_STATE(8441)] = 676707, + [SMALL_STATE(8442)] = 676784, + [SMALL_STATE(8443)] = 676825, + [SMALL_STATE(8444)] = 676898, + [SMALL_STATE(8445)] = 676975, + [SMALL_STATE(8446)] = 677052, + [SMALL_STATE(8447)] = 677125, + [SMALL_STATE(8448)] = 677196, + [SMALL_STATE(8449)] = 677239, + [SMALL_STATE(8450)] = 677310, + [SMALL_STATE(8451)] = 677352, + [SMALL_STATE(8452)] = 677426, + [SMALL_STATE(8453)] = 677466, + [SMALL_STATE(8454)] = 677540, + [SMALL_STATE(8455)] = 677582, + [SMALL_STATE(8456)] = 677622, + [SMALL_STATE(8457)] = 677696, + [SMALL_STATE(8458)] = 677736, + [SMALL_STATE(8459)] = 677810, + [SMALL_STATE(8460)] = 677884, + [SMALL_STATE(8461)] = 677924, + [SMALL_STATE(8462)] = 677998, + [SMALL_STATE(8463)] = 678038, + [SMALL_STATE(8464)] = 678112, + [SMALL_STATE(8465)] = 678152, + [SMALL_STATE(8466)] = 678226, + [SMALL_STATE(8467)] = 678300, + [SMALL_STATE(8468)] = 678340, + [SMALL_STATE(8469)] = 678380, + [SMALL_STATE(8470)] = 678420, + [SMALL_STATE(8471)] = 678494, + [SMALL_STATE(8472)] = 678566, + [SMALL_STATE(8473)] = 678640, + [SMALL_STATE(8474)] = 678714, + [SMALL_STATE(8475)] = 678788, + [SMALL_STATE(8476)] = 678862, + [SMALL_STATE(8477)] = 678936, + [SMALL_STATE(8478)] = 678978, + [SMALL_STATE(8479)] = 679052, + [SMALL_STATE(8480)] = 679126, + [SMALL_STATE(8481)] = 679166, + [SMALL_STATE(8482)] = 679240, + [SMALL_STATE(8483)] = 679280, + [SMALL_STATE(8484)] = 679354, + [SMALL_STATE(8485)] = 679396, + [SMALL_STATE(8486)] = 679436, + [SMALL_STATE(8487)] = 679510, + [SMALL_STATE(8488)] = 679584, + [SMALL_STATE(8489)] = 679658, + [SMALL_STATE(8490)] = 679732, + [SMALL_STATE(8491)] = 679772, + [SMALL_STATE(8492)] = 679814, + [SMALL_STATE(8493)] = 679888, + [SMALL_STATE(8494)] = 679928, + [SMALL_STATE(8495)] = 679997, + [SMALL_STATE(8496)] = 680036, + [SMALL_STATE(8497)] = 680075, + [SMALL_STATE(8498)] = 680144, + [SMALL_STATE(8499)] = 680213, + [SMALL_STATE(8500)] = 680282, + [SMALL_STATE(8501)] = 680351, + [SMALL_STATE(8502)] = 680390, + [SMALL_STATE(8503)] = 680429, + [SMALL_STATE(8504)] = 680468, + [SMALL_STATE(8505)] = 680537, + [SMALL_STATE(8506)] = 680576, + [SMALL_STATE(8507)] = 680645, + [SMALL_STATE(8508)] = 680714, + [SMALL_STATE(8509)] = 680783, + [SMALL_STATE(8510)] = 680852, + [SMALL_STATE(8511)] = 680921, + [SMALL_STATE(8512)] = 680990, + [SMALL_STATE(8513)] = 681029, + [SMALL_STATE(8514)] = 681070, + [SMALL_STATE(8515)] = 681109, + [SMALL_STATE(8516)] = 681150, + [SMALL_STATE(8517)] = 681189, + [SMALL_STATE(8518)] = 681258, + [SMALL_STATE(8519)] = 681327, + [SMALL_STATE(8520)] = 681396, + [SMALL_STATE(8521)] = 681437, + [SMALL_STATE(8522)] = 681506, + [SMALL_STATE(8523)] = 681545, + [SMALL_STATE(8524)] = 681584, + [SMALL_STATE(8525)] = 681623, + [SMALL_STATE(8526)] = 681692, + [SMALL_STATE(8527)] = 681731, + [SMALL_STATE(8528)] = 681800, + [SMALL_STATE(8529)] = 681869, + [SMALL_STATE(8530)] = 681938, + [SMALL_STATE(8531)] = 682007, + [SMALL_STATE(8532)] = 682076, + [SMALL_STATE(8533)] = 682115, + [SMALL_STATE(8534)] = 682184, + [SMALL_STATE(8535)] = 682223, + [SMALL_STATE(8536)] = 682292, + [SMALL_STATE(8537)] = 682331, + [SMALL_STATE(8538)] = 682400, + [SMALL_STATE(8539)] = 682439, + [SMALL_STATE(8540)] = 682508, + [SMALL_STATE(8541)] = 682577, + [SMALL_STATE(8542)] = 682616, + [SMALL_STATE(8543)] = 682685, + [SMALL_STATE(8544)] = 682724, + [SMALL_STATE(8545)] = 682763, + [SMALL_STATE(8546)] = 682802, + [SMALL_STATE(8547)] = 682871, + [SMALL_STATE(8548)] = 682940, + [SMALL_STATE(8549)] = 682979, + [SMALL_STATE(8550)] = 683022, + [SMALL_STATE(8551)] = 683061, + [SMALL_STATE(8552)] = 683130, + [SMALL_STATE(8553)] = 683169, + [SMALL_STATE(8554)] = 683238, + [SMALL_STATE(8555)] = 683279, + [SMALL_STATE(8556)] = 683348, + [SMALL_STATE(8557)] = 683387, + [SMALL_STATE(8558)] = 683456, + [SMALL_STATE(8559)] = 683525, + [SMALL_STATE(8560)] = 683568, + [SMALL_STATE(8561)] = 683611, + [SMALL_STATE(8562)] = 683680, + [SMALL_STATE(8563)] = 683749, + [SMALL_STATE(8564)] = 683818, + [SMALL_STATE(8565)] = 683887, + [SMALL_STATE(8566)] = 683926, + [SMALL_STATE(8567)] = 683995, + [SMALL_STATE(8568)] = 684064, + [SMALL_STATE(8569)] = 684103, + [SMALL_STATE(8570)] = 684144, + [SMALL_STATE(8571)] = 684213, + [SMALL_STATE(8572)] = 684282, + [SMALL_STATE(8573)] = 684351, + [SMALL_STATE(8574)] = 684390, + [SMALL_STATE(8575)] = 684459, + [SMALL_STATE(8576)] = 684498, + [SMALL_STATE(8577)] = 684537, + [SMALL_STATE(8578)] = 684606, + [SMALL_STATE(8579)] = 684645, + [SMALL_STATE(8580)] = 684684, + [SMALL_STATE(8581)] = 684753, + [SMALL_STATE(8582)] = 684822, + [SMALL_STATE(8583)] = 684891, + [SMALL_STATE(8584)] = 684960, + [SMALL_STATE(8585)] = 685029, + [SMALL_STATE(8586)] = 685098, + [SMALL_STATE(8587)] = 685167, + [SMALL_STATE(8588)] = 685236, + [SMALL_STATE(8589)] = 685305, + [SMALL_STATE(8590)] = 685374, + [SMALL_STATE(8591)] = 685443, + [SMALL_STATE(8592)] = 685512, + [SMALL_STATE(8593)] = 685581, + [SMALL_STATE(8594)] = 685650, + [SMALL_STATE(8595)] = 685719, + [SMALL_STATE(8596)] = 685788, + [SMALL_STATE(8597)] = 685857, + [SMALL_STATE(8598)] = 685926, + [SMALL_STATE(8599)] = 685995, + [SMALL_STATE(8600)] = 686036, + [SMALL_STATE(8601)] = 686105, + [SMALL_STATE(8602)] = 686174, + [SMALL_STATE(8603)] = 686243, + [SMALL_STATE(8604)] = 686312, + [SMALL_STATE(8605)] = 686381, + [SMALL_STATE(8606)] = 686450, + [SMALL_STATE(8607)] = 686519, + [SMALL_STATE(8608)] = 686588, + [SMALL_STATE(8609)] = 686657, + [SMALL_STATE(8610)] = 686726, + [SMALL_STATE(8611)] = 686795, + [SMALL_STATE(8612)] = 686864, + [SMALL_STATE(8613)] = 686933, + [SMALL_STATE(8614)] = 687002, + [SMALL_STATE(8615)] = 687071, + [SMALL_STATE(8616)] = 687140, + [SMALL_STATE(8617)] = 687209, + [SMALL_STATE(8618)] = 687278, + [SMALL_STATE(8619)] = 687347, + [SMALL_STATE(8620)] = 687416, + [SMALL_STATE(8621)] = 687485, + [SMALL_STATE(8622)] = 687554, + [SMALL_STATE(8623)] = 687623, + [SMALL_STATE(8624)] = 687692, + [SMALL_STATE(8625)] = 687761, + [SMALL_STATE(8626)] = 687830, + [SMALL_STATE(8627)] = 687899, + [SMALL_STATE(8628)] = 687968, + [SMALL_STATE(8629)] = 688037, + [SMALL_STATE(8630)] = 688106, + [SMALL_STATE(8631)] = 688145, + [SMALL_STATE(8632)] = 688214, + [SMALL_STATE(8633)] = 688283, + [SMALL_STATE(8634)] = 688352, + [SMALL_STATE(8635)] = 688421, + [SMALL_STATE(8636)] = 688490, + [SMALL_STATE(8637)] = 688559, + [SMALL_STATE(8638)] = 688628, + [SMALL_STATE(8639)] = 688697, + [SMALL_STATE(8640)] = 688766, + [SMALL_STATE(8641)] = 688835, + [SMALL_STATE(8642)] = 688904, + [SMALL_STATE(8643)] = 688973, + [SMALL_STATE(8644)] = 689042, + [SMALL_STATE(8645)] = 689111, + [SMALL_STATE(8646)] = 689180, + [SMALL_STATE(8647)] = 689249, + [SMALL_STATE(8648)] = 689318, + [SMALL_STATE(8649)] = 689387, + [SMALL_STATE(8650)] = 689456, + [SMALL_STATE(8651)] = 689525, + [SMALL_STATE(8652)] = 689594, + [SMALL_STATE(8653)] = 689663, + [SMALL_STATE(8654)] = 689732, + [SMALL_STATE(8655)] = 689801, + [SMALL_STATE(8656)] = 689870, + [SMALL_STATE(8657)] = 689939, + [SMALL_STATE(8658)] = 690008, + [SMALL_STATE(8659)] = 690077, + [SMALL_STATE(8660)] = 690146, + [SMALL_STATE(8661)] = 690215, + [SMALL_STATE(8662)] = 690284, + [SMALL_STATE(8663)] = 690353, + [SMALL_STATE(8664)] = 690422, + [SMALL_STATE(8665)] = 690491, + [SMALL_STATE(8666)] = 690560, + [SMALL_STATE(8667)] = 690629, + [SMALL_STATE(8668)] = 690698, + [SMALL_STATE(8669)] = 690767, + [SMALL_STATE(8670)] = 690836, + [SMALL_STATE(8671)] = 690905, + [SMALL_STATE(8672)] = 690974, + [SMALL_STATE(8673)] = 691043, + [SMALL_STATE(8674)] = 691112, + [SMALL_STATE(8675)] = 691181, + [SMALL_STATE(8676)] = 691250, + [SMALL_STATE(8677)] = 691319, + [SMALL_STATE(8678)] = 691388, + [SMALL_STATE(8679)] = 691457, + [SMALL_STATE(8680)] = 691526, + [SMALL_STATE(8681)] = 691595, + [SMALL_STATE(8682)] = 691664, + [SMALL_STATE(8683)] = 691733, + [SMALL_STATE(8684)] = 691802, + [SMALL_STATE(8685)] = 691871, + [SMALL_STATE(8686)] = 691940, + [SMALL_STATE(8687)] = 692009, + [SMALL_STATE(8688)] = 692078, + [SMALL_STATE(8689)] = 692147, + [SMALL_STATE(8690)] = 692216, + [SMALL_STATE(8691)] = 692285, + [SMALL_STATE(8692)] = 692354, + [SMALL_STATE(8693)] = 692423, + [SMALL_STATE(8694)] = 692492, + [SMALL_STATE(8695)] = 692561, + [SMALL_STATE(8696)] = 692630, + [SMALL_STATE(8697)] = 692699, + [SMALL_STATE(8698)] = 692768, + [SMALL_STATE(8699)] = 692837, + [SMALL_STATE(8700)] = 692906, + [SMALL_STATE(8701)] = 692975, + [SMALL_STATE(8702)] = 693044, + [SMALL_STATE(8703)] = 693113, + [SMALL_STATE(8704)] = 693182, + [SMALL_STATE(8705)] = 693251, + [SMALL_STATE(8706)] = 693320, + [SMALL_STATE(8707)] = 693389, + [SMALL_STATE(8708)] = 693458, + [SMALL_STATE(8709)] = 693527, + [SMALL_STATE(8710)] = 693566, + [SMALL_STATE(8711)] = 693635, + [SMALL_STATE(8712)] = 693704, + [SMALL_STATE(8713)] = 693743, + [SMALL_STATE(8714)] = 693812, + [SMALL_STATE(8715)] = 693851, + [SMALL_STATE(8716)] = 693920, + [SMALL_STATE(8717)] = 693959, + [SMALL_STATE(8718)] = 694028, + [SMALL_STATE(8719)] = 694067, + [SMALL_STATE(8720)] = 694136, + [SMALL_STATE(8721)] = 694177, + [SMALL_STATE(8722)] = 694216, + [SMALL_STATE(8723)] = 694257, + [SMALL_STATE(8724)] = 694296, + [SMALL_STATE(8725)] = 694335, + [SMALL_STATE(8726)] = 694404, + [SMALL_STATE(8727)] = 694443, + [SMALL_STATE(8728)] = 694512, + [SMALL_STATE(8729)] = 694551, + [SMALL_STATE(8730)] = 694620, + [SMALL_STATE(8731)] = 694689, + [SMALL_STATE(8732)] = 694728, + [SMALL_STATE(8733)] = 694767, + [SMALL_STATE(8734)] = 694806, + [SMALL_STATE(8735)] = 694845, + [SMALL_STATE(8736)] = 694886, + [SMALL_STATE(8737)] = 694925, + [SMALL_STATE(8738)] = 694966, + [SMALL_STATE(8739)] = 695035, + [SMALL_STATE(8740)] = 695074, + [SMALL_STATE(8741)] = 695113, + [SMALL_STATE(8742)] = 695154, + [SMALL_STATE(8743)] = 695223, + [SMALL_STATE(8744)] = 695263, + [SMALL_STATE(8745)] = 695301, + [SMALL_STATE(8746)] = 695339, + [SMALL_STATE(8747)] = 695377, + [SMALL_STATE(8748)] = 695415, + [SMALL_STATE(8749)] = 695455, + [SMALL_STATE(8750)] = 695493, + [SMALL_STATE(8751)] = 695561, + [SMALL_STATE(8752)] = 695629, + [SMALL_STATE(8753)] = 695667, + [SMALL_STATE(8754)] = 695705, + [SMALL_STATE(8755)] = 695745, + [SMALL_STATE(8756)] = 695783, + [SMALL_STATE(8757)] = 695823, + [SMALL_STATE(8758)] = 695861, + [SMALL_STATE(8759)] = 695899, + [SMALL_STATE(8760)] = 695937, + [SMALL_STATE(8761)] = 695975, + [SMALL_STATE(8762)] = 696013, + [SMALL_STATE(8763)] = 696053, + [SMALL_STATE(8764)] = 696091, + [SMALL_STATE(8765)] = 696129, + [SMALL_STATE(8766)] = 696169, + [SMALL_STATE(8767)] = 696237, + [SMALL_STATE(8768)] = 696275, + [SMALL_STATE(8769)] = 696343, + [SMALL_STATE(8770)] = 696381, + [SMALL_STATE(8771)] = 696419, + [SMALL_STATE(8772)] = 696487, + [SMALL_STATE(8773)] = 696525, + [SMALL_STATE(8774)] = 696563, + [SMALL_STATE(8775)] = 696603, + [SMALL_STATE(8776)] = 696641, + [SMALL_STATE(8777)] = 696683, + [SMALL_STATE(8778)] = 696721, + [SMALL_STATE(8779)] = 696789, + [SMALL_STATE(8780)] = 696827, + [SMALL_STATE(8781)] = 696867, + [SMALL_STATE(8782)] = 696905, + [SMALL_STATE(8783)] = 696943, + [SMALL_STATE(8784)] = 696981, + [SMALL_STATE(8785)] = 697019, + [SMALL_STATE(8786)] = 697057, + [SMALL_STATE(8787)] = 697125, + [SMALL_STATE(8788)] = 697163, + [SMALL_STATE(8789)] = 697201, + [SMALL_STATE(8790)] = 697239, + [SMALL_STATE(8791)] = 697277, + [SMALL_STATE(8792)] = 697315, + [SMALL_STATE(8793)] = 697353, + [SMALL_STATE(8794)] = 697395, + [SMALL_STATE(8795)] = 697463, + [SMALL_STATE(8796)] = 697505, + [SMALL_STATE(8797)] = 697573, + [SMALL_STATE(8798)] = 697613, + [SMALL_STATE(8799)] = 697655, + [SMALL_STATE(8800)] = 697693, + [SMALL_STATE(8801)] = 697731, + [SMALL_STATE(8802)] = 697769, + [SMALL_STATE(8803)] = 697837, + [SMALL_STATE(8804)] = 697905, + [SMALL_STATE(8805)] = 697943, + [SMALL_STATE(8806)] = 697983, + [SMALL_STATE(8807)] = 698025, + [SMALL_STATE(8808)] = 698067, + [SMALL_STATE(8809)] = 698109, + [SMALL_STATE(8810)] = 698147, + [SMALL_STATE(8811)] = 698215, + [SMALL_STATE(8812)] = 698283, + [SMALL_STATE(8813)] = 698351, + [SMALL_STATE(8814)] = 698389, + [SMALL_STATE(8815)] = 698457, + [SMALL_STATE(8816)] = 698525, + [SMALL_STATE(8817)] = 698593, + [SMALL_STATE(8818)] = 698635, + [SMALL_STATE(8819)] = 698703, + [SMALL_STATE(8820)] = 698771, + [SMALL_STATE(8821)] = 698813, + [SMALL_STATE(8822)] = 698881, + [SMALL_STATE(8823)] = 698919, + [SMALL_STATE(8824)] = 698987, + [SMALL_STATE(8825)] = 699025, + [SMALL_STATE(8826)] = 699093, + [SMALL_STATE(8827)] = 699161, + [SMALL_STATE(8828)] = 699229, + [SMALL_STATE(8829)] = 699266, + [SMALL_STATE(8830)] = 699303, + [SMALL_STATE(8831)] = 699342, + [SMALL_STATE(8832)] = 699379, + [SMALL_STATE(8833)] = 699418, + [SMALL_STATE(8834)] = 699455, + [SMALL_STATE(8835)] = 699494, + [SMALL_STATE(8836)] = 699531, + [SMALL_STATE(8837)] = 699568, + [SMALL_STATE(8838)] = 699605, + [SMALL_STATE(8839)] = 699642, + [SMALL_STATE(8840)] = 699679, + [SMALL_STATE(8841)] = 699720, + [SMALL_STATE(8842)] = 699757, + [SMALL_STATE(8843)] = 699822, + [SMALL_STATE(8844)] = 699887, + [SMALL_STATE(8845)] = 699924, + [SMALL_STATE(8846)] = 699963, + [SMALL_STATE(8847)] = 700000, + [SMALL_STATE(8848)] = 700041, + [SMALL_STATE(8849)] = 700082, + [SMALL_STATE(8850)] = 700123, + [SMALL_STATE(8851)] = 700162, + [SMALL_STATE(8852)] = 700227, + [SMALL_STATE(8853)] = 700264, + [SMALL_STATE(8854)] = 700301, + [SMALL_STATE(8855)] = 700338, + [SMALL_STATE(8856)] = 700375, + [SMALL_STATE(8857)] = 700414, + [SMALL_STATE(8858)] = 700451, + [SMALL_STATE(8859)] = 700488, + [SMALL_STATE(8860)] = 700527, + [SMALL_STATE(8861)] = 700568, + [SMALL_STATE(8862)] = 700605, + [SMALL_STATE(8863)] = 700642, + [SMALL_STATE(8864)] = 700679, + [SMALL_STATE(8865)] = 700716, + [SMALL_STATE(8866)] = 700753, + [SMALL_STATE(8867)] = 700790, + [SMALL_STATE(8868)] = 700827, + [SMALL_STATE(8869)] = 700864, + [SMALL_STATE(8870)] = 700901, + [SMALL_STATE(8871)] = 700938, + [SMALL_STATE(8872)] = 700975, + [SMALL_STATE(8873)] = 701012, + [SMALL_STATE(8874)] = 701051, + [SMALL_STATE(8875)] = 701088, + [SMALL_STATE(8876)] = 701125, + [SMALL_STATE(8877)] = 701162, + [SMALL_STATE(8878)] = 701201, + [SMALL_STATE(8879)] = 701238, + [SMALL_STATE(8880)] = 701303, + [SMALL_STATE(8881)] = 701340, + [SMALL_STATE(8882)] = 701377, + [SMALL_STATE(8883)] = 701414, + [SMALL_STATE(8884)] = 701451, + [SMALL_STATE(8885)] = 701488, + [SMALL_STATE(8886)] = 701525, + [SMALL_STATE(8887)] = 701562, + [SMALL_STATE(8888)] = 701599, + [SMALL_STATE(8889)] = 701636, + [SMALL_STATE(8890)] = 701673, + [SMALL_STATE(8891)] = 701710, + [SMALL_STATE(8892)] = 701751, + [SMALL_STATE(8893)] = 701788, + [SMALL_STATE(8894)] = 701825, + [SMALL_STATE(8895)] = 701866, + [SMALL_STATE(8896)] = 701903, + [SMALL_STATE(8897)] = 701940, + [SMALL_STATE(8898)] = 701981, + [SMALL_STATE(8899)] = 702018, + [SMALL_STATE(8900)] = 702055, + [SMALL_STATE(8901)] = 702092, + [SMALL_STATE(8902)] = 702129, + [SMALL_STATE(8903)] = 702166, + [SMALL_STATE(8904)] = 702203, + [SMALL_STATE(8905)] = 702240, + [SMALL_STATE(8906)] = 702281, + [SMALL_STATE(8907)] = 702322, + [SMALL_STATE(8908)] = 702387, + [SMALL_STATE(8909)] = 702424, + [SMALL_STATE(8910)] = 702461, + [SMALL_STATE(8911)] = 702500, + [SMALL_STATE(8912)] = 702541, + [SMALL_STATE(8913)] = 702578, + [SMALL_STATE(8914)] = 702615, + [SMALL_STATE(8915)] = 702654, + [SMALL_STATE(8916)] = 702691, + [SMALL_STATE(8917)] = 702728, + [SMALL_STATE(8918)] = 702765, + [SMALL_STATE(8919)] = 702802, + [SMALL_STATE(8920)] = 702839, + [SMALL_STATE(8921)] = 702876, + [SMALL_STATE(8922)] = 702913, + [SMALL_STATE(8923)] = 702950, + [SMALL_STATE(8924)] = 702987, + [SMALL_STATE(8925)] = 703028, + [SMALL_STATE(8926)] = 703065, + [SMALL_STATE(8927)] = 703102, + [SMALL_STATE(8928)] = 703141, + [SMALL_STATE(8929)] = 703178, + [SMALL_STATE(8930)] = 703215, + [SMALL_STATE(8931)] = 703252, + [SMALL_STATE(8932)] = 703289, + [SMALL_STATE(8933)] = 703326, + [SMALL_STATE(8934)] = 703363, + [SMALL_STATE(8935)] = 703400, + [SMALL_STATE(8936)] = 703437, + [SMALL_STATE(8937)] = 703474, + [SMALL_STATE(8938)] = 703515, + [SMALL_STATE(8939)] = 703556, + [SMALL_STATE(8940)] = 703597, + [SMALL_STATE(8941)] = 703634, + [SMALL_STATE(8942)] = 703671, + [SMALL_STATE(8943)] = 703708, + [SMALL_STATE(8944)] = 703773, + [SMALL_STATE(8945)] = 703810, + [SMALL_STATE(8946)] = 703847, + [SMALL_STATE(8947)] = 703884, + [SMALL_STATE(8948)] = 703921, + [SMALL_STATE(8949)] = 703957, + [SMALL_STATE(8950)] = 703993, + [SMALL_STATE(8951)] = 704029, + [SMALL_STATE(8952)] = 704065, + [SMALL_STATE(8953)] = 704101, + [SMALL_STATE(8954)] = 704137, + [SMALL_STATE(8955)] = 704173, + [SMALL_STATE(8956)] = 704209, + [SMALL_STATE(8957)] = 704247, + [SMALL_STATE(8958)] = 704285, + [SMALL_STATE(8959)] = 704325, + [SMALL_STATE(8960)] = 704361, + [SMALL_STATE(8961)] = 704397, + [SMALL_STATE(8962)] = 704433, + [SMALL_STATE(8963)] = 704469, + [SMALL_STATE(8964)] = 704505, + [SMALL_STATE(8965)] = 704541, + [SMALL_STATE(8966)] = 704581, + [SMALL_STATE(8967)] = 704621, + [SMALL_STATE(8968)] = 704657, + [SMALL_STATE(8969)] = 704693, + [SMALL_STATE(8970)] = 704731, + [SMALL_STATE(8971)] = 704767, + [SMALL_STATE(8972)] = 704803, + [SMALL_STATE(8973)] = 704841, + [SMALL_STATE(8974)] = 704877, + [SMALL_STATE(8975)] = 704913, + [SMALL_STATE(8976)] = 704949, + [SMALL_STATE(8977)] = 704985, + [SMALL_STATE(8978)] = 705021, + [SMALL_STATE(8979)] = 705057, + [SMALL_STATE(8980)] = 705093, + [SMALL_STATE(8981)] = 705129, + [SMALL_STATE(8982)] = 705167, + [SMALL_STATE(8983)] = 705203, + [SMALL_STATE(8984)] = 705239, + [SMALL_STATE(8985)] = 705275, + [SMALL_STATE(8986)] = 705311, + [SMALL_STATE(8987)] = 705349, + [SMALL_STATE(8988)] = 705387, + [SMALL_STATE(8989)] = 705423, + [SMALL_STATE(8990)] = 705459, + [SMALL_STATE(8991)] = 705495, + [SMALL_STATE(8992)] = 705531, + [SMALL_STATE(8993)] = 705567, + [SMALL_STATE(8994)] = 705603, + [SMALL_STATE(8995)] = 705641, + [SMALL_STATE(8996)] = 705677, + [SMALL_STATE(8997)] = 705713, + [SMALL_STATE(8998)] = 705749, + [SMALL_STATE(8999)] = 705785, + [SMALL_STATE(9000)] = 705821, + [SMALL_STATE(9001)] = 705857, + [SMALL_STATE(9002)] = 705895, + [SMALL_STATE(9003)] = 705931, + [SMALL_STATE(9004)] = 705967, + [SMALL_STATE(9005)] = 706003, + [SMALL_STATE(9006)] = 706043, + [SMALL_STATE(9007)] = 706087, + [SMALL_STATE(9008)] = 706131, + [SMALL_STATE(9009)] = 706167, + [SMALL_STATE(9010)] = 706203, + [SMALL_STATE(9011)] = 706239, + [SMALL_STATE(9012)] = 706275, + [SMALL_STATE(9013)] = 706315, + [SMALL_STATE(9014)] = 706355, + [SMALL_STATE(9015)] = 706395, + [SMALL_STATE(9016)] = 706433, + [SMALL_STATE(9017)] = 706469, + [SMALL_STATE(9018)] = 706505, + [SMALL_STATE(9019)] = 706541, + [SMALL_STATE(9020)] = 706585, + [SMALL_STATE(9021)] = 706631, + [SMALL_STATE(9022)] = 706667, + [SMALL_STATE(9023)] = 706703, + [SMALL_STATE(9024)] = 706739, + [SMALL_STATE(9025)] = 706775, + [SMALL_STATE(9026)] = 706811, + [SMALL_STATE(9027)] = 706847, + [SMALL_STATE(9028)] = 706893, + [SMALL_STATE(9029)] = 706931, + [SMALL_STATE(9030)] = 706967, + [SMALL_STATE(9031)] = 707011, + [SMALL_STATE(9032)] = 707047, + [SMALL_STATE(9033)] = 707085, + [SMALL_STATE(9034)] = 707123, + [SMALL_STATE(9035)] = 707161, + [SMALL_STATE(9036)] = 707197, + [SMALL_STATE(9037)] = 707233, + [SMALL_STATE(9038)] = 707269, + [SMALL_STATE(9039)] = 707309, + [SMALL_STATE(9040)] = 707349, + [SMALL_STATE(9041)] = 707389, + [SMALL_STATE(9042)] = 707425, + [SMALL_STATE(9043)] = 707461, + [SMALL_STATE(9044)] = 707497, + [SMALL_STATE(9045)] = 707533, + [SMALL_STATE(9046)] = 707569, + [SMALL_STATE(9047)] = 707605, + [SMALL_STATE(9048)] = 707641, + [SMALL_STATE(9049)] = 707677, + [SMALL_STATE(9050)] = 707713, + [SMALL_STATE(9051)] = 707749, + [SMALL_STATE(9052)] = 707785, + [SMALL_STATE(9053)] = 707821, + [SMALL_STATE(9054)] = 707857, + [SMALL_STATE(9055)] = 707893, + [SMALL_STATE(9056)] = 707929, + [SMALL_STATE(9057)] = 707965, + [SMALL_STATE(9058)] = 708001, + [SMALL_STATE(9059)] = 708037, + [SMALL_STATE(9060)] = 708073, + [SMALL_STATE(9061)] = 708109, + [SMALL_STATE(9062)] = 708145, + [SMALL_STATE(9063)] = 708181, + [SMALL_STATE(9064)] = 708217, + [SMALL_STATE(9065)] = 708253, + [SMALL_STATE(9066)] = 708289, + [SMALL_STATE(9067)] = 708325, + [SMALL_STATE(9068)] = 708365, + [SMALL_STATE(9069)] = 708405, + [SMALL_STATE(9070)] = 708445, + [SMALL_STATE(9071)] = 708481, + [SMALL_STATE(9072)] = 708519, + [SMALL_STATE(9073)] = 708555, + [SMALL_STATE(9074)] = 708591, + [SMALL_STATE(9075)] = 708627, + [SMALL_STATE(9076)] = 708667, + [SMALL_STATE(9077)] = 708703, + [SMALL_STATE(9078)] = 708739, + [SMALL_STATE(9079)] = 708775, + [SMALL_STATE(9080)] = 708811, + [SMALL_STATE(9081)] = 708847, + [SMALL_STATE(9082)] = 708883, + [SMALL_STATE(9083)] = 708919, + [SMALL_STATE(9084)] = 708955, + [SMALL_STATE(9085)] = 708991, + [SMALL_STATE(9086)] = 709027, + [SMALL_STATE(9087)] = 709063, + [SMALL_STATE(9088)] = 709099, + [SMALL_STATE(9089)] = 709135, + [SMALL_STATE(9090)] = 709171, + [SMALL_STATE(9091)] = 709207, + [SMALL_STATE(9092)] = 709243, + [SMALL_STATE(9093)] = 709279, + [SMALL_STATE(9094)] = 709315, + [SMALL_STATE(9095)] = 709351, + [SMALL_STATE(9096)] = 709387, + [SMALL_STATE(9097)] = 709423, + [SMALL_STATE(9098)] = 709459, + [SMALL_STATE(9099)] = 709495, + [SMALL_STATE(9100)] = 709531, + [SMALL_STATE(9101)] = 709567, + [SMALL_STATE(9102)] = 709603, + [SMALL_STATE(9103)] = 709639, + [SMALL_STATE(9104)] = 709675, + [SMALL_STATE(9105)] = 709711, + [SMALL_STATE(9106)] = 709749, + [SMALL_STATE(9107)] = 709789, + [SMALL_STATE(9108)] = 709829, + [SMALL_STATE(9109)] = 709865, + [SMALL_STATE(9110)] = 709901, + [SMALL_STATE(9111)] = 709937, + [SMALL_STATE(9112)] = 709973, + [SMALL_STATE(9113)] = 710009, + [SMALL_STATE(9114)] = 710045, + [SMALL_STATE(9115)] = 710081, + [SMALL_STATE(9116)] = 710117, + [SMALL_STATE(9117)] = 710153, + [SMALL_STATE(9118)] = 710189, + [SMALL_STATE(9119)] = 710225, + [SMALL_STATE(9120)] = 710261, + [SMALL_STATE(9121)] = 710297, + [SMALL_STATE(9122)] = 710333, + [SMALL_STATE(9123)] = 710371, + [SMALL_STATE(9124)] = 710407, + [SMALL_STATE(9125)] = 710443, + [SMALL_STATE(9126)] = 710479, + [SMALL_STATE(9127)] = 710515, + [SMALL_STATE(9128)] = 710551, + [SMALL_STATE(9129)] = 710587, + [SMALL_STATE(9130)] = 710623, + [SMALL_STATE(9131)] = 710659, + [SMALL_STATE(9132)] = 710695, + [SMALL_STATE(9133)] = 710731, + [SMALL_STATE(9134)] = 710767, + [SMALL_STATE(9135)] = 710803, + [SMALL_STATE(9136)] = 710839, + [SMALL_STATE(9137)] = 710875, + [SMALL_STATE(9138)] = 710911, + [SMALL_STATE(9139)] = 710947, + [SMALL_STATE(9140)] = 710983, + [SMALL_STATE(9141)] = 711019, + [SMALL_STATE(9142)] = 711055, + [SMALL_STATE(9143)] = 711091, + [SMALL_STATE(9144)] = 711127, + [SMALL_STATE(9145)] = 711163, + [SMALL_STATE(9146)] = 711199, + [SMALL_STATE(9147)] = 711235, + [SMALL_STATE(9148)] = 711271, + [SMALL_STATE(9149)] = 711307, + [SMALL_STATE(9150)] = 711343, + [SMALL_STATE(9151)] = 711379, + [SMALL_STATE(9152)] = 711415, + [SMALL_STATE(9153)] = 711451, + [SMALL_STATE(9154)] = 711487, + [SMALL_STATE(9155)] = 711523, + [SMALL_STATE(9156)] = 711559, + [SMALL_STATE(9157)] = 711595, + [SMALL_STATE(9158)] = 711631, + [SMALL_STATE(9159)] = 711667, + [SMALL_STATE(9160)] = 711703, + [SMALL_STATE(9161)] = 711739, + [SMALL_STATE(9162)] = 711775, + [SMALL_STATE(9163)] = 711811, + [SMALL_STATE(9164)] = 711847, + [SMALL_STATE(9165)] = 711883, + [SMALL_STATE(9166)] = 711919, + [SMALL_STATE(9167)] = 711955, + [SMALL_STATE(9168)] = 711991, + [SMALL_STATE(9169)] = 712027, + [SMALL_STATE(9170)] = 712063, + [SMALL_STATE(9171)] = 712101, + [SMALL_STATE(9172)] = 712137, + [SMALL_STATE(9173)] = 712173, + [SMALL_STATE(9174)] = 712209, + [SMALL_STATE(9175)] = 712245, + [SMALL_STATE(9176)] = 712281, + [SMALL_STATE(9177)] = 712317, + [SMALL_STATE(9178)] = 712353, + [SMALL_STATE(9179)] = 712389, + [SMALL_STATE(9180)] = 712425, + [SMALL_STATE(9181)] = 712465, + [SMALL_STATE(9182)] = 712504, + [SMALL_STATE(9183)] = 712547, + [SMALL_STATE(9184)] = 712584, + [SMALL_STATE(9185)] = 712619, + [SMALL_STATE(9186)] = 712654, + [SMALL_STATE(9187)] = 712691, + [SMALL_STATE(9188)] = 712734, + [SMALL_STATE(9189)] = 712779, + [SMALL_STATE(9190)] = 712822, + [SMALL_STATE(9191)] = 712859, + [SMALL_STATE(9192)] = 712902, + [SMALL_STATE(9193)] = 712937, + [SMALL_STATE(9194)] = 712982, + [SMALL_STATE(9195)] = 713017, + [SMALL_STATE(9196)] = 713054, + [SMALL_STATE(9197)] = 713089, + [SMALL_STATE(9198)] = 713124, + [SMALL_STATE(9199)] = 713159, + [SMALL_STATE(9200)] = 713194, + [SMALL_STATE(9201)] = 713229, + [SMALL_STATE(9202)] = 713266, + [SMALL_STATE(9203)] = 713301, + [SMALL_STATE(9204)] = 713338, + [SMALL_STATE(9205)] = 713375, + [SMALL_STATE(9206)] = 713410, + [SMALL_STATE(9207)] = 713445, + [SMALL_STATE(9208)] = 713480, + [SMALL_STATE(9209)] = 713515, + [SMALL_STATE(9210)] = 713550, + [SMALL_STATE(9211)] = 713587, + [SMALL_STATE(9212)] = 713622, + [SMALL_STATE(9213)] = 713657, + [SMALL_STATE(9214)] = 713692, + [SMALL_STATE(9215)] = 713727, + [SMALL_STATE(9216)] = 713762, + [SMALL_STATE(9217)] = 713797, + [SMALL_STATE(9218)] = 713832, + [SMALL_STATE(9219)] = 713867, + [SMALL_STATE(9220)] = 713902, + [SMALL_STATE(9221)] = 713937, + [SMALL_STATE(9222)] = 713972, + [SMALL_STATE(9223)] = 714009, + [SMALL_STATE(9224)] = 714044, + [SMALL_STATE(9225)] = 714079, + [SMALL_STATE(9226)] = 714114, + [SMALL_STATE(9227)] = 714149, + [SMALL_STATE(9228)] = 714184, + [SMALL_STATE(9229)] = 714219, + [SMALL_STATE(9230)] = 714254, + [SMALL_STATE(9231)] = 714289, + [SMALL_STATE(9232)] = 714324, + [SMALL_STATE(9233)] = 714359, + [SMALL_STATE(9234)] = 714394, + [SMALL_STATE(9235)] = 714429, + [SMALL_STATE(9236)] = 714464, + [SMALL_STATE(9237)] = 714499, + [SMALL_STATE(9238)] = 714534, + [SMALL_STATE(9239)] = 714569, + [SMALL_STATE(9240)] = 714604, + [SMALL_STATE(9241)] = 714639, + [SMALL_STATE(9242)] = 714676, + [SMALL_STATE(9243)] = 714711, + [SMALL_STATE(9244)] = 714746, + [SMALL_STATE(9245)] = 714781, + [SMALL_STATE(9246)] = 714816, + [SMALL_STATE(9247)] = 714851, + [SMALL_STATE(9248)] = 714888, + [SMALL_STATE(9249)] = 714931, + [SMALL_STATE(9250)] = 714966, + [SMALL_STATE(9251)] = 715001, + [SMALL_STATE(9252)] = 715036, + [SMALL_STATE(9253)] = 715071, + [SMALL_STATE(9254)] = 715106, + [SMALL_STATE(9255)] = 715141, + [SMALL_STATE(9256)] = 715176, + [SMALL_STATE(9257)] = 715211, + [SMALL_STATE(9258)] = 715248, + [SMALL_STATE(9259)] = 715285, + [SMALL_STATE(9260)] = 715320, + [SMALL_STATE(9261)] = 715355, + [SMALL_STATE(9262)] = 715392, + [SMALL_STATE(9263)] = 715429, + [SMALL_STATE(9264)] = 715466, + [SMALL_STATE(9265)] = 715501, + [SMALL_STATE(9266)] = 715544, + [SMALL_STATE(9267)] = 715581, + [SMALL_STATE(9268)] = 715616, + [SMALL_STATE(9269)] = 715651, + [SMALL_STATE(9270)] = 715686, + [SMALL_STATE(9271)] = 715723, + [SMALL_STATE(9272)] = 715758, + [SMALL_STATE(9273)] = 715793, + [SMALL_STATE(9274)] = 715828, + [SMALL_STATE(9275)] = 715867, + [SMALL_STATE(9276)] = 715904, + [SMALL_STATE(9277)] = 715943, + [SMALL_STATE(9278)] = 715978, + [SMALL_STATE(9279)] = 716013, + [SMALL_STATE(9280)] = 716048, + [SMALL_STATE(9281)] = 716085, + [SMALL_STATE(9282)] = 716120, + [SMALL_STATE(9283)] = 716155, + [SMALL_STATE(9284)] = 716190, + [SMALL_STATE(9285)] = 716225, + [SMALL_STATE(9286)] = 716260, + [SMALL_STATE(9287)] = 716295, + [SMALL_STATE(9288)] = 716330, + [SMALL_STATE(9289)] = 716365, + [SMALL_STATE(9290)] = 716400, + [SMALL_STATE(9291)] = 716435, + [SMALL_STATE(9292)] = 716470, + [SMALL_STATE(9293)] = 716505, + [SMALL_STATE(9294)] = 716542, + [SMALL_STATE(9295)] = 716577, + [SMALL_STATE(9296)] = 716612, + [SMALL_STATE(9297)] = 716647, + [SMALL_STATE(9298)] = 716682, + [SMALL_STATE(9299)] = 716717, + [SMALL_STATE(9300)] = 716752, + [SMALL_STATE(9301)] = 716787, + [SMALL_STATE(9302)] = 716822, + [SMALL_STATE(9303)] = 716857, + [SMALL_STATE(9304)] = 716894, + [SMALL_STATE(9305)] = 716937, + [SMALL_STATE(9306)] = 716980, + [SMALL_STATE(9307)] = 717023, + [SMALL_STATE(9308)] = 717066, + [SMALL_STATE(9309)] = 717109, + [SMALL_STATE(9310)] = 717144, + [SMALL_STATE(9311)] = 717187, + [SMALL_STATE(9312)] = 717222, + [SMALL_STATE(9313)] = 717257, + [SMALL_STATE(9314)] = 717294, + [SMALL_STATE(9315)] = 717329, + [SMALL_STATE(9316)] = 717364, + [SMALL_STATE(9317)] = 717401, + [SMALL_STATE(9318)] = 717436, + [SMALL_STATE(9319)] = 717471, + [SMALL_STATE(9320)] = 717506, + [SMALL_STATE(9321)] = 717541, + [SMALL_STATE(9322)] = 717576, + [SMALL_STATE(9323)] = 717611, + [SMALL_STATE(9324)] = 717646, + [SMALL_STATE(9325)] = 717681, + [SMALL_STATE(9326)] = 717716, + [SMALL_STATE(9327)] = 717751, + [SMALL_STATE(9328)] = 717788, + [SMALL_STATE(9329)] = 717823, + [SMALL_STATE(9330)] = 717858, + [SMALL_STATE(9331)] = 717893, + [SMALL_STATE(9332)] = 717928, + [SMALL_STATE(9333)] = 717963, + [SMALL_STATE(9334)] = 717998, + [SMALL_STATE(9335)] = 718033, + [SMALL_STATE(9336)] = 718068, + [SMALL_STATE(9337)] = 718103, + [SMALL_STATE(9338)] = 718138, + [SMALL_STATE(9339)] = 718173, + [SMALL_STATE(9340)] = 718208, + [SMALL_STATE(9341)] = 718243, + [SMALL_STATE(9342)] = 718278, + [SMALL_STATE(9343)] = 718313, + [SMALL_STATE(9344)] = 718348, + [SMALL_STATE(9345)] = 718383, + [SMALL_STATE(9346)] = 718428, + [SMALL_STATE(9347)] = 718465, + [SMALL_STATE(9348)] = 718500, + [SMALL_STATE(9349)] = 718535, + [SMALL_STATE(9350)] = 718570, + [SMALL_STATE(9351)] = 718605, + [SMALL_STATE(9352)] = 718640, + [SMALL_STATE(9353)] = 718675, + [SMALL_STATE(9354)] = 718710, + [SMALL_STATE(9355)] = 718745, + [SMALL_STATE(9356)] = 718780, + [SMALL_STATE(9357)] = 718815, + [SMALL_STATE(9358)] = 718850, + [SMALL_STATE(9359)] = 718885, + [SMALL_STATE(9360)] = 718920, + [SMALL_STATE(9361)] = 718955, + [SMALL_STATE(9362)] = 718990, + [SMALL_STATE(9363)] = 719025, + [SMALL_STATE(9364)] = 719060, + [SMALL_STATE(9365)] = 719097, + [SMALL_STATE(9366)] = 719132, + [SMALL_STATE(9367)] = 719167, + [SMALL_STATE(9368)] = 719202, + [SMALL_STATE(9369)] = 719237, + [SMALL_STATE(9370)] = 719272, + [SMALL_STATE(9371)] = 719307, + [SMALL_STATE(9372)] = 719342, + [SMALL_STATE(9373)] = 719377, + [SMALL_STATE(9374)] = 719412, + [SMALL_STATE(9375)] = 719451, + [SMALL_STATE(9376)] = 719486, + [SMALL_STATE(9377)] = 719529, + [SMALL_STATE(9378)] = 719572, + [SMALL_STATE(9379)] = 719607, + [SMALL_STATE(9380)] = 719642, + [SMALL_STATE(9381)] = 719677, + [SMALL_STATE(9382)] = 719712, + [SMALL_STATE(9383)] = 719747, + [SMALL_STATE(9384)] = 719782, + [SMALL_STATE(9385)] = 719821, + [SMALL_STATE(9386)] = 719856, + [SMALL_STATE(9387)] = 719891, + [SMALL_STATE(9388)] = 719926, + [SMALL_STATE(9389)] = 719963, + [SMALL_STATE(9390)] = 720000, + [SMALL_STATE(9391)] = 720039, + [SMALL_STATE(9392)] = 720078, + [SMALL_STATE(9393)] = 720113, + [SMALL_STATE(9394)] = 720148, + [SMALL_STATE(9395)] = 720191, + [SMALL_STATE(9396)] = 720230, + [SMALL_STATE(9397)] = 720273, + [SMALL_STATE(9398)] = 720316, + [SMALL_STATE(9399)] = 720351, + [SMALL_STATE(9400)] = 720388, + [SMALL_STATE(9401)] = 720423, + [SMALL_STATE(9402)] = 720458, + [SMALL_STATE(9403)] = 720495, + [SMALL_STATE(9404)] = 720530, + [SMALL_STATE(9405)] = 720565, + [SMALL_STATE(9406)] = 720600, + [SMALL_STATE(9407)] = 720635, + [SMALL_STATE(9408)] = 720670, + [SMALL_STATE(9409)] = 720709, + [SMALL_STATE(9410)] = 720752, + [SMALL_STATE(9411)] = 720795, + [SMALL_STATE(9412)] = 720830, + [SMALL_STATE(9413)] = 720865, + [SMALL_STATE(9414)] = 720902, + [SMALL_STATE(9415)] = 720937, + [SMALL_STATE(9416)] = 720972, + [SMALL_STATE(9417)] = 721015, + [SMALL_STATE(9418)] = 721050, + [SMALL_STATE(9419)] = 721095, + [SMALL_STATE(9420)] = 721130, + [SMALL_STATE(9421)] = 721167, + [SMALL_STATE(9422)] = 721202, + [SMALL_STATE(9423)] = 721237, + [SMALL_STATE(9424)] = 721274, + [SMALL_STATE(9425)] = 721309, + [SMALL_STATE(9426)] = 721344, + [SMALL_STATE(9427)] = 721379, + [SMALL_STATE(9428)] = 721414, + [SMALL_STATE(9429)] = 721449, + [SMALL_STATE(9430)] = 721484, + [SMALL_STATE(9431)] = 721519, + [SMALL_STATE(9432)] = 721554, + [SMALL_STATE(9433)] = 721589, + [SMALL_STATE(9434)] = 721624, + [SMALL_STATE(9435)] = 721659, + [SMALL_STATE(9436)] = 721694, + [SMALL_STATE(9437)] = 721729, + [SMALL_STATE(9438)] = 721764, + [SMALL_STATE(9439)] = 721799, + [SMALL_STATE(9440)] = 721834, + [SMALL_STATE(9441)] = 721869, + [SMALL_STATE(9442)] = 721904, + [SMALL_STATE(9443)] = 721939, + [SMALL_STATE(9444)] = 721974, + [SMALL_STATE(9445)] = 722009, + [SMALL_STATE(9446)] = 722044, + [SMALL_STATE(9447)] = 722079, + [SMALL_STATE(9448)] = 722114, + [SMALL_STATE(9449)] = 722149, + [SMALL_STATE(9450)] = 722184, + [SMALL_STATE(9451)] = 722219, + [SMALL_STATE(9452)] = 722254, + [SMALL_STATE(9453)] = 722289, + [SMALL_STATE(9454)] = 722324, + [SMALL_STATE(9455)] = 722359, + [SMALL_STATE(9456)] = 722394, + [SMALL_STATE(9457)] = 722429, + [SMALL_STATE(9458)] = 722464, + [SMALL_STATE(9459)] = 722499, + [SMALL_STATE(9460)] = 722534, + [SMALL_STATE(9461)] = 722569, + [SMALL_STATE(9462)] = 722604, + [SMALL_STATE(9463)] = 722639, + [SMALL_STATE(9464)] = 722674, + [SMALL_STATE(9465)] = 722709, + [SMALL_STATE(9466)] = 722744, + [SMALL_STATE(9467)] = 722779, + [SMALL_STATE(9468)] = 722814, + [SMALL_STATE(9469)] = 722849, + [SMALL_STATE(9470)] = 722884, + [SMALL_STATE(9471)] = 722919, + [SMALL_STATE(9472)] = 722954, + [SMALL_STATE(9473)] = 722989, + [SMALL_STATE(9474)] = 723024, + [SMALL_STATE(9475)] = 723059, + [SMALL_STATE(9476)] = 723094, + [SMALL_STATE(9477)] = 723131, + [SMALL_STATE(9478)] = 723166, + [SMALL_STATE(9479)] = 723205, + [SMALL_STATE(9480)] = 723244, + [SMALL_STATE(9481)] = 723279, + [SMALL_STATE(9482)] = 723314, + [SMALL_STATE(9483)] = 723349, + [SMALL_STATE(9484)] = 723384, + [SMALL_STATE(9485)] = 723419, + [SMALL_STATE(9486)] = 723462, + [SMALL_STATE(9487)] = 723497, + [SMALL_STATE(9488)] = 723535, + [SMALL_STATE(9489)] = 723569, + [SMALL_STATE(9490)] = 723603, + [SMALL_STATE(9491)] = 723637, + [SMALL_STATE(9492)] = 723671, + [SMALL_STATE(9493)] = 723705, + [SMALL_STATE(9494)] = 723739, + [SMALL_STATE(9495)] = 723773, + [SMALL_STATE(9496)] = 723807, + [SMALL_STATE(9497)] = 723841, + [SMALL_STATE(9498)] = 723877, + [SMALL_STATE(9499)] = 723911, + [SMALL_STATE(9500)] = 723947, + [SMALL_STATE(9501)] = 723981, + [SMALL_STATE(9502)] = 724015, + [SMALL_STATE(9503)] = 724049, + [SMALL_STATE(9504)] = 724083, + [SMALL_STATE(9505)] = 724125, + [SMALL_STATE(9506)] = 724159, + [SMALL_STATE(9507)] = 724193, + [SMALL_STATE(9508)] = 724227, + [SMALL_STATE(9509)] = 724263, + [SMALL_STATE(9510)] = 724297, + [SMALL_STATE(9511)] = 724331, + [SMALL_STATE(9512)] = 724365, + [SMALL_STATE(9513)] = 724399, + [SMALL_STATE(9514)] = 724433, + [SMALL_STATE(9515)] = 724467, + [SMALL_STATE(9516)] = 724501, + [SMALL_STATE(9517)] = 724535, + [SMALL_STATE(9518)] = 724571, + [SMALL_STATE(9519)] = 724607, + [SMALL_STATE(9520)] = 724641, + [SMALL_STATE(9521)] = 724675, + [SMALL_STATE(9522)] = 724709, + [SMALL_STATE(9523)] = 724743, + [SMALL_STATE(9524)] = 724777, + [SMALL_STATE(9525)] = 724811, + [SMALL_STATE(9526)] = 724845, + [SMALL_STATE(9527)] = 724879, + [SMALL_STATE(9528)] = 724917, + [SMALL_STATE(9529)] = 724951, + [SMALL_STATE(9530)] = 724993, + [SMALL_STATE(9531)] = 725029, + [SMALL_STATE(9532)] = 725063, + [SMALL_STATE(9533)] = 725099, + [SMALL_STATE(9534)] = 725133, + [SMALL_STATE(9535)] = 725167, + [SMALL_STATE(9536)] = 725201, + [SMALL_STATE(9537)] = 725235, + [SMALL_STATE(9538)] = 725269, + [SMALL_STATE(9539)] = 725303, + [SMALL_STATE(9540)] = 725337, + [SMALL_STATE(9541)] = 725371, + [SMALL_STATE(9542)] = 725405, + [SMALL_STATE(9543)] = 725439, + [SMALL_STATE(9544)] = 725473, + [SMALL_STATE(9545)] = 725507, + [SMALL_STATE(9546)] = 725541, + [SMALL_STATE(9547)] = 725575, + [SMALL_STATE(9548)] = 725609, + [SMALL_STATE(9549)] = 725643, + [SMALL_STATE(9550)] = 725679, + [SMALL_STATE(9551)] = 725715, + [SMALL_STATE(9552)] = 725751, + [SMALL_STATE(9553)] = 725785, + [SMALL_STATE(9554)] = 725819, + [SMALL_STATE(9555)] = 725855, + [SMALL_STATE(9556)] = 725889, + [SMALL_STATE(9557)] = 725925, + [SMALL_STATE(9558)] = 725961, + [SMALL_STATE(9559)] = 725995, + [SMALL_STATE(9560)] = 726029, + [SMALL_STATE(9561)] = 726063, + [SMALL_STATE(9562)] = 726097, + [SMALL_STATE(9563)] = 726131, + [SMALL_STATE(9564)] = 726165, + [SMALL_STATE(9565)] = 726199, + [SMALL_STATE(9566)] = 726237, + [SMALL_STATE(9567)] = 726271, + [SMALL_STATE(9568)] = 726305, + [SMALL_STATE(9569)] = 726339, + [SMALL_STATE(9570)] = 726373, + [SMALL_STATE(9571)] = 726407, + [SMALL_STATE(9572)] = 726441, + [SMALL_STATE(9573)] = 726475, + [SMALL_STATE(9574)] = 726509, + [SMALL_STATE(9575)] = 726543, + [SMALL_STATE(9576)] = 726577, + [SMALL_STATE(9577)] = 726611, + [SMALL_STATE(9578)] = 726645, + [SMALL_STATE(9579)] = 726679, + [SMALL_STATE(9580)] = 726713, + [SMALL_STATE(9581)] = 726747, + [SMALL_STATE(9582)] = 726781, + [SMALL_STATE(9583)] = 726815, + [SMALL_STATE(9584)] = 726849, + [SMALL_STATE(9585)] = 726883, + [SMALL_STATE(9586)] = 726917, + [SMALL_STATE(9587)] = 726951, + [SMALL_STATE(9588)] = 726985, + [SMALL_STATE(9589)] = 727019, + [SMALL_STATE(9590)] = 727053, + [SMALL_STATE(9591)] = 727087, + [SMALL_STATE(9592)] = 727121, + [SMALL_STATE(9593)] = 727155, + [SMALL_STATE(9594)] = 727189, + [SMALL_STATE(9595)] = 727223, + [SMALL_STATE(9596)] = 727257, + [SMALL_STATE(9597)] = 727291, + [SMALL_STATE(9598)] = 727325, + [SMALL_STATE(9599)] = 727359, + [SMALL_STATE(9600)] = 727393, + [SMALL_STATE(9601)] = 727427, + [SMALL_STATE(9602)] = 727461, + [SMALL_STATE(9603)] = 727495, + [SMALL_STATE(9604)] = 727529, + [SMALL_STATE(9605)] = 727563, + [SMALL_STATE(9606)] = 727597, + [SMALL_STATE(9607)] = 727635, + [SMALL_STATE(9608)] = 727669, + [SMALL_STATE(9609)] = 727703, + [SMALL_STATE(9610)] = 727737, + [SMALL_STATE(9611)] = 727771, + [SMALL_STATE(9612)] = 727805, + [SMALL_STATE(9613)] = 727841, + [SMALL_STATE(9614)] = 727875, + [SMALL_STATE(9615)] = 727909, + [SMALL_STATE(9616)] = 727943, + [SMALL_STATE(9617)] = 727977, + [SMALL_STATE(9618)] = 728011, + [SMALL_STATE(9619)] = 728045, + [SMALL_STATE(9620)] = 728079, + [SMALL_STATE(9621)] = 728113, + [SMALL_STATE(9622)] = 728147, + [SMALL_STATE(9623)] = 728181, + [SMALL_STATE(9624)] = 728215, + [SMALL_STATE(9625)] = 728249, + [SMALL_STATE(9626)] = 728283, + [SMALL_STATE(9627)] = 728317, + [SMALL_STATE(9628)] = 728351, + [SMALL_STATE(9629)] = 728387, + [SMALL_STATE(9630)] = 728421, + [SMALL_STATE(9631)] = 728455, + [SMALL_STATE(9632)] = 728489, + [SMALL_STATE(9633)] = 728523, + [SMALL_STATE(9634)] = 728557, + [SMALL_STATE(9635)] = 728591, + [SMALL_STATE(9636)] = 728625, + [SMALL_STATE(9637)] = 728659, + [SMALL_STATE(9638)] = 728693, + [SMALL_STATE(9639)] = 728727, + [SMALL_STATE(9640)] = 728761, + [SMALL_STATE(9641)] = 728795, + [SMALL_STATE(9642)] = 728829, + [SMALL_STATE(9643)] = 728867, + [SMALL_STATE(9644)] = 728905, + [SMALL_STATE(9645)] = 728939, + [SMALL_STATE(9646)] = 728973, + [SMALL_STATE(9647)] = 729007, + [SMALL_STATE(9648)] = 729041, + [SMALL_STATE(9649)] = 729075, + [SMALL_STATE(9650)] = 729109, + [SMALL_STATE(9651)] = 729143, + [SMALL_STATE(9652)] = 729177, + [SMALL_STATE(9653)] = 729211, + [SMALL_STATE(9654)] = 729245, + [SMALL_STATE(9655)] = 729279, + [SMALL_STATE(9656)] = 729313, + [SMALL_STATE(9657)] = 729347, + [SMALL_STATE(9658)] = 729383, + [SMALL_STATE(9659)] = 729417, + [SMALL_STATE(9660)] = 729451, + [SMALL_STATE(9661)] = 729485, + [SMALL_STATE(9662)] = 729519, + [SMALL_STATE(9663)] = 729553, + [SMALL_STATE(9664)] = 729587, + [SMALL_STATE(9665)] = 729621, + [SMALL_STATE(9666)] = 729655, + [SMALL_STATE(9667)] = 729689, + [SMALL_STATE(9668)] = 729723, + [SMALL_STATE(9669)] = 729757, + [SMALL_STATE(9670)] = 729791, + [SMALL_STATE(9671)] = 729825, + [SMALL_STATE(9672)] = 729859, + [SMALL_STATE(9673)] = 729893, + [SMALL_STATE(9674)] = 729927, + [SMALL_STATE(9675)] = 729961, + [SMALL_STATE(9676)] = 729995, + [SMALL_STATE(9677)] = 730031, + [SMALL_STATE(9678)] = 730065, + [SMALL_STATE(9679)] = 730099, + [SMALL_STATE(9680)] = 730133, + [SMALL_STATE(9681)] = 730171, + [SMALL_STATE(9682)] = 730209, + [SMALL_STATE(9683)] = 730243, + [SMALL_STATE(9684)] = 730277, + [SMALL_STATE(9685)] = 730311, + [SMALL_STATE(9686)] = 730345, + [SMALL_STATE(9687)] = 730379, + [SMALL_STATE(9688)] = 730413, + [SMALL_STATE(9689)] = 730447, + [SMALL_STATE(9690)] = 730481, + [SMALL_STATE(9691)] = 730515, + [SMALL_STATE(9692)] = 730549, + [SMALL_STATE(9693)] = 730583, + [SMALL_STATE(9694)] = 730617, + [SMALL_STATE(9695)] = 730651, + [SMALL_STATE(9696)] = 730685, + [SMALL_STATE(9697)] = 730719, + [SMALL_STATE(9698)] = 730753, + [SMALL_STATE(9699)] = 730787, + [SMALL_STATE(9700)] = 730821, + [SMALL_STATE(9701)] = 730855, + [SMALL_STATE(9702)] = 730889, + [SMALL_STATE(9703)] = 730923, + [SMALL_STATE(9704)] = 730957, + [SMALL_STATE(9705)] = 730991, + [SMALL_STATE(9706)] = 731025, + [SMALL_STATE(9707)] = 731067, + [SMALL_STATE(9708)] = 731101, + [SMALL_STATE(9709)] = 731137, + [SMALL_STATE(9710)] = 731171, + [SMALL_STATE(9711)] = 731205, + [SMALL_STATE(9712)] = 731239, + [SMALL_STATE(9713)] = 731273, + [SMALL_STATE(9714)] = 731307, + [SMALL_STATE(9715)] = 731341, + [SMALL_STATE(9716)] = 731379, + [SMALL_STATE(9717)] = 731417, + [SMALL_STATE(9718)] = 731451, + [SMALL_STATE(9719)] = 731485, + [SMALL_STATE(9720)] = 731519, + [SMALL_STATE(9721)] = 731555, + [SMALL_STATE(9722)] = 731589, + [SMALL_STATE(9723)] = 731623, + [SMALL_STATE(9724)] = 731659, + [SMALL_STATE(9725)] = 731693, + [SMALL_STATE(9726)] = 731727, + [SMALL_STATE(9727)] = 731763, + [SMALL_STATE(9728)] = 731799, + [SMALL_STATE(9729)] = 731833, + [SMALL_STATE(9730)] = 731867, + [SMALL_STATE(9731)] = 731901, + [SMALL_STATE(9732)] = 731935, + [SMALL_STATE(9733)] = 731969, + [SMALL_STATE(9734)] = 732003, + [SMALL_STATE(9735)] = 732037, + [SMALL_STATE(9736)] = 732071, + [SMALL_STATE(9737)] = 732105, + [SMALL_STATE(9738)] = 732139, + [SMALL_STATE(9739)] = 732173, + [SMALL_STATE(9740)] = 732209, + [SMALL_STATE(9741)] = 732243, + [SMALL_STATE(9742)] = 732277, + [SMALL_STATE(9743)] = 732311, + [SMALL_STATE(9744)] = 732345, + [SMALL_STATE(9745)] = 732379, + [SMALL_STATE(9746)] = 732413, + [SMALL_STATE(9747)] = 732447, + [SMALL_STATE(9748)] = 732483, + [SMALL_STATE(9749)] = 732517, + [SMALL_STATE(9750)] = 732551, + [SMALL_STATE(9751)] = 732585, + [SMALL_STATE(9752)] = 732621, + [SMALL_STATE(9753)] = 732655, + [SMALL_STATE(9754)] = 732689, + [SMALL_STATE(9755)] = 732725, + [SMALL_STATE(9756)] = 732759, + [SMALL_STATE(9757)] = 732793, + [SMALL_STATE(9758)] = 732829, + [SMALL_STATE(9759)] = 732863, + [SMALL_STATE(9760)] = 732897, + [SMALL_STATE(9761)] = 732933, + [SMALL_STATE(9762)] = 732967, + [SMALL_STATE(9763)] = 733001, + [SMALL_STATE(9764)] = 733035, + [SMALL_STATE(9765)] = 733069, + [SMALL_STATE(9766)] = 733103, + [SMALL_STATE(9767)] = 733139, + [SMALL_STATE(9768)] = 733173, + [SMALL_STATE(9769)] = 733207, + [SMALL_STATE(9770)] = 733241, + [SMALL_STATE(9771)] = 733275, + [SMALL_STATE(9772)] = 733309, + [SMALL_STATE(9773)] = 733343, + [SMALL_STATE(9774)] = 733377, + [SMALL_STATE(9775)] = 733411, + [SMALL_STATE(9776)] = 733445, + [SMALL_STATE(9777)] = 733479, + [SMALL_STATE(9778)] = 733513, + [SMALL_STATE(9779)] = 733547, + [SMALL_STATE(9780)] = 733581, + [SMALL_STATE(9781)] = 733615, + [SMALL_STATE(9782)] = 733649, + [SMALL_STATE(9783)] = 733685, + [SMALL_STATE(9784)] = 733719, + [SMALL_STATE(9785)] = 733753, + [SMALL_STATE(9786)] = 733789, + [SMALL_STATE(9787)] = 733825, + [SMALL_STATE(9788)] = 733859, + [SMALL_STATE(9789)] = 733893, + [SMALL_STATE(9790)] = 733927, + [SMALL_STATE(9791)] = 733961, + [SMALL_STATE(9792)] = 733995, + [SMALL_STATE(9793)] = 734029, + [SMALL_STATE(9794)] = 734063, + [SMALL_STATE(9795)] = 734097, + [SMALL_STATE(9796)] = 734131, + [SMALL_STATE(9797)] = 734165, + [SMALL_STATE(9798)] = 734199, + [SMALL_STATE(9799)] = 734233, + [SMALL_STATE(9800)] = 734267, + [SMALL_STATE(9801)] = 734301, + [SMALL_STATE(9802)] = 734335, + [SMALL_STATE(9803)] = 734369, + [SMALL_STATE(9804)] = 734403, + [SMALL_STATE(9805)] = 734437, + [SMALL_STATE(9806)] = 734471, + [SMALL_STATE(9807)] = 734507, + [SMALL_STATE(9808)] = 734541, + [SMALL_STATE(9809)] = 734575, + [SMALL_STATE(9810)] = 734609, + [SMALL_STATE(9811)] = 734643, + [SMALL_STATE(9812)] = 734679, + [SMALL_STATE(9813)] = 734713, + [SMALL_STATE(9814)] = 734747, + [SMALL_STATE(9815)] = 734781, + [SMALL_STATE(9816)] = 734815, + [SMALL_STATE(9817)] = 734849, + [SMALL_STATE(9818)] = 734883, + [SMALL_STATE(9819)] = 734917, + [SMALL_STATE(9820)] = 734951, + [SMALL_STATE(9821)] = 734985, + [SMALL_STATE(9822)] = 735019, + [SMALL_STATE(9823)] = 735053, + [SMALL_STATE(9824)] = 735087, + [SMALL_STATE(9825)] = 735121, + [SMALL_STATE(9826)] = 735155, + [SMALL_STATE(9827)] = 735189, + [SMALL_STATE(9828)] = 735223, + [SMALL_STATE(9829)] = 735257, + [SMALL_STATE(9830)] = 735291, + [SMALL_STATE(9831)] = 735325, + [SMALL_STATE(9832)] = 735367, + [SMALL_STATE(9833)] = 735403, + [SMALL_STATE(9834)] = 735437, + [SMALL_STATE(9835)] = 735471, + [SMALL_STATE(9836)] = 735505, + [SMALL_STATE(9837)] = 735539, + [SMALL_STATE(9838)] = 735575, + [SMALL_STATE(9839)] = 735609, + [SMALL_STATE(9840)] = 735643, + [SMALL_STATE(9841)] = 735677, + [SMALL_STATE(9842)] = 735711, + [SMALL_STATE(9843)] = 735745, + [SMALL_STATE(9844)] = 735779, + [SMALL_STATE(9845)] = 735813, + [SMALL_STATE(9846)] = 735849, + [SMALL_STATE(9847)] = 735883, + [SMALL_STATE(9848)] = 735917, + [SMALL_STATE(9849)] = 735951, + [SMALL_STATE(9850)] = 735993, + [SMALL_STATE(9851)] = 736027, + [SMALL_STATE(9852)] = 736061, + [SMALL_STATE(9853)] = 736095, + [SMALL_STATE(9854)] = 736131, + [SMALL_STATE(9855)] = 736165, + [SMALL_STATE(9856)] = 736199, + [SMALL_STATE(9857)] = 736233, + [SMALL_STATE(9858)] = 736267, + [SMALL_STATE(9859)] = 736303, + [SMALL_STATE(9860)] = 736337, + [SMALL_STATE(9861)] = 736371, + [SMALL_STATE(9862)] = 736407, + [SMALL_STATE(9863)] = 736441, + [SMALL_STATE(9864)] = 736479, + [SMALL_STATE(9865)] = 736513, + [SMALL_STATE(9866)] = 736547, + [SMALL_STATE(9867)] = 736591, + [SMALL_STATE(9868)] = 736625, + [SMALL_STATE(9869)] = 736661, + [SMALL_STATE(9870)] = 736697, + [SMALL_STATE(9871)] = 736733, + [SMALL_STATE(9872)] = 736769, + [SMALL_STATE(9873)] = 736803, + [SMALL_STATE(9874)] = 736837, + [SMALL_STATE(9875)] = 736871, + [SMALL_STATE(9876)] = 736905, + [SMALL_STATE(9877)] = 736939, + [SMALL_STATE(9878)] = 736973, + [SMALL_STATE(9879)] = 737015, + [SMALL_STATE(9880)] = 737051, + [SMALL_STATE(9881)] = 737085, + [SMALL_STATE(9882)] = 737119, + [SMALL_STATE(9883)] = 737153, + [SMALL_STATE(9884)] = 737187, + [SMALL_STATE(9885)] = 737221, + [SMALL_STATE(9886)] = 737255, + [SMALL_STATE(9887)] = 737289, + [SMALL_STATE(9888)] = 737323, + [SMALL_STATE(9889)] = 737357, + [SMALL_STATE(9890)] = 737391, + [SMALL_STATE(9891)] = 737425, + [SMALL_STATE(9892)] = 737461, + [SMALL_STATE(9893)] = 737497, + [SMALL_STATE(9894)] = 737531, + [SMALL_STATE(9895)] = 737567, + [SMALL_STATE(9896)] = 737601, + [SMALL_STATE(9897)] = 737635, + [SMALL_STATE(9898)] = 737669, + [SMALL_STATE(9899)] = 737705, + [SMALL_STATE(9900)] = 737741, + [SMALL_STATE(9901)] = 737775, + [SMALL_STATE(9902)] = 737813, + [SMALL_STATE(9903)] = 737847, + [SMALL_STATE(9904)] = 737881, + [SMALL_STATE(9905)] = 737915, + [SMALL_STATE(9906)] = 737949, + [SMALL_STATE(9907)] = 737985, + [SMALL_STATE(9908)] = 738019, + [SMALL_STATE(9909)] = 738061, + [SMALL_STATE(9910)] = 738095, + [SMALL_STATE(9911)] = 738129, + [SMALL_STATE(9912)] = 738163, + [SMALL_STATE(9913)] = 738197, + [SMALL_STATE(9914)] = 738231, + [SMALL_STATE(9915)] = 738265, + [SMALL_STATE(9916)] = 738303, + [SMALL_STATE(9917)] = 738345, + [SMALL_STATE(9918)] = 738387, + [SMALL_STATE(9919)] = 738421, + [SMALL_STATE(9920)] = 738455, + [SMALL_STATE(9921)] = 738489, + [SMALL_STATE(9922)] = 738523, + [SMALL_STATE(9923)] = 738557, + [SMALL_STATE(9924)] = 738591, + [SMALL_STATE(9925)] = 738625, + [SMALL_STATE(9926)] = 738659, + [SMALL_STATE(9927)] = 738693, + [SMALL_STATE(9928)] = 738727, + [SMALL_STATE(9929)] = 738761, + [SMALL_STATE(9930)] = 738795, + [SMALL_STATE(9931)] = 738829, + [SMALL_STATE(9932)] = 738867, + [SMALL_STATE(9933)] = 738909, + [SMALL_STATE(9934)] = 738951, + [SMALL_STATE(9935)] = 738985, + [SMALL_STATE(9936)] = 739021, + [SMALL_STATE(9937)] = 739055, + [SMALL_STATE(9938)] = 739089, + [SMALL_STATE(9939)] = 739123, + [SMALL_STATE(9940)] = 739157, + [SMALL_STATE(9941)] = 739191, + [SMALL_STATE(9942)] = 739225, + [SMALL_STATE(9943)] = 739261, + [SMALL_STATE(9944)] = 739295, + [SMALL_STATE(9945)] = 739329, + [SMALL_STATE(9946)] = 739363, + [SMALL_STATE(9947)] = 739397, + [SMALL_STATE(9948)] = 739435, + [SMALL_STATE(9949)] = 739473, + [SMALL_STATE(9950)] = 739511, + [SMALL_STATE(9951)] = 739545, + [SMALL_STATE(9952)] = 739579, + [SMALL_STATE(9953)] = 739613, + [SMALL_STATE(9954)] = 739647, + [SMALL_STATE(9955)] = 739681, + [SMALL_STATE(9956)] = 739715, + [SMALL_STATE(9957)] = 739749, + [SMALL_STATE(9958)] = 739783, + [SMALL_STATE(9959)] = 739817, + [SMALL_STATE(9960)] = 739851, + [SMALL_STATE(9961)] = 739893, + [SMALL_STATE(9962)] = 739927, + [SMALL_STATE(9963)] = 739961, + [SMALL_STATE(9964)] = 739995, + [SMALL_STATE(9965)] = 740029, + [SMALL_STATE(9966)] = 740063, + [SMALL_STATE(9967)] = 740097, + [SMALL_STATE(9968)] = 740131, + [SMALL_STATE(9969)] = 740165, + [SMALL_STATE(9970)] = 740199, + [SMALL_STATE(9971)] = 740235, + [SMALL_STATE(9972)] = 740269, + [SMALL_STATE(9973)] = 740303, + [SMALL_STATE(9974)] = 740337, + [SMALL_STATE(9975)] = 740371, + [SMALL_STATE(9976)] = 740405, + [SMALL_STATE(9977)] = 740439, + [SMALL_STATE(9978)] = 740483, + [SMALL_STATE(9979)] = 740517, + [SMALL_STATE(9980)] = 740551, + [SMALL_STATE(9981)] = 740587, + [SMALL_STATE(9982)] = 740621, + [SMALL_STATE(9983)] = 740657, + [SMALL_STATE(9984)] = 740691, + [SMALL_STATE(9985)] = 740725, + [SMALL_STATE(9986)] = 740759, + [SMALL_STATE(9987)] = 740793, + [SMALL_STATE(9988)] = 740827, + [SMALL_STATE(9989)] = 740861, + [SMALL_STATE(9990)] = 740895, + [SMALL_STATE(9991)] = 740929, + [SMALL_STATE(9992)] = 740963, + [SMALL_STATE(9993)] = 740997, + [SMALL_STATE(9994)] = 741031, + [SMALL_STATE(9995)] = 741065, + [SMALL_STATE(9996)] = 741099, + [SMALL_STATE(9997)] = 741133, + [SMALL_STATE(9998)] = 741167, + [SMALL_STATE(9999)] = 741201, + [SMALL_STATE(10000)] = 741235, + [SMALL_STATE(10001)] = 741269, + [SMALL_STATE(10002)] = 741303, + [SMALL_STATE(10003)] = 741337, + [SMALL_STATE(10004)] = 741371, + [SMALL_STATE(10005)] = 741405, + [SMALL_STATE(10006)] = 741439, + [SMALL_STATE(10007)] = 741473, + [SMALL_STATE(10008)] = 741507, + [SMALL_STATE(10009)] = 741541, + [SMALL_STATE(10010)] = 741575, + [SMALL_STATE(10011)] = 741609, + [SMALL_STATE(10012)] = 741643, + [SMALL_STATE(10013)] = 741677, + [SMALL_STATE(10014)] = 741711, + [SMALL_STATE(10015)] = 741745, + [SMALL_STATE(10016)] = 741779, + [SMALL_STATE(10017)] = 741813, + [SMALL_STATE(10018)] = 741847, + [SMALL_STATE(10019)] = 741881, + [SMALL_STATE(10020)] = 741915, + [SMALL_STATE(10021)] = 741949, + [SMALL_STATE(10022)] = 741983, + [SMALL_STATE(10023)] = 742017, + [SMALL_STATE(10024)] = 742051, + [SMALL_STATE(10025)] = 742085, + [SMALL_STATE(10026)] = 742119, + [SMALL_STATE(10027)] = 742153, + [SMALL_STATE(10028)] = 742187, + [SMALL_STATE(10029)] = 742221, + [SMALL_STATE(10030)] = 742257, + [SMALL_STATE(10031)] = 742299, + [SMALL_STATE(10032)] = 742333, + [SMALL_STATE(10033)] = 742367, + [SMALL_STATE(10034)] = 742401, + [SMALL_STATE(10035)] = 742435, + [SMALL_STATE(10036)] = 742473, + [SMALL_STATE(10037)] = 742507, + [SMALL_STATE(10038)] = 742541, + [SMALL_STATE(10039)] = 742575, + [SMALL_STATE(10040)] = 742609, + [SMALL_STATE(10041)] = 742647, + [SMALL_STATE(10042)] = 742685, + [SMALL_STATE(10043)] = 742723, + [SMALL_STATE(10044)] = 742761, + [SMALL_STATE(10045)] = 742795, + [SMALL_STATE(10046)] = 742829, + [SMALL_STATE(10047)] = 742863, + [SMALL_STATE(10048)] = 742897, + [SMALL_STATE(10049)] = 742930, + [SMALL_STATE(10050)] = 742963, + [SMALL_STATE(10051)] = 742996, + [SMALL_STATE(10052)] = 743029, + [SMALL_STATE(10053)] = 743062, + [SMALL_STATE(10054)] = 743095, + [SMALL_STATE(10055)] = 743128, + [SMALL_STATE(10056)] = 743161, + [SMALL_STATE(10057)] = 743194, + [SMALL_STATE(10058)] = 743227, + [SMALL_STATE(10059)] = 743260, + [SMALL_STATE(10060)] = 743293, + [SMALL_STATE(10061)] = 743328, + [SMALL_STATE(10062)] = 743361, + [SMALL_STATE(10063)] = 743394, + [SMALL_STATE(10064)] = 743427, + [SMALL_STATE(10065)] = 743460, + [SMALL_STATE(10066)] = 743493, + [SMALL_STATE(10067)] = 743526, + [SMALL_STATE(10068)] = 743559, + [SMALL_STATE(10069)] = 743592, + [SMALL_STATE(10070)] = 743625, + [SMALL_STATE(10071)] = 743658, + [SMALL_STATE(10072)] = 743691, + [SMALL_STATE(10073)] = 743724, + [SMALL_STATE(10074)] = 743757, + [SMALL_STATE(10075)] = 743790, + [SMALL_STATE(10076)] = 743823, + [SMALL_STATE(10077)] = 743856, + [SMALL_STATE(10078)] = 743889, + [SMALL_STATE(10079)] = 743922, + [SMALL_STATE(10080)] = 743955, + [SMALL_STATE(10081)] = 743988, + [SMALL_STATE(10082)] = 744021, + [SMALL_STATE(10083)] = 744054, + [SMALL_STATE(10084)] = 744087, + [SMALL_STATE(10085)] = 744120, + [SMALL_STATE(10086)] = 744153, + [SMALL_STATE(10087)] = 744186, + [SMALL_STATE(10088)] = 744219, + [SMALL_STATE(10089)] = 744254, + [SMALL_STATE(10090)] = 744287, + [SMALL_STATE(10091)] = 744320, + [SMALL_STATE(10092)] = 744353, + [SMALL_STATE(10093)] = 744386, + [SMALL_STATE(10094)] = 744419, + [SMALL_STATE(10095)] = 744452, + [SMALL_STATE(10096)] = 744485, + [SMALL_STATE(10097)] = 744518, + [SMALL_STATE(10098)] = 744551, + [SMALL_STATE(10099)] = 744584, + [SMALL_STATE(10100)] = 744617, + [SMALL_STATE(10101)] = 744650, + [SMALL_STATE(10102)] = 744683, + [SMALL_STATE(10103)] = 744716, + [SMALL_STATE(10104)] = 744749, + [SMALL_STATE(10105)] = 744782, + [SMALL_STATE(10106)] = 744815, + [SMALL_STATE(10107)] = 744848, + [SMALL_STATE(10108)] = 744881, + [SMALL_STATE(10109)] = 744914, + [SMALL_STATE(10110)] = 744947, + [SMALL_STATE(10111)] = 744980, + [SMALL_STATE(10112)] = 745013, + [SMALL_STATE(10113)] = 745046, + [SMALL_STATE(10114)] = 745079, + [SMALL_STATE(10115)] = 745114, + [SMALL_STATE(10116)] = 745147, + [SMALL_STATE(10117)] = 745180, + [SMALL_STATE(10118)] = 745213, + [SMALL_STATE(10119)] = 745246, + [SMALL_STATE(10120)] = 745279, + [SMALL_STATE(10121)] = 745312, + [SMALL_STATE(10122)] = 745345, + [SMALL_STATE(10123)] = 745378, + [SMALL_STATE(10124)] = 745411, + [SMALL_STATE(10125)] = 745444, + [SMALL_STATE(10126)] = 745477, + [SMALL_STATE(10127)] = 745510, + [SMALL_STATE(10128)] = 745543, + [SMALL_STATE(10129)] = 745576, + [SMALL_STATE(10130)] = 745609, + [SMALL_STATE(10131)] = 745642, + [SMALL_STATE(10132)] = 745675, + [SMALL_STATE(10133)] = 745708, + [SMALL_STATE(10134)] = 745743, + [SMALL_STATE(10135)] = 745776, + [SMALL_STATE(10136)] = 745809, + [SMALL_STATE(10137)] = 745842, + [SMALL_STATE(10138)] = 745875, + [SMALL_STATE(10139)] = 745908, + [SMALL_STATE(10140)] = 745941, + [SMALL_STATE(10141)] = 745974, + [SMALL_STATE(10142)] = 746007, + [SMALL_STATE(10143)] = 746040, + [SMALL_STATE(10144)] = 746073, + [SMALL_STATE(10145)] = 746106, + [SMALL_STATE(10146)] = 746139, + [SMALL_STATE(10147)] = 746172, + [SMALL_STATE(10148)] = 746205, + [SMALL_STATE(10149)] = 746238, + [SMALL_STATE(10150)] = 746271, + [SMALL_STATE(10151)] = 746304, + [SMALL_STATE(10152)] = 746337, + [SMALL_STATE(10153)] = 746370, + [SMALL_STATE(10154)] = 746403, + [SMALL_STATE(10155)] = 746436, + [SMALL_STATE(10156)] = 746469, + [SMALL_STATE(10157)] = 746502, + [SMALL_STATE(10158)] = 746535, + [SMALL_STATE(10159)] = 746568, + [SMALL_STATE(10160)] = 746601, + [SMALL_STATE(10161)] = 746634, + [SMALL_STATE(10162)] = 746667, + [SMALL_STATE(10163)] = 746700, + [SMALL_STATE(10164)] = 746733, + [SMALL_STATE(10165)] = 746766, + [SMALL_STATE(10166)] = 746807, + [SMALL_STATE(10167)] = 746840, + [SMALL_STATE(10168)] = 746873, + [SMALL_STATE(10169)] = 746906, + [SMALL_STATE(10170)] = 746939, + [SMALL_STATE(10171)] = 746972, + [SMALL_STATE(10172)] = 747005, + [SMALL_STATE(10173)] = 747038, + [SMALL_STATE(10174)] = 747071, + [SMALL_STATE(10175)] = 747104, + [SMALL_STATE(10176)] = 747137, + [SMALL_STATE(10177)] = 747170, + [SMALL_STATE(10178)] = 747203, + [SMALL_STATE(10179)] = 747236, + [SMALL_STATE(10180)] = 747269, + [SMALL_STATE(10181)] = 747304, + [SMALL_STATE(10182)] = 747337, + [SMALL_STATE(10183)] = 747370, + [SMALL_STATE(10184)] = 747405, + [SMALL_STATE(10185)] = 747438, + [SMALL_STATE(10186)] = 747471, + [SMALL_STATE(10187)] = 747504, + [SMALL_STATE(10188)] = 747537, + [SMALL_STATE(10189)] = 747570, + [SMALL_STATE(10190)] = 747603, + [SMALL_STATE(10191)] = 747636, + [SMALL_STATE(10192)] = 747669, + [SMALL_STATE(10193)] = 747702, + [SMALL_STATE(10194)] = 747735, + [SMALL_STATE(10195)] = 747768, + [SMALL_STATE(10196)] = 747801, + [SMALL_STATE(10197)] = 747834, + [SMALL_STATE(10198)] = 747867, + [SMALL_STATE(10199)] = 747900, + [SMALL_STATE(10200)] = 747933, + [SMALL_STATE(10201)] = 747966, + [SMALL_STATE(10202)] = 747999, + [SMALL_STATE(10203)] = 748032, + [SMALL_STATE(10204)] = 748065, + [SMALL_STATE(10205)] = 748098, + [SMALL_STATE(10206)] = 748131, + [SMALL_STATE(10207)] = 748164, + [SMALL_STATE(10208)] = 748197, + [SMALL_STATE(10209)] = 748230, + [SMALL_STATE(10210)] = 748263, + [SMALL_STATE(10211)] = 748296, + [SMALL_STATE(10212)] = 748329, + [SMALL_STATE(10213)] = 748362, + [SMALL_STATE(10214)] = 748395, + [SMALL_STATE(10215)] = 748428, + [SMALL_STATE(10216)] = 748461, + [SMALL_STATE(10217)] = 748494, + [SMALL_STATE(10218)] = 748527, + [SMALL_STATE(10219)] = 748560, + [SMALL_STATE(10220)] = 748593, + [SMALL_STATE(10221)] = 748626, + [SMALL_STATE(10222)] = 748659, + [SMALL_STATE(10223)] = 748692, + [SMALL_STATE(10224)] = 748725, + [SMALL_STATE(10225)] = 748758, + [SMALL_STATE(10226)] = 748791, + [SMALL_STATE(10227)] = 748824, + [SMALL_STATE(10228)] = 748857, + [SMALL_STATE(10229)] = 748890, + [SMALL_STATE(10230)] = 748923, + [SMALL_STATE(10231)] = 748956, + [SMALL_STATE(10232)] = 748989, + [SMALL_STATE(10233)] = 749022, + [SMALL_STATE(10234)] = 749055, + [SMALL_STATE(10235)] = 749088, + [SMALL_STATE(10236)] = 749121, + [SMALL_STATE(10237)] = 749154, + [SMALL_STATE(10238)] = 749187, + [SMALL_STATE(10239)] = 749220, + [SMALL_STATE(10240)] = 749253, + [SMALL_STATE(10241)] = 749286, + [SMALL_STATE(10242)] = 749319, + [SMALL_STATE(10243)] = 749352, + [SMALL_STATE(10244)] = 749385, + [SMALL_STATE(10245)] = 749418, + [SMALL_STATE(10246)] = 749451, + [SMALL_STATE(10247)] = 749484, + [SMALL_STATE(10248)] = 749517, + [SMALL_STATE(10249)] = 749550, + [SMALL_STATE(10250)] = 749583, + [SMALL_STATE(10251)] = 749616, + [SMALL_STATE(10252)] = 749649, + [SMALL_STATE(10253)] = 749682, + [SMALL_STATE(10254)] = 749715, + [SMALL_STATE(10255)] = 749748, + [SMALL_STATE(10256)] = 749781, + [SMALL_STATE(10257)] = 749814, + [SMALL_STATE(10258)] = 749847, + [SMALL_STATE(10259)] = 749880, + [SMALL_STATE(10260)] = 749913, + [SMALL_STATE(10261)] = 749946, + [SMALL_STATE(10262)] = 749979, + [SMALL_STATE(10263)] = 750012, + [SMALL_STATE(10264)] = 750045, + [SMALL_STATE(10265)] = 750078, + [SMALL_STATE(10266)] = 750111, + [SMALL_STATE(10267)] = 750144, + [SMALL_STATE(10268)] = 750177, + [SMALL_STATE(10269)] = 750210, + [SMALL_STATE(10270)] = 750243, + [SMALL_STATE(10271)] = 750276, + [SMALL_STATE(10272)] = 750309, + [SMALL_STATE(10273)] = 750348, + [SMALL_STATE(10274)] = 750387, + [SMALL_STATE(10275)] = 750426, + [SMALL_STATE(10276)] = 750459, + [SMALL_STATE(10277)] = 750492, + [SMALL_STATE(10278)] = 750525, + [SMALL_STATE(10279)] = 750558, + [SMALL_STATE(10280)] = 750591, + [SMALL_STATE(10281)] = 750624, + [SMALL_STATE(10282)] = 750657, + [SMALL_STATE(10283)] = 750690, + [SMALL_STATE(10284)] = 750723, + [SMALL_STATE(10285)] = 750756, + [SMALL_STATE(10286)] = 750789, + [SMALL_STATE(10287)] = 750822, + [SMALL_STATE(10288)] = 750855, + [SMALL_STATE(10289)] = 750888, + [SMALL_STATE(10290)] = 750929, + [SMALL_STATE(10291)] = 750962, + [SMALL_STATE(10292)] = 750995, + [SMALL_STATE(10293)] = 751028, + [SMALL_STATE(10294)] = 751061, + [SMALL_STATE(10295)] = 751094, + [SMALL_STATE(10296)] = 751127, + [SMALL_STATE(10297)] = 751160, + [SMALL_STATE(10298)] = 751193, + [SMALL_STATE(10299)] = 751226, + [SMALL_STATE(10300)] = 751259, + [SMALL_STATE(10301)] = 751292, + [SMALL_STATE(10302)] = 751325, + [SMALL_STATE(10303)] = 751358, + [SMALL_STATE(10304)] = 751391, + [SMALL_STATE(10305)] = 751426, + [SMALL_STATE(10306)] = 751459, + [SMALL_STATE(10307)] = 751494, + [SMALL_STATE(10308)] = 751527, + [SMALL_STATE(10309)] = 751560, + [SMALL_STATE(10310)] = 751593, + [SMALL_STATE(10311)] = 751626, + [SMALL_STATE(10312)] = 751661, + [SMALL_STATE(10313)] = 751694, + [SMALL_STATE(10314)] = 751727, + [SMALL_STATE(10315)] = 751760, + [SMALL_STATE(10316)] = 751793, + [SMALL_STATE(10317)] = 751828, + [SMALL_STATE(10318)] = 751861, + [SMALL_STATE(10319)] = 751894, + [SMALL_STATE(10320)] = 751927, + [SMALL_STATE(10321)] = 751962, + [SMALL_STATE(10322)] = 751995, + [SMALL_STATE(10323)] = 752030, + [SMALL_STATE(10324)] = 752063, + [SMALL_STATE(10325)] = 752096, + [SMALL_STATE(10326)] = 752129, + [SMALL_STATE(10327)] = 752162, + [SMALL_STATE(10328)] = 752195, + [SMALL_STATE(10329)] = 752228, + [SMALL_STATE(10330)] = 752263, + [SMALL_STATE(10331)] = 752300, + [SMALL_STATE(10332)] = 752333, + [SMALL_STATE(10333)] = 752366, + [SMALL_STATE(10334)] = 752401, + [SMALL_STATE(10335)] = 752434, + [SMALL_STATE(10336)] = 752471, + [SMALL_STATE(10337)] = 752504, + [SMALL_STATE(10338)] = 752537, + [SMALL_STATE(10339)] = 752572, + [SMALL_STATE(10340)] = 752609, + [SMALL_STATE(10341)] = 752642, + [SMALL_STATE(10342)] = 752675, + [SMALL_STATE(10343)] = 752708, + [SMALL_STATE(10344)] = 752741, + [SMALL_STATE(10345)] = 752776, + [SMALL_STATE(10346)] = 752809, + [SMALL_STATE(10347)] = 752842, + [SMALL_STATE(10348)] = 752877, + [SMALL_STATE(10349)] = 752910, + [SMALL_STATE(10350)] = 752943, + [SMALL_STATE(10351)] = 752976, + [SMALL_STATE(10352)] = 753009, + [SMALL_STATE(10353)] = 753042, + [SMALL_STATE(10354)] = 753075, + [SMALL_STATE(10355)] = 753108, + [SMALL_STATE(10356)] = 753141, + [SMALL_STATE(10357)] = 753176, + [SMALL_STATE(10358)] = 753213, + [SMALL_STATE(10359)] = 753246, + [SMALL_STATE(10360)] = 753279, + [SMALL_STATE(10361)] = 753312, + [SMALL_STATE(10362)] = 753345, + [SMALL_STATE(10363)] = 753378, + [SMALL_STATE(10364)] = 753411, + [SMALL_STATE(10365)] = 753446, + [SMALL_STATE(10366)] = 753479, + [SMALL_STATE(10367)] = 753512, + [SMALL_STATE(10368)] = 753549, + [SMALL_STATE(10369)] = 753586, + [SMALL_STATE(10370)] = 753623, + [SMALL_STATE(10371)] = 753656, + [SMALL_STATE(10372)] = 753689, + [SMALL_STATE(10373)] = 753722, + [SMALL_STATE(10374)] = 753755, + [SMALL_STATE(10375)] = 753788, + [SMALL_STATE(10376)] = 753825, + [SMALL_STATE(10377)] = 753858, + [SMALL_STATE(10378)] = 753893, + [SMALL_STATE(10379)] = 753926, + [SMALL_STATE(10380)] = 753963, + [SMALL_STATE(10381)] = 753996, + [SMALL_STATE(10382)] = 754029, + [SMALL_STATE(10383)] = 754062, + [SMALL_STATE(10384)] = 754095, + [SMALL_STATE(10385)] = 754128, + [SMALL_STATE(10386)] = 754161, + [SMALL_STATE(10387)] = 754196, + [SMALL_STATE(10388)] = 754229, + [SMALL_STATE(10389)] = 754262, + [SMALL_STATE(10390)] = 754295, + [SMALL_STATE(10391)] = 754328, + [SMALL_STATE(10392)] = 754361, + [SMALL_STATE(10393)] = 754396, + [SMALL_STATE(10394)] = 754429, + [SMALL_STATE(10395)] = 754462, + [SMALL_STATE(10396)] = 754495, + [SMALL_STATE(10397)] = 754528, + [SMALL_STATE(10398)] = 754561, + [SMALL_STATE(10399)] = 754598, + [SMALL_STATE(10400)] = 754631, + [SMALL_STATE(10401)] = 754664, + [SMALL_STATE(10402)] = 754697, + [SMALL_STATE(10403)] = 754734, + [SMALL_STATE(10404)] = 754771, + [SMALL_STATE(10405)] = 754806, + [SMALL_STATE(10406)] = 754843, + [SMALL_STATE(10407)] = 754876, + [SMALL_STATE(10408)] = 754909, + [SMALL_STATE(10409)] = 754942, + [SMALL_STATE(10410)] = 754975, + [SMALL_STATE(10411)] = 755008, + [SMALL_STATE(10412)] = 755041, + [SMALL_STATE(10413)] = 755074, + [SMALL_STATE(10414)] = 755111, + [SMALL_STATE(10415)] = 755144, + [SMALL_STATE(10416)] = 755177, + [SMALL_STATE(10417)] = 755210, + [SMALL_STATE(10418)] = 755243, + [SMALL_STATE(10419)] = 755276, + [SMALL_STATE(10420)] = 755309, + [SMALL_STATE(10421)] = 755344, + [SMALL_STATE(10422)] = 755377, + [SMALL_STATE(10423)] = 755410, + [SMALL_STATE(10424)] = 755447, + [SMALL_STATE(10425)] = 755480, + [SMALL_STATE(10426)] = 755513, + [SMALL_STATE(10427)] = 755546, + [SMALL_STATE(10428)] = 755579, + [SMALL_STATE(10429)] = 755612, + [SMALL_STATE(10430)] = 755645, + [SMALL_STATE(10431)] = 755682, + [SMALL_STATE(10432)] = 755719, + [SMALL_STATE(10433)] = 755752, + [SMALL_STATE(10434)] = 755785, + [SMALL_STATE(10435)] = 755818, + [SMALL_STATE(10436)] = 755851, + [SMALL_STATE(10437)] = 755886, + [SMALL_STATE(10438)] = 755921, + [SMALL_STATE(10439)] = 755954, + [SMALL_STATE(10440)] = 755987, + [SMALL_STATE(10441)] = 756020, + [SMALL_STATE(10442)] = 756053, + [SMALL_STATE(10443)] = 756086, + [SMALL_STATE(10444)] = 756119, + [SMALL_STATE(10445)] = 756152, + [SMALL_STATE(10446)] = 756189, + [SMALL_STATE(10447)] = 756226, + [SMALL_STATE(10448)] = 756259, + [SMALL_STATE(10449)] = 756292, + [SMALL_STATE(10450)] = 756325, + [SMALL_STATE(10451)] = 756358, + [SMALL_STATE(10452)] = 756391, + [SMALL_STATE(10453)] = 756424, + [SMALL_STATE(10454)] = 756457, + [SMALL_STATE(10455)] = 756490, + [SMALL_STATE(10456)] = 756523, + [SMALL_STATE(10457)] = 756556, + [SMALL_STATE(10458)] = 756589, + [SMALL_STATE(10459)] = 756626, + [SMALL_STATE(10460)] = 756663, + [SMALL_STATE(10461)] = 756696, + [SMALL_STATE(10462)] = 756729, + [SMALL_STATE(10463)] = 756766, + [SMALL_STATE(10464)] = 756803, + [SMALL_STATE(10465)] = 756836, + [SMALL_STATE(10466)] = 756869, + [SMALL_STATE(10467)] = 756902, + [SMALL_STATE(10468)] = 756939, + [SMALL_STATE(10469)] = 756976, + [SMALL_STATE(10470)] = 757009, + [SMALL_STATE(10471)] = 757042, + [SMALL_STATE(10472)] = 757075, + [SMALL_STATE(10473)] = 757108, + [SMALL_STATE(10474)] = 757141, + [SMALL_STATE(10475)] = 757176, + [SMALL_STATE(10476)] = 757209, + [SMALL_STATE(10477)] = 757242, + [SMALL_STATE(10478)] = 757275, + [SMALL_STATE(10479)] = 757308, + [SMALL_STATE(10480)] = 757343, + [SMALL_STATE(10481)] = 757376, + [SMALL_STATE(10482)] = 757409, + [SMALL_STATE(10483)] = 757446, + [SMALL_STATE(10484)] = 757483, + [SMALL_STATE(10485)] = 757516, + [SMALL_STATE(10486)] = 757549, + [SMALL_STATE(10487)] = 757582, + [SMALL_STATE(10488)] = 757615, + [SMALL_STATE(10489)] = 757648, + [SMALL_STATE(10490)] = 757681, + [SMALL_STATE(10491)] = 757714, + [SMALL_STATE(10492)] = 757747, + [SMALL_STATE(10493)] = 757780, + [SMALL_STATE(10494)] = 757813, + [SMALL_STATE(10495)] = 757850, + [SMALL_STATE(10496)] = 757887, + [SMALL_STATE(10497)] = 757920, + [SMALL_STATE(10498)] = 757953, + [SMALL_STATE(10499)] = 757986, + [SMALL_STATE(10500)] = 758019, + [SMALL_STATE(10501)] = 758052, + [SMALL_STATE(10502)] = 758085, + [SMALL_STATE(10503)] = 758118, + [SMALL_STATE(10504)] = 758151, + [SMALL_STATE(10505)] = 758186, + [SMALL_STATE(10506)] = 758219, + [SMALL_STATE(10507)] = 758252, + [SMALL_STATE(10508)] = 758285, + [SMALL_STATE(10509)] = 758318, + [SMALL_STATE(10510)] = 758351, + [SMALL_STATE(10511)] = 758386, + [SMALL_STATE(10512)] = 758419, + [SMALL_STATE(10513)] = 758452, + [SMALL_STATE(10514)] = 758485, + [SMALL_STATE(10515)] = 758518, + [SMALL_STATE(10516)] = 758555, + [SMALL_STATE(10517)] = 758592, + [SMALL_STATE(10518)] = 758625, + [SMALL_STATE(10519)] = 758658, + [SMALL_STATE(10520)] = 758691, + [SMALL_STATE(10521)] = 758724, + [SMALL_STATE(10522)] = 758757, + [SMALL_STATE(10523)] = 758794, + [SMALL_STATE(10524)] = 758831, + [SMALL_STATE(10525)] = 758864, + [SMALL_STATE(10526)] = 758897, + [SMALL_STATE(10527)] = 758930, + [SMALL_STATE(10528)] = 758963, + [SMALL_STATE(10529)] = 758996, + [SMALL_STATE(10530)] = 759029, + [SMALL_STATE(10531)] = 759062, + [SMALL_STATE(10532)] = 759097, + [SMALL_STATE(10533)] = 759132, + [SMALL_STATE(10534)] = 759165, + [SMALL_STATE(10535)] = 759198, + [SMALL_STATE(10536)] = 759231, + [SMALL_STATE(10537)] = 759264, + [SMALL_STATE(10538)] = 759299, + [SMALL_STATE(10539)] = 759332, + [SMALL_STATE(10540)] = 759365, + [SMALL_STATE(10541)] = 759398, + [SMALL_STATE(10542)] = 759435, + [SMALL_STATE(10543)] = 759472, + [SMALL_STATE(10544)] = 759505, + [SMALL_STATE(10545)] = 759538, + [SMALL_STATE(10546)] = 759571, + [SMALL_STATE(10547)] = 759604, + [SMALL_STATE(10548)] = 759637, + [SMALL_STATE(10549)] = 759670, + [SMALL_STATE(10550)] = 759703, + [SMALL_STATE(10551)] = 759736, + [SMALL_STATE(10552)] = 759769, + [SMALL_STATE(10553)] = 759802, + [SMALL_STATE(10554)] = 759835, + [SMALL_STATE(10555)] = 759868, + [SMALL_STATE(10556)] = 759901, + [SMALL_STATE(10557)] = 759934, + [SMALL_STATE(10558)] = 759967, + [SMALL_STATE(10559)] = 760000, + [SMALL_STATE(10560)] = 760033, + [SMALL_STATE(10561)] = 760066, + [SMALL_STATE(10562)] = 760099, + [SMALL_STATE(10563)] = 760132, + [SMALL_STATE(10564)] = 760165, + [SMALL_STATE(10565)] = 760198, + [SMALL_STATE(10566)] = 760231, + [SMALL_STATE(10567)] = 760264, + [SMALL_STATE(10568)] = 760297, + [SMALL_STATE(10569)] = 760330, + [SMALL_STATE(10570)] = 760363, + [SMALL_STATE(10571)] = 760396, + [SMALL_STATE(10572)] = 760429, + [SMALL_STATE(10573)] = 760462, + [SMALL_STATE(10574)] = 760495, + [SMALL_STATE(10575)] = 760528, + [SMALL_STATE(10576)] = 760561, + [SMALL_STATE(10577)] = 760594, + [SMALL_STATE(10578)] = 760627, + [SMALL_STATE(10579)] = 760660, + [SMALL_STATE(10580)] = 760693, + [SMALL_STATE(10581)] = 760726, + [SMALL_STATE(10582)] = 760759, + [SMALL_STATE(10583)] = 760792, + [SMALL_STATE(10584)] = 760825, + [SMALL_STATE(10585)] = 760860, + [SMALL_STATE(10586)] = 760893, + [SMALL_STATE(10587)] = 760926, + [SMALL_STATE(10588)] = 760959, + [SMALL_STATE(10589)] = 760992, + [SMALL_STATE(10590)] = 761025, + [SMALL_STATE(10591)] = 761058, + [SMALL_STATE(10592)] = 761099, + [SMALL_STATE(10593)] = 761132, + [SMALL_STATE(10594)] = 761165, + [SMALL_STATE(10595)] = 761198, + [SMALL_STATE(10596)] = 761231, + [SMALL_STATE(10597)] = 761264, + [SMALL_STATE(10598)] = 761297, + [SMALL_STATE(10599)] = 761330, + [SMALL_STATE(10600)] = 761363, + [SMALL_STATE(10601)] = 761396, + [SMALL_STATE(10602)] = 761429, + [SMALL_STATE(10603)] = 761462, + [SMALL_STATE(10604)] = 761495, + [SMALL_STATE(10605)] = 761528, + [SMALL_STATE(10606)] = 761561, + [SMALL_STATE(10607)] = 761594, + [SMALL_STATE(10608)] = 761627, + [SMALL_STATE(10609)] = 761660, + [SMALL_STATE(10610)] = 761693, + [SMALL_STATE(10611)] = 761728, + [SMALL_STATE(10612)] = 761761, + [SMALL_STATE(10613)] = 761794, + [SMALL_STATE(10614)] = 761827, + [SMALL_STATE(10615)] = 761860, + [SMALL_STATE(10616)] = 761893, + [SMALL_STATE(10617)] = 761926, + [SMALL_STATE(10618)] = 761959, + [SMALL_STATE(10619)] = 761992, + [SMALL_STATE(10620)] = 762025, + [SMALL_STATE(10621)] = 762058, + [SMALL_STATE(10622)] = 762091, + [SMALL_STATE(10623)] = 762124, + [SMALL_STATE(10624)] = 762157, + [SMALL_STATE(10625)] = 762196, + [SMALL_STATE(10626)] = 762235, + [SMALL_STATE(10627)] = 762270, + [SMALL_STATE(10628)] = 762303, + [SMALL_STATE(10629)] = 762336, + [SMALL_STATE(10630)] = 762369, + [SMALL_STATE(10631)] = 762402, + [SMALL_STATE(10632)] = 762435, + [SMALL_STATE(10633)] = 762468, + [SMALL_STATE(10634)] = 762501, + [SMALL_STATE(10635)] = 762534, + [SMALL_STATE(10636)] = 762567, + [SMALL_STATE(10637)] = 762600, + [SMALL_STATE(10638)] = 762633, + [SMALL_STATE(10639)] = 762666, + [SMALL_STATE(10640)] = 762699, + [SMALL_STATE(10641)] = 762732, + [SMALL_STATE(10642)] = 762765, + [SMALL_STATE(10643)] = 762798, + [SMALL_STATE(10644)] = 762831, + [SMALL_STATE(10645)] = 762864, + [SMALL_STATE(10646)] = 762897, + [SMALL_STATE(10647)] = 762930, + [SMALL_STATE(10648)] = 762963, + [SMALL_STATE(10649)] = 762996, + [SMALL_STATE(10650)] = 763029, + [SMALL_STATE(10651)] = 763062, + [SMALL_STATE(10652)] = 763095, + [SMALL_STATE(10653)] = 763128, + [SMALL_STATE(10654)] = 763163, + [SMALL_STATE(10655)] = 763196, + [SMALL_STATE(10656)] = 763229, + [SMALL_STATE(10657)] = 763268, + [SMALL_STATE(10658)] = 763325, + [SMALL_STATE(10659)] = 763358, + [SMALL_STATE(10660)] = 763391, + [SMALL_STATE(10661)] = 763424, + [SMALL_STATE(10662)] = 763457, + [SMALL_STATE(10663)] = 763490, + [SMALL_STATE(10664)] = 763525, + [SMALL_STATE(10665)] = 763558, + [SMALL_STATE(10666)] = 763595, + [SMALL_STATE(10667)] = 763628, + [SMALL_STATE(10668)] = 763661, + [SMALL_STATE(10669)] = 763694, + [SMALL_STATE(10670)] = 763727, + [SMALL_STATE(10671)] = 763760, + [SMALL_STATE(10672)] = 763793, + [SMALL_STATE(10673)] = 763828, + [SMALL_STATE(10674)] = 763861, + [SMALL_STATE(10675)] = 763894, + [SMALL_STATE(10676)] = 763927, + [SMALL_STATE(10677)] = 763960, + [SMALL_STATE(10678)] = 763993, + [SMALL_STATE(10679)] = 764026, + [SMALL_STATE(10680)] = 764059, + [SMALL_STATE(10681)] = 764092, + [SMALL_STATE(10682)] = 764125, + [SMALL_STATE(10683)] = 764158, + [SMALL_STATE(10684)] = 764193, + [SMALL_STATE(10685)] = 764226, + [SMALL_STATE(10686)] = 764259, + [SMALL_STATE(10687)] = 764292, + [SMALL_STATE(10688)] = 764325, + [SMALL_STATE(10689)] = 764358, + [SMALL_STATE(10690)] = 764391, + [SMALL_STATE(10691)] = 764424, + [SMALL_STATE(10692)] = 764461, + [SMALL_STATE(10693)] = 764494, + [SMALL_STATE(10694)] = 764529, + [SMALL_STATE(10695)] = 764562, + [SMALL_STATE(10696)] = 764595, + [SMALL_STATE(10697)] = 764628, + [SMALL_STATE(10698)] = 764661, + [SMALL_STATE(10699)] = 764694, + [SMALL_STATE(10700)] = 764727, + [SMALL_STATE(10701)] = 764762, + [SMALL_STATE(10702)] = 764795, + [SMALL_STATE(10703)] = 764828, + [SMALL_STATE(10704)] = 764861, + [SMALL_STATE(10705)] = 764894, + [SMALL_STATE(10706)] = 764927, + [SMALL_STATE(10707)] = 764960, + [SMALL_STATE(10708)] = 764993, + [SMALL_STATE(10709)] = 765026, + [SMALL_STATE(10710)] = 765061, + [SMALL_STATE(10711)] = 765094, + [SMALL_STATE(10712)] = 765127, + [SMALL_STATE(10713)] = 765162, + [SMALL_STATE(10714)] = 765195, + [SMALL_STATE(10715)] = 765228, + [SMALL_STATE(10716)] = 765261, + [SMALL_STATE(10717)] = 765294, + [SMALL_STATE(10718)] = 765327, + [SMALL_STATE(10719)] = 765362, + [SMALL_STATE(10720)] = 765395, + [SMALL_STATE(10721)] = 765428, + [SMALL_STATE(10722)] = 765461, + [SMALL_STATE(10723)] = 765494, + [SMALL_STATE(10724)] = 765527, + [SMALL_STATE(10725)] = 765560, + [SMALL_STATE(10726)] = 765593, + [SMALL_STATE(10727)] = 765626, + [SMALL_STATE(10728)] = 765659, + [SMALL_STATE(10729)] = 765692, + [SMALL_STATE(10730)] = 765725, + [SMALL_STATE(10731)] = 765758, + [SMALL_STATE(10732)] = 765791, + [SMALL_STATE(10733)] = 765824, + [SMALL_STATE(10734)] = 765857, + [SMALL_STATE(10735)] = 765890, + [SMALL_STATE(10736)] = 765923, + [SMALL_STATE(10737)] = 765956, + [SMALL_STATE(10738)] = 765989, + [SMALL_STATE(10739)] = 766022, + [SMALL_STATE(10740)] = 766055, + [SMALL_STATE(10741)] = 766088, + [SMALL_STATE(10742)] = 766121, + [SMALL_STATE(10743)] = 766154, + [SMALL_STATE(10744)] = 766187, + [SMALL_STATE(10745)] = 766220, + [SMALL_STATE(10746)] = 766253, + [SMALL_STATE(10747)] = 766286, + [SMALL_STATE(10748)] = 766319, + [SMALL_STATE(10749)] = 766352, + [SMALL_STATE(10750)] = 766385, + [SMALL_STATE(10751)] = 766418, + [SMALL_STATE(10752)] = 766451, + [SMALL_STATE(10753)] = 766484, + [SMALL_STATE(10754)] = 766517, + [SMALL_STATE(10755)] = 766550, + [SMALL_STATE(10756)] = 766583, + [SMALL_STATE(10757)] = 766616, + [SMALL_STATE(10758)] = 766649, + [SMALL_STATE(10759)] = 766682, + [SMALL_STATE(10760)] = 766715, + [SMALL_STATE(10761)] = 766750, + [SMALL_STATE(10762)] = 766783, + [SMALL_STATE(10763)] = 766816, + [SMALL_STATE(10764)] = 766851, + [SMALL_STATE(10765)] = 766884, + [SMALL_STATE(10766)] = 766917, + [SMALL_STATE(10767)] = 766950, + [SMALL_STATE(10768)] = 766987, + [SMALL_STATE(10769)] = 767020, + [SMALL_STATE(10770)] = 767053, + [SMALL_STATE(10771)] = 767086, + [SMALL_STATE(10772)] = 767119, + [SMALL_STATE(10773)] = 767152, + [SMALL_STATE(10774)] = 767185, + [SMALL_STATE(10775)] = 767218, + [SMALL_STATE(10776)] = 767251, + [SMALL_STATE(10777)] = 767288, + [SMALL_STATE(10778)] = 767321, + [SMALL_STATE(10779)] = 767354, + [SMALL_STATE(10780)] = 767387, + [SMALL_STATE(10781)] = 767420, + [SMALL_STATE(10782)] = 767453, + [SMALL_STATE(10783)] = 767486, + [SMALL_STATE(10784)] = 767519, + [SMALL_STATE(10785)] = 767552, + [SMALL_STATE(10786)] = 767585, + [SMALL_STATE(10787)] = 767618, + [SMALL_STATE(10788)] = 767651, + [SMALL_STATE(10789)] = 767688, + [SMALL_STATE(10790)] = 767721, + [SMALL_STATE(10791)] = 767754, + [SMALL_STATE(10792)] = 767787, + [SMALL_STATE(10793)] = 767820, + [SMALL_STATE(10794)] = 767853, + [SMALL_STATE(10795)] = 767886, + [SMALL_STATE(10796)] = 767921, + [SMALL_STATE(10797)] = 767954, + [SMALL_STATE(10798)] = 767987, + [SMALL_STATE(10799)] = 768022, + [SMALL_STATE(10800)] = 768057, + [SMALL_STATE(10801)] = 768090, + [SMALL_STATE(10802)] = 768123, + [SMALL_STATE(10803)] = 768156, + [SMALL_STATE(10804)] = 768189, + [SMALL_STATE(10805)] = 768222, + [SMALL_STATE(10806)] = 768255, + [SMALL_STATE(10807)] = 768288, + [SMALL_STATE(10808)] = 768321, + [SMALL_STATE(10809)] = 768354, + [SMALL_STATE(10810)] = 768387, + [SMALL_STATE(10811)] = 768420, + [SMALL_STATE(10812)] = 768453, + [SMALL_STATE(10813)] = 768486, + [SMALL_STATE(10814)] = 768519, + [SMALL_STATE(10815)] = 768552, + [SMALL_STATE(10816)] = 768587, + [SMALL_STATE(10817)] = 768620, + [SMALL_STATE(10818)] = 768653, + [SMALL_STATE(10819)] = 768686, + [SMALL_STATE(10820)] = 768719, + [SMALL_STATE(10821)] = 768756, + [SMALL_STATE(10822)] = 768789, + [SMALL_STATE(10823)] = 768824, + [SMALL_STATE(10824)] = 768857, + [SMALL_STATE(10825)] = 768890, + [SMALL_STATE(10826)] = 768925, + [SMALL_STATE(10827)] = 768958, + [SMALL_STATE(10828)] = 768991, + [SMALL_STATE(10829)] = 769024, + [SMALL_STATE(10830)] = 769057, + [SMALL_STATE(10831)] = 769090, + [SMALL_STATE(10832)] = 769123, + [SMALL_STATE(10833)] = 769156, + [SMALL_STATE(10834)] = 769189, + [SMALL_STATE(10835)] = 769222, + [SMALL_STATE(10836)] = 769255, + [SMALL_STATE(10837)] = 769288, + [SMALL_STATE(10838)] = 769321, + [SMALL_STATE(10839)] = 769354, + [SMALL_STATE(10840)] = 769387, + [SMALL_STATE(10841)] = 769420, + [SMALL_STATE(10842)] = 769453, + [SMALL_STATE(10843)] = 769486, + [SMALL_STATE(10844)] = 769519, + [SMALL_STATE(10845)] = 769552, + [SMALL_STATE(10846)] = 769585, + [SMALL_STATE(10847)] = 769618, + [SMALL_STATE(10848)] = 769651, + [SMALL_STATE(10849)] = 769684, + [SMALL_STATE(10850)] = 769717, + [SMALL_STATE(10851)] = 769750, + [SMALL_STATE(10852)] = 769783, + [SMALL_STATE(10853)] = 769816, + [SMALL_STATE(10854)] = 769849, + [SMALL_STATE(10855)] = 769882, + [SMALL_STATE(10856)] = 769915, + [SMALL_STATE(10857)] = 769948, + [SMALL_STATE(10858)] = 769981, + [SMALL_STATE(10859)] = 770014, + [SMALL_STATE(10860)] = 770047, + [SMALL_STATE(10861)] = 770080, + [SMALL_STATE(10862)] = 770115, + [SMALL_STATE(10863)] = 770148, + [SMALL_STATE(10864)] = 770181, + [SMALL_STATE(10865)] = 770214, + [SMALL_STATE(10866)] = 770249, + [SMALL_STATE(10867)] = 770282, + [SMALL_STATE(10868)] = 770315, + [SMALL_STATE(10869)] = 770356, + [SMALL_STATE(10870)] = 770389, + [SMALL_STATE(10871)] = 770422, + [SMALL_STATE(10872)] = 770455, + [SMALL_STATE(10873)] = 770488, + [SMALL_STATE(10874)] = 770521, + [SMALL_STATE(10875)] = 770554, + [SMALL_STATE(10876)] = 770587, + [SMALL_STATE(10877)] = 770620, + [SMALL_STATE(10878)] = 770653, + [SMALL_STATE(10879)] = 770686, + [SMALL_STATE(10880)] = 770721, + [SMALL_STATE(10881)] = 770754, + [SMALL_STATE(10882)] = 770787, + [SMALL_STATE(10883)] = 770820, + [SMALL_STATE(10884)] = 770853, + [SMALL_STATE(10885)] = 770886, + [SMALL_STATE(10886)] = 770919, + [SMALL_STATE(10887)] = 770952, + [SMALL_STATE(10888)] = 770985, + [SMALL_STATE(10889)] = 771018, + [SMALL_STATE(10890)] = 771051, + [SMALL_STATE(10891)] = 771084, + [SMALL_STATE(10892)] = 771117, + [SMALL_STATE(10893)] = 771150, + [SMALL_STATE(10894)] = 771183, + [SMALL_STATE(10895)] = 771218, + [SMALL_STATE(10896)] = 771251, + [SMALL_STATE(10897)] = 771284, + [SMALL_STATE(10898)] = 771317, + [SMALL_STATE(10899)] = 771350, + [SMALL_STATE(10900)] = 771383, + [SMALL_STATE(10901)] = 771416, + [SMALL_STATE(10902)] = 771449, + [SMALL_STATE(10903)] = 771482, + [SMALL_STATE(10904)] = 771515, + [SMALL_STATE(10905)] = 771548, + [SMALL_STATE(10906)] = 771581, + [SMALL_STATE(10907)] = 771614, + [SMALL_STATE(10908)] = 771647, + [SMALL_STATE(10909)] = 771680, + [SMALL_STATE(10910)] = 771713, + [SMALL_STATE(10911)] = 771746, + [SMALL_STATE(10912)] = 771779, + [SMALL_STATE(10913)] = 771812, + [SMALL_STATE(10914)] = 771845, + [SMALL_STATE(10915)] = 771878, + [SMALL_STATE(10916)] = 771911, + [SMALL_STATE(10917)] = 771944, + [SMALL_STATE(10918)] = 771977, + [SMALL_STATE(10919)] = 772010, + [SMALL_STATE(10920)] = 772043, + [SMALL_STATE(10921)] = 772076, + [SMALL_STATE(10922)] = 772109, + [SMALL_STATE(10923)] = 772142, + [SMALL_STATE(10924)] = 772175, + [SMALL_STATE(10925)] = 772208, + [SMALL_STATE(10926)] = 772243, + [SMALL_STATE(10927)] = 772276, + [SMALL_STATE(10928)] = 772309, + [SMALL_STATE(10929)] = 772342, + [SMALL_STATE(10930)] = 772375, + [SMALL_STATE(10931)] = 772408, + [SMALL_STATE(10932)] = 772441, + [SMALL_STATE(10933)] = 772474, + [SMALL_STATE(10934)] = 772507, + [SMALL_STATE(10935)] = 772540, + [SMALL_STATE(10936)] = 772575, + [SMALL_STATE(10937)] = 772608, + [SMALL_STATE(10938)] = 772641, + [SMALL_STATE(10939)] = 772674, + [SMALL_STATE(10940)] = 772711, + [SMALL_STATE(10941)] = 772744, + [SMALL_STATE(10942)] = 772777, + [SMALL_STATE(10943)] = 772810, + [SMALL_STATE(10944)] = 772843, + [SMALL_STATE(10945)] = 772876, + [SMALL_STATE(10946)] = 772909, + [SMALL_STATE(10947)] = 772942, + [SMALL_STATE(10948)] = 772975, + [SMALL_STATE(10949)] = 773008, + [SMALL_STATE(10950)] = 773041, + [SMALL_STATE(10951)] = 773074, + [SMALL_STATE(10952)] = 773107, + [SMALL_STATE(10953)] = 773140, + [SMALL_STATE(10954)] = 773173, + [SMALL_STATE(10955)] = 773206, + [SMALL_STATE(10956)] = 773239, + [SMALL_STATE(10957)] = 773272, + [SMALL_STATE(10958)] = 773305, + [SMALL_STATE(10959)] = 773338, + [SMALL_STATE(10960)] = 773371, + [SMALL_STATE(10961)] = 773404, + [SMALL_STATE(10962)] = 773437, + [SMALL_STATE(10963)] = 773470, + [SMALL_STATE(10964)] = 773503, + [SMALL_STATE(10965)] = 773536, + [SMALL_STATE(10966)] = 773569, + [SMALL_STATE(10967)] = 773602, + [SMALL_STATE(10968)] = 773635, + [SMALL_STATE(10969)] = 773668, + [SMALL_STATE(10970)] = 773701, + [SMALL_STATE(10971)] = 773734, + [SMALL_STATE(10972)] = 773767, + [SMALL_STATE(10973)] = 773800, + [SMALL_STATE(10974)] = 773835, + [SMALL_STATE(10975)] = 773868, + [SMALL_STATE(10976)] = 773901, + [SMALL_STATE(10977)] = 773934, + [SMALL_STATE(10978)] = 773967, + [SMALL_STATE(10979)] = 774000, + [SMALL_STATE(10980)] = 774033, + [SMALL_STATE(10981)] = 774066, + [SMALL_STATE(10982)] = 774099, + [SMALL_STATE(10983)] = 774132, + [SMALL_STATE(10984)] = 774165, + [SMALL_STATE(10985)] = 774198, + [SMALL_STATE(10986)] = 774231, + [SMALL_STATE(10987)] = 774264, + [SMALL_STATE(10988)] = 774297, + [SMALL_STATE(10989)] = 774330, + [SMALL_STATE(10990)] = 774363, + [SMALL_STATE(10991)] = 774396, + [SMALL_STATE(10992)] = 774429, + [SMALL_STATE(10993)] = 774462, + [SMALL_STATE(10994)] = 774495, + [SMALL_STATE(10995)] = 774528, + [SMALL_STATE(10996)] = 774561, + [SMALL_STATE(10997)] = 774594, + [SMALL_STATE(10998)] = 774627, + [SMALL_STATE(10999)] = 774660, + [SMALL_STATE(11000)] = 774693, + [SMALL_STATE(11001)] = 774726, + [SMALL_STATE(11002)] = 774759, + [SMALL_STATE(11003)] = 774792, + [SMALL_STATE(11004)] = 774825, + [SMALL_STATE(11005)] = 774858, + [SMALL_STATE(11006)] = 774891, + [SMALL_STATE(11007)] = 774924, + [SMALL_STATE(11008)] = 774957, + [SMALL_STATE(11009)] = 774990, + [SMALL_STATE(11010)] = 775023, + [SMALL_STATE(11011)] = 775056, + [SMALL_STATE(11012)] = 775089, + [SMALL_STATE(11013)] = 775124, + [SMALL_STATE(11014)] = 775157, + [SMALL_STATE(11015)] = 775190, + [SMALL_STATE(11016)] = 775223, + [SMALL_STATE(11017)] = 775256, + [SMALL_STATE(11018)] = 775289, + [SMALL_STATE(11019)] = 775322, + [SMALL_STATE(11020)] = 775355, + [SMALL_STATE(11021)] = 775388, + [SMALL_STATE(11022)] = 775421, + [SMALL_STATE(11023)] = 775454, + [SMALL_STATE(11024)] = 775486, + [SMALL_STATE(11025)] = 775522, + [SMALL_STATE(11026)] = 775554, + [SMALL_STATE(11027)] = 775586, + [SMALL_STATE(11028)] = 775618, + [SMALL_STATE(11029)] = 775650, + [SMALL_STATE(11030)] = 775682, + [SMALL_STATE(11031)] = 775714, + [SMALL_STATE(11032)] = 775750, + [SMALL_STATE(11033)] = 775786, + [SMALL_STATE(11034)] = 775818, + [SMALL_STATE(11035)] = 775850, + [SMALL_STATE(11036)] = 775882, + [SMALL_STATE(11037)] = 775914, + [SMALL_STATE(11038)] = 775946, + [SMALL_STATE(11039)] = 775978, + [SMALL_STATE(11040)] = 776010, + [SMALL_STATE(11041)] = 776042, + [SMALL_STATE(11042)] = 776074, + [SMALL_STATE(11043)] = 776106, + [SMALL_STATE(11044)] = 776138, + [SMALL_STATE(11045)] = 776170, + [SMALL_STATE(11046)] = 776202, + [SMALL_STATE(11047)] = 776234, + [SMALL_STATE(11048)] = 776270, + [SMALL_STATE(11049)] = 776302, + [SMALL_STATE(11050)] = 776336, + [SMALL_STATE(11051)] = 776368, + [SMALL_STATE(11052)] = 776400, + [SMALL_STATE(11053)] = 776432, + [SMALL_STATE(11054)] = 776464, + [SMALL_STATE(11055)] = 776496, + [SMALL_STATE(11056)] = 776528, + [SMALL_STATE(11057)] = 776560, + [SMALL_STATE(11058)] = 776592, + [SMALL_STATE(11059)] = 776624, + [SMALL_STATE(11060)] = 776660, + [SMALL_STATE(11061)] = 776696, + [SMALL_STATE(11062)] = 776728, + [SMALL_STATE(11063)] = 776760, + [SMALL_STATE(11064)] = 776792, + [SMALL_STATE(11065)] = 776824, + [SMALL_STATE(11066)] = 776856, + [SMALL_STATE(11067)] = 776888, + [SMALL_STATE(11068)] = 776920, + [SMALL_STATE(11069)] = 776952, + [SMALL_STATE(11070)] = 776984, + [SMALL_STATE(11071)] = 777016, + [SMALL_STATE(11072)] = 777048, + [SMALL_STATE(11073)] = 777080, + [SMALL_STATE(11074)] = 777112, + [SMALL_STATE(11075)] = 777144, + [SMALL_STATE(11076)] = 777176, + [SMALL_STATE(11077)] = 777208, + [SMALL_STATE(11078)] = 777240, + [SMALL_STATE(11079)] = 777272, + [SMALL_STATE(11080)] = 777304, + [SMALL_STATE(11081)] = 777336, + [SMALL_STATE(11082)] = 777368, + [SMALL_STATE(11083)] = 777400, + [SMALL_STATE(11084)] = 777432, + [SMALL_STATE(11085)] = 777464, + [SMALL_STATE(11086)] = 777496, + [SMALL_STATE(11087)] = 777528, + [SMALL_STATE(11088)] = 777560, + [SMALL_STATE(11089)] = 777592, + [SMALL_STATE(11090)] = 777624, + [SMALL_STATE(11091)] = 777656, + [SMALL_STATE(11092)] = 777688, + [SMALL_STATE(11093)] = 777720, + [SMALL_STATE(11094)] = 777752, + [SMALL_STATE(11095)] = 777784, + [SMALL_STATE(11096)] = 777816, + [SMALL_STATE(11097)] = 777848, + [SMALL_STATE(11098)] = 777880, + [SMALL_STATE(11099)] = 777912, + [SMALL_STATE(11100)] = 777944, + [SMALL_STATE(11101)] = 777978, + [SMALL_STATE(11102)] = 778010, + [SMALL_STATE(11103)] = 778042, + [SMALL_STATE(11104)] = 778074, + [SMALL_STATE(11105)] = 778106, + [SMALL_STATE(11106)] = 778138, + [SMALL_STATE(11107)] = 778170, + [SMALL_STATE(11108)] = 778202, + [SMALL_STATE(11109)] = 778234, + [SMALL_STATE(11110)] = 778266, + [SMALL_STATE(11111)] = 778298, + [SMALL_STATE(11112)] = 778330, + [SMALL_STATE(11113)] = 778362, + [SMALL_STATE(11114)] = 778394, + [SMALL_STATE(11115)] = 778426, + [SMALL_STATE(11116)] = 778458, + [SMALL_STATE(11117)] = 778490, + [SMALL_STATE(11118)] = 778522, + [SMALL_STATE(11119)] = 778556, + [SMALL_STATE(11120)] = 778588, + [SMALL_STATE(11121)] = 778620, + [SMALL_STATE(11122)] = 778652, + [SMALL_STATE(11123)] = 778684, + [SMALL_STATE(11124)] = 778716, + [SMALL_STATE(11125)] = 778748, + [SMALL_STATE(11126)] = 778780, + [SMALL_STATE(11127)] = 778812, + [SMALL_STATE(11128)] = 778844, + [SMALL_STATE(11129)] = 778878, + [SMALL_STATE(11130)] = 778910, + [SMALL_STATE(11131)] = 778942, + [SMALL_STATE(11132)] = 778974, + [SMALL_STATE(11133)] = 779008, + [SMALL_STATE(11134)] = 779040, + [SMALL_STATE(11135)] = 779072, + [SMALL_STATE(11136)] = 779104, + [SMALL_STATE(11137)] = 779136, + [SMALL_STATE(11138)] = 779168, + [SMALL_STATE(11139)] = 779200, + [SMALL_STATE(11140)] = 779232, + [SMALL_STATE(11141)] = 779264, + [SMALL_STATE(11142)] = 779296, + [SMALL_STATE(11143)] = 779330, + [SMALL_STATE(11144)] = 779362, + [SMALL_STATE(11145)] = 779394, + [SMALL_STATE(11146)] = 779430, + [SMALL_STATE(11147)] = 779462, + [SMALL_STATE(11148)] = 779494, + [SMALL_STATE(11149)] = 779526, + [SMALL_STATE(11150)] = 779558, + [SMALL_STATE(11151)] = 779590, + [SMALL_STATE(11152)] = 779622, + [SMALL_STATE(11153)] = 779654, + [SMALL_STATE(11154)] = 779686, + [SMALL_STATE(11155)] = 779722, + [SMALL_STATE(11156)] = 779754, + [SMALL_STATE(11157)] = 779786, + [SMALL_STATE(11158)] = 779818, + [SMALL_STATE(11159)] = 779850, + [SMALL_STATE(11160)] = 779882, + [SMALL_STATE(11161)] = 779914, + [SMALL_STATE(11162)] = 779946, + [SMALL_STATE(11163)] = 779978, + [SMALL_STATE(11164)] = 780010, + [SMALL_STATE(11165)] = 780042, + [SMALL_STATE(11166)] = 780074, + [SMALL_STATE(11167)] = 780106, + [SMALL_STATE(11168)] = 780142, + [SMALL_STATE(11169)] = 780174, + [SMALL_STATE(11170)] = 780206, + [SMALL_STATE(11171)] = 780238, + [SMALL_STATE(11172)] = 780270, + [SMALL_STATE(11173)] = 780304, + [SMALL_STATE(11174)] = 780336, + [SMALL_STATE(11175)] = 780368, + [SMALL_STATE(11176)] = 780400, + [SMALL_STATE(11177)] = 780432, + [SMALL_STATE(11178)] = 780464, + [SMALL_STATE(11179)] = 780496, + [SMALL_STATE(11180)] = 780528, + [SMALL_STATE(11181)] = 780560, + [SMALL_STATE(11182)] = 780592, + [SMALL_STATE(11183)] = 780624, + [SMALL_STATE(11184)] = 780656, + [SMALL_STATE(11185)] = 780688, + [SMALL_STATE(11186)] = 780720, + [SMALL_STATE(11187)] = 780752, + [SMALL_STATE(11188)] = 780784, + [SMALL_STATE(11189)] = 780816, + [SMALL_STATE(11190)] = 780848, + [SMALL_STATE(11191)] = 780882, + [SMALL_STATE(11192)] = 780918, + [SMALL_STATE(11193)] = 780950, + [SMALL_STATE(11194)] = 780986, + [SMALL_STATE(11195)] = 781018, + [SMALL_STATE(11196)] = 781050, + [SMALL_STATE(11197)] = 781082, + [SMALL_STATE(11198)] = 781114, + [SMALL_STATE(11199)] = 781146, + [SMALL_STATE(11200)] = 781178, + [SMALL_STATE(11201)] = 781210, + [SMALL_STATE(11202)] = 781242, + [SMALL_STATE(11203)] = 781276, + [SMALL_STATE(11204)] = 781308, + [SMALL_STATE(11205)] = 781340, + [SMALL_STATE(11206)] = 781372, + [SMALL_STATE(11207)] = 781404, + [SMALL_STATE(11208)] = 781436, + [SMALL_STATE(11209)] = 781468, + [SMALL_STATE(11210)] = 781500, + [SMALL_STATE(11211)] = 781532, + [SMALL_STATE(11212)] = 781564, + [SMALL_STATE(11213)] = 781596, + [SMALL_STATE(11214)] = 781628, + [SMALL_STATE(11215)] = 781660, + [SMALL_STATE(11216)] = 781692, + [SMALL_STATE(11217)] = 781728, + [SMALL_STATE(11218)] = 781764, + [SMALL_STATE(11219)] = 781796, + [SMALL_STATE(11220)] = 781828, + [SMALL_STATE(11221)] = 781860, + [SMALL_STATE(11222)] = 781892, + [SMALL_STATE(11223)] = 781924, + [SMALL_STATE(11224)] = 781956, + [SMALL_STATE(11225)] = 781988, + [SMALL_STATE(11226)] = 782020, + [SMALL_STATE(11227)] = 782052, + [SMALL_STATE(11228)] = 782086, + [SMALL_STATE(11229)] = 782118, + [SMALL_STATE(11230)] = 782150, + [SMALL_STATE(11231)] = 782182, + [SMALL_STATE(11232)] = 782214, + [SMALL_STATE(11233)] = 782246, + [SMALL_STATE(11234)] = 782280, + [SMALL_STATE(11235)] = 782312, + [SMALL_STATE(11236)] = 782344, + [SMALL_STATE(11237)] = 782376, + [SMALL_STATE(11238)] = 782408, + [SMALL_STATE(11239)] = 782440, + [SMALL_STATE(11240)] = 782472, + [SMALL_STATE(11241)] = 782504, + [SMALL_STATE(11242)] = 782536, + [SMALL_STATE(11243)] = 782568, + [SMALL_STATE(11244)] = 782600, + [SMALL_STATE(11245)] = 782632, + [SMALL_STATE(11246)] = 782664, + [SMALL_STATE(11247)] = 782696, + [SMALL_STATE(11248)] = 782728, + [SMALL_STATE(11249)] = 782760, + [SMALL_STATE(11250)] = 782794, + [SMALL_STATE(11251)] = 782826, + [SMALL_STATE(11252)] = 782858, + [SMALL_STATE(11253)] = 782890, + [SMALL_STATE(11254)] = 782922, + [SMALL_STATE(11255)] = 782954, + [SMALL_STATE(11256)] = 782986, + [SMALL_STATE(11257)] = 783018, + [SMALL_STATE(11258)] = 783050, + [SMALL_STATE(11259)] = 783082, + [SMALL_STATE(11260)] = 783114, + [SMALL_STATE(11261)] = 783146, + [SMALL_STATE(11262)] = 783178, + [SMALL_STATE(11263)] = 783210, + [SMALL_STATE(11264)] = 783242, + [SMALL_STATE(11265)] = 783274, + [SMALL_STATE(11266)] = 783306, + [SMALL_STATE(11267)] = 783338, + [SMALL_STATE(11268)] = 783370, + [SMALL_STATE(11269)] = 783402, + [SMALL_STATE(11270)] = 783438, + [SMALL_STATE(11271)] = 783470, + [SMALL_STATE(11272)] = 783502, + [SMALL_STATE(11273)] = 783536, + [SMALL_STATE(11274)] = 783568, + [SMALL_STATE(11275)] = 783600, + [SMALL_STATE(11276)] = 783634, + [SMALL_STATE(11277)] = 783666, + [SMALL_STATE(11278)] = 783698, + [SMALL_STATE(11279)] = 783730, + [SMALL_STATE(11280)] = 783762, + [SMALL_STATE(11281)] = 783794, + [SMALL_STATE(11282)] = 783826, + [SMALL_STATE(11283)] = 783858, + [SMALL_STATE(11284)] = 783890, + [SMALL_STATE(11285)] = 783922, + [SMALL_STATE(11286)] = 783954, + [SMALL_STATE(11287)] = 783986, + [SMALL_STATE(11288)] = 784018, + [SMALL_STATE(11289)] = 784050, + [SMALL_STATE(11290)] = 784082, + [SMALL_STATE(11291)] = 784114, + [SMALL_STATE(11292)] = 784146, + [SMALL_STATE(11293)] = 784178, + [SMALL_STATE(11294)] = 784210, + [SMALL_STATE(11295)] = 784246, + [SMALL_STATE(11296)] = 784282, + [SMALL_STATE(11297)] = 784318, + [SMALL_STATE(11298)] = 784350, + [SMALL_STATE(11299)] = 784382, + [SMALL_STATE(11300)] = 784416, + [SMALL_STATE(11301)] = 784448, + [SMALL_STATE(11302)] = 784480, + [SMALL_STATE(11303)] = 784512, + [SMALL_STATE(11304)] = 784548, + [SMALL_STATE(11305)] = 784580, + [SMALL_STATE(11306)] = 784616, + [SMALL_STATE(11307)] = 784648, + [SMALL_STATE(11308)] = 784680, + [SMALL_STATE(11309)] = 784714, + [SMALL_STATE(11310)] = 784746, + [SMALL_STATE(11311)] = 784778, + [SMALL_STATE(11312)] = 784810, + [SMALL_STATE(11313)] = 784842, + [SMALL_STATE(11314)] = 784876, + [SMALL_STATE(11315)] = 784908, + [SMALL_STATE(11316)] = 784940, + [SMALL_STATE(11317)] = 784972, + [SMALL_STATE(11318)] = 785004, + [SMALL_STATE(11319)] = 785036, + [SMALL_STATE(11320)] = 785068, + [SMALL_STATE(11321)] = 785102, + [SMALL_STATE(11322)] = 785134, + [SMALL_STATE(11323)] = 785166, + [SMALL_STATE(11324)] = 785200, + [SMALL_STATE(11325)] = 785232, + [SMALL_STATE(11326)] = 785264, + [SMALL_STATE(11327)] = 785298, + [SMALL_STATE(11328)] = 785330, + [SMALL_STATE(11329)] = 785362, + [SMALL_STATE(11330)] = 785398, + [SMALL_STATE(11331)] = 785432, + [SMALL_STATE(11332)] = 785464, + [SMALL_STATE(11333)] = 785496, + [SMALL_STATE(11334)] = 785528, + [SMALL_STATE(11335)] = 785560, + [SMALL_STATE(11336)] = 785592, + [SMALL_STATE(11337)] = 785624, + [SMALL_STATE(11338)] = 785656, + [SMALL_STATE(11339)] = 785692, + [SMALL_STATE(11340)] = 785728, + [SMALL_STATE(11341)] = 785760, + [SMALL_STATE(11342)] = 785796, + [SMALL_STATE(11343)] = 785832, + [SMALL_STATE(11344)] = 785864, + [SMALL_STATE(11345)] = 785898, + [SMALL_STATE(11346)] = 785930, + [SMALL_STATE(11347)] = 785962, + [SMALL_STATE(11348)] = 785994, + [SMALL_STATE(11349)] = 786026, + [SMALL_STATE(11350)] = 786058, + [SMALL_STATE(11351)] = 786090, + [SMALL_STATE(11352)] = 786122, + [SMALL_STATE(11353)] = 786158, + [SMALL_STATE(11354)] = 786190, + [SMALL_STATE(11355)] = 786222, + [SMALL_STATE(11356)] = 786256, + [SMALL_STATE(11357)] = 786288, + [SMALL_STATE(11358)] = 786324, + [SMALL_STATE(11359)] = 786356, + [SMALL_STATE(11360)] = 786388, + [SMALL_STATE(11361)] = 786420, + [SMALL_STATE(11362)] = 786452, + [SMALL_STATE(11363)] = 786484, + [SMALL_STATE(11364)] = 786516, + [SMALL_STATE(11365)] = 786548, + [SMALL_STATE(11366)] = 786580, + [SMALL_STATE(11367)] = 786612, + [SMALL_STATE(11368)] = 786644, + [SMALL_STATE(11369)] = 786676, + [SMALL_STATE(11370)] = 786708, + [SMALL_STATE(11371)] = 786740, + [SMALL_STATE(11372)] = 786772, + [SMALL_STATE(11373)] = 786804, + [SMALL_STATE(11374)] = 786836, + [SMALL_STATE(11375)] = 786868, + [SMALL_STATE(11376)] = 786900, + [SMALL_STATE(11377)] = 786932, + [SMALL_STATE(11378)] = 786964, + [SMALL_STATE(11379)] = 786996, + [SMALL_STATE(11380)] = 787028, + [SMALL_STATE(11381)] = 787060, + [SMALL_STATE(11382)] = 787092, + [SMALL_STATE(11383)] = 787124, + [SMALL_STATE(11384)] = 787156, + [SMALL_STATE(11385)] = 787188, + [SMALL_STATE(11386)] = 787220, + [SMALL_STATE(11387)] = 787252, + [SMALL_STATE(11388)] = 787284, + [SMALL_STATE(11389)] = 787316, + [SMALL_STATE(11390)] = 787348, + [SMALL_STATE(11391)] = 787380, + [SMALL_STATE(11392)] = 787412, + [SMALL_STATE(11393)] = 787448, + [SMALL_STATE(11394)] = 787480, + [SMALL_STATE(11395)] = 787516, + [SMALL_STATE(11396)] = 787548, + [SMALL_STATE(11397)] = 787580, + [SMALL_STATE(11398)] = 787612, + [SMALL_STATE(11399)] = 787644, + [SMALL_STATE(11400)] = 787676, + [SMALL_STATE(11401)] = 787708, + [SMALL_STATE(11402)] = 787740, + [SMALL_STATE(11403)] = 787772, + [SMALL_STATE(11404)] = 787804, + [SMALL_STATE(11405)] = 787836, + [SMALL_STATE(11406)] = 787868, + [SMALL_STATE(11407)] = 787900, + [SMALL_STATE(11408)] = 787932, + [SMALL_STATE(11409)] = 787964, + [SMALL_STATE(11410)] = 787996, + [SMALL_STATE(11411)] = 788032, + [SMALL_STATE(11412)] = 788068, + [SMALL_STATE(11413)] = 788104, + [SMALL_STATE(11414)] = 788136, + [SMALL_STATE(11415)] = 788170, + [SMALL_STATE(11416)] = 788202, + [SMALL_STATE(11417)] = 788234, + [SMALL_STATE(11418)] = 788266, + [SMALL_STATE(11419)] = 788298, + [SMALL_STATE(11420)] = 788330, + [SMALL_STATE(11421)] = 788362, + [SMALL_STATE(11422)] = 788394, + [SMALL_STATE(11423)] = 788426, + [SMALL_STATE(11424)] = 788458, + [SMALL_STATE(11425)] = 788490, + [SMALL_STATE(11426)] = 788526, + [SMALL_STATE(11427)] = 788562, + [SMALL_STATE(11428)] = 788596, + [SMALL_STATE(11429)] = 788628, + [SMALL_STATE(11430)] = 788660, + [SMALL_STATE(11431)] = 788692, + [SMALL_STATE(11432)] = 788724, + [SMALL_STATE(11433)] = 788756, + [SMALL_STATE(11434)] = 788788, + [SMALL_STATE(11435)] = 788824, + [SMALL_STATE(11436)] = 788856, + [SMALL_STATE(11437)] = 788888, + [SMALL_STATE(11438)] = 788920, + [SMALL_STATE(11439)] = 788952, + [SMALL_STATE(11440)] = 788986, + [SMALL_STATE(11441)] = 789018, + [SMALL_STATE(11442)] = 789050, + [SMALL_STATE(11443)] = 789082, + [SMALL_STATE(11444)] = 789114, + [SMALL_STATE(11445)] = 789150, + [SMALL_STATE(11446)] = 789186, + [SMALL_STATE(11447)] = 789222, + [SMALL_STATE(11448)] = 789254, + [SMALL_STATE(11449)] = 789286, + [SMALL_STATE(11450)] = 789318, + [SMALL_STATE(11451)] = 789350, + [SMALL_STATE(11452)] = 789382, + [SMALL_STATE(11453)] = 789414, + [SMALL_STATE(11454)] = 789446, + [SMALL_STATE(11455)] = 789478, + [SMALL_STATE(11456)] = 789510, + [SMALL_STATE(11457)] = 789542, + [SMALL_STATE(11458)] = 789574, + [SMALL_STATE(11459)] = 789606, + [SMALL_STATE(11460)] = 789638, + [SMALL_STATE(11461)] = 789670, + [SMALL_STATE(11462)] = 789704, + [SMALL_STATE(11463)] = 789736, + [SMALL_STATE(11464)] = 789768, + [SMALL_STATE(11465)] = 789800, + [SMALL_STATE(11466)] = 789832, + [SMALL_STATE(11467)] = 789866, + [SMALL_STATE(11468)] = 789898, + [SMALL_STATE(11469)] = 789930, + [SMALL_STATE(11470)] = 789962, + [SMALL_STATE(11471)] = 789994, + [SMALL_STATE(11472)] = 790026, + [SMALL_STATE(11473)] = 790058, + [SMALL_STATE(11474)] = 790090, + [SMALL_STATE(11475)] = 790122, + [SMALL_STATE(11476)] = 790154, + [SMALL_STATE(11477)] = 790188, + [SMALL_STATE(11478)] = 790220, + [SMALL_STATE(11479)] = 790252, + [SMALL_STATE(11480)] = 790284, + [SMALL_STATE(11481)] = 790316, + [SMALL_STATE(11482)] = 790350, + [SMALL_STATE(11483)] = 790382, + [SMALL_STATE(11484)] = 790414, + [SMALL_STATE(11485)] = 790446, + [SMALL_STATE(11486)] = 790478, + [SMALL_STATE(11487)] = 790510, + [SMALL_STATE(11488)] = 790544, + [SMALL_STATE(11489)] = 790576, + [SMALL_STATE(11490)] = 790608, + [SMALL_STATE(11491)] = 790640, + [SMALL_STATE(11492)] = 790674, + [SMALL_STATE(11493)] = 790706, + [SMALL_STATE(11494)] = 790738, + [SMALL_STATE(11495)] = 790770, + [SMALL_STATE(11496)] = 790802, + [SMALL_STATE(11497)] = 790834, + [SMALL_STATE(11498)] = 790866, + [SMALL_STATE(11499)] = 790898, + [SMALL_STATE(11500)] = 790930, + [SMALL_STATE(11501)] = 790962, + [SMALL_STATE(11502)] = 790996, + [SMALL_STATE(11503)] = 791028, + [SMALL_STATE(11504)] = 791060, + [SMALL_STATE(11505)] = 791092, + [SMALL_STATE(11506)] = 791126, + [SMALL_STATE(11507)] = 791158, + [SMALL_STATE(11508)] = 791190, + [SMALL_STATE(11509)] = 791222, + [SMALL_STATE(11510)] = 791258, + [SMALL_STATE(11511)] = 791290, + [SMALL_STATE(11512)] = 791322, + [SMALL_STATE(11513)] = 791354, + [SMALL_STATE(11514)] = 791386, + [SMALL_STATE(11515)] = 791418, + [SMALL_STATE(11516)] = 791452, + [SMALL_STATE(11517)] = 791484, + [SMALL_STATE(11518)] = 791520, + [SMALL_STATE(11519)] = 791552, + [SMALL_STATE(11520)] = 791588, + [SMALL_STATE(11521)] = 791622, + [SMALL_STATE(11522)] = 791654, + [SMALL_STATE(11523)] = 791686, + [SMALL_STATE(11524)] = 791718, + [SMALL_STATE(11525)] = 791750, + [SMALL_STATE(11526)] = 791782, + [SMALL_STATE(11527)] = 791814, + [SMALL_STATE(11528)] = 791850, + [SMALL_STATE(11529)] = 791886, + [SMALL_STATE(11530)] = 791922, + [SMALL_STATE(11531)] = 791954, + [SMALL_STATE(11532)] = 791986, + [SMALL_STATE(11533)] = 792018, + [SMALL_STATE(11534)] = 792050, + [SMALL_STATE(11535)] = 792082, + [SMALL_STATE(11536)] = 792114, + [SMALL_STATE(11537)] = 792146, + [SMALL_STATE(11538)] = 792178, + [SMALL_STATE(11539)] = 792210, + [SMALL_STATE(11540)] = 792242, + [SMALL_STATE(11541)] = 792278, + [SMALL_STATE(11542)] = 792314, + [SMALL_STATE(11543)] = 792346, + [SMALL_STATE(11544)] = 792380, + [SMALL_STATE(11545)] = 792412, + [SMALL_STATE(11546)] = 792444, + [SMALL_STATE(11547)] = 792476, + [SMALL_STATE(11548)] = 792508, + [SMALL_STATE(11549)] = 792540, + [SMALL_STATE(11550)] = 792572, + [SMALL_STATE(11551)] = 792604, + [SMALL_STATE(11552)] = 792636, + [SMALL_STATE(11553)] = 792668, + [SMALL_STATE(11554)] = 792700, + [SMALL_STATE(11555)] = 792732, + [SMALL_STATE(11556)] = 792764, + [SMALL_STATE(11557)] = 792796, + [SMALL_STATE(11558)] = 792828, + [SMALL_STATE(11559)] = 792860, + [SMALL_STATE(11560)] = 792892, + [SMALL_STATE(11561)] = 792924, + [SMALL_STATE(11562)] = 792956, + [SMALL_STATE(11563)] = 792988, + [SMALL_STATE(11564)] = 793020, + [SMALL_STATE(11565)] = 793052, + [SMALL_STATE(11566)] = 793084, + [SMALL_STATE(11567)] = 793116, + [SMALL_STATE(11568)] = 793148, + [SMALL_STATE(11569)] = 793180, + [SMALL_STATE(11570)] = 793212, + [SMALL_STATE(11571)] = 793244, + [SMALL_STATE(11572)] = 793276, + [SMALL_STATE(11573)] = 793310, + [SMALL_STATE(11574)] = 793346, + [SMALL_STATE(11575)] = 793378, + [SMALL_STATE(11576)] = 793410, + [SMALL_STATE(11577)] = 793442, + [SMALL_STATE(11578)] = 793474, + [SMALL_STATE(11579)] = 793506, + [SMALL_STATE(11580)] = 793538, + [SMALL_STATE(11581)] = 793570, + [SMALL_STATE(11582)] = 793602, + [SMALL_STATE(11583)] = 793634, + [SMALL_STATE(11584)] = 793666, + [SMALL_STATE(11585)] = 793698, + [SMALL_STATE(11586)] = 793730, + [SMALL_STATE(11587)] = 793762, + [SMALL_STATE(11588)] = 793794, + [SMALL_STATE(11589)] = 793826, + [SMALL_STATE(11590)] = 793858, + [SMALL_STATE(11591)] = 793890, + [SMALL_STATE(11592)] = 793922, + [SMALL_STATE(11593)] = 793954, + [SMALL_STATE(11594)] = 793986, + [SMALL_STATE(11595)] = 794022, + [SMALL_STATE(11596)] = 794054, + [SMALL_STATE(11597)] = 794086, + [SMALL_STATE(11598)] = 794118, + [SMALL_STATE(11599)] = 794150, + [SMALL_STATE(11600)] = 794182, + [SMALL_STATE(11601)] = 794214, + [SMALL_STATE(11602)] = 794246, + [SMALL_STATE(11603)] = 794278, + [SMALL_STATE(11604)] = 794310, + [SMALL_STATE(11605)] = 794342, + [SMALL_STATE(11606)] = 794374, + [SMALL_STATE(11607)] = 794410, + [SMALL_STATE(11608)] = 794442, + [SMALL_STATE(11609)] = 794474, + [SMALL_STATE(11610)] = 794506, + [SMALL_STATE(11611)] = 794538, + [SMALL_STATE(11612)] = 794570, + [SMALL_STATE(11613)] = 794602, + [SMALL_STATE(11614)] = 794634, + [SMALL_STATE(11615)] = 794666, + [SMALL_STATE(11616)] = 794698, + [SMALL_STATE(11617)] = 794730, + [SMALL_STATE(11618)] = 794764, + [SMALL_STATE(11619)] = 794796, + [SMALL_STATE(11620)] = 794828, + [SMALL_STATE(11621)] = 794860, + [SMALL_STATE(11622)] = 794892, + [SMALL_STATE(11623)] = 794924, + [SMALL_STATE(11624)] = 794956, + [SMALL_STATE(11625)] = 794988, + [SMALL_STATE(11626)] = 795020, + [SMALL_STATE(11627)] = 795052, + [SMALL_STATE(11628)] = 795084, + [SMALL_STATE(11629)] = 795116, + [SMALL_STATE(11630)] = 795148, + [SMALL_STATE(11631)] = 795180, + [SMALL_STATE(11632)] = 795212, + [SMALL_STATE(11633)] = 795244, + [SMALL_STATE(11634)] = 795280, + [SMALL_STATE(11635)] = 795316, + [SMALL_STATE(11636)] = 795352, + [SMALL_STATE(11637)] = 795384, + [SMALL_STATE(11638)] = 795416, + [SMALL_STATE(11639)] = 795448, + [SMALL_STATE(11640)] = 795484, + [SMALL_STATE(11641)] = 795516, + [SMALL_STATE(11642)] = 795548, + [SMALL_STATE(11643)] = 795580, + [SMALL_STATE(11644)] = 795612, + [SMALL_STATE(11645)] = 795644, + [SMALL_STATE(11646)] = 795676, + [SMALL_STATE(11647)] = 795708, + [SMALL_STATE(11648)] = 795740, + [SMALL_STATE(11649)] = 795772, + [SMALL_STATE(11650)] = 795804, + [SMALL_STATE(11651)] = 795838, + [SMALL_STATE(11652)] = 795870, + [SMALL_STATE(11653)] = 795902, + [SMALL_STATE(11654)] = 795938, + [SMALL_STATE(11655)] = 795970, + [SMALL_STATE(11656)] = 796002, + [SMALL_STATE(11657)] = 796034, + [SMALL_STATE(11658)] = 796066, + [SMALL_STATE(11659)] = 796098, + [SMALL_STATE(11660)] = 796134, + [SMALL_STATE(11661)] = 796166, + [SMALL_STATE(11662)] = 796200, + [SMALL_STATE(11663)] = 796232, + [SMALL_STATE(11664)] = 796264, + [SMALL_STATE(11665)] = 796296, + [SMALL_STATE(11666)] = 796328, + [SMALL_STATE(11667)] = 796360, + [SMALL_STATE(11668)] = 796392, + [SMALL_STATE(11669)] = 796424, + [SMALL_STATE(11670)] = 796456, + [SMALL_STATE(11671)] = 796488, + [SMALL_STATE(11672)] = 796520, + [SMALL_STATE(11673)] = 796556, + [SMALL_STATE(11674)] = 796592, + [SMALL_STATE(11675)] = 796626, + [SMALL_STATE(11676)] = 796658, + [SMALL_STATE(11677)] = 796690, + [SMALL_STATE(11678)] = 796722, + [SMALL_STATE(11679)] = 796754, + [SMALL_STATE(11680)] = 796786, + [SMALL_STATE(11681)] = 796818, + [SMALL_STATE(11682)] = 796850, + [SMALL_STATE(11683)] = 796882, + [SMALL_STATE(11684)] = 796914, + [SMALL_STATE(11685)] = 796948, + [SMALL_STATE(11686)] = 796980, + [SMALL_STATE(11687)] = 797012, + [SMALL_STATE(11688)] = 797044, + [SMALL_STATE(11689)] = 797076, + [SMALL_STATE(11690)] = 797108, + [SMALL_STATE(11691)] = 797140, + [SMALL_STATE(11692)] = 797172, + [SMALL_STATE(11693)] = 797204, + [SMALL_STATE(11694)] = 797236, + [SMALL_STATE(11695)] = 797268, + [SMALL_STATE(11696)] = 797300, + [SMALL_STATE(11697)] = 797332, + [SMALL_STATE(11698)] = 797364, + [SMALL_STATE(11699)] = 797396, + [SMALL_STATE(11700)] = 797428, + [SMALL_STATE(11701)] = 797460, + [SMALL_STATE(11702)] = 797492, + [SMALL_STATE(11703)] = 797524, + [SMALL_STATE(11704)] = 797556, + [SMALL_STATE(11705)] = 797588, + [SMALL_STATE(11706)] = 797620, + [SMALL_STATE(11707)] = 797652, + [SMALL_STATE(11708)] = 797684, + [SMALL_STATE(11709)] = 797716, + [SMALL_STATE(11710)] = 797748, + [SMALL_STATE(11711)] = 797780, + [SMALL_STATE(11712)] = 797812, + [SMALL_STATE(11713)] = 797844, + [SMALL_STATE(11714)] = 797876, + [SMALL_STATE(11715)] = 797908, + [SMALL_STATE(11716)] = 797944, + [SMALL_STATE(11717)] = 797976, + [SMALL_STATE(11718)] = 798008, + [SMALL_STATE(11719)] = 798040, + [SMALL_STATE(11720)] = 798072, + [SMALL_STATE(11721)] = 798104, + [SMALL_STATE(11722)] = 798136, + [SMALL_STATE(11723)] = 798168, + [SMALL_STATE(11724)] = 798200, + [SMALL_STATE(11725)] = 798232, + [SMALL_STATE(11726)] = 798264, + [SMALL_STATE(11727)] = 798296, + [SMALL_STATE(11728)] = 798328, + [SMALL_STATE(11729)] = 798360, + [SMALL_STATE(11730)] = 798392, + [SMALL_STATE(11731)] = 798428, + [SMALL_STATE(11732)] = 798460, + [SMALL_STATE(11733)] = 798492, + [SMALL_STATE(11734)] = 798524, + [SMALL_STATE(11735)] = 798556, + [SMALL_STATE(11736)] = 798588, + [SMALL_STATE(11737)] = 798620, + [SMALL_STATE(11738)] = 798652, + [SMALL_STATE(11739)] = 798684, + [SMALL_STATE(11740)] = 798716, + [SMALL_STATE(11741)] = 798748, + [SMALL_STATE(11742)] = 798780, + [SMALL_STATE(11743)] = 798812, + [SMALL_STATE(11744)] = 798844, + [SMALL_STATE(11745)] = 798876, + [SMALL_STATE(11746)] = 798908, + [SMALL_STATE(11747)] = 798940, + [SMALL_STATE(11748)] = 798972, + [SMALL_STATE(11749)] = 799004, + [SMALL_STATE(11750)] = 799040, + [SMALL_STATE(11751)] = 799074, + [SMALL_STATE(11752)] = 799106, + [SMALL_STATE(11753)] = 799138, + [SMALL_STATE(11754)] = 799174, + [SMALL_STATE(11755)] = 799208, + [SMALL_STATE(11756)] = 799240, + [SMALL_STATE(11757)] = 799272, + [SMALL_STATE(11758)] = 799304, + [SMALL_STATE(11759)] = 799336, + [SMALL_STATE(11760)] = 799368, + [SMALL_STATE(11761)] = 799400, + [SMALL_STATE(11762)] = 799432, + [SMALL_STATE(11763)] = 799464, + [SMALL_STATE(11764)] = 799496, + [SMALL_STATE(11765)] = 799528, + [SMALL_STATE(11766)] = 799560, + [SMALL_STATE(11767)] = 799592, + [SMALL_STATE(11768)] = 799624, + [SMALL_STATE(11769)] = 799656, + [SMALL_STATE(11770)] = 799688, + [SMALL_STATE(11771)] = 799720, + [SMALL_STATE(11772)] = 799752, + [SMALL_STATE(11773)] = 799784, + [SMALL_STATE(11774)] = 799816, + [SMALL_STATE(11775)] = 799848, + [SMALL_STATE(11776)] = 799880, + [SMALL_STATE(11777)] = 799912, + [SMALL_STATE(11778)] = 799944, + [SMALL_STATE(11779)] = 799976, + [SMALL_STATE(11780)] = 800008, + [SMALL_STATE(11781)] = 800040, + [SMALL_STATE(11782)] = 800072, + [SMALL_STATE(11783)] = 800104, + [SMALL_STATE(11784)] = 800136, + [SMALL_STATE(11785)] = 800170, + [SMALL_STATE(11786)] = 800202, + [SMALL_STATE(11787)] = 800238, + [SMALL_STATE(11788)] = 800270, + [SMALL_STATE(11789)] = 800302, + [SMALL_STATE(11790)] = 800334, + [SMALL_STATE(11791)] = 800370, + [SMALL_STATE(11792)] = 800402, + [SMALL_STATE(11793)] = 800434, + [SMALL_STATE(11794)] = 800466, + [SMALL_STATE(11795)] = 800498, + [SMALL_STATE(11796)] = 800530, + [SMALL_STATE(11797)] = 800562, + [SMALL_STATE(11798)] = 800594, + [SMALL_STATE(11799)] = 800626, + [SMALL_STATE(11800)] = 800658, + [SMALL_STATE(11801)] = 800690, + [SMALL_STATE(11802)] = 800722, + [SMALL_STATE(11803)] = 800754, + [SMALL_STATE(11804)] = 800786, + [SMALL_STATE(11805)] = 800818, + [SMALL_STATE(11806)] = 800850, + [SMALL_STATE(11807)] = 800882, + [SMALL_STATE(11808)] = 800918, + [SMALL_STATE(11809)] = 800954, + [SMALL_STATE(11810)] = 800986, + [SMALL_STATE(11811)] = 801018, + [SMALL_STATE(11812)] = 801050, + [SMALL_STATE(11813)] = 801082, + [SMALL_STATE(11814)] = 801114, + [SMALL_STATE(11815)] = 801146, + [SMALL_STATE(11816)] = 801178, + [SMALL_STATE(11817)] = 801210, + [SMALL_STATE(11818)] = 801242, + [SMALL_STATE(11819)] = 801274, + [SMALL_STATE(11820)] = 801306, + [SMALL_STATE(11821)] = 801338, + [SMALL_STATE(11822)] = 801370, + [SMALL_STATE(11823)] = 801402, + [SMALL_STATE(11824)] = 801438, + [SMALL_STATE(11825)] = 801470, + [SMALL_STATE(11826)] = 801502, + [SMALL_STATE(11827)] = 801534, + [SMALL_STATE(11828)] = 801566, + [SMALL_STATE(11829)] = 801600, + [SMALL_STATE(11830)] = 801632, + [SMALL_STATE(11831)] = 801664, + [SMALL_STATE(11832)] = 801696, + [SMALL_STATE(11833)] = 801732, + [SMALL_STATE(11834)] = 801764, + [SMALL_STATE(11835)] = 801796, + [SMALL_STATE(11836)] = 801828, + [SMALL_STATE(11837)] = 801860, + [SMALL_STATE(11838)] = 801892, + [SMALL_STATE(11839)] = 801924, + [SMALL_STATE(11840)] = 801956, + [SMALL_STATE(11841)] = 801988, + [SMALL_STATE(11842)] = 802020, + [SMALL_STATE(11843)] = 802052, + [SMALL_STATE(11844)] = 802084, + [SMALL_STATE(11845)] = 802116, + [SMALL_STATE(11846)] = 802148, + [SMALL_STATE(11847)] = 802180, + [SMALL_STATE(11848)] = 802212, + [SMALL_STATE(11849)] = 802244, + [SMALL_STATE(11850)] = 802280, + [SMALL_STATE(11851)] = 802316, + [SMALL_STATE(11852)] = 802352, + [SMALL_STATE(11853)] = 802388, + [SMALL_STATE(11854)] = 802424, + [SMALL_STATE(11855)] = 802456, + [SMALL_STATE(11856)] = 802488, + [SMALL_STATE(11857)] = 802524, + [SMALL_STATE(11858)] = 802560, + [SMALL_STATE(11859)] = 802596, + [SMALL_STATE(11860)] = 802632, + [SMALL_STATE(11861)] = 802668, + [SMALL_STATE(11862)] = 802700, + [SMALL_STATE(11863)] = 802732, + [SMALL_STATE(11864)] = 802768, + [SMALL_STATE(11865)] = 802804, + [SMALL_STATE(11866)] = 802836, + [SMALL_STATE(11867)] = 802868, + [SMALL_STATE(11868)] = 802902, + [SMALL_STATE(11869)] = 802934, + [SMALL_STATE(11870)] = 802966, + [SMALL_STATE(11871)] = 803002, + [SMALL_STATE(11872)] = 803038, + [SMALL_STATE(11873)] = 803074, + [SMALL_STATE(11874)] = 803110, + [SMALL_STATE(11875)] = 803146, + [SMALL_STATE(11876)] = 803178, + [SMALL_STATE(11877)] = 803210, + [SMALL_STATE(11878)] = 803242, + [SMALL_STATE(11879)] = 803274, + [SMALL_STATE(11880)] = 803306, + [SMALL_STATE(11881)] = 803338, + [SMALL_STATE(11882)] = 803370, + [SMALL_STATE(11883)] = 803402, + [SMALL_STATE(11884)] = 803434, + [SMALL_STATE(11885)] = 803466, + [SMALL_STATE(11886)] = 803498, + [SMALL_STATE(11887)] = 803530, + [SMALL_STATE(11888)] = 803562, + [SMALL_STATE(11889)] = 803594, + [SMALL_STATE(11890)] = 803626, + [SMALL_STATE(11891)] = 803658, + [SMALL_STATE(11892)] = 803690, + [SMALL_STATE(11893)] = 803722, + [SMALL_STATE(11894)] = 803754, + [SMALL_STATE(11895)] = 803786, + [SMALL_STATE(11896)] = 803818, + [SMALL_STATE(11897)] = 803850, + [SMALL_STATE(11898)] = 803882, + [SMALL_STATE(11899)] = 803914, + [SMALL_STATE(11900)] = 803946, + [SMALL_STATE(11901)] = 803978, + [SMALL_STATE(11902)] = 804010, + [SMALL_STATE(11903)] = 804042, + [SMALL_STATE(11904)] = 804074, + [SMALL_STATE(11905)] = 804106, + [SMALL_STATE(11906)] = 804141, + [SMALL_STATE(11907)] = 804176, + [SMALL_STATE(11908)] = 804235, + [SMALL_STATE(11909)] = 804294, + [SMALL_STATE(11910)] = 804353, + [SMALL_STATE(11911)] = 804412, + [SMALL_STATE(11912)] = 804447, + [SMALL_STATE(11913)] = 804506, + [SMALL_STATE(11914)] = 804537, + [SMALL_STATE(11915)] = 804568, + [SMALL_STATE(11916)] = 804601, + [SMALL_STATE(11917)] = 804632, + [SMALL_STATE(11918)] = 804663, + [SMALL_STATE(11919)] = 804722, + [SMALL_STATE(11920)] = 804781, + [SMALL_STATE(11921)] = 804814, + [SMALL_STATE(11922)] = 804845, + [SMALL_STATE(11923)] = 804904, + [SMALL_STATE(11924)] = 804935, + [SMALL_STATE(11925)] = 804966, + [SMALL_STATE(11926)] = 804997, + [SMALL_STATE(11927)] = 805028, + [SMALL_STATE(11928)] = 805059, + [SMALL_STATE(11929)] = 805090, + [SMALL_STATE(11930)] = 805121, + [SMALL_STATE(11931)] = 805180, + [SMALL_STATE(11932)] = 805239, + [SMALL_STATE(11933)] = 805270, + [SMALL_STATE(11934)] = 805301, + [SMALL_STATE(11935)] = 805332, + [SMALL_STATE(11936)] = 805363, + [SMALL_STATE(11937)] = 805394, + [SMALL_STATE(11938)] = 805453, + [SMALL_STATE(11939)] = 805484, + [SMALL_STATE(11940)] = 805515, + [SMALL_STATE(11941)] = 805546, + [SMALL_STATE(11942)] = 805577, + [SMALL_STATE(11943)] = 805636, + [SMALL_STATE(11944)] = 805667, + [SMALL_STATE(11945)] = 805698, + [SMALL_STATE(11946)] = 805757, + [SMALL_STATE(11947)] = 805788, + [SMALL_STATE(11948)] = 805819, + [SMALL_STATE(11949)] = 805850, + [SMALL_STATE(11950)] = 805881, + [SMALL_STATE(11951)] = 805912, + [SMALL_STATE(11952)] = 805943, + [SMALL_STATE(11953)] = 805974, + [SMALL_STATE(11954)] = 806033, + [SMALL_STATE(11955)] = 806064, + [SMALL_STATE(11956)] = 806099, + [SMALL_STATE(11957)] = 806152, + [SMALL_STATE(11958)] = 806211, + [SMALL_STATE(11959)] = 806242, + [SMALL_STATE(11960)] = 806273, + [SMALL_STATE(11961)] = 806332, + [SMALL_STATE(11962)] = 806363, + [SMALL_STATE(11963)] = 806394, + [SMALL_STATE(11964)] = 806425, + [SMALL_STATE(11965)] = 806456, + [SMALL_STATE(11966)] = 806487, + [SMALL_STATE(11967)] = 806518, + [SMALL_STATE(11968)] = 806549, + [SMALL_STATE(11969)] = 806608, + [SMALL_STATE(11970)] = 806639, + [SMALL_STATE(11971)] = 806698, + [SMALL_STATE(11972)] = 806733, + [SMALL_STATE(11973)] = 806780, + [SMALL_STATE(11974)] = 806811, + [SMALL_STATE(11975)] = 806842, + [SMALL_STATE(11976)] = 806873, + [SMALL_STATE(11977)] = 806904, + [SMALL_STATE(11978)] = 806935, + [SMALL_STATE(11979)] = 806966, + [SMALL_STATE(11980)] = 806997, + [SMALL_STATE(11981)] = 807028, + [SMALL_STATE(11982)] = 807059, + [SMALL_STATE(11983)] = 807090, + [SMALL_STATE(11984)] = 807149, + [SMALL_STATE(11985)] = 807184, + [SMALL_STATE(11986)] = 807215, + [SMALL_STATE(11987)] = 807246, + [SMALL_STATE(11988)] = 807277, + [SMALL_STATE(11989)] = 807308, + [SMALL_STATE(11990)] = 807339, + [SMALL_STATE(11991)] = 807370, + [SMALL_STATE(11992)] = 807401, + [SMALL_STATE(11993)] = 807432, + [SMALL_STATE(11994)] = 807463, + [SMALL_STATE(11995)] = 807494, + [SMALL_STATE(11996)] = 807525, + [SMALL_STATE(11997)] = 807584, + [SMALL_STATE(11998)] = 807615, + [SMALL_STATE(11999)] = 807646, + [SMALL_STATE(12000)] = 807677, + [SMALL_STATE(12001)] = 807708, + [SMALL_STATE(12002)] = 807739, + [SMALL_STATE(12003)] = 807770, + [SMALL_STATE(12004)] = 807829, + [SMALL_STATE(12005)] = 807860, + [SMALL_STATE(12006)] = 807891, + [SMALL_STATE(12007)] = 807922, + [SMALL_STATE(12008)] = 807953, + [SMALL_STATE(12009)] = 808012, + [SMALL_STATE(12010)] = 808071, + [SMALL_STATE(12011)] = 808130, + [SMALL_STATE(12012)] = 808189, + [SMALL_STATE(12013)] = 808248, + [SMALL_STATE(12014)] = 808307, + [SMALL_STATE(12015)] = 808366, + [SMALL_STATE(12016)] = 808425, + [SMALL_STATE(12017)] = 808484, + [SMALL_STATE(12018)] = 808543, + [SMALL_STATE(12019)] = 808602, + [SMALL_STATE(12020)] = 808661, + [SMALL_STATE(12021)] = 808720, + [SMALL_STATE(12022)] = 808779, + [SMALL_STATE(12023)] = 808838, + [SMALL_STATE(12024)] = 808897, + [SMALL_STATE(12025)] = 808928, + [SMALL_STATE(12026)] = 808959, + [SMALL_STATE(12027)] = 808992, + [SMALL_STATE(12028)] = 809023, + [SMALL_STATE(12029)] = 809054, + [SMALL_STATE(12030)] = 809113, + [SMALL_STATE(12031)] = 809146, + [SMALL_STATE(12032)] = 809177, + [SMALL_STATE(12033)] = 809236, + [SMALL_STATE(12034)] = 809295, + [SMALL_STATE(12035)] = 809326, + [SMALL_STATE(12036)] = 809357, + [SMALL_STATE(12037)] = 809388, + [SMALL_STATE(12038)] = 809419, + [SMALL_STATE(12039)] = 809450, + [SMALL_STATE(12040)] = 809509, + [SMALL_STATE(12041)] = 809568, + [SMALL_STATE(12042)] = 809599, + [SMALL_STATE(12043)] = 809658, + [SMALL_STATE(12044)] = 809717, + [SMALL_STATE(12045)] = 809776, + [SMALL_STATE(12046)] = 809835, + [SMALL_STATE(12047)] = 809866, + [SMALL_STATE(12048)] = 809897, + [SMALL_STATE(12049)] = 809956, + [SMALL_STATE(12050)] = 810015, + [SMALL_STATE(12051)] = 810046, + [SMALL_STATE(12052)] = 810105, + [SMALL_STATE(12053)] = 810138, + [SMALL_STATE(12054)] = 810173, + [SMALL_STATE(12055)] = 810232, + [SMALL_STATE(12056)] = 810291, + [SMALL_STATE(12057)] = 810324, + [SMALL_STATE(12058)] = 810383, + [SMALL_STATE(12059)] = 810442, + [SMALL_STATE(12060)] = 810477, + [SMALL_STATE(12061)] = 810508, + [SMALL_STATE(12062)] = 810567, + [SMALL_STATE(12063)] = 810626, + [SMALL_STATE(12064)] = 810685, + [SMALL_STATE(12065)] = 810720, + [SMALL_STATE(12066)] = 810779, + [SMALL_STATE(12067)] = 810838, + [SMALL_STATE(12068)] = 810869, + [SMALL_STATE(12069)] = 810928, + [SMALL_STATE(12070)] = 810963, + [SMALL_STATE(12071)] = 811022, + [SMALL_STATE(12072)] = 811053, + [SMALL_STATE(12073)] = 811084, + [SMALL_STATE(12074)] = 811117, + [SMALL_STATE(12075)] = 811148, + [SMALL_STATE(12076)] = 811179, + [SMALL_STATE(12077)] = 811212, + [SMALL_STATE(12078)] = 811243, + [SMALL_STATE(12079)] = 811274, + [SMALL_STATE(12080)] = 811305, + [SMALL_STATE(12081)] = 811336, + [SMALL_STATE(12082)] = 811367, + [SMALL_STATE(12083)] = 811398, + [SMALL_STATE(12084)] = 811451, + [SMALL_STATE(12085)] = 811482, + [SMALL_STATE(12086)] = 811541, + [SMALL_STATE(12087)] = 811572, + [SMALL_STATE(12088)] = 811603, + [SMALL_STATE(12089)] = 811662, + [SMALL_STATE(12090)] = 811693, + [SMALL_STATE(12091)] = 811752, + [SMALL_STATE(12092)] = 811811, + [SMALL_STATE(12093)] = 811870, + [SMALL_STATE(12094)] = 811905, + [SMALL_STATE(12095)] = 811938, + [SMALL_STATE(12096)] = 811973, + [SMALL_STATE(12097)] = 812032, + [SMALL_STATE(12098)] = 812063, + [SMALL_STATE(12099)] = 812094, + [SMALL_STATE(12100)] = 812127, + [SMALL_STATE(12101)] = 812158, + [SMALL_STATE(12102)] = 812189, + [SMALL_STATE(12103)] = 812248, + [SMALL_STATE(12104)] = 812281, + [SMALL_STATE(12105)] = 812312, + [SMALL_STATE(12106)] = 812363, + [SMALL_STATE(12107)] = 812394, + [SMALL_STATE(12108)] = 812429, + [SMALL_STATE(12109)] = 812460, + [SMALL_STATE(12110)] = 812519, + [SMALL_STATE(12111)] = 812550, + [SMALL_STATE(12112)] = 812581, + [SMALL_STATE(12113)] = 812612, + [SMALL_STATE(12114)] = 812643, + [SMALL_STATE(12115)] = 812702, + [SMALL_STATE(12116)] = 812735, + [SMALL_STATE(12117)] = 812794, + [SMALL_STATE(12118)] = 812825, + [SMALL_STATE(12119)] = 812856, + [SMALL_STATE(12120)] = 812915, + [SMALL_STATE(12121)] = 812946, + [SMALL_STATE(12122)] = 812977, + [SMALL_STATE(12123)] = 813008, + [SMALL_STATE(12124)] = 813039, + [SMALL_STATE(12125)] = 813070, + [SMALL_STATE(12126)] = 813101, + [SMALL_STATE(12127)] = 813160, + [SMALL_STATE(12128)] = 813191, + [SMALL_STATE(12129)] = 813222, + [SMALL_STATE(12130)] = 813253, + [SMALL_STATE(12131)] = 813312, + [SMALL_STATE(12132)] = 813371, + [SMALL_STATE(12133)] = 813402, + [SMALL_STATE(12134)] = 813433, + [SMALL_STATE(12135)] = 813464, + [SMALL_STATE(12136)] = 813523, + [SMALL_STATE(12137)] = 813556, + [SMALL_STATE(12138)] = 813587, + [SMALL_STATE(12139)] = 813618, + [SMALL_STATE(12140)] = 813649, + [SMALL_STATE(12141)] = 813680, + [SMALL_STATE(12142)] = 813711, + [SMALL_STATE(12143)] = 813770, + [SMALL_STATE(12144)] = 813801, + [SMALL_STATE(12145)] = 813832, + [SMALL_STATE(12146)] = 813863, + [SMALL_STATE(12147)] = 813894, + [SMALL_STATE(12148)] = 813929, + [SMALL_STATE(12149)] = 813960, + [SMALL_STATE(12150)] = 814019, + [SMALL_STATE(12151)] = 814050, + [SMALL_STATE(12152)] = 814081, + [SMALL_STATE(12153)] = 814112, + [SMALL_STATE(12154)] = 814171, + [SMALL_STATE(12155)] = 814230, + [SMALL_STATE(12156)] = 814289, + [SMALL_STATE(12157)] = 814320, + [SMALL_STATE(12158)] = 814379, + [SMALL_STATE(12159)] = 814412, + [SMALL_STATE(12160)] = 814443, + [SMALL_STATE(12161)] = 814502, + [SMALL_STATE(12162)] = 814561, + [SMALL_STATE(12163)] = 814620, + [SMALL_STATE(12164)] = 814679, + [SMALL_STATE(12165)] = 814710, + [SMALL_STATE(12166)] = 814769, + [SMALL_STATE(12167)] = 814828, + [SMALL_STATE(12168)] = 814881, + [SMALL_STATE(12169)] = 814940, + [SMALL_STATE(12170)] = 814971, + [SMALL_STATE(12171)] = 815002, + [SMALL_STATE(12172)] = 815061, + [SMALL_STATE(12173)] = 815120, + [SMALL_STATE(12174)] = 815151, + [SMALL_STATE(12175)] = 815182, + [SMALL_STATE(12176)] = 815235, + [SMALL_STATE(12177)] = 815266, + [SMALL_STATE(12178)] = 815299, + [SMALL_STATE(12179)] = 815358, + [SMALL_STATE(12180)] = 815389, + [SMALL_STATE(12181)] = 815448, + [SMALL_STATE(12182)] = 815479, + [SMALL_STATE(12183)] = 815538, + [SMALL_STATE(12184)] = 815597, + [SMALL_STATE(12185)] = 815628, + [SMALL_STATE(12186)] = 815659, + [SMALL_STATE(12187)] = 815690, + [SMALL_STATE(12188)] = 815721, + [SMALL_STATE(12189)] = 815780, + [SMALL_STATE(12190)] = 815811, + [SMALL_STATE(12191)] = 815870, + [SMALL_STATE(12192)] = 815929, + [SMALL_STATE(12193)] = 815988, + [SMALL_STATE(12194)] = 816047, + [SMALL_STATE(12195)] = 816106, + [SMALL_STATE(12196)] = 816165, + [SMALL_STATE(12197)] = 816196, + [SMALL_STATE(12198)] = 816227, + [SMALL_STATE(12199)] = 816286, + [SMALL_STATE(12200)] = 816317, + [SMALL_STATE(12201)] = 816348, + [SMALL_STATE(12202)] = 816379, + [SMALL_STATE(12203)] = 816410, + [SMALL_STATE(12204)] = 816441, + [SMALL_STATE(12205)] = 816472, + [SMALL_STATE(12206)] = 816503, + [SMALL_STATE(12207)] = 816534, + [SMALL_STATE(12208)] = 816565, + [SMALL_STATE(12209)] = 816600, + [SMALL_STATE(12210)] = 816659, + [SMALL_STATE(12211)] = 816718, + [SMALL_STATE(12212)] = 816777, + [SMALL_STATE(12213)] = 816808, + [SMALL_STATE(12214)] = 816867, + [SMALL_STATE(12215)] = 816898, + [SMALL_STATE(12216)] = 816929, + [SMALL_STATE(12217)] = 816960, + [SMALL_STATE(12218)] = 816991, + [SMALL_STATE(12219)] = 817022, + [SMALL_STATE(12220)] = 817081, + [SMALL_STATE(12221)] = 817112, + [SMALL_STATE(12222)] = 817171, + [SMALL_STATE(12223)] = 817230, + [SMALL_STATE(12224)] = 817289, + [SMALL_STATE(12225)] = 817320, + [SMALL_STATE(12226)] = 817351, + [SMALL_STATE(12227)] = 817382, + [SMALL_STATE(12228)] = 817413, + [SMALL_STATE(12229)] = 817472, + [SMALL_STATE(12230)] = 817531, + [SMALL_STATE(12231)] = 817590, + [SMALL_STATE(12232)] = 817649, + [SMALL_STATE(12233)] = 817708, + [SMALL_STATE(12234)] = 817767, + [SMALL_STATE(12235)] = 817826, + [SMALL_STATE(12236)] = 817857, + [SMALL_STATE(12237)] = 817888, + [SMALL_STATE(12238)] = 817919, + [SMALL_STATE(12239)] = 817978, + [SMALL_STATE(12240)] = 818009, + [SMALL_STATE(12241)] = 818040, + [SMALL_STATE(12242)] = 818099, + [SMALL_STATE(12243)] = 818130, + [SMALL_STATE(12244)] = 818189, + [SMALL_STATE(12245)] = 818248, + [SMALL_STATE(12246)] = 818307, + [SMALL_STATE(12247)] = 818366, + [SMALL_STATE(12248)] = 818425, + [SMALL_STATE(12249)] = 818460, + [SMALL_STATE(12250)] = 818519, + [SMALL_STATE(12251)] = 818550, + [SMALL_STATE(12252)] = 818581, + [SMALL_STATE(12253)] = 818616, + [SMALL_STATE(12254)] = 818647, + [SMALL_STATE(12255)] = 818678, + [SMALL_STATE(12256)] = 818737, + [SMALL_STATE(12257)] = 818796, + [SMALL_STATE(12258)] = 818855, + [SMALL_STATE(12259)] = 818886, + [SMALL_STATE(12260)] = 818933, + [SMALL_STATE(12261)] = 818968, + [SMALL_STATE(12262)] = 818999, + [SMALL_STATE(12263)] = 819034, + [SMALL_STATE(12264)] = 819065, + [SMALL_STATE(12265)] = 819124, + [SMALL_STATE(12266)] = 819183, + [SMALL_STATE(12267)] = 819214, + [SMALL_STATE(12268)] = 819245, + [SMALL_STATE(12269)] = 819304, + [SMALL_STATE(12270)] = 819335, + [SMALL_STATE(12271)] = 819366, + [SMALL_STATE(12272)] = 819397, + [SMALL_STATE(12273)] = 819432, + [SMALL_STATE(12274)] = 819467, + [SMALL_STATE(12275)] = 819498, + [SMALL_STATE(12276)] = 819529, + [SMALL_STATE(12277)] = 819588, + [SMALL_STATE(12278)] = 819619, + [SMALL_STATE(12279)] = 819650, + [SMALL_STATE(12280)] = 819709, + [SMALL_STATE(12281)] = 819768, + [SMALL_STATE(12282)] = 819801, + [SMALL_STATE(12283)] = 819860, + [SMALL_STATE(12284)] = 819919, + [SMALL_STATE(12285)] = 819954, + [SMALL_STATE(12286)] = 820013, + [SMALL_STATE(12287)] = 820072, + [SMALL_STATE(12288)] = 820107, + [SMALL_STATE(12289)] = 820142, + [SMALL_STATE(12290)] = 820177, + [SMALL_STATE(12291)] = 820236, + [SMALL_STATE(12292)] = 820295, + [SMALL_STATE(12293)] = 820328, + [SMALL_STATE(12294)] = 820387, + [SMALL_STATE(12295)] = 820446, + [SMALL_STATE(12296)] = 820505, + [SMALL_STATE(12297)] = 820536, + [SMALL_STATE(12298)] = 820595, + [SMALL_STATE(12299)] = 820626, + [SMALL_STATE(12300)] = 820657, + [SMALL_STATE(12301)] = 820688, + [SMALL_STATE(12302)] = 820719, + [SMALL_STATE(12303)] = 820752, + [SMALL_STATE(12304)] = 820783, + [SMALL_STATE(12305)] = 820814, + [SMALL_STATE(12306)] = 820845, + [SMALL_STATE(12307)] = 820904, + [SMALL_STATE(12308)] = 820937, + [SMALL_STATE(12309)] = 820996, + [SMALL_STATE(12310)] = 821031, + [SMALL_STATE(12311)] = 821064, + [SMALL_STATE(12312)] = 821123, + [SMALL_STATE(12313)] = 821158, + [SMALL_STATE(12314)] = 821191, + [SMALL_STATE(12315)] = 821222, + [SMALL_STATE(12316)] = 821281, + [SMALL_STATE(12317)] = 821316, + [SMALL_STATE(12318)] = 821351, + [SMALL_STATE(12319)] = 821410, + [SMALL_STATE(12320)] = 821451, + [SMALL_STATE(12321)] = 821486, + [SMALL_STATE(12322)] = 821521, + [SMALL_STATE(12323)] = 821554, + [SMALL_STATE(12324)] = 821613, + [SMALL_STATE(12325)] = 821648, + [SMALL_STATE(12326)] = 821683, + [SMALL_STATE(12327)] = 821716, + [SMALL_STATE(12328)] = 821775, + [SMALL_STATE(12329)] = 821806, + [SMALL_STATE(12330)] = 821841, + [SMALL_STATE(12331)] = 821880, + [SMALL_STATE(12332)] = 821913, + [SMALL_STATE(12333)] = 821972, + [SMALL_STATE(12334)] = 822011, + [SMALL_STATE(12335)] = 822046, + [SMALL_STATE(12336)] = 822105, + [SMALL_STATE(12337)] = 822146, + [SMALL_STATE(12338)] = 822181, + [SMALL_STATE(12339)] = 822216, + [SMALL_STATE(12340)] = 822251, + [SMALL_STATE(12341)] = 822286, + [SMALL_STATE(12342)] = 822319, + [SMALL_STATE(12343)] = 822378, + [SMALL_STATE(12344)] = 822437, + [SMALL_STATE(12345)] = 822496, + [SMALL_STATE(12346)] = 822531, + [SMALL_STATE(12347)] = 822566, + [SMALL_STATE(12348)] = 822601, + [SMALL_STATE(12349)] = 822660, + [SMALL_STATE(12350)] = 822695, + [SMALL_STATE(12351)] = 822754, + [SMALL_STATE(12352)] = 822793, + [SMALL_STATE(12353)] = 822826, + [SMALL_STATE(12354)] = 822857, + [SMALL_STATE(12355)] = 822916, + [SMALL_STATE(12356)] = 822949, + [SMALL_STATE(12357)] = 822980, + [SMALL_STATE(12358)] = 823039, + [SMALL_STATE(12359)] = 823072, + [SMALL_STATE(12360)] = 823131, + [SMALL_STATE(12361)] = 823190, + [SMALL_STATE(12362)] = 823249, + [SMALL_STATE(12363)] = 823282, + [SMALL_STATE(12364)] = 823341, + [SMALL_STATE(12365)] = 823372, + [SMALL_STATE(12366)] = 823403, + [SMALL_STATE(12367)] = 823436, + [SMALL_STATE(12368)] = 823467, + [SMALL_STATE(12369)] = 823526, + [SMALL_STATE(12370)] = 823559, + [SMALL_STATE(12371)] = 823590, + [SMALL_STATE(12372)] = 823649, + [SMALL_STATE(12373)] = 823684, + [SMALL_STATE(12374)] = 823719, + [SMALL_STATE(12375)] = 823758, + [SMALL_STATE(12376)] = 823797, + [SMALL_STATE(12377)] = 823856, + [SMALL_STATE(12378)] = 823915, + [SMALL_STATE(12379)] = 823948, + [SMALL_STATE(12380)] = 824007, + [SMALL_STATE(12381)] = 824046, + [SMALL_STATE(12382)] = 824079, + [SMALL_STATE(12383)] = 824120, + [SMALL_STATE(12384)] = 824153, + [SMALL_STATE(12385)] = 824212, + [SMALL_STATE(12386)] = 824245, + [SMALL_STATE(12387)] = 824276, + [SMALL_STATE(12388)] = 824335, + [SMALL_STATE(12389)] = 824394, + [SMALL_STATE(12390)] = 824433, + [SMALL_STATE(12391)] = 824472, + [SMALL_STATE(12392)] = 824531, + [SMALL_STATE(12393)] = 824562, + [SMALL_STATE(12394)] = 824597, + [SMALL_STATE(12395)] = 824632, + [SMALL_STATE(12396)] = 824665, + [SMALL_STATE(12397)] = 824724, + [SMALL_STATE(12398)] = 824783, + [SMALL_STATE(12399)] = 824822, + [SMALL_STATE(12400)] = 824855, + [SMALL_STATE(12401)] = 824896, + [SMALL_STATE(12402)] = 824929, + [SMALL_STATE(12403)] = 824988, + [SMALL_STATE(12404)] = 825047, + [SMALL_STATE(12405)] = 825106, + [SMALL_STATE(12406)] = 825139, + [SMALL_STATE(12407)] = 825198, + [SMALL_STATE(12408)] = 825257, + [SMALL_STATE(12409)] = 825316, + [SMALL_STATE(12410)] = 825375, + [SMALL_STATE(12411)] = 825410, + [SMALL_STATE(12412)] = 825445, + [SMALL_STATE(12413)] = 825478, + [SMALL_STATE(12414)] = 825537, + [SMALL_STATE(12415)] = 825596, + [SMALL_STATE(12416)] = 825637, + [SMALL_STATE(12417)] = 825672, + [SMALL_STATE(12418)] = 825707, + [SMALL_STATE(12419)] = 825740, + [SMALL_STATE(12420)] = 825771, + [SMALL_STATE(12421)] = 825802, + [SMALL_STATE(12422)] = 825833, + [SMALL_STATE(12423)] = 825864, + [SMALL_STATE(12424)] = 825895, + [SMALL_STATE(12425)] = 825926, + [SMALL_STATE(12426)] = 825957, + [SMALL_STATE(12427)] = 826016, + [SMALL_STATE(12428)] = 826051, + [SMALL_STATE(12429)] = 826086, + [SMALL_STATE(12430)] = 826119, + [SMALL_STATE(12431)] = 826178, + [SMALL_STATE(12432)] = 826209, + [SMALL_STATE(12433)] = 826240, + [SMALL_STATE(12434)] = 826273, + [SMALL_STATE(12435)] = 826332, + [SMALL_STATE(12436)] = 826371, + [SMALL_STATE(12437)] = 826410, + [SMALL_STATE(12438)] = 826469, + [SMALL_STATE(12439)] = 826528, + [SMALL_STATE(12440)] = 826567, + [SMALL_STATE(12441)] = 826600, + [SMALL_STATE(12442)] = 826641, + [SMALL_STATE(12443)] = 826700, + [SMALL_STATE(12444)] = 826759, + [SMALL_STATE(12445)] = 826818, + [SMALL_STATE(12446)] = 826877, + [SMALL_STATE(12447)] = 826936, + [SMALL_STATE(12448)] = 826995, + [SMALL_STATE(12449)] = 827030, + [SMALL_STATE(12450)] = 827061, + [SMALL_STATE(12451)] = 827120, + [SMALL_STATE(12452)] = 827179, + [SMALL_STATE(12453)] = 827210, + [SMALL_STATE(12454)] = 827269, + [SMALL_STATE(12455)] = 827328, + [SMALL_STATE(12456)] = 827387, + [SMALL_STATE(12457)] = 827446, + [SMALL_STATE(12458)] = 827505, + [SMALL_STATE(12459)] = 827564, + [SMALL_STATE(12460)] = 827595, + [SMALL_STATE(12461)] = 827626, + [SMALL_STATE(12462)] = 827685, + [SMALL_STATE(12463)] = 827716, + [SMALL_STATE(12464)] = 827775, + [SMALL_STATE(12465)] = 827810, + [SMALL_STATE(12466)] = 827841, + [SMALL_STATE(12467)] = 827900, + [SMALL_STATE(12468)] = 827931, + [SMALL_STATE(12469)] = 827990, + [SMALL_STATE(12470)] = 828049, + [SMALL_STATE(12471)] = 828108, + [SMALL_STATE(12472)] = 828167, + [SMALL_STATE(12473)] = 828198, + [SMALL_STATE(12474)] = 828229, + [SMALL_STATE(12475)] = 828260, + [SMALL_STATE(12476)] = 828319, + [SMALL_STATE(12477)] = 828350, + [SMALL_STATE(12478)] = 828409, + [SMALL_STATE(12479)] = 828468, + [SMALL_STATE(12480)] = 828527, + [SMALL_STATE(12481)] = 828586, + [SMALL_STATE(12482)] = 828645, + [SMALL_STATE(12483)] = 828704, + [SMALL_STATE(12484)] = 828763, + [SMALL_STATE(12485)] = 828822, + [SMALL_STATE(12486)] = 828881, + [SMALL_STATE(12487)] = 828940, + [SMALL_STATE(12488)] = 828999, + [SMALL_STATE(12489)] = 829034, + [SMALL_STATE(12490)] = 829093, + [SMALL_STATE(12491)] = 829152, + [SMALL_STATE(12492)] = 829211, + [SMALL_STATE(12493)] = 829242, + [SMALL_STATE(12494)] = 829301, + [SMALL_STATE(12495)] = 829332, + [SMALL_STATE(12496)] = 829391, + [SMALL_STATE(12497)] = 829450, + [SMALL_STATE(12498)] = 829509, + [SMALL_STATE(12499)] = 829540, + [SMALL_STATE(12500)] = 829599, + [SMALL_STATE(12501)] = 829630, + [SMALL_STATE(12502)] = 829661, + [SMALL_STATE(12503)] = 829692, + [SMALL_STATE(12504)] = 829751, + [SMALL_STATE(12505)] = 829810, + [SMALL_STATE(12506)] = 829869, + [SMALL_STATE(12507)] = 829904, + [SMALL_STATE(12508)] = 829963, + [SMALL_STATE(12509)] = 830022, + [SMALL_STATE(12510)] = 830081, + [SMALL_STATE(12511)] = 830134, + [SMALL_STATE(12512)] = 830193, + [SMALL_STATE(12513)] = 830252, + [SMALL_STATE(12514)] = 830311, + [SMALL_STATE(12515)] = 830342, + [SMALL_STATE(12516)] = 830373, + [SMALL_STATE(12517)] = 830432, + [SMALL_STATE(12518)] = 830491, + [SMALL_STATE(12519)] = 830522, + [SMALL_STATE(12520)] = 830581, + [SMALL_STATE(12521)] = 830640, + [SMALL_STATE(12522)] = 830699, + [SMALL_STATE(12523)] = 830758, + [SMALL_STATE(12524)] = 830817, + [SMALL_STATE(12525)] = 830876, + [SMALL_STATE(12526)] = 830935, + [SMALL_STATE(12527)] = 830994, + [SMALL_STATE(12528)] = 831053, + [SMALL_STATE(12529)] = 831112, + [SMALL_STATE(12530)] = 831171, + [SMALL_STATE(12531)] = 831230, + [SMALL_STATE(12532)] = 831289, + [SMALL_STATE(12533)] = 831348, + [SMALL_STATE(12534)] = 831407, + [SMALL_STATE(12535)] = 831466, + [SMALL_STATE(12536)] = 831525, + [SMALL_STATE(12537)] = 831584, + [SMALL_STATE(12538)] = 831643, + [SMALL_STATE(12539)] = 831702, + [SMALL_STATE(12540)] = 831761, + [SMALL_STATE(12541)] = 831820, + [SMALL_STATE(12542)] = 831879, + [SMALL_STATE(12543)] = 831938, + [SMALL_STATE(12544)] = 831997, + [SMALL_STATE(12545)] = 832056, + [SMALL_STATE(12546)] = 832115, + [SMALL_STATE(12547)] = 832174, + [SMALL_STATE(12548)] = 832233, + [SMALL_STATE(12549)] = 832292, + [SMALL_STATE(12550)] = 832351, + [SMALL_STATE(12551)] = 832410, + [SMALL_STATE(12552)] = 832469, + [SMALL_STATE(12553)] = 832528, + [SMALL_STATE(12554)] = 832587, + [SMALL_STATE(12555)] = 832646, + [SMALL_STATE(12556)] = 832705, + [SMALL_STATE(12557)] = 832764, + [SMALL_STATE(12558)] = 832823, + [SMALL_STATE(12559)] = 832882, + [SMALL_STATE(12560)] = 832941, + [SMALL_STATE(12561)] = 833000, + [SMALL_STATE(12562)] = 833059, + [SMALL_STATE(12563)] = 833118, + [SMALL_STATE(12564)] = 833177, + [SMALL_STATE(12565)] = 833236, + [SMALL_STATE(12566)] = 833295, + [SMALL_STATE(12567)] = 833354, + [SMALL_STATE(12568)] = 833413, + [SMALL_STATE(12569)] = 833472, + [SMALL_STATE(12570)] = 833531, + [SMALL_STATE(12571)] = 833590, + [SMALL_STATE(12572)] = 833649, + [SMALL_STATE(12573)] = 833708, + [SMALL_STATE(12574)] = 833767, + [SMALL_STATE(12575)] = 833826, + [SMALL_STATE(12576)] = 833885, + [SMALL_STATE(12577)] = 833944, + [SMALL_STATE(12578)] = 834003, + [SMALL_STATE(12579)] = 834062, + [SMALL_STATE(12580)] = 834121, + [SMALL_STATE(12581)] = 834180, + [SMALL_STATE(12582)] = 834239, + [SMALL_STATE(12583)] = 834270, + [SMALL_STATE(12584)] = 834329, + [SMALL_STATE(12585)] = 834388, + [SMALL_STATE(12586)] = 834447, + [SMALL_STATE(12587)] = 834506, + [SMALL_STATE(12588)] = 834565, + [SMALL_STATE(12589)] = 834624, + [SMALL_STATE(12590)] = 834683, + [SMALL_STATE(12591)] = 834742, + [SMALL_STATE(12592)] = 834801, + [SMALL_STATE(12593)] = 834860, + [SMALL_STATE(12594)] = 834919, + [SMALL_STATE(12595)] = 834978, + [SMALL_STATE(12596)] = 835037, + [SMALL_STATE(12597)] = 835096, + [SMALL_STATE(12598)] = 835155, + [SMALL_STATE(12599)] = 835214, + [SMALL_STATE(12600)] = 835273, + [SMALL_STATE(12601)] = 835324, + [SMALL_STATE(12602)] = 835383, + [SMALL_STATE(12603)] = 835442, + [SMALL_STATE(12604)] = 835501, + [SMALL_STATE(12605)] = 835560, + [SMALL_STATE(12606)] = 835619, + [SMALL_STATE(12607)] = 835678, + [SMALL_STATE(12608)] = 835737, + [SMALL_STATE(12609)] = 835796, + [SMALL_STATE(12610)] = 835831, + [SMALL_STATE(12611)] = 835890, + [SMALL_STATE(12612)] = 835925, + [SMALL_STATE(12613)] = 835984, + [SMALL_STATE(12614)] = 836043, + [SMALL_STATE(12615)] = 836102, + [SMALL_STATE(12616)] = 836137, + [SMALL_STATE(12617)] = 836196, + [SMALL_STATE(12618)] = 836255, + [SMALL_STATE(12619)] = 836314, + [SMALL_STATE(12620)] = 836373, + [SMALL_STATE(12621)] = 836408, + [SMALL_STATE(12622)] = 836443, + [SMALL_STATE(12623)] = 836478, + [SMALL_STATE(12624)] = 836513, + [SMALL_STATE(12625)] = 836548, + [SMALL_STATE(12626)] = 836583, + [SMALL_STATE(12627)] = 836618, + [SMALL_STATE(12628)] = 836653, + [SMALL_STATE(12629)] = 836688, + [SMALL_STATE(12630)] = 836723, + [SMALL_STATE(12631)] = 836758, + [SMALL_STATE(12632)] = 836793, + [SMALL_STATE(12633)] = 836828, + [SMALL_STATE(12634)] = 836863, + [SMALL_STATE(12635)] = 836898, + [SMALL_STATE(12636)] = 836933, + [SMALL_STATE(12637)] = 836968, + [SMALL_STATE(12638)] = 837003, + [SMALL_STATE(12639)] = 837038, + [SMALL_STATE(12640)] = 837073, + [SMALL_STATE(12641)] = 837108, + [SMALL_STATE(12642)] = 837143, + [SMALL_STATE(12643)] = 837178, + [SMALL_STATE(12644)] = 837213, + [SMALL_STATE(12645)] = 837248, + [SMALL_STATE(12646)] = 837283, + [SMALL_STATE(12647)] = 837342, + [SMALL_STATE(12648)] = 837377, + [SMALL_STATE(12649)] = 837412, + [SMALL_STATE(12650)] = 837447, + [SMALL_STATE(12651)] = 837482, + [SMALL_STATE(12652)] = 837517, + [SMALL_STATE(12653)] = 837552, + [SMALL_STATE(12654)] = 837587, + [SMALL_STATE(12655)] = 837622, + [SMALL_STATE(12656)] = 837657, + [SMALL_STATE(12657)] = 837692, + [SMALL_STATE(12658)] = 837727, + [SMALL_STATE(12659)] = 837762, + [SMALL_STATE(12660)] = 837797, + [SMALL_STATE(12661)] = 837832, + [SMALL_STATE(12662)] = 837891, + [SMALL_STATE(12663)] = 837925, + [SMALL_STATE(12664)] = 837957, + [SMALL_STATE(12665)] = 837987, + [SMALL_STATE(12666)] = 838043, + [SMALL_STATE(12667)] = 838081, + [SMALL_STATE(12668)] = 838119, + [SMALL_STATE(12669)] = 838157, + [SMALL_STATE(12670)] = 838195, + [SMALL_STATE(12671)] = 838233, + [SMALL_STATE(12672)] = 838271, + [SMALL_STATE(12673)] = 838309, + [SMALL_STATE(12674)] = 838347, + [SMALL_STATE(12675)] = 838385, + [SMALL_STATE(12676)] = 838423, + [SMALL_STATE(12677)] = 838479, + [SMALL_STATE(12678)] = 838513, + [SMALL_STATE(12679)] = 838545, + [SMALL_STATE(12680)] = 838601, + [SMALL_STATE(12681)] = 838641, + [SMALL_STATE(12682)] = 838679, + [SMALL_STATE(12683)] = 838713, + [SMALL_STATE(12684)] = 838747, + [SMALL_STATE(12685)] = 838781, + [SMALL_STATE(12686)] = 838837, + [SMALL_STATE(12687)] = 838869, + [SMALL_STATE(12688)] = 838901, + [SMALL_STATE(12689)] = 838935, + [SMALL_STATE(12690)] = 838969, + [SMALL_STATE(12691)] = 839003, + [SMALL_STATE(12692)] = 839037, + [SMALL_STATE(12693)] = 839069, + [SMALL_STATE(12694)] = 839125, + [SMALL_STATE(12695)] = 839181, + [SMALL_STATE(12696)] = 839237, + [SMALL_STATE(12697)] = 839275, + [SMALL_STATE(12698)] = 839307, + [SMALL_STATE(12699)] = 839337, + [SMALL_STATE(12700)] = 839369, + [SMALL_STATE(12701)] = 839409, + [SMALL_STATE(12702)] = 839447, + [SMALL_STATE(12703)] = 839481, + [SMALL_STATE(12704)] = 839513, + [SMALL_STATE(12705)] = 839569, + [SMALL_STATE(12706)] = 839609, + [SMALL_STATE(12707)] = 839641, + [SMALL_STATE(12708)] = 839673, + [SMALL_STATE(12709)] = 839703, + [SMALL_STATE(12710)] = 839759, + [SMALL_STATE(12711)] = 839797, + [SMALL_STATE(12712)] = 839831, + [SMALL_STATE(12713)] = 839863, + [SMALL_STATE(12714)] = 839893, + [SMALL_STATE(12715)] = 839923, + [SMALL_STATE(12716)] = 839961, + [SMALL_STATE(12717)] = 839999, + [SMALL_STATE(12718)] = 840055, + [SMALL_STATE(12719)] = 840111, + [SMALL_STATE(12720)] = 840151, + [SMALL_STATE(12721)] = 840183, + [SMALL_STATE(12722)] = 840215, + [SMALL_STATE(12723)] = 840253, + [SMALL_STATE(12724)] = 840285, + [SMALL_STATE(12725)] = 840323, + [SMALL_STATE(12726)] = 840355, + [SMALL_STATE(12727)] = 840385, + [SMALL_STATE(12728)] = 840417, + [SMALL_STATE(12729)] = 840447, + [SMALL_STATE(12730)] = 840479, + [SMALL_STATE(12731)] = 840535, + [SMALL_STATE(12732)] = 840591, + [SMALL_STATE(12733)] = 840629, + [SMALL_STATE(12734)] = 840667, + [SMALL_STATE(12735)] = 840707, + [SMALL_STATE(12736)] = 840739, + [SMALL_STATE(12737)] = 840777, + [SMALL_STATE(12738)] = 840809, + [SMALL_STATE(12739)] = 840839, + [SMALL_STATE(12740)] = 840877, + [SMALL_STATE(12741)] = 840907, + [SMALL_STATE(12742)] = 840963, + [SMALL_STATE(12743)] = 840995, + [SMALL_STATE(12744)] = 841051, + [SMALL_STATE(12745)] = 841083, + [SMALL_STATE(12746)] = 841121, + [SMALL_STATE(12747)] = 841151, + [SMALL_STATE(12748)] = 841183, + [SMALL_STATE(12749)] = 841239, + [SMALL_STATE(12750)] = 841277, + [SMALL_STATE(12751)] = 841309, + [SMALL_STATE(12752)] = 841341, + [SMALL_STATE(12753)] = 841371, + [SMALL_STATE(12754)] = 841405, + [SMALL_STATE(12755)] = 841443, + [SMALL_STATE(12756)] = 841481, + [SMALL_STATE(12757)] = 841537, + [SMALL_STATE(12758)] = 841577, + [SMALL_STATE(12759)] = 841609, + [SMALL_STATE(12760)] = 841639, + [SMALL_STATE(12761)] = 841669, + [SMALL_STATE(12762)] = 841725, + [SMALL_STATE(12763)] = 841763, + [SMALL_STATE(12764)] = 841795, + [SMALL_STATE(12765)] = 841835, + [SMALL_STATE(12766)] = 841873, + [SMALL_STATE(12767)] = 841911, + [SMALL_STATE(12768)] = 841941, + [SMALL_STATE(12769)] = 841971, + [SMALL_STATE(12770)] = 842001, + [SMALL_STATE(12771)] = 842057, + [SMALL_STATE(12772)] = 842095, + [SMALL_STATE(12773)] = 842133, + [SMALL_STATE(12774)] = 842171, + [SMALL_STATE(12775)] = 842203, + [SMALL_STATE(12776)] = 842243, + [SMALL_STATE(12777)] = 842281, + [SMALL_STATE(12778)] = 842319, + [SMALL_STATE(12779)] = 842375, + [SMALL_STATE(12780)] = 842413, + [SMALL_STATE(12781)] = 842445, + [SMALL_STATE(12782)] = 842485, + [SMALL_STATE(12783)] = 842541, + [SMALL_STATE(12784)] = 842597, + [SMALL_STATE(12785)] = 842627, + [SMALL_STATE(12786)] = 842665, + [SMALL_STATE(12787)] = 842697, + [SMALL_STATE(12788)] = 842737, + [SMALL_STATE(12789)] = 842769, + [SMALL_STATE(12790)] = 842825, + [SMALL_STATE(12791)] = 842881, + [SMALL_STATE(12792)] = 842913, + [SMALL_STATE(12793)] = 842945, + [SMALL_STATE(12794)] = 843001, + [SMALL_STATE(12795)] = 843035, + [SMALL_STATE(12796)] = 843075, + [SMALL_STATE(12797)] = 843113, + [SMALL_STATE(12798)] = 843151, + [SMALL_STATE(12799)] = 843207, + [SMALL_STATE(12800)] = 843263, + [SMALL_STATE(12801)] = 843301, + [SMALL_STATE(12802)] = 843333, + [SMALL_STATE(12803)] = 843373, + [SMALL_STATE(12804)] = 843405, + [SMALL_STATE(12805)] = 843435, + [SMALL_STATE(12806)] = 843491, + [SMALL_STATE(12807)] = 843547, + [SMALL_STATE(12808)] = 843577, + [SMALL_STATE(12809)] = 843609, + [SMALL_STATE(12810)] = 843665, + [SMALL_STATE(12811)] = 843721, + [SMALL_STATE(12812)] = 843759, + [SMALL_STATE(12813)] = 843797, + [SMALL_STATE(12814)] = 843853, + [SMALL_STATE(12815)] = 843909, + [SMALL_STATE(12816)] = 843949, + [SMALL_STATE(12817)] = 843981, + [SMALL_STATE(12818)] = 844037, + [SMALL_STATE(12819)] = 844093, + [SMALL_STATE(12820)] = 844131, + [SMALL_STATE(12821)] = 844163, + [SMALL_STATE(12822)] = 844219, + [SMALL_STATE(12823)] = 844275, + [SMALL_STATE(12824)] = 844309, + [SMALL_STATE(12825)] = 844365, + [SMALL_STATE(12826)] = 844403, + [SMALL_STATE(12827)] = 844441, + [SMALL_STATE(12828)] = 844471, + [SMALL_STATE(12829)] = 844501, + [SMALL_STATE(12830)] = 844531, + [SMALL_STATE(12831)] = 844563, + [SMALL_STATE(12832)] = 844619, + [SMALL_STATE(12833)] = 844657, + [SMALL_STATE(12834)] = 844695, + [SMALL_STATE(12835)] = 844751, + [SMALL_STATE(12836)] = 844789, + [SMALL_STATE(12837)] = 844821, + [SMALL_STATE(12838)] = 844861, + [SMALL_STATE(12839)] = 844891, + [SMALL_STATE(12840)] = 844921, + [SMALL_STATE(12841)] = 844959, + [SMALL_STATE(12842)] = 844997, + [SMALL_STATE(12843)] = 845053, + [SMALL_STATE(12844)] = 845109, + [SMALL_STATE(12845)] = 845147, + [SMALL_STATE(12846)] = 845179, + [SMALL_STATE(12847)] = 845219, + [SMALL_STATE(12848)] = 845275, + [SMALL_STATE(12849)] = 845309, + [SMALL_STATE(12850)] = 845341, + [SMALL_STATE(12851)] = 845379, + [SMALL_STATE(12852)] = 845411, + [SMALL_STATE(12853)] = 845451, + [SMALL_STATE(12854)] = 845485, + [SMALL_STATE(12855)] = 845541, + [SMALL_STATE(12856)] = 845597, + [SMALL_STATE(12857)] = 845631, + [SMALL_STATE(12858)] = 845661, + [SMALL_STATE(12859)] = 845717, + [SMALL_STATE(12860)] = 845747, + [SMALL_STATE(12861)] = 845781, + [SMALL_STATE(12862)] = 845811, + [SMALL_STATE(12863)] = 845845, + [SMALL_STATE(12864)] = 845901, + [SMALL_STATE(12865)] = 845935, + [SMALL_STATE(12866)] = 845969, + [SMALL_STATE(12867)] = 846025, + [SMALL_STATE(12868)] = 846081, + [SMALL_STATE(12869)] = 846137, + [SMALL_STATE(12870)] = 846193, + [SMALL_STATE(12871)] = 846223, + [SMALL_STATE(12872)] = 846279, + [SMALL_STATE(12873)] = 846335, + [SMALL_STATE(12874)] = 846369, + [SMALL_STATE(12875)] = 846425, + [SMALL_STATE(12876)] = 846481, + [SMALL_STATE(12877)] = 846511, + [SMALL_STATE(12878)] = 846541, + [SMALL_STATE(12879)] = 846571, + [SMALL_STATE(12880)] = 846603, + [SMALL_STATE(12881)] = 846633, + [SMALL_STATE(12882)] = 846663, + [SMALL_STATE(12883)] = 846697, + [SMALL_STATE(12884)] = 846727, + [SMALL_STATE(12885)] = 846783, + [SMALL_STATE(12886)] = 846813, + [SMALL_STATE(12887)] = 846847, + [SMALL_STATE(12888)] = 846903, + [SMALL_STATE(12889)] = 846937, + [SMALL_STATE(12890)] = 846969, + [SMALL_STATE(12891)] = 846999, + [SMALL_STATE(12892)] = 847033, + [SMALL_STATE(12893)] = 847089, + [SMALL_STATE(12894)] = 847145, + [SMALL_STATE(12895)] = 847201, + [SMALL_STATE(12896)] = 847257, + [SMALL_STATE(12897)] = 847313, + [SMALL_STATE(12898)] = 847345, + [SMALL_STATE(12899)] = 847375, + [SMALL_STATE(12900)] = 847405, + [SMALL_STATE(12901)] = 847461, + [SMALL_STATE(12902)] = 847517, + [SMALL_STATE(12903)] = 847573, + [SMALL_STATE(12904)] = 847629, + [SMALL_STATE(12905)] = 847685, + [SMALL_STATE(12906)] = 847741, + [SMALL_STATE(12907)] = 847797, + [SMALL_STATE(12908)] = 847853, + [SMALL_STATE(12909)] = 847909, + [SMALL_STATE(12910)] = 847965, + [SMALL_STATE(12911)] = 848021, + [SMALL_STATE(12912)] = 848051, + [SMALL_STATE(12913)] = 848107, + [SMALL_STATE(12914)] = 848137, + [SMALL_STATE(12915)] = 848193, + [SMALL_STATE(12916)] = 848223, + [SMALL_STATE(12917)] = 848253, + [SMALL_STATE(12918)] = 848283, + [SMALL_STATE(12919)] = 848339, + [SMALL_STATE(12920)] = 848395, + [SMALL_STATE(12921)] = 848451, + [SMALL_STATE(12922)] = 848507, + [SMALL_STATE(12923)] = 848563, + [SMALL_STATE(12924)] = 848593, + [SMALL_STATE(12925)] = 848623, + [SMALL_STATE(12926)] = 848679, + [SMALL_STATE(12927)] = 848711, + [SMALL_STATE(12928)] = 848767, + [SMALL_STATE(12929)] = 848823, + [SMALL_STATE(12930)] = 848879, + [SMALL_STATE(12931)] = 848935, + [SMALL_STATE(12932)] = 848991, + [SMALL_STATE(12933)] = 849047, + [SMALL_STATE(12934)] = 849103, + [SMALL_STATE(12935)] = 849159, + [SMALL_STATE(12936)] = 849215, + [SMALL_STATE(12937)] = 849271, + [SMALL_STATE(12938)] = 849327, + [SMALL_STATE(12939)] = 849383, + [SMALL_STATE(12940)] = 849439, + [SMALL_STATE(12941)] = 849495, + [SMALL_STATE(12942)] = 849551, + [SMALL_STATE(12943)] = 849607, + [SMALL_STATE(12944)] = 849663, + [SMALL_STATE(12945)] = 849719, + [SMALL_STATE(12946)] = 849775, + [SMALL_STATE(12947)] = 849831, + [SMALL_STATE(12948)] = 849887, + [SMALL_STATE(12949)] = 849943, + [SMALL_STATE(12950)] = 849975, + [SMALL_STATE(12951)] = 850031, + [SMALL_STATE(12952)] = 850087, + [SMALL_STATE(12953)] = 850143, + [SMALL_STATE(12954)] = 850199, + [SMALL_STATE(12955)] = 850255, + [SMALL_STATE(12956)] = 850311, + [SMALL_STATE(12957)] = 850341, + [SMALL_STATE(12958)] = 850371, + [SMALL_STATE(12959)] = 850427, + [SMALL_STATE(12960)] = 850459, + [SMALL_STATE(12961)] = 850515, + [SMALL_STATE(12962)] = 850553, + [SMALL_STATE(12963)] = 850591, + [SMALL_STATE(12964)] = 850629, + [SMALL_STATE(12965)] = 850685, + [SMALL_STATE(12966)] = 850741, + [SMALL_STATE(12967)] = 850779, + [SMALL_STATE(12968)] = 850817, + [SMALL_STATE(12969)] = 850855, + [SMALL_STATE(12970)] = 850893, + [SMALL_STATE(12971)] = 850931, + [SMALL_STATE(12972)] = 850969, + [SMALL_STATE(12973)] = 851007, + [SMALL_STATE(12974)] = 851063, + [SMALL_STATE(12975)] = 851097, + [SMALL_STATE(12976)] = 851131, + [SMALL_STATE(12977)] = 851165, + [SMALL_STATE(12978)] = 851199, + [SMALL_STATE(12979)] = 851233, + [SMALL_STATE(12980)] = 851267, + [SMALL_STATE(12981)] = 851301, + [SMALL_STATE(12982)] = 851335, + [SMALL_STATE(12983)] = 851369, + [SMALL_STATE(12984)] = 851403, + [SMALL_STATE(12985)] = 851437, + [SMALL_STATE(12986)] = 851471, + [SMALL_STATE(12987)] = 851505, + [SMALL_STATE(12988)] = 851539, + [SMALL_STATE(12989)] = 851573, + [SMALL_STATE(12990)] = 851603, + [SMALL_STATE(12991)] = 851659, + [SMALL_STATE(12992)] = 851691, + [SMALL_STATE(12993)] = 851725, + [SMALL_STATE(12994)] = 851759, + [SMALL_STATE(12995)] = 851793, + [SMALL_STATE(12996)] = 851827, + [SMALL_STATE(12997)] = 851861, + [SMALL_STATE(12998)] = 851917, + [SMALL_STATE(12999)] = 851973, + [SMALL_STATE(13000)] = 852007, + [SMALL_STATE(13001)] = 852041, + [SMALL_STATE(13002)] = 852075, + [SMALL_STATE(13003)] = 852109, + [SMALL_STATE(13004)] = 852143, + [SMALL_STATE(13005)] = 852177, + [SMALL_STATE(13006)] = 852211, + [SMALL_STATE(13007)] = 852245, + [SMALL_STATE(13008)] = 852279, + [SMALL_STATE(13009)] = 852313, + [SMALL_STATE(13010)] = 852351, + [SMALL_STATE(13011)] = 852389, + [SMALL_STATE(13012)] = 852427, + [SMALL_STATE(13013)] = 852461, + [SMALL_STATE(13014)] = 852495, + [SMALL_STATE(13015)] = 852529, + [SMALL_STATE(13016)] = 852563, + [SMALL_STATE(13017)] = 852597, + [SMALL_STATE(13018)] = 852635, + [SMALL_STATE(13019)] = 852673, + [SMALL_STATE(13020)] = 852711, + [SMALL_STATE(13021)] = 852749, + [SMALL_STATE(13022)] = 852787, + [SMALL_STATE(13023)] = 852825, + [SMALL_STATE(13024)] = 852863, + [SMALL_STATE(13025)] = 852919, + [SMALL_STATE(13026)] = 852975, + [SMALL_STATE(13027)] = 853005, + [SMALL_STATE(13028)] = 853034, + [SMALL_STATE(13029)] = 853063, + [SMALL_STATE(13030)] = 853100, + [SMALL_STATE(13031)] = 853131, + [SMALL_STATE(13032)] = 853168, + [SMALL_STATE(13033)] = 853205, + [SMALL_STATE(13034)] = 853236, + [SMALL_STATE(13035)] = 853275, + [SMALL_STATE(13036)] = 853306, + [SMALL_STATE(13037)] = 853335, + [SMALL_STATE(13038)] = 853364, + [SMALL_STATE(13039)] = 853401, + [SMALL_STATE(13040)] = 853438, + [SMALL_STATE(13041)] = 853475, + [SMALL_STATE(13042)] = 853512, + [SMALL_STATE(13043)] = 853549, + [SMALL_STATE(13044)] = 853586, + [SMALL_STATE(13045)] = 853623, + [SMALL_STATE(13046)] = 853652, + [SMALL_STATE(13047)] = 853681, + [SMALL_STATE(13048)] = 853714, + [SMALL_STATE(13049)] = 853751, + [SMALL_STATE(13050)] = 853788, + [SMALL_STATE(13051)] = 853821, + [SMALL_STATE(13052)] = 853854, + [SMALL_STATE(13053)] = 853891, + [SMALL_STATE(13054)] = 853928, + [SMALL_STATE(13055)] = 853959, + [SMALL_STATE(13056)] = 853998, + [SMALL_STATE(13057)] = 854029, + [SMALL_STATE(13058)] = 854058, + [SMALL_STATE(13059)] = 854095, + [SMALL_STATE(13060)] = 854124, + [SMALL_STATE(13061)] = 854161, + [SMALL_STATE(13062)] = 854192, + [SMALL_STATE(13063)] = 854223, + [SMALL_STATE(13064)] = 854252, + [SMALL_STATE(13065)] = 854281, + [SMALL_STATE(13066)] = 854318, + [SMALL_STATE(13067)] = 854355, + [SMALL_STATE(13068)] = 854384, + [SMALL_STATE(13069)] = 854421, + [SMALL_STATE(13070)] = 854458, + [SMALL_STATE(13071)] = 854491, + [SMALL_STATE(13072)] = 854528, + [SMALL_STATE(13073)] = 854561, + [SMALL_STATE(13074)] = 854592, + [SMALL_STATE(13075)] = 854631, + [SMALL_STATE(13076)] = 854660, + [SMALL_STATE(13077)] = 854689, + [SMALL_STATE(13078)] = 854728, + [SMALL_STATE(13079)] = 854759, + [SMALL_STATE(13080)] = 854796, + [SMALL_STATE(13081)] = 854827, + [SMALL_STATE(13082)] = 854866, + [SMALL_STATE(13083)] = 854897, + [SMALL_STATE(13084)] = 854934, + [SMALL_STATE(13085)] = 854971, + [SMALL_STATE(13086)] = 855008, + [SMALL_STATE(13087)] = 855045, + [SMALL_STATE(13088)] = 855082, + [SMALL_STATE(13089)] = 855113, + [SMALL_STATE(13090)] = 855142, + [SMALL_STATE(13091)] = 855179, + [SMALL_STATE(13092)] = 855208, + [SMALL_STATE(13093)] = 855239, + [SMALL_STATE(13094)] = 855268, + [SMALL_STATE(13095)] = 855299, + [SMALL_STATE(13096)] = 855330, + [SMALL_STATE(13097)] = 855359, + [SMALL_STATE(13098)] = 855388, + [SMALL_STATE(13099)] = 855421, + [SMALL_STATE(13100)] = 855450, + [SMALL_STATE(13101)] = 855487, + [SMALL_STATE(13102)] = 855518, + [SMALL_STATE(13103)] = 855547, + [SMALL_STATE(13104)] = 855576, + [SMALL_STATE(13105)] = 855605, + [SMALL_STATE(13106)] = 855634, + [SMALL_STATE(13107)] = 855665, + [SMALL_STATE(13108)] = 855702, + [SMALL_STATE(13109)] = 855731, + [SMALL_STATE(13110)] = 855764, + [SMALL_STATE(13111)] = 855793, + [SMALL_STATE(13112)] = 855822, + [SMALL_STATE(13113)] = 855853, + [SMALL_STATE(13114)] = 855884, + [SMALL_STATE(13115)] = 855921, + [SMALL_STATE(13116)] = 855954, + [SMALL_STATE(13117)] = 855991, + [SMALL_STATE(13118)] = 856028, + [SMALL_STATE(13119)] = 856059, + [SMALL_STATE(13120)] = 856098, + [SMALL_STATE(13121)] = 856127, + [SMALL_STATE(13122)] = 856164, + [SMALL_STATE(13123)] = 856193, + [SMALL_STATE(13124)] = 856226, + [SMALL_STATE(13125)] = 856255, + [SMALL_STATE(13126)] = 856284, + [SMALL_STATE(13127)] = 856321, + [SMALL_STATE(13128)] = 856350, + [SMALL_STATE(13129)] = 856379, + [SMALL_STATE(13130)] = 856410, + [SMALL_STATE(13131)] = 856439, + [SMALL_STATE(13132)] = 856468, + [SMALL_STATE(13133)] = 856497, + [SMALL_STATE(13134)] = 856530, + [SMALL_STATE(13135)] = 856567, + [SMALL_STATE(13136)] = 856604, + [SMALL_STATE(13137)] = 856633, + [SMALL_STATE(13138)] = 856662, + [SMALL_STATE(13139)] = 856691, + [SMALL_STATE(13140)] = 856720, + [SMALL_STATE(13141)] = 856757, + [SMALL_STATE(13142)] = 856788, + [SMALL_STATE(13143)] = 856821, + [SMALL_STATE(13144)] = 856860, + [SMALL_STATE(13145)] = 856897, + [SMALL_STATE(13146)] = 856928, + [SMALL_STATE(13147)] = 856961, + [SMALL_STATE(13148)] = 856998, + [SMALL_STATE(13149)] = 857035, + [SMALL_STATE(13150)] = 857072, + [SMALL_STATE(13151)] = 857103, + [SMALL_STATE(13152)] = 857132, + [SMALL_STATE(13153)] = 857161, + [SMALL_STATE(13154)] = 857190, + [SMALL_STATE(13155)] = 857223, + [SMALL_STATE(13156)] = 857252, + [SMALL_STATE(13157)] = 857281, + [SMALL_STATE(13158)] = 857312, + [SMALL_STATE(13159)] = 857341, + [SMALL_STATE(13160)] = 857372, + [SMALL_STATE(13161)] = 857401, + [SMALL_STATE(13162)] = 857430, + [SMALL_STATE(13163)] = 857459, + [SMALL_STATE(13164)] = 857490, + [SMALL_STATE(13165)] = 857519, + [SMALL_STATE(13166)] = 857556, + [SMALL_STATE(13167)] = 857585, + [SMALL_STATE(13168)] = 857614, + [SMALL_STATE(13169)] = 857643, + [SMALL_STATE(13170)] = 857672, + [SMALL_STATE(13171)] = 857709, + [SMALL_STATE(13172)] = 857740, + [SMALL_STATE(13173)] = 857769, + [SMALL_STATE(13174)] = 857798, + [SMALL_STATE(13175)] = 857827, + [SMALL_STATE(13176)] = 857856, + [SMALL_STATE(13177)] = 857885, + [SMALL_STATE(13178)] = 857914, + [SMALL_STATE(13179)] = 857943, + [SMALL_STATE(13180)] = 857972, + [SMALL_STATE(13181)] = 858001, + [SMALL_STATE(13182)] = 858030, + [SMALL_STATE(13183)] = 858059, + [SMALL_STATE(13184)] = 858090, + [SMALL_STATE(13185)] = 858119, + [SMALL_STATE(13186)] = 858152, + [SMALL_STATE(13187)] = 858181, + [SMALL_STATE(13188)] = 858218, + [SMALL_STATE(13189)] = 858247, + [SMALL_STATE(13190)] = 858276, + [SMALL_STATE(13191)] = 858313, + [SMALL_STATE(13192)] = 858346, + [SMALL_STATE(13193)] = 858375, + [SMALL_STATE(13194)] = 858412, + [SMALL_STATE(13195)] = 858441, + [SMALL_STATE(13196)] = 858470, + [SMALL_STATE(13197)] = 858507, + [SMALL_STATE(13198)] = 858536, + [SMALL_STATE(13199)] = 858573, + [SMALL_STATE(13200)] = 858602, + [SMALL_STATE(13201)] = 858631, + [SMALL_STATE(13202)] = 858670, + [SMALL_STATE(13203)] = 858701, + [SMALL_STATE(13204)] = 858738, + [SMALL_STATE(13205)] = 858771, + [SMALL_STATE(13206)] = 858800, + [SMALL_STATE(13207)] = 858829, + [SMALL_STATE(13208)] = 858858, + [SMALL_STATE(13209)] = 858887, + [SMALL_STATE(13210)] = 858916, + [SMALL_STATE(13211)] = 858945, + [SMALL_STATE(13212)] = 858982, + [SMALL_STATE(13213)] = 859011, + [SMALL_STATE(13214)] = 859042, + [SMALL_STATE(13215)] = 859073, + [SMALL_STATE(13216)] = 859112, + [SMALL_STATE(13217)] = 859141, + [SMALL_STATE(13218)] = 859172, + [SMALL_STATE(13219)] = 859201, + [SMALL_STATE(13220)] = 859234, + [SMALL_STATE(13221)] = 859267, + [SMALL_STATE(13222)] = 859300, + [SMALL_STATE(13223)] = 859331, + [SMALL_STATE(13224)] = 859368, + [SMALL_STATE(13225)] = 859405, + [SMALL_STATE(13226)] = 859438, + [SMALL_STATE(13227)] = 859475, + [SMALL_STATE(13228)] = 859512, + [SMALL_STATE(13229)] = 859549, + [SMALL_STATE(13230)] = 859588, + [SMALL_STATE(13231)] = 859617, + [SMALL_STATE(13232)] = 859650, + [SMALL_STATE(13233)] = 859679, + [SMALL_STATE(13234)] = 859712, + [SMALL_STATE(13235)] = 859745, + [SMALL_STATE(13236)] = 859774, + [SMALL_STATE(13237)] = 859807, + [SMALL_STATE(13238)] = 859844, + [SMALL_STATE(13239)] = 859873, + [SMALL_STATE(13240)] = 859904, + [SMALL_STATE(13241)] = 859933, + [SMALL_STATE(13242)] = 859962, + [SMALL_STATE(13243)] = 860001, + [SMALL_STATE(13244)] = 860038, + [SMALL_STATE(13245)] = 860067, + [SMALL_STATE(13246)] = 860104, + [SMALL_STATE(13247)] = 860133, + [SMALL_STATE(13248)] = 860170, + [SMALL_STATE(13249)] = 860207, + [SMALL_STATE(13250)] = 860236, + [SMALL_STATE(13251)] = 860265, + [SMALL_STATE(13252)] = 860302, + [SMALL_STATE(13253)] = 860339, + [SMALL_STATE(13254)] = 860376, + [SMALL_STATE(13255)] = 860413, + [SMALL_STATE(13256)] = 860442, + [SMALL_STATE(13257)] = 860479, + [SMALL_STATE(13258)] = 860508, + [SMALL_STATE(13259)] = 860545, + [SMALL_STATE(13260)] = 860574, + [SMALL_STATE(13261)] = 860611, + [SMALL_STATE(13262)] = 860642, + [SMALL_STATE(13263)] = 860681, + [SMALL_STATE(13264)] = 860718, + [SMALL_STATE(13265)] = 860757, + [SMALL_STATE(13266)] = 860786, + [SMALL_STATE(13267)] = 860815, + [SMALL_STATE(13268)] = 860848, + [SMALL_STATE(13269)] = 860881, + [SMALL_STATE(13270)] = 860910, + [SMALL_STATE(13271)] = 860941, + [SMALL_STATE(13272)] = 860974, + [SMALL_STATE(13273)] = 861007, + [SMALL_STATE(13274)] = 861040, + [SMALL_STATE(13275)] = 861073, + [SMALL_STATE(13276)] = 861106, + [SMALL_STATE(13277)] = 861135, + [SMALL_STATE(13278)] = 861164, + [SMALL_STATE(13279)] = 861193, + [SMALL_STATE(13280)] = 861226, + [SMALL_STATE(13281)] = 861255, + [SMALL_STATE(13282)] = 861286, + [SMALL_STATE(13283)] = 861315, + [SMALL_STATE(13284)] = 861348, + [SMALL_STATE(13285)] = 861385, + [SMALL_STATE(13286)] = 861418, + [SMALL_STATE(13287)] = 861455, + [SMALL_STATE(13288)] = 861492, + [SMALL_STATE(13289)] = 861531, + [SMALL_STATE(13290)] = 861568, + [SMALL_STATE(13291)] = 861605, + [SMALL_STATE(13292)] = 861634, + [SMALL_STATE(13293)] = 861663, + [SMALL_STATE(13294)] = 861692, + [SMALL_STATE(13295)] = 861721, + [SMALL_STATE(13296)] = 861758, + [SMALL_STATE(13297)] = 861787, + [SMALL_STATE(13298)] = 861820, + [SMALL_STATE(13299)] = 861857, + [SMALL_STATE(13300)] = 861894, + [SMALL_STATE(13301)] = 861923, + [SMALL_STATE(13302)] = 861952, + [SMALL_STATE(13303)] = 861981, + [SMALL_STATE(13304)] = 862010, + [SMALL_STATE(13305)] = 862047, + [SMALL_STATE(13306)] = 862078, + [SMALL_STATE(13307)] = 862107, + [SMALL_STATE(13308)] = 862144, + [SMALL_STATE(13309)] = 862181, + [SMALL_STATE(13310)] = 862214, + [SMALL_STATE(13311)] = 862251, + [SMALL_STATE(13312)] = 862284, + [SMALL_STATE(13313)] = 862317, + [SMALL_STATE(13314)] = 862350, + [SMALL_STATE(13315)] = 862383, + [SMALL_STATE(13316)] = 862416, + [SMALL_STATE(13317)] = 862445, + [SMALL_STATE(13318)] = 862478, + [SMALL_STATE(13319)] = 862511, + [SMALL_STATE(13320)] = 862544, + [SMALL_STATE(13321)] = 862577, + [SMALL_STATE(13322)] = 862610, + [SMALL_STATE(13323)] = 862639, + [SMALL_STATE(13324)] = 862670, + [SMALL_STATE(13325)] = 862699, + [SMALL_STATE(13326)] = 862729, + [SMALL_STATE(13327)] = 862761, + [SMALL_STATE(13328)] = 862793, + [SMALL_STATE(13329)] = 862825, + [SMALL_STATE(13330)] = 862857, + [SMALL_STATE(13331)] = 862889, + [SMALL_STATE(13332)] = 862917, + [SMALL_STATE(13333)] = 862961, + [SMALL_STATE(13334)] = 862993, + [SMALL_STATE(13335)] = 863021, + [SMALL_STATE(13336)] = 863055, + [SMALL_STATE(13337)] = 863099, + [SMALL_STATE(13338)] = 863135, + [SMALL_STATE(13339)] = 863171, + [SMALL_STATE(13340)] = 863199, + [SMALL_STATE(13341)] = 863233, + [SMALL_STATE(13342)] = 863265, + [SMALL_STATE(13343)] = 863297, + [SMALL_STATE(13344)] = 863329, + [SMALL_STATE(13345)] = 863361, + [SMALL_STATE(13346)] = 863393, + [SMALL_STATE(13347)] = 863429, + [SMALL_STATE(13348)] = 863459, + [SMALL_STATE(13349)] = 863497, + [SMALL_STATE(13350)] = 863531, + [SMALL_STATE(13351)] = 863573, + [SMALL_STATE(13352)] = 863617, + [SMALL_STATE(13353)] = 863651, + [SMALL_STATE(13354)] = 863687, + [SMALL_STATE(13355)] = 863723, + [SMALL_STATE(13356)] = 863753, + [SMALL_STATE(13357)] = 863787, + [SMALL_STATE(13358)] = 863817, + [SMALL_STATE(13359)] = 863853, + [SMALL_STATE(13360)] = 863883, + [SMALL_STATE(13361)] = 863911, + [SMALL_STATE(13362)] = 863955, + [SMALL_STATE(13363)] = 863991, + [SMALL_STATE(13364)] = 864023, + [SMALL_STATE(13365)] = 864067, + [SMALL_STATE(13366)] = 864097, + [SMALL_STATE(13367)] = 864129, + [SMALL_STATE(13368)] = 864161, + [SMALL_STATE(13369)] = 864193, + [SMALL_STATE(13370)] = 864225, + [SMALL_STATE(13371)] = 864257, + [SMALL_STATE(13372)] = 864293, + [SMALL_STATE(13373)] = 864329, + [SMALL_STATE(13374)] = 864371, + [SMALL_STATE(13375)] = 864399, + [SMALL_STATE(13376)] = 864433, + [SMALL_STATE(13377)] = 864461, + [SMALL_STATE(13378)] = 864495, + [SMALL_STATE(13379)] = 864525, + [SMALL_STATE(13380)] = 864561, + [SMALL_STATE(13381)] = 864605, + [SMALL_STATE(13382)] = 864647, + [SMALL_STATE(13383)] = 864691, + [SMALL_STATE(13384)] = 864733, + [SMALL_STATE(13385)] = 864777, + [SMALL_STATE(13386)] = 864813, + [SMALL_STATE(13387)] = 864849, + [SMALL_STATE(13388)] = 864879, + [SMALL_STATE(13389)] = 864915, + [SMALL_STATE(13390)] = 864953, + [SMALL_STATE(13391)] = 864987, + [SMALL_STATE(13392)] = 865029, + [SMALL_STATE(13393)] = 865071, + [SMALL_STATE(13394)] = 865101, + [SMALL_STATE(13395)] = 865129, + [SMALL_STATE(13396)] = 865157, + [SMALL_STATE(13397)] = 865185, + [SMALL_STATE(13398)] = 865215, + [SMALL_STATE(13399)] = 865259, + [SMALL_STATE(13400)] = 865293, + [SMALL_STATE(13401)] = 865323, + [SMALL_STATE(13402)] = 865355, + [SMALL_STATE(13403)] = 865399, + [SMALL_STATE(13404)] = 865427, + [SMALL_STATE(13405)] = 865469, + [SMALL_STATE(13406)] = 865505, + [SMALL_STATE(13407)] = 865533, + [SMALL_STATE(13408)] = 865565, + [SMALL_STATE(13409)] = 865609, + [SMALL_STATE(13410)] = 865645, + [SMALL_STATE(13411)] = 865677, + [SMALL_STATE(13412)] = 865711, + [SMALL_STATE(13413)] = 865745, + [SMALL_STATE(13414)] = 865773, + [SMALL_STATE(13415)] = 865801, + [SMALL_STATE(13416)] = 865845, + [SMALL_STATE(13417)] = 865875, + [SMALL_STATE(13418)] = 865919, + [SMALL_STATE(13419)] = 865951, + [SMALL_STATE(13420)] = 865987, + [SMALL_STATE(13421)] = 866015, + [SMALL_STATE(13422)] = 866051, + [SMALL_STATE(13423)] = 866095, + [SMALL_STATE(13424)] = 866131, + [SMALL_STATE(13425)] = 866161, + [SMALL_STATE(13426)] = 866193, + [SMALL_STATE(13427)] = 866237, + [SMALL_STATE(13428)] = 866281, + [SMALL_STATE(13429)] = 866325, + [SMALL_STATE(13430)] = 866369, + [SMALL_STATE(13431)] = 866411, + [SMALL_STATE(13432)] = 866445, + [SMALL_STATE(13433)] = 866473, + [SMALL_STATE(13434)] = 866511, + [SMALL_STATE(13435)] = 866543, + [SMALL_STATE(13436)] = 866585, + [SMALL_STATE(13437)] = 866629, + [SMALL_STATE(13438)] = 866657, + [SMALL_STATE(13439)] = 866685, + [SMALL_STATE(13440)] = 866717, + [SMALL_STATE(13441)] = 866753, + [SMALL_STATE(13442)] = 866789, + [SMALL_STATE(13443)] = 866819, + [SMALL_STATE(13444)] = 866855, + [SMALL_STATE(13445)] = 866891, + [SMALL_STATE(13446)] = 866933, + [SMALL_STATE(13447)] = 866961, + [SMALL_STATE(13448)] = 866991, + [SMALL_STATE(13449)] = 867023, + [SMALL_STATE(13450)] = 867055, + [SMALL_STATE(13451)] = 867091, + [SMALL_STATE(13452)] = 867133, + [SMALL_STATE(13453)] = 867177, + [SMALL_STATE(13454)] = 867205, + [SMALL_STATE(13455)] = 867239, + [SMALL_STATE(13456)] = 867273, + [SMALL_STATE(13457)] = 867317, + [SMALL_STATE(13458)] = 867359, + [SMALL_STATE(13459)] = 867401, + [SMALL_STATE(13460)] = 867437, + [SMALL_STATE(13461)] = 867473, + [SMALL_STATE(13462)] = 867501, + [SMALL_STATE(13463)] = 867531, + [SMALL_STATE(13464)] = 867561, + [SMALL_STATE(13465)] = 867605, + [SMALL_STATE(13466)] = 867633, + [SMALL_STATE(13467)] = 867669, + [SMALL_STATE(13468)] = 867699, + [SMALL_STATE(13469)] = 867735, + [SMALL_STATE(13470)] = 867763, + [SMALL_STATE(13471)] = 867799, + [SMALL_STATE(13472)] = 867835, + [SMALL_STATE(13473)] = 867863, + [SMALL_STATE(13474)] = 867899, + [SMALL_STATE(13475)] = 867929, + [SMALL_STATE(13476)] = 867961, + [SMALL_STATE(13477)] = 867991, + [SMALL_STATE(13478)] = 868021, + [SMALL_STATE(13479)] = 868051, + [SMALL_STATE(13480)] = 868079, + [SMALL_STATE(13481)] = 868107, + [SMALL_STATE(13482)] = 868139, + [SMALL_STATE(13483)] = 868175, + [SMALL_STATE(13484)] = 868209, + [SMALL_STATE(13485)] = 868243, + [SMALL_STATE(13486)] = 868285, + [SMALL_STATE(13487)] = 868315, + [SMALL_STATE(13488)] = 868357, + [SMALL_STATE(13489)] = 868391, + [SMALL_STATE(13490)] = 868421, + [SMALL_STATE(13491)] = 868457, + [SMALL_STATE(13492)] = 868485, + [SMALL_STATE(13493)] = 868521, + [SMALL_STATE(13494)] = 868557, + [SMALL_STATE(13495)] = 868589, + [SMALL_STATE(13496)] = 868621, + [SMALL_STATE(13497)] = 868649, + [SMALL_STATE(13498)] = 868685, + [SMALL_STATE(13499)] = 868715, + [SMALL_STATE(13500)] = 868759, + [SMALL_STATE(13501)] = 868791, + [SMALL_STATE(13502)] = 868825, + [SMALL_STATE(13503)] = 868855, + [SMALL_STATE(13504)] = 868885, + [SMALL_STATE(13505)] = 868913, + [SMALL_STATE(13506)] = 868941, + [SMALL_STATE(13507)] = 868969, + [SMALL_STATE(13508)] = 869005, + [SMALL_STATE(13509)] = 869033, + [SMALL_STATE(13510)] = 869061, + [SMALL_STATE(13511)] = 869091, + [SMALL_STATE(13512)] = 869121, + [SMALL_STATE(13513)] = 869153, + [SMALL_STATE(13514)] = 869191, + [SMALL_STATE(13515)] = 869227, + [SMALL_STATE(13516)] = 869271, + [SMALL_STATE(13517)] = 869301, + [SMALL_STATE(13518)] = 869337, + [SMALL_STATE(13519)] = 869369, + [SMALL_STATE(13520)] = 869410, + [SMALL_STATE(13521)] = 869441, + [SMALL_STATE(13522)] = 869474, + [SMALL_STATE(13523)] = 869501, + [SMALL_STATE(13524)] = 869534, + [SMALL_STATE(13525)] = 869561, + [SMALL_STATE(13526)] = 869588, + [SMALL_STATE(13527)] = 869621, + [SMALL_STATE(13528)] = 869648, + [SMALL_STATE(13529)] = 869675, + [SMALL_STATE(13530)] = 869704, + [SMALL_STATE(13531)] = 869731, + [SMALL_STATE(13532)] = 869760, + [SMALL_STATE(13533)] = 869787, + [SMALL_STATE(13534)] = 869828, + [SMALL_STATE(13535)] = 869869, + [SMALL_STATE(13536)] = 869910, + [SMALL_STATE(13537)] = 869937, + [SMALL_STATE(13538)] = 869966, + [SMALL_STATE(13539)] = 869993, + [SMALL_STATE(13540)] = 870020, + [SMALL_STATE(13541)] = 870047, + [SMALL_STATE(13542)] = 870074, + [SMALL_STATE(13543)] = 870101, + [SMALL_STATE(13544)] = 870130, + [SMALL_STATE(13545)] = 870157, + [SMALL_STATE(13546)] = 870184, + [SMALL_STATE(13547)] = 870211, + [SMALL_STATE(13548)] = 870238, + [SMALL_STATE(13549)] = 870267, + [SMALL_STATE(13550)] = 870298, + [SMALL_STATE(13551)] = 870339, + [SMALL_STATE(13552)] = 870366, + [SMALL_STATE(13553)] = 870393, + [SMALL_STATE(13554)] = 870420, + [SMALL_STATE(13555)] = 870451, + [SMALL_STATE(13556)] = 870486, + [SMALL_STATE(13557)] = 870521, + [SMALL_STATE(13558)] = 870552, + [SMALL_STATE(13559)] = 870593, + [SMALL_STATE(13560)] = 870624, + [SMALL_STATE(13561)] = 870653, + [SMALL_STATE(13562)] = 870680, + [SMALL_STATE(13563)] = 870707, + [SMALL_STATE(13564)] = 870748, + [SMALL_STATE(13565)] = 870789, + [SMALL_STATE(13566)] = 870816, + [SMALL_STATE(13567)] = 870857, + [SMALL_STATE(13568)] = 870888, + [SMALL_STATE(13569)] = 870919, + [SMALL_STATE(13570)] = 870948, + [SMALL_STATE(13571)] = 870975, + [SMALL_STATE(13572)] = 871004, + [SMALL_STATE(13573)] = 871035, + [SMALL_STATE(13574)] = 871066, + [SMALL_STATE(13575)] = 871093, + [SMALL_STATE(13576)] = 871120, + [SMALL_STATE(13577)] = 871147, + [SMALL_STATE(13578)] = 871176, + [SMALL_STATE(13579)] = 871203, + [SMALL_STATE(13580)] = 871230, + [SMALL_STATE(13581)] = 871257, + [SMALL_STATE(13582)] = 871284, + [SMALL_STATE(13583)] = 871311, + [SMALL_STATE(13584)] = 871352, + [SMALL_STATE(13585)] = 871379, + [SMALL_STATE(13586)] = 871420, + [SMALL_STATE(13587)] = 871451, + [SMALL_STATE(13588)] = 871482, + [SMALL_STATE(13589)] = 871523, + [SMALL_STATE(13590)] = 871564, + [SMALL_STATE(13591)] = 871593, + [SMALL_STATE(13592)] = 871634, + [SMALL_STATE(13593)] = 871661, + [SMALL_STATE(13594)] = 871692, + [SMALL_STATE(13595)] = 871719, + [SMALL_STATE(13596)] = 871750, + [SMALL_STATE(13597)] = 871791, + [SMALL_STATE(13598)] = 871832, + [SMALL_STATE(13599)] = 871859, + [SMALL_STATE(13600)] = 871890, + [SMALL_STATE(13601)] = 871921, + [SMALL_STATE(13602)] = 871948, + [SMALL_STATE(13603)] = 871977, + [SMALL_STATE(13604)] = 872012, + [SMALL_STATE(13605)] = 872047, + [SMALL_STATE(13606)] = 872088, + [SMALL_STATE(13607)] = 872123, + [SMALL_STATE(13608)] = 872152, + [SMALL_STATE(13609)] = 872181, + [SMALL_STATE(13610)] = 872212, + [SMALL_STATE(13611)] = 872253, + [SMALL_STATE(13612)] = 872284, + [SMALL_STATE(13613)] = 872325, + [SMALL_STATE(13614)] = 872366, + [SMALL_STATE(13615)] = 872407, + [SMALL_STATE(13616)] = 872448, + [SMALL_STATE(13617)] = 872489, + [SMALL_STATE(13618)] = 872530, + [SMALL_STATE(13619)] = 872565, + [SMALL_STATE(13620)] = 872596, + [SMALL_STATE(13621)] = 872627, + [SMALL_STATE(13622)] = 872656, + [SMALL_STATE(13623)] = 872697, + [SMALL_STATE(13624)] = 872728, + [SMALL_STATE(13625)] = 872759, + [SMALL_STATE(13626)] = 872790, + [SMALL_STATE(13627)] = 872821, + [SMALL_STATE(13628)] = 872852, + [SMALL_STATE(13629)] = 872887, + [SMALL_STATE(13630)] = 872928, + [SMALL_STATE(13631)] = 872963, + [SMALL_STATE(13632)] = 872994, + [SMALL_STATE(13633)] = 873025, + [SMALL_STATE(13634)] = 873066, + [SMALL_STATE(13635)] = 873107, + [SMALL_STATE(13636)] = 873140, + [SMALL_STATE(13637)] = 873173, + [SMALL_STATE(13638)] = 873206, + [SMALL_STATE(13639)] = 873237, + [SMALL_STATE(13640)] = 873278, + [SMALL_STATE(13641)] = 873319, + [SMALL_STATE(13642)] = 873360, + [SMALL_STATE(13643)] = 873393, + [SMALL_STATE(13644)] = 873426, + [SMALL_STATE(13645)] = 873459, + [SMALL_STATE(13646)] = 873500, + [SMALL_STATE(13647)] = 873541, + [SMALL_STATE(13648)] = 873582, + [SMALL_STATE(13649)] = 873623, + [SMALL_STATE(13650)] = 873650, + [SMALL_STATE(13651)] = 873677, + [SMALL_STATE(13652)] = 873718, + [SMALL_STATE(13653)] = 873749, + [SMALL_STATE(13654)] = 873780, + [SMALL_STATE(13655)] = 873811, + [SMALL_STATE(13656)] = 873842, + [SMALL_STATE(13657)] = 873871, + [SMALL_STATE(13658)] = 873902, + [SMALL_STATE(13659)] = 873933, + [SMALL_STATE(13660)] = 873960, + [SMALL_STATE(13661)] = 873991, + [SMALL_STATE(13662)] = 874024, + [SMALL_STATE(13663)] = 874055, + [SMALL_STATE(13664)] = 874096, + [SMALL_STATE(13665)] = 874129, + [SMALL_STATE(13666)] = 874160, + [SMALL_STATE(13667)] = 874193, + [SMALL_STATE(13668)] = 874234, + [SMALL_STATE(13669)] = 874263, + [SMALL_STATE(13670)] = 874290, + [SMALL_STATE(13671)] = 874317, + [SMALL_STATE(13672)] = 874344, + [SMALL_STATE(13673)] = 874375, + [SMALL_STATE(13674)] = 874406, + [SMALL_STATE(13675)] = 874437, + [SMALL_STATE(13676)] = 874468, + [SMALL_STATE(13677)] = 874499, + [SMALL_STATE(13678)] = 874530, + [SMALL_STATE(13679)] = 874561, + [SMALL_STATE(13680)] = 874592, + [SMALL_STATE(13681)] = 874623, + [SMALL_STATE(13682)] = 874654, + [SMALL_STATE(13683)] = 874681, + [SMALL_STATE(13684)] = 874708, + [SMALL_STATE(13685)] = 874739, + [SMALL_STATE(13686)] = 874770, + [SMALL_STATE(13687)] = 874801, + [SMALL_STATE(13688)] = 874832, + [SMALL_STATE(13689)] = 874863, + [SMALL_STATE(13690)] = 874894, + [SMALL_STATE(13691)] = 874925, + [SMALL_STATE(13692)] = 874956, + [SMALL_STATE(13693)] = 874987, + [SMALL_STATE(13694)] = 875017, + [SMALL_STATE(13695)] = 875043, + [SMALL_STATE(13696)] = 875069, + [SMALL_STATE(13697)] = 875099, + [SMALL_STATE(13698)] = 875147, + [SMALL_STATE(13699)] = 875195, + [SMALL_STATE(13700)] = 875221, + [SMALL_STATE(13701)] = 875247, + [SMALL_STATE(13702)] = 875295, + [SMALL_STATE(13703)] = 875343, + [SMALL_STATE(13704)] = 875391, + [SMALL_STATE(13705)] = 875439, + [SMALL_STATE(13706)] = 875487, + [SMALL_STATE(13707)] = 875535, + [SMALL_STATE(13708)] = 875583, + [SMALL_STATE(13709)] = 875631, + [SMALL_STATE(13710)] = 875679, + [SMALL_STATE(13711)] = 875727, + [SMALL_STATE(13712)] = 875775, + [SMALL_STATE(13713)] = 875801, + [SMALL_STATE(13714)] = 875827, + [SMALL_STATE(13715)] = 875875, + [SMALL_STATE(13716)] = 875923, + [SMALL_STATE(13717)] = 875971, + [SMALL_STATE(13718)] = 876019, + [SMALL_STATE(13719)] = 876067, + [SMALL_STATE(13720)] = 876095, + [SMALL_STATE(13721)] = 876125, + [SMALL_STATE(13722)] = 876151, + [SMALL_STATE(13723)] = 876177, + [SMALL_STATE(13724)] = 876203, + [SMALL_STATE(13725)] = 876231, + [SMALL_STATE(13726)] = 876261, + [SMALL_STATE(13727)] = 876309, + [SMALL_STATE(13728)] = 876357, + [SMALL_STATE(13729)] = 876405, + [SMALL_STATE(13730)] = 876431, + [SMALL_STATE(13731)] = 876479, + [SMALL_STATE(13732)] = 876527, + [SMALL_STATE(13733)] = 876575, + [SMALL_STATE(13734)] = 876623, + [SMALL_STATE(13735)] = 876671, + [SMALL_STATE(13736)] = 876719, + [SMALL_STATE(13737)] = 876767, + [SMALL_STATE(13738)] = 876815, + [SMALL_STATE(13739)] = 876863, + [SMALL_STATE(13740)] = 876911, + [SMALL_STATE(13741)] = 876959, + [SMALL_STATE(13742)] = 877007, + [SMALL_STATE(13743)] = 877055, + [SMALL_STATE(13744)] = 877103, + [SMALL_STATE(13745)] = 877151, + [SMALL_STATE(13746)] = 877189, + [SMALL_STATE(13747)] = 877237, + [SMALL_STATE(13748)] = 877263, + [SMALL_STATE(13749)] = 877311, + [SMALL_STATE(13750)] = 877359, + [SMALL_STATE(13751)] = 877407, + [SMALL_STATE(13752)] = 877455, + [SMALL_STATE(13753)] = 877503, + [SMALL_STATE(13754)] = 877529, + [SMALL_STATE(13755)] = 877577, + [SMALL_STATE(13756)] = 877625, + [SMALL_STATE(13757)] = 877673, + [SMALL_STATE(13758)] = 877721, + [SMALL_STATE(13759)] = 877769, + [SMALL_STATE(13760)] = 877817, + [SMALL_STATE(13761)] = 877865, + [SMALL_STATE(13762)] = 877903, + [SMALL_STATE(13763)] = 877929, + [SMALL_STATE(13764)] = 877967, + [SMALL_STATE(13765)] = 877993, + [SMALL_STATE(13766)] = 878041, + [SMALL_STATE(13767)] = 878089, + [SMALL_STATE(13768)] = 878137, + [SMALL_STATE(13769)] = 878163, + [SMALL_STATE(13770)] = 878189, + [SMALL_STATE(13771)] = 878215, + [SMALL_STATE(13772)] = 878241, + [SMALL_STATE(13773)] = 878289, + [SMALL_STATE(13774)] = 878337, + [SMALL_STATE(13775)] = 878385, + [SMALL_STATE(13776)] = 878411, + [SMALL_STATE(13777)] = 878437, + [SMALL_STATE(13778)] = 878485, + [SMALL_STATE(13779)] = 878533, + [SMALL_STATE(13780)] = 878581, + [SMALL_STATE(13781)] = 878629, + [SMALL_STATE(13782)] = 878655, + [SMALL_STATE(13783)] = 878703, + [SMALL_STATE(13784)] = 878751, + [SMALL_STATE(13785)] = 878777, + [SMALL_STATE(13786)] = 878825, + [SMALL_STATE(13787)] = 878873, + [SMALL_STATE(13788)] = 878921, + [SMALL_STATE(13789)] = 878969, + [SMALL_STATE(13790)] = 879017, + [SMALL_STATE(13791)] = 879065, + [SMALL_STATE(13792)] = 879113, + [SMALL_STATE(13793)] = 879161, + [SMALL_STATE(13794)] = 879209, + [SMALL_STATE(13795)] = 879257, + [SMALL_STATE(13796)] = 879305, + [SMALL_STATE(13797)] = 879353, + [SMALL_STATE(13798)] = 879401, + [SMALL_STATE(13799)] = 879449, + [SMALL_STATE(13800)] = 879475, + [SMALL_STATE(13801)] = 879523, + [SMALL_STATE(13802)] = 879571, + [SMALL_STATE(13803)] = 879619, + [SMALL_STATE(13804)] = 879667, + [SMALL_STATE(13805)] = 879715, + [SMALL_STATE(13806)] = 879763, + [SMALL_STATE(13807)] = 879789, + [SMALL_STATE(13808)] = 879837, + [SMALL_STATE(13809)] = 879885, + [SMALL_STATE(13810)] = 879933, + [SMALL_STATE(13811)] = 879981, + [SMALL_STATE(13812)] = 880029, + [SMALL_STATE(13813)] = 880077, + [SMALL_STATE(13814)] = 880125, + [SMALL_STATE(13815)] = 880151, + [SMALL_STATE(13816)] = 880199, + [SMALL_STATE(13817)] = 880247, + [SMALL_STATE(13818)] = 880273, + [SMALL_STATE(13819)] = 880321, + [SMALL_STATE(13820)] = 880369, + [SMALL_STATE(13821)] = 880399, + [SMALL_STATE(13822)] = 880447, + [SMALL_STATE(13823)] = 880495, + [SMALL_STATE(13824)] = 880543, + [SMALL_STATE(13825)] = 880591, + [SMALL_STATE(13826)] = 880639, + [SMALL_STATE(13827)] = 880687, + [SMALL_STATE(13828)] = 880735, + [SMALL_STATE(13829)] = 880783, + [SMALL_STATE(13830)] = 880809, + [SMALL_STATE(13831)] = 880857, + [SMALL_STATE(13832)] = 880905, + [SMALL_STATE(13833)] = 880953, + [SMALL_STATE(13834)] = 881001, + [SMALL_STATE(13835)] = 881049, + [SMALL_STATE(13836)] = 881075, + [SMALL_STATE(13837)] = 881123, + [SMALL_STATE(13838)] = 881171, + [SMALL_STATE(13839)] = 881219, + [SMALL_STATE(13840)] = 881267, + [SMALL_STATE(13841)] = 881295, + [SMALL_STATE(13842)] = 881343, + [SMALL_STATE(13843)] = 881391, + [SMALL_STATE(13844)] = 881439, + [SMALL_STATE(13845)] = 881487, + [SMALL_STATE(13846)] = 881535, + [SMALL_STATE(13847)] = 881561, + [SMALL_STATE(13848)] = 881601, + [SMALL_STATE(13849)] = 881649, + [SMALL_STATE(13850)] = 881697, + [SMALL_STATE(13851)] = 881725, + [SMALL_STATE(13852)] = 881773, + [SMALL_STATE(13853)] = 881799, + [SMALL_STATE(13854)] = 881847, + [SMALL_STATE(13855)] = 881895, + [SMALL_STATE(13856)] = 881943, + [SMALL_STATE(13857)] = 881969, + [SMALL_STATE(13858)] = 881995, + [SMALL_STATE(13859)] = 882021, + [SMALL_STATE(13860)] = 882069, + [SMALL_STATE(13861)] = 882117, + [SMALL_STATE(13862)] = 882143, + [SMALL_STATE(13863)] = 882191, + [SMALL_STATE(13864)] = 882239, + [SMALL_STATE(13865)] = 882265, + [SMALL_STATE(13866)] = 882313, + [SMALL_STATE(13867)] = 882339, + [SMALL_STATE(13868)] = 882367, + [SMALL_STATE(13869)] = 882415, + [SMALL_STATE(13870)] = 882463, + [SMALL_STATE(13871)] = 882489, + [SMALL_STATE(13872)] = 882515, + [SMALL_STATE(13873)] = 882541, + [SMALL_STATE(13874)] = 882589, + [SMALL_STATE(13875)] = 882637, + [SMALL_STATE(13876)] = 882685, + [SMALL_STATE(13877)] = 882733, + [SMALL_STATE(13878)] = 882781, + [SMALL_STATE(13879)] = 882829, + [SMALL_STATE(13880)] = 882855, + [SMALL_STATE(13881)] = 882881, + [SMALL_STATE(13882)] = 882929, + [SMALL_STATE(13883)] = 882977, + [SMALL_STATE(13884)] = 883025, + [SMALL_STATE(13885)] = 883073, + [SMALL_STATE(13886)] = 883121, + [SMALL_STATE(13887)] = 883169, + [SMALL_STATE(13888)] = 883217, + [SMALL_STATE(13889)] = 883265, + [SMALL_STATE(13890)] = 883313, + [SMALL_STATE(13891)] = 883341, + [SMALL_STATE(13892)] = 883389, + [SMALL_STATE(13893)] = 883437, + [SMALL_STATE(13894)] = 883467, + [SMALL_STATE(13895)] = 883515, + [SMALL_STATE(13896)] = 883563, + [SMALL_STATE(13897)] = 883611, + [SMALL_STATE(13898)] = 883641, + [SMALL_STATE(13899)] = 883689, + [SMALL_STATE(13900)] = 883737, + [SMALL_STATE(13901)] = 883785, + [SMALL_STATE(13902)] = 883833, + [SMALL_STATE(13903)] = 883881, + [SMALL_STATE(13904)] = 883929, + [SMALL_STATE(13905)] = 883977, + [SMALL_STATE(13906)] = 884025, + [SMALL_STATE(13907)] = 884073, + [SMALL_STATE(13908)] = 884121, + [SMALL_STATE(13909)] = 884169, + [SMALL_STATE(13910)] = 884217, + [SMALL_STATE(13911)] = 884265, + [SMALL_STATE(13912)] = 884313, + [SMALL_STATE(13913)] = 884339, + [SMALL_STATE(13914)] = 884369, + [SMALL_STATE(13915)] = 884399, + [SMALL_STATE(13916)] = 884429, + [SMALL_STATE(13917)] = 884457, + [SMALL_STATE(13918)] = 884505, + [SMALL_STATE(13919)] = 884553, + [SMALL_STATE(13920)] = 884601, + [SMALL_STATE(13921)] = 884629, + [SMALL_STATE(13922)] = 884669, + [SMALL_STATE(13923)] = 884695, + [SMALL_STATE(13924)] = 884721, + [SMALL_STATE(13925)] = 884747, + [SMALL_STATE(13926)] = 884775, + [SMALL_STATE(13927)] = 884805, + [SMALL_STATE(13928)] = 884835, + [SMALL_STATE(13929)] = 884883, + [SMALL_STATE(13930)] = 884913, + [SMALL_STATE(13931)] = 884961, + [SMALL_STATE(13932)] = 885009, + [SMALL_STATE(13933)] = 885057, + [SMALL_STATE(13934)] = 885087, + [SMALL_STATE(13935)] = 885113, + [SMALL_STATE(13936)] = 885161, + [SMALL_STATE(13937)] = 885187, + [SMALL_STATE(13938)] = 885235, + [SMALL_STATE(13939)] = 885283, + [SMALL_STATE(13940)] = 885309, + [SMALL_STATE(13941)] = 885357, + [SMALL_STATE(13942)] = 885405, + [SMALL_STATE(13943)] = 885453, + [SMALL_STATE(13944)] = 885501, + [SMALL_STATE(13945)] = 885549, + [SMALL_STATE(13946)] = 885575, + [SMALL_STATE(13947)] = 885605, + [SMALL_STATE(13948)] = 885635, + [SMALL_STATE(13949)] = 885661, + [SMALL_STATE(13950)] = 885691, + [SMALL_STATE(13951)] = 885717, + [SMALL_STATE(13952)] = 885765, + [SMALL_STATE(13953)] = 885791, + [SMALL_STATE(13954)] = 885839, + [SMALL_STATE(13955)] = 885887, + [SMALL_STATE(13956)] = 885935, + [SMALL_STATE(13957)] = 885961, + [SMALL_STATE(13958)] = 886009, + [SMALL_STATE(13959)] = 886057, + [SMALL_STATE(13960)] = 886083, + [SMALL_STATE(13961)] = 886109, + [SMALL_STATE(13962)] = 886135, + [SMALL_STATE(13963)] = 886183, + [SMALL_STATE(13964)] = 886209, + [SMALL_STATE(13965)] = 886235, + [SMALL_STATE(13966)] = 886261, + [SMALL_STATE(13967)] = 886309, + [SMALL_STATE(13968)] = 886357, + [SMALL_STATE(13969)] = 886405, + [SMALL_STATE(13970)] = 886431, + [SMALL_STATE(13971)] = 886479, + [SMALL_STATE(13972)] = 886505, + [SMALL_STATE(13973)] = 886553, + [SMALL_STATE(13974)] = 886601, + [SMALL_STATE(13975)] = 886641, + [SMALL_STATE(13976)] = 886689, + [SMALL_STATE(13977)] = 886715, + [SMALL_STATE(13978)] = 886741, + [SMALL_STATE(13979)] = 886767, + [SMALL_STATE(13980)] = 886793, + [SMALL_STATE(13981)] = 886819, + [SMALL_STATE(13982)] = 886845, + [SMALL_STATE(13983)] = 886873, + [SMALL_STATE(13984)] = 886899, + [SMALL_STATE(13985)] = 886925, + [SMALL_STATE(13986)] = 886955, + [SMALL_STATE(13987)] = 886983, + [SMALL_STATE(13988)] = 887009, + [SMALL_STATE(13989)] = 887057, + [SMALL_STATE(13990)] = 887105, + [SMALL_STATE(13991)] = 887153, + [SMALL_STATE(13992)] = 887179, + [SMALL_STATE(13993)] = 887227, + [SMALL_STATE(13994)] = 887267, + [SMALL_STATE(13995)] = 887293, + [SMALL_STATE(13996)] = 887341, + [SMALL_STATE(13997)] = 887367, + [SMALL_STATE(13998)] = 887393, + [SMALL_STATE(13999)] = 887419, + [SMALL_STATE(14000)] = 887445, + [SMALL_STATE(14001)] = 887493, + [SMALL_STATE(14002)] = 887541, + [SMALL_STATE(14003)] = 887589, + [SMALL_STATE(14004)] = 887637, + [SMALL_STATE(14005)] = 887663, + [SMALL_STATE(14006)] = 887693, + [SMALL_STATE(14007)] = 887719, + [SMALL_STATE(14008)] = 887749, + [SMALL_STATE(14009)] = 887797, + [SMALL_STATE(14010)] = 887827, + [SMALL_STATE(14011)] = 887875, + [SMALL_STATE(14012)] = 887905, + [SMALL_STATE(14013)] = 887935, + [SMALL_STATE(14014)] = 887965, + [SMALL_STATE(14015)] = 887995, + [SMALL_STATE(14016)] = 888025, + [SMALL_STATE(14017)] = 888055, + [SMALL_STATE(14018)] = 888085, + [SMALL_STATE(14019)] = 888115, + [SMALL_STATE(14020)] = 888163, + [SMALL_STATE(14021)] = 888189, + [SMALL_STATE(14022)] = 888219, + [SMALL_STATE(14023)] = 888249, + [SMALL_STATE(14024)] = 888297, + [SMALL_STATE(14025)] = 888323, + [SMALL_STATE(14026)] = 888353, + [SMALL_STATE(14027)] = 888383, + [SMALL_STATE(14028)] = 888413, + [SMALL_STATE(14029)] = 888439, + [SMALL_STATE(14030)] = 888469, + [SMALL_STATE(14031)] = 888495, + [SMALL_STATE(14032)] = 888525, + [SMALL_STATE(14033)] = 888573, + [SMALL_STATE(14034)] = 888621, + [SMALL_STATE(14035)] = 888669, + [SMALL_STATE(14036)] = 888699, + [SMALL_STATE(14037)] = 888729, + [SMALL_STATE(14038)] = 888759, + [SMALL_STATE(14039)] = 888807, + [SMALL_STATE(14040)] = 888833, + [SMALL_STATE(14041)] = 888863, + [SMALL_STATE(14042)] = 888893, + [SMALL_STATE(14043)] = 888919, + [SMALL_STATE(14044)] = 888967, + [SMALL_STATE(14045)] = 888997, + [SMALL_STATE(14046)] = 889027, + [SMALL_STATE(14047)] = 889053, + [SMALL_STATE(14048)] = 889101, + [SMALL_STATE(14049)] = 889149, + [SMALL_STATE(14050)] = 889175, + [SMALL_STATE(14051)] = 889223, + [SMALL_STATE(14052)] = 889271, + [SMALL_STATE(14053)] = 889299, + [SMALL_STATE(14054)] = 889347, + [SMALL_STATE(14055)] = 889377, + [SMALL_STATE(14056)] = 889425, + [SMALL_STATE(14057)] = 889473, + [SMALL_STATE(14058)] = 889521, + [SMALL_STATE(14059)] = 889569, + [SMALL_STATE(14060)] = 889617, + [SMALL_STATE(14061)] = 889665, + [SMALL_STATE(14062)] = 889713, + [SMALL_STATE(14063)] = 889741, + [SMALL_STATE(14064)] = 889767, + [SMALL_STATE(14065)] = 889815, + [SMALL_STATE(14066)] = 889863, + [SMALL_STATE(14067)] = 889889, + [SMALL_STATE(14068)] = 889915, + [SMALL_STATE(14069)] = 889941, + [SMALL_STATE(14070)] = 889967, + [SMALL_STATE(14071)] = 889993, + [SMALL_STATE(14072)] = 890019, + [SMALL_STATE(14073)] = 890047, + [SMALL_STATE(14074)] = 890095, + [SMALL_STATE(14075)] = 890143, + [SMALL_STATE(14076)] = 890191, + [SMALL_STATE(14077)] = 890239, + [SMALL_STATE(14078)] = 890287, + [SMALL_STATE(14079)] = 890313, + [SMALL_STATE(14080)] = 890341, + [SMALL_STATE(14081)] = 890367, + [SMALL_STATE(14082)] = 890393, + [SMALL_STATE(14083)] = 890441, + [SMALL_STATE(14084)] = 890489, + [SMALL_STATE(14085)] = 890537, + [SMALL_STATE(14086)] = 890563, + [SMALL_STATE(14087)] = 890611, + [SMALL_STATE(14088)] = 890659, + [SMALL_STATE(14089)] = 890685, + [SMALL_STATE(14090)] = 890733, + [SMALL_STATE(14091)] = 890781, + [SMALL_STATE(14092)] = 890811, + [SMALL_STATE(14093)] = 890841, + [SMALL_STATE(14094)] = 890871, + [SMALL_STATE(14095)] = 890919, + [SMALL_STATE(14096)] = 890949, + [SMALL_STATE(14097)] = 890997, + [SMALL_STATE(14098)] = 891045, + [SMALL_STATE(14099)] = 891071, + [SMALL_STATE(14100)] = 891099, + [SMALL_STATE(14101)] = 891125, + [SMALL_STATE(14102)] = 891155, + [SMALL_STATE(14103)] = 891185, + [SMALL_STATE(14104)] = 891213, + [SMALL_STATE(14105)] = 891243, + [SMALL_STATE(14106)] = 891291, + [SMALL_STATE(14107)] = 891321, + [SMALL_STATE(14108)] = 891347, + [SMALL_STATE(14109)] = 891377, + [SMALL_STATE(14110)] = 891403, + [SMALL_STATE(14111)] = 891433, + [SMALL_STATE(14112)] = 891463, + [SMALL_STATE(14113)] = 891493, + [SMALL_STATE(14114)] = 891523, + [SMALL_STATE(14115)] = 891553, + [SMALL_STATE(14116)] = 891583, + [SMALL_STATE(14117)] = 891613, + [SMALL_STATE(14118)] = 891643, + [SMALL_STATE(14119)] = 891673, + [SMALL_STATE(14120)] = 891703, + [SMALL_STATE(14121)] = 891733, + [SMALL_STATE(14122)] = 891763, + [SMALL_STATE(14123)] = 891789, + [SMALL_STATE(14124)] = 891816, + [SMALL_STATE(14125)] = 891841, + [SMALL_STATE(14126)] = 891866, + [SMALL_STATE(14127)] = 891893, + [SMALL_STATE(14128)] = 891918, + [SMALL_STATE(14129)] = 891943, + [SMALL_STATE(14130)] = 891968, + [SMALL_STATE(14131)] = 891993, + [SMALL_STATE(14132)] = 892018, + [SMALL_STATE(14133)] = 892043, + [SMALL_STATE(14134)] = 892068, + [SMALL_STATE(14135)] = 892093, + [SMALL_STATE(14136)] = 892120, + [SMALL_STATE(14137)] = 892147, + [SMALL_STATE(14138)] = 892172, + [SMALL_STATE(14139)] = 892199, + [SMALL_STATE(14140)] = 892228, + [SMALL_STATE(14141)] = 892253, + [SMALL_STATE(14142)] = 892280, + [SMALL_STATE(14143)] = 892305, + [SMALL_STATE(14144)] = 892330, + [SMALL_STATE(14145)] = 892355, + [SMALL_STATE(14146)] = 892380, + [SMALL_STATE(14147)] = 892407, + [SMALL_STATE(14148)] = 892436, + [SMALL_STATE(14149)] = 892461, + [SMALL_STATE(14150)] = 892490, + [SMALL_STATE(14151)] = 892515, + [SMALL_STATE(14152)] = 892540, + [SMALL_STATE(14153)] = 892567, + [SMALL_STATE(14154)] = 892594, + [SMALL_STATE(14155)] = 892619, + [SMALL_STATE(14156)] = 892646, + [SMALL_STATE(14157)] = 892673, + [SMALL_STATE(14158)] = 892700, + [SMALL_STATE(14159)] = 892727, + [SMALL_STATE(14160)] = 892756, + [SMALL_STATE(14161)] = 892785, + [SMALL_STATE(14162)] = 892814, + [SMALL_STATE(14163)] = 892843, + [SMALL_STATE(14164)] = 892872, + [SMALL_STATE(14165)] = 892899, + [SMALL_STATE(14166)] = 892928, + [SMALL_STATE(14167)] = 892957, + [SMALL_STATE(14168)] = 892984, + [SMALL_STATE(14169)] = 893011, + [SMALL_STATE(14170)] = 893038, + [SMALL_STATE(14171)] = 893063, + [SMALL_STATE(14172)] = 893092, + [SMALL_STATE(14173)] = 893119, + [SMALL_STATE(14174)] = 893144, + [SMALL_STATE(14175)] = 893169, + [SMALL_STATE(14176)] = 893198, + [SMALL_STATE(14177)] = 893223, + [SMALL_STATE(14178)] = 893252, + [SMALL_STATE(14179)] = 893281, + [SMALL_STATE(14180)] = 893310, + [SMALL_STATE(14181)] = 893337, + [SMALL_STATE(14182)] = 893366, + [SMALL_STATE(14183)] = 893395, + [SMALL_STATE(14184)] = 893424, + [SMALL_STATE(14185)] = 893449, + [SMALL_STATE(14186)] = 893474, + [SMALL_STATE(14187)] = 893499, + [SMALL_STATE(14188)] = 893526, + [SMALL_STATE(14189)] = 893555, + [SMALL_STATE(14190)] = 893580, + [SMALL_STATE(14191)] = 893609, + [SMALL_STATE(14192)] = 893636, + [SMALL_STATE(14193)] = 893663, + [SMALL_STATE(14194)] = 893692, + [SMALL_STATE(14195)] = 893719, + [SMALL_STATE(14196)] = 893748, + [SMALL_STATE(14197)] = 893773, + [SMALL_STATE(14198)] = 893802, + [SMALL_STATE(14199)] = 893827, + [SMALL_STATE(14200)] = 893852, + [SMALL_STATE(14201)] = 893877, + [SMALL_STATE(14202)] = 893906, + [SMALL_STATE(14203)] = 893931, + [SMALL_STATE(14204)] = 893955, + [SMALL_STATE(14205)] = 893981, + [SMALL_STATE(14206)] = 894005, + [SMALL_STATE(14207)] = 894029, + [SMALL_STATE(14208)] = 894053, + [SMALL_STATE(14209)] = 894077, + [SMALL_STATE(14210)] = 894101, + [SMALL_STATE(14211)] = 894125, + [SMALL_STATE(14212)] = 894149, + [SMALL_STATE(14213)] = 894173, + [SMALL_STATE(14214)] = 894197, + [SMALL_STATE(14215)] = 894221, + [SMALL_STATE(14216)] = 894245, + [SMALL_STATE(14217)] = 894269, + [SMALL_STATE(14218)] = 894293, + [SMALL_STATE(14219)] = 894317, + [SMALL_STATE(14220)] = 894341, + [SMALL_STATE(14221)] = 894365, + [SMALL_STATE(14222)] = 894389, + [SMALL_STATE(14223)] = 894413, + [SMALL_STATE(14224)] = 894437, + [SMALL_STATE(14225)] = 894461, + [SMALL_STATE(14226)] = 894485, + [SMALL_STATE(14227)] = 894509, + [SMALL_STATE(14228)] = 894533, + [SMALL_STATE(14229)] = 894559, + [SMALL_STATE(14230)] = 894583, + [SMALL_STATE(14231)] = 894607, + [SMALL_STATE(14232)] = 894631, + [SMALL_STATE(14233)] = 894655, + [SMALL_STATE(14234)] = 894679, + [SMALL_STATE(14235)] = 894705, + [SMALL_STATE(14236)] = 894731, + [SMALL_STATE(14237)] = 894755, + [SMALL_STATE(14238)] = 894779, + [SMALL_STATE(14239)] = 894803, + [SMALL_STATE(14240)] = 894827, + [SMALL_STATE(14241)] = 894851, + [SMALL_STATE(14242)] = 894875, + [SMALL_STATE(14243)] = 894901, + [SMALL_STATE(14244)] = 894925, + [SMALL_STATE(14245)] = 894949, + [SMALL_STATE(14246)] = 894973, + [SMALL_STATE(14247)] = 894997, + [SMALL_STATE(14248)] = 895021, + [SMALL_STATE(14249)] = 895047, + [SMALL_STATE(14250)] = 895073, + [SMALL_STATE(14251)] = 895099, + [SMALL_STATE(14252)] = 895123, + [SMALL_STATE(14253)] = 895147, + [SMALL_STATE(14254)] = 895171, + [SMALL_STATE(14255)] = 895195, + [SMALL_STATE(14256)] = 895219, + [SMALL_STATE(14257)] = 895245, + [SMALL_STATE(14258)] = 895269, + [SMALL_STATE(14259)] = 895293, + [SMALL_STATE(14260)] = 895317, + [SMALL_STATE(14261)] = 895341, + [SMALL_STATE(14262)] = 895365, + [SMALL_STATE(14263)] = 895389, + [SMALL_STATE(14264)] = 895413, + [SMALL_STATE(14265)] = 895437, + [SMALL_STATE(14266)] = 895461, + [SMALL_STATE(14267)] = 895485, + [SMALL_STATE(14268)] = 895509, + [SMALL_STATE(14269)] = 895533, + [SMALL_STATE(14270)] = 895557, + [SMALL_STATE(14271)] = 895581, + [SMALL_STATE(14272)] = 895605, + [SMALL_STATE(14273)] = 895629, + [SMALL_STATE(14274)] = 895655, + [SMALL_STATE(14275)] = 895679, + [SMALL_STATE(14276)] = 895703, + [SMALL_STATE(14277)] = 895727, + [SMALL_STATE(14278)] = 895751, + [SMALL_STATE(14279)] = 895777, + [SMALL_STATE(14280)] = 895801, + [SMALL_STATE(14281)] = 895825, + [SMALL_STATE(14282)] = 895849, + [SMALL_STATE(14283)] = 895873, + [SMALL_STATE(14284)] = 895897, + [SMALL_STATE(14285)] = 895921, + [SMALL_STATE(14286)] = 895945, + [SMALL_STATE(14287)] = 895971, + [SMALL_STATE(14288)] = 895995, + [SMALL_STATE(14289)] = 896019, + [SMALL_STATE(14290)] = 896045, + [SMALL_STATE(14291)] = 896069, + [SMALL_STATE(14292)] = 896095, + [SMALL_STATE(14293)] = 896119, + [SMALL_STATE(14294)] = 896143, + [SMALL_STATE(14295)] = 896167, + [SMALL_STATE(14296)] = 896193, + [SMALL_STATE(14297)] = 896217, + [SMALL_STATE(14298)] = 896241, + [SMALL_STATE(14299)] = 896265, + [SMALL_STATE(14300)] = 896289, + [SMALL_STATE(14301)] = 896313, + [SMALL_STATE(14302)] = 896339, + [SMALL_STATE(14303)] = 896363, + [SMALL_STATE(14304)] = 896387, + [SMALL_STATE(14305)] = 896411, + [SMALL_STATE(14306)] = 896437, + [SMALL_STATE(14307)] = 896461, + [SMALL_STATE(14308)] = 896485, + [SMALL_STATE(14309)] = 896510, + [SMALL_STATE(14310)] = 896533, + [SMALL_STATE(14311)] = 896558, + [SMALL_STATE(14312)] = 896583, + [SMALL_STATE(14313)] = 896608, + [SMALL_STATE(14314)] = 896633, + [SMALL_STATE(14315)] = 896656, + [SMALL_STATE(14316)] = 896679, + [SMALL_STATE(14317)] = 896702, + [SMALL_STATE(14318)] = 896725, + [SMALL_STATE(14319)] = 896748, + [SMALL_STATE(14320)] = 896771, + [SMALL_STATE(14321)] = 896794, + [SMALL_STATE(14322)] = 896817, + [SMALL_STATE(14323)] = 896840, + [SMALL_STATE(14324)] = 896863, + [SMALL_STATE(14325)] = 896886, + [SMALL_STATE(14326)] = 896911, + [SMALL_STATE(14327)] = 896934, + [SMALL_STATE(14328)] = 896957, + [SMALL_STATE(14329)] = 896982, + [SMALL_STATE(14330)] = 897005, + [SMALL_STATE(14331)] = 897028, + [SMALL_STATE(14332)] = 897053, + [SMALL_STATE(14333)] = 897076, + [SMALL_STATE(14334)] = 897101, + [SMALL_STATE(14335)] = 897126, + [SMALL_STATE(14336)] = 897149, + [SMALL_STATE(14337)] = 897174, + [SMALL_STATE(14338)] = 897197, + [SMALL_STATE(14339)] = 897222, + [SMALL_STATE(14340)] = 897245, + [SMALL_STATE(14341)] = 897268, + [SMALL_STATE(14342)] = 897291, + [SMALL_STATE(14343)] = 897314, + [SMALL_STATE(14344)] = 897337, + [SMALL_STATE(14345)] = 897360, + [SMALL_STATE(14346)] = 897385, + [SMALL_STATE(14347)] = 897408, + [SMALL_STATE(14348)] = 897431, + [SMALL_STATE(14349)] = 897456, + [SMALL_STATE(14350)] = 897481, + [SMALL_STATE(14351)] = 897502, + [SMALL_STATE(14352)] = 897527, + [SMALL_STATE(14353)] = 897550, + [SMALL_STATE(14354)] = 897573, + [SMALL_STATE(14355)] = 897598, + [SMALL_STATE(14356)] = 897621, + [SMALL_STATE(14357)] = 897642, + [SMALL_STATE(14358)] = 897665, + [SMALL_STATE(14359)] = 897688, + [SMALL_STATE(14360)] = 897711, + [SMALL_STATE(14361)] = 897736, + [SMALL_STATE(14362)] = 897759, + [SMALL_STATE(14363)] = 897782, + [SMALL_STATE(14364)] = 897807, + [SMALL_STATE(14365)] = 897830, + [SMALL_STATE(14366)] = 897855, + [SMALL_STATE(14367)] = 897880, + [SMALL_STATE(14368)] = 897907, + [SMALL_STATE(14369)] = 897930, + [SMALL_STATE(14370)] = 897955, + [SMALL_STATE(14371)] = 897978, + [SMALL_STATE(14372)] = 898003, + [SMALL_STATE(14373)] = 898026, + [SMALL_STATE(14374)] = 898049, + [SMALL_STATE(14375)] = 898074, + [SMALL_STATE(14376)] = 898097, + [SMALL_STATE(14377)] = 898122, + [SMALL_STATE(14378)] = 898147, + [SMALL_STATE(14379)] = 898172, + [SMALL_STATE(14380)] = 898197, + [SMALL_STATE(14381)] = 898220, + [SMALL_STATE(14382)] = 898247, + [SMALL_STATE(14383)] = 898270, + [SMALL_STATE(14384)] = 898293, + [SMALL_STATE(14385)] = 898316, + [SMALL_STATE(14386)] = 898339, + [SMALL_STATE(14387)] = 898362, + [SMALL_STATE(14388)] = 898385, + [SMALL_STATE(14389)] = 898408, + [SMALL_STATE(14390)] = 898431, + [SMALL_STATE(14391)] = 898456, + [SMALL_STATE(14392)] = 898479, + [SMALL_STATE(14393)] = 898502, + [SMALL_STATE(14394)] = 898525, + [SMALL_STATE(14395)] = 898563, + [SMALL_STATE(14396)] = 898601, + [SMALL_STATE(14397)] = 898639, + [SMALL_STATE(14398)] = 898677, + [SMALL_STATE(14399)] = 898715, + [SMALL_STATE(14400)] = 898753, + [SMALL_STATE(14401)] = 898791, + [SMALL_STATE(14402)] = 898829, + [SMALL_STATE(14403)] = 898867, + [SMALL_STATE(14404)] = 898905, + [SMALL_STATE(14405)] = 898943, + [SMALL_STATE(14406)] = 898981, + [SMALL_STATE(14407)] = 899019, + [SMALL_STATE(14408)] = 899057, + [SMALL_STATE(14409)] = 899081, + [SMALL_STATE(14410)] = 899119, + [SMALL_STATE(14411)] = 899157, + [SMALL_STATE(14412)] = 899195, + [SMALL_STATE(14413)] = 899233, + [SMALL_STATE(14414)] = 899271, + [SMALL_STATE(14415)] = 899309, + [SMALL_STATE(14416)] = 899347, + [SMALL_STATE(14417)] = 899385, + [SMALL_STATE(14418)] = 899423, + [SMALL_STATE(14419)] = 899461, + [SMALL_STATE(14420)] = 899483, + [SMALL_STATE(14421)] = 899505, + [SMALL_STATE(14422)] = 899543, + [SMALL_STATE(14423)] = 899565, + [SMALL_STATE(14424)] = 899603, + [SMALL_STATE(14425)] = 899641, + [SMALL_STATE(14426)] = 899679, + [SMALL_STATE(14427)] = 899717, + [SMALL_STATE(14428)] = 899755, + [SMALL_STATE(14429)] = 899793, + [SMALL_STATE(14430)] = 899831, + [SMALL_STATE(14431)] = 899869, + [SMALL_STATE(14432)] = 899907, + [SMALL_STATE(14433)] = 899945, + [SMALL_STATE(14434)] = 899983, + [SMALL_STATE(14435)] = 900021, + [SMALL_STATE(14436)] = 900059, + [SMALL_STATE(14437)] = 900097, + [SMALL_STATE(14438)] = 900135, + [SMALL_STATE(14439)] = 900173, + [SMALL_STATE(14440)] = 900211, + [SMALL_STATE(14441)] = 900249, + [SMALL_STATE(14442)] = 900287, + [SMALL_STATE(14443)] = 900325, + [SMALL_STATE(14444)] = 900363, + [SMALL_STATE(14445)] = 900401, + [SMALL_STATE(14446)] = 900439, + [SMALL_STATE(14447)] = 900477, + [SMALL_STATE(14448)] = 900515, + [SMALL_STATE(14449)] = 900535, + [SMALL_STATE(14450)] = 900573, + [SMALL_STATE(14451)] = 900611, + [SMALL_STATE(14452)] = 900647, + [SMALL_STATE(14453)] = 900685, + [SMALL_STATE(14454)] = 900709, + [SMALL_STATE(14455)] = 900747, + [SMALL_STATE(14456)] = 900773, + [SMALL_STATE(14457)] = 900811, + [SMALL_STATE(14458)] = 900849, + [SMALL_STATE(14459)] = 900873, + [SMALL_STATE(14460)] = 900911, + [SMALL_STATE(14461)] = 900947, + [SMALL_STATE(14462)] = 900983, + [SMALL_STATE(14463)] = 901019, + [SMALL_STATE(14464)] = 901057, + [SMALL_STATE(14465)] = 901093, + [SMALL_STATE(14466)] = 901131, + [SMALL_STATE(14467)] = 901169, + [SMALL_STATE(14468)] = 901207, + [SMALL_STATE(14469)] = 901243, + [SMALL_STATE(14470)] = 901281, + [SMALL_STATE(14471)] = 901305, + [SMALL_STATE(14472)] = 901327, + [SMALL_STATE(14473)] = 901365, + [SMALL_STATE(14474)] = 901403, + [SMALL_STATE(14475)] = 901441, + [SMALL_STATE(14476)] = 901479, + [SMALL_STATE(14477)] = 901517, + [SMALL_STATE(14478)] = 901555, + [SMALL_STATE(14479)] = 901593, + [SMALL_STATE(14480)] = 901631, + [SMALL_STATE(14481)] = 901669, + [SMALL_STATE(14482)] = 901707, + [SMALL_STATE(14483)] = 901745, + [SMALL_STATE(14484)] = 901783, + [SMALL_STATE(14485)] = 901821, + [SMALL_STATE(14486)] = 901859, + [SMALL_STATE(14487)] = 901897, + [SMALL_STATE(14488)] = 901935, + [SMALL_STATE(14489)] = 901973, + [SMALL_STATE(14490)] = 902011, + [SMALL_STATE(14491)] = 902049, + [SMALL_STATE(14492)] = 902087, + [SMALL_STATE(14493)] = 902125, + [SMALL_STATE(14494)] = 902163, + [SMALL_STATE(14495)] = 902201, + [SMALL_STATE(14496)] = 902223, + [SMALL_STATE(14497)] = 902261, + [SMALL_STATE(14498)] = 902299, + [SMALL_STATE(14499)] = 902337, + [SMALL_STATE(14500)] = 902375, + [SMALL_STATE(14501)] = 902413, + [SMALL_STATE(14502)] = 902437, + [SMALL_STATE(14503)] = 902475, + [SMALL_STATE(14504)] = 902513, + [SMALL_STATE(14505)] = 902537, + [SMALL_STATE(14506)] = 902575, + [SMALL_STATE(14507)] = 902613, + [SMALL_STATE(14508)] = 902651, + [SMALL_STATE(14509)] = 902689, + [SMALL_STATE(14510)] = 902727, + [SMALL_STATE(14511)] = 902765, + [SMALL_STATE(14512)] = 902803, + [SMALL_STATE(14513)] = 902841, + [SMALL_STATE(14514)] = 902863, + [SMALL_STATE(14515)] = 902887, + [SMALL_STATE(14516)] = 902911, + [SMALL_STATE(14517)] = 902949, + [SMALL_STATE(14518)] = 902987, + [SMALL_STATE(14519)] = 903025, + [SMALL_STATE(14520)] = 903063, + [SMALL_STATE(14521)] = 903101, + [SMALL_STATE(14522)] = 903139, + [SMALL_STATE(14523)] = 903177, + [SMALL_STATE(14524)] = 903201, + [SMALL_STATE(14525)] = 903237, + [SMALL_STATE(14526)] = 903275, + [SMALL_STATE(14527)] = 903299, + [SMALL_STATE(14528)] = 903323, + [SMALL_STATE(14529)] = 903361, + [SMALL_STATE(14530)] = 903399, + [SMALL_STATE(14531)] = 903437, + [SMALL_STATE(14532)] = 903475, + [SMALL_STATE(14533)] = 903513, + [SMALL_STATE(14534)] = 903551, + [SMALL_STATE(14535)] = 903589, + [SMALL_STATE(14536)] = 903627, + [SMALL_STATE(14537)] = 903665, + [SMALL_STATE(14538)] = 903703, + [SMALL_STATE(14539)] = 903741, + [SMALL_STATE(14540)] = 903779, + [SMALL_STATE(14541)] = 903817, + [SMALL_STATE(14542)] = 903843, + [SMALL_STATE(14543)] = 903881, + [SMALL_STATE(14544)] = 903919, + [SMALL_STATE(14545)] = 903957, + [SMALL_STATE(14546)] = 903995, + [SMALL_STATE(14547)] = 904033, + [SMALL_STATE(14548)] = 904071, + [SMALL_STATE(14549)] = 904109, + [SMALL_STATE(14550)] = 904131, + [SMALL_STATE(14551)] = 904153, + [SMALL_STATE(14552)] = 904191, + [SMALL_STATE(14553)] = 904229, + [SMALL_STATE(14554)] = 904267, + [SMALL_STATE(14555)] = 904303, + [SMALL_STATE(14556)] = 904341, + [SMALL_STATE(14557)] = 904379, + [SMALL_STATE(14558)] = 904417, + [SMALL_STATE(14559)] = 904455, + [SMALL_STATE(14560)] = 904493, + [SMALL_STATE(14561)] = 904531, + [SMALL_STATE(14562)] = 904569, + [SMALL_STATE(14563)] = 904591, + [SMALL_STATE(14564)] = 904629, + [SMALL_STATE(14565)] = 904667, + [SMALL_STATE(14566)] = 904705, + [SMALL_STATE(14567)] = 904743, + [SMALL_STATE(14568)] = 904765, + [SMALL_STATE(14569)] = 904803, + [SMALL_STATE(14570)] = 904841, + [SMALL_STATE(14571)] = 904879, + [SMALL_STATE(14572)] = 904917, + [SMALL_STATE(14573)] = 904943, + [SMALL_STATE(14574)] = 904981, + [SMALL_STATE(14575)] = 905019, + [SMALL_STATE(14576)] = 905057, + [SMALL_STATE(14577)] = 905095, + [SMALL_STATE(14578)] = 905133, + [SMALL_STATE(14579)] = 905155, + [SMALL_STATE(14580)] = 905193, + [SMALL_STATE(14581)] = 905231, + [SMALL_STATE(14582)] = 905269, + [SMALL_STATE(14583)] = 905307, + [SMALL_STATE(14584)] = 905345, + [SMALL_STATE(14585)] = 905383, + [SMALL_STATE(14586)] = 905407, + [SMALL_STATE(14587)] = 905445, + [SMALL_STATE(14588)] = 905483, + [SMALL_STATE(14589)] = 905521, + [SMALL_STATE(14590)] = 905543, + [SMALL_STATE(14591)] = 905567, + [SMALL_STATE(14592)] = 905605, + [SMALL_STATE(14593)] = 905643, + [SMALL_STATE(14594)] = 905665, + [SMALL_STATE(14595)] = 905703, + [SMALL_STATE(14596)] = 905725, + [SMALL_STATE(14597)] = 905749, + [SMALL_STATE(14598)] = 905787, + [SMALL_STATE(14599)] = 905809, + [SMALL_STATE(14600)] = 905831, + [SMALL_STATE(14601)] = 905855, + [SMALL_STATE(14602)] = 905877, + [SMALL_STATE(14603)] = 905899, + [SMALL_STATE(14604)] = 905937, + [SMALL_STATE(14605)] = 905959, + [SMALL_STATE(14606)] = 905981, + [SMALL_STATE(14607)] = 906003, + [SMALL_STATE(14608)] = 906025, + [SMALL_STATE(14609)] = 906063, + [SMALL_STATE(14610)] = 906085, + [SMALL_STATE(14611)] = 906107, + [SMALL_STATE(14612)] = 906129, + [SMALL_STATE(14613)] = 906167, + [SMALL_STATE(14614)] = 906189, + [SMALL_STATE(14615)] = 906227, + [SMALL_STATE(14616)] = 906249, + [SMALL_STATE(14617)] = 906273, + [SMALL_STATE(14618)] = 906295, + [SMALL_STATE(14619)] = 906317, + [SMALL_STATE(14620)] = 906341, + [SMALL_STATE(14621)] = 906363, + [SMALL_STATE(14622)] = 906385, + [SMALL_STATE(14623)] = 906407, + [SMALL_STATE(14624)] = 906429, + [SMALL_STATE(14625)] = 906467, + [SMALL_STATE(14626)] = 906489, + [SMALL_STATE(14627)] = 906511, + [SMALL_STATE(14628)] = 906549, + [SMALL_STATE(14629)] = 906571, + [SMALL_STATE(14630)] = 906593, + [SMALL_STATE(14631)] = 906631, + [SMALL_STATE(14632)] = 906669, + [SMALL_STATE(14633)] = 906707, + [SMALL_STATE(14634)] = 906745, + [SMALL_STATE(14635)] = 906783, + [SMALL_STATE(14636)] = 906805, + [SMALL_STATE(14637)] = 906843, + [SMALL_STATE(14638)] = 906881, + [SMALL_STATE(14639)] = 906903, + [SMALL_STATE(14640)] = 906941, + [SMALL_STATE(14641)] = 906963, + [SMALL_STATE(14642)] = 906985, + [SMALL_STATE(14643)] = 907023, + [SMALL_STATE(14644)] = 907061, + [SMALL_STATE(14645)] = 907099, + [SMALL_STATE(14646)] = 907121, + [SMALL_STATE(14647)] = 907159, + [SMALL_STATE(14648)] = 907197, + [SMALL_STATE(14649)] = 907235, + [SMALL_STATE(14650)] = 907257, + [SMALL_STATE(14651)] = 907295, + [SMALL_STATE(14652)] = 907333, + [SMALL_STATE(14653)] = 907371, + [SMALL_STATE(14654)] = 907409, + [SMALL_STATE(14655)] = 907447, + [SMALL_STATE(14656)] = 907485, + [SMALL_STATE(14657)] = 907523, + [SMALL_STATE(14658)] = 907561, + [SMALL_STATE(14659)] = 907585, + [SMALL_STATE(14660)] = 907623, + [SMALL_STATE(14661)] = 907661, + [SMALL_STATE(14662)] = 907699, + [SMALL_STATE(14663)] = 907721, + [SMALL_STATE(14664)] = 907759, + [SMALL_STATE(14665)] = 907797, + [SMALL_STATE(14666)] = 907835, + [SMALL_STATE(14667)] = 907873, + [SMALL_STATE(14668)] = 907911, + [SMALL_STATE(14669)] = 907949, + [SMALL_STATE(14670)] = 907987, + [SMALL_STATE(14671)] = 908025, + [SMALL_STATE(14672)] = 908063, + [SMALL_STATE(14673)] = 908085, + [SMALL_STATE(14674)] = 908123, + [SMALL_STATE(14675)] = 908161, + [SMALL_STATE(14676)] = 908199, + [SMALL_STATE(14677)] = 908237, + [SMALL_STATE(14678)] = 908275, + [SMALL_STATE(14679)] = 908313, + [SMALL_STATE(14680)] = 908351, + [SMALL_STATE(14681)] = 908389, + [SMALL_STATE(14682)] = 908427, + [SMALL_STATE(14683)] = 908465, + [SMALL_STATE(14684)] = 908503, + [SMALL_STATE(14685)] = 908525, + [SMALL_STATE(14686)] = 908563, + [SMALL_STATE(14687)] = 908601, + [SMALL_STATE(14688)] = 908639, + [SMALL_STATE(14689)] = 908677, + [SMALL_STATE(14690)] = 908699, + [SMALL_STATE(14691)] = 908737, + [SMALL_STATE(14692)] = 908775, + [SMALL_STATE(14693)] = 908813, + [SMALL_STATE(14694)] = 908851, + [SMALL_STATE(14695)] = 908873, + [SMALL_STATE(14696)] = 908911, + [SMALL_STATE(14697)] = 908949, + [SMALL_STATE(14698)] = 908987, + [SMALL_STATE(14699)] = 909025, + [SMALL_STATE(14700)] = 909063, + [SMALL_STATE(14701)] = 909101, + [SMALL_STATE(14702)] = 909139, + [SMALL_STATE(14703)] = 909177, + [SMALL_STATE(14704)] = 909215, + [SMALL_STATE(14705)] = 909253, + [SMALL_STATE(14706)] = 909291, + [SMALL_STATE(14707)] = 909329, + [SMALL_STATE(14708)] = 909367, + [SMALL_STATE(14709)] = 909405, + [SMALL_STATE(14710)] = 909443, + [SMALL_STATE(14711)] = 909481, + [SMALL_STATE(14712)] = 909519, + [SMALL_STATE(14713)] = 909557, + [SMALL_STATE(14714)] = 909595, + [SMALL_STATE(14715)] = 909633, + [SMALL_STATE(14716)] = 909671, + [SMALL_STATE(14717)] = 909709, + [SMALL_STATE(14718)] = 909747, + [SMALL_STATE(14719)] = 909785, + [SMALL_STATE(14720)] = 909823, + [SMALL_STATE(14721)] = 909861, + [SMALL_STATE(14722)] = 909899, + [SMALL_STATE(14723)] = 909937, + [SMALL_STATE(14724)] = 909975, + [SMALL_STATE(14725)] = 910013, + [SMALL_STATE(14726)] = 910051, + [SMALL_STATE(14727)] = 910089, + [SMALL_STATE(14728)] = 910127, + [SMALL_STATE(14729)] = 910165, + [SMALL_STATE(14730)] = 910203, + [SMALL_STATE(14731)] = 910241, + [SMALL_STATE(14732)] = 910279, + [SMALL_STATE(14733)] = 910317, + [SMALL_STATE(14734)] = 910355, + [SMALL_STATE(14735)] = 910393, + [SMALL_STATE(14736)] = 910431, + [SMALL_STATE(14737)] = 910469, + [SMALL_STATE(14738)] = 910507, + [SMALL_STATE(14739)] = 910545, + [SMALL_STATE(14740)] = 910583, + [SMALL_STATE(14741)] = 910621, + [SMALL_STATE(14742)] = 910645, + [SMALL_STATE(14743)] = 910669, + [SMALL_STATE(14744)] = 910707, + [SMALL_STATE(14745)] = 910745, + [SMALL_STATE(14746)] = 910781, + [SMALL_STATE(14747)] = 910819, + [SMALL_STATE(14748)] = 910857, + [SMALL_STATE(14749)] = 910895, + [SMALL_STATE(14750)] = 910933, + [SMALL_STATE(14751)] = 910971, + [SMALL_STATE(14752)] = 911009, + [SMALL_STATE(14753)] = 911033, + [SMALL_STATE(14754)] = 911057, + [SMALL_STATE(14755)] = 911095, + [SMALL_STATE(14756)] = 911133, + [SMALL_STATE(14757)] = 911171, + [SMALL_STATE(14758)] = 911209, + [SMALL_STATE(14759)] = 911247, + [SMALL_STATE(14760)] = 911285, + [SMALL_STATE(14761)] = 911323, + [SMALL_STATE(14762)] = 911361, + [SMALL_STATE(14763)] = 911399, + [SMALL_STATE(14764)] = 911437, + [SMALL_STATE(14765)] = 911475, + [SMALL_STATE(14766)] = 911511, + [SMALL_STATE(14767)] = 911549, + [SMALL_STATE(14768)] = 911587, + [SMALL_STATE(14769)] = 911625, + [SMALL_STATE(14770)] = 911663, + [SMALL_STATE(14771)] = 911701, + [SMALL_STATE(14772)] = 911739, + [SMALL_STATE(14773)] = 911775, + [SMALL_STATE(14774)] = 911813, + [SMALL_STATE(14775)] = 911851, + [SMALL_STATE(14776)] = 911889, + [SMALL_STATE(14777)] = 911927, + [SMALL_STATE(14778)] = 911965, + [SMALL_STATE(14779)] = 912003, + [SMALL_STATE(14780)] = 912041, + [SMALL_STATE(14781)] = 912079, + [SMALL_STATE(14782)] = 912117, + [SMALL_STATE(14783)] = 912155, + [SMALL_STATE(14784)] = 912193, + [SMALL_STATE(14785)] = 912231, + [SMALL_STATE(14786)] = 912269, + [SMALL_STATE(14787)] = 912307, + [SMALL_STATE(14788)] = 912345, + [SMALL_STATE(14789)] = 912383, + [SMALL_STATE(14790)] = 912421, + [SMALL_STATE(14791)] = 912459, + [SMALL_STATE(14792)] = 912497, + [SMALL_STATE(14793)] = 912535, + [SMALL_STATE(14794)] = 912573, + [SMALL_STATE(14795)] = 912611, + [SMALL_STATE(14796)] = 912649, + [SMALL_STATE(14797)] = 912687, + [SMALL_STATE(14798)] = 912709, + [SMALL_STATE(14799)] = 912747, + [SMALL_STATE(14800)] = 912783, + [SMALL_STATE(14801)] = 912821, + [SMALL_STATE(14802)] = 912859, + [SMALL_STATE(14803)] = 912897, + [SMALL_STATE(14804)] = 912935, + [SMALL_STATE(14805)] = 912973, + [SMALL_STATE(14806)] = 912995, + [SMALL_STATE(14807)] = 913017, + [SMALL_STATE(14808)] = 913055, + [SMALL_STATE(14809)] = 913093, + [SMALL_STATE(14810)] = 913131, + [SMALL_STATE(14811)] = 913169, + [SMALL_STATE(14812)] = 913207, + [SMALL_STATE(14813)] = 913245, + [SMALL_STATE(14814)] = 913269, + [SMALL_STATE(14815)] = 913307, + [SMALL_STATE(14816)] = 913331, + [SMALL_STATE(14817)] = 913369, + [SMALL_STATE(14818)] = 913393, + [SMALL_STATE(14819)] = 913431, + [SMALL_STATE(14820)] = 913469, + [SMALL_STATE(14821)] = 913507, + [SMALL_STATE(14822)] = 913545, + [SMALL_STATE(14823)] = 913583, + [SMALL_STATE(14824)] = 913605, + [SMALL_STATE(14825)] = 913643, + [SMALL_STATE(14826)] = 913681, + [SMALL_STATE(14827)] = 913719, + [SMALL_STATE(14828)] = 913741, + [SMALL_STATE(14829)] = 913779, + [SMALL_STATE(14830)] = 913817, + [SMALL_STATE(14831)] = 913853, + [SMALL_STATE(14832)] = 913891, + [SMALL_STATE(14833)] = 913929, + [SMALL_STATE(14834)] = 913967, + [SMALL_STATE(14835)] = 914005, + [SMALL_STATE(14836)] = 914043, + [SMALL_STATE(14837)] = 914081, + [SMALL_STATE(14838)] = 914119, + [SMALL_STATE(14839)] = 914157, + [SMALL_STATE(14840)] = 914195, + [SMALL_STATE(14841)] = 914233, + [SMALL_STATE(14842)] = 914271, + [SMALL_STATE(14843)] = 914309, + [SMALL_STATE(14844)] = 914333, + [SMALL_STATE(14845)] = 914371, + [SMALL_STATE(14846)] = 914409, + [SMALL_STATE(14847)] = 914447, + [SMALL_STATE(14848)] = 914485, + [SMALL_STATE(14849)] = 914523, + [SMALL_STATE(14850)] = 914561, + [SMALL_STATE(14851)] = 914599, + [SMALL_STATE(14852)] = 914619, + [SMALL_STATE(14853)] = 914657, + [SMALL_STATE(14854)] = 914695, + [SMALL_STATE(14855)] = 914733, + [SMALL_STATE(14856)] = 914771, + [SMALL_STATE(14857)] = 914809, + [SMALL_STATE(14858)] = 914847, + [SMALL_STATE(14859)] = 914885, + [SMALL_STATE(14860)] = 914905, + [SMALL_STATE(14861)] = 914943, + [SMALL_STATE(14862)] = 914981, + [SMALL_STATE(14863)] = 915019, + [SMALL_STATE(14864)] = 915057, + [SMALL_STATE(14865)] = 915095, + [SMALL_STATE(14866)] = 915133, + [SMALL_STATE(14867)] = 915171, + [SMALL_STATE(14868)] = 915209, + [SMALL_STATE(14869)] = 915247, + [SMALL_STATE(14870)] = 915285, + [SMALL_STATE(14871)] = 915323, + [SMALL_STATE(14872)] = 915361, + [SMALL_STATE(14873)] = 915399, + [SMALL_STATE(14874)] = 915437, + [SMALL_STATE(14875)] = 915461, + [SMALL_STATE(14876)] = 915485, + [SMALL_STATE(14877)] = 915509, + [SMALL_STATE(14878)] = 915533, + [SMALL_STATE(14879)] = 915557, + [SMALL_STATE(14880)] = 915595, + [SMALL_STATE(14881)] = 915633, + [SMALL_STATE(14882)] = 915657, + [SMALL_STATE(14883)] = 915695, + [SMALL_STATE(14884)] = 915719, + [SMALL_STATE(14885)] = 915757, + [SMALL_STATE(14886)] = 915795, + [SMALL_STATE(14887)] = 915833, + [SMALL_STATE(14888)] = 915871, + [SMALL_STATE(14889)] = 915895, + [SMALL_STATE(14890)] = 915933, + [SMALL_STATE(14891)] = 915971, + [SMALL_STATE(14892)] = 916009, + [SMALL_STATE(14893)] = 916047, + [SMALL_STATE(14894)] = 916073, + [SMALL_STATE(14895)] = 916111, + [SMALL_STATE(14896)] = 916149, + [SMALL_STATE(14897)] = 916173, + [SMALL_STATE(14898)] = 916211, + [SMALL_STATE(14899)] = 916249, + [SMALL_STATE(14900)] = 916287, + [SMALL_STATE(14901)] = 916325, + [SMALL_STATE(14902)] = 916363, + [SMALL_STATE(14903)] = 916401, + [SMALL_STATE(14904)] = 916439, + [SMALL_STATE(14905)] = 916463, + [SMALL_STATE(14906)] = 916501, + [SMALL_STATE(14907)] = 916539, + [SMALL_STATE(14908)] = 916577, + [SMALL_STATE(14909)] = 916615, + [SMALL_STATE(14910)] = 916653, + [SMALL_STATE(14911)] = 916691, + [SMALL_STATE(14912)] = 916729, + [SMALL_STATE(14913)] = 916767, + [SMALL_STATE(14914)] = 916805, + [SMALL_STATE(14915)] = 916843, + [SMALL_STATE(14916)] = 916881, + [SMALL_STATE(14917)] = 916919, + [SMALL_STATE(14918)] = 916957, + [SMALL_STATE(14919)] = 916995, + [SMALL_STATE(14920)] = 917033, + [SMALL_STATE(14921)] = 917071, + [SMALL_STATE(14922)] = 917109, + [SMALL_STATE(14923)] = 917147, + [SMALL_STATE(14924)] = 917185, + [SMALL_STATE(14925)] = 917223, + [SMALL_STATE(14926)] = 917261, + [SMALL_STATE(14927)] = 917299, + [SMALL_STATE(14928)] = 917337, + [SMALL_STATE(14929)] = 917375, + [SMALL_STATE(14930)] = 917413, + [SMALL_STATE(14931)] = 917451, + [SMALL_STATE(14932)] = 917487, + [SMALL_STATE(14933)] = 917511, + [SMALL_STATE(14934)] = 917535, + [SMALL_STATE(14935)] = 917559, + [SMALL_STATE(14936)] = 917597, + [SMALL_STATE(14937)] = 917635, + [SMALL_STATE(14938)] = 917673, + [SMALL_STATE(14939)] = 917697, + [SMALL_STATE(14940)] = 917721, + [SMALL_STATE(14941)] = 917759, + [SMALL_STATE(14942)] = 917797, + [SMALL_STATE(14943)] = 917821, + [SMALL_STATE(14944)] = 917845, + [SMALL_STATE(14945)] = 917883, + [SMALL_STATE(14946)] = 917921, + [SMALL_STATE(14947)] = 917959, + [SMALL_STATE(14948)] = 917997, + [SMALL_STATE(14949)] = 918021, + [SMALL_STATE(14950)] = 918045, + [SMALL_STATE(14951)] = 918069, + [SMALL_STATE(14952)] = 918093, + [SMALL_STATE(14953)] = 918131, + [SMALL_STATE(14954)] = 918169, + [SMALL_STATE(14955)] = 918207, + [SMALL_STATE(14956)] = 918245, + [SMALL_STATE(14957)] = 918283, + [SMALL_STATE(14958)] = 918307, + [SMALL_STATE(14959)] = 918331, + [SMALL_STATE(14960)] = 918355, + [SMALL_STATE(14961)] = 918379, + [SMALL_STATE(14962)] = 918417, + [SMALL_STATE(14963)] = 918455, + [SMALL_STATE(14964)] = 918493, + [SMALL_STATE(14965)] = 918531, + [SMALL_STATE(14966)] = 918569, + [SMALL_STATE(14967)] = 918605, + [SMALL_STATE(14968)] = 918641, + [SMALL_STATE(14969)] = 918679, + [SMALL_STATE(14970)] = 918715, + [SMALL_STATE(14971)] = 918751, + [SMALL_STATE(14972)] = 918789, + [SMALL_STATE(14973)] = 918827, + [SMALL_STATE(14974)] = 918846, + [SMALL_STATE(14975)] = 918869, + [SMALL_STATE(14976)] = 918890, + [SMALL_STATE(14977)] = 918911, + [SMALL_STATE(14978)] = 918932, + [SMALL_STATE(14979)] = 918953, + [SMALL_STATE(14980)] = 918976, + [SMALL_STATE(14981)] = 918999, + [SMALL_STATE(14982)] = 919022, + [SMALL_STATE(14983)] = 919043, + [SMALL_STATE(14984)] = 919066, + [SMALL_STATE(14985)] = 919087, + [SMALL_STATE(14986)] = 919110, + [SMALL_STATE(14987)] = 919131, + [SMALL_STATE(14988)] = 919150, + [SMALL_STATE(14989)] = 919171, + [SMALL_STATE(14990)] = 919192, + [SMALL_STATE(14991)] = 919213, + [SMALL_STATE(14992)] = 919236, + [SMALL_STATE(14993)] = 919257, + [SMALL_STATE(14994)] = 919280, + [SMALL_STATE(14995)] = 919301, + [SMALL_STATE(14996)] = 919322, + [SMALL_STATE(14997)] = 919343, + [SMALL_STATE(14998)] = 919362, + [SMALL_STATE(14999)] = 919381, + [SMALL_STATE(15000)] = 919402, + [SMALL_STATE(15001)] = 919421, + [SMALL_STATE(15002)] = 919440, + [SMALL_STATE(15003)] = 919461, + [SMALL_STATE(15004)] = 919480, + [SMALL_STATE(15005)] = 919499, + [SMALL_STATE(15006)] = 919518, + [SMALL_STATE(15007)] = 919539, + [SMALL_STATE(15008)] = 919558, + [SMALL_STATE(15009)] = 919577, + [SMALL_STATE(15010)] = 919596, + [SMALL_STATE(15011)] = 919615, + [SMALL_STATE(15012)] = 919634, + [SMALL_STATE(15013)] = 919653, + [SMALL_STATE(15014)] = 919676, + [SMALL_STATE(15015)] = 919697, + [SMALL_STATE(15016)] = 919716, + [SMALL_STATE(15017)] = 919735, + [SMALL_STATE(15018)] = 919756, + [SMALL_STATE(15019)] = 919775, + [SMALL_STATE(15020)] = 919794, + [SMALL_STATE(15021)] = 919813, + [SMALL_STATE(15022)] = 919832, + [SMALL_STATE(15023)] = 919851, + [SMALL_STATE(15024)] = 919870, + [SMALL_STATE(15025)] = 919889, + [SMALL_STATE(15026)] = 919908, + [SMALL_STATE(15027)] = 919927, + [SMALL_STATE(15028)] = 919948, + [SMALL_STATE(15029)] = 919967, + [SMALL_STATE(15030)] = 919986, + [SMALL_STATE(15031)] = 920005, + [SMALL_STATE(15032)] = 920026, + [SMALL_STATE(15033)] = 920045, + [SMALL_STATE(15034)] = 920068, + [SMALL_STATE(15035)] = 920089, + [SMALL_STATE(15036)] = 920112, + [SMALL_STATE(15037)] = 920133, + [SMALL_STATE(15038)] = 920154, + [SMALL_STATE(15039)] = 920177, + [SMALL_STATE(15040)] = 920200, + [SMALL_STATE(15041)] = 920223, + [SMALL_STATE(15042)] = 920246, + [SMALL_STATE(15043)] = 920269, + [SMALL_STATE(15044)] = 920290, + [SMALL_STATE(15045)] = 920311, + [SMALL_STATE(15046)] = 920334, + [SMALL_STATE(15047)] = 920355, + [SMALL_STATE(15048)] = 920376, + [SMALL_STATE(15049)] = 920397, + [SMALL_STATE(15050)] = 920418, + [SMALL_STATE(15051)] = 920441, + [SMALL_STATE(15052)] = 920462, + [SMALL_STATE(15053)] = 920483, + [SMALL_STATE(15054)] = 920506, + [SMALL_STATE(15055)] = 920527, + [SMALL_STATE(15056)] = 920568, + [SMALL_STATE(15057)] = 920591, + [SMALL_STATE(15058)] = 920612, + [SMALL_STATE(15059)] = 920633, + [SMALL_STATE(15060)] = 920656, + [SMALL_STATE(15061)] = 920677, + [SMALL_STATE(15062)] = 920700, + [SMALL_STATE(15063)] = 920723, + [SMALL_STATE(15064)] = 920746, + [SMALL_STATE(15065)] = 920767, + [SMALL_STATE(15066)] = 920788, + [SMALL_STATE(15067)] = 920811, + [SMALL_STATE(15068)] = 920834, + [SMALL_STATE(15069)] = 920857, + [SMALL_STATE(15070)] = 920880, + [SMALL_STATE(15071)] = 920903, + [SMALL_STATE(15072)] = 920926, + [SMALL_STATE(15073)] = 920949, + [SMALL_STATE(15074)] = 920972, + [SMALL_STATE(15075)] = 920995, + [SMALL_STATE(15076)] = 921016, + [SMALL_STATE(15077)] = 921039, + [SMALL_STATE(15078)] = 921062, + [SMALL_STATE(15079)] = 921083, + [SMALL_STATE(15080)] = 921102, + [SMALL_STATE(15081)] = 921125, + [SMALL_STATE(15082)] = 921148, + [SMALL_STATE(15083)] = 921171, + [SMALL_STATE(15084)] = 921190, + [SMALL_STATE(15085)] = 921213, + [SMALL_STATE(15086)] = 921232, + [SMALL_STATE(15087)] = 921273, + [SMALL_STATE(15088)] = 921294, + [SMALL_STATE(15089)] = 921317, + [SMALL_STATE(15090)] = 921336, + [SMALL_STATE(15091)] = 921357, + [SMALL_STATE(15092)] = 921378, + [SMALL_STATE(15093)] = 921399, + [SMALL_STATE(15094)] = 921420, + [SMALL_STATE(15095)] = 921441, + [SMALL_STATE(15096)] = 921464, + [SMALL_STATE(15097)] = 921487, + [SMALL_STATE(15098)] = 921506, + [SMALL_STATE(15099)] = 921529, + [SMALL_STATE(15100)] = 921550, + [SMALL_STATE(15101)] = 921571, + [SMALL_STATE(15102)] = 921592, + [SMALL_STATE(15103)] = 921613, + [SMALL_STATE(15104)] = 921634, + [SMALL_STATE(15105)] = 921655, + [SMALL_STATE(15106)] = 921674, + [SMALL_STATE(15107)] = 921697, + [SMALL_STATE(15108)] = 921718, + [SMALL_STATE(15109)] = 921737, + [SMALL_STATE(15110)] = 921778, + [SMALL_STATE(15111)] = 921801, + [SMALL_STATE(15112)] = 921822, + [SMALL_STATE(15113)] = 921843, + [SMALL_STATE(15114)] = 921866, + [SMALL_STATE(15115)] = 921887, + [SMALL_STATE(15116)] = 921908, + [SMALL_STATE(15117)] = 921929, + [SMALL_STATE(15118)] = 921950, + [SMALL_STATE(15119)] = 921971, + [SMALL_STATE(15120)] = 921992, + [SMALL_STATE(15121)] = 922013, + [SMALL_STATE(15122)] = 922034, + [SMALL_STATE(15123)] = 922055, + [SMALL_STATE(15124)] = 922074, + [SMALL_STATE(15125)] = 922095, + [SMALL_STATE(15126)] = 922116, + [SMALL_STATE(15127)] = 922137, + [SMALL_STATE(15128)] = 922160, + [SMALL_STATE(15129)] = 922183, + [SMALL_STATE(15130)] = 922204, + [SMALL_STATE(15131)] = 922227, + [SMALL_STATE(15132)] = 922248, + [SMALL_STATE(15133)] = 922268, + [SMALL_STATE(15134)] = 922288, + [SMALL_STATE(15135)] = 922310, + [SMALL_STATE(15136)] = 922330, + [SMALL_STATE(15137)] = 922368, + [SMALL_STATE(15138)] = 922388, + [SMALL_STATE(15139)] = 922408, + [SMALL_STATE(15140)] = 922426, + [SMALL_STATE(15141)] = 922446, + [SMALL_STATE(15142)] = 922468, + [SMALL_STATE(15143)] = 922490, + [SMALL_STATE(15144)] = 922510, + [SMALL_STATE(15145)] = 922530, + [SMALL_STATE(15146)] = 922568, + [SMALL_STATE(15147)] = 922590, + [SMALL_STATE(15148)] = 922628, + [SMALL_STATE(15149)] = 922646, + [SMALL_STATE(15150)] = 922666, + [SMALL_STATE(15151)] = 922686, + [SMALL_STATE(15152)] = 922706, + [SMALL_STATE(15153)] = 922732, + [SMALL_STATE(15154)] = 922758, + [SMALL_STATE(15155)] = 922778, + [SMALL_STATE(15156)] = 922798, + [SMALL_STATE(15157)] = 922818, + [SMALL_STATE(15158)] = 922856, + [SMALL_STATE(15159)] = 922874, + [SMALL_STATE(15160)] = 922912, + [SMALL_STATE(15161)] = 922932, + [SMALL_STATE(15162)] = 922950, + [SMALL_STATE(15163)] = 922988, + [SMALL_STATE(15164)] = 923008, + [SMALL_STATE(15165)] = 923028, + [SMALL_STATE(15166)] = 923048, + [SMALL_STATE(15167)] = 923070, + [SMALL_STATE(15168)] = 923090, + [SMALL_STATE(15169)] = 923108, + [SMALL_STATE(15170)] = 923146, + [SMALL_STATE(15171)] = 923164, + [SMALL_STATE(15172)] = 923184, + [SMALL_STATE(15173)] = 923222, + [SMALL_STATE(15174)] = 923242, + [SMALL_STATE(15175)] = 923260, + [SMALL_STATE(15176)] = 923280, + [SMALL_STATE(15177)] = 923318, + [SMALL_STATE(15178)] = 923338, + [SMALL_STATE(15179)] = 923358, + [SMALL_STATE(15180)] = 923396, + [SMALL_STATE(15181)] = 923414, + [SMALL_STATE(15182)] = 923434, + [SMALL_STATE(15183)] = 923454, + [SMALL_STATE(15184)] = 923474, + [SMALL_STATE(15185)] = 923494, + [SMALL_STATE(15186)] = 923514, + [SMALL_STATE(15187)] = 923534, + [SMALL_STATE(15188)] = 923554, + [SMALL_STATE(15189)] = 923574, + [SMALL_STATE(15190)] = 923594, + [SMALL_STATE(15191)] = 923614, + [SMALL_STATE(15192)] = 923634, + [SMALL_STATE(15193)] = 923656, + [SMALL_STATE(15194)] = 923676, + [SMALL_STATE(15195)] = 923696, + [SMALL_STATE(15196)] = 923734, + [SMALL_STATE(15197)] = 923754, + [SMALL_STATE(15198)] = 923776, + [SMALL_STATE(15199)] = 923796, + [SMALL_STATE(15200)] = 923816, + [SMALL_STATE(15201)] = 923854, + [SMALL_STATE(15202)] = 923874, + [SMALL_STATE(15203)] = 923912, + [SMALL_STATE(15204)] = 923934, + [SMALL_STATE(15205)] = 923956, + [SMALL_STATE(15206)] = 923976, + [SMALL_STATE(15207)] = 924014, + [SMALL_STATE(15208)] = 924052, + [SMALL_STATE(15209)] = 924074, + [SMALL_STATE(15210)] = 924092, + [SMALL_STATE(15211)] = 924112, + [SMALL_STATE(15212)] = 924132, + [SMALL_STATE(15213)] = 924152, + [SMALL_STATE(15214)] = 924172, + [SMALL_STATE(15215)] = 924210, + [SMALL_STATE(15216)] = 924228, + [SMALL_STATE(15217)] = 924248, + [SMALL_STATE(15218)] = 924270, + [SMALL_STATE(15219)] = 924290, + [SMALL_STATE(15220)] = 924308, + [SMALL_STATE(15221)] = 924326, + [SMALL_STATE(15222)] = 924344, + [SMALL_STATE(15223)] = 924366, + [SMALL_STATE(15224)] = 924388, + [SMALL_STATE(15225)] = 924406, + [SMALL_STATE(15226)] = 924424, + [SMALL_STATE(15227)] = 924444, + [SMALL_STATE(15228)] = 924462, + [SMALL_STATE(15229)] = 924480, + [SMALL_STATE(15230)] = 924498, + [SMALL_STATE(15231)] = 924516, + [SMALL_STATE(15232)] = 924534, + [SMALL_STATE(15233)] = 924572, + [SMALL_STATE(15234)] = 924592, + [SMALL_STATE(15235)] = 924610, + [SMALL_STATE(15236)] = 924648, + [SMALL_STATE(15237)] = 924670, + [SMALL_STATE(15238)] = 924690, + [SMALL_STATE(15239)] = 924708, + [SMALL_STATE(15240)] = 924726, + [SMALL_STATE(15241)] = 924746, + [SMALL_STATE(15242)] = 924784, + [SMALL_STATE(15243)] = 924802, + [SMALL_STATE(15244)] = 924820, + [SMALL_STATE(15245)] = 924840, + [SMALL_STATE(15246)] = 924858, + [SMALL_STATE(15247)] = 924878, + [SMALL_STATE(15248)] = 924916, + [SMALL_STATE(15249)] = 924954, + [SMALL_STATE(15250)] = 924974, + [SMALL_STATE(15251)] = 924994, + [SMALL_STATE(15252)] = 925012, + [SMALL_STATE(15253)] = 925030, + [SMALL_STATE(15254)] = 925050, + [SMALL_STATE(15255)] = 925088, + [SMALL_STATE(15256)] = 925108, + [SMALL_STATE(15257)] = 925128, + [SMALL_STATE(15258)] = 925150, + [SMALL_STATE(15259)] = 925172, + [SMALL_STATE(15260)] = 925210, + [SMALL_STATE(15261)] = 925248, + [SMALL_STATE(15262)] = 925266, + [SMALL_STATE(15263)] = 925304, + [SMALL_STATE(15264)] = 925342, + [SMALL_STATE(15265)] = 925360, + [SMALL_STATE(15266)] = 925380, + [SMALL_STATE(15267)] = 925400, + [SMALL_STATE(15268)] = 925418, + [SMALL_STATE(15269)] = 925436, + [SMALL_STATE(15270)] = 925474, + [SMALL_STATE(15271)] = 925492, + [SMALL_STATE(15272)] = 925512, + [SMALL_STATE(15273)] = 925550, + [SMALL_STATE(15274)] = 925568, + [SMALL_STATE(15275)] = 925590, + [SMALL_STATE(15276)] = 925610, + [SMALL_STATE(15277)] = 925648, + [SMALL_STATE(15278)] = 925670, + [SMALL_STATE(15279)] = 925692, + [SMALL_STATE(15280)] = 925730, + [SMALL_STATE(15281)] = 925752, + [SMALL_STATE(15282)] = 925774, + [SMALL_STATE(15283)] = 925792, + [SMALL_STATE(15284)] = 925810, + [SMALL_STATE(15285)] = 925848, + [SMALL_STATE(15286)] = 925866, + [SMALL_STATE(15287)] = 925886, + [SMALL_STATE(15288)] = 925908, + [SMALL_STATE(15289)] = 925928, + [SMALL_STATE(15290)] = 925948, + [SMALL_STATE(15291)] = 925968, + [SMALL_STATE(15292)] = 925990, + [SMALL_STATE(15293)] = 926028, + [SMALL_STATE(15294)] = 926050, + [SMALL_STATE(15295)] = 926088, + [SMALL_STATE(15296)] = 926126, + [SMALL_STATE(15297)] = 926146, + [SMALL_STATE(15298)] = 926164, + [SMALL_STATE(15299)] = 926202, + [SMALL_STATE(15300)] = 926224, + [SMALL_STATE(15301)] = 926244, + [SMALL_STATE(15302)] = 926282, + [SMALL_STATE(15303)] = 926302, + [SMALL_STATE(15304)] = 926322, + [SMALL_STATE(15305)] = 926340, + [SMALL_STATE(15306)] = 926358, + [SMALL_STATE(15307)] = 926376, + [SMALL_STATE(15308)] = 926396, + [SMALL_STATE(15309)] = 926434, + [SMALL_STATE(15310)] = 926454, + [SMALL_STATE(15311)] = 926472, + [SMALL_STATE(15312)] = 926494, + [SMALL_STATE(15313)] = 926516, + [SMALL_STATE(15314)] = 926554, + [SMALL_STATE(15315)] = 926588, + [SMALL_STATE(15316)] = 926626, + [SMALL_STATE(15317)] = 926644, + [SMALL_STATE(15318)] = 926682, + [SMALL_STATE(15319)] = 926702, + [SMALL_STATE(15320)] = 926720, + [SMALL_STATE(15321)] = 926738, + [SMALL_STATE(15322)] = 926756, + [SMALL_STATE(15323)] = 926774, + [SMALL_STATE(15324)] = 926792, + [SMALL_STATE(15325)] = 926830, + [SMALL_STATE(15326)] = 926868, + [SMALL_STATE(15327)] = 926886, + [SMALL_STATE(15328)] = 926908, + [SMALL_STATE(15329)] = 926926, + [SMALL_STATE(15330)] = 926952, + [SMALL_STATE(15331)] = 926980, + [SMALL_STATE(15332)] = 926998, + [SMALL_STATE(15333)] = 927018, + [SMALL_STATE(15334)] = 927038, + [SMALL_STATE(15335)] = 927056, + [SMALL_STATE(15336)] = 927094, + [SMALL_STATE(15337)] = 927132, + [SMALL_STATE(15338)] = 927150, + [SMALL_STATE(15339)] = 927170, + [SMALL_STATE(15340)] = 927188, + [SMALL_STATE(15341)] = 927206, + [SMALL_STATE(15342)] = 927226, + [SMALL_STATE(15343)] = 927246, + [SMALL_STATE(15344)] = 927284, + [SMALL_STATE(15345)] = 927302, + [SMALL_STATE(15346)] = 927340, + [SMALL_STATE(15347)] = 927358, + [SMALL_STATE(15348)] = 927376, + [SMALL_STATE(15349)] = 927394, + [SMALL_STATE(15350)] = 927414, + [SMALL_STATE(15351)] = 927452, + [SMALL_STATE(15352)] = 927490, + [SMALL_STATE(15353)] = 927508, + [SMALL_STATE(15354)] = 927546, + [SMALL_STATE(15355)] = 927584, + [SMALL_STATE(15356)] = 927606, + [SMALL_STATE(15357)] = 927626, + [SMALL_STATE(15358)] = 927644, + [SMALL_STATE(15359)] = 927664, + [SMALL_STATE(15360)] = 927702, + [SMALL_STATE(15361)] = 927740, + [SMALL_STATE(15362)] = 927758, + [SMALL_STATE(15363)] = 927796, + [SMALL_STATE(15364)] = 927816, + [SMALL_STATE(15365)] = 927834, + [SMALL_STATE(15366)] = 927852, + [SMALL_STATE(15367)] = 927872, + [SMALL_STATE(15368)] = 927892, + [SMALL_STATE(15369)] = 927930, + [SMALL_STATE(15370)] = 927948, + [SMALL_STATE(15371)] = 927986, + [SMALL_STATE(15372)] = 928024, + [SMALL_STATE(15373)] = 928044, + [SMALL_STATE(15374)] = 928064, + [SMALL_STATE(15375)] = 928102, + [SMALL_STATE(15376)] = 928124, + [SMALL_STATE(15377)] = 928146, + [SMALL_STATE(15378)] = 928168, + [SMALL_STATE(15379)] = 928188, + [SMALL_STATE(15380)] = 928208, + [SMALL_STATE(15381)] = 928226, + [SMALL_STATE(15382)] = 928248, + [SMALL_STATE(15383)] = 928270, + [SMALL_STATE(15384)] = 928292, + [SMALL_STATE(15385)] = 928310, + [SMALL_STATE(15386)] = 928348, + [SMALL_STATE(15387)] = 928368, + [SMALL_STATE(15388)] = 928406, + [SMALL_STATE(15389)] = 928426, + [SMALL_STATE(15390)] = 928446, + [SMALL_STATE(15391)] = 928464, + [SMALL_STATE(15392)] = 928482, + [SMALL_STATE(15393)] = 928520, + [SMALL_STATE(15394)] = 928540, + [SMALL_STATE(15395)] = 928558, + [SMALL_STATE(15396)] = 928596, + [SMALL_STATE(15397)] = 928616, + [SMALL_STATE(15398)] = 928634, + [SMALL_STATE(15399)] = 928662, + [SMALL_STATE(15400)] = 928682, + [SMALL_STATE(15401)] = 928702, + [SMALL_STATE(15402)] = 928740, + [SMALL_STATE(15403)] = 928758, + [SMALL_STATE(15404)] = 928776, + [SMALL_STATE(15405)] = 928796, + [SMALL_STATE(15406)] = 928814, + [SMALL_STATE(15407)] = 928834, + [SMALL_STATE(15408)] = 928854, + [SMALL_STATE(15409)] = 928892, + [SMALL_STATE(15410)] = 928930, + [SMALL_STATE(15411)] = 928950, + [SMALL_STATE(15412)] = 928988, + [SMALL_STATE(15413)] = 929008, + [SMALL_STATE(15414)] = 929046, + [SMALL_STATE(15415)] = 929064, + [SMALL_STATE(15416)] = 929102, + [SMALL_STATE(15417)] = 929122, + [SMALL_STATE(15418)] = 929156, + [SMALL_STATE(15419)] = 929194, + [SMALL_STATE(15420)] = 929214, + [SMALL_STATE(15421)] = 929234, + [SMALL_STATE(15422)] = 929256, + [SMALL_STATE(15423)] = 929282, + [SMALL_STATE(15424)] = 929300, + [SMALL_STATE(15425)] = 929338, + [SMALL_STATE(15426)] = 929356, + [SMALL_STATE(15427)] = 929374, + [SMALL_STATE(15428)] = 929392, + [SMALL_STATE(15429)] = 929430, + [SMALL_STATE(15430)] = 929468, + [SMALL_STATE(15431)] = 929506, + [SMALL_STATE(15432)] = 929544, + [SMALL_STATE(15433)] = 929582, + [SMALL_STATE(15434)] = 929600, + [SMALL_STATE(15435)] = 929622, + [SMALL_STATE(15436)] = 929640, + [SMALL_STATE(15437)] = 929678, + [SMALL_STATE(15438)] = 929698, + [SMALL_STATE(15439)] = 929716, + [SMALL_STATE(15440)] = 929754, + [SMALL_STATE(15441)] = 929774, + [SMALL_STATE(15442)] = 929792, + [SMALL_STATE(15443)] = 929830, + [SMALL_STATE(15444)] = 929850, + [SMALL_STATE(15445)] = 929868, + [SMALL_STATE(15446)] = 929906, + [SMALL_STATE(15447)] = 929924, + [SMALL_STATE(15448)] = 929962, + [SMALL_STATE(15449)] = 929982, + [SMALL_STATE(15450)] = 930020, + [SMALL_STATE(15451)] = 930040, + [SMALL_STATE(15452)] = 930060, + [SMALL_STATE(15453)] = 930080, + [SMALL_STATE(15454)] = 930098, + [SMALL_STATE(15455)] = 930116, + [SMALL_STATE(15456)] = 930136, + [SMALL_STATE(15457)] = 930174, + [SMALL_STATE(15458)] = 930196, + [SMALL_STATE(15459)] = 930214, + [SMALL_STATE(15460)] = 930232, + [SMALL_STATE(15461)] = 930250, + [SMALL_STATE(15462)] = 930268, + [SMALL_STATE(15463)] = 930306, + [SMALL_STATE(15464)] = 930324, + [SMALL_STATE(15465)] = 930342, + [SMALL_STATE(15466)] = 930360, + [SMALL_STATE(15467)] = 930380, + [SMALL_STATE(15468)] = 930400, + [SMALL_STATE(15469)] = 930418, + [SMALL_STATE(15470)] = 930436, + [SMALL_STATE(15471)] = 930454, + [SMALL_STATE(15472)] = 930474, + [SMALL_STATE(15473)] = 930492, + [SMALL_STATE(15474)] = 930510, + [SMALL_STATE(15475)] = 930528, + [SMALL_STATE(15476)] = 930546, + [SMALL_STATE(15477)] = 930584, + [SMALL_STATE(15478)] = 930602, + [SMALL_STATE(15479)] = 930640, + [SMALL_STATE(15480)] = 930658, + [SMALL_STATE(15481)] = 930676, + [SMALL_STATE(15482)] = 930694, + [SMALL_STATE(15483)] = 930712, + [SMALL_STATE(15484)] = 930732, + [SMALL_STATE(15485)] = 930752, + [SMALL_STATE(15486)] = 930773, + [SMALL_STATE(15487)] = 930790, + [SMALL_STATE(15488)] = 930821, + [SMALL_STATE(15489)] = 930852, + [SMALL_STATE(15490)] = 930883, + [SMALL_STATE(15491)] = 930914, + [SMALL_STATE(15492)] = 930945, + [SMALL_STATE(15493)] = 930976, + [SMALL_STATE(15494)] = 931007, + [SMALL_STATE(15495)] = 931038, + [SMALL_STATE(15496)] = 931069, + [SMALL_STATE(15497)] = 931100, + [SMALL_STATE(15498)] = 931131, + [SMALL_STATE(15499)] = 931162, + [SMALL_STATE(15500)] = 931193, + [SMALL_STATE(15501)] = 931224, + [SMALL_STATE(15502)] = 931255, + [SMALL_STATE(15503)] = 931286, + [SMALL_STATE(15504)] = 931317, + [SMALL_STATE(15505)] = 931348, + [SMALL_STATE(15506)] = 931379, + [SMALL_STATE(15507)] = 931410, + [SMALL_STATE(15508)] = 931441, + [SMALL_STATE(15509)] = 931472, + [SMALL_STATE(15510)] = 931503, + [SMALL_STATE(15511)] = 931534, + [SMALL_STATE(15512)] = 931565, + [SMALL_STATE(15513)] = 931596, + [SMALL_STATE(15514)] = 931627, + [SMALL_STATE(15515)] = 931658, + [SMALL_STATE(15516)] = 931679, + [SMALL_STATE(15517)] = 931710, + [SMALL_STATE(15518)] = 931741, + [SMALL_STATE(15519)] = 931772, + [SMALL_STATE(15520)] = 931803, + [SMALL_STATE(15521)] = 931834, + [SMALL_STATE(15522)] = 931865, + [SMALL_STATE(15523)] = 931896, + [SMALL_STATE(15524)] = 931927, + [SMALL_STATE(15525)] = 931946, + [SMALL_STATE(15526)] = 931977, + [SMALL_STATE(15527)] = 932012, + [SMALL_STATE(15528)] = 932043, + [SMALL_STATE(15529)] = 932074, + [SMALL_STATE(15530)] = 932105, + [SMALL_STATE(15531)] = 932136, + [SMALL_STATE(15532)] = 932157, + [SMALL_STATE(15533)] = 932178, + [SMALL_STATE(15534)] = 932195, + [SMALL_STATE(15535)] = 932226, + [SMALL_STATE(15536)] = 932257, + [SMALL_STATE(15537)] = 932288, + [SMALL_STATE(15538)] = 932319, + [SMALL_STATE(15539)] = 932350, + [SMALL_STATE(15540)] = 932381, + [SMALL_STATE(15541)] = 932398, + [SMALL_STATE(15542)] = 932429, + [SMALL_STATE(15543)] = 932460, + [SMALL_STATE(15544)] = 932489, + [SMALL_STATE(15545)] = 932520, + [SMALL_STATE(15546)] = 932541, + [SMALL_STATE(15547)] = 932562, + [SMALL_STATE(15548)] = 932593, + [SMALL_STATE(15549)] = 932624, + [SMALL_STATE(15550)] = 932641, + [SMALL_STATE(15551)] = 932672, + [SMALL_STATE(15552)] = 932703, + [SMALL_STATE(15553)] = 932734, + [SMALL_STATE(15554)] = 932755, + [SMALL_STATE(15555)] = 932776, + [SMALL_STATE(15556)] = 932807, + [SMALL_STATE(15557)] = 932838, + [SMALL_STATE(15558)] = 932869, + [SMALL_STATE(15559)] = 932900, + [SMALL_STATE(15560)] = 932931, + [SMALL_STATE(15561)] = 932962, + [SMALL_STATE(15562)] = 932993, + [SMALL_STATE(15563)] = 933024, + [SMALL_STATE(15564)] = 933055, + [SMALL_STATE(15565)] = 933086, + [SMALL_STATE(15566)] = 933117, + [SMALL_STATE(15567)] = 933148, + [SMALL_STATE(15568)] = 933179, + [SMALL_STATE(15569)] = 933210, + [SMALL_STATE(15570)] = 933241, + [SMALL_STATE(15571)] = 933260, + [SMALL_STATE(15572)] = 933281, + [SMALL_STATE(15573)] = 933312, + [SMALL_STATE(15574)] = 933343, + [SMALL_STATE(15575)] = 933360, + [SMALL_STATE(15576)] = 933391, + [SMALL_STATE(15577)] = 933422, + [SMALL_STATE(15578)] = 933453, + [SMALL_STATE(15579)] = 933470, + [SMALL_STATE(15580)] = 933501, + [SMALL_STATE(15581)] = 933518, + [SMALL_STATE(15582)] = 933537, + [SMALL_STATE(15583)] = 933568, + [SMALL_STATE(15584)] = 933587, + [SMALL_STATE(15585)] = 933618, + [SMALL_STATE(15586)] = 933649, + [SMALL_STATE(15587)] = 933680, + [SMALL_STATE(15588)] = 933697, + [SMALL_STATE(15589)] = 933728, + [SMALL_STATE(15590)] = 933759, + [SMALL_STATE(15591)] = 933790, + [SMALL_STATE(15592)] = 933807, + [SMALL_STATE(15593)] = 933824, + [SMALL_STATE(15594)] = 933843, + [SMALL_STATE(15595)] = 933874, + [SMALL_STATE(15596)] = 933905, + [SMALL_STATE(15597)] = 933936, + [SMALL_STATE(15598)] = 933957, + [SMALL_STATE(15599)] = 933978, + [SMALL_STATE(15600)] = 934009, + [SMALL_STATE(15601)] = 934026, + [SMALL_STATE(15602)] = 934057, + [SMALL_STATE(15603)] = 934078, + [SMALL_STATE(15604)] = 934099, + [SMALL_STATE(15605)] = 934130, + [SMALL_STATE(15606)] = 934161, + [SMALL_STATE(15607)] = 934182, + [SMALL_STATE(15608)] = 934203, + [SMALL_STATE(15609)] = 934234, + [SMALL_STATE(15610)] = 934265, + [SMALL_STATE(15611)] = 934296, + [SMALL_STATE(15612)] = 934327, + [SMALL_STATE(15613)] = 934348, + [SMALL_STATE(15614)] = 934369, + [SMALL_STATE(15615)] = 934386, + [SMALL_STATE(15616)] = 934417, + [SMALL_STATE(15617)] = 934448, + [SMALL_STATE(15618)] = 934479, + [SMALL_STATE(15619)] = 934510, + [SMALL_STATE(15620)] = 934529, + [SMALL_STATE(15621)] = 934560, + [SMALL_STATE(15622)] = 934591, + [SMALL_STATE(15623)] = 934610, + [SMALL_STATE(15624)] = 934627, + [SMALL_STATE(15625)] = 934658, + [SMALL_STATE(15626)] = 934689, + [SMALL_STATE(15627)] = 934720, + [SMALL_STATE(15628)] = 934751, + [SMALL_STATE(15629)] = 934782, + [SMALL_STATE(15630)] = 934813, + [SMALL_STATE(15631)] = 934830, + [SMALL_STATE(15632)] = 934861, + [SMALL_STATE(15633)] = 934892, + [SMALL_STATE(15634)] = 934923, + [SMALL_STATE(15635)] = 934954, + [SMALL_STATE(15636)] = 934985, + [SMALL_STATE(15637)] = 935016, + [SMALL_STATE(15638)] = 935047, + [SMALL_STATE(15639)] = 935078, + [SMALL_STATE(15640)] = 935109, + [SMALL_STATE(15641)] = 935140, + [SMALL_STATE(15642)] = 935171, + [SMALL_STATE(15643)] = 935202, + [SMALL_STATE(15644)] = 935233, + [SMALL_STATE(15645)] = 935264, + [SMALL_STATE(15646)] = 935283, + [SMALL_STATE(15647)] = 935314, + [SMALL_STATE(15648)] = 935345, + [SMALL_STATE(15649)] = 935376, + [SMALL_STATE(15650)] = 935407, + [SMALL_STATE(15651)] = 935438, + [SMALL_STATE(15652)] = 935469, + [SMALL_STATE(15653)] = 935488, + [SMALL_STATE(15654)] = 935519, + [SMALL_STATE(15655)] = 935540, + [SMALL_STATE(15656)] = 935571, + [SMALL_STATE(15657)] = 935602, + [SMALL_STATE(15658)] = 935633, + [SMALL_STATE(15659)] = 935664, + [SMALL_STATE(15660)] = 935681, + [SMALL_STATE(15661)] = 935702, + [SMALL_STATE(15662)] = 935733, + [SMALL_STATE(15663)] = 935764, + [SMALL_STATE(15664)] = 935795, + [SMALL_STATE(15665)] = 935814, + [SMALL_STATE(15666)] = 935831, + [SMALL_STATE(15667)] = 935862, + [SMALL_STATE(15668)] = 935893, + [SMALL_STATE(15669)] = 935924, + [SMALL_STATE(15670)] = 935955, + [SMALL_STATE(15671)] = 935986, + [SMALL_STATE(15672)] = 936017, + [SMALL_STATE(15673)] = 936048, + [SMALL_STATE(15674)] = 936079, + [SMALL_STATE(15675)] = 936110, + [SMALL_STATE(15676)] = 936141, + [SMALL_STATE(15677)] = 936172, + [SMALL_STATE(15678)] = 936203, + [SMALL_STATE(15679)] = 936234, + [SMALL_STATE(15680)] = 936265, + [SMALL_STATE(15681)] = 936296, + [SMALL_STATE(15682)] = 936313, + [SMALL_STATE(15683)] = 936344, + [SMALL_STATE(15684)] = 936375, + [SMALL_STATE(15685)] = 936394, + [SMALL_STATE(15686)] = 936415, + [SMALL_STATE(15687)] = 936446, + [SMALL_STATE(15688)] = 936463, + [SMALL_STATE(15689)] = 936482, + [SMALL_STATE(15690)] = 936513, + [SMALL_STATE(15691)] = 936544, + [SMALL_STATE(15692)] = 936575, + [SMALL_STATE(15693)] = 936606, + [SMALL_STATE(15694)] = 936637, + [SMALL_STATE(15695)] = 936656, + [SMALL_STATE(15696)] = 936673, + [SMALL_STATE(15697)] = 936704, + [SMALL_STATE(15698)] = 936735, + [SMALL_STATE(15699)] = 936766, + [SMALL_STATE(15700)] = 936797, + [SMALL_STATE(15701)] = 936814, + [SMALL_STATE(15702)] = 936835, + [SMALL_STATE(15703)] = 936862, + [SMALL_STATE(15704)] = 936893, + [SMALL_STATE(15705)] = 936910, + [SMALL_STATE(15706)] = 936941, + [SMALL_STATE(15707)] = 936972, + [SMALL_STATE(15708)] = 937003, + [SMALL_STATE(15709)] = 937028, + [SMALL_STATE(15710)] = 937045, + [SMALL_STATE(15711)] = 937062, + [SMALL_STATE(15712)] = 937079, + [SMALL_STATE(15713)] = 937110, + [SMALL_STATE(15714)] = 937141, + [SMALL_STATE(15715)] = 937172, + [SMALL_STATE(15716)] = 937203, + [SMALL_STATE(15717)] = 937222, + [SMALL_STATE(15718)] = 937253, + [SMALL_STATE(15719)] = 937284, + [SMALL_STATE(15720)] = 937301, + [SMALL_STATE(15721)] = 937318, + [SMALL_STATE(15722)] = 937335, + [SMALL_STATE(15723)] = 937366, + [SMALL_STATE(15724)] = 937383, + [SMALL_STATE(15725)] = 937414, + [SMALL_STATE(15726)] = 937431, + [SMALL_STATE(15727)] = 937450, + [SMALL_STATE(15728)] = 937467, + [SMALL_STATE(15729)] = 937484, + [SMALL_STATE(15730)] = 937515, + [SMALL_STATE(15731)] = 937546, + [SMALL_STATE(15732)] = 937563, + [SMALL_STATE(15733)] = 937594, + [SMALL_STATE(15734)] = 937625, + [SMALL_STATE(15735)] = 937642, + [SMALL_STATE(15736)] = 937659, + [SMALL_STATE(15737)] = 937690, + [SMALL_STATE(15738)] = 937721, + [SMALL_STATE(15739)] = 937752, + [SMALL_STATE(15740)] = 937783, + [SMALL_STATE(15741)] = 937800, + [SMALL_STATE(15742)] = 937817, + [SMALL_STATE(15743)] = 937838, + [SMALL_STATE(15744)] = 937855, + [SMALL_STATE(15745)] = 937886, + [SMALL_STATE(15746)] = 937905, + [SMALL_STATE(15747)] = 937926, + [SMALL_STATE(15748)] = 937957, + [SMALL_STATE(15749)] = 937988, + [SMALL_STATE(15750)] = 938019, + [SMALL_STATE(15751)] = 938050, + [SMALL_STATE(15752)] = 938067, + [SMALL_STATE(15753)] = 938098, + [SMALL_STATE(15754)] = 938129, + [SMALL_STATE(15755)] = 938148, + [SMALL_STATE(15756)] = 938179, + [SMALL_STATE(15757)] = 938210, + [SMALL_STATE(15758)] = 938227, + [SMALL_STATE(15759)] = 938246, + [SMALL_STATE(15760)] = 938271, + [SMALL_STATE(15761)] = 938302, + [SMALL_STATE(15762)] = 938333, + [SMALL_STATE(15763)] = 938364, + [SMALL_STATE(15764)] = 938395, + [SMALL_STATE(15765)] = 938424, + [SMALL_STATE(15766)] = 938455, + [SMALL_STATE(15767)] = 938486, + [SMALL_STATE(15768)] = 938517, + [SMALL_STATE(15769)] = 938548, + [SMALL_STATE(15770)] = 938579, + [SMALL_STATE(15771)] = 938596, + [SMALL_STATE(15772)] = 938623, + [SMALL_STATE(15773)] = 938654, + [SMALL_STATE(15774)] = 938685, + [SMALL_STATE(15775)] = 938716, + [SMALL_STATE(15776)] = 938747, + [SMALL_STATE(15777)] = 938778, + [SMALL_STATE(15778)] = 938809, + [SMALL_STATE(15779)] = 938840, + [SMALL_STATE(15780)] = 938871, + [SMALL_STATE(15781)] = 938890, + [SMALL_STATE(15782)] = 938921, + [SMALL_STATE(15783)] = 938952, + [SMALL_STATE(15784)] = 938983, + [SMALL_STATE(15785)] = 939014, + [SMALL_STATE(15786)] = 939045, + [SMALL_STATE(15787)] = 939076, + [SMALL_STATE(15788)] = 939107, + [SMALL_STATE(15789)] = 939138, + [SMALL_STATE(15790)] = 939169, + [SMALL_STATE(15791)] = 939186, + [SMALL_STATE(15792)] = 939217, + [SMALL_STATE(15793)] = 939248, + [SMALL_STATE(15794)] = 939279, + [SMALL_STATE(15795)] = 939310, + [SMALL_STATE(15796)] = 939341, + [SMALL_STATE(15797)] = 939372, + [SMALL_STATE(15798)] = 939403, + [SMALL_STATE(15799)] = 939434, + [SMALL_STATE(15800)] = 939465, + [SMALL_STATE(15801)] = 939500, + [SMALL_STATE(15802)] = 939531, + [SMALL_STATE(15803)] = 939566, + [SMALL_STATE(15804)] = 939583, + [SMALL_STATE(15805)] = 939614, + [SMALL_STATE(15806)] = 939633, + [SMALL_STATE(15807)] = 939664, + [SMALL_STATE(15808)] = 939699, + [SMALL_STATE(15809)] = 939730, + [SMALL_STATE(15810)] = 939761, + [SMALL_STATE(15811)] = 939792, + [SMALL_STATE(15812)] = 939811, + [SMALL_STATE(15813)] = 939842, + [SMALL_STATE(15814)] = 939873, + [SMALL_STATE(15815)] = 939892, + [SMALL_STATE(15816)] = 939909, + [SMALL_STATE(15817)] = 939926, + [SMALL_STATE(15818)] = 939945, + [SMALL_STATE(15819)] = 939976, + [SMALL_STATE(15820)] = 939993, + [SMALL_STATE(15821)] = 940024, + [SMALL_STATE(15822)] = 940055, + [SMALL_STATE(15823)] = 940072, + [SMALL_STATE(15824)] = 940103, + [SMALL_STATE(15825)] = 940134, + [SMALL_STATE(15826)] = 940165, + [SMALL_STATE(15827)] = 940196, + [SMALL_STATE(15828)] = 940227, + [SMALL_STATE(15829)] = 940258, + [SMALL_STATE(15830)] = 940289, + [SMALL_STATE(15831)] = 940320, + [SMALL_STATE(15832)] = 940337, + [SMALL_STATE(15833)] = 940358, + [SMALL_STATE(15834)] = 940389, + [SMALL_STATE(15835)] = 940420, + [SMALL_STATE(15836)] = 940451, + [SMALL_STATE(15837)] = 940468, + [SMALL_STATE(15838)] = 940499, + [SMALL_STATE(15839)] = 940530, + [SMALL_STATE(15840)] = 940547, + [SMALL_STATE(15841)] = 940578, + [SMALL_STATE(15842)] = 940613, + [SMALL_STATE(15843)] = 940644, + [SMALL_STATE(15844)] = 940665, + [SMALL_STATE(15845)] = 940700, + [SMALL_STATE(15846)] = 940731, + [SMALL_STATE(15847)] = 940748, + [SMALL_STATE(15848)] = 940779, + [SMALL_STATE(15849)] = 940810, + [SMALL_STATE(15850)] = 940829, + [SMALL_STATE(15851)] = 940860, + [SMALL_STATE(15852)] = 940891, + [SMALL_STATE(15853)] = 940908, + [SMALL_STATE(15854)] = 940939, + [SMALL_STATE(15855)] = 940970, + [SMALL_STATE(15856)] = 941001, + [SMALL_STATE(15857)] = 941026, + [SMALL_STATE(15858)] = 941057, + [SMALL_STATE(15859)] = 941088, + [SMALL_STATE(15860)] = 941115, + [SMALL_STATE(15861)] = 941146, + [SMALL_STATE(15862)] = 941177, + [SMALL_STATE(15863)] = 941206, + [SMALL_STATE(15864)] = 941223, + [SMALL_STATE(15865)] = 941254, + [SMALL_STATE(15866)] = 941285, + [SMALL_STATE(15867)] = 941316, + [SMALL_STATE(15868)] = 941347, + [SMALL_STATE(15869)] = 941378, + [SMALL_STATE(15870)] = 941399, + [SMALL_STATE(15871)] = 941430, + [SMALL_STATE(15872)] = 941447, + [SMALL_STATE(15873)] = 941482, + [SMALL_STATE(15874)] = 941503, + [SMALL_STATE(15875)] = 941534, + [SMALL_STATE(15876)] = 941569, + [SMALL_STATE(15877)] = 941600, + [SMALL_STATE(15878)] = 941631, + [SMALL_STATE(15879)] = 941662, + [SMALL_STATE(15880)] = 941693, + [SMALL_STATE(15881)] = 941724, + [SMALL_STATE(15882)] = 941755, + [SMALL_STATE(15883)] = 941786, + [SMALL_STATE(15884)] = 941817, + [SMALL_STATE(15885)] = 941836, + [SMALL_STATE(15886)] = 941853, + [SMALL_STATE(15887)] = 941884, + [SMALL_STATE(15888)] = 941915, + [SMALL_STATE(15889)] = 941934, + [SMALL_STATE(15890)] = 941955, + [SMALL_STATE(15891)] = 941974, + [SMALL_STATE(15892)] = 942005, + [SMALL_STATE(15893)] = 942022, + [SMALL_STATE(15894)] = 942053, + [SMALL_STATE(15895)] = 942078, + [SMALL_STATE(15896)] = 942095, + [SMALL_STATE(15897)] = 942120, + [SMALL_STATE(15898)] = 942151, + [SMALL_STATE(15899)] = 942170, + [SMALL_STATE(15900)] = 942187, + [SMALL_STATE(15901)] = 942212, + [SMALL_STATE(15902)] = 942233, + [SMALL_STATE(15903)] = 942258, + [SMALL_STATE(15904)] = 942289, + [SMALL_STATE(15905)] = 942320, + [SMALL_STATE(15906)] = 942351, + [SMALL_STATE(15907)] = 942386, + [SMALL_STATE(15908)] = 942417, + [SMALL_STATE(15909)] = 942434, + [SMALL_STATE(15910)] = 942451, + [SMALL_STATE(15911)] = 942486, + [SMALL_STATE(15912)] = 942517, + [SMALL_STATE(15913)] = 942548, + [SMALL_STATE(15914)] = 942579, + [SMALL_STATE(15915)] = 942610, + [SMALL_STATE(15916)] = 942641, + [SMALL_STATE(15917)] = 942672, + [SMALL_STATE(15918)] = 942703, + [SMALL_STATE(15919)] = 942734, + [SMALL_STATE(15920)] = 942751, + [SMALL_STATE(15921)] = 942782, + [SMALL_STATE(15922)] = 942813, + [SMALL_STATE(15923)] = 942844, + [SMALL_STATE(15924)] = 942875, + [SMALL_STATE(15925)] = 942906, + [SMALL_STATE(15926)] = 942923, + [SMALL_STATE(15927)] = 942940, + [SMALL_STATE(15928)] = 942957, + [SMALL_STATE(15929)] = 942974, + [SMALL_STATE(15930)] = 943005, + [SMALL_STATE(15931)] = 943036, + [SMALL_STATE(15932)] = 943055, + [SMALL_STATE(15933)] = 943086, + [SMALL_STATE(15934)] = 943121, + [SMALL_STATE(15935)] = 943152, + [SMALL_STATE(15936)] = 943171, + [SMALL_STATE(15937)] = 943206, + [SMALL_STATE(15938)] = 943223, + [SMALL_STATE(15939)] = 943240, + [SMALL_STATE(15940)] = 943257, + [SMALL_STATE(15941)] = 943274, + [SMALL_STATE(15942)] = 943309, + [SMALL_STATE(15943)] = 943344, + [SMALL_STATE(15944)] = 943375, + [SMALL_STATE(15945)] = 943406, + [SMALL_STATE(15946)] = 943437, + [SMALL_STATE(15947)] = 943454, + [SMALL_STATE(15948)] = 943485, + [SMALL_STATE(15949)] = 943504, + [SMALL_STATE(15950)] = 943535, + [SMALL_STATE(15951)] = 943570, + [SMALL_STATE(15952)] = 943605, + [SMALL_STATE(15953)] = 943636, + [SMALL_STATE(15954)] = 943655, + [SMALL_STATE(15955)] = 943674, + [SMALL_STATE(15956)] = 943705, + [SMALL_STATE(15957)] = 943740, + [SMALL_STATE(15958)] = 943775, + [SMALL_STATE(15959)] = 943806, + [SMALL_STATE(15960)] = 943837, + [SMALL_STATE(15961)] = 943868, + [SMALL_STATE(15962)] = 943899, + [SMALL_STATE(15963)] = 943916, + [SMALL_STATE(15964)] = 943933, + [SMALL_STATE(15965)] = 943964, + [SMALL_STATE(15966)] = 943995, + [SMALL_STATE(15967)] = 944030, + [SMALL_STATE(15968)] = 944065, + [SMALL_STATE(15969)] = 944082, + [SMALL_STATE(15970)] = 944113, + [SMALL_STATE(15971)] = 944144, + [SMALL_STATE(15972)] = 944175, + [SMALL_STATE(15973)] = 944206, + [SMALL_STATE(15974)] = 944241, + [SMALL_STATE(15975)] = 944276, + [SMALL_STATE(15976)] = 944307, + [SMALL_STATE(15977)] = 944328, + [SMALL_STATE(15978)] = 944359, + [SMALL_STATE(15979)] = 944394, + [SMALL_STATE(15980)] = 944425, + [SMALL_STATE(15981)] = 944442, + [SMALL_STATE(15982)] = 944473, + [SMALL_STATE(15983)] = 944504, + [SMALL_STATE(15984)] = 944535, + [SMALL_STATE(15985)] = 944556, + [SMALL_STATE(15986)] = 944577, + [SMALL_STATE(15987)] = 944598, + [SMALL_STATE(15988)] = 944629, + [SMALL_STATE(15989)] = 944650, + [SMALL_STATE(15990)] = 944667, + [SMALL_STATE(15991)] = 944698, + [SMALL_STATE(15992)] = 944733, + [SMALL_STATE(15993)] = 944764, + [SMALL_STATE(15994)] = 944795, + [SMALL_STATE(15995)] = 944826, + [SMALL_STATE(15996)] = 944857, + [SMALL_STATE(15997)] = 944888, + [SMALL_STATE(15998)] = 944905, + [SMALL_STATE(15999)] = 944936, + [SMALL_STATE(16000)] = 944967, + [SMALL_STATE(16001)] = 944998, + [SMALL_STATE(16002)] = 945029, + [SMALL_STATE(16003)] = 945060, + [SMALL_STATE(16004)] = 945079, + [SMALL_STATE(16005)] = 945110, + [SMALL_STATE(16006)] = 945141, + [SMALL_STATE(16007)] = 945172, + [SMALL_STATE(16008)] = 945203, + [SMALL_STATE(16009)] = 945234, + [SMALL_STATE(16010)] = 945265, + [SMALL_STATE(16011)] = 945282, + [SMALL_STATE(16012)] = 945313, + [SMALL_STATE(16013)] = 945332, + [SMALL_STATE(16014)] = 945349, + [SMALL_STATE(16015)] = 945380, + [SMALL_STATE(16016)] = 945411, + [SMALL_STATE(16017)] = 945442, + [SMALL_STATE(16018)] = 945473, + [SMALL_STATE(16019)] = 945504, + [SMALL_STATE(16020)] = 945535, + [SMALL_STATE(16021)] = 945566, + [SMALL_STATE(16022)] = 945597, + [SMALL_STATE(16023)] = 945628, + [SMALL_STATE(16024)] = 945659, + [SMALL_STATE(16025)] = 945690, + [SMALL_STATE(16026)] = 945721, + [SMALL_STATE(16027)] = 945752, + [SMALL_STATE(16028)] = 945783, + [SMALL_STATE(16029)] = 945804, + [SMALL_STATE(16030)] = 945825, + [SMALL_STATE(16031)] = 945844, + [SMALL_STATE(16032)] = 945861, + [SMALL_STATE(16033)] = 945878, + [SMALL_STATE(16034)] = 945897, + [SMALL_STATE(16035)] = 945914, + [SMALL_STATE(16036)] = 945945, + [SMALL_STATE(16037)] = 945976, + [SMALL_STATE(16038)] = 946007, + [SMALL_STATE(16039)] = 946038, + [SMALL_STATE(16040)] = 946069, + [SMALL_STATE(16041)] = 946100, + [SMALL_STATE(16042)] = 946131, + [SMALL_STATE(16043)] = 946150, + [SMALL_STATE(16044)] = 946181, + [SMALL_STATE(16045)] = 946212, + [SMALL_STATE(16046)] = 946243, + [SMALL_STATE(16047)] = 946274, + [SMALL_STATE(16048)] = 946305, + [SMALL_STATE(16049)] = 946336, + [SMALL_STATE(16050)] = 946353, + [SMALL_STATE(16051)] = 946384, + [SMALL_STATE(16052)] = 946415, + [SMALL_STATE(16053)] = 946446, + [SMALL_STATE(16054)] = 946477, + [SMALL_STATE(16055)] = 946494, + [SMALL_STATE(16056)] = 946525, + [SMALL_STATE(16057)] = 946556, + [SMALL_STATE(16058)] = 946573, + [SMALL_STATE(16059)] = 946604, + [SMALL_STATE(16060)] = 946621, + [SMALL_STATE(16061)] = 946638, + [SMALL_STATE(16062)] = 946669, + [SMALL_STATE(16063)] = 946700, + [SMALL_STATE(16064)] = 946731, + [SMALL_STATE(16065)] = 946762, + [SMALL_STATE(16066)] = 946793, + [SMALL_STATE(16067)] = 946824, + [SMALL_STATE(16068)] = 946855, + [SMALL_STATE(16069)] = 946876, + [SMALL_STATE(16070)] = 946907, + [SMALL_STATE(16071)] = 946938, + [SMALL_STATE(16072)] = 946969, + [SMALL_STATE(16073)] = 946998, + [SMALL_STATE(16074)] = 947017, + [SMALL_STATE(16075)] = 947048, + [SMALL_STATE(16076)] = 947079, + [SMALL_STATE(16077)] = 947110, + [SMALL_STATE(16078)] = 947141, + [SMALL_STATE(16079)] = 947158, + [SMALL_STATE(16080)] = 947189, + [SMALL_STATE(16081)] = 947220, + [SMALL_STATE(16082)] = 947251, + [SMALL_STATE(16083)] = 947282, + [SMALL_STATE(16084)] = 947307, + [SMALL_STATE(16085)] = 947328, + [SMALL_STATE(16086)] = 947359, + [SMALL_STATE(16087)] = 947384, + [SMALL_STATE(16088)] = 947415, + [SMALL_STATE(16089)] = 947434, + [SMALL_STATE(16090)] = 947451, + [SMALL_STATE(16091)] = 947468, + [SMALL_STATE(16092)] = 947499, + [SMALL_STATE(16093)] = 947518, + [SMALL_STATE(16094)] = 947549, + [SMALL_STATE(16095)] = 947580, + [SMALL_STATE(16096)] = 947611, + [SMALL_STATE(16097)] = 947642, + [SMALL_STATE(16098)] = 947673, + [SMALL_STATE(16099)] = 947704, + [SMALL_STATE(16100)] = 947735, + [SMALL_STATE(16101)] = 947766, + [SMALL_STATE(16102)] = 947797, + [SMALL_STATE(16103)] = 947828, + [SMALL_STATE(16104)] = 947859, + [SMALL_STATE(16105)] = 947890, + [SMALL_STATE(16106)] = 947921, + [SMALL_STATE(16107)] = 947952, + [SMALL_STATE(16108)] = 947973, + [SMALL_STATE(16109)] = 948004, + [SMALL_STATE(16110)] = 948035, + [SMALL_STATE(16111)] = 948066, + [SMALL_STATE(16112)] = 948097, + [SMALL_STATE(16113)] = 948128, + [SMALL_STATE(16114)] = 948159, + [SMALL_STATE(16115)] = 948178, + [SMALL_STATE(16116)] = 948209, + [SMALL_STATE(16117)] = 948236, + [SMALL_STATE(16118)] = 948267, + [SMALL_STATE(16119)] = 948298, + [SMALL_STATE(16120)] = 948329, + [SMALL_STATE(16121)] = 948360, + [SMALL_STATE(16122)] = 948391, + [SMALL_STATE(16123)] = 948422, + [SMALL_STATE(16124)] = 948453, + [SMALL_STATE(16125)] = 948472, + [SMALL_STATE(16126)] = 948493, + [SMALL_STATE(16127)] = 948524, + [SMALL_STATE(16128)] = 948541, + [SMALL_STATE(16129)] = 948572, + [SMALL_STATE(16130)] = 948589, + [SMALL_STATE(16131)] = 948620, + [SMALL_STATE(16132)] = 948651, + [SMALL_STATE(16133)] = 948682, + [SMALL_STATE(16134)] = 948713, + [SMALL_STATE(16135)] = 948742, + [SMALL_STATE(16136)] = 948773, + [SMALL_STATE(16137)] = 948804, + [SMALL_STATE(16138)] = 948835, + [SMALL_STATE(16139)] = 948852, + [SMALL_STATE(16140)] = 948869, + [SMALL_STATE(16141)] = 948900, + [SMALL_STATE(16142)] = 948917, + [SMALL_STATE(16143)] = 948936, + [SMALL_STATE(16144)] = 948967, + [SMALL_STATE(16145)] = 948998, + [SMALL_STATE(16146)] = 949029, + [SMALL_STATE(16147)] = 949060, + [SMALL_STATE(16148)] = 949091, + [SMALL_STATE(16149)] = 949122, + [SMALL_STATE(16150)] = 949153, + [SMALL_STATE(16151)] = 949174, + [SMALL_STATE(16152)] = 949205, + [SMALL_STATE(16153)] = 949236, + [SMALL_STATE(16154)] = 949267, + [SMALL_STATE(16155)] = 949284, + [SMALL_STATE(16156)] = 949315, + [SMALL_STATE(16157)] = 949346, + [SMALL_STATE(16158)] = 949367, + [SMALL_STATE(16159)] = 949388, + [SMALL_STATE(16160)] = 949407, + [SMALL_STATE(16161)] = 949438, + [SMALL_STATE(16162)] = 949469, + [SMALL_STATE(16163)] = 949490, + [SMALL_STATE(16164)] = 949521, + [SMALL_STATE(16165)] = 949542, + [SMALL_STATE(16166)] = 949573, + [SMALL_STATE(16167)] = 949604, + [SMALL_STATE(16168)] = 949635, + [SMALL_STATE(16169)] = 949666, + [SMALL_STATE(16170)] = 949697, + [SMALL_STATE(16171)] = 949728, + [SMALL_STATE(16172)] = 949745, + [SMALL_STATE(16173)] = 949776, + [SMALL_STATE(16174)] = 949793, + [SMALL_STATE(16175)] = 949824, + [SMALL_STATE(16176)] = 949855, + [SMALL_STATE(16177)] = 949886, + [SMALL_STATE(16178)] = 949903, + [SMALL_STATE(16179)] = 949934, + [SMALL_STATE(16180)] = 949965, + [SMALL_STATE(16181)] = 949996, + [SMALL_STATE(16182)] = 950027, + [SMALL_STATE(16183)] = 950058, + [SMALL_STATE(16184)] = 950089, + [SMALL_STATE(16185)] = 950120, + [SMALL_STATE(16186)] = 950151, + [SMALL_STATE(16187)] = 950182, + [SMALL_STATE(16188)] = 950201, + [SMALL_STATE(16189)] = 950222, + [SMALL_STATE(16190)] = 950253, + [SMALL_STATE(16191)] = 950284, + [SMALL_STATE(16192)] = 950315, + [SMALL_STATE(16193)] = 950334, + [SMALL_STATE(16194)] = 950365, + [SMALL_STATE(16195)] = 950396, + [SMALL_STATE(16196)] = 950427, + [SMALL_STATE(16197)] = 950458, + [SMALL_STATE(16198)] = 950489, + [SMALL_STATE(16199)] = 950520, + [SMALL_STATE(16200)] = 950537, + [SMALL_STATE(16201)] = 950568, + [SMALL_STATE(16202)] = 950599, + [SMALL_STATE(16203)] = 950618, + [SMALL_STATE(16204)] = 950649, + [SMALL_STATE(16205)] = 950680, + [SMALL_STATE(16206)] = 950711, + [SMALL_STATE(16207)] = 950742, + [SMALL_STATE(16208)] = 950773, + [SMALL_STATE(16209)] = 950804, + [SMALL_STATE(16210)] = 950835, + [SMALL_STATE(16211)] = 950866, + [SMALL_STATE(16212)] = 950897, + [SMALL_STATE(16213)] = 950916, + [SMALL_STATE(16214)] = 950935, + [SMALL_STATE(16215)] = 950966, + [SMALL_STATE(16216)] = 950997, + [SMALL_STATE(16217)] = 951014, + [SMALL_STATE(16218)] = 951045, + [SMALL_STATE(16219)] = 951076, + [SMALL_STATE(16220)] = 951097, + [SMALL_STATE(16221)] = 951114, + [SMALL_STATE(16222)] = 951131, + [SMALL_STATE(16223)] = 951162, + [SMALL_STATE(16224)] = 951193, + [SMALL_STATE(16225)] = 951224, + [SMALL_STATE(16226)] = 951255, + [SMALL_STATE(16227)] = 951286, + [SMALL_STATE(16228)] = 951303, + [SMALL_STATE(16229)] = 951334, + [SMALL_STATE(16230)] = 951365, + [SMALL_STATE(16231)] = 951386, + [SMALL_STATE(16232)] = 951417, + [SMALL_STATE(16233)] = 951448, + [SMALL_STATE(16234)] = 951479, + [SMALL_STATE(16235)] = 951510, + [SMALL_STATE(16236)] = 951541, + [SMALL_STATE(16237)] = 951558, + [SMALL_STATE(16238)] = 951589, + [SMALL_STATE(16239)] = 951620, + [SMALL_STATE(16240)] = 951645, + [SMALL_STATE(16241)] = 951676, + [SMALL_STATE(16242)] = 951707, + [SMALL_STATE(16243)] = 951738, + [SMALL_STATE(16244)] = 951769, + [SMALL_STATE(16245)] = 951800, + [SMALL_STATE(16246)] = 951817, + [SMALL_STATE(16247)] = 951836, + [SMALL_STATE(16248)] = 951867, + [SMALL_STATE(16249)] = 951892, + [SMALL_STATE(16250)] = 951911, + [SMALL_STATE(16251)] = 951932, + [SMALL_STATE(16252)] = 951963, + [SMALL_STATE(16253)] = 951980, + [SMALL_STATE(16254)] = 951999, + [SMALL_STATE(16255)] = 952030, + [SMALL_STATE(16256)] = 952061, + [SMALL_STATE(16257)] = 952092, + [SMALL_STATE(16258)] = 952123, + [SMALL_STATE(16259)] = 952140, + [SMALL_STATE(16260)] = 952171, + [SMALL_STATE(16261)] = 952190, + [SMALL_STATE(16262)] = 952221, + [SMALL_STATE(16263)] = 952252, + [SMALL_STATE(16264)] = 952283, + [SMALL_STATE(16265)] = 952314, + [SMALL_STATE(16266)] = 952345, + [SMALL_STATE(16267)] = 952376, + [SMALL_STATE(16268)] = 952407, + [SMALL_STATE(16269)] = 952424, + [SMALL_STATE(16270)] = 952455, + [SMALL_STATE(16271)] = 952474, + [SMALL_STATE(16272)] = 952505, + [SMALL_STATE(16273)] = 952536, + [SMALL_STATE(16274)] = 952567, + [SMALL_STATE(16275)] = 952598, + [SMALL_STATE(16276)] = 952629, + [SMALL_STATE(16277)] = 952660, + [SMALL_STATE(16278)] = 952691, + [SMALL_STATE(16279)] = 952722, + [SMALL_STATE(16280)] = 952753, + [SMALL_STATE(16281)] = 952784, + [SMALL_STATE(16282)] = 952815, + [SMALL_STATE(16283)] = 952846, + [SMALL_STATE(16284)] = 952877, + [SMALL_STATE(16285)] = 952908, + [SMALL_STATE(16286)] = 952939, + [SMALL_STATE(16287)] = 952970, + [SMALL_STATE(16288)] = 952987, + [SMALL_STATE(16289)] = 953004, + [SMALL_STATE(16290)] = 953021, + [SMALL_STATE(16291)] = 953040, + [SMALL_STATE(16292)] = 953057, + [SMALL_STATE(16293)] = 953088, + [SMALL_STATE(16294)] = 953119, + [SMALL_STATE(16295)] = 953150, + [SMALL_STATE(16296)] = 953181, + [SMALL_STATE(16297)] = 953212, + [SMALL_STATE(16298)] = 953243, + [SMALL_STATE(16299)] = 953274, + [SMALL_STATE(16300)] = 953305, + [SMALL_STATE(16301)] = 953336, + [SMALL_STATE(16302)] = 953367, + [SMALL_STATE(16303)] = 953398, + [SMALL_STATE(16304)] = 953429, + [SMALL_STATE(16305)] = 953460, + [SMALL_STATE(16306)] = 953491, + [SMALL_STATE(16307)] = 953522, + [SMALL_STATE(16308)] = 953553, + [SMALL_STATE(16309)] = 953584, + [SMALL_STATE(16310)] = 953615, + [SMALL_STATE(16311)] = 953646, + [SMALL_STATE(16312)] = 953665, + [SMALL_STATE(16313)] = 953696, + [SMALL_STATE(16314)] = 953727, + [SMALL_STATE(16315)] = 953758, + [SMALL_STATE(16316)] = 953789, + [SMALL_STATE(16317)] = 953820, + [SMALL_STATE(16318)] = 953851, + [SMALL_STATE(16319)] = 953882, + [SMALL_STATE(16320)] = 953913, + [SMALL_STATE(16321)] = 953944, + [SMALL_STATE(16322)] = 953975, + [SMALL_STATE(16323)] = 953994, + [SMALL_STATE(16324)] = 954025, + [SMALL_STATE(16325)] = 954056, + [SMALL_STATE(16326)] = 954087, + [SMALL_STATE(16327)] = 954118, + [SMALL_STATE(16328)] = 954149, + [SMALL_STATE(16329)] = 954180, + [SMALL_STATE(16330)] = 954211, + [SMALL_STATE(16331)] = 954242, + [SMALL_STATE(16332)] = 954259, + [SMALL_STATE(16333)] = 954290, + [SMALL_STATE(16334)] = 954321, + [SMALL_STATE(16335)] = 954352, + [SMALL_STATE(16336)] = 954371, + [SMALL_STATE(16337)] = 954402, + [SMALL_STATE(16338)] = 954433, + [SMALL_STATE(16339)] = 954464, + [SMALL_STATE(16340)] = 954495, + [SMALL_STATE(16341)] = 954526, + [SMALL_STATE(16342)] = 954557, + [SMALL_STATE(16343)] = 954574, + [SMALL_STATE(16344)] = 954605, + [SMALL_STATE(16345)] = 954636, + [SMALL_STATE(16346)] = 954658, + [SMALL_STATE(16347)] = 954680, + [SMALL_STATE(16348)] = 954696, + [SMALL_STATE(16349)] = 954718, + [SMALL_STATE(16350)] = 954740, + [SMALL_STATE(16351)] = 954760, + [SMALL_STATE(16352)] = 954784, + [SMALL_STATE(16353)] = 954814, + [SMALL_STATE(16354)] = 954844, + [SMALL_STATE(16355)] = 954860, + [SMALL_STATE(16356)] = 954876, + [SMALL_STATE(16357)] = 954892, + [SMALL_STATE(16358)] = 954910, + [SMALL_STATE(16359)] = 954930, + [SMALL_STATE(16360)] = 954950, + [SMALL_STATE(16361)] = 954966, + [SMALL_STATE(16362)] = 954988, + [SMALL_STATE(16363)] = 955004, + [SMALL_STATE(16364)] = 955020, + [SMALL_STATE(16365)] = 955036, + [SMALL_STATE(16366)] = 955052, + [SMALL_STATE(16367)] = 955070, + [SMALL_STATE(16368)] = 955086, + [SMALL_STATE(16369)] = 955102, + [SMALL_STATE(16370)] = 955120, + [SMALL_STATE(16371)] = 955136, + [SMALL_STATE(16372)] = 955152, + [SMALL_STATE(16373)] = 955168, + [SMALL_STATE(16374)] = 955184, + [SMALL_STATE(16375)] = 955200, + [SMALL_STATE(16376)] = 955216, + [SMALL_STATE(16377)] = 955232, + [SMALL_STATE(16378)] = 955250, + [SMALL_STATE(16379)] = 955268, + [SMALL_STATE(16380)] = 955288, + [SMALL_STATE(16381)] = 955306, + [SMALL_STATE(16382)] = 955324, + [SMALL_STATE(16383)] = 955344, + [SMALL_STATE(16384)] = 955362, + [SMALL_STATE(16385)] = 955380, + [SMALL_STATE(16386)] = 955398, + [SMALL_STATE(16387)] = 955416, + [SMALL_STATE(16388)] = 955434, + [SMALL_STATE(16389)] = 955452, + [SMALL_STATE(16390)] = 955470, + [SMALL_STATE(16391)] = 955486, + [SMALL_STATE(16392)] = 955502, + [SMALL_STATE(16393)] = 955518, + [SMALL_STATE(16394)] = 955540, + [SMALL_STATE(16395)] = 955558, + [SMALL_STATE(16396)] = 955576, + [SMALL_STATE(16397)] = 955598, + [SMALL_STATE(16398)] = 955616, + [SMALL_STATE(16399)] = 955634, + [SMALL_STATE(16400)] = 955650, + [SMALL_STATE(16401)] = 955672, + [SMALL_STATE(16402)] = 955688, + [SMALL_STATE(16403)] = 955718, + [SMALL_STATE(16404)] = 955748, + [SMALL_STATE(16405)] = 955764, + [SMALL_STATE(16406)] = 955788, + [SMALL_STATE(16407)] = 955804, + [SMALL_STATE(16408)] = 955820, + [SMALL_STATE(16409)] = 955836, + [SMALL_STATE(16410)] = 955852, + [SMALL_STATE(16411)] = 955868, + [SMALL_STATE(16412)] = 955898, + [SMALL_STATE(16413)] = 955916, + [SMALL_STATE(16414)] = 955936, + [SMALL_STATE(16415)] = 955952, + [SMALL_STATE(16416)] = 955968, + [SMALL_STATE(16417)] = 955990, + [SMALL_STATE(16418)] = 956012, + [SMALL_STATE(16419)] = 956034, + [SMALL_STATE(16420)] = 956056, + [SMALL_STATE(16421)] = 956074, + [SMALL_STATE(16422)] = 956092, + [SMALL_STATE(16423)] = 956122, + [SMALL_STATE(16424)] = 956144, + [SMALL_STATE(16425)] = 956166, + [SMALL_STATE(16426)] = 956182, + [SMALL_STATE(16427)] = 956200, + [SMALL_STATE(16428)] = 956222, + [SMALL_STATE(16429)] = 956244, + [SMALL_STATE(16430)] = 956264, + [SMALL_STATE(16431)] = 956286, + [SMALL_STATE(16432)] = 956308, + [SMALL_STATE(16433)] = 956328, + [SMALL_STATE(16434)] = 956348, + [SMALL_STATE(16435)] = 956370, + [SMALL_STATE(16436)] = 956392, + [SMALL_STATE(16437)] = 956408, + [SMALL_STATE(16438)] = 956424, + [SMALL_STATE(16439)] = 956442, + [SMALL_STATE(16440)] = 956462, + [SMALL_STATE(16441)] = 956484, + [SMALL_STATE(16442)] = 956506, + [SMALL_STATE(16443)] = 956528, + [SMALL_STATE(16444)] = 956548, + [SMALL_STATE(16445)] = 956570, + [SMALL_STATE(16446)] = 956592, + [SMALL_STATE(16447)] = 956612, + [SMALL_STATE(16448)] = 956634, + [SMALL_STATE(16449)] = 956656, + [SMALL_STATE(16450)] = 956682, + [SMALL_STATE(16451)] = 956704, + [SMALL_STATE(16452)] = 956726, + [SMALL_STATE(16453)] = 956746, + [SMALL_STATE(16454)] = 956768, + [SMALL_STATE(16455)] = 956788, + [SMALL_STATE(16456)] = 956808, + [SMALL_STATE(16457)] = 956828, + [SMALL_STATE(16458)] = 956848, + [SMALL_STATE(16459)] = 956870, + [SMALL_STATE(16460)] = 956892, + [SMALL_STATE(16461)] = 956914, + [SMALL_STATE(16462)] = 956934, + [SMALL_STATE(16463)] = 956954, + [SMALL_STATE(16464)] = 956974, + [SMALL_STATE(16465)] = 956996, + [SMALL_STATE(16466)] = 957018, + [SMALL_STATE(16467)] = 957038, + [SMALL_STATE(16468)] = 957058, + [SMALL_STATE(16469)] = 957076, + [SMALL_STATE(16470)] = 957096, + [SMALL_STATE(16471)] = 957118, + [SMALL_STATE(16472)] = 957140, + [SMALL_STATE(16473)] = 957160, + [SMALL_STATE(16474)] = 957180, + [SMALL_STATE(16475)] = 957198, + [SMALL_STATE(16476)] = 957220, + [SMALL_STATE(16477)] = 957242, + [SMALL_STATE(16478)] = 957262, + [SMALL_STATE(16479)] = 957282, + [SMALL_STATE(16480)] = 957304, + [SMALL_STATE(16481)] = 957326, + [SMALL_STATE(16482)] = 957346, + [SMALL_STATE(16483)] = 957366, + [SMALL_STATE(16484)] = 957388, + [SMALL_STATE(16485)] = 957410, + [SMALL_STATE(16486)] = 957428, + [SMALL_STATE(16487)] = 957450, + [SMALL_STATE(16488)] = 957472, + [SMALL_STATE(16489)] = 957494, + [SMALL_STATE(16490)] = 957512, + [SMALL_STATE(16491)] = 957528, + [SMALL_STATE(16492)] = 957550, + [SMALL_STATE(16493)] = 957566, + [SMALL_STATE(16494)] = 957582, + [SMALL_STATE(16495)] = 957604, + [SMALL_STATE(16496)] = 957626, + [SMALL_STATE(16497)] = 957644, + [SMALL_STATE(16498)] = 957666, + [SMALL_STATE(16499)] = 957690, + [SMALL_STATE(16500)] = 957708, + [SMALL_STATE(16501)] = 957732, + [SMALL_STATE(16502)] = 957758, + [SMALL_STATE(16503)] = 957780, + [SMALL_STATE(16504)] = 957798, + [SMALL_STATE(16505)] = 957822, + [SMALL_STATE(16506)] = 957844, + [SMALL_STATE(16507)] = 957862, + [SMALL_STATE(16508)] = 957884, + [SMALL_STATE(16509)] = 957906, + [SMALL_STATE(16510)] = 957924, + [SMALL_STATE(16511)] = 957946, + [SMALL_STATE(16512)] = 957966, + [SMALL_STATE(16513)] = 957986, + [SMALL_STATE(16514)] = 958010, + [SMALL_STATE(16515)] = 958034, + [SMALL_STATE(16516)] = 958052, + [SMALL_STATE(16517)] = 958074, + [SMALL_STATE(16518)] = 958094, + [SMALL_STATE(16519)] = 958114, + [SMALL_STATE(16520)] = 958138, + [SMALL_STATE(16521)] = 958162, + [SMALL_STATE(16522)] = 958180, + [SMALL_STATE(16523)] = 958202, + [SMALL_STATE(16524)] = 958224, + [SMALL_STATE(16525)] = 958246, + [SMALL_STATE(16526)] = 958276, + [SMALL_STATE(16527)] = 958298, + [SMALL_STATE(16528)] = 958316, + [SMALL_STATE(16529)] = 958338, + [SMALL_STATE(16530)] = 958360, + [SMALL_STATE(16531)] = 958382, + [SMALL_STATE(16532)] = 958400, + [SMALL_STATE(16533)] = 958422, + [SMALL_STATE(16534)] = 958440, + [SMALL_STATE(16535)] = 958458, + [SMALL_STATE(16536)] = 958474, + [SMALL_STATE(16537)] = 958496, + [SMALL_STATE(16538)] = 958516, + [SMALL_STATE(16539)] = 958538, + [SMALL_STATE(16540)] = 958556, + [SMALL_STATE(16541)] = 958578, + [SMALL_STATE(16542)] = 958600, + [SMALL_STATE(16543)] = 958618, + [SMALL_STATE(16544)] = 958634, + [SMALL_STATE(16545)] = 958650, + [SMALL_STATE(16546)] = 958672, + [SMALL_STATE(16547)] = 958694, + [SMALL_STATE(16548)] = 958710, + [SMALL_STATE(16549)] = 958734, + [SMALL_STATE(16550)] = 958756, + [SMALL_STATE(16551)] = 958778, + [SMALL_STATE(16552)] = 958800, + [SMALL_STATE(16553)] = 958822, + [SMALL_STATE(16554)] = 958844, + [SMALL_STATE(16555)] = 958866, + [SMALL_STATE(16556)] = 958888, + [SMALL_STATE(16557)] = 958910, + [SMALL_STATE(16558)] = 958928, + [SMALL_STATE(16559)] = 958944, + [SMALL_STATE(16560)] = 958966, + [SMALL_STATE(16561)] = 958988, + [SMALL_STATE(16562)] = 959010, + [SMALL_STATE(16563)] = 959032, + [SMALL_STATE(16564)] = 959054, + [SMALL_STATE(16565)] = 959076, + [SMALL_STATE(16566)] = 959098, + [SMALL_STATE(16567)] = 959120, + [SMALL_STATE(16568)] = 959142, + [SMALL_STATE(16569)] = 959164, + [SMALL_STATE(16570)] = 959186, + [SMALL_STATE(16571)] = 959208, + [SMALL_STATE(16572)] = 959230, + [SMALL_STATE(16573)] = 959252, + [SMALL_STATE(16574)] = 959272, + [SMALL_STATE(16575)] = 959294, + [SMALL_STATE(16576)] = 959314, + [SMALL_STATE(16577)] = 959336, + [SMALL_STATE(16578)] = 959358, + [SMALL_STATE(16579)] = 959380, + [SMALL_STATE(16580)] = 959402, + [SMALL_STATE(16581)] = 959424, + [SMALL_STATE(16582)] = 959446, + [SMALL_STATE(16583)] = 959468, + [SMALL_STATE(16584)] = 959490, + [SMALL_STATE(16585)] = 959506, + [SMALL_STATE(16586)] = 959528, + [SMALL_STATE(16587)] = 959550, + [SMALL_STATE(16588)] = 959572, + [SMALL_STATE(16589)] = 959594, + [SMALL_STATE(16590)] = 959616, + [SMALL_STATE(16591)] = 959638, + [SMALL_STATE(16592)] = 959660, + [SMALL_STATE(16593)] = 959682, + [SMALL_STATE(16594)] = 959704, + [SMALL_STATE(16595)] = 959726, + [SMALL_STATE(16596)] = 959748, + [SMALL_STATE(16597)] = 959770, + [SMALL_STATE(16598)] = 959792, + [SMALL_STATE(16599)] = 959808, + [SMALL_STATE(16600)] = 959830, + [SMALL_STATE(16601)] = 959852, + [SMALL_STATE(16602)] = 959874, + [SMALL_STATE(16603)] = 959896, + [SMALL_STATE(16604)] = 959918, + [SMALL_STATE(16605)] = 959934, + [SMALL_STATE(16606)] = 959956, + [SMALL_STATE(16607)] = 959986, + [SMALL_STATE(16608)] = 960016, + [SMALL_STATE(16609)] = 960032, + [SMALL_STATE(16610)] = 960062, + [SMALL_STATE(16611)] = 960092, + [SMALL_STATE(16612)] = 960122, + [SMALL_STATE(16613)] = 960152, + [SMALL_STATE(16614)] = 960168, + [SMALL_STATE(16615)] = 960198, + [SMALL_STATE(16616)] = 960220, + [SMALL_STATE(16617)] = 960242, + [SMALL_STATE(16618)] = 960272, + [SMALL_STATE(16619)] = 960302, + [SMALL_STATE(16620)] = 960332, + [SMALL_STATE(16621)] = 960354, + [SMALL_STATE(16622)] = 960384, + [SMALL_STATE(16623)] = 960406, + [SMALL_STATE(16624)] = 960436, + [SMALL_STATE(16625)] = 960466, + [SMALL_STATE(16626)] = 960496, + [SMALL_STATE(16627)] = 960526, + [SMALL_STATE(16628)] = 960556, + [SMALL_STATE(16629)] = 960586, + [SMALL_STATE(16630)] = 960616, + [SMALL_STATE(16631)] = 960632, + [SMALL_STATE(16632)] = 960652, + [SMALL_STATE(16633)] = 960672, + [SMALL_STATE(16634)] = 960692, + [SMALL_STATE(16635)] = 960712, + [SMALL_STATE(16636)] = 960732, + [SMALL_STATE(16637)] = 960754, + [SMALL_STATE(16638)] = 960784, + [SMALL_STATE(16639)] = 960806, + [SMALL_STATE(16640)] = 960826, + [SMALL_STATE(16641)] = 960846, + [SMALL_STATE(16642)] = 960866, + [SMALL_STATE(16643)] = 960896, + [SMALL_STATE(16644)] = 960916, + [SMALL_STATE(16645)] = 960936, + [SMALL_STATE(16646)] = 960956, + [SMALL_STATE(16647)] = 960976, + [SMALL_STATE(16648)] = 960996, + [SMALL_STATE(16649)] = 961012, + [SMALL_STATE(16650)] = 961032, + [SMALL_STATE(16651)] = 961052, + [SMALL_STATE(16652)] = 961072, + [SMALL_STATE(16653)] = 961092, + [SMALL_STATE(16654)] = 961108, + [SMALL_STATE(16655)] = 961124, + [SMALL_STATE(16656)] = 961140, + [SMALL_STATE(16657)] = 961160, + [SMALL_STATE(16658)] = 961178, + [SMALL_STATE(16659)] = 961200, + [SMALL_STATE(16660)] = 961222, + [SMALL_STATE(16661)] = 961244, + [SMALL_STATE(16662)] = 961260, + [SMALL_STATE(16663)] = 961276, + [SMALL_STATE(16664)] = 961294, + [SMALL_STATE(16665)] = 961310, + [SMALL_STATE(16666)] = 961330, + [SMALL_STATE(16667)] = 961352, + [SMALL_STATE(16668)] = 961374, + [SMALL_STATE(16669)] = 961392, + [SMALL_STATE(16670)] = 961408, + [SMALL_STATE(16671)] = 961426, + [SMALL_STATE(16672)] = 961455, + [SMALL_STATE(16673)] = 961484, + [SMALL_STATE(16674)] = 961513, + [SMALL_STATE(16675)] = 961542, + [SMALL_STATE(16676)] = 961571, + [SMALL_STATE(16677)] = 961600, + [SMALL_STATE(16678)] = 961615, + [SMALL_STATE(16679)] = 961644, + [SMALL_STATE(16680)] = 961673, + [SMALL_STATE(16681)] = 961702, + [SMALL_STATE(16682)] = 961731, + [SMALL_STATE(16683)] = 961760, + [SMALL_STATE(16684)] = 961789, + [SMALL_STATE(16685)] = 961818, + [SMALL_STATE(16686)] = 961847, + [SMALL_STATE(16687)] = 961876, + [SMALL_STATE(16688)] = 961905, + [SMALL_STATE(16689)] = 961934, + [SMALL_STATE(16690)] = 961963, + [SMALL_STATE(16691)] = 961992, + [SMALL_STATE(16692)] = 962021, + [SMALL_STATE(16693)] = 962050, + [SMALL_STATE(16694)] = 962079, + [SMALL_STATE(16695)] = 962108, + [SMALL_STATE(16696)] = 962137, + [SMALL_STATE(16697)] = 962166, + [SMALL_STATE(16698)] = 962195, + [SMALL_STATE(16699)] = 962224, + [SMALL_STATE(16700)] = 962253, + [SMALL_STATE(16701)] = 962282, + [SMALL_STATE(16702)] = 962311, + [SMALL_STATE(16703)] = 962340, + [SMALL_STATE(16704)] = 962369, + [SMALL_STATE(16705)] = 962398, + [SMALL_STATE(16706)] = 962427, + [SMALL_STATE(16707)] = 962456, + [SMALL_STATE(16708)] = 962485, + [SMALL_STATE(16709)] = 962514, + [SMALL_STATE(16710)] = 962543, + [SMALL_STATE(16711)] = 962558, + [SMALL_STATE(16712)] = 962587, + [SMALL_STATE(16713)] = 962616, + [SMALL_STATE(16714)] = 962645, + [SMALL_STATE(16715)] = 962674, + [SMALL_STATE(16716)] = 962703, + [SMALL_STATE(16717)] = 962732, + [SMALL_STATE(16718)] = 962761, + [SMALL_STATE(16719)] = 962790, + [SMALL_STATE(16720)] = 962805, + [SMALL_STATE(16721)] = 962822, + [SMALL_STATE(16722)] = 962851, + [SMALL_STATE(16723)] = 962880, + [SMALL_STATE(16724)] = 962909, + [SMALL_STATE(16725)] = 962938, + [SMALL_STATE(16726)] = 962967, + [SMALL_STATE(16727)] = 962996, + [SMALL_STATE(16728)] = 963025, + [SMALL_STATE(16729)] = 963054, + [SMALL_STATE(16730)] = 963083, + [SMALL_STATE(16731)] = 963112, + [SMALL_STATE(16732)] = 963141, + [SMALL_STATE(16733)] = 963170, + [SMALL_STATE(16734)] = 963199, + [SMALL_STATE(16735)] = 963228, + [SMALL_STATE(16736)] = 963257, + [SMALL_STATE(16737)] = 963286, + [SMALL_STATE(16738)] = 963315, + [SMALL_STATE(16739)] = 963330, + [SMALL_STATE(16740)] = 963345, + [SMALL_STATE(16741)] = 963374, + [SMALL_STATE(16742)] = 963403, + [SMALL_STATE(16743)] = 963432, + [SMALL_STATE(16744)] = 963461, + [SMALL_STATE(16745)] = 963490, + [SMALL_STATE(16746)] = 963519, + [SMALL_STATE(16747)] = 963548, + [SMALL_STATE(16748)] = 963577, + [SMALL_STATE(16749)] = 963606, + [SMALL_STATE(16750)] = 963635, + [SMALL_STATE(16751)] = 963664, + [SMALL_STATE(16752)] = 963693, + [SMALL_STATE(16753)] = 963722, + [SMALL_STATE(16754)] = 963739, + [SMALL_STATE(16755)] = 963754, + [SMALL_STATE(16756)] = 963783, + [SMALL_STATE(16757)] = 963812, + [SMALL_STATE(16758)] = 963841, + [SMALL_STATE(16759)] = 963870, + [SMALL_STATE(16760)] = 963899, + [SMALL_STATE(16761)] = 963928, + [SMALL_STATE(16762)] = 963957, + [SMALL_STATE(16763)] = 963986, + [SMALL_STATE(16764)] = 964015, + [SMALL_STATE(16765)] = 964044, + [SMALL_STATE(16766)] = 964073, + [SMALL_STATE(16767)] = 964102, + [SMALL_STATE(16768)] = 964131, + [SMALL_STATE(16769)] = 964160, + [SMALL_STATE(16770)] = 964189, + [SMALL_STATE(16771)] = 964206, + [SMALL_STATE(16772)] = 964235, + [SMALL_STATE(16773)] = 964264, + [SMALL_STATE(16774)] = 964293, + [SMALL_STATE(16775)] = 964322, + [SMALL_STATE(16776)] = 964341, + [SMALL_STATE(16777)] = 964370, + [SMALL_STATE(16778)] = 964399, + [SMALL_STATE(16779)] = 964428, + [SMALL_STATE(16780)] = 964457, + [SMALL_STATE(16781)] = 964486, + [SMALL_STATE(16782)] = 964501, + [SMALL_STATE(16783)] = 964530, + [SMALL_STATE(16784)] = 964559, + [SMALL_STATE(16785)] = 964588, + [SMALL_STATE(16786)] = 964617, + [SMALL_STATE(16787)] = 964646, + [SMALL_STATE(16788)] = 964675, + [SMALL_STATE(16789)] = 964704, + [SMALL_STATE(16790)] = 964733, + [SMALL_STATE(16791)] = 964762, + [SMALL_STATE(16792)] = 964791, + [SMALL_STATE(16793)] = 964820, + [SMALL_STATE(16794)] = 964849, + [SMALL_STATE(16795)] = 964864, + [SMALL_STATE(16796)] = 964893, + [SMALL_STATE(16797)] = 964922, + [SMALL_STATE(16798)] = 964951, + [SMALL_STATE(16799)] = 964980, + [SMALL_STATE(16800)] = 965009, + [SMALL_STATE(16801)] = 965024, + [SMALL_STATE(16802)] = 965053, + [SMALL_STATE(16803)] = 965068, + [SMALL_STATE(16804)] = 965083, + [SMALL_STATE(16805)] = 965112, + [SMALL_STATE(16806)] = 965129, + [SMALL_STATE(16807)] = 965158, + [SMALL_STATE(16808)] = 965187, + [SMALL_STATE(16809)] = 965216, + [SMALL_STATE(16810)] = 965245, + [SMALL_STATE(16811)] = 965274, + [SMALL_STATE(16812)] = 965303, + [SMALL_STATE(16813)] = 965332, + [SMALL_STATE(16814)] = 965361, + [SMALL_STATE(16815)] = 965380, + [SMALL_STATE(16816)] = 965409, + [SMALL_STATE(16817)] = 965438, + [SMALL_STATE(16818)] = 965467, + [SMALL_STATE(16819)] = 965496, + [SMALL_STATE(16820)] = 965525, + [SMALL_STATE(16821)] = 965554, + [SMALL_STATE(16822)] = 965583, + [SMALL_STATE(16823)] = 965612, + [SMALL_STATE(16824)] = 965641, + [SMALL_STATE(16825)] = 965670, + [SMALL_STATE(16826)] = 965699, + [SMALL_STATE(16827)] = 965728, + [SMALL_STATE(16828)] = 965757, + [SMALL_STATE(16829)] = 965786, + [SMALL_STATE(16830)] = 965815, + [SMALL_STATE(16831)] = 965844, + [SMALL_STATE(16832)] = 965873, + [SMALL_STATE(16833)] = 965902, + [SMALL_STATE(16834)] = 965931, + [SMALL_STATE(16835)] = 965960, + [SMALL_STATE(16836)] = 965989, + [SMALL_STATE(16837)] = 966018, + [SMALL_STATE(16838)] = 966047, + [SMALL_STATE(16839)] = 966076, + [SMALL_STATE(16840)] = 966105, + [SMALL_STATE(16841)] = 966132, + [SMALL_STATE(16842)] = 966159, + [SMALL_STATE(16843)] = 966186, + [SMALL_STATE(16844)] = 966215, + [SMALL_STATE(16845)] = 966244, + [SMALL_STATE(16846)] = 966273, + [SMALL_STATE(16847)] = 966302, + [SMALL_STATE(16848)] = 966331, + [SMALL_STATE(16849)] = 966360, + [SMALL_STATE(16850)] = 966389, + [SMALL_STATE(16851)] = 966418, + [SMALL_STATE(16852)] = 966447, + [SMALL_STATE(16853)] = 966476, + [SMALL_STATE(16854)] = 966491, + [SMALL_STATE(16855)] = 966520, + [SMALL_STATE(16856)] = 966549, + [SMALL_STATE(16857)] = 966578, + [SMALL_STATE(16858)] = 966607, + [SMALL_STATE(16859)] = 966636, + [SMALL_STATE(16860)] = 966665, + [SMALL_STATE(16861)] = 966694, + [SMALL_STATE(16862)] = 966723, + [SMALL_STATE(16863)] = 966752, + [SMALL_STATE(16864)] = 966781, + [SMALL_STATE(16865)] = 966810, + [SMALL_STATE(16866)] = 966839, + [SMALL_STATE(16867)] = 966868, + [SMALL_STATE(16868)] = 966897, + [SMALL_STATE(16869)] = 966926, + [SMALL_STATE(16870)] = 966945, + [SMALL_STATE(16871)] = 966974, + [SMALL_STATE(16872)] = 967003, + [SMALL_STATE(16873)] = 967032, + [SMALL_STATE(16874)] = 967061, + [SMALL_STATE(16875)] = 967090, + [SMALL_STATE(16876)] = 967119, + [SMALL_STATE(16877)] = 967148, + [SMALL_STATE(16878)] = 967177, + [SMALL_STATE(16879)] = 967206, + [SMALL_STATE(16880)] = 967235, + [SMALL_STATE(16881)] = 967264, + [SMALL_STATE(16882)] = 967293, + [SMALL_STATE(16883)] = 967322, + [SMALL_STATE(16884)] = 967351, + [SMALL_STATE(16885)] = 967380, + [SMALL_STATE(16886)] = 967409, + [SMALL_STATE(16887)] = 967438, + [SMALL_STATE(16888)] = 967467, + [SMALL_STATE(16889)] = 967496, + [SMALL_STATE(16890)] = 967525, + [SMALL_STATE(16891)] = 967554, + [SMALL_STATE(16892)] = 967583, + [SMALL_STATE(16893)] = 967612, + [SMALL_STATE(16894)] = 967641, + [SMALL_STATE(16895)] = 967670, + [SMALL_STATE(16896)] = 967699, + [SMALL_STATE(16897)] = 967728, + [SMALL_STATE(16898)] = 967757, + [SMALL_STATE(16899)] = 967786, + [SMALL_STATE(16900)] = 967815, + [SMALL_STATE(16901)] = 967844, + [SMALL_STATE(16902)] = 967873, + [SMALL_STATE(16903)] = 967902, + [SMALL_STATE(16904)] = 967931, + [SMALL_STATE(16905)] = 967960, + [SMALL_STATE(16906)] = 967989, + [SMALL_STATE(16907)] = 968018, + [SMALL_STATE(16908)] = 968047, + [SMALL_STATE(16909)] = 968076, + [SMALL_STATE(16910)] = 968105, + [SMALL_STATE(16911)] = 968134, + [SMALL_STATE(16912)] = 968163, + [SMALL_STATE(16913)] = 968192, + [SMALL_STATE(16914)] = 968221, + [SMALL_STATE(16915)] = 968250, + [SMALL_STATE(16916)] = 968279, + [SMALL_STATE(16917)] = 968308, + [SMALL_STATE(16918)] = 968337, + [SMALL_STATE(16919)] = 968366, + [SMALL_STATE(16920)] = 968395, + [SMALL_STATE(16921)] = 968424, + [SMALL_STATE(16922)] = 968453, + [SMALL_STATE(16923)] = 968482, + [SMALL_STATE(16924)] = 968511, + [SMALL_STATE(16925)] = 968540, + [SMALL_STATE(16926)] = 968569, + [SMALL_STATE(16927)] = 968598, + [SMALL_STATE(16928)] = 968627, + [SMALL_STATE(16929)] = 968656, + [SMALL_STATE(16930)] = 968685, + [SMALL_STATE(16931)] = 968704, + [SMALL_STATE(16932)] = 968733, + [SMALL_STATE(16933)] = 968762, + [SMALL_STATE(16934)] = 968791, + [SMALL_STATE(16935)] = 968820, + [SMALL_STATE(16936)] = 968849, + [SMALL_STATE(16937)] = 968878, + [SMALL_STATE(16938)] = 968907, + [SMALL_STATE(16939)] = 968936, + [SMALL_STATE(16940)] = 968965, + [SMALL_STATE(16941)] = 968994, + [SMALL_STATE(16942)] = 969023, + [SMALL_STATE(16943)] = 969052, + [SMALL_STATE(16944)] = 969081, + [SMALL_STATE(16945)] = 969110, + [SMALL_STATE(16946)] = 969139, + [SMALL_STATE(16947)] = 969168, + [SMALL_STATE(16948)] = 969197, + [SMALL_STATE(16949)] = 969226, + [SMALL_STATE(16950)] = 969255, + [SMALL_STATE(16951)] = 969274, + [SMALL_STATE(16952)] = 969303, + [SMALL_STATE(16953)] = 969332, + [SMALL_STATE(16954)] = 969361, + [SMALL_STATE(16955)] = 969390, + [SMALL_STATE(16956)] = 969419, + [SMALL_STATE(16957)] = 969448, + [SMALL_STATE(16958)] = 969477, + [SMALL_STATE(16959)] = 969506, + [SMALL_STATE(16960)] = 969535, + [SMALL_STATE(16961)] = 969564, + [SMALL_STATE(16962)] = 969593, + [SMALL_STATE(16963)] = 969622, + [SMALL_STATE(16964)] = 969651, + [SMALL_STATE(16965)] = 969680, + [SMALL_STATE(16966)] = 969709, + [SMALL_STATE(16967)] = 969738, + [SMALL_STATE(16968)] = 969753, + [SMALL_STATE(16969)] = 969782, + [SMALL_STATE(16970)] = 969811, + [SMALL_STATE(16971)] = 969840, + [SMALL_STATE(16972)] = 969869, + [SMALL_STATE(16973)] = 969898, + [SMALL_STATE(16974)] = 969927, + [SMALL_STATE(16975)] = 969956, + [SMALL_STATE(16976)] = 969985, + [SMALL_STATE(16977)] = 970014, + [SMALL_STATE(16978)] = 970029, + [SMALL_STATE(16979)] = 970044, + [SMALL_STATE(16980)] = 970073, + [SMALL_STATE(16981)] = 970102, + [SMALL_STATE(16982)] = 970131, + [SMALL_STATE(16983)] = 970160, + [SMALL_STATE(16984)] = 970177, + [SMALL_STATE(16985)] = 970196, + [SMALL_STATE(16986)] = 970225, + [SMALL_STATE(16987)] = 970254, + [SMALL_STATE(16988)] = 970283, + [SMALL_STATE(16989)] = 970312, + [SMALL_STATE(16990)] = 970341, + [SMALL_STATE(16991)] = 970370, + [SMALL_STATE(16992)] = 970399, + [SMALL_STATE(16993)] = 970428, + [SMALL_STATE(16994)] = 970457, + [SMALL_STATE(16995)] = 970486, + [SMALL_STATE(16996)] = 970515, + [SMALL_STATE(16997)] = 970544, + [SMALL_STATE(16998)] = 970573, + [SMALL_STATE(16999)] = 970602, + [SMALL_STATE(17000)] = 970621, + [SMALL_STATE(17001)] = 970650, + [SMALL_STATE(17002)] = 970679, + [SMALL_STATE(17003)] = 970708, + [SMALL_STATE(17004)] = 970737, + [SMALL_STATE(17005)] = 970766, + [SMALL_STATE(17006)] = 970795, + [SMALL_STATE(17007)] = 970824, + [SMALL_STATE(17008)] = 970853, + [SMALL_STATE(17009)] = 970882, + [SMALL_STATE(17010)] = 970911, + [SMALL_STATE(17011)] = 970940, + [SMALL_STATE(17012)] = 970969, + [SMALL_STATE(17013)] = 970998, + [SMALL_STATE(17014)] = 971027, + [SMALL_STATE(17015)] = 971056, + [SMALL_STATE(17016)] = 971085, + [SMALL_STATE(17017)] = 971114, + [SMALL_STATE(17018)] = 971143, + [SMALL_STATE(17019)] = 971172, + [SMALL_STATE(17020)] = 971201, + [SMALL_STATE(17021)] = 971230, + [SMALL_STATE(17022)] = 971259, + [SMALL_STATE(17023)] = 971288, + [SMALL_STATE(17024)] = 971317, + [SMALL_STATE(17025)] = 971346, + [SMALL_STATE(17026)] = 971375, + [SMALL_STATE(17027)] = 971404, + [SMALL_STATE(17028)] = 971433, + [SMALL_STATE(17029)] = 971462, + [SMALL_STATE(17030)] = 971491, + [SMALL_STATE(17031)] = 971520, + [SMALL_STATE(17032)] = 971549, + [SMALL_STATE(17033)] = 971578, + [SMALL_STATE(17034)] = 971607, + [SMALL_STATE(17035)] = 971636, + [SMALL_STATE(17036)] = 971665, + [SMALL_STATE(17037)] = 971692, + [SMALL_STATE(17038)] = 971721, + [SMALL_STATE(17039)] = 971750, + [SMALL_STATE(17040)] = 971779, + [SMALL_STATE(17041)] = 971808, + [SMALL_STATE(17042)] = 971837, + [SMALL_STATE(17043)] = 971866, + [SMALL_STATE(17044)] = 971895, + [SMALL_STATE(17045)] = 971924, + [SMALL_STATE(17046)] = 971953, + [SMALL_STATE(17047)] = 971982, + [SMALL_STATE(17048)] = 972011, + [SMALL_STATE(17049)] = 972040, + [SMALL_STATE(17050)] = 972069, + [SMALL_STATE(17051)] = 972098, + [SMALL_STATE(17052)] = 972127, + [SMALL_STATE(17053)] = 972156, + [SMALL_STATE(17054)] = 972185, + [SMALL_STATE(17055)] = 972214, + [SMALL_STATE(17056)] = 972243, + [SMALL_STATE(17057)] = 972272, + [SMALL_STATE(17058)] = 972301, + [SMALL_STATE(17059)] = 972330, + [SMALL_STATE(17060)] = 972359, + [SMALL_STATE(17061)] = 972388, + [SMALL_STATE(17062)] = 972417, + [SMALL_STATE(17063)] = 972432, + [SMALL_STATE(17064)] = 972461, + [SMALL_STATE(17065)] = 972490, + [SMALL_STATE(17066)] = 972519, + [SMALL_STATE(17067)] = 972548, + [SMALL_STATE(17068)] = 972577, + [SMALL_STATE(17069)] = 972606, + [SMALL_STATE(17070)] = 972635, + [SMALL_STATE(17071)] = 972664, + [SMALL_STATE(17072)] = 972693, + [SMALL_STATE(17073)] = 972708, + [SMALL_STATE(17074)] = 972737, + [SMALL_STATE(17075)] = 972752, + [SMALL_STATE(17076)] = 972767, + [SMALL_STATE(17077)] = 972796, + [SMALL_STATE(17078)] = 972825, + [SMALL_STATE(17079)] = 972854, + [SMALL_STATE(17080)] = 972883, + [SMALL_STATE(17081)] = 972912, + [SMALL_STATE(17082)] = 972941, + [SMALL_STATE(17083)] = 972970, + [SMALL_STATE(17084)] = 972999, + [SMALL_STATE(17085)] = 973028, + [SMALL_STATE(17086)] = 973057, + [SMALL_STATE(17087)] = 973086, + [SMALL_STATE(17088)] = 973115, + [SMALL_STATE(17089)] = 973144, + [SMALL_STATE(17090)] = 973173, + [SMALL_STATE(17091)] = 973188, + [SMALL_STATE(17092)] = 973217, + [SMALL_STATE(17093)] = 973246, + [SMALL_STATE(17094)] = 973275, + [SMALL_STATE(17095)] = 973304, + [SMALL_STATE(17096)] = 973333, + [SMALL_STATE(17097)] = 973362, + [SMALL_STATE(17098)] = 973391, + [SMALL_STATE(17099)] = 973420, + [SMALL_STATE(17100)] = 973449, + [SMALL_STATE(17101)] = 973478, + [SMALL_STATE(17102)] = 973507, + [SMALL_STATE(17103)] = 973536, + [SMALL_STATE(17104)] = 973565, + [SMALL_STATE(17105)] = 973594, + [SMALL_STATE(17106)] = 973623, + [SMALL_STATE(17107)] = 973652, + [SMALL_STATE(17108)] = 973681, + [SMALL_STATE(17109)] = 973710, + [SMALL_STATE(17110)] = 973739, + [SMALL_STATE(17111)] = 973768, + [SMALL_STATE(17112)] = 973797, + [SMALL_STATE(17113)] = 973826, + [SMALL_STATE(17114)] = 973855, + [SMALL_STATE(17115)] = 973884, + [SMALL_STATE(17116)] = 973913, + [SMALL_STATE(17117)] = 973930, + [SMALL_STATE(17118)] = 973945, + [SMALL_STATE(17119)] = 973974, + [SMALL_STATE(17120)] = 974003, + [SMALL_STATE(17121)] = 974032, + [SMALL_STATE(17122)] = 974061, + [SMALL_STATE(17123)] = 974090, + [SMALL_STATE(17124)] = 974119, + [SMALL_STATE(17125)] = 974148, + [SMALL_STATE(17126)] = 974175, + [SMALL_STATE(17127)] = 974204, + [SMALL_STATE(17128)] = 974233, + [SMALL_STATE(17129)] = 974262, + [SMALL_STATE(17130)] = 974291, + [SMALL_STATE(17131)] = 974320, + [SMALL_STATE(17132)] = 974349, + [SMALL_STATE(17133)] = 974378, + [SMALL_STATE(17134)] = 974407, + [SMALL_STATE(17135)] = 974436, + [SMALL_STATE(17136)] = 974465, + [SMALL_STATE(17137)] = 974494, + [SMALL_STATE(17138)] = 974523, + [SMALL_STATE(17139)] = 974552, + [SMALL_STATE(17140)] = 974581, + [SMALL_STATE(17141)] = 974610, + [SMALL_STATE(17142)] = 974639, + [SMALL_STATE(17143)] = 974656, + [SMALL_STATE(17144)] = 974685, + [SMALL_STATE(17145)] = 974714, + [SMALL_STATE(17146)] = 974743, + [SMALL_STATE(17147)] = 974758, + [SMALL_STATE(17148)] = 974787, + [SMALL_STATE(17149)] = 974816, + [SMALL_STATE(17150)] = 974845, + [SMALL_STATE(17151)] = 974874, + [SMALL_STATE(17152)] = 974903, + [SMALL_STATE(17153)] = 974932, + [SMALL_STATE(17154)] = 974961, + [SMALL_STATE(17155)] = 974976, + [SMALL_STATE(17156)] = 974991, + [SMALL_STATE(17157)] = 975020, + [SMALL_STATE(17158)] = 975049, + [SMALL_STATE(17159)] = 975078, + [SMALL_STATE(17160)] = 975093, + [SMALL_STATE(17161)] = 975108, + [SMALL_STATE(17162)] = 975123, + [SMALL_STATE(17163)] = 975152, + [SMALL_STATE(17164)] = 975181, + [SMALL_STATE(17165)] = 975210, + [SMALL_STATE(17166)] = 975239, + [SMALL_STATE(17167)] = 975268, + [SMALL_STATE(17168)] = 975297, + [SMALL_STATE(17169)] = 975326, + [SMALL_STATE(17170)] = 975355, + [SMALL_STATE(17171)] = 975384, + [SMALL_STATE(17172)] = 975413, + [SMALL_STATE(17173)] = 975442, + [SMALL_STATE(17174)] = 975459, + [SMALL_STATE(17175)] = 975488, + [SMALL_STATE(17176)] = 975503, + [SMALL_STATE(17177)] = 975532, + [SMALL_STATE(17178)] = 975561, + [SMALL_STATE(17179)] = 975588, + [SMALL_STATE(17180)] = 975617, + [SMALL_STATE(17181)] = 975646, + [SMALL_STATE(17182)] = 975675, + [SMALL_STATE(17183)] = 975704, + [SMALL_STATE(17184)] = 975733, + [SMALL_STATE(17185)] = 975762, + [SMALL_STATE(17186)] = 975791, + [SMALL_STATE(17187)] = 975820, + [SMALL_STATE(17188)] = 975849, + [SMALL_STATE(17189)] = 975878, + [SMALL_STATE(17190)] = 975907, + [SMALL_STATE(17191)] = 975936, + [SMALL_STATE(17192)] = 975965, + [SMALL_STATE(17193)] = 975994, + [SMALL_STATE(17194)] = 976023, + [SMALL_STATE(17195)] = 976052, + [SMALL_STATE(17196)] = 976079, + [SMALL_STATE(17197)] = 976108, + [SMALL_STATE(17198)] = 976137, + [SMALL_STATE(17199)] = 976166, + [SMALL_STATE(17200)] = 976195, + [SMALL_STATE(17201)] = 976212, + [SMALL_STATE(17202)] = 976231, + [SMALL_STATE(17203)] = 976256, + [SMALL_STATE(17204)] = 976285, + [SMALL_STATE(17205)] = 976314, + [SMALL_STATE(17206)] = 976343, + [SMALL_STATE(17207)] = 976372, + [SMALL_STATE(17208)] = 976401, + [SMALL_STATE(17209)] = 976428, + [SMALL_STATE(17210)] = 976445, + [SMALL_STATE(17211)] = 976474, + [SMALL_STATE(17212)] = 976503, + [SMALL_STATE(17213)] = 976532, + [SMALL_STATE(17214)] = 976561, + [SMALL_STATE(17215)] = 976590, + [SMALL_STATE(17216)] = 976619, + [SMALL_STATE(17217)] = 976648, + [SMALL_STATE(17218)] = 976677, + [SMALL_STATE(17219)] = 976704, + [SMALL_STATE(17220)] = 976733, + [SMALL_STATE(17221)] = 976762, + [SMALL_STATE(17222)] = 976791, + [SMALL_STATE(17223)] = 976820, + [SMALL_STATE(17224)] = 976835, + [SMALL_STATE(17225)] = 976850, + [SMALL_STATE(17226)] = 976871, + [SMALL_STATE(17227)] = 976886, + [SMALL_STATE(17228)] = 976903, + [SMALL_STATE(17229)] = 976920, + [SMALL_STATE(17230)] = 976949, + [SMALL_STATE(17231)] = 976978, + [SMALL_STATE(17232)] = 977007, + [SMALL_STATE(17233)] = 977036, + [SMALL_STATE(17234)] = 977065, + [SMALL_STATE(17235)] = 977092, + [SMALL_STATE(17236)] = 977113, + [SMALL_STATE(17237)] = 977136, + [SMALL_STATE(17238)] = 977161, + [SMALL_STATE(17239)] = 977180, + [SMALL_STATE(17240)] = 977209, + [SMALL_STATE(17241)] = 977238, + [SMALL_STATE(17242)] = 977267, + [SMALL_STATE(17243)] = 977296, + [SMALL_STATE(17244)] = 977325, + [SMALL_STATE(17245)] = 977344, + [SMALL_STATE(17246)] = 977373, + [SMALL_STATE(17247)] = 977392, + [SMALL_STATE(17248)] = 977411, + [SMALL_STATE(17249)] = 977440, + [SMALL_STATE(17250)] = 977469, + [SMALL_STATE(17251)] = 977498, + [SMALL_STATE(17252)] = 977527, + [SMALL_STATE(17253)] = 977556, + [SMALL_STATE(17254)] = 977585, + [SMALL_STATE(17255)] = 977602, + [SMALL_STATE(17256)] = 977631, + [SMALL_STATE(17257)] = 977654, + [SMALL_STATE(17258)] = 977683, + [SMALL_STATE(17259)] = 977712, + [SMALL_STATE(17260)] = 977741, + [SMALL_STATE(17261)] = 977764, + [SMALL_STATE(17262)] = 977779, + [SMALL_STATE(17263)] = 977794, + [SMALL_STATE(17264)] = 977823, + [SMALL_STATE(17265)] = 977852, + [SMALL_STATE(17266)] = 977881, + [SMALL_STATE(17267)] = 977910, + [SMALL_STATE(17268)] = 977927, + [SMALL_STATE(17269)] = 977956, + [SMALL_STATE(17270)] = 977985, + [SMALL_STATE(17271)] = 978014, + [SMALL_STATE(17272)] = 978043, + [SMALL_STATE(17273)] = 978072, + [SMALL_STATE(17274)] = 978101, + [SMALL_STATE(17275)] = 978116, + [SMALL_STATE(17276)] = 978145, + [SMALL_STATE(17277)] = 978174, + [SMALL_STATE(17278)] = 978203, + [SMALL_STATE(17279)] = 978232, + [SMALL_STATE(17280)] = 978249, + [SMALL_STATE(17281)] = 978278, + [SMALL_STATE(17282)] = 978307, + [SMALL_STATE(17283)] = 978336, + [SMALL_STATE(17284)] = 978353, + [SMALL_STATE(17285)] = 978382, + [SMALL_STATE(17286)] = 978411, + [SMALL_STATE(17287)] = 978440, + [SMALL_STATE(17288)] = 978469, + [SMALL_STATE(17289)] = 978498, + [SMALL_STATE(17290)] = 978515, + [SMALL_STATE(17291)] = 978544, + [SMALL_STATE(17292)] = 978573, + [SMALL_STATE(17293)] = 978602, + [SMALL_STATE(17294)] = 978631, + [SMALL_STATE(17295)] = 978660, + [SMALL_STATE(17296)] = 978689, + [SMALL_STATE(17297)] = 978706, + [SMALL_STATE(17298)] = 978721, + [SMALL_STATE(17299)] = 978744, + [SMALL_STATE(17300)] = 978767, + [SMALL_STATE(17301)] = 978784, + [SMALL_STATE(17302)] = 978813, + [SMALL_STATE(17303)] = 978842, + [SMALL_STATE(17304)] = 978865, + [SMALL_STATE(17305)] = 978888, + [SMALL_STATE(17306)] = 978917, + [SMALL_STATE(17307)] = 978940, + [SMALL_STATE(17308)] = 978965, + [SMALL_STATE(17309)] = 978994, + [SMALL_STATE(17310)] = 979023, + [SMALL_STATE(17311)] = 979052, + [SMALL_STATE(17312)] = 979075, + [SMALL_STATE(17313)] = 979096, + [SMALL_STATE(17314)] = 979117, + [SMALL_STATE(17315)] = 979146, + [SMALL_STATE(17316)] = 979175, + [SMALL_STATE(17317)] = 979204, + [SMALL_STATE(17318)] = 979233, + [SMALL_STATE(17319)] = 979262, + [SMALL_STATE(17320)] = 979291, + [SMALL_STATE(17321)] = 979320, + [SMALL_STATE(17322)] = 979341, + [SMALL_STATE(17323)] = 979362, + [SMALL_STATE(17324)] = 979391, + [SMALL_STATE(17325)] = 979416, + [SMALL_STATE(17326)] = 979445, + [SMALL_STATE(17327)] = 979474, + [SMALL_STATE(17328)] = 979503, + [SMALL_STATE(17329)] = 979518, + [SMALL_STATE(17330)] = 979547, + [SMALL_STATE(17331)] = 979576, + [SMALL_STATE(17332)] = 979605, + [SMALL_STATE(17333)] = 979622, + [SMALL_STATE(17334)] = 979647, + [SMALL_STATE(17335)] = 979676, + [SMALL_STATE(17336)] = 979705, + [SMALL_STATE(17337)] = 979734, + [SMALL_STATE(17338)] = 979763, + [SMALL_STATE(17339)] = 979786, + [SMALL_STATE(17340)] = 979809, + [SMALL_STATE(17341)] = 979826, + [SMALL_STATE(17342)] = 979843, + [SMALL_STATE(17343)] = 979872, + [SMALL_STATE(17344)] = 979901, + [SMALL_STATE(17345)] = 979924, + [SMALL_STATE(17346)] = 979953, + [SMALL_STATE(17347)] = 979982, + [SMALL_STATE(17348)] = 980011, + [SMALL_STATE(17349)] = 980040, + [SMALL_STATE(17350)] = 980069, + [SMALL_STATE(17351)] = 980098, + [SMALL_STATE(17352)] = 980127, + [SMALL_STATE(17353)] = 980150, + [SMALL_STATE(17354)] = 980165, + [SMALL_STATE(17355)] = 980182, + [SMALL_STATE(17356)] = 980199, + [SMALL_STATE(17357)] = 980222, + [SMALL_STATE(17358)] = 980247, + [SMALL_STATE(17359)] = 980276, + [SMALL_STATE(17360)] = 980305, + [SMALL_STATE(17361)] = 980324, + [SMALL_STATE(17362)] = 980343, + [SMALL_STATE(17363)] = 980366, + [SMALL_STATE(17364)] = 980391, + [SMALL_STATE(17365)] = 980406, + [SMALL_STATE(17366)] = 980435, + [SMALL_STATE(17367)] = 980464, + [SMALL_STATE(17368)] = 980479, + [SMALL_STATE(17369)] = 980508, + [SMALL_STATE(17370)] = 980537, + [SMALL_STATE(17371)] = 980552, + [SMALL_STATE(17372)] = 980569, + [SMALL_STATE(17373)] = 980598, + [SMALL_STATE(17374)] = 980613, + [SMALL_STATE(17375)] = 980632, + [SMALL_STATE(17376)] = 980661, + [SMALL_STATE(17377)] = 980690, + [SMALL_STATE(17378)] = 980707, + [SMALL_STATE(17379)] = 980736, + [SMALL_STATE(17380)] = 980759, + [SMALL_STATE(17381)] = 980782, + [SMALL_STATE(17382)] = 980799, + [SMALL_STATE(17383)] = 980828, + [SMALL_STATE(17384)] = 980857, + [SMALL_STATE(17385)] = 980886, + [SMALL_STATE(17386)] = 980915, + [SMALL_STATE(17387)] = 980938, + [SMALL_STATE(17388)] = 980961, + [SMALL_STATE(17389)] = 980978, + [SMALL_STATE(17390)] = 981007, + [SMALL_STATE(17391)] = 981026, + [SMALL_STATE(17392)] = 981055, + [SMALL_STATE(17393)] = 981084, + [SMALL_STATE(17394)] = 981113, + [SMALL_STATE(17395)] = 981130, + [SMALL_STATE(17396)] = 981159, + [SMALL_STATE(17397)] = 981188, + [SMALL_STATE(17398)] = 981217, + [SMALL_STATE(17399)] = 981246, + [SMALL_STATE(17400)] = 981275, + [SMALL_STATE(17401)] = 981292, + [SMALL_STATE(17402)] = 981311, + [SMALL_STATE(17403)] = 981340, + [SMALL_STATE(17404)] = 981369, + [SMALL_STATE(17405)] = 981398, + [SMALL_STATE(17406)] = 981427, + [SMALL_STATE(17407)] = 981456, + [SMALL_STATE(17408)] = 981485, + [SMALL_STATE(17409)] = 981500, + [SMALL_STATE(17410)] = 981529, + [SMALL_STATE(17411)] = 981558, + [SMALL_STATE(17412)] = 981587, + [SMALL_STATE(17413)] = 981616, + [SMALL_STATE(17414)] = 981645, + [SMALL_STATE(17415)] = 981674, + [SMALL_STATE(17416)] = 981703, + [SMALL_STATE(17417)] = 981732, + [SMALL_STATE(17418)] = 981761, + [SMALL_STATE(17419)] = 981790, + [SMALL_STATE(17420)] = 981819, + [SMALL_STATE(17421)] = 981836, + [SMALL_STATE(17422)] = 981865, + [SMALL_STATE(17423)] = 981884, + [SMALL_STATE(17424)] = 981913, + [SMALL_STATE(17425)] = 981942, + [SMALL_STATE(17426)] = 981959, + [SMALL_STATE(17427)] = 981988, + [SMALL_STATE(17428)] = 982017, + [SMALL_STATE(17429)] = 982046, + [SMALL_STATE(17430)] = 982075, + [SMALL_STATE(17431)] = 982104, + [SMALL_STATE(17432)] = 982133, + [SMALL_STATE(17433)] = 982162, + [SMALL_STATE(17434)] = 982191, + [SMALL_STATE(17435)] = 982210, + [SMALL_STATE(17436)] = 982239, + [SMALL_STATE(17437)] = 982268, + [SMALL_STATE(17438)] = 982297, + [SMALL_STATE(17439)] = 982326, + [SMALL_STATE(17440)] = 982355, + [SMALL_STATE(17441)] = 982384, + [SMALL_STATE(17442)] = 982413, + [SMALL_STATE(17443)] = 982442, + [SMALL_STATE(17444)] = 982471, + [SMALL_STATE(17445)] = 982500, + [SMALL_STATE(17446)] = 982529, + [SMALL_STATE(17447)] = 982558, + [SMALL_STATE(17448)] = 982587, + [SMALL_STATE(17449)] = 982616, + [SMALL_STATE(17450)] = 982645, + [SMALL_STATE(17451)] = 982674, + [SMALL_STATE(17452)] = 982703, + [SMALL_STATE(17453)] = 982732, + [SMALL_STATE(17454)] = 982761, + [SMALL_STATE(17455)] = 982790, + [SMALL_STATE(17456)] = 982819, + [SMALL_STATE(17457)] = 982848, + [SMALL_STATE(17458)] = 982877, + [SMALL_STATE(17459)] = 982906, + [SMALL_STATE(17460)] = 982935, + [SMALL_STATE(17461)] = 982964, + [SMALL_STATE(17462)] = 982993, + [SMALL_STATE(17463)] = 983022, + [SMALL_STATE(17464)] = 983051, + [SMALL_STATE(17465)] = 983080, + [SMALL_STATE(17466)] = 983109, + [SMALL_STATE(17467)] = 983138, + [SMALL_STATE(17468)] = 983167, + [SMALL_STATE(17469)] = 983196, + [SMALL_STATE(17470)] = 983215, + [SMALL_STATE(17471)] = 983244, + [SMALL_STATE(17472)] = 983273, + [SMALL_STATE(17473)] = 983292, + [SMALL_STATE(17474)] = 983321, + [SMALL_STATE(17475)] = 983350, + [SMALL_STATE(17476)] = 983369, + [SMALL_STATE(17477)] = 983398, + [SMALL_STATE(17478)] = 983427, + [SMALL_STATE(17479)] = 983456, + [SMALL_STATE(17480)] = 983483, + [SMALL_STATE(17481)] = 983512, + [SMALL_STATE(17482)] = 983541, + [SMALL_STATE(17483)] = 983570, + [SMALL_STATE(17484)] = 983599, + [SMALL_STATE(17485)] = 983628, + [SMALL_STATE(17486)] = 983657, + [SMALL_STATE(17487)] = 983672, + [SMALL_STATE(17488)] = 983701, + [SMALL_STATE(17489)] = 983730, + [SMALL_STATE(17490)] = 983749, + [SMALL_STATE(17491)] = 983778, + [SMALL_STATE(17492)] = 983807, + [SMALL_STATE(17493)] = 983836, + [SMALL_STATE(17494)] = 983865, + [SMALL_STATE(17495)] = 983894, + [SMALL_STATE(17496)] = 983923, + [SMALL_STATE(17497)] = 983952, + [SMALL_STATE(17498)] = 983981, + [SMALL_STATE(17499)] = 984010, + [SMALL_STATE(17500)] = 984039, + [SMALL_STATE(17501)] = 984068, + [SMALL_STATE(17502)] = 984097, + [SMALL_STATE(17503)] = 984126, + [SMALL_STATE(17504)] = 984155, + [SMALL_STATE(17505)] = 984184, + [SMALL_STATE(17506)] = 984213, + [SMALL_STATE(17507)] = 984242, + [SMALL_STATE(17508)] = 984271, + [SMALL_STATE(17509)] = 984300, + [SMALL_STATE(17510)] = 984329, + [SMALL_STATE(17511)] = 984358, + [SMALL_STATE(17512)] = 984387, + [SMALL_STATE(17513)] = 984416, + [SMALL_STATE(17514)] = 984445, + [SMALL_STATE(17515)] = 984474, + [SMALL_STATE(17516)] = 984503, + [SMALL_STATE(17517)] = 984532, + [SMALL_STATE(17518)] = 984561, + [SMALL_STATE(17519)] = 984590, + [SMALL_STATE(17520)] = 984619, + [SMALL_STATE(17521)] = 984646, + [SMALL_STATE(17522)] = 984675, + [SMALL_STATE(17523)] = 984702, + [SMALL_STATE(17524)] = 984731, + [SMALL_STATE(17525)] = 984758, + [SMALL_STATE(17526)] = 984787, + [SMALL_STATE(17527)] = 984806, + [SMALL_STATE(17528)] = 984835, + [SMALL_STATE(17529)] = 984864, + [SMALL_STATE(17530)] = 984893, + [SMALL_STATE(17531)] = 984922, + [SMALL_STATE(17532)] = 984951, + [SMALL_STATE(17533)] = 984978, + [SMALL_STATE(17534)] = 985007, + [SMALL_STATE(17535)] = 985034, + [SMALL_STATE(17536)] = 985061, + [SMALL_STATE(17537)] = 985090, + [SMALL_STATE(17538)] = 985119, + [SMALL_STATE(17539)] = 985148, + [SMALL_STATE(17540)] = 985177, + [SMALL_STATE(17541)] = 985206, + [SMALL_STATE(17542)] = 985235, + [SMALL_STATE(17543)] = 985264, + [SMALL_STATE(17544)] = 985293, + [SMALL_STATE(17545)] = 985322, + [SMALL_STATE(17546)] = 985349, + [SMALL_STATE(17547)] = 985378, + [SMALL_STATE(17548)] = 985405, + [SMALL_STATE(17549)] = 985424, + [SMALL_STATE(17550)] = 985443, + [SMALL_STATE(17551)] = 985462, + [SMALL_STATE(17552)] = 985491, + [SMALL_STATE(17553)] = 985520, + [SMALL_STATE(17554)] = 985549, + [SMALL_STATE(17555)] = 985578, + [SMALL_STATE(17556)] = 985607, + [SMALL_STATE(17557)] = 985636, + [SMALL_STATE(17558)] = 985663, + [SMALL_STATE(17559)] = 985690, + [SMALL_STATE(17560)] = 985719, + [SMALL_STATE(17561)] = 985738, + [SMALL_STATE(17562)] = 985757, + [SMALL_STATE(17563)] = 985776, + [SMALL_STATE(17564)] = 985805, + [SMALL_STATE(17565)] = 985834, + [SMALL_STATE(17566)] = 985863, + [SMALL_STATE(17567)] = 985892, + [SMALL_STATE(17568)] = 985921, + [SMALL_STATE(17569)] = 985940, + [SMALL_STATE(17570)] = 985959, + [SMALL_STATE(17571)] = 985988, + [SMALL_STATE(17572)] = 986017, + [SMALL_STATE(17573)] = 986036, + [SMALL_STATE(17574)] = 986055, + [SMALL_STATE(17575)] = 986074, + [SMALL_STATE(17576)] = 986103, + [SMALL_STATE(17577)] = 986132, + [SMALL_STATE(17578)] = 986161, + [SMALL_STATE(17579)] = 986190, + [SMALL_STATE(17580)] = 986219, + [SMALL_STATE(17581)] = 986238, + [SMALL_STATE(17582)] = 986257, + [SMALL_STATE(17583)] = 986276, + [SMALL_STATE(17584)] = 986305, + [SMALL_STATE(17585)] = 986334, + [SMALL_STATE(17586)] = 986353, + [SMALL_STATE(17587)] = 986372, + [SMALL_STATE(17588)] = 986391, + [SMALL_STATE(17589)] = 986410, + [SMALL_STATE(17590)] = 986429, + [SMALL_STATE(17591)] = 986448, + [SMALL_STATE(17592)] = 986467, + [SMALL_STATE(17593)] = 986496, + [SMALL_STATE(17594)] = 986525, + [SMALL_STATE(17595)] = 986554, + [SMALL_STATE(17596)] = 986581, + [SMALL_STATE(17597)] = 986610, + [SMALL_STATE(17598)] = 986639, + [SMALL_STATE(17599)] = 986668, + [SMALL_STATE(17600)] = 986695, + [SMALL_STATE(17601)] = 986714, + [SMALL_STATE(17602)] = 986733, + [SMALL_STATE(17603)] = 986762, + [SMALL_STATE(17604)] = 986791, + [SMALL_STATE(17605)] = 986820, + [SMALL_STATE(17606)] = 986849, + [SMALL_STATE(17607)] = 986878, + [SMALL_STATE(17608)] = 986907, + [SMALL_STATE(17609)] = 986936, + [SMALL_STATE(17610)] = 986965, + [SMALL_STATE(17611)] = 986994, + [SMALL_STATE(17612)] = 987023, + [SMALL_STATE(17613)] = 987052, + [SMALL_STATE(17614)] = 987071, + [SMALL_STATE(17615)] = 987090, + [SMALL_STATE(17616)] = 987107, + [SMALL_STATE(17617)] = 987126, + [SMALL_STATE(17618)] = 987145, + [SMALL_STATE(17619)] = 987174, + [SMALL_STATE(17620)] = 987203, + [SMALL_STATE(17621)] = 987232, + [SMALL_STATE(17622)] = 987261, + [SMALL_STATE(17623)] = 987290, + [SMALL_STATE(17624)] = 987319, + [SMALL_STATE(17625)] = 987348, + [SMALL_STATE(17626)] = 987365, + [SMALL_STATE(17627)] = 987394, + [SMALL_STATE(17628)] = 987423, + [SMALL_STATE(17629)] = 987452, + [SMALL_STATE(17630)] = 987481, + [SMALL_STATE(17631)] = 987506, + [SMALL_STATE(17632)] = 987535, + [SMALL_STATE(17633)] = 987564, + [SMALL_STATE(17634)] = 987593, + [SMALL_STATE(17635)] = 987622, + [SMALL_STATE(17636)] = 987651, + [SMALL_STATE(17637)] = 987680, + [SMALL_STATE(17638)] = 987709, + [SMALL_STATE(17639)] = 987726, + [SMALL_STATE(17640)] = 987755, + [SMALL_STATE(17641)] = 987784, + [SMALL_STATE(17642)] = 987813, + [SMALL_STATE(17643)] = 987842, + [SMALL_STATE(17644)] = 987871, + [SMALL_STATE(17645)] = 987900, + [SMALL_STATE(17646)] = 987929, + [SMALL_STATE(17647)] = 987946, + [SMALL_STATE(17648)] = 987975, + [SMALL_STATE(17649)] = 988004, + [SMALL_STATE(17650)] = 988033, + [SMALL_STATE(17651)] = 988062, + [SMALL_STATE(17652)] = 988091, + [SMALL_STATE(17653)] = 988120, + [SMALL_STATE(17654)] = 988149, + [SMALL_STATE(17655)] = 988176, + [SMALL_STATE(17656)] = 988203, + [SMALL_STATE(17657)] = 988232, + [SMALL_STATE(17658)] = 988261, + [SMALL_STATE(17659)] = 988290, + [SMALL_STATE(17660)] = 988319, + [SMALL_STATE(17661)] = 988348, + [SMALL_STATE(17662)] = 988377, + [SMALL_STATE(17663)] = 988406, + [SMALL_STATE(17664)] = 988435, + [SMALL_STATE(17665)] = 988464, + [SMALL_STATE(17666)] = 988493, + [SMALL_STATE(17667)] = 988522, + [SMALL_STATE(17668)] = 988551, + [SMALL_STATE(17669)] = 988580, + [SMALL_STATE(17670)] = 988609, + [SMALL_STATE(17671)] = 988638, + [SMALL_STATE(17672)] = 988653, + [SMALL_STATE(17673)] = 988682, + [SMALL_STATE(17674)] = 988711, + [SMALL_STATE(17675)] = 988740, + [SMALL_STATE(17676)] = 988769, + [SMALL_STATE(17677)] = 988798, + [SMALL_STATE(17678)] = 988827, + [SMALL_STATE(17679)] = 988856, + [SMALL_STATE(17680)] = 988885, + [SMALL_STATE(17681)] = 988914, + [SMALL_STATE(17682)] = 988943, + [SMALL_STATE(17683)] = 988972, + [SMALL_STATE(17684)] = 989001, + [SMALL_STATE(17685)] = 989030, + [SMALL_STATE(17686)] = 989059, + [SMALL_STATE(17687)] = 989088, + [SMALL_STATE(17688)] = 989117, + [SMALL_STATE(17689)] = 989146, + [SMALL_STATE(17690)] = 989175, + [SMALL_STATE(17691)] = 989204, + [SMALL_STATE(17692)] = 989233, + [SMALL_STATE(17693)] = 989262, + [SMALL_STATE(17694)] = 989291, + [SMALL_STATE(17695)] = 989320, + [SMALL_STATE(17696)] = 989339, + [SMALL_STATE(17697)] = 989368, + [SMALL_STATE(17698)] = 989397, + [SMALL_STATE(17699)] = 989426, + [SMALL_STATE(17700)] = 989455, + [SMALL_STATE(17701)] = 989484, + [SMALL_STATE(17702)] = 989508, + [SMALL_STATE(17703)] = 989522, + [SMALL_STATE(17704)] = 989544, + [SMALL_STATE(17705)] = 989566, + [SMALL_STATE(17706)] = 989590, + [SMALL_STATE(17707)] = 989612, + [SMALL_STATE(17708)] = 989628, + [SMALL_STATE(17709)] = 989644, + [SMALL_STATE(17710)] = 989660, + [SMALL_STATE(17711)] = 989684, + [SMALL_STATE(17712)] = 989700, + [SMALL_STATE(17713)] = 989724, + [SMALL_STATE(17714)] = 989738, + [SMALL_STATE(17715)] = 989754, + [SMALL_STATE(17716)] = 989780, + [SMALL_STATE(17717)] = 989796, + [SMALL_STATE(17718)] = 989812, + [SMALL_STATE(17719)] = 989830, + [SMALL_STATE(17720)] = 989848, + [SMALL_STATE(17721)] = 989866, + [SMALL_STATE(17722)] = 989882, + [SMALL_STATE(17723)] = 989900, + [SMALL_STATE(17724)] = 989926, + [SMALL_STATE(17725)] = 989952, + [SMALL_STATE(17726)] = 989974, + [SMALL_STATE(17727)] = 989990, + [SMALL_STATE(17728)] = 990012, + [SMALL_STATE(17729)] = 990034, + [SMALL_STATE(17730)] = 990060, + [SMALL_STATE(17731)] = 990076, + [SMALL_STATE(17732)] = 990098, + [SMALL_STATE(17733)] = 990120, + [SMALL_STATE(17734)] = 990144, + [SMALL_STATE(17735)] = 990168, + [SMALL_STATE(17736)] = 990184, + [SMALL_STATE(17737)] = 990208, + [SMALL_STATE(17738)] = 990224, + [SMALL_STATE(17739)] = 990248, + [SMALL_STATE(17740)] = 990274, + [SMALL_STATE(17741)] = 990300, + [SMALL_STATE(17742)] = 990322, + [SMALL_STATE(17743)] = 990344, + [SMALL_STATE(17744)] = 990366, + [SMALL_STATE(17745)] = 990390, + [SMALL_STATE(17746)] = 990412, + [SMALL_STATE(17747)] = 990430, + [SMALL_STATE(17748)] = 990456, + [SMALL_STATE(17749)] = 990470, + [SMALL_STATE(17750)] = 990492, + [SMALL_STATE(17751)] = 990508, + [SMALL_STATE(17752)] = 990522, + [SMALL_STATE(17753)] = 990548, + [SMALL_STATE(17754)] = 990564, + [SMALL_STATE(17755)] = 990590, + [SMALL_STATE(17756)] = 990608, + [SMALL_STATE(17757)] = 990622, + [SMALL_STATE(17758)] = 990640, + [SMALL_STATE(17759)] = 990662, + [SMALL_STATE(17760)] = 990688, + [SMALL_STATE(17761)] = 990710, + [SMALL_STATE(17762)] = 990732, + [SMALL_STATE(17763)] = 990746, + [SMALL_STATE(17764)] = 990772, + [SMALL_STATE(17765)] = 990788, + [SMALL_STATE(17766)] = 990814, + [SMALL_STATE(17767)] = 990836, + [SMALL_STATE(17768)] = 990852, + [SMALL_STATE(17769)] = 990874, + [SMALL_STATE(17770)] = 990896, + [SMALL_STATE(17771)] = 990910, + [SMALL_STATE(17772)] = 990926, + [SMALL_STATE(17773)] = 990942, + [SMALL_STATE(17774)] = 990960, + [SMALL_STATE(17775)] = 990978, + [SMALL_STATE(17776)] = 990994, + [SMALL_STATE(17777)] = 991014, + [SMALL_STATE(17778)] = 991034, + [SMALL_STATE(17779)] = 991048, + [SMALL_STATE(17780)] = 991064, + [SMALL_STATE(17781)] = 991080, + [SMALL_STATE(17782)] = 991096, + [SMALL_STATE(17783)] = 991120, + [SMALL_STATE(17784)] = 991144, + [SMALL_STATE(17785)] = 991170, + [SMALL_STATE(17786)] = 991194, + [SMALL_STATE(17787)] = 991210, + [SMALL_STATE(17788)] = 991236, + [SMALL_STATE(17789)] = 991260, + [SMALL_STATE(17790)] = 991286, + [SMALL_STATE(17791)] = 991306, + [SMALL_STATE(17792)] = 991322, + [SMALL_STATE(17793)] = 991338, + [SMALL_STATE(17794)] = 991354, + [SMALL_STATE(17795)] = 991378, + [SMALL_STATE(17796)] = 991398, + [SMALL_STATE(17797)] = 991414, + [SMALL_STATE(17798)] = 991440, + [SMALL_STATE(17799)] = 991462, + [SMALL_STATE(17800)] = 991480, + [SMALL_STATE(17801)] = 991502, + [SMALL_STATE(17802)] = 991524, + [SMALL_STATE(17803)] = 991546, + [SMALL_STATE(17804)] = 991564, + [SMALL_STATE(17805)] = 991582, + [SMALL_STATE(17806)] = 991608, + [SMALL_STATE(17807)] = 991630, + [SMALL_STATE(17808)] = 991654, + [SMALL_STATE(17809)] = 991678, + [SMALL_STATE(17810)] = 991696, + [SMALL_STATE(17811)] = 991718, + [SMALL_STATE(17812)] = 991740, + [SMALL_STATE(17813)] = 991762, + [SMALL_STATE(17814)] = 991784, + [SMALL_STATE(17815)] = 991800, + [SMALL_STATE(17816)] = 991820, + [SMALL_STATE(17817)] = 991836, + [SMALL_STATE(17818)] = 991858, + [SMALL_STATE(17819)] = 991874, + [SMALL_STATE(17820)] = 991898, + [SMALL_STATE(17821)] = 991916, + [SMALL_STATE(17822)] = 991932, + [SMALL_STATE(17823)] = 991956, + [SMALL_STATE(17824)] = 991978, + [SMALL_STATE(17825)] = 991994, + [SMALL_STATE(17826)] = 992016, + [SMALL_STATE(17827)] = 992038, + [SMALL_STATE(17828)] = 992054, + [SMALL_STATE(17829)] = 992072, + [SMALL_STATE(17830)] = 992098, + [SMALL_STATE(17831)] = 992116, + [SMALL_STATE(17832)] = 992134, + [SMALL_STATE(17833)] = 992150, + [SMALL_STATE(17834)] = 992168, + [SMALL_STATE(17835)] = 992190, + [SMALL_STATE(17836)] = 992212, + [SMALL_STATE(17837)] = 992230, + [SMALL_STATE(17838)] = 992246, + [SMALL_STATE(17839)] = 992268, + [SMALL_STATE(17840)] = 992284, + [SMALL_STATE(17841)] = 992310, + [SMALL_STATE(17842)] = 992336, + [SMALL_STATE(17843)] = 992360, + [SMALL_STATE(17844)] = 992376, + [SMALL_STATE(17845)] = 992400, + [SMALL_STATE(17846)] = 992422, + [SMALL_STATE(17847)] = 992446, + [SMALL_STATE(17848)] = 992462, + [SMALL_STATE(17849)] = 992484, + [SMALL_STATE(17850)] = 992498, + [SMALL_STATE(17851)] = 992514, + [SMALL_STATE(17852)] = 992538, + [SMALL_STATE(17853)] = 992554, + [SMALL_STATE(17854)] = 992570, + [SMALL_STATE(17855)] = 992588, + [SMALL_STATE(17856)] = 992614, + [SMALL_STATE(17857)] = 992630, + [SMALL_STATE(17858)] = 992648, + [SMALL_STATE(17859)] = 992664, + [SMALL_STATE(17860)] = 992690, + [SMALL_STATE(17861)] = 992708, + [SMALL_STATE(17862)] = 992726, + [SMALL_STATE(17863)] = 992752, + [SMALL_STATE(17864)] = 992774, + [SMALL_STATE(17865)] = 992796, + [SMALL_STATE(17866)] = 992814, + [SMALL_STATE(17867)] = 992836, + [SMALL_STATE(17868)] = 992854, + [SMALL_STATE(17869)] = 992872, + [SMALL_STATE(17870)] = 992886, + [SMALL_STATE(17871)] = 992904, + [SMALL_STATE(17872)] = 992920, + [SMALL_STATE(17873)] = 992938, + [SMALL_STATE(17874)] = 992964, + [SMALL_STATE(17875)] = 992980, + [SMALL_STATE(17876)] = 992998, + [SMALL_STATE(17877)] = 993014, + [SMALL_STATE(17878)] = 993036, + [SMALL_STATE(17879)] = 993062, + [SMALL_STATE(17880)] = 993088, + [SMALL_STATE(17881)] = 993106, + [SMALL_STATE(17882)] = 993124, + [SMALL_STATE(17883)] = 993140, + [SMALL_STATE(17884)] = 993158, + [SMALL_STATE(17885)] = 993172, + [SMALL_STATE(17886)] = 993196, + [SMALL_STATE(17887)] = 993218, + [SMALL_STATE(17888)] = 993234, + [SMALL_STATE(17889)] = 993260, + [SMALL_STATE(17890)] = 993276, + [SMALL_STATE(17891)] = 993300, + [SMALL_STATE(17892)] = 993324, + [SMALL_STATE(17893)] = 993340, + [SMALL_STATE(17894)] = 993366, + [SMALL_STATE(17895)] = 993388, + [SMALL_STATE(17896)] = 993402, + [SMALL_STATE(17897)] = 993428, + [SMALL_STATE(17898)] = 993454, + [SMALL_STATE(17899)] = 993472, + [SMALL_STATE(17900)] = 993488, + [SMALL_STATE(17901)] = 993504, + [SMALL_STATE(17902)] = 993520, + [SMALL_STATE(17903)] = 993538, + [SMALL_STATE(17904)] = 993554, + [SMALL_STATE(17905)] = 993572, + [SMALL_STATE(17906)] = 993588, + [SMALL_STATE(17907)] = 993610, + [SMALL_STATE(17908)] = 993628, + [SMALL_STATE(17909)] = 993644, + [SMALL_STATE(17910)] = 993666, + [SMALL_STATE(17911)] = 993690, + [SMALL_STATE(17912)] = 993708, + [SMALL_STATE(17913)] = 993726, + [SMALL_STATE(17914)] = 993742, + [SMALL_STATE(17915)] = 993768, + [SMALL_STATE(17916)] = 993790, + [SMALL_STATE(17917)] = 993808, + [SMALL_STATE(17918)] = 993830, + [SMALL_STATE(17919)] = 993846, + [SMALL_STATE(17920)] = 993872, + [SMALL_STATE(17921)] = 993898, + [SMALL_STATE(17922)] = 993918, + [SMALL_STATE(17923)] = 993942, + [SMALL_STATE(17924)] = 993964, + [SMALL_STATE(17925)] = 993986, + [SMALL_STATE(17926)] = 994002, + [SMALL_STATE(17927)] = 994020, + [SMALL_STATE(17928)] = 994044, + [SMALL_STATE(17929)] = 994060, + [SMALL_STATE(17930)] = 994084, + [SMALL_STATE(17931)] = 994106, + [SMALL_STATE(17932)] = 994122, + [SMALL_STATE(17933)] = 994138, + [SMALL_STATE(17934)] = 994164, + [SMALL_STATE(17935)] = 994190, + [SMALL_STATE(17936)] = 994206, + [SMALL_STATE(17937)] = 994228, + [SMALL_STATE(17938)] = 994254, + [SMALL_STATE(17939)] = 994276, + [SMALL_STATE(17940)] = 994298, + [SMALL_STATE(17941)] = 994320, + [SMALL_STATE(17942)] = 994336, + [SMALL_STATE(17943)] = 994360, + [SMALL_STATE(17944)] = 994386, + [SMALL_STATE(17945)] = 994402, + [SMALL_STATE(17946)] = 994424, + [SMALL_STATE(17947)] = 994438, + [SMALL_STATE(17948)] = 994452, + [SMALL_STATE(17949)] = 994468, + [SMALL_STATE(17950)] = 994490, + [SMALL_STATE(17951)] = 994516, + [SMALL_STATE(17952)] = 994532, + [SMALL_STATE(17953)] = 994548, + [SMALL_STATE(17954)] = 994564, + [SMALL_STATE(17955)] = 994580, + [SMALL_STATE(17956)] = 994602, + [SMALL_STATE(17957)] = 994624, + [SMALL_STATE(17958)] = 994646, + [SMALL_STATE(17959)] = 994668, + [SMALL_STATE(17960)] = 994690, + [SMALL_STATE(17961)] = 994716, + [SMALL_STATE(17962)] = 994738, + [SMALL_STATE(17963)] = 994760, + [SMALL_STATE(17964)] = 994776, + [SMALL_STATE(17965)] = 994794, + [SMALL_STATE(17966)] = 994820, + [SMALL_STATE(17967)] = 994839, + [SMALL_STATE(17968)] = 994858, + [SMALL_STATE(17969)] = 994877, + [SMALL_STATE(17970)] = 994896, + [SMALL_STATE(17971)] = 994919, + [SMALL_STATE(17972)] = 994932, + [SMALL_STATE(17973)] = 994947, + [SMALL_STATE(17974)] = 994966, + [SMALL_STATE(17975)] = 994989, + [SMALL_STATE(17976)] = 995008, + [SMALL_STATE(17977)] = 995027, + [SMALL_STATE(17978)] = 995046, + [SMALL_STATE(17979)] = 995069, + [SMALL_STATE(17980)] = 995088, + [SMALL_STATE(17981)] = 995109, + [SMALL_STATE(17982)] = 995124, + [SMALL_STATE(17983)] = 995143, + [SMALL_STATE(17984)] = 995162, + [SMALL_STATE(17985)] = 995181, + [SMALL_STATE(17986)] = 995204, + [SMALL_STATE(17987)] = 995225, + [SMALL_STATE(17988)] = 995248, + [SMALL_STATE(17989)] = 995267, + [SMALL_STATE(17990)] = 995290, + [SMALL_STATE(17991)] = 995313, + [SMALL_STATE(17992)] = 995332, + [SMALL_STATE(17993)] = 995351, + [SMALL_STATE(17994)] = 995370, + [SMALL_STATE(17995)] = 995393, + [SMALL_STATE(17996)] = 995412, + [SMALL_STATE(17997)] = 995435, + [SMALL_STATE(17998)] = 995454, + [SMALL_STATE(17999)] = 995477, + [SMALL_STATE(18000)] = 995496, + [SMALL_STATE(18001)] = 995515, + [SMALL_STATE(18002)] = 995534, + [SMALL_STATE(18003)] = 995553, + [SMALL_STATE(18004)] = 995576, + [SMALL_STATE(18005)] = 995595, + [SMALL_STATE(18006)] = 995616, + [SMALL_STATE(18007)] = 995639, + [SMALL_STATE(18008)] = 995658, + [SMALL_STATE(18009)] = 995677, + [SMALL_STATE(18010)] = 995696, + [SMALL_STATE(18011)] = 995715, + [SMALL_STATE(18012)] = 995738, + [SMALL_STATE(18013)] = 995757, + [SMALL_STATE(18014)] = 995780, + [SMALL_STATE(18015)] = 995799, + [SMALL_STATE(18016)] = 995818, + [SMALL_STATE(18017)] = 995841, + [SMALL_STATE(18018)] = 995864, + [SMALL_STATE(18019)] = 995887, + [SMALL_STATE(18020)] = 995910, + [SMALL_STATE(18021)] = 995933, + [SMALL_STATE(18022)] = 995952, + [SMALL_STATE(18023)] = 995969, + [SMALL_STATE(18024)] = 995992, + [SMALL_STATE(18025)] = 996011, + [SMALL_STATE(18026)] = 996034, + [SMALL_STATE(18027)] = 996053, + [SMALL_STATE(18028)] = 996068, + [SMALL_STATE(18029)] = 996091, + [SMALL_STATE(18030)] = 996114, + [SMALL_STATE(18031)] = 996137, + [SMALL_STATE(18032)] = 996154, + [SMALL_STATE(18033)] = 996173, + [SMALL_STATE(18034)] = 996196, + [SMALL_STATE(18035)] = 996215, + [SMALL_STATE(18036)] = 996238, + [SMALL_STATE(18037)] = 996261, + [SMALL_STATE(18038)] = 996280, + [SMALL_STATE(18039)] = 996303, + [SMALL_STATE(18040)] = 996326, + [SMALL_STATE(18041)] = 996347, + [SMALL_STATE(18042)] = 996368, + [SMALL_STATE(18043)] = 996387, + [SMALL_STATE(18044)] = 996410, + [SMALL_STATE(18045)] = 996423, + [SMALL_STATE(18046)] = 996442, + [SMALL_STATE(18047)] = 996463, + [SMALL_STATE(18048)] = 996486, + [SMALL_STATE(18049)] = 996509, + [SMALL_STATE(18050)] = 996532, + [SMALL_STATE(18051)] = 996555, + [SMALL_STATE(18052)] = 996574, + [SMALL_STATE(18053)] = 996597, + [SMALL_STATE(18054)] = 996616, + [SMALL_STATE(18055)] = 996639, + [SMALL_STATE(18056)] = 996662, + [SMALL_STATE(18057)] = 996681, + [SMALL_STATE(18058)] = 996704, + [SMALL_STATE(18059)] = 996723, + [SMALL_STATE(18060)] = 996746, + [SMALL_STATE(18061)] = 996769, + [SMALL_STATE(18062)] = 996788, + [SMALL_STATE(18063)] = 996807, + [SMALL_STATE(18064)] = 996830, + [SMALL_STATE(18065)] = 996853, + [SMALL_STATE(18066)] = 996876, + [SMALL_STATE(18067)] = 996899, + [SMALL_STATE(18068)] = 996922, + [SMALL_STATE(18069)] = 996941, + [SMALL_STATE(18070)] = 996964, + [SMALL_STATE(18071)] = 996983, + [SMALL_STATE(18072)] = 997002, + [SMALL_STATE(18073)] = 997023, + [SMALL_STATE(18074)] = 997042, + [SMALL_STATE(18075)] = 997061, + [SMALL_STATE(18076)] = 997080, + [SMALL_STATE(18077)] = 997099, + [SMALL_STATE(18078)] = 997122, + [SMALL_STATE(18079)] = 997141, + [SMALL_STATE(18080)] = 997160, + [SMALL_STATE(18081)] = 997179, + [SMALL_STATE(18082)] = 997198, + [SMALL_STATE(18083)] = 997217, + [SMALL_STATE(18084)] = 997240, + [SMALL_STATE(18085)] = 997259, + [SMALL_STATE(18086)] = 997278, + [SMALL_STATE(18087)] = 997297, + [SMALL_STATE(18088)] = 997316, + [SMALL_STATE(18089)] = 997335, + [SMALL_STATE(18090)] = 997358, + [SMALL_STATE(18091)] = 997381, + [SMALL_STATE(18092)] = 997404, + [SMALL_STATE(18093)] = 997423, + [SMALL_STATE(18094)] = 997442, + [SMALL_STATE(18095)] = 997465, + [SMALL_STATE(18096)] = 997484, + [SMALL_STATE(18097)] = 997505, + [SMALL_STATE(18098)] = 997524, + [SMALL_STATE(18099)] = 997545, + [SMALL_STATE(18100)] = 997568, + [SMALL_STATE(18101)] = 997587, + [SMALL_STATE(18102)] = 997600, + [SMALL_STATE(18103)] = 997619, + [SMALL_STATE(18104)] = 997638, + [SMALL_STATE(18105)] = 997651, + [SMALL_STATE(18106)] = 997674, + [SMALL_STATE(18107)] = 997695, + [SMALL_STATE(18108)] = 997708, + [SMALL_STATE(18109)] = 997729, + [SMALL_STATE(18110)] = 997752, + [SMALL_STATE(18111)] = 997775, + [SMALL_STATE(18112)] = 997798, + [SMALL_STATE(18113)] = 997821, + [SMALL_STATE(18114)] = 997840, + [SMALL_STATE(18115)] = 997863, + [SMALL_STATE(18116)] = 997886, + [SMALL_STATE(18117)] = 997909, + [SMALL_STATE(18118)] = 997932, + [SMALL_STATE(18119)] = 997955, + [SMALL_STATE(18120)] = 997978, + [SMALL_STATE(18121)] = 997997, + [SMALL_STATE(18122)] = 998016, + [SMALL_STATE(18123)] = 998035, + [SMALL_STATE(18124)] = 998058, + [SMALL_STATE(18125)] = 998071, + [SMALL_STATE(18126)] = 998094, + [SMALL_STATE(18127)] = 998117, + [SMALL_STATE(18128)] = 998140, + [SMALL_STATE(18129)] = 998159, + [SMALL_STATE(18130)] = 998178, + [SMALL_STATE(18131)] = 998197, + [SMALL_STATE(18132)] = 998216, + [SMALL_STATE(18133)] = 998235, + [SMALL_STATE(18134)] = 998256, + [SMALL_STATE(18135)] = 998275, + [SMALL_STATE(18136)] = 998298, + [SMALL_STATE(18137)] = 998317, + [SMALL_STATE(18138)] = 998340, + [SMALL_STATE(18139)] = 998363, + [SMALL_STATE(18140)] = 998382, + [SMALL_STATE(18141)] = 998401, + [SMALL_STATE(18142)] = 998414, + [SMALL_STATE(18143)] = 998431, + [SMALL_STATE(18144)] = 998454, + [SMALL_STATE(18145)] = 998473, + [SMALL_STATE(18146)] = 998492, + [SMALL_STATE(18147)] = 998515, + [SMALL_STATE(18148)] = 998536, + [SMALL_STATE(18149)] = 998555, + [SMALL_STATE(18150)] = 998574, + [SMALL_STATE(18151)] = 998593, + [SMALL_STATE(18152)] = 998612, + [SMALL_STATE(18153)] = 998631, + [SMALL_STATE(18154)] = 998654, + [SMALL_STATE(18155)] = 998673, + [SMALL_STATE(18156)] = 998696, + [SMALL_STATE(18157)] = 998715, + [SMALL_STATE(18158)] = 998738, + [SMALL_STATE(18159)] = 998757, + [SMALL_STATE(18160)] = 998776, + [SMALL_STATE(18161)] = 998795, + [SMALL_STATE(18162)] = 998818, + [SMALL_STATE(18163)] = 998837, + [SMALL_STATE(18164)] = 998856, + [SMALL_STATE(18165)] = 998875, + [SMALL_STATE(18166)] = 998898, + [SMALL_STATE(18167)] = 998921, + [SMALL_STATE(18168)] = 998944, + [SMALL_STATE(18169)] = 998963, + [SMALL_STATE(18170)] = 998982, + [SMALL_STATE(18171)] = 999005, + [SMALL_STATE(18172)] = 999028, + [SMALL_STATE(18173)] = 999047, + [SMALL_STATE(18174)] = 999066, + [SMALL_STATE(18175)] = 999085, + [SMALL_STATE(18176)] = 999104, + [SMALL_STATE(18177)] = 999123, + [SMALL_STATE(18178)] = 999142, + [SMALL_STATE(18179)] = 999165, + [SMALL_STATE(18180)] = 999188, + [SMALL_STATE(18181)] = 999205, + [SMALL_STATE(18182)] = 999228, + [SMALL_STATE(18183)] = 999245, + [SMALL_STATE(18184)] = 999268, + [SMALL_STATE(18185)] = 999291, + [SMALL_STATE(18186)] = 999314, + [SMALL_STATE(18187)] = 999337, + [SMALL_STATE(18188)] = 999360, + [SMALL_STATE(18189)] = 999379, + [SMALL_STATE(18190)] = 999398, + [SMALL_STATE(18191)] = 999417, + [SMALL_STATE(18192)] = 999440, + [SMALL_STATE(18193)] = 999459, + [SMALL_STATE(18194)] = 999478, + [SMALL_STATE(18195)] = 999497, + [SMALL_STATE(18196)] = 999516, + [SMALL_STATE(18197)] = 999539, + [SMALL_STATE(18198)] = 999560, + [SMALL_STATE(18199)] = 999579, + [SMALL_STATE(18200)] = 999598, + [SMALL_STATE(18201)] = 999621, + [SMALL_STATE(18202)] = 999640, + [SMALL_STATE(18203)] = 999663, + [SMALL_STATE(18204)] = 999682, + [SMALL_STATE(18205)] = 999703, + [SMALL_STATE(18206)] = 999722, + [SMALL_STATE(18207)] = 999741, + [SMALL_STATE(18208)] = 999760, + [SMALL_STATE(18209)] = 999779, + [SMALL_STATE(18210)] = 999798, + [SMALL_STATE(18211)] = 999819, + [SMALL_STATE(18212)] = 999840, + [SMALL_STATE(18213)] = 999863, + [SMALL_STATE(18214)] = 999878, + [SMALL_STATE(18215)] = 999897, + [SMALL_STATE(18216)] = 999918, + [SMALL_STATE(18217)] = 999937, + [SMALL_STATE(18218)] = 999960, + [SMALL_STATE(18219)] = 999983, + [SMALL_STATE(18220)] = 1000002, + [SMALL_STATE(18221)] = 1000021, + [SMALL_STATE(18222)] = 1000040, + [SMALL_STATE(18223)] = 1000063, + [SMALL_STATE(18224)] = 1000082, + [SMALL_STATE(18225)] = 1000105, + [SMALL_STATE(18226)] = 1000128, + [SMALL_STATE(18227)] = 1000145, + [SMALL_STATE(18228)] = 1000168, + [SMALL_STATE(18229)] = 1000191, + [SMALL_STATE(18230)] = 1000214, + [SMALL_STATE(18231)] = 1000235, + [SMALL_STATE(18232)] = 1000258, + [SMALL_STATE(18233)] = 1000279, + [SMALL_STATE(18234)] = 1000298, + [SMALL_STATE(18235)] = 1000317, + [SMALL_STATE(18236)] = 1000336, + [SMALL_STATE(18237)] = 1000357, + [SMALL_STATE(18238)] = 1000374, + [SMALL_STATE(18239)] = 1000397, + [SMALL_STATE(18240)] = 1000420, + [SMALL_STATE(18241)] = 1000441, + [SMALL_STATE(18242)] = 1000464, + [SMALL_STATE(18243)] = 1000487, + [SMALL_STATE(18244)] = 1000506, + [SMALL_STATE(18245)] = 1000519, + [SMALL_STATE(18246)] = 1000542, + [SMALL_STATE(18247)] = 1000565, + [SMALL_STATE(18248)] = 1000588, + [SMALL_STATE(18249)] = 1000609, + [SMALL_STATE(18250)] = 1000628, + [SMALL_STATE(18251)] = 1000647, + [SMALL_STATE(18252)] = 1000670, + [SMALL_STATE(18253)] = 1000689, + [SMALL_STATE(18254)] = 1000702, + [SMALL_STATE(18255)] = 1000723, + [SMALL_STATE(18256)] = 1000740, + [SMALL_STATE(18257)] = 1000759, + [SMALL_STATE(18258)] = 1000778, + [SMALL_STATE(18259)] = 1000797, + [SMALL_STATE(18260)] = 1000816, + [SMALL_STATE(18261)] = 1000837, + [SMALL_STATE(18262)] = 1000860, + [SMALL_STATE(18263)] = 1000879, + [SMALL_STATE(18264)] = 1000898, + [SMALL_STATE(18265)] = 1000917, + [SMALL_STATE(18266)] = 1000936, + [SMALL_STATE(18267)] = 1000953, + [SMALL_STATE(18268)] = 1000976, + [SMALL_STATE(18269)] = 1000995, + [SMALL_STATE(18270)] = 1001018, + [SMALL_STATE(18271)] = 1001037, + [SMALL_STATE(18272)] = 1001060, + [SMALL_STATE(18273)] = 1001083, + [SMALL_STATE(18274)] = 1001106, + [SMALL_STATE(18275)] = 1001125, + [SMALL_STATE(18276)] = 1001144, + [SMALL_STATE(18277)] = 1001167, + [SMALL_STATE(18278)] = 1001190, + [SMALL_STATE(18279)] = 1001213, + [SMALL_STATE(18280)] = 1001228, + [SMALL_STATE(18281)] = 1001251, + [SMALL_STATE(18282)] = 1001274, + [SMALL_STATE(18283)] = 1001297, + [SMALL_STATE(18284)] = 1001316, + [SMALL_STATE(18285)] = 1001335, + [SMALL_STATE(18286)] = 1001354, + [SMALL_STATE(18287)] = 1001373, + [SMALL_STATE(18288)] = 1001392, + [SMALL_STATE(18289)] = 1001411, + [SMALL_STATE(18290)] = 1001430, + [SMALL_STATE(18291)] = 1001449, + [SMALL_STATE(18292)] = 1001468, + [SMALL_STATE(18293)] = 1001487, + [SMALL_STATE(18294)] = 1001506, + [SMALL_STATE(18295)] = 1001527, + [SMALL_STATE(18296)] = 1001546, + [SMALL_STATE(18297)] = 1001567, + [SMALL_STATE(18298)] = 1001586, + [SMALL_STATE(18299)] = 1001605, + [SMALL_STATE(18300)] = 1001624, + [SMALL_STATE(18301)] = 1001643, + [SMALL_STATE(18302)] = 1001662, + [SMALL_STATE(18303)] = 1001681, + [SMALL_STATE(18304)] = 1001700, + [SMALL_STATE(18305)] = 1001723, + [SMALL_STATE(18306)] = 1001742, + [SMALL_STATE(18307)] = 1001765, + [SMALL_STATE(18308)] = 1001786, + [SMALL_STATE(18309)] = 1001807, + [SMALL_STATE(18310)] = 1001826, + [SMALL_STATE(18311)] = 1001845, + [SMALL_STATE(18312)] = 1001864, + [SMALL_STATE(18313)] = 1001883, + [SMALL_STATE(18314)] = 1001902, + [SMALL_STATE(18315)] = 1001923, + [SMALL_STATE(18316)] = 1001944, + [SMALL_STATE(18317)] = 1001963, + [SMALL_STATE(18318)] = 1001986, + [SMALL_STATE(18319)] = 1002009, + [SMALL_STATE(18320)] = 1002032, + [SMALL_STATE(18321)] = 1002053, + [SMALL_STATE(18322)] = 1002072, + [SMALL_STATE(18323)] = 1002085, + [SMALL_STATE(18324)] = 1002108, + [SMALL_STATE(18325)] = 1002131, + [SMALL_STATE(18326)] = 1002154, + [SMALL_STATE(18327)] = 1002175, + [SMALL_STATE(18328)] = 1002194, + [SMALL_STATE(18329)] = 1002213, + [SMALL_STATE(18330)] = 1002236, + [SMALL_STATE(18331)] = 1002259, + [SMALL_STATE(18332)] = 1002274, + [SMALL_STATE(18333)] = 1002287, + [SMALL_STATE(18334)] = 1002302, + [SMALL_STATE(18335)] = 1002323, + [SMALL_STATE(18336)] = 1002346, + [SMALL_STATE(18337)] = 1002365, + [SMALL_STATE(18338)] = 1002384, + [SMALL_STATE(18339)] = 1002407, + [SMALL_STATE(18340)] = 1002426, + [SMALL_STATE(18341)] = 1002445, + [SMALL_STATE(18342)] = 1002464, + [SMALL_STATE(18343)] = 1002483, + [SMALL_STATE(18344)] = 1002502, + [SMALL_STATE(18345)] = 1002525, + [SMALL_STATE(18346)] = 1002548, + [SMALL_STATE(18347)] = 1002571, + [SMALL_STATE(18348)] = 1002592, + [SMALL_STATE(18349)] = 1002613, + [SMALL_STATE(18350)] = 1002636, + [SMALL_STATE(18351)] = 1002653, + [SMALL_STATE(18352)] = 1002672, + [SMALL_STATE(18353)] = 1002691, + [SMALL_STATE(18354)] = 1002710, + [SMALL_STATE(18355)] = 1002733, + [SMALL_STATE(18356)] = 1002752, + [SMALL_STATE(18357)] = 1002771, + [SMALL_STATE(18358)] = 1002790, + [SMALL_STATE(18359)] = 1002813, + [SMALL_STATE(18360)] = 1002834, + [SMALL_STATE(18361)] = 1002857, + [SMALL_STATE(18362)] = 1002880, + [SMALL_STATE(18363)] = 1002901, + [SMALL_STATE(18364)] = 1002924, + [SMALL_STATE(18365)] = 1002943, + [SMALL_STATE(18366)] = 1002966, + [SMALL_STATE(18367)] = 1002989, + [SMALL_STATE(18368)] = 1003012, + [SMALL_STATE(18369)] = 1003031, + [SMALL_STATE(18370)] = 1003050, + [SMALL_STATE(18371)] = 1003069, + [SMALL_STATE(18372)] = 1003092, + [SMALL_STATE(18373)] = 1003115, + [SMALL_STATE(18374)] = 1003134, + [SMALL_STATE(18375)] = 1003157, + [SMALL_STATE(18376)] = 1003178, + [SMALL_STATE(18377)] = 1003197, + [SMALL_STATE(18378)] = 1003216, + [SMALL_STATE(18379)] = 1003237, + [SMALL_STATE(18380)] = 1003256, + [SMALL_STATE(18381)] = 1003275, + [SMALL_STATE(18382)] = 1003292, + [SMALL_STATE(18383)] = 1003311, + [SMALL_STATE(18384)] = 1003334, + [SMALL_STATE(18385)] = 1003355, + [SMALL_STATE(18386)] = 1003376, + [SMALL_STATE(18387)] = 1003391, + [SMALL_STATE(18388)] = 1003410, + [SMALL_STATE(18389)] = 1003429, + [SMALL_STATE(18390)] = 1003448, + [SMALL_STATE(18391)] = 1003467, + [SMALL_STATE(18392)] = 1003490, + [SMALL_STATE(18393)] = 1003513, + [SMALL_STATE(18394)] = 1003536, + [SMALL_STATE(18395)] = 1003555, + [SMALL_STATE(18396)] = 1003574, + [SMALL_STATE(18397)] = 1003591, + [SMALL_STATE(18398)] = 1003610, + [SMALL_STATE(18399)] = 1003633, + [SMALL_STATE(18400)] = 1003656, + [SMALL_STATE(18401)] = 1003669, + [SMALL_STATE(18402)] = 1003692, + [SMALL_STATE(18403)] = 1003711, + [SMALL_STATE(18404)] = 1003734, + [SMALL_STATE(18405)] = 1003757, + [SMALL_STATE(18406)] = 1003780, + [SMALL_STATE(18407)] = 1003799, + [SMALL_STATE(18408)] = 1003822, + [SMALL_STATE(18409)] = 1003841, + [SMALL_STATE(18410)] = 1003860, + [SMALL_STATE(18411)] = 1003879, + [SMALL_STATE(18412)] = 1003898, + [SMALL_STATE(18413)] = 1003915, + [SMALL_STATE(18414)] = 1003928, + [SMALL_STATE(18415)] = 1003951, + [SMALL_STATE(18416)] = 1003974, + [SMALL_STATE(18417)] = 1003995, + [SMALL_STATE(18418)] = 1004018, + [SMALL_STATE(18419)] = 1004039, + [SMALL_STATE(18420)] = 1004054, + [SMALL_STATE(18421)] = 1004077, + [SMALL_STATE(18422)] = 1004096, + [SMALL_STATE(18423)] = 1004119, + [SMALL_STATE(18424)] = 1004138, + [SMALL_STATE(18425)] = 1004157, + [SMALL_STATE(18426)] = 1004180, + [SMALL_STATE(18427)] = 1004199, + [SMALL_STATE(18428)] = 1004218, + [SMALL_STATE(18429)] = 1004237, + [SMALL_STATE(18430)] = 1004260, + [SMALL_STATE(18431)] = 1004279, + [SMALL_STATE(18432)] = 1004302, + [SMALL_STATE(18433)] = 1004321, + [SMALL_STATE(18434)] = 1004340, + [SMALL_STATE(18435)] = 1004359, + [SMALL_STATE(18436)] = 1004378, + [SMALL_STATE(18437)] = 1004397, + [SMALL_STATE(18438)] = 1004420, + [SMALL_STATE(18439)] = 1004443, + [SMALL_STATE(18440)] = 1004462, + [SMALL_STATE(18441)] = 1004481, + [SMALL_STATE(18442)] = 1004502, + [SMALL_STATE(18443)] = 1004521, + [SMALL_STATE(18444)] = 1004544, + [SMALL_STATE(18445)] = 1004563, + [SMALL_STATE(18446)] = 1004582, + [SMALL_STATE(18447)] = 1004605, + [SMALL_STATE(18448)] = 1004628, + [SMALL_STATE(18449)] = 1004645, + [SMALL_STATE(18450)] = 1004666, + [SMALL_STATE(18451)] = 1004687, + [SMALL_STATE(18452)] = 1004702, + [SMALL_STATE(18453)] = 1004723, + [SMALL_STATE(18454)] = 1004742, + [SMALL_STATE(18455)] = 1004765, + [SMALL_STATE(18456)] = 1004788, + [SMALL_STATE(18457)] = 1004807, + [SMALL_STATE(18458)] = 1004826, + [SMALL_STATE(18459)] = 1004845, + [SMALL_STATE(18460)] = 1004864, + [SMALL_STATE(18461)] = 1004885, + [SMALL_STATE(18462)] = 1004900, + [SMALL_STATE(18463)] = 1004919, + [SMALL_STATE(18464)] = 1004942, + [SMALL_STATE(18465)] = 1004961, + [SMALL_STATE(18466)] = 1004984, + [SMALL_STATE(18467)] = 1005007, + [SMALL_STATE(18468)] = 1005028, + [SMALL_STATE(18469)] = 1005049, + [SMALL_STATE(18470)] = 1005066, + [SMALL_STATE(18471)] = 1005083, + [SMALL_STATE(18472)] = 1005102, + [SMALL_STATE(18473)] = 1005125, + [SMALL_STATE(18474)] = 1005148, + [SMALL_STATE(18475)] = 1005171, + [SMALL_STATE(18476)] = 1005192, + [SMALL_STATE(18477)] = 1005207, + [SMALL_STATE(18478)] = 1005226, + [SMALL_STATE(18479)] = 1005249, + [SMALL_STATE(18480)] = 1005272, + [SMALL_STATE(18481)] = 1005295, + [SMALL_STATE(18482)] = 1005314, + [SMALL_STATE(18483)] = 1005337, + [SMALL_STATE(18484)] = 1005358, + [SMALL_STATE(18485)] = 1005381, + [SMALL_STATE(18486)] = 1005402, + [SMALL_STATE(18487)] = 1005417, + [SMALL_STATE(18488)] = 1005436, + [SMALL_STATE(18489)] = 1005455, + [SMALL_STATE(18490)] = 1005478, + [SMALL_STATE(18491)] = 1005501, + [SMALL_STATE(18492)] = 1005524, + [SMALL_STATE(18493)] = 1005547, + [SMALL_STATE(18494)] = 1005570, + [SMALL_STATE(18495)] = 1005593, + [SMALL_STATE(18496)] = 1005610, + [SMALL_STATE(18497)] = 1005627, + [SMALL_STATE(18498)] = 1005644, + [SMALL_STATE(18499)] = 1005667, + [SMALL_STATE(18500)] = 1005690, + [SMALL_STATE(18501)] = 1005713, + [SMALL_STATE(18502)] = 1005732, + [SMALL_STATE(18503)] = 1005751, + [SMALL_STATE(18504)] = 1005774, + [SMALL_STATE(18505)] = 1005791, + [SMALL_STATE(18506)] = 1005814, + [SMALL_STATE(18507)] = 1005837, + [SMALL_STATE(18508)] = 1005860, + [SMALL_STATE(18509)] = 1005879, + [SMALL_STATE(18510)] = 1005898, + [SMALL_STATE(18511)] = 1005917, + [SMALL_STATE(18512)] = 1005936, + [SMALL_STATE(18513)] = 1005957, + [SMALL_STATE(18514)] = 1005980, + [SMALL_STATE(18515)] = 1005999, + [SMALL_STATE(18516)] = 1006022, + [SMALL_STATE(18517)] = 1006041, + [SMALL_STATE(18518)] = 1006064, + [SMALL_STATE(18519)] = 1006083, + [SMALL_STATE(18520)] = 1006102, + [SMALL_STATE(18521)] = 1006125, + [SMALL_STATE(18522)] = 1006148, + [SMALL_STATE(18523)] = 1006171, + [SMALL_STATE(18524)] = 1006190, + [SMALL_STATE(18525)] = 1006209, + [SMALL_STATE(18526)] = 1006228, + [SMALL_STATE(18527)] = 1006247, + [SMALL_STATE(18528)] = 1006266, + [SMALL_STATE(18529)] = 1006285, + [SMALL_STATE(18530)] = 1006308, + [SMALL_STATE(18531)] = 1006331, + [SMALL_STATE(18532)] = 1006354, + [SMALL_STATE(18533)] = 1006371, + [SMALL_STATE(18534)] = 1006390, + [SMALL_STATE(18535)] = 1006409, + [SMALL_STATE(18536)] = 1006428, + [SMALL_STATE(18537)] = 1006447, + [SMALL_STATE(18538)] = 1006468, + [SMALL_STATE(18539)] = 1006489, + [SMALL_STATE(18540)] = 1006508, + [SMALL_STATE(18541)] = 1006527, + [SMALL_STATE(18542)] = 1006546, + [SMALL_STATE(18543)] = 1006565, + [SMALL_STATE(18544)] = 1006584, + [SMALL_STATE(18545)] = 1006607, + [SMALL_STATE(18546)] = 1006626, + [SMALL_STATE(18547)] = 1006645, + [SMALL_STATE(18548)] = 1006664, + [SMALL_STATE(18549)] = 1006685, + [SMALL_STATE(18550)] = 1006708, + [SMALL_STATE(18551)] = 1006727, + [SMALL_STATE(18552)] = 1006746, + [SMALL_STATE(18553)] = 1006763, + [SMALL_STATE(18554)] = 1006780, + [SMALL_STATE(18555)] = 1006799, + [SMALL_STATE(18556)] = 1006818, + [SMALL_STATE(18557)] = 1006841, + [SMALL_STATE(18558)] = 1006862, + [SMALL_STATE(18559)] = 1006883, + [SMALL_STATE(18560)] = 1006898, + [SMALL_STATE(18561)] = 1006921, + [SMALL_STATE(18562)] = 1006944, + [SMALL_STATE(18563)] = 1006967, + [SMALL_STATE(18564)] = 1006982, + [SMALL_STATE(18565)] = 1007001, + [SMALL_STATE(18566)] = 1007024, + [SMALL_STATE(18567)] = 1007037, + [SMALL_STATE(18568)] = 1007060, + [SMALL_STATE(18569)] = 1007083, + [SMALL_STATE(18570)] = 1007102, + [SMALL_STATE(18571)] = 1007125, + [SMALL_STATE(18572)] = 1007148, + [SMALL_STATE(18573)] = 1007169, + [SMALL_STATE(18574)] = 1007192, + [SMALL_STATE(18575)] = 1007215, + [SMALL_STATE(18576)] = 1007234, + [SMALL_STATE(18577)] = 1007253, + [SMALL_STATE(18578)] = 1007276, + [SMALL_STATE(18579)] = 1007299, + [SMALL_STATE(18580)] = 1007322, + [SMALL_STATE(18581)] = 1007345, + [SMALL_STATE(18582)] = 1007364, + [SMALL_STATE(18583)] = 1007383, + [SMALL_STATE(18584)] = 1007402, + [SMALL_STATE(18585)] = 1007425, + [SMALL_STATE(18586)] = 1007444, + [SMALL_STATE(18587)] = 1007463, + [SMALL_STATE(18588)] = 1007486, + [SMALL_STATE(18589)] = 1007503, + [SMALL_STATE(18590)] = 1007526, + [SMALL_STATE(18591)] = 1007545, + [SMALL_STATE(18592)] = 1007564, + [SMALL_STATE(18593)] = 1007583, + [SMALL_STATE(18594)] = 1007602, + [SMALL_STATE(18595)] = 1007623, + [SMALL_STATE(18596)] = 1007642, + [SMALL_STATE(18597)] = 1007661, + [SMALL_STATE(18598)] = 1007680, + [SMALL_STATE(18599)] = 1007699, + [SMALL_STATE(18600)] = 1007718, + [SMALL_STATE(18601)] = 1007737, + [SMALL_STATE(18602)] = 1007752, + [SMALL_STATE(18603)] = 1007775, + [SMALL_STATE(18604)] = 1007794, + [SMALL_STATE(18605)] = 1007817, + [SMALL_STATE(18606)] = 1007836, + [SMALL_STATE(18607)] = 1007855, + [SMALL_STATE(18608)] = 1007878, + [SMALL_STATE(18609)] = 1007897, + [SMALL_STATE(18610)] = 1007920, + [SMALL_STATE(18611)] = 1007939, + [SMALL_STATE(18612)] = 1007958, + [SMALL_STATE(18613)] = 1007981, + [SMALL_STATE(18614)] = 1007998, + [SMALL_STATE(18615)] = 1008021, + [SMALL_STATE(18616)] = 1008040, + [SMALL_STATE(18617)] = 1008059, + [SMALL_STATE(18618)] = 1008082, + [SMALL_STATE(18619)] = 1008101, + [SMALL_STATE(18620)] = 1008120, + [SMALL_STATE(18621)] = 1008141, + [SMALL_STATE(18622)] = 1008164, + [SMALL_STATE(18623)] = 1008183, + [SMALL_STATE(18624)] = 1008206, + [SMALL_STATE(18625)] = 1008227, + [SMALL_STATE(18626)] = 1008246, + [SMALL_STATE(18627)] = 1008269, + [SMALL_STATE(18628)] = 1008292, + [SMALL_STATE(18629)] = 1008311, + [SMALL_STATE(18630)] = 1008334, + [SMALL_STATE(18631)] = 1008353, + [SMALL_STATE(18632)] = 1008372, + [SMALL_STATE(18633)] = 1008395, + [SMALL_STATE(18634)] = 1008418, + [SMALL_STATE(18635)] = 1008441, + [SMALL_STATE(18636)] = 1008460, + [SMALL_STATE(18637)] = 1008483, + [SMALL_STATE(18638)] = 1008502, + [SMALL_STATE(18639)] = 1008525, + [SMALL_STATE(18640)] = 1008548, + [SMALL_STATE(18641)] = 1008571, + [SMALL_STATE(18642)] = 1008590, + [SMALL_STATE(18643)] = 1008613, + [SMALL_STATE(18644)] = 1008632, + [SMALL_STATE(18645)] = 1008651, + [SMALL_STATE(18646)] = 1008670, + [SMALL_STATE(18647)] = 1008689, + [SMALL_STATE(18648)] = 1008708, + [SMALL_STATE(18649)] = 1008727, + [SMALL_STATE(18650)] = 1008748, + [SMALL_STATE(18651)] = 1008767, + [SMALL_STATE(18652)] = 1008786, + [SMALL_STATE(18653)] = 1008805, + [SMALL_STATE(18654)] = 1008824, + [SMALL_STATE(18655)] = 1008843, + [SMALL_STATE(18656)] = 1008864, + [SMALL_STATE(18657)] = 1008883, + [SMALL_STATE(18658)] = 1008902, + [SMALL_STATE(18659)] = 1008921, + [SMALL_STATE(18660)] = 1008940, + [SMALL_STATE(18661)] = 1008959, + [SMALL_STATE(18662)] = 1008976, + [SMALL_STATE(18663)] = 1008995, + [SMALL_STATE(18664)] = 1009018, + [SMALL_STATE(18665)] = 1009037, + [SMALL_STATE(18666)] = 1009058, + [SMALL_STATE(18667)] = 1009081, + [SMALL_STATE(18668)] = 1009100, + [SMALL_STATE(18669)] = 1009119, + [SMALL_STATE(18670)] = 1009138, + [SMALL_STATE(18671)] = 1009157, + [SMALL_STATE(18672)] = 1009176, + [SMALL_STATE(18673)] = 1009195, + [SMALL_STATE(18674)] = 1009218, + [SMALL_STATE(18675)] = 1009239, + [SMALL_STATE(18676)] = 1009260, + [SMALL_STATE(18677)] = 1009283, + [SMALL_STATE(18678)] = 1009302, + [SMALL_STATE(18679)] = 1009325, + [SMALL_STATE(18680)] = 1009348, + [SMALL_STATE(18681)] = 1009371, + [SMALL_STATE(18682)] = 1009394, + [SMALL_STATE(18683)] = 1009413, + [SMALL_STATE(18684)] = 1009432, + [SMALL_STATE(18685)] = 1009451, + [SMALL_STATE(18686)] = 1009470, + [SMALL_STATE(18687)] = 1009493, + [SMALL_STATE(18688)] = 1009516, + [SMALL_STATE(18689)] = 1009535, + [SMALL_STATE(18690)] = 1009554, + [SMALL_STATE(18691)] = 1009573, + [SMALL_STATE(18692)] = 1009588, + [SMALL_STATE(18693)] = 1009611, + [SMALL_STATE(18694)] = 1009634, + [SMALL_STATE(18695)] = 1009657, + [SMALL_STATE(18696)] = 1009680, + [SMALL_STATE(18697)] = 1009699, + [SMALL_STATE(18698)] = 1009722, + [SMALL_STATE(18699)] = 1009741, + [SMALL_STATE(18700)] = 1009760, + [SMALL_STATE(18701)] = 1009779, + [SMALL_STATE(18702)] = 1009802, + [SMALL_STATE(18703)] = 1009821, + [SMALL_STATE(18704)] = 1009840, + [SMALL_STATE(18705)] = 1009859, + [SMALL_STATE(18706)] = 1009880, + [SMALL_STATE(18707)] = 1009900, + [SMALL_STATE(18708)] = 1009920, + [SMALL_STATE(18709)] = 1009938, + [SMALL_STATE(18710)] = 1009958, + [SMALL_STATE(18711)] = 1009978, + [SMALL_STATE(18712)] = 1009998, + [SMALL_STATE(18713)] = 1010018, + [SMALL_STATE(18714)] = 1010038, + [SMALL_STATE(18715)] = 1010058, + [SMALL_STATE(18716)] = 1010076, + [SMALL_STATE(18717)] = 1010096, + [SMALL_STATE(18718)] = 1010116, + [SMALL_STATE(18719)] = 1010136, + [SMALL_STATE(18720)] = 1010154, + [SMALL_STATE(18721)] = 1010174, + [SMALL_STATE(18722)] = 1010194, + [SMALL_STATE(18723)] = 1010214, + [SMALL_STATE(18724)] = 1010234, + [SMALL_STATE(18725)] = 1010252, + [SMALL_STATE(18726)] = 1010272, + [SMALL_STATE(18727)] = 1010292, + [SMALL_STATE(18728)] = 1010312, + [SMALL_STATE(18729)] = 1010332, + [SMALL_STATE(18730)] = 1010350, + [SMALL_STATE(18731)] = 1010370, + [SMALL_STATE(18732)] = 1010390, + [SMALL_STATE(18733)] = 1010410, + [SMALL_STATE(18734)] = 1010430, + [SMALL_STATE(18735)] = 1010450, + [SMALL_STATE(18736)] = 1010470, + [SMALL_STATE(18737)] = 1010490, + [SMALL_STATE(18738)] = 1010510, + [SMALL_STATE(18739)] = 1010530, + [SMALL_STATE(18740)] = 1010550, + [SMALL_STATE(18741)] = 1010568, + [SMALL_STATE(18742)] = 1010588, + [SMALL_STATE(18743)] = 1010608, + [SMALL_STATE(18744)] = 1010626, + [SMALL_STATE(18745)] = 1010644, + [SMALL_STATE(18746)] = 1010664, + [SMALL_STATE(18747)] = 1010682, + [SMALL_STATE(18748)] = 1010702, + [SMALL_STATE(18749)] = 1010720, + [SMALL_STATE(18750)] = 1010740, + [SMALL_STATE(18751)] = 1010760, + [SMALL_STATE(18752)] = 1010780, + [SMALL_STATE(18753)] = 1010800, + [SMALL_STATE(18754)] = 1010820, + [SMALL_STATE(18755)] = 1010840, + [SMALL_STATE(18756)] = 1010860, + [SMALL_STATE(18757)] = 1010880, + [SMALL_STATE(18758)] = 1010900, + [SMALL_STATE(18759)] = 1010920, + [SMALL_STATE(18760)] = 1010938, + [SMALL_STATE(18761)] = 1010958, + [SMALL_STATE(18762)] = 1010978, + [SMALL_STATE(18763)] = 1010998, + [SMALL_STATE(18764)] = 1011018, + [SMALL_STATE(18765)] = 1011038, + [SMALL_STATE(18766)] = 1011058, + [SMALL_STATE(18767)] = 1011078, + [SMALL_STATE(18768)] = 1011098, + [SMALL_STATE(18769)] = 1011118, + [SMALL_STATE(18770)] = 1011134, + [SMALL_STATE(18771)] = 1011154, + [SMALL_STATE(18772)] = 1011174, + [SMALL_STATE(18773)] = 1011194, + [SMALL_STATE(18774)] = 1011214, + [SMALL_STATE(18775)] = 1011234, + [SMALL_STATE(18776)] = 1011254, + [SMALL_STATE(18777)] = 1011274, + [SMALL_STATE(18778)] = 1011294, + [SMALL_STATE(18779)] = 1011314, + [SMALL_STATE(18780)] = 1011334, + [SMALL_STATE(18781)] = 1011354, + [SMALL_STATE(18782)] = 1011374, + [SMALL_STATE(18783)] = 1011394, + [SMALL_STATE(18784)] = 1011414, + [SMALL_STATE(18785)] = 1011434, + [SMALL_STATE(18786)] = 1011454, + [SMALL_STATE(18787)] = 1011474, + [SMALL_STATE(18788)] = 1011494, + [SMALL_STATE(18789)] = 1011514, + [SMALL_STATE(18790)] = 1011534, + [SMALL_STATE(18791)] = 1011554, + [SMALL_STATE(18792)] = 1011574, + [SMALL_STATE(18793)] = 1011594, + [SMALL_STATE(18794)] = 1011614, + [SMALL_STATE(18795)] = 1011634, + [SMALL_STATE(18796)] = 1011654, + [SMALL_STATE(18797)] = 1011674, + [SMALL_STATE(18798)] = 1011694, + [SMALL_STATE(18799)] = 1011714, + [SMALL_STATE(18800)] = 1011734, + [SMALL_STATE(18801)] = 1011754, + [SMALL_STATE(18802)] = 1011774, + [SMALL_STATE(18803)] = 1011794, + [SMALL_STATE(18804)] = 1011814, + [SMALL_STATE(18805)] = 1011834, + [SMALL_STATE(18806)] = 1011854, + [SMALL_STATE(18807)] = 1011874, + [SMALL_STATE(18808)] = 1011892, + [SMALL_STATE(18809)] = 1011912, + [SMALL_STATE(18810)] = 1011932, + [SMALL_STATE(18811)] = 1011948, + [SMALL_STATE(18812)] = 1011968, + [SMALL_STATE(18813)] = 1011988, + [SMALL_STATE(18814)] = 1012004, + [SMALL_STATE(18815)] = 1012024, + [SMALL_STATE(18816)] = 1012044, + [SMALL_STATE(18817)] = 1012062, + [SMALL_STATE(18818)] = 1012076, + [SMALL_STATE(18819)] = 1012094, + [SMALL_STATE(18820)] = 1012114, + [SMALL_STATE(18821)] = 1012134, + [SMALL_STATE(18822)] = 1012154, + [SMALL_STATE(18823)] = 1012174, + [SMALL_STATE(18824)] = 1012188, + [SMALL_STATE(18825)] = 1012208, + [SMALL_STATE(18826)] = 1012224, + [SMALL_STATE(18827)] = 1012240, + [SMALL_STATE(18828)] = 1012260, + [SMALL_STATE(18829)] = 1012280, + [SMALL_STATE(18830)] = 1012300, + [SMALL_STATE(18831)] = 1012320, + [SMALL_STATE(18832)] = 1012340, + [SMALL_STATE(18833)] = 1012360, + [SMALL_STATE(18834)] = 1012380, + [SMALL_STATE(18835)] = 1012400, + [SMALL_STATE(18836)] = 1012420, + [SMALL_STATE(18837)] = 1012438, + [SMALL_STATE(18838)] = 1012458, + [SMALL_STATE(18839)] = 1012478, + [SMALL_STATE(18840)] = 1012498, + [SMALL_STATE(18841)] = 1012518, + [SMALL_STATE(18842)] = 1012538, + [SMALL_STATE(18843)] = 1012558, + [SMALL_STATE(18844)] = 1012576, + [SMALL_STATE(18845)] = 1012596, + [SMALL_STATE(18846)] = 1012610, + [SMALL_STATE(18847)] = 1012624, + [SMALL_STATE(18848)] = 1012638, + [SMALL_STATE(18849)] = 1012658, + [SMALL_STATE(18850)] = 1012678, + [SMALL_STATE(18851)] = 1012698, + [SMALL_STATE(18852)] = 1012716, + [SMALL_STATE(18853)] = 1012736, + [SMALL_STATE(18854)] = 1012756, + [SMALL_STATE(18855)] = 1012776, + [SMALL_STATE(18856)] = 1012792, + [SMALL_STATE(18857)] = 1012812, + [SMALL_STATE(18858)] = 1012832, + [SMALL_STATE(18859)] = 1012852, + [SMALL_STATE(18860)] = 1012872, + [SMALL_STATE(18861)] = 1012892, + [SMALL_STATE(18862)] = 1012912, + [SMALL_STATE(18863)] = 1012926, + [SMALL_STATE(18864)] = 1012942, + [SMALL_STATE(18865)] = 1012962, + [SMALL_STATE(18866)] = 1012982, + [SMALL_STATE(18867)] = 1013002, + [SMALL_STATE(18868)] = 1013016, + [SMALL_STATE(18869)] = 1013036, + [SMALL_STATE(18870)] = 1013054, + [SMALL_STATE(18871)] = 1013074, + [SMALL_STATE(18872)] = 1013088, + [SMALL_STATE(18873)] = 1013108, + [SMALL_STATE(18874)] = 1013126, + [SMALL_STATE(18875)] = 1013146, + [SMALL_STATE(18876)] = 1013166, + [SMALL_STATE(18877)] = 1013180, + [SMALL_STATE(18878)] = 1013200, + [SMALL_STATE(18879)] = 1013220, + [SMALL_STATE(18880)] = 1013240, + [SMALL_STATE(18881)] = 1013260, + [SMALL_STATE(18882)] = 1013280, + [SMALL_STATE(18883)] = 1013300, + [SMALL_STATE(18884)] = 1013320, + [SMALL_STATE(18885)] = 1013340, + [SMALL_STATE(18886)] = 1013360, + [SMALL_STATE(18887)] = 1013378, + [SMALL_STATE(18888)] = 1013398, + [SMALL_STATE(18889)] = 1013418, + [SMALL_STATE(18890)] = 1013438, + [SMALL_STATE(18891)] = 1013458, + [SMALL_STATE(18892)] = 1013478, + [SMALL_STATE(18893)] = 1013498, + [SMALL_STATE(18894)] = 1013518, + [SMALL_STATE(18895)] = 1013538, + [SMALL_STATE(18896)] = 1013558, + [SMALL_STATE(18897)] = 1013578, + [SMALL_STATE(18898)] = 1013598, + [SMALL_STATE(18899)] = 1013618, + [SMALL_STATE(18900)] = 1013638, + [SMALL_STATE(18901)] = 1013654, + [SMALL_STATE(18902)] = 1013674, + [SMALL_STATE(18903)] = 1013694, + [SMALL_STATE(18904)] = 1013712, + [SMALL_STATE(18905)] = 1013732, + [SMALL_STATE(18906)] = 1013752, + [SMALL_STATE(18907)] = 1013772, + [SMALL_STATE(18908)] = 1013792, + [SMALL_STATE(18909)] = 1013812, + [SMALL_STATE(18910)] = 1013832, + [SMALL_STATE(18911)] = 1013852, + [SMALL_STATE(18912)] = 1013872, + [SMALL_STATE(18913)] = 1013892, + [SMALL_STATE(18914)] = 1013912, + [SMALL_STATE(18915)] = 1013932, + [SMALL_STATE(18916)] = 1013952, + [SMALL_STATE(18917)] = 1013972, + [SMALL_STATE(18918)] = 1013992, + [SMALL_STATE(18919)] = 1014012, + [SMALL_STATE(18920)] = 1014032, + [SMALL_STATE(18921)] = 1014052, + [SMALL_STATE(18922)] = 1014072, + [SMALL_STATE(18923)] = 1014092, + [SMALL_STATE(18924)] = 1014110, + [SMALL_STATE(18925)] = 1014128, + [SMALL_STATE(18926)] = 1014144, + [SMALL_STATE(18927)] = 1014158, + [SMALL_STATE(18928)] = 1014178, + [SMALL_STATE(18929)] = 1014194, + [SMALL_STATE(18930)] = 1014214, + [SMALL_STATE(18931)] = 1014234, + [SMALL_STATE(18932)] = 1014252, + [SMALL_STATE(18933)] = 1014266, + [SMALL_STATE(18934)] = 1014282, + [SMALL_STATE(18935)] = 1014302, + [SMALL_STATE(18936)] = 1014322, + [SMALL_STATE(18937)] = 1014342, + [SMALL_STATE(18938)] = 1014362, + [SMALL_STATE(18939)] = 1014382, + [SMALL_STATE(18940)] = 1014402, + [SMALL_STATE(18941)] = 1014422, + [SMALL_STATE(18942)] = 1014442, + [SMALL_STATE(18943)] = 1014462, + [SMALL_STATE(18944)] = 1014480, + [SMALL_STATE(18945)] = 1014500, + [SMALL_STATE(18946)] = 1014520, + [SMALL_STATE(18947)] = 1014540, + [SMALL_STATE(18948)] = 1014560, + [SMALL_STATE(18949)] = 1014574, + [SMALL_STATE(18950)] = 1014594, + [SMALL_STATE(18951)] = 1014614, + [SMALL_STATE(18952)] = 1014634, + [SMALL_STATE(18953)] = 1014654, + [SMALL_STATE(18954)] = 1014674, + [SMALL_STATE(18955)] = 1014694, + [SMALL_STATE(18956)] = 1014714, + [SMALL_STATE(18957)] = 1014734, + [SMALL_STATE(18958)] = 1014754, + [SMALL_STATE(18959)] = 1014774, + [SMALL_STATE(18960)] = 1014794, + [SMALL_STATE(18961)] = 1014814, + [SMALL_STATE(18962)] = 1014834, + [SMALL_STATE(18963)] = 1014854, + [SMALL_STATE(18964)] = 1014868, + [SMALL_STATE(18965)] = 1014888, + [SMALL_STATE(18966)] = 1014908, + [SMALL_STATE(18967)] = 1014928, + [SMALL_STATE(18968)] = 1014948, + [SMALL_STATE(18969)] = 1014968, + [SMALL_STATE(18970)] = 1014988, + [SMALL_STATE(18971)] = 1015008, + [SMALL_STATE(18972)] = 1015028, + [SMALL_STATE(18973)] = 1015048, + [SMALL_STATE(18974)] = 1015066, + [SMALL_STATE(18975)] = 1015086, + [SMALL_STATE(18976)] = 1015106, + [SMALL_STATE(18977)] = 1015126, + [SMALL_STATE(18978)] = 1015146, + [SMALL_STATE(18979)] = 1015166, + [SMALL_STATE(18980)] = 1015186, + [SMALL_STATE(18981)] = 1015206, + [SMALL_STATE(18982)] = 1015226, + [SMALL_STATE(18983)] = 1015246, + [SMALL_STATE(18984)] = 1015266, + [SMALL_STATE(18985)] = 1015286, + [SMALL_STATE(18986)] = 1015306, + [SMALL_STATE(18987)] = 1015326, + [SMALL_STATE(18988)] = 1015346, + [SMALL_STATE(18989)] = 1015366, + [SMALL_STATE(18990)] = 1015386, + [SMALL_STATE(18991)] = 1015406, + [SMALL_STATE(18992)] = 1015426, + [SMALL_STATE(18993)] = 1015446, + [SMALL_STATE(18994)] = 1015466, + [SMALL_STATE(18995)] = 1015480, + [SMALL_STATE(18996)] = 1015500, + [SMALL_STATE(18997)] = 1015518, + [SMALL_STATE(18998)] = 1015538, + [SMALL_STATE(18999)] = 1015558, + [SMALL_STATE(19000)] = 1015578, + [SMALL_STATE(19001)] = 1015598, + [SMALL_STATE(19002)] = 1015612, + [SMALL_STATE(19003)] = 1015626, + [SMALL_STATE(19004)] = 1015646, + [SMALL_STATE(19005)] = 1015660, + [SMALL_STATE(19006)] = 1015680, + [SMALL_STATE(19007)] = 1015696, + [SMALL_STATE(19008)] = 1015712, + [SMALL_STATE(19009)] = 1015732, + [SMALL_STATE(19010)] = 1015752, + [SMALL_STATE(19011)] = 1015772, + [SMALL_STATE(19012)] = 1015792, + [SMALL_STATE(19013)] = 1015812, + [SMALL_STATE(19014)] = 1015832, + [SMALL_STATE(19015)] = 1015852, + [SMALL_STATE(19016)] = 1015872, + [SMALL_STATE(19017)] = 1015892, + [SMALL_STATE(19018)] = 1015910, + [SMALL_STATE(19019)] = 1015930, + [SMALL_STATE(19020)] = 1015950, + [SMALL_STATE(19021)] = 1015970, + [SMALL_STATE(19022)] = 1015988, + [SMALL_STATE(19023)] = 1016008, + [SMALL_STATE(19024)] = 1016028, + [SMALL_STATE(19025)] = 1016048, + [SMALL_STATE(19026)] = 1016068, + [SMALL_STATE(19027)] = 1016088, + [SMALL_STATE(19028)] = 1016108, + [SMALL_STATE(19029)] = 1016126, + [SMALL_STATE(19030)] = 1016140, + [SMALL_STATE(19031)] = 1016160, + [SMALL_STATE(19032)] = 1016174, + [SMALL_STATE(19033)] = 1016194, + [SMALL_STATE(19034)] = 1016214, + [SMALL_STATE(19035)] = 1016234, + [SMALL_STATE(19036)] = 1016252, + [SMALL_STATE(19037)] = 1016272, + [SMALL_STATE(19038)] = 1016292, + [SMALL_STATE(19039)] = 1016312, + [SMALL_STATE(19040)] = 1016332, + [SMALL_STATE(19041)] = 1016352, + [SMALL_STATE(19042)] = 1016372, + [SMALL_STATE(19043)] = 1016392, + [SMALL_STATE(19044)] = 1016412, + [SMALL_STATE(19045)] = 1016432, + [SMALL_STATE(19046)] = 1016452, + [SMALL_STATE(19047)] = 1016472, + [SMALL_STATE(19048)] = 1016492, + [SMALL_STATE(19049)] = 1016512, + [SMALL_STATE(19050)] = 1016526, + [SMALL_STATE(19051)] = 1016546, + [SMALL_STATE(19052)] = 1016566, + [SMALL_STATE(19053)] = 1016586, + [SMALL_STATE(19054)] = 1016606, + [SMALL_STATE(19055)] = 1016626, + [SMALL_STATE(19056)] = 1016646, + [SMALL_STATE(19057)] = 1016666, + [SMALL_STATE(19058)] = 1016686, + [SMALL_STATE(19059)] = 1016706, + [SMALL_STATE(19060)] = 1016724, + [SMALL_STATE(19061)] = 1016744, + [SMALL_STATE(19062)] = 1016764, + [SMALL_STATE(19063)] = 1016784, + [SMALL_STATE(19064)] = 1016804, + [SMALL_STATE(19065)] = 1016822, + [SMALL_STATE(19066)] = 1016842, + [SMALL_STATE(19067)] = 1016862, + [SMALL_STATE(19068)] = 1016882, + [SMALL_STATE(19069)] = 1016902, + [SMALL_STATE(19070)] = 1016922, + [SMALL_STATE(19071)] = 1016940, + [SMALL_STATE(19072)] = 1016960, + [SMALL_STATE(19073)] = 1016980, + [SMALL_STATE(19074)] = 1017000, + [SMALL_STATE(19075)] = 1017020, + [SMALL_STATE(19076)] = 1017040, + [SMALL_STATE(19077)] = 1017060, + [SMALL_STATE(19078)] = 1017080, + [SMALL_STATE(19079)] = 1017100, + [SMALL_STATE(19080)] = 1017120, + [SMALL_STATE(19081)] = 1017140, + [SMALL_STATE(19082)] = 1017160, + [SMALL_STATE(19083)] = 1017180, + [SMALL_STATE(19084)] = 1017200, + [SMALL_STATE(19085)] = 1017214, + [SMALL_STATE(19086)] = 1017234, + [SMALL_STATE(19087)] = 1017254, + [SMALL_STATE(19088)] = 1017274, + [SMALL_STATE(19089)] = 1017294, + [SMALL_STATE(19090)] = 1017314, + [SMALL_STATE(19091)] = 1017334, + [SMALL_STATE(19092)] = 1017354, + [SMALL_STATE(19093)] = 1017372, + [SMALL_STATE(19094)] = 1017390, + [SMALL_STATE(19095)] = 1017410, + [SMALL_STATE(19096)] = 1017430, + [SMALL_STATE(19097)] = 1017450, + [SMALL_STATE(19098)] = 1017470, + [SMALL_STATE(19099)] = 1017490, + [SMALL_STATE(19100)] = 1017510, + [SMALL_STATE(19101)] = 1017530, + [SMALL_STATE(19102)] = 1017550, + [SMALL_STATE(19103)] = 1017570, + [SMALL_STATE(19104)] = 1017588, + [SMALL_STATE(19105)] = 1017608, + [SMALL_STATE(19106)] = 1017628, + [SMALL_STATE(19107)] = 1017648, + [SMALL_STATE(19108)] = 1017668, + [SMALL_STATE(19109)] = 1017688, + [SMALL_STATE(19110)] = 1017708, + [SMALL_STATE(19111)] = 1017728, + [SMALL_STATE(19112)] = 1017748, + [SMALL_STATE(19113)] = 1017768, + [SMALL_STATE(19114)] = 1017788, + [SMALL_STATE(19115)] = 1017808, + [SMALL_STATE(19116)] = 1017828, + [SMALL_STATE(19117)] = 1017848, + [SMALL_STATE(19118)] = 1017868, + [SMALL_STATE(19119)] = 1017888, + [SMALL_STATE(19120)] = 1017908, + [SMALL_STATE(19121)] = 1017928, + [SMALL_STATE(19122)] = 1017948, + [SMALL_STATE(19123)] = 1017968, + [SMALL_STATE(19124)] = 1017988, + [SMALL_STATE(19125)] = 1018008, + [SMALL_STATE(19126)] = 1018028, + [SMALL_STATE(19127)] = 1018042, + [SMALL_STATE(19128)] = 1018062, + [SMALL_STATE(19129)] = 1018080, + [SMALL_STATE(19130)] = 1018100, + [SMALL_STATE(19131)] = 1018120, + [SMALL_STATE(19132)] = 1018140, + [SMALL_STATE(19133)] = 1018160, + [SMALL_STATE(19134)] = 1018180, + [SMALL_STATE(19135)] = 1018194, + [SMALL_STATE(19136)] = 1018214, + [SMALL_STATE(19137)] = 1018234, + [SMALL_STATE(19138)] = 1018254, + [SMALL_STATE(19139)] = 1018274, + [SMALL_STATE(19140)] = 1018294, + [SMALL_STATE(19141)] = 1018310, + [SMALL_STATE(19142)] = 1018330, + [SMALL_STATE(19143)] = 1018350, + [SMALL_STATE(19144)] = 1018370, + [SMALL_STATE(19145)] = 1018390, + [SMALL_STATE(19146)] = 1018410, + [SMALL_STATE(19147)] = 1018430, + [SMALL_STATE(19148)] = 1018450, + [SMALL_STATE(19149)] = 1018470, + [SMALL_STATE(19150)] = 1018484, + [SMALL_STATE(19151)] = 1018502, + [SMALL_STATE(19152)] = 1018522, + [SMALL_STATE(19153)] = 1018540, + [SMALL_STATE(19154)] = 1018560, + [SMALL_STATE(19155)] = 1018580, + [SMALL_STATE(19156)] = 1018600, + [SMALL_STATE(19157)] = 1018620, + [SMALL_STATE(19158)] = 1018636, + [SMALL_STATE(19159)] = 1018656, + [SMALL_STATE(19160)] = 1018676, + [SMALL_STATE(19161)] = 1018696, + [SMALL_STATE(19162)] = 1018716, + [SMALL_STATE(19163)] = 1018734, + [SMALL_STATE(19164)] = 1018754, + [SMALL_STATE(19165)] = 1018774, + [SMALL_STATE(19166)] = 1018794, + [SMALL_STATE(19167)] = 1018814, + [SMALL_STATE(19168)] = 1018834, + [SMALL_STATE(19169)] = 1018854, + [SMALL_STATE(19170)] = 1018874, + [SMALL_STATE(19171)] = 1018894, + [SMALL_STATE(19172)] = 1018914, + [SMALL_STATE(19173)] = 1018934, + [SMALL_STATE(19174)] = 1018954, + [SMALL_STATE(19175)] = 1018970, + [SMALL_STATE(19176)] = 1018990, + [SMALL_STATE(19177)] = 1019010, + [SMALL_STATE(19178)] = 1019030, + [SMALL_STATE(19179)] = 1019050, + [SMALL_STATE(19180)] = 1019070, + [SMALL_STATE(19181)] = 1019090, + [SMALL_STATE(19182)] = 1019110, + [SMALL_STATE(19183)] = 1019130, + [SMALL_STATE(19184)] = 1019150, + [SMALL_STATE(19185)] = 1019170, + [SMALL_STATE(19186)] = 1019190, + [SMALL_STATE(19187)] = 1019210, + [SMALL_STATE(19188)] = 1019230, + [SMALL_STATE(19189)] = 1019250, + [SMALL_STATE(19190)] = 1019270, + [SMALL_STATE(19191)] = 1019290, + [SMALL_STATE(19192)] = 1019310, + [SMALL_STATE(19193)] = 1019330, + [SMALL_STATE(19194)] = 1019350, + [SMALL_STATE(19195)] = 1019368, + [SMALL_STATE(19196)] = 1019388, + [SMALL_STATE(19197)] = 1019408, + [SMALL_STATE(19198)] = 1019428, + [SMALL_STATE(19199)] = 1019448, + [SMALL_STATE(19200)] = 1019468, + [SMALL_STATE(19201)] = 1019482, + [SMALL_STATE(19202)] = 1019500, + [SMALL_STATE(19203)] = 1019514, + [SMALL_STATE(19204)] = 1019534, + [SMALL_STATE(19205)] = 1019554, + [SMALL_STATE(19206)] = 1019574, + [SMALL_STATE(19207)] = 1019594, + [SMALL_STATE(19208)] = 1019614, + [SMALL_STATE(19209)] = 1019634, + [SMALL_STATE(19210)] = 1019654, + [SMALL_STATE(19211)] = 1019672, + [SMALL_STATE(19212)] = 1019692, + [SMALL_STATE(19213)] = 1019712, + [SMALL_STATE(19214)] = 1019732, + [SMALL_STATE(19215)] = 1019752, + [SMALL_STATE(19216)] = 1019772, + [SMALL_STATE(19217)] = 1019788, + [SMALL_STATE(19218)] = 1019808, + [SMALL_STATE(19219)] = 1019824, + [SMALL_STATE(19220)] = 1019844, + [SMALL_STATE(19221)] = 1019864, + [SMALL_STATE(19222)] = 1019882, + [SMALL_STATE(19223)] = 1019900, + [SMALL_STATE(19224)] = 1019916, + [SMALL_STATE(19225)] = 1019936, + [SMALL_STATE(19226)] = 1019952, + [SMALL_STATE(19227)] = 1019972, + [SMALL_STATE(19228)] = 1019986, + [SMALL_STATE(19229)] = 1020006, + [SMALL_STATE(19230)] = 1020026, + [SMALL_STATE(19231)] = 1020046, + [SMALL_STATE(19232)] = 1020066, + [SMALL_STATE(19233)] = 1020086, + [SMALL_STATE(19234)] = 1020106, + [SMALL_STATE(19235)] = 1020122, + [SMALL_STATE(19236)] = 1020142, + [SMALL_STATE(19237)] = 1020162, + [SMALL_STATE(19238)] = 1020182, + [SMALL_STATE(19239)] = 1020198, + [SMALL_STATE(19240)] = 1020218, + [SMALL_STATE(19241)] = 1020238, + [SMALL_STATE(19242)] = 1020258, + [SMALL_STATE(19243)] = 1020278, + [SMALL_STATE(19244)] = 1020298, + [SMALL_STATE(19245)] = 1020316, + [SMALL_STATE(19246)] = 1020332, + [SMALL_STATE(19247)] = 1020352, + [SMALL_STATE(19248)] = 1020372, + [SMALL_STATE(19249)] = 1020390, + [SMALL_STATE(19250)] = 1020410, + [SMALL_STATE(19251)] = 1020430, + [SMALL_STATE(19252)] = 1020448, + [SMALL_STATE(19253)] = 1020466, + [SMALL_STATE(19254)] = 1020486, + [SMALL_STATE(19255)] = 1020502, + [SMALL_STATE(19256)] = 1020522, + [SMALL_STATE(19257)] = 1020542, + [SMALL_STATE(19258)] = 1020562, + [SMALL_STATE(19259)] = 1020582, + [SMALL_STATE(19260)] = 1020602, + [SMALL_STATE(19261)] = 1020622, + [SMALL_STATE(19262)] = 1020642, + [SMALL_STATE(19263)] = 1020659, + [SMALL_STATE(19264)] = 1020676, + [SMALL_STATE(19265)] = 1020693, + [SMALL_STATE(19266)] = 1020710, + [SMALL_STATE(19267)] = 1020727, + [SMALL_STATE(19268)] = 1020744, + [SMALL_STATE(19269)] = 1020761, + [SMALL_STATE(19270)] = 1020778, + [SMALL_STATE(19271)] = 1020795, + [SMALL_STATE(19272)] = 1020810, + [SMALL_STATE(19273)] = 1020823, + [SMALL_STATE(19274)] = 1020840, + [SMALL_STATE(19275)] = 1020857, + [SMALL_STATE(19276)] = 1020874, + [SMALL_STATE(19277)] = 1020891, + [SMALL_STATE(19278)] = 1020908, + [SMALL_STATE(19279)] = 1020925, + [SMALL_STATE(19280)] = 1020942, + [SMALL_STATE(19281)] = 1020959, + [SMALL_STATE(19282)] = 1020976, + [SMALL_STATE(19283)] = 1020993, + [SMALL_STATE(19284)] = 1021010, + [SMALL_STATE(19285)] = 1021027, + [SMALL_STATE(19286)] = 1021044, + [SMALL_STATE(19287)] = 1021061, + [SMALL_STATE(19288)] = 1021078, + [SMALL_STATE(19289)] = 1021095, + [SMALL_STATE(19290)] = 1021112, + [SMALL_STATE(19291)] = 1021129, + [SMALL_STATE(19292)] = 1021146, + [SMALL_STATE(19293)] = 1021163, + [SMALL_STATE(19294)] = 1021180, + [SMALL_STATE(19295)] = 1021197, + [SMALL_STATE(19296)] = 1021214, + [SMALL_STATE(19297)] = 1021231, + [SMALL_STATE(19298)] = 1021248, + [SMALL_STATE(19299)] = 1021265, + [SMALL_STATE(19300)] = 1021282, + [SMALL_STATE(19301)] = 1021299, + [SMALL_STATE(19302)] = 1021316, + [SMALL_STATE(19303)] = 1021329, + [SMALL_STATE(19304)] = 1021346, + [SMALL_STATE(19305)] = 1021363, + [SMALL_STATE(19306)] = 1021380, + [SMALL_STATE(19307)] = 1021397, + [SMALL_STATE(19308)] = 1021414, + [SMALL_STATE(19309)] = 1021431, + [SMALL_STATE(19310)] = 1021448, + [SMALL_STATE(19311)] = 1021465, + [SMALL_STATE(19312)] = 1021482, + [SMALL_STATE(19313)] = 1021499, + [SMALL_STATE(19314)] = 1021516, + [SMALL_STATE(19315)] = 1021533, + [SMALL_STATE(19316)] = 1021546, + [SMALL_STATE(19317)] = 1021563, + [SMALL_STATE(19318)] = 1021576, + [SMALL_STATE(19319)] = 1021593, + [SMALL_STATE(19320)] = 1021610, + [SMALL_STATE(19321)] = 1021627, + [SMALL_STATE(19322)] = 1021644, + [SMALL_STATE(19323)] = 1021661, + [SMALL_STATE(19324)] = 1021678, + [SMALL_STATE(19325)] = 1021695, + [SMALL_STATE(19326)] = 1021712, + [SMALL_STATE(19327)] = 1021729, + [SMALL_STATE(19328)] = 1021746, + [SMALL_STATE(19329)] = 1021763, + [SMALL_STATE(19330)] = 1021780, + [SMALL_STATE(19331)] = 1021797, + [SMALL_STATE(19332)] = 1021814, + [SMALL_STATE(19333)] = 1021831, + [SMALL_STATE(19334)] = 1021848, + [SMALL_STATE(19335)] = 1021865, + [SMALL_STATE(19336)] = 1021882, + [SMALL_STATE(19337)] = 1021899, + [SMALL_STATE(19338)] = 1021916, + [SMALL_STATE(19339)] = 1021933, + [SMALL_STATE(19340)] = 1021950, + [SMALL_STATE(19341)] = 1021967, + [SMALL_STATE(19342)] = 1021984, + [SMALL_STATE(19343)] = 1022001, + [SMALL_STATE(19344)] = 1022018, + [SMALL_STATE(19345)] = 1022035, + [SMALL_STATE(19346)] = 1022052, + [SMALL_STATE(19347)] = 1022069, + [SMALL_STATE(19348)] = 1022086, + [SMALL_STATE(19349)] = 1022103, + [SMALL_STATE(19350)] = 1022120, + [SMALL_STATE(19351)] = 1022137, + [SMALL_STATE(19352)] = 1022154, + [SMALL_STATE(19353)] = 1022171, + [SMALL_STATE(19354)] = 1022188, + [SMALL_STATE(19355)] = 1022205, + [SMALL_STATE(19356)] = 1022222, + [SMALL_STATE(19357)] = 1022239, + [SMALL_STATE(19358)] = 1022256, + [SMALL_STATE(19359)] = 1022273, + [SMALL_STATE(19360)] = 1022290, + [SMALL_STATE(19361)] = 1022307, + [SMALL_STATE(19362)] = 1022324, + [SMALL_STATE(19363)] = 1022341, + [SMALL_STATE(19364)] = 1022358, + [SMALL_STATE(19365)] = 1022375, + [SMALL_STATE(19366)] = 1022392, + [SMALL_STATE(19367)] = 1022409, + [SMALL_STATE(19368)] = 1022426, + [SMALL_STATE(19369)] = 1022443, + [SMALL_STATE(19370)] = 1022456, + [SMALL_STATE(19371)] = 1022473, + [SMALL_STATE(19372)] = 1022490, + [SMALL_STATE(19373)] = 1022507, + [SMALL_STATE(19374)] = 1022524, + [SMALL_STATE(19375)] = 1022541, + [SMALL_STATE(19376)] = 1022558, + [SMALL_STATE(19377)] = 1022575, + [SMALL_STATE(19378)] = 1022592, + [SMALL_STATE(19379)] = 1022609, + [SMALL_STATE(19380)] = 1022626, + [SMALL_STATE(19381)] = 1022643, + [SMALL_STATE(19382)] = 1022660, + [SMALL_STATE(19383)] = 1022677, + [SMALL_STATE(19384)] = 1022694, + [SMALL_STATE(19385)] = 1022711, + [SMALL_STATE(19386)] = 1022728, + [SMALL_STATE(19387)] = 1022745, + [SMALL_STATE(19388)] = 1022762, + [SMALL_STATE(19389)] = 1022779, + [SMALL_STATE(19390)] = 1022796, + [SMALL_STATE(19391)] = 1022813, + [SMALL_STATE(19392)] = 1022830, + [SMALL_STATE(19393)] = 1022847, + [SMALL_STATE(19394)] = 1022864, + [SMALL_STATE(19395)] = 1022881, + [SMALL_STATE(19396)] = 1022898, + [SMALL_STATE(19397)] = 1022915, + [SMALL_STATE(19398)] = 1022932, + [SMALL_STATE(19399)] = 1022949, + [SMALL_STATE(19400)] = 1022966, + [SMALL_STATE(19401)] = 1022983, + [SMALL_STATE(19402)] = 1023000, + [SMALL_STATE(19403)] = 1023017, + [SMALL_STATE(19404)] = 1023034, + [SMALL_STATE(19405)] = 1023051, + [SMALL_STATE(19406)] = 1023068, + [SMALL_STATE(19407)] = 1023085, + [SMALL_STATE(19408)] = 1023102, + [SMALL_STATE(19409)] = 1023119, + [SMALL_STATE(19410)] = 1023136, + [SMALL_STATE(19411)] = 1023153, + [SMALL_STATE(19412)] = 1023170, + [SMALL_STATE(19413)] = 1023187, + [SMALL_STATE(19414)] = 1023204, + [SMALL_STATE(19415)] = 1023217, + [SMALL_STATE(19416)] = 1023234, + [SMALL_STATE(19417)] = 1023247, + [SMALL_STATE(19418)] = 1023264, + [SMALL_STATE(19419)] = 1023281, + [SMALL_STATE(19420)] = 1023298, + [SMALL_STATE(19421)] = 1023315, + [SMALL_STATE(19422)] = 1023332, + [SMALL_STATE(19423)] = 1023349, + [SMALL_STATE(19424)] = 1023362, + [SMALL_STATE(19425)] = 1023379, + [SMALL_STATE(19426)] = 1023396, + [SMALL_STATE(19427)] = 1023413, + [SMALL_STATE(19428)] = 1023430, + [SMALL_STATE(19429)] = 1023447, + [SMALL_STATE(19430)] = 1023464, + [SMALL_STATE(19431)] = 1023481, + [SMALL_STATE(19432)] = 1023496, + [SMALL_STATE(19433)] = 1023513, + [SMALL_STATE(19434)] = 1023530, + [SMALL_STATE(19435)] = 1023547, + [SMALL_STATE(19436)] = 1023564, + [SMALL_STATE(19437)] = 1023581, + [SMALL_STATE(19438)] = 1023598, + [SMALL_STATE(19439)] = 1023615, + [SMALL_STATE(19440)] = 1023632, + [SMALL_STATE(19441)] = 1023649, + [SMALL_STATE(19442)] = 1023666, + [SMALL_STATE(19443)] = 1023683, + [SMALL_STATE(19444)] = 1023700, + [SMALL_STATE(19445)] = 1023717, + [SMALL_STATE(19446)] = 1023734, + [SMALL_STATE(19447)] = 1023751, + [SMALL_STATE(19448)] = 1023768, + [SMALL_STATE(19449)] = 1023785, + [SMALL_STATE(19450)] = 1023802, + [SMALL_STATE(19451)] = 1023815, + [SMALL_STATE(19452)] = 1023828, + [SMALL_STATE(19453)] = 1023845, + [SMALL_STATE(19454)] = 1023862, + [SMALL_STATE(19455)] = 1023879, + [SMALL_STATE(19456)] = 1023896, + [SMALL_STATE(19457)] = 1023913, + [SMALL_STATE(19458)] = 1023926, + [SMALL_STATE(19459)] = 1023943, + [SMALL_STATE(19460)] = 1023956, + [SMALL_STATE(19461)] = 1023973, + [SMALL_STATE(19462)] = 1023986, + [SMALL_STATE(19463)] = 1024003, + [SMALL_STATE(19464)] = 1024020, + [SMALL_STATE(19465)] = 1024037, + [SMALL_STATE(19466)] = 1024054, + [SMALL_STATE(19467)] = 1024071, + [SMALL_STATE(19468)] = 1024088, + [SMALL_STATE(19469)] = 1024105, + [SMALL_STATE(19470)] = 1024122, + [SMALL_STATE(19471)] = 1024139, + [SMALL_STATE(19472)] = 1024150, + [SMALL_STATE(19473)] = 1024167, + [SMALL_STATE(19474)] = 1024184, + [SMALL_STATE(19475)] = 1024201, + [SMALL_STATE(19476)] = 1024218, + [SMALL_STATE(19477)] = 1024235, + [SMALL_STATE(19478)] = 1024252, + [SMALL_STATE(19479)] = 1024269, + [SMALL_STATE(19480)] = 1024286, + [SMALL_STATE(19481)] = 1024303, + [SMALL_STATE(19482)] = 1024320, + [SMALL_STATE(19483)] = 1024337, + [SMALL_STATE(19484)] = 1024354, + [SMALL_STATE(19485)] = 1024371, + [SMALL_STATE(19486)] = 1024388, + [SMALL_STATE(19487)] = 1024405, + [SMALL_STATE(19488)] = 1024422, + [SMALL_STATE(19489)] = 1024439, + [SMALL_STATE(19490)] = 1024456, + [SMALL_STATE(19491)] = 1024473, + [SMALL_STATE(19492)] = 1024490, + [SMALL_STATE(19493)] = 1024507, + [SMALL_STATE(19494)] = 1024524, + [SMALL_STATE(19495)] = 1024541, + [SMALL_STATE(19496)] = 1024558, + [SMALL_STATE(19497)] = 1024575, + [SMALL_STATE(19498)] = 1024592, + [SMALL_STATE(19499)] = 1024609, + [SMALL_STATE(19500)] = 1024626, + [SMALL_STATE(19501)] = 1024643, + [SMALL_STATE(19502)] = 1024660, + [SMALL_STATE(19503)] = 1024677, + [SMALL_STATE(19504)] = 1024690, + [SMALL_STATE(19505)] = 1024707, + [SMALL_STATE(19506)] = 1024724, + [SMALL_STATE(19507)] = 1024741, + [SMALL_STATE(19508)] = 1024758, + [SMALL_STATE(19509)] = 1024775, + [SMALL_STATE(19510)] = 1024792, + [SMALL_STATE(19511)] = 1024809, + [SMALL_STATE(19512)] = 1024826, + [SMALL_STATE(19513)] = 1024843, + [SMALL_STATE(19514)] = 1024860, + [SMALL_STATE(19515)] = 1024877, + [SMALL_STATE(19516)] = 1024894, + [SMALL_STATE(19517)] = 1024911, + [SMALL_STATE(19518)] = 1024928, + [SMALL_STATE(19519)] = 1024943, + [SMALL_STATE(19520)] = 1024960, + [SMALL_STATE(19521)] = 1024977, + [SMALL_STATE(19522)] = 1024994, + [SMALL_STATE(19523)] = 1025011, + [SMALL_STATE(19524)] = 1025028, + [SMALL_STATE(19525)] = 1025045, + [SMALL_STATE(19526)] = 1025062, + [SMALL_STATE(19527)] = 1025075, + [SMALL_STATE(19528)] = 1025092, + [SMALL_STATE(19529)] = 1025109, + [SMALL_STATE(19530)] = 1025126, + [SMALL_STATE(19531)] = 1025143, + [SMALL_STATE(19532)] = 1025160, + [SMALL_STATE(19533)] = 1025177, + [SMALL_STATE(19534)] = 1025194, + [SMALL_STATE(19535)] = 1025211, + [SMALL_STATE(19536)] = 1025228, + [SMALL_STATE(19537)] = 1025245, + [SMALL_STATE(19538)] = 1025262, + [SMALL_STATE(19539)] = 1025279, + [SMALL_STATE(19540)] = 1025296, + [SMALL_STATE(19541)] = 1025313, + [SMALL_STATE(19542)] = 1025330, + [SMALL_STATE(19543)] = 1025347, + [SMALL_STATE(19544)] = 1025364, + [SMALL_STATE(19545)] = 1025381, + [SMALL_STATE(19546)] = 1025398, + [SMALL_STATE(19547)] = 1025415, + [SMALL_STATE(19548)] = 1025432, + [SMALL_STATE(19549)] = 1025449, + [SMALL_STATE(19550)] = 1025466, + [SMALL_STATE(19551)] = 1025483, + [SMALL_STATE(19552)] = 1025500, + [SMALL_STATE(19553)] = 1025513, + [SMALL_STATE(19554)] = 1025530, + [SMALL_STATE(19555)] = 1025547, + [SMALL_STATE(19556)] = 1025564, + [SMALL_STATE(19557)] = 1025581, + [SMALL_STATE(19558)] = 1025598, + [SMALL_STATE(19559)] = 1025615, + [SMALL_STATE(19560)] = 1025632, + [SMALL_STATE(19561)] = 1025649, + [SMALL_STATE(19562)] = 1025666, + [SMALL_STATE(19563)] = 1025683, + [SMALL_STATE(19564)] = 1025700, + [SMALL_STATE(19565)] = 1025717, + [SMALL_STATE(19566)] = 1025734, + [SMALL_STATE(19567)] = 1025751, + [SMALL_STATE(19568)] = 1025768, + [SMALL_STATE(19569)] = 1025785, + [SMALL_STATE(19570)] = 1025802, + [SMALL_STATE(19571)] = 1025819, + [SMALL_STATE(19572)] = 1025836, + [SMALL_STATE(19573)] = 1025853, + [SMALL_STATE(19574)] = 1025870, + [SMALL_STATE(19575)] = 1025887, + [SMALL_STATE(19576)] = 1025904, + [SMALL_STATE(19577)] = 1025921, + [SMALL_STATE(19578)] = 1025938, + [SMALL_STATE(19579)] = 1025955, + [SMALL_STATE(19580)] = 1025972, + [SMALL_STATE(19581)] = 1025989, + [SMALL_STATE(19582)] = 1026006, + [SMALL_STATE(19583)] = 1026023, + [SMALL_STATE(19584)] = 1026040, + [SMALL_STATE(19585)] = 1026057, + [SMALL_STATE(19586)] = 1026074, + [SMALL_STATE(19587)] = 1026091, + [SMALL_STATE(19588)] = 1026108, + [SMALL_STATE(19589)] = 1026125, + [SMALL_STATE(19590)] = 1026142, + [SMALL_STATE(19591)] = 1026159, + [SMALL_STATE(19592)] = 1026176, + [SMALL_STATE(19593)] = 1026193, + [SMALL_STATE(19594)] = 1026210, + [SMALL_STATE(19595)] = 1026225, + [SMALL_STATE(19596)] = 1026242, + [SMALL_STATE(19597)] = 1026255, + [SMALL_STATE(19598)] = 1026272, + [SMALL_STATE(19599)] = 1026289, + [SMALL_STATE(19600)] = 1026306, + [SMALL_STATE(19601)] = 1026323, + [SMALL_STATE(19602)] = 1026340, + [SMALL_STATE(19603)] = 1026357, + [SMALL_STATE(19604)] = 1026374, + [SMALL_STATE(19605)] = 1026391, + [SMALL_STATE(19606)] = 1026408, + [SMALL_STATE(19607)] = 1026425, + [SMALL_STATE(19608)] = 1026442, + [SMALL_STATE(19609)] = 1026459, + [SMALL_STATE(19610)] = 1026476, + [SMALL_STATE(19611)] = 1026493, + [SMALL_STATE(19612)] = 1026510, + [SMALL_STATE(19613)] = 1026523, + [SMALL_STATE(19614)] = 1026540, + [SMALL_STATE(19615)] = 1026557, + [SMALL_STATE(19616)] = 1026570, + [SMALL_STATE(19617)] = 1026587, + [SMALL_STATE(19618)] = 1026604, + [SMALL_STATE(19619)] = 1026621, + [SMALL_STATE(19620)] = 1026638, + [SMALL_STATE(19621)] = 1026655, + [SMALL_STATE(19622)] = 1026672, + [SMALL_STATE(19623)] = 1026689, + [SMALL_STATE(19624)] = 1026706, + [SMALL_STATE(19625)] = 1026723, + [SMALL_STATE(19626)] = 1026736, + [SMALL_STATE(19627)] = 1026753, + [SMALL_STATE(19628)] = 1026770, + [SMALL_STATE(19629)] = 1026787, + [SMALL_STATE(19630)] = 1026804, + [SMALL_STATE(19631)] = 1026821, + [SMALL_STATE(19632)] = 1026838, + [SMALL_STATE(19633)] = 1026855, + [SMALL_STATE(19634)] = 1026872, + [SMALL_STATE(19635)] = 1026889, + [SMALL_STATE(19636)] = 1026906, + [SMALL_STATE(19637)] = 1026923, + [SMALL_STATE(19638)] = 1026940, + [SMALL_STATE(19639)] = 1026957, + [SMALL_STATE(19640)] = 1026970, + [SMALL_STATE(19641)] = 1026983, + [SMALL_STATE(19642)] = 1027000, + [SMALL_STATE(19643)] = 1027017, + [SMALL_STATE(19644)] = 1027030, + [SMALL_STATE(19645)] = 1027047, + [SMALL_STATE(19646)] = 1027064, + [SMALL_STATE(19647)] = 1027081, + [SMALL_STATE(19648)] = 1027098, + [SMALL_STATE(19649)] = 1027111, + [SMALL_STATE(19650)] = 1027128, + [SMALL_STATE(19651)] = 1027145, + [SMALL_STATE(19652)] = 1027162, + [SMALL_STATE(19653)] = 1027179, + [SMALL_STATE(19654)] = 1027196, + [SMALL_STATE(19655)] = 1027213, + [SMALL_STATE(19656)] = 1027230, + [SMALL_STATE(19657)] = 1027247, + [SMALL_STATE(19658)] = 1027264, + [SMALL_STATE(19659)] = 1027281, + [SMALL_STATE(19660)] = 1027298, + [SMALL_STATE(19661)] = 1027311, + [SMALL_STATE(19662)] = 1027328, + [SMALL_STATE(19663)] = 1027345, + [SMALL_STATE(19664)] = 1027362, + [SMALL_STATE(19665)] = 1027379, + [SMALL_STATE(19666)] = 1027396, + [SMALL_STATE(19667)] = 1027413, + [SMALL_STATE(19668)] = 1027430, + [SMALL_STATE(19669)] = 1027447, + [SMALL_STATE(19670)] = 1027464, + [SMALL_STATE(19671)] = 1027481, + [SMALL_STATE(19672)] = 1027498, + [SMALL_STATE(19673)] = 1027515, + [SMALL_STATE(19674)] = 1027532, + [SMALL_STATE(19675)] = 1027549, + [SMALL_STATE(19676)] = 1027566, + [SMALL_STATE(19677)] = 1027583, + [SMALL_STATE(19678)] = 1027600, + [SMALL_STATE(19679)] = 1027617, + [SMALL_STATE(19680)] = 1027630, + [SMALL_STATE(19681)] = 1027647, + [SMALL_STATE(19682)] = 1027664, + [SMALL_STATE(19683)] = 1027677, + [SMALL_STATE(19684)] = 1027694, + [SMALL_STATE(19685)] = 1027711, + [SMALL_STATE(19686)] = 1027728, + [SMALL_STATE(19687)] = 1027745, + [SMALL_STATE(19688)] = 1027762, + [SMALL_STATE(19689)] = 1027779, + [SMALL_STATE(19690)] = 1027796, + [SMALL_STATE(19691)] = 1027813, + [SMALL_STATE(19692)] = 1027830, + [SMALL_STATE(19693)] = 1027847, + [SMALL_STATE(19694)] = 1027864, + [SMALL_STATE(19695)] = 1027881, + [SMALL_STATE(19696)] = 1027898, + [SMALL_STATE(19697)] = 1027915, + [SMALL_STATE(19698)] = 1027932, + [SMALL_STATE(19699)] = 1027949, + [SMALL_STATE(19700)] = 1027966, + [SMALL_STATE(19701)] = 1027983, + [SMALL_STATE(19702)] = 1028000, + [SMALL_STATE(19703)] = 1028017, + [SMALL_STATE(19704)] = 1028034, + [SMALL_STATE(19705)] = 1028051, + [SMALL_STATE(19706)] = 1028068, + [SMALL_STATE(19707)] = 1028085, + [SMALL_STATE(19708)] = 1028102, + [SMALL_STATE(19709)] = 1028119, + [SMALL_STATE(19710)] = 1028136, + [SMALL_STATE(19711)] = 1028153, + [SMALL_STATE(19712)] = 1028170, + [SMALL_STATE(19713)] = 1028187, + [SMALL_STATE(19714)] = 1028204, + [SMALL_STATE(19715)] = 1028221, + [SMALL_STATE(19716)] = 1028238, + [SMALL_STATE(19717)] = 1028255, + [SMALL_STATE(19718)] = 1028272, + [SMALL_STATE(19719)] = 1028289, + [SMALL_STATE(19720)] = 1028306, + [SMALL_STATE(19721)] = 1028323, + [SMALL_STATE(19722)] = 1028340, + [SMALL_STATE(19723)] = 1028357, + [SMALL_STATE(19724)] = 1028374, + [SMALL_STATE(19725)] = 1028391, + [SMALL_STATE(19726)] = 1028408, + [SMALL_STATE(19727)] = 1028421, + [SMALL_STATE(19728)] = 1028438, + [SMALL_STATE(19729)] = 1028455, + [SMALL_STATE(19730)] = 1028472, + [SMALL_STATE(19731)] = 1028489, + [SMALL_STATE(19732)] = 1028506, + [SMALL_STATE(19733)] = 1028523, + [SMALL_STATE(19734)] = 1028540, + [SMALL_STATE(19735)] = 1028557, + [SMALL_STATE(19736)] = 1028574, + [SMALL_STATE(19737)] = 1028591, + [SMALL_STATE(19738)] = 1028608, + [SMALL_STATE(19739)] = 1028625, + [SMALL_STATE(19740)] = 1028642, + [SMALL_STATE(19741)] = 1028659, + [SMALL_STATE(19742)] = 1028676, + [SMALL_STATE(19743)] = 1028693, + [SMALL_STATE(19744)] = 1028710, + [SMALL_STATE(19745)] = 1028727, + [SMALL_STATE(19746)] = 1028744, + [SMALL_STATE(19747)] = 1028761, + [SMALL_STATE(19748)] = 1028778, + [SMALL_STATE(19749)] = 1028795, + [SMALL_STATE(19750)] = 1028812, + [SMALL_STATE(19751)] = 1028829, + [SMALL_STATE(19752)] = 1028846, + [SMALL_STATE(19753)] = 1028863, + [SMALL_STATE(19754)] = 1028880, + [SMALL_STATE(19755)] = 1028897, + [SMALL_STATE(19756)] = 1028914, + [SMALL_STATE(19757)] = 1028931, + [SMALL_STATE(19758)] = 1028948, + [SMALL_STATE(19759)] = 1028965, + [SMALL_STATE(19760)] = 1028982, + [SMALL_STATE(19761)] = 1028999, + [SMALL_STATE(19762)] = 1029016, + [SMALL_STATE(19763)] = 1029033, + [SMALL_STATE(19764)] = 1029050, + [SMALL_STATE(19765)] = 1029067, + [SMALL_STATE(19766)] = 1029084, + [SMALL_STATE(19767)] = 1029101, + [SMALL_STATE(19768)] = 1029118, + [SMALL_STATE(19769)] = 1029135, + [SMALL_STATE(19770)] = 1029152, + [SMALL_STATE(19771)] = 1029165, + [SMALL_STATE(19772)] = 1029182, + [SMALL_STATE(19773)] = 1029199, + [SMALL_STATE(19774)] = 1029216, + [SMALL_STATE(19775)] = 1029233, + [SMALL_STATE(19776)] = 1029250, + [SMALL_STATE(19777)] = 1029267, + [SMALL_STATE(19778)] = 1029284, + [SMALL_STATE(19779)] = 1029301, + [SMALL_STATE(19780)] = 1029318, + [SMALL_STATE(19781)] = 1029335, + [SMALL_STATE(19782)] = 1029352, + [SMALL_STATE(19783)] = 1029369, + [SMALL_STATE(19784)] = 1029386, + [SMALL_STATE(19785)] = 1029403, + [SMALL_STATE(19786)] = 1029420, + [SMALL_STATE(19787)] = 1029435, + [SMALL_STATE(19788)] = 1029452, + [SMALL_STATE(19789)] = 1029469, + [SMALL_STATE(19790)] = 1029486, + [SMALL_STATE(19791)] = 1029503, + [SMALL_STATE(19792)] = 1029520, + [SMALL_STATE(19793)] = 1029537, + [SMALL_STATE(19794)] = 1029554, + [SMALL_STATE(19795)] = 1029571, + [SMALL_STATE(19796)] = 1029588, + [SMALL_STATE(19797)] = 1029605, + [SMALL_STATE(19798)] = 1029622, + [SMALL_STATE(19799)] = 1029639, + [SMALL_STATE(19800)] = 1029656, + [SMALL_STATE(19801)] = 1029673, + [SMALL_STATE(19802)] = 1029690, + [SMALL_STATE(19803)] = 1029707, + [SMALL_STATE(19804)] = 1029724, + [SMALL_STATE(19805)] = 1029741, + [SMALL_STATE(19806)] = 1029758, + [SMALL_STATE(19807)] = 1029775, + [SMALL_STATE(19808)] = 1029792, + [SMALL_STATE(19809)] = 1029805, + [SMALL_STATE(19810)] = 1029822, + [SMALL_STATE(19811)] = 1029839, + [SMALL_STATE(19812)] = 1029856, + [SMALL_STATE(19813)] = 1029873, + [SMALL_STATE(19814)] = 1029890, + [SMALL_STATE(19815)] = 1029903, + [SMALL_STATE(19816)] = 1029916, + [SMALL_STATE(19817)] = 1029933, + [SMALL_STATE(19818)] = 1029950, + [SMALL_STATE(19819)] = 1029967, + [SMALL_STATE(19820)] = 1029984, + [SMALL_STATE(19821)] = 1030001, + [SMALL_STATE(19822)] = 1030018, + [SMALL_STATE(19823)] = 1030035, + [SMALL_STATE(19824)] = 1030052, + [SMALL_STATE(19825)] = 1030069, + [SMALL_STATE(19826)] = 1030086, + [SMALL_STATE(19827)] = 1030103, + [SMALL_STATE(19828)] = 1030120, + [SMALL_STATE(19829)] = 1030137, + [SMALL_STATE(19830)] = 1030154, + [SMALL_STATE(19831)] = 1030167, + [SMALL_STATE(19832)] = 1030184, + [SMALL_STATE(19833)] = 1030201, + [SMALL_STATE(19834)] = 1030218, + [SMALL_STATE(19835)] = 1030235, + [SMALL_STATE(19836)] = 1030252, + [SMALL_STATE(19837)] = 1030269, + [SMALL_STATE(19838)] = 1030284, + [SMALL_STATE(19839)] = 1030301, + [SMALL_STATE(19840)] = 1030318, + [SMALL_STATE(19841)] = 1030331, + [SMALL_STATE(19842)] = 1030348, + [SMALL_STATE(19843)] = 1030365, + [SMALL_STATE(19844)] = 1030382, + [SMALL_STATE(19845)] = 1030399, + [SMALL_STATE(19846)] = 1030412, + [SMALL_STATE(19847)] = 1030429, + [SMALL_STATE(19848)] = 1030446, + [SMALL_STATE(19849)] = 1030463, + [SMALL_STATE(19850)] = 1030480, + [SMALL_STATE(19851)] = 1030497, + [SMALL_STATE(19852)] = 1030514, + [SMALL_STATE(19853)] = 1030525, + [SMALL_STATE(19854)] = 1030542, + [SMALL_STATE(19855)] = 1030555, + [SMALL_STATE(19856)] = 1030572, + [SMALL_STATE(19857)] = 1030589, + [SMALL_STATE(19858)] = 1030606, + [SMALL_STATE(19859)] = 1030623, + [SMALL_STATE(19860)] = 1030640, + [SMALL_STATE(19861)] = 1030657, + [SMALL_STATE(19862)] = 1030674, + [SMALL_STATE(19863)] = 1030691, + [SMALL_STATE(19864)] = 1030708, + [SMALL_STATE(19865)] = 1030725, + [SMALL_STATE(19866)] = 1030742, + [SMALL_STATE(19867)] = 1030757, + [SMALL_STATE(19868)] = 1030774, + [SMALL_STATE(19869)] = 1030791, + [SMALL_STATE(19870)] = 1030808, + [SMALL_STATE(19871)] = 1030825, + [SMALL_STATE(19872)] = 1030842, + [SMALL_STATE(19873)] = 1030857, + [SMALL_STATE(19874)] = 1030874, + [SMALL_STATE(19875)] = 1030891, + [SMALL_STATE(19876)] = 1030908, + [SMALL_STATE(19877)] = 1030925, + [SMALL_STATE(19878)] = 1030942, + [SMALL_STATE(19879)] = 1030959, + [SMALL_STATE(19880)] = 1030976, + [SMALL_STATE(19881)] = 1030993, + [SMALL_STATE(19882)] = 1031010, + [SMALL_STATE(19883)] = 1031027, + [SMALL_STATE(19884)] = 1031044, + [SMALL_STATE(19885)] = 1031061, + [SMALL_STATE(19886)] = 1031078, + [SMALL_STATE(19887)] = 1031095, + [SMALL_STATE(19888)] = 1031112, + [SMALL_STATE(19889)] = 1031129, + [SMALL_STATE(19890)] = 1031146, + [SMALL_STATE(19891)] = 1031163, + [SMALL_STATE(19892)] = 1031180, + [SMALL_STATE(19893)] = 1031197, + [SMALL_STATE(19894)] = 1031214, + [SMALL_STATE(19895)] = 1031231, + [SMALL_STATE(19896)] = 1031248, + [SMALL_STATE(19897)] = 1031265, + [SMALL_STATE(19898)] = 1031282, + [SMALL_STATE(19899)] = 1031299, + [SMALL_STATE(19900)] = 1031316, + [SMALL_STATE(19901)] = 1031333, + [SMALL_STATE(19902)] = 1031350, + [SMALL_STATE(19903)] = 1031367, + [SMALL_STATE(19904)] = 1031384, + [SMALL_STATE(19905)] = 1031401, + [SMALL_STATE(19906)] = 1031418, + [SMALL_STATE(19907)] = 1031435, + [SMALL_STATE(19908)] = 1031452, + [SMALL_STATE(19909)] = 1031469, + [SMALL_STATE(19910)] = 1031486, + [SMALL_STATE(19911)] = 1031503, + [SMALL_STATE(19912)] = 1031520, + [SMALL_STATE(19913)] = 1031537, + [SMALL_STATE(19914)] = 1031554, + [SMALL_STATE(19915)] = 1031571, + [SMALL_STATE(19916)] = 1031588, + [SMALL_STATE(19917)] = 1031605, + [SMALL_STATE(19918)] = 1031622, + [SMALL_STATE(19919)] = 1031639, + [SMALL_STATE(19920)] = 1031656, + [SMALL_STATE(19921)] = 1031673, + [SMALL_STATE(19922)] = 1031690, + [SMALL_STATE(19923)] = 1031707, + [SMALL_STATE(19924)] = 1031724, + [SMALL_STATE(19925)] = 1031741, + [SMALL_STATE(19926)] = 1031758, + [SMALL_STATE(19927)] = 1031775, + [SMALL_STATE(19928)] = 1031792, + [SMALL_STATE(19929)] = 1031809, + [SMALL_STATE(19930)] = 1031826, + [SMALL_STATE(19931)] = 1031843, + [SMALL_STATE(19932)] = 1031860, + [SMALL_STATE(19933)] = 1031877, + [SMALL_STATE(19934)] = 1031894, + [SMALL_STATE(19935)] = 1031911, + [SMALL_STATE(19936)] = 1031928, + [SMALL_STATE(19937)] = 1031945, + [SMALL_STATE(19938)] = 1031962, + [SMALL_STATE(19939)] = 1031979, + [SMALL_STATE(19940)] = 1031996, + [SMALL_STATE(19941)] = 1032013, + [SMALL_STATE(19942)] = 1032030, + [SMALL_STATE(19943)] = 1032047, + [SMALL_STATE(19944)] = 1032064, + [SMALL_STATE(19945)] = 1032081, + [SMALL_STATE(19946)] = 1032098, + [SMALL_STATE(19947)] = 1032115, + [SMALL_STATE(19948)] = 1032132, + [SMALL_STATE(19949)] = 1032149, + [SMALL_STATE(19950)] = 1032166, + [SMALL_STATE(19951)] = 1032183, + [SMALL_STATE(19952)] = 1032200, + [SMALL_STATE(19953)] = 1032217, + [SMALL_STATE(19954)] = 1032234, + [SMALL_STATE(19955)] = 1032251, + [SMALL_STATE(19956)] = 1032268, + [SMALL_STATE(19957)] = 1032285, + [SMALL_STATE(19958)] = 1032302, + [SMALL_STATE(19959)] = 1032319, + [SMALL_STATE(19960)] = 1032336, + [SMALL_STATE(19961)] = 1032353, + [SMALL_STATE(19962)] = 1032370, + [SMALL_STATE(19963)] = 1032387, + [SMALL_STATE(19964)] = 1032404, + [SMALL_STATE(19965)] = 1032421, + [SMALL_STATE(19966)] = 1032438, + [SMALL_STATE(19967)] = 1032455, + [SMALL_STATE(19968)] = 1032472, + [SMALL_STATE(19969)] = 1032489, + [SMALL_STATE(19970)] = 1032502, + [SMALL_STATE(19971)] = 1032519, + [SMALL_STATE(19972)] = 1032536, + [SMALL_STATE(19973)] = 1032553, + [SMALL_STATE(19974)] = 1032570, + [SMALL_STATE(19975)] = 1032587, + [SMALL_STATE(19976)] = 1032604, + [SMALL_STATE(19977)] = 1032621, + [SMALL_STATE(19978)] = 1032638, + [SMALL_STATE(19979)] = 1032655, + [SMALL_STATE(19980)] = 1032672, + [SMALL_STATE(19981)] = 1032689, + [SMALL_STATE(19982)] = 1032706, + [SMALL_STATE(19983)] = 1032723, + [SMALL_STATE(19984)] = 1032740, + [SMALL_STATE(19985)] = 1032757, + [SMALL_STATE(19986)] = 1032774, + [SMALL_STATE(19987)] = 1032791, + [SMALL_STATE(19988)] = 1032808, + [SMALL_STATE(19989)] = 1032825, + [SMALL_STATE(19990)] = 1032842, + [SMALL_STATE(19991)] = 1032859, + [SMALL_STATE(19992)] = 1032876, + [SMALL_STATE(19993)] = 1032893, + [SMALL_STATE(19994)] = 1032910, + [SMALL_STATE(19995)] = 1032927, + [SMALL_STATE(19996)] = 1032944, + [SMALL_STATE(19997)] = 1032961, + [SMALL_STATE(19998)] = 1032978, + [SMALL_STATE(19999)] = 1032995, + [SMALL_STATE(20000)] = 1033012, + [SMALL_STATE(20001)] = 1033029, + [SMALL_STATE(20002)] = 1033046, + [SMALL_STATE(20003)] = 1033063, + [SMALL_STATE(20004)] = 1033080, + [SMALL_STATE(20005)] = 1033097, + [SMALL_STATE(20006)] = 1033114, + [SMALL_STATE(20007)] = 1033131, + [SMALL_STATE(20008)] = 1033148, + [SMALL_STATE(20009)] = 1033165, + [SMALL_STATE(20010)] = 1033182, + [SMALL_STATE(20011)] = 1033199, + [SMALL_STATE(20012)] = 1033216, + [SMALL_STATE(20013)] = 1033233, + [SMALL_STATE(20014)] = 1033250, + [SMALL_STATE(20015)] = 1033267, + [SMALL_STATE(20016)] = 1033284, + [SMALL_STATE(20017)] = 1033301, + [SMALL_STATE(20018)] = 1033318, + [SMALL_STATE(20019)] = 1033335, + [SMALL_STATE(20020)] = 1033352, + [SMALL_STATE(20021)] = 1033369, + [SMALL_STATE(20022)] = 1033386, + [SMALL_STATE(20023)] = 1033403, + [SMALL_STATE(20024)] = 1033420, + [SMALL_STATE(20025)] = 1033437, + [SMALL_STATE(20026)] = 1033454, + [SMALL_STATE(20027)] = 1033471, + [SMALL_STATE(20028)] = 1033488, + [SMALL_STATE(20029)] = 1033505, + [SMALL_STATE(20030)] = 1033522, + [SMALL_STATE(20031)] = 1033539, + [SMALL_STATE(20032)] = 1033556, + [SMALL_STATE(20033)] = 1033573, + [SMALL_STATE(20034)] = 1033590, + [SMALL_STATE(20035)] = 1033607, + [SMALL_STATE(20036)] = 1033624, + [SMALL_STATE(20037)] = 1033641, + [SMALL_STATE(20038)] = 1033658, + [SMALL_STATE(20039)] = 1033675, + [SMALL_STATE(20040)] = 1033692, + [SMALL_STATE(20041)] = 1033709, + [SMALL_STATE(20042)] = 1033726, + [SMALL_STATE(20043)] = 1033743, + [SMALL_STATE(20044)] = 1033760, + [SMALL_STATE(20045)] = 1033777, + [SMALL_STATE(20046)] = 1033794, + [SMALL_STATE(20047)] = 1033811, + [SMALL_STATE(20048)] = 1033828, + [SMALL_STATE(20049)] = 1033845, + [SMALL_STATE(20050)] = 1033862, + [SMALL_STATE(20051)] = 1033879, + [SMALL_STATE(20052)] = 1033896, + [SMALL_STATE(20053)] = 1033913, + [SMALL_STATE(20054)] = 1033930, + [SMALL_STATE(20055)] = 1033947, + [SMALL_STATE(20056)] = 1033964, + [SMALL_STATE(20057)] = 1033981, + [SMALL_STATE(20058)] = 1033998, + [SMALL_STATE(20059)] = 1034015, + [SMALL_STATE(20060)] = 1034032, + [SMALL_STATE(20061)] = 1034049, + [SMALL_STATE(20062)] = 1034066, + [SMALL_STATE(20063)] = 1034083, + [SMALL_STATE(20064)] = 1034100, + [SMALL_STATE(20065)] = 1034117, + [SMALL_STATE(20066)] = 1034134, + [SMALL_STATE(20067)] = 1034151, + [SMALL_STATE(20068)] = 1034168, + [SMALL_STATE(20069)] = 1034185, + [SMALL_STATE(20070)] = 1034202, + [SMALL_STATE(20071)] = 1034219, + [SMALL_STATE(20072)] = 1034236, + [SMALL_STATE(20073)] = 1034253, + [SMALL_STATE(20074)] = 1034270, + [SMALL_STATE(20075)] = 1034287, + [SMALL_STATE(20076)] = 1034304, + [SMALL_STATE(20077)] = 1034321, + [SMALL_STATE(20078)] = 1034338, + [SMALL_STATE(20079)] = 1034355, + [SMALL_STATE(20080)] = 1034372, + [SMALL_STATE(20081)] = 1034389, + [SMALL_STATE(20082)] = 1034406, + [SMALL_STATE(20083)] = 1034423, + [SMALL_STATE(20084)] = 1034440, + [SMALL_STATE(20085)] = 1034457, + [SMALL_STATE(20086)] = 1034474, + [SMALL_STATE(20087)] = 1034487, + [SMALL_STATE(20088)] = 1034504, + [SMALL_STATE(20089)] = 1034521, + [SMALL_STATE(20090)] = 1034538, + [SMALL_STATE(20091)] = 1034555, + [SMALL_STATE(20092)] = 1034572, + [SMALL_STATE(20093)] = 1034589, + [SMALL_STATE(20094)] = 1034606, + [SMALL_STATE(20095)] = 1034619, + [SMALL_STATE(20096)] = 1034632, + [SMALL_STATE(20097)] = 1034649, + [SMALL_STATE(20098)] = 1034666, + [SMALL_STATE(20099)] = 1034683, + [SMALL_STATE(20100)] = 1034700, + [SMALL_STATE(20101)] = 1034717, + [SMALL_STATE(20102)] = 1034730, + [SMALL_STATE(20103)] = 1034747, + [SMALL_STATE(20104)] = 1034764, + [SMALL_STATE(20105)] = 1034781, + [SMALL_STATE(20106)] = 1034798, + [SMALL_STATE(20107)] = 1034815, + [SMALL_STATE(20108)] = 1034832, + [SMALL_STATE(20109)] = 1034849, + [SMALL_STATE(20110)] = 1034866, + [SMALL_STATE(20111)] = 1034883, + [SMALL_STATE(20112)] = 1034900, + [SMALL_STATE(20113)] = 1034915, + [SMALL_STATE(20114)] = 1034932, + [SMALL_STATE(20115)] = 1034947, + [SMALL_STATE(20116)] = 1034964, + [SMALL_STATE(20117)] = 1034981, + [SMALL_STATE(20118)] = 1034998, + [SMALL_STATE(20119)] = 1035015, + [SMALL_STATE(20120)] = 1035032, + [SMALL_STATE(20121)] = 1035047, + [SMALL_STATE(20122)] = 1035064, + [SMALL_STATE(20123)] = 1035081, + [SMALL_STATE(20124)] = 1035096, + [SMALL_STATE(20125)] = 1035113, + [SMALL_STATE(20126)] = 1035130, + [SMALL_STATE(20127)] = 1035147, + [SMALL_STATE(20128)] = 1035164, + [SMALL_STATE(20129)] = 1035175, + [SMALL_STATE(20130)] = 1035192, + [SMALL_STATE(20131)] = 1035209, + [SMALL_STATE(20132)] = 1035226, + [SMALL_STATE(20133)] = 1035243, + [SMALL_STATE(20134)] = 1035260, + [SMALL_STATE(20135)] = 1035277, + [SMALL_STATE(20136)] = 1035294, + [SMALL_STATE(20137)] = 1035311, + [SMALL_STATE(20138)] = 1035328, + [SMALL_STATE(20139)] = 1035345, + [SMALL_STATE(20140)] = 1035362, + [SMALL_STATE(20141)] = 1035379, + [SMALL_STATE(20142)] = 1035396, + [SMALL_STATE(20143)] = 1035413, + [SMALL_STATE(20144)] = 1035430, + [SMALL_STATE(20145)] = 1035447, + [SMALL_STATE(20146)] = 1035464, + [SMALL_STATE(20147)] = 1035481, + [SMALL_STATE(20148)] = 1035498, + [SMALL_STATE(20149)] = 1035515, + [SMALL_STATE(20150)] = 1035528, + [SMALL_STATE(20151)] = 1035541, + [SMALL_STATE(20152)] = 1035558, + [SMALL_STATE(20153)] = 1035575, + [SMALL_STATE(20154)] = 1035592, + [SMALL_STATE(20155)] = 1035609, + [SMALL_STATE(20156)] = 1035626, + [SMALL_STATE(20157)] = 1035643, + [SMALL_STATE(20158)] = 1035660, + [SMALL_STATE(20159)] = 1035677, + [SMALL_STATE(20160)] = 1035694, + [SMALL_STATE(20161)] = 1035711, + [SMALL_STATE(20162)] = 1035728, + [SMALL_STATE(20163)] = 1035745, + [SMALL_STATE(20164)] = 1035762, + [SMALL_STATE(20165)] = 1035779, + [SMALL_STATE(20166)] = 1035796, + [SMALL_STATE(20167)] = 1035813, + [SMALL_STATE(20168)] = 1035830, + [SMALL_STATE(20169)] = 1035847, + [SMALL_STATE(20170)] = 1035864, + [SMALL_STATE(20171)] = 1035881, + [SMALL_STATE(20172)] = 1035898, + [SMALL_STATE(20173)] = 1035915, + [SMALL_STATE(20174)] = 1035932, + [SMALL_STATE(20175)] = 1035949, + [SMALL_STATE(20176)] = 1035966, + [SMALL_STATE(20177)] = 1035983, + [SMALL_STATE(20178)] = 1036000, + [SMALL_STATE(20179)] = 1036017, + [SMALL_STATE(20180)] = 1036034, + [SMALL_STATE(20181)] = 1036051, + [SMALL_STATE(20182)] = 1036068, + [SMALL_STATE(20183)] = 1036085, + [SMALL_STATE(20184)] = 1036102, + [SMALL_STATE(20185)] = 1036119, + [SMALL_STATE(20186)] = 1036136, + [SMALL_STATE(20187)] = 1036153, + [SMALL_STATE(20188)] = 1036170, + [SMALL_STATE(20189)] = 1036187, + [SMALL_STATE(20190)] = 1036204, + [SMALL_STATE(20191)] = 1036217, + [SMALL_STATE(20192)] = 1036230, + [SMALL_STATE(20193)] = 1036247, + [SMALL_STATE(20194)] = 1036264, + [SMALL_STATE(20195)] = 1036281, + [SMALL_STATE(20196)] = 1036298, + [SMALL_STATE(20197)] = 1036315, + [SMALL_STATE(20198)] = 1036332, + [SMALL_STATE(20199)] = 1036349, + [SMALL_STATE(20200)] = 1036366, + [SMALL_STATE(20201)] = 1036383, + [SMALL_STATE(20202)] = 1036400, + [SMALL_STATE(20203)] = 1036415, + [SMALL_STATE(20204)] = 1036432, + [SMALL_STATE(20205)] = 1036449, + [SMALL_STATE(20206)] = 1036466, + [SMALL_STATE(20207)] = 1036483, + [SMALL_STATE(20208)] = 1036500, + [SMALL_STATE(20209)] = 1036517, + [SMALL_STATE(20210)] = 1036534, + [SMALL_STATE(20211)] = 1036551, + [SMALL_STATE(20212)] = 1036568, + [SMALL_STATE(20213)] = 1036585, + [SMALL_STATE(20214)] = 1036602, + [SMALL_STATE(20215)] = 1036619, + [SMALL_STATE(20216)] = 1036636, + [SMALL_STATE(20217)] = 1036653, + [SMALL_STATE(20218)] = 1036670, + [SMALL_STATE(20219)] = 1036687, + [SMALL_STATE(20220)] = 1036704, + [SMALL_STATE(20221)] = 1036721, + [SMALL_STATE(20222)] = 1036738, + [SMALL_STATE(20223)] = 1036755, + [SMALL_STATE(20224)] = 1036772, + [SMALL_STATE(20225)] = 1036789, + [SMALL_STATE(20226)] = 1036806, + [SMALL_STATE(20227)] = 1036823, + [SMALL_STATE(20228)] = 1036840, + [SMALL_STATE(20229)] = 1036857, + [SMALL_STATE(20230)] = 1036874, + [SMALL_STATE(20231)] = 1036891, + [SMALL_STATE(20232)] = 1036908, + [SMALL_STATE(20233)] = 1036925, + [SMALL_STATE(20234)] = 1036942, + [SMALL_STATE(20235)] = 1036959, + [SMALL_STATE(20236)] = 1036976, + [SMALL_STATE(20237)] = 1036993, + [SMALL_STATE(20238)] = 1037010, + [SMALL_STATE(20239)] = 1037027, + [SMALL_STATE(20240)] = 1037044, + [SMALL_STATE(20241)] = 1037061, + [SMALL_STATE(20242)] = 1037078, + [SMALL_STATE(20243)] = 1037095, + [SMALL_STATE(20244)] = 1037108, + [SMALL_STATE(20245)] = 1037125, + [SMALL_STATE(20246)] = 1037142, + [SMALL_STATE(20247)] = 1037159, + [SMALL_STATE(20248)] = 1037172, + [SMALL_STATE(20249)] = 1037189, + [SMALL_STATE(20250)] = 1037206, + [SMALL_STATE(20251)] = 1037223, + [SMALL_STATE(20252)] = 1037240, + [SMALL_STATE(20253)] = 1037257, + [SMALL_STATE(20254)] = 1037274, + [SMALL_STATE(20255)] = 1037291, + [SMALL_STATE(20256)] = 1037308, + [SMALL_STATE(20257)] = 1037321, + [SMALL_STATE(20258)] = 1037338, + [SMALL_STATE(20259)] = 1037355, + [SMALL_STATE(20260)] = 1037372, + [SMALL_STATE(20261)] = 1037389, + [SMALL_STATE(20262)] = 1037406, + [SMALL_STATE(20263)] = 1037423, + [SMALL_STATE(20264)] = 1037440, + [SMALL_STATE(20265)] = 1037457, + [SMALL_STATE(20266)] = 1037474, + [SMALL_STATE(20267)] = 1037491, + [SMALL_STATE(20268)] = 1037508, + [SMALL_STATE(20269)] = 1037525, + [SMALL_STATE(20270)] = 1037542, + [SMALL_STATE(20271)] = 1037559, + [SMALL_STATE(20272)] = 1037576, + [SMALL_STATE(20273)] = 1037593, + [SMALL_STATE(20274)] = 1037610, + [SMALL_STATE(20275)] = 1037627, + [SMALL_STATE(20276)] = 1037644, + [SMALL_STATE(20277)] = 1037657, + [SMALL_STATE(20278)] = 1037674, + [SMALL_STATE(20279)] = 1037691, + [SMALL_STATE(20280)] = 1037708, + [SMALL_STATE(20281)] = 1037725, + [SMALL_STATE(20282)] = 1037742, + [SMALL_STATE(20283)] = 1037759, + [SMALL_STATE(20284)] = 1037776, + [SMALL_STATE(20285)] = 1037793, + [SMALL_STATE(20286)] = 1037810, + [SMALL_STATE(20287)] = 1037827, + [SMALL_STATE(20288)] = 1037844, + [SMALL_STATE(20289)] = 1037861, + [SMALL_STATE(20290)] = 1037874, + [SMALL_STATE(20291)] = 1037891, + [SMALL_STATE(20292)] = 1037904, + [SMALL_STATE(20293)] = 1037921, + [SMALL_STATE(20294)] = 1037938, + [SMALL_STATE(20295)] = 1037955, + [SMALL_STATE(20296)] = 1037972, + [SMALL_STATE(20297)] = 1037989, + [SMALL_STATE(20298)] = 1038006, + [SMALL_STATE(20299)] = 1038023, + [SMALL_STATE(20300)] = 1038040, + [SMALL_STATE(20301)] = 1038057, + [SMALL_STATE(20302)] = 1038074, + [SMALL_STATE(20303)] = 1038091, + [SMALL_STATE(20304)] = 1038108, + [SMALL_STATE(20305)] = 1038125, + [SMALL_STATE(20306)] = 1038142, + [SMALL_STATE(20307)] = 1038159, + [SMALL_STATE(20308)] = 1038176, + [SMALL_STATE(20309)] = 1038193, + [SMALL_STATE(20310)] = 1038210, + [SMALL_STATE(20311)] = 1038227, + [SMALL_STATE(20312)] = 1038244, + [SMALL_STATE(20313)] = 1038261, + [SMALL_STATE(20314)] = 1038278, + [SMALL_STATE(20315)] = 1038295, + [SMALL_STATE(20316)] = 1038312, + [SMALL_STATE(20317)] = 1038329, + [SMALL_STATE(20318)] = 1038346, + [SMALL_STATE(20319)] = 1038363, + [SMALL_STATE(20320)] = 1038380, + [SMALL_STATE(20321)] = 1038397, + [SMALL_STATE(20322)] = 1038414, + [SMALL_STATE(20323)] = 1038431, + [SMALL_STATE(20324)] = 1038448, + [SMALL_STATE(20325)] = 1038465, + [SMALL_STATE(20326)] = 1038482, + [SMALL_STATE(20327)] = 1038499, + [SMALL_STATE(20328)] = 1038516, + [SMALL_STATE(20329)] = 1038533, + [SMALL_STATE(20330)] = 1038550, + [SMALL_STATE(20331)] = 1038563, + [SMALL_STATE(20332)] = 1038580, + [SMALL_STATE(20333)] = 1038597, + [SMALL_STATE(20334)] = 1038614, + [SMALL_STATE(20335)] = 1038631, + [SMALL_STATE(20336)] = 1038648, + [SMALL_STATE(20337)] = 1038665, + [SMALL_STATE(20338)] = 1038682, + [SMALL_STATE(20339)] = 1038699, + [SMALL_STATE(20340)] = 1038716, + [SMALL_STATE(20341)] = 1038733, + [SMALL_STATE(20342)] = 1038750, + [SMALL_STATE(20343)] = 1038767, + [SMALL_STATE(20344)] = 1038784, + [SMALL_STATE(20345)] = 1038801, + [SMALL_STATE(20346)] = 1038818, + [SMALL_STATE(20347)] = 1038835, + [SMALL_STATE(20348)] = 1038852, + [SMALL_STATE(20349)] = 1038869, + [SMALL_STATE(20350)] = 1038886, + [SMALL_STATE(20351)] = 1038903, + [SMALL_STATE(20352)] = 1038920, + [SMALL_STATE(20353)] = 1038935, + [SMALL_STATE(20354)] = 1038952, + [SMALL_STATE(20355)] = 1038969, + [SMALL_STATE(20356)] = 1038986, + [SMALL_STATE(20357)] = 1039003, + [SMALL_STATE(20358)] = 1039020, + [SMALL_STATE(20359)] = 1039037, + [SMALL_STATE(20360)] = 1039054, + [SMALL_STATE(20361)] = 1039071, + [SMALL_STATE(20362)] = 1039088, + [SMALL_STATE(20363)] = 1039105, + [SMALL_STATE(20364)] = 1039122, + [SMALL_STATE(20365)] = 1039139, + [SMALL_STATE(20366)] = 1039156, + [SMALL_STATE(20367)] = 1039173, + [SMALL_STATE(20368)] = 1039190, + [SMALL_STATE(20369)] = 1039207, + [SMALL_STATE(20370)] = 1039224, + [SMALL_STATE(20371)] = 1039241, + [SMALL_STATE(20372)] = 1039258, + [SMALL_STATE(20373)] = 1039275, + [SMALL_STATE(20374)] = 1039292, + [SMALL_STATE(20375)] = 1039309, + [SMALL_STATE(20376)] = 1039326, + [SMALL_STATE(20377)] = 1039339, + [SMALL_STATE(20378)] = 1039356, + [SMALL_STATE(20379)] = 1039373, + [SMALL_STATE(20380)] = 1039390, + [SMALL_STATE(20381)] = 1039407, + [SMALL_STATE(20382)] = 1039424, + [SMALL_STATE(20383)] = 1039439, + [SMALL_STATE(20384)] = 1039456, + [SMALL_STATE(20385)] = 1039473, + [SMALL_STATE(20386)] = 1039490, + [SMALL_STATE(20387)] = 1039507, + [SMALL_STATE(20388)] = 1039520, + [SMALL_STATE(20389)] = 1039537, + [SMALL_STATE(20390)] = 1039550, + [SMALL_STATE(20391)] = 1039567, + [SMALL_STATE(20392)] = 1039584, + [SMALL_STATE(20393)] = 1039601, + [SMALL_STATE(20394)] = 1039618, + [SMALL_STATE(20395)] = 1039631, + [SMALL_STATE(20396)] = 1039648, + [SMALL_STATE(20397)] = 1039665, + [SMALL_STATE(20398)] = 1039682, + [SMALL_STATE(20399)] = 1039699, + [SMALL_STATE(20400)] = 1039716, + [SMALL_STATE(20401)] = 1039729, + [SMALL_STATE(20402)] = 1039746, + [SMALL_STATE(20403)] = 1039763, + [SMALL_STATE(20404)] = 1039780, + [SMALL_STATE(20405)] = 1039797, + [SMALL_STATE(20406)] = 1039814, + [SMALL_STATE(20407)] = 1039829, + [SMALL_STATE(20408)] = 1039846, + [SMALL_STATE(20409)] = 1039863, + [SMALL_STATE(20410)] = 1039880, + [SMALL_STATE(20411)] = 1039897, + [SMALL_STATE(20412)] = 1039914, + [SMALL_STATE(20413)] = 1039931, + [SMALL_STATE(20414)] = 1039948, + [SMALL_STATE(20415)] = 1039965, + [SMALL_STATE(20416)] = 1039982, + [SMALL_STATE(20417)] = 1039999, + [SMALL_STATE(20418)] = 1040016, + [SMALL_STATE(20419)] = 1040033, + [SMALL_STATE(20420)] = 1040050, + [SMALL_STATE(20421)] = 1040067, + [SMALL_STATE(20422)] = 1040084, + [SMALL_STATE(20423)] = 1040101, + [SMALL_STATE(20424)] = 1040118, + [SMALL_STATE(20425)] = 1040135, + [SMALL_STATE(20426)] = 1040152, + [SMALL_STATE(20427)] = 1040169, + [SMALL_STATE(20428)] = 1040186, + [SMALL_STATE(20429)] = 1040203, + [SMALL_STATE(20430)] = 1040216, + [SMALL_STATE(20431)] = 1040229, + [SMALL_STATE(20432)] = 1040246, + [SMALL_STATE(20433)] = 1040263, + [SMALL_STATE(20434)] = 1040280, + [SMALL_STATE(20435)] = 1040297, + [SMALL_STATE(20436)] = 1040314, + [SMALL_STATE(20437)] = 1040331, + [SMALL_STATE(20438)] = 1040348, + [SMALL_STATE(20439)] = 1040365, + [SMALL_STATE(20440)] = 1040382, + [SMALL_STATE(20441)] = 1040399, + [SMALL_STATE(20442)] = 1040416, + [SMALL_STATE(20443)] = 1040433, + [SMALL_STATE(20444)] = 1040450, + [SMALL_STATE(20445)] = 1040467, + [SMALL_STATE(20446)] = 1040484, + [SMALL_STATE(20447)] = 1040501, + [SMALL_STATE(20448)] = 1040518, + [SMALL_STATE(20449)] = 1040535, + [SMALL_STATE(20450)] = 1040552, + [SMALL_STATE(20451)] = 1040569, + [SMALL_STATE(20452)] = 1040586, + [SMALL_STATE(20453)] = 1040603, + [SMALL_STATE(20454)] = 1040620, + [SMALL_STATE(20455)] = 1040637, + [SMALL_STATE(20456)] = 1040654, + [SMALL_STATE(20457)] = 1040671, + [SMALL_STATE(20458)] = 1040688, + [SMALL_STATE(20459)] = 1040705, + [SMALL_STATE(20460)] = 1040722, + [SMALL_STATE(20461)] = 1040739, + [SMALL_STATE(20462)] = 1040756, + [SMALL_STATE(20463)] = 1040773, + [SMALL_STATE(20464)] = 1040790, + [SMALL_STATE(20465)] = 1040807, + [SMALL_STATE(20466)] = 1040824, + [SMALL_STATE(20467)] = 1040841, + [SMALL_STATE(20468)] = 1040858, + [SMALL_STATE(20469)] = 1040875, + [SMALL_STATE(20470)] = 1040892, + [SMALL_STATE(20471)] = 1040909, + [SMALL_STATE(20472)] = 1040926, + [SMALL_STATE(20473)] = 1040943, + [SMALL_STATE(20474)] = 1040960, + [SMALL_STATE(20475)] = 1040973, + [SMALL_STATE(20476)] = 1040986, + [SMALL_STATE(20477)] = 1040999, + [SMALL_STATE(20478)] = 1041016, + [SMALL_STATE(20479)] = 1041033, + [SMALL_STATE(20480)] = 1041050, + [SMALL_STATE(20481)] = 1041067, + [SMALL_STATE(20482)] = 1041084, + [SMALL_STATE(20483)] = 1041097, + [SMALL_STATE(20484)] = 1041114, + [SMALL_STATE(20485)] = 1041131, + [SMALL_STATE(20486)] = 1041148, + [SMALL_STATE(20487)] = 1041165, + [SMALL_STATE(20488)] = 1041182, + [SMALL_STATE(20489)] = 1041199, + [SMALL_STATE(20490)] = 1041216, + [SMALL_STATE(20491)] = 1041233, + [SMALL_STATE(20492)] = 1041250, + [SMALL_STATE(20493)] = 1041267, + [SMALL_STATE(20494)] = 1041284, + [SMALL_STATE(20495)] = 1041301, + [SMALL_STATE(20496)] = 1041318, + [SMALL_STATE(20497)] = 1041335, + [SMALL_STATE(20498)] = 1041352, + [SMALL_STATE(20499)] = 1041369, + [SMALL_STATE(20500)] = 1041386, + [SMALL_STATE(20501)] = 1041399, + [SMALL_STATE(20502)] = 1041416, + [SMALL_STATE(20503)] = 1041433, + [SMALL_STATE(20504)] = 1041450, + [SMALL_STATE(20505)] = 1041467, + [SMALL_STATE(20506)] = 1041484, + [SMALL_STATE(20507)] = 1041501, + [SMALL_STATE(20508)] = 1041518, + [SMALL_STATE(20509)] = 1041535, + [SMALL_STATE(20510)] = 1041552, + [SMALL_STATE(20511)] = 1041569, + [SMALL_STATE(20512)] = 1041586, + [SMALL_STATE(20513)] = 1041603, + [SMALL_STATE(20514)] = 1041620, + [SMALL_STATE(20515)] = 1041637, + [SMALL_STATE(20516)] = 1041654, + [SMALL_STATE(20517)] = 1041671, + [SMALL_STATE(20518)] = 1041688, + [SMALL_STATE(20519)] = 1041705, + [SMALL_STATE(20520)] = 1041722, + [SMALL_STATE(20521)] = 1041739, + [SMALL_STATE(20522)] = 1041756, + [SMALL_STATE(20523)] = 1041773, + [SMALL_STATE(20524)] = 1041790, + [SMALL_STATE(20525)] = 1041807, + [SMALL_STATE(20526)] = 1041824, + [SMALL_STATE(20527)] = 1041841, + [SMALL_STATE(20528)] = 1041858, + [SMALL_STATE(20529)] = 1041875, + [SMALL_STATE(20530)] = 1041892, + [SMALL_STATE(20531)] = 1041909, + [SMALL_STATE(20532)] = 1041926, + [SMALL_STATE(20533)] = 1041943, + [SMALL_STATE(20534)] = 1041960, + [SMALL_STATE(20535)] = 1041977, + [SMALL_STATE(20536)] = 1041994, + [SMALL_STATE(20537)] = 1042011, + [SMALL_STATE(20538)] = 1042028, + [SMALL_STATE(20539)] = 1042045, + [SMALL_STATE(20540)] = 1042062, + [SMALL_STATE(20541)] = 1042079, + [SMALL_STATE(20542)] = 1042096, + [SMALL_STATE(20543)] = 1042113, + [SMALL_STATE(20544)] = 1042130, + [SMALL_STATE(20545)] = 1042147, + [SMALL_STATE(20546)] = 1042164, + [SMALL_STATE(20547)] = 1042181, + [SMALL_STATE(20548)] = 1042198, + [SMALL_STATE(20549)] = 1042211, + [SMALL_STATE(20550)] = 1042228, + [SMALL_STATE(20551)] = 1042245, + [SMALL_STATE(20552)] = 1042262, + [SMALL_STATE(20553)] = 1042279, + [SMALL_STATE(20554)] = 1042296, + [SMALL_STATE(20555)] = 1042313, + [SMALL_STATE(20556)] = 1042330, + [SMALL_STATE(20557)] = 1042347, + [SMALL_STATE(20558)] = 1042364, + [SMALL_STATE(20559)] = 1042381, + [SMALL_STATE(20560)] = 1042398, + [SMALL_STATE(20561)] = 1042415, + [SMALL_STATE(20562)] = 1042432, + [SMALL_STATE(20563)] = 1042449, + [SMALL_STATE(20564)] = 1042466, + [SMALL_STATE(20565)] = 1042483, + [SMALL_STATE(20566)] = 1042500, + [SMALL_STATE(20567)] = 1042513, + [SMALL_STATE(20568)] = 1042530, + [SMALL_STATE(20569)] = 1042547, + [SMALL_STATE(20570)] = 1042562, + [SMALL_STATE(20571)] = 1042579, + [SMALL_STATE(20572)] = 1042596, + [SMALL_STATE(20573)] = 1042613, + [SMALL_STATE(20574)] = 1042630, + [SMALL_STATE(20575)] = 1042647, + [SMALL_STATE(20576)] = 1042660, + [SMALL_STATE(20577)] = 1042677, + [SMALL_STATE(20578)] = 1042694, + [SMALL_STATE(20579)] = 1042711, + [SMALL_STATE(20580)] = 1042728, + [SMALL_STATE(20581)] = 1042745, + [SMALL_STATE(20582)] = 1042758, + [SMALL_STATE(20583)] = 1042775, + [SMALL_STATE(20584)] = 1042788, + [SMALL_STATE(20585)] = 1042805, + [SMALL_STATE(20586)] = 1042822, + [SMALL_STATE(20587)] = 1042839, + [SMALL_STATE(20588)] = 1042852, + [SMALL_STATE(20589)] = 1042869, + [SMALL_STATE(20590)] = 1042886, + [SMALL_STATE(20591)] = 1042903, + [SMALL_STATE(20592)] = 1042920, + [SMALL_STATE(20593)] = 1042937, + [SMALL_STATE(20594)] = 1042954, + [SMALL_STATE(20595)] = 1042971, + [SMALL_STATE(20596)] = 1042984, + [SMALL_STATE(20597)] = 1043001, + [SMALL_STATE(20598)] = 1043018, + [SMALL_STATE(20599)] = 1043035, + [SMALL_STATE(20600)] = 1043052, + [SMALL_STATE(20601)] = 1043069, + [SMALL_STATE(20602)] = 1043086, + [SMALL_STATE(20603)] = 1043103, + [SMALL_STATE(20604)] = 1043120, + [SMALL_STATE(20605)] = 1043137, + [SMALL_STATE(20606)] = 1043154, + [SMALL_STATE(20607)] = 1043169, + [SMALL_STATE(20608)] = 1043186, + [SMALL_STATE(20609)] = 1043203, + [SMALL_STATE(20610)] = 1043220, + [SMALL_STATE(20611)] = 1043237, + [SMALL_STATE(20612)] = 1043254, + [SMALL_STATE(20613)] = 1043271, + [SMALL_STATE(20614)] = 1043288, + [SMALL_STATE(20615)] = 1043305, + [SMALL_STATE(20616)] = 1043322, + [SMALL_STATE(20617)] = 1043339, + [SMALL_STATE(20618)] = 1043356, + [SMALL_STATE(20619)] = 1043373, + [SMALL_STATE(20620)] = 1043390, + [SMALL_STATE(20621)] = 1043407, + [SMALL_STATE(20622)] = 1043422, + [SMALL_STATE(20623)] = 1043439, + [SMALL_STATE(20624)] = 1043456, + [SMALL_STATE(20625)] = 1043473, + [SMALL_STATE(20626)] = 1043490, + [SMALL_STATE(20627)] = 1043507, + [SMALL_STATE(20628)] = 1043524, + [SMALL_STATE(20629)] = 1043541, + [SMALL_STATE(20630)] = 1043558, + [SMALL_STATE(20631)] = 1043575, + [SMALL_STATE(20632)] = 1043592, + [SMALL_STATE(20633)] = 1043609, + [SMALL_STATE(20634)] = 1043626, + [SMALL_STATE(20635)] = 1043643, + [SMALL_STATE(20636)] = 1043660, + [SMALL_STATE(20637)] = 1043677, + [SMALL_STATE(20638)] = 1043694, + [SMALL_STATE(20639)] = 1043711, + [SMALL_STATE(20640)] = 1043728, + [SMALL_STATE(20641)] = 1043745, + [SMALL_STATE(20642)] = 1043762, + [SMALL_STATE(20643)] = 1043779, + [SMALL_STATE(20644)] = 1043796, + [SMALL_STATE(20645)] = 1043813, + [SMALL_STATE(20646)] = 1043830, + [SMALL_STATE(20647)] = 1043847, + [SMALL_STATE(20648)] = 1043864, + [SMALL_STATE(20649)] = 1043881, + [SMALL_STATE(20650)] = 1043898, + [SMALL_STATE(20651)] = 1043915, + [SMALL_STATE(20652)] = 1043932, + [SMALL_STATE(20653)] = 1043949, + [SMALL_STATE(20654)] = 1043966, + [SMALL_STATE(20655)] = 1043983, + [SMALL_STATE(20656)] = 1044000, + [SMALL_STATE(20657)] = 1044017, + [SMALL_STATE(20658)] = 1044034, + [SMALL_STATE(20659)] = 1044051, + [SMALL_STATE(20660)] = 1044068, + [SMALL_STATE(20661)] = 1044081, + [SMALL_STATE(20662)] = 1044098, + [SMALL_STATE(20663)] = 1044115, + [SMALL_STATE(20664)] = 1044132, + [SMALL_STATE(20665)] = 1044149, + [SMALL_STATE(20666)] = 1044166, + [SMALL_STATE(20667)] = 1044183, + [SMALL_STATE(20668)] = 1044196, + [SMALL_STATE(20669)] = 1044213, + [SMALL_STATE(20670)] = 1044230, + [SMALL_STATE(20671)] = 1044247, + [SMALL_STATE(20672)] = 1044264, + [SMALL_STATE(20673)] = 1044281, + [SMALL_STATE(20674)] = 1044298, + [SMALL_STATE(20675)] = 1044315, + [SMALL_STATE(20676)] = 1044332, + [SMALL_STATE(20677)] = 1044345, + [SMALL_STATE(20678)] = 1044362, + [SMALL_STATE(20679)] = 1044379, + [SMALL_STATE(20680)] = 1044396, + [SMALL_STATE(20681)] = 1044413, + [SMALL_STATE(20682)] = 1044430, + [SMALL_STATE(20683)] = 1044447, + [SMALL_STATE(20684)] = 1044464, + [SMALL_STATE(20685)] = 1044481, + [SMALL_STATE(20686)] = 1044498, + [SMALL_STATE(20687)] = 1044515, + [SMALL_STATE(20688)] = 1044530, + [SMALL_STATE(20689)] = 1044547, + [SMALL_STATE(20690)] = 1044564, + [SMALL_STATE(20691)] = 1044581, + [SMALL_STATE(20692)] = 1044598, + [SMALL_STATE(20693)] = 1044615, + [SMALL_STATE(20694)] = 1044632, + [SMALL_STATE(20695)] = 1044649, + [SMALL_STATE(20696)] = 1044666, + [SMALL_STATE(20697)] = 1044683, + [SMALL_STATE(20698)] = 1044700, + [SMALL_STATE(20699)] = 1044717, + [SMALL_STATE(20700)] = 1044734, + [SMALL_STATE(20701)] = 1044751, + [SMALL_STATE(20702)] = 1044768, + [SMALL_STATE(20703)] = 1044785, + [SMALL_STATE(20704)] = 1044802, + [SMALL_STATE(20705)] = 1044815, + [SMALL_STATE(20706)] = 1044832, + [SMALL_STATE(20707)] = 1044849, + [SMALL_STATE(20708)] = 1044866, + [SMALL_STATE(20709)] = 1044883, + [SMALL_STATE(20710)] = 1044900, + [SMALL_STATE(20711)] = 1044917, + [SMALL_STATE(20712)] = 1044934, + [SMALL_STATE(20713)] = 1044951, + [SMALL_STATE(20714)] = 1044968, + [SMALL_STATE(20715)] = 1044981, + [SMALL_STATE(20716)] = 1044998, + [SMALL_STATE(20717)] = 1045015, + [SMALL_STATE(20718)] = 1045032, + [SMALL_STATE(20719)] = 1045043, + [SMALL_STATE(20720)] = 1045060, + [SMALL_STATE(20721)] = 1045077, + [SMALL_STATE(20722)] = 1045094, + [SMALL_STATE(20723)] = 1045111, + [SMALL_STATE(20724)] = 1045128, + [SMALL_STATE(20725)] = 1045145, + [SMALL_STATE(20726)] = 1045162, + [SMALL_STATE(20727)] = 1045179, + [SMALL_STATE(20728)] = 1045194, + [SMALL_STATE(20729)] = 1045211, + [SMALL_STATE(20730)] = 1045226, + [SMALL_STATE(20731)] = 1045243, + [SMALL_STATE(20732)] = 1045260, + [SMALL_STATE(20733)] = 1045277, + [SMALL_STATE(20734)] = 1045290, + [SMALL_STATE(20735)] = 1045303, + [SMALL_STATE(20736)] = 1045320, + [SMALL_STATE(20737)] = 1045337, + [SMALL_STATE(20738)] = 1045354, + [SMALL_STATE(20739)] = 1045371, + [SMALL_STATE(20740)] = 1045388, + [SMALL_STATE(20741)] = 1045405, + [SMALL_STATE(20742)] = 1045422, + [SMALL_STATE(20743)] = 1045439, + [SMALL_STATE(20744)] = 1045456, + [SMALL_STATE(20745)] = 1045473, + [SMALL_STATE(20746)] = 1045490, + [SMALL_STATE(20747)] = 1045507, + [SMALL_STATE(20748)] = 1045524, + [SMALL_STATE(20749)] = 1045541, + [SMALL_STATE(20750)] = 1045558, + [SMALL_STATE(20751)] = 1045575, + [SMALL_STATE(20752)] = 1045592, + [SMALL_STATE(20753)] = 1045609, + [SMALL_STATE(20754)] = 1045626, + [SMALL_STATE(20755)] = 1045643, + [SMALL_STATE(20756)] = 1045660, + [SMALL_STATE(20757)] = 1045677, + [SMALL_STATE(20758)] = 1045694, + [SMALL_STATE(20759)] = 1045711, + [SMALL_STATE(20760)] = 1045728, + [SMALL_STATE(20761)] = 1045745, + [SMALL_STATE(20762)] = 1045762, + [SMALL_STATE(20763)] = 1045779, + [SMALL_STATE(20764)] = 1045796, + [SMALL_STATE(20765)] = 1045813, + [SMALL_STATE(20766)] = 1045830, + [SMALL_STATE(20767)] = 1045847, + [SMALL_STATE(20768)] = 1045860, + [SMALL_STATE(20769)] = 1045877, + [SMALL_STATE(20770)] = 1045894, + [SMALL_STATE(20771)] = 1045907, + [SMALL_STATE(20772)] = 1045924, + [SMALL_STATE(20773)] = 1045941, + [SMALL_STATE(20774)] = 1045958, + [SMALL_STATE(20775)] = 1045975, + [SMALL_STATE(20776)] = 1045992, + [SMALL_STATE(20777)] = 1046009, + [SMALL_STATE(20778)] = 1046026, + [SMALL_STATE(20779)] = 1046043, + [SMALL_STATE(20780)] = 1046060, + [SMALL_STATE(20781)] = 1046073, + [SMALL_STATE(20782)] = 1046090, + [SMALL_STATE(20783)] = 1046107, + [SMALL_STATE(20784)] = 1046120, + [SMALL_STATE(20785)] = 1046137, + [SMALL_STATE(20786)] = 1046154, + [SMALL_STATE(20787)] = 1046171, + [SMALL_STATE(20788)] = 1046188, + [SMALL_STATE(20789)] = 1046205, + [SMALL_STATE(20790)] = 1046222, + [SMALL_STATE(20791)] = 1046239, + [SMALL_STATE(20792)] = 1046256, + [SMALL_STATE(20793)] = 1046273, + [SMALL_STATE(20794)] = 1046290, + [SMALL_STATE(20795)] = 1046307, + [SMALL_STATE(20796)] = 1046324, + [SMALL_STATE(20797)] = 1046341, + [SMALL_STATE(20798)] = 1046358, + [SMALL_STATE(20799)] = 1046375, + [SMALL_STATE(20800)] = 1046392, + [SMALL_STATE(20801)] = 1046405, + [SMALL_STATE(20802)] = 1046422, + [SMALL_STATE(20803)] = 1046439, + [SMALL_STATE(20804)] = 1046456, + [SMALL_STATE(20805)] = 1046473, + [SMALL_STATE(20806)] = 1046490, + [SMALL_STATE(20807)] = 1046507, + [SMALL_STATE(20808)] = 1046524, + [SMALL_STATE(20809)] = 1046541, + [SMALL_STATE(20810)] = 1046558, + [SMALL_STATE(20811)] = 1046575, + [SMALL_STATE(20812)] = 1046592, + [SMALL_STATE(20813)] = 1046609, + [SMALL_STATE(20814)] = 1046626, + [SMALL_STATE(20815)] = 1046643, + [SMALL_STATE(20816)] = 1046660, + [SMALL_STATE(20817)] = 1046677, + [SMALL_STATE(20818)] = 1046694, + [SMALL_STATE(20819)] = 1046711, + [SMALL_STATE(20820)] = 1046728, + [SMALL_STATE(20821)] = 1046745, + [SMALL_STATE(20822)] = 1046762, + [SMALL_STATE(20823)] = 1046779, + [SMALL_STATE(20824)] = 1046796, + [SMALL_STATE(20825)] = 1046813, + [SMALL_STATE(20826)] = 1046830, + [SMALL_STATE(20827)] = 1046847, + [SMALL_STATE(20828)] = 1046864, + [SMALL_STATE(20829)] = 1046881, + [SMALL_STATE(20830)] = 1046898, + [SMALL_STATE(20831)] = 1046915, + [SMALL_STATE(20832)] = 1046932, + [SMALL_STATE(20833)] = 1046949, + [SMALL_STATE(20834)] = 1046966, + [SMALL_STATE(20835)] = 1046983, + [SMALL_STATE(20836)] = 1047000, + [SMALL_STATE(20837)] = 1047017, + [SMALL_STATE(20838)] = 1047034, + [SMALL_STATE(20839)] = 1047051, + [SMALL_STATE(20840)] = 1047068, + [SMALL_STATE(20841)] = 1047085, + [SMALL_STATE(20842)] = 1047102, + [SMALL_STATE(20843)] = 1047119, + [SMALL_STATE(20844)] = 1047136, + [SMALL_STATE(20845)] = 1047153, + [SMALL_STATE(20846)] = 1047170, + [SMALL_STATE(20847)] = 1047187, + [SMALL_STATE(20848)] = 1047204, + [SMALL_STATE(20849)] = 1047221, + [SMALL_STATE(20850)] = 1047238, + [SMALL_STATE(20851)] = 1047255, + [SMALL_STATE(20852)] = 1047272, + [SMALL_STATE(20853)] = 1047289, + [SMALL_STATE(20854)] = 1047306, + [SMALL_STATE(20855)] = 1047323, + [SMALL_STATE(20856)] = 1047340, + [SMALL_STATE(20857)] = 1047357, + [SMALL_STATE(20858)] = 1047370, + [SMALL_STATE(20859)] = 1047383, + [SMALL_STATE(20860)] = 1047396, + [SMALL_STATE(20861)] = 1047413, + [SMALL_STATE(20862)] = 1047430, + [SMALL_STATE(20863)] = 1047447, + [SMALL_STATE(20864)] = 1047464, + [SMALL_STATE(20865)] = 1047481, + [SMALL_STATE(20866)] = 1047498, + [SMALL_STATE(20867)] = 1047515, + [SMALL_STATE(20868)] = 1047532, + [SMALL_STATE(20869)] = 1047549, + [SMALL_STATE(20870)] = 1047566, + [SMALL_STATE(20871)] = 1047583, + [SMALL_STATE(20872)] = 1047600, + [SMALL_STATE(20873)] = 1047617, + [SMALL_STATE(20874)] = 1047634, + [SMALL_STATE(20875)] = 1047651, + [SMALL_STATE(20876)] = 1047668, + [SMALL_STATE(20877)] = 1047685, + [SMALL_STATE(20878)] = 1047702, + [SMALL_STATE(20879)] = 1047715, + [SMALL_STATE(20880)] = 1047732, + [SMALL_STATE(20881)] = 1047749, + [SMALL_STATE(20882)] = 1047766, + [SMALL_STATE(20883)] = 1047783, + [SMALL_STATE(20884)] = 1047800, + [SMALL_STATE(20885)] = 1047817, + [SMALL_STATE(20886)] = 1047834, + [SMALL_STATE(20887)] = 1047851, + [SMALL_STATE(20888)] = 1047868, + [SMALL_STATE(20889)] = 1047885, + [SMALL_STATE(20890)] = 1047902, + [SMALL_STATE(20891)] = 1047919, + [SMALL_STATE(20892)] = 1047936, + [SMALL_STATE(20893)] = 1047953, + [SMALL_STATE(20894)] = 1047970, + [SMALL_STATE(20895)] = 1047987, + [SMALL_STATE(20896)] = 1048004, + [SMALL_STATE(20897)] = 1048021, + [SMALL_STATE(20898)] = 1048038, + [SMALL_STATE(20899)] = 1048055, + [SMALL_STATE(20900)] = 1048072, + [SMALL_STATE(20901)] = 1048089, + [SMALL_STATE(20902)] = 1048106, + [SMALL_STATE(20903)] = 1048123, + [SMALL_STATE(20904)] = 1048140, + [SMALL_STATE(20905)] = 1048157, + [SMALL_STATE(20906)] = 1048174, + [SMALL_STATE(20907)] = 1048191, + [SMALL_STATE(20908)] = 1048208, + [SMALL_STATE(20909)] = 1048225, + [SMALL_STATE(20910)] = 1048242, + [SMALL_STATE(20911)] = 1048259, + [SMALL_STATE(20912)] = 1048276, + [SMALL_STATE(20913)] = 1048293, + [SMALL_STATE(20914)] = 1048310, + [SMALL_STATE(20915)] = 1048327, + [SMALL_STATE(20916)] = 1048344, + [SMALL_STATE(20917)] = 1048361, + [SMALL_STATE(20918)] = 1048378, + [SMALL_STATE(20919)] = 1048395, + [SMALL_STATE(20920)] = 1048412, + [SMALL_STATE(20921)] = 1048429, + [SMALL_STATE(20922)] = 1048446, + [SMALL_STATE(20923)] = 1048459, + [SMALL_STATE(20924)] = 1048474, + [SMALL_STATE(20925)] = 1048491, + [SMALL_STATE(20926)] = 1048508, + [SMALL_STATE(20927)] = 1048525, + [SMALL_STATE(20928)] = 1048542, + [SMALL_STATE(20929)] = 1048559, + [SMALL_STATE(20930)] = 1048576, + [SMALL_STATE(20931)] = 1048593, + [SMALL_STATE(20932)] = 1048610, + [SMALL_STATE(20933)] = 1048627, + [SMALL_STATE(20934)] = 1048644, + [SMALL_STATE(20935)] = 1048661, + [SMALL_STATE(20936)] = 1048678, + [SMALL_STATE(20937)] = 1048695, + [SMALL_STATE(20938)] = 1048712, + [SMALL_STATE(20939)] = 1048729, + [SMALL_STATE(20940)] = 1048746, + [SMALL_STATE(20941)] = 1048763, + [SMALL_STATE(20942)] = 1048780, + [SMALL_STATE(20943)] = 1048797, + [SMALL_STATE(20944)] = 1048814, + [SMALL_STATE(20945)] = 1048831, + [SMALL_STATE(20946)] = 1048848, + [SMALL_STATE(20947)] = 1048865, + [SMALL_STATE(20948)] = 1048882, + [SMALL_STATE(20949)] = 1048899, + [SMALL_STATE(20950)] = 1048912, + [SMALL_STATE(20951)] = 1048929, + [SMALL_STATE(20952)] = 1048946, + [SMALL_STATE(20953)] = 1048963, + [SMALL_STATE(20954)] = 1048980, + [SMALL_STATE(20955)] = 1048997, + [SMALL_STATE(20956)] = 1049014, + [SMALL_STATE(20957)] = 1049031, + [SMALL_STATE(20958)] = 1049048, + [SMALL_STATE(20959)] = 1049065, + [SMALL_STATE(20960)] = 1049082, + [SMALL_STATE(20961)] = 1049099, + [SMALL_STATE(20962)] = 1049116, + [SMALL_STATE(20963)] = 1049133, + [SMALL_STATE(20964)] = 1049150, + [SMALL_STATE(20965)] = 1049163, + [SMALL_STATE(20966)] = 1049180, + [SMALL_STATE(20967)] = 1049193, + [SMALL_STATE(20968)] = 1049210, + [SMALL_STATE(20969)] = 1049227, + [SMALL_STATE(20970)] = 1049240, + [SMALL_STATE(20971)] = 1049257, + [SMALL_STATE(20972)] = 1049274, + [SMALL_STATE(20973)] = 1049291, + [SMALL_STATE(20974)] = 1049308, + [SMALL_STATE(20975)] = 1049325, + [SMALL_STATE(20976)] = 1049342, + [SMALL_STATE(20977)] = 1049359, + [SMALL_STATE(20978)] = 1049376, + [SMALL_STATE(20979)] = 1049393, + [SMALL_STATE(20980)] = 1049410, + [SMALL_STATE(20981)] = 1049427, + [SMALL_STATE(20982)] = 1049444, + [SMALL_STATE(20983)] = 1049461, + [SMALL_STATE(20984)] = 1049478, + [SMALL_STATE(20985)] = 1049495, + [SMALL_STATE(20986)] = 1049512, + [SMALL_STATE(20987)] = 1049529, + [SMALL_STATE(20988)] = 1049546, + [SMALL_STATE(20989)] = 1049563, + [SMALL_STATE(20990)] = 1049580, + [SMALL_STATE(20991)] = 1049597, + [SMALL_STATE(20992)] = 1049610, + [SMALL_STATE(20993)] = 1049627, + [SMALL_STATE(20994)] = 1049644, + [SMALL_STATE(20995)] = 1049661, + [SMALL_STATE(20996)] = 1049678, + [SMALL_STATE(20997)] = 1049695, + [SMALL_STATE(20998)] = 1049712, + [SMALL_STATE(20999)] = 1049729, + [SMALL_STATE(21000)] = 1049746, + [SMALL_STATE(21001)] = 1049763, + [SMALL_STATE(21002)] = 1049780, + [SMALL_STATE(21003)] = 1049797, + [SMALL_STATE(21004)] = 1049814, + [SMALL_STATE(21005)] = 1049831, + [SMALL_STATE(21006)] = 1049848, + [SMALL_STATE(21007)] = 1049865, + [SMALL_STATE(21008)] = 1049882, + [SMALL_STATE(21009)] = 1049899, + [SMALL_STATE(21010)] = 1049916, + [SMALL_STATE(21011)] = 1049929, + [SMALL_STATE(21012)] = 1049946, + [SMALL_STATE(21013)] = 1049963, + [SMALL_STATE(21014)] = 1049980, + [SMALL_STATE(21015)] = 1049997, + [SMALL_STATE(21016)] = 1050014, + [SMALL_STATE(21017)] = 1050031, + [SMALL_STATE(21018)] = 1050048, + [SMALL_STATE(21019)] = 1050065, + [SMALL_STATE(21020)] = 1050082, + [SMALL_STATE(21021)] = 1050099, + [SMALL_STATE(21022)] = 1050116, + [SMALL_STATE(21023)] = 1050133, + [SMALL_STATE(21024)] = 1050150, + [SMALL_STATE(21025)] = 1050167, + [SMALL_STATE(21026)] = 1050184, + [SMALL_STATE(21027)] = 1050201, + [SMALL_STATE(21028)] = 1050218, + [SMALL_STATE(21029)] = 1050233, + [SMALL_STATE(21030)] = 1050250, + [SMALL_STATE(21031)] = 1050267, + [SMALL_STATE(21032)] = 1050284, + [SMALL_STATE(21033)] = 1050301, + [SMALL_STATE(21034)] = 1050318, + [SMALL_STATE(21035)] = 1050335, + [SMALL_STATE(21036)] = 1050352, + [SMALL_STATE(21037)] = 1050369, + [SMALL_STATE(21038)] = 1050386, + [SMALL_STATE(21039)] = 1050403, + [SMALL_STATE(21040)] = 1050420, + [SMALL_STATE(21041)] = 1050437, + [SMALL_STATE(21042)] = 1050454, + [SMALL_STATE(21043)] = 1050471, + [SMALL_STATE(21044)] = 1050488, + [SMALL_STATE(21045)] = 1050505, + [SMALL_STATE(21046)] = 1050522, + [SMALL_STATE(21047)] = 1050539, + [SMALL_STATE(21048)] = 1050556, + [SMALL_STATE(21049)] = 1050573, + [SMALL_STATE(21050)] = 1050586, + [SMALL_STATE(21051)] = 1050603, + [SMALL_STATE(21052)] = 1050620, + [SMALL_STATE(21053)] = 1050637, + [SMALL_STATE(21054)] = 1050654, + [SMALL_STATE(21055)] = 1050671, + [SMALL_STATE(21056)] = 1050688, + [SMALL_STATE(21057)] = 1050705, + [SMALL_STATE(21058)] = 1050722, + [SMALL_STATE(21059)] = 1050739, + [SMALL_STATE(21060)] = 1050752, + [SMALL_STATE(21061)] = 1050769, + [SMALL_STATE(21062)] = 1050786, + [SMALL_STATE(21063)] = 1050803, + [SMALL_STATE(21064)] = 1050818, + [SMALL_STATE(21065)] = 1050835, + [SMALL_STATE(21066)] = 1050852, + [SMALL_STATE(21067)] = 1050869, + [SMALL_STATE(21068)] = 1050886, + [SMALL_STATE(21069)] = 1050899, + [SMALL_STATE(21070)] = 1050916, + [SMALL_STATE(21071)] = 1050933, + [SMALL_STATE(21072)] = 1050950, + [SMALL_STATE(21073)] = 1050967, + [SMALL_STATE(21074)] = 1050984, + [SMALL_STATE(21075)] = 1051001, + [SMALL_STATE(21076)] = 1051018, + [SMALL_STATE(21077)] = 1051035, + [SMALL_STATE(21078)] = 1051052, + [SMALL_STATE(21079)] = 1051069, + [SMALL_STATE(21080)] = 1051086, + [SMALL_STATE(21081)] = 1051099, + [SMALL_STATE(21082)] = 1051116, + [SMALL_STATE(21083)] = 1051133, + [SMALL_STATE(21084)] = 1051150, + [SMALL_STATE(21085)] = 1051167, + [SMALL_STATE(21086)] = 1051184, + [SMALL_STATE(21087)] = 1051201, + [SMALL_STATE(21088)] = 1051218, + [SMALL_STATE(21089)] = 1051235, + [SMALL_STATE(21090)] = 1051252, + [SMALL_STATE(21091)] = 1051267, + [SMALL_STATE(21092)] = 1051284, + [SMALL_STATE(21093)] = 1051301, + [SMALL_STATE(21094)] = 1051318, + [SMALL_STATE(21095)] = 1051335, + [SMALL_STATE(21096)] = 1051352, + [SMALL_STATE(21097)] = 1051369, + [SMALL_STATE(21098)] = 1051386, + [SMALL_STATE(21099)] = 1051403, + [SMALL_STATE(21100)] = 1051420, + [SMALL_STATE(21101)] = 1051437, + [SMALL_STATE(21102)] = 1051452, + [SMALL_STATE(21103)] = 1051469, + [SMALL_STATE(21104)] = 1051486, + [SMALL_STATE(21105)] = 1051503, + [SMALL_STATE(21106)] = 1051520, + [SMALL_STATE(21107)] = 1051537, + [SMALL_STATE(21108)] = 1051554, + [SMALL_STATE(21109)] = 1051571, + [SMALL_STATE(21110)] = 1051588, + [SMALL_STATE(21111)] = 1051601, + [SMALL_STATE(21112)] = 1051618, + [SMALL_STATE(21113)] = 1051635, + [SMALL_STATE(21114)] = 1051652, + [SMALL_STATE(21115)] = 1051669, + [SMALL_STATE(21116)] = 1051686, + [SMALL_STATE(21117)] = 1051703, + [SMALL_STATE(21118)] = 1051720, + [SMALL_STATE(21119)] = 1051737, + [SMALL_STATE(21120)] = 1051754, + [SMALL_STATE(21121)] = 1051771, + [SMALL_STATE(21122)] = 1051788, + [SMALL_STATE(21123)] = 1051805, + [SMALL_STATE(21124)] = 1051822, + [SMALL_STATE(21125)] = 1051839, + [SMALL_STATE(21126)] = 1051856, + [SMALL_STATE(21127)] = 1051873, + [SMALL_STATE(21128)] = 1051890, + [SMALL_STATE(21129)] = 1051907, + [SMALL_STATE(21130)] = 1051924, + [SMALL_STATE(21131)] = 1051941, + [SMALL_STATE(21132)] = 1051958, + [SMALL_STATE(21133)] = 1051975, + [SMALL_STATE(21134)] = 1051992, + [SMALL_STATE(21135)] = 1052005, + [SMALL_STATE(21136)] = 1052022, + [SMALL_STATE(21137)] = 1052039, + [SMALL_STATE(21138)] = 1052056, + [SMALL_STATE(21139)] = 1052073, + [SMALL_STATE(21140)] = 1052084, + [SMALL_STATE(21141)] = 1052097, + [SMALL_STATE(21142)] = 1052114, + [SMALL_STATE(21143)] = 1052131, + [SMALL_STATE(21144)] = 1052148, + [SMALL_STATE(21145)] = 1052165, + [SMALL_STATE(21146)] = 1052182, + [SMALL_STATE(21147)] = 1052199, + [SMALL_STATE(21148)] = 1052216, + [SMALL_STATE(21149)] = 1052233, + [SMALL_STATE(21150)] = 1052250, + [SMALL_STATE(21151)] = 1052267, + [SMALL_STATE(21152)] = 1052284, + [SMALL_STATE(21153)] = 1052301, + [SMALL_STATE(21154)] = 1052318, + [SMALL_STATE(21155)] = 1052335, + [SMALL_STATE(21156)] = 1052352, + [SMALL_STATE(21157)] = 1052369, + [SMALL_STATE(21158)] = 1052386, + [SMALL_STATE(21159)] = 1052403, + [SMALL_STATE(21160)] = 1052420, + [SMALL_STATE(21161)] = 1052437, + [SMALL_STATE(21162)] = 1052454, + [SMALL_STATE(21163)] = 1052471, + [SMALL_STATE(21164)] = 1052484, + [SMALL_STATE(21165)] = 1052501, + [SMALL_STATE(21166)] = 1052518, + [SMALL_STATE(21167)] = 1052535, + [SMALL_STATE(21168)] = 1052552, + [SMALL_STATE(21169)] = 1052569, + [SMALL_STATE(21170)] = 1052586, + [SMALL_STATE(21171)] = 1052603, + [SMALL_STATE(21172)] = 1052620, + [SMALL_STATE(21173)] = 1052637, + [SMALL_STATE(21174)] = 1052654, + [SMALL_STATE(21175)] = 1052669, + [SMALL_STATE(21176)] = 1052684, + [SMALL_STATE(21177)] = 1052701, + [SMALL_STATE(21178)] = 1052718, + [SMALL_STATE(21179)] = 1052735, + [SMALL_STATE(21180)] = 1052752, + [SMALL_STATE(21181)] = 1052767, + [SMALL_STATE(21182)] = 1052784, + [SMALL_STATE(21183)] = 1052801, + [SMALL_STATE(21184)] = 1052814, + [SMALL_STATE(21185)] = 1052831, + [SMALL_STATE(21186)] = 1052848, + [SMALL_STATE(21187)] = 1052865, + [SMALL_STATE(21188)] = 1052882, + [SMALL_STATE(21189)] = 1052899, + [SMALL_STATE(21190)] = 1052916, + [SMALL_STATE(21191)] = 1052933, + [SMALL_STATE(21192)] = 1052950, + [SMALL_STATE(21193)] = 1052967, + [SMALL_STATE(21194)] = 1052984, + [SMALL_STATE(21195)] = 1053001, + [SMALL_STATE(21196)] = 1053016, + [SMALL_STATE(21197)] = 1053033, + [SMALL_STATE(21198)] = 1053050, + [SMALL_STATE(21199)] = 1053067, + [SMALL_STATE(21200)] = 1053084, + [SMALL_STATE(21201)] = 1053097, + [SMALL_STATE(21202)] = 1053114, + [SMALL_STATE(21203)] = 1053131, + [SMALL_STATE(21204)] = 1053144, + [SMALL_STATE(21205)] = 1053161, + [SMALL_STATE(21206)] = 1053176, + [SMALL_STATE(21207)] = 1053193, + [SMALL_STATE(21208)] = 1053210, + [SMALL_STATE(21209)] = 1053227, + [SMALL_STATE(21210)] = 1053244, + [SMALL_STATE(21211)] = 1053261, + [SMALL_STATE(21212)] = 1053278, + [SMALL_STATE(21213)] = 1053295, + [SMALL_STATE(21214)] = 1053312, + [SMALL_STATE(21215)] = 1053329, + [SMALL_STATE(21216)] = 1053346, + [SMALL_STATE(21217)] = 1053363, + [SMALL_STATE(21218)] = 1053380, + [SMALL_STATE(21219)] = 1053395, + [SMALL_STATE(21220)] = 1053412, + [SMALL_STATE(21221)] = 1053429, + [SMALL_STATE(21222)] = 1053446, + [SMALL_STATE(21223)] = 1053463, + [SMALL_STATE(21224)] = 1053476, + [SMALL_STATE(21225)] = 1053493, + [SMALL_STATE(21226)] = 1053510, + [SMALL_STATE(21227)] = 1053527, + [SMALL_STATE(21228)] = 1053544, + [SMALL_STATE(21229)] = 1053561, + [SMALL_STATE(21230)] = 1053578, + [SMALL_STATE(21231)] = 1053595, + [SMALL_STATE(21232)] = 1053612, + [SMALL_STATE(21233)] = 1053629, + [SMALL_STATE(21234)] = 1053646, + [SMALL_STATE(21235)] = 1053663, + [SMALL_STATE(21236)] = 1053680, + [SMALL_STATE(21237)] = 1053697, + [SMALL_STATE(21238)] = 1053714, + [SMALL_STATE(21239)] = 1053731, + [SMALL_STATE(21240)] = 1053748, + [SMALL_STATE(21241)] = 1053765, + [SMALL_STATE(21242)] = 1053782, + [SMALL_STATE(21243)] = 1053799, + [SMALL_STATE(21244)] = 1053816, + [SMALL_STATE(21245)] = 1053833, + [SMALL_STATE(21246)] = 1053850, + [SMALL_STATE(21247)] = 1053867, + [SMALL_STATE(21248)] = 1053884, + [SMALL_STATE(21249)] = 1053901, + [SMALL_STATE(21250)] = 1053918, + [SMALL_STATE(21251)] = 1053935, + [SMALL_STATE(21252)] = 1053952, + [SMALL_STATE(21253)] = 1053969, + [SMALL_STATE(21254)] = 1053986, + [SMALL_STATE(21255)] = 1054003, + [SMALL_STATE(21256)] = 1054020, + [SMALL_STATE(21257)] = 1054037, + [SMALL_STATE(21258)] = 1054054, + [SMALL_STATE(21259)] = 1054071, + [SMALL_STATE(21260)] = 1054088, + [SMALL_STATE(21261)] = 1054105, + [SMALL_STATE(21262)] = 1054122, + [SMALL_STATE(21263)] = 1054139, + [SMALL_STATE(21264)] = 1054156, + [SMALL_STATE(21265)] = 1054173, + [SMALL_STATE(21266)] = 1054190, + [SMALL_STATE(21267)] = 1054207, + [SMALL_STATE(21268)] = 1054224, + [SMALL_STATE(21269)] = 1054241, + [SMALL_STATE(21270)] = 1054258, + [SMALL_STATE(21271)] = 1054273, + [SMALL_STATE(21272)] = 1054290, + [SMALL_STATE(21273)] = 1054307, + [SMALL_STATE(21274)] = 1054320, + [SMALL_STATE(21275)] = 1054337, + [SMALL_STATE(21276)] = 1054354, + [SMALL_STATE(21277)] = 1054371, + [SMALL_STATE(21278)] = 1054384, + [SMALL_STATE(21279)] = 1054401, + [SMALL_STATE(21280)] = 1054418, + [SMALL_STATE(21281)] = 1054435, + [SMALL_STATE(21282)] = 1054452, + [SMALL_STATE(21283)] = 1054465, + [SMALL_STATE(21284)] = 1054482, + [SMALL_STATE(21285)] = 1054499, + [SMALL_STATE(21286)] = 1054516, + [SMALL_STATE(21287)] = 1054533, + [SMALL_STATE(21288)] = 1054550, + [SMALL_STATE(21289)] = 1054567, + [SMALL_STATE(21290)] = 1054584, + [SMALL_STATE(21291)] = 1054601, + [SMALL_STATE(21292)] = 1054618, + [SMALL_STATE(21293)] = 1054635, + [SMALL_STATE(21294)] = 1054652, + [SMALL_STATE(21295)] = 1054669, + [SMALL_STATE(21296)] = 1054686, + [SMALL_STATE(21297)] = 1054703, + [SMALL_STATE(21298)] = 1054720, + [SMALL_STATE(21299)] = 1054737, + [SMALL_STATE(21300)] = 1054754, + [SMALL_STATE(21301)] = 1054771, + [SMALL_STATE(21302)] = 1054788, + [SMALL_STATE(21303)] = 1054805, + [SMALL_STATE(21304)] = 1054822, + [SMALL_STATE(21305)] = 1054839, + [SMALL_STATE(21306)] = 1054856, + [SMALL_STATE(21307)] = 1054873, + [SMALL_STATE(21308)] = 1054890, + [SMALL_STATE(21309)] = 1054907, + [SMALL_STATE(21310)] = 1054924, + [SMALL_STATE(21311)] = 1054941, + [SMALL_STATE(21312)] = 1054958, + [SMALL_STATE(21313)] = 1054975, + [SMALL_STATE(21314)] = 1054992, + [SMALL_STATE(21315)] = 1055009, + [SMALL_STATE(21316)] = 1055026, + [SMALL_STATE(21317)] = 1055039, + [SMALL_STATE(21318)] = 1055056, + [SMALL_STATE(21319)] = 1055071, + [SMALL_STATE(21320)] = 1055088, + [SMALL_STATE(21321)] = 1055105, + [SMALL_STATE(21322)] = 1055122, + [SMALL_STATE(21323)] = 1055139, + [SMALL_STATE(21324)] = 1055156, + [SMALL_STATE(21325)] = 1055173, + [SMALL_STATE(21326)] = 1055190, + [SMALL_STATE(21327)] = 1055203, + [SMALL_STATE(21328)] = 1055220, + [SMALL_STATE(21329)] = 1055237, + [SMALL_STATE(21330)] = 1055254, + [SMALL_STATE(21331)] = 1055271, + [SMALL_STATE(21332)] = 1055286, + [SMALL_STATE(21333)] = 1055303, + [SMALL_STATE(21334)] = 1055320, + [SMALL_STATE(21335)] = 1055337, + [SMALL_STATE(21336)] = 1055354, + [SMALL_STATE(21337)] = 1055371, + [SMALL_STATE(21338)] = 1055388, + [SMALL_STATE(21339)] = 1055403, + [SMALL_STATE(21340)] = 1055418, + [SMALL_STATE(21341)] = 1055435, + [SMALL_STATE(21342)] = 1055452, + [SMALL_STATE(21343)] = 1055467, + [SMALL_STATE(21344)] = 1055482, + [SMALL_STATE(21345)] = 1055499, + [SMALL_STATE(21346)] = 1055516, + [SMALL_STATE(21347)] = 1055533, + [SMALL_STATE(21348)] = 1055550, + [SMALL_STATE(21349)] = 1055567, + [SMALL_STATE(21350)] = 1055584, + [SMALL_STATE(21351)] = 1055601, + [SMALL_STATE(21352)] = 1055618, + [SMALL_STATE(21353)] = 1055635, + [SMALL_STATE(21354)] = 1055652, + [SMALL_STATE(21355)] = 1055669, + [SMALL_STATE(21356)] = 1055686, + [SMALL_STATE(21357)] = 1055699, + [SMALL_STATE(21358)] = 1055716, + [SMALL_STATE(21359)] = 1055733, + [SMALL_STATE(21360)] = 1055750, + [SMALL_STATE(21361)] = 1055767, + [SMALL_STATE(21362)] = 1055784, + [SMALL_STATE(21363)] = 1055801, + [SMALL_STATE(21364)] = 1055818, + [SMALL_STATE(21365)] = 1055835, + [SMALL_STATE(21366)] = 1055852, + [SMALL_STATE(21367)] = 1055866, + [SMALL_STATE(21368)] = 1055880, + [SMALL_STATE(21369)] = 1055894, + [SMALL_STATE(21370)] = 1055908, + [SMALL_STATE(21371)] = 1055922, + [SMALL_STATE(21372)] = 1055936, + [SMALL_STATE(21373)] = 1055950, + [SMALL_STATE(21374)] = 1055964, + [SMALL_STATE(21375)] = 1055978, + [SMALL_STATE(21376)] = 1055992, + [SMALL_STATE(21377)] = 1056006, + [SMALL_STATE(21378)] = 1056020, + [SMALL_STATE(21379)] = 1056034, + [SMALL_STATE(21380)] = 1056048, + [SMALL_STATE(21381)] = 1056062, + [SMALL_STATE(21382)] = 1056076, + [SMALL_STATE(21383)] = 1056090, + [SMALL_STATE(21384)] = 1056104, + [SMALL_STATE(21385)] = 1056118, + [SMALL_STATE(21386)] = 1056132, + [SMALL_STATE(21387)] = 1056146, + [SMALL_STATE(21388)] = 1056160, + [SMALL_STATE(21389)] = 1056174, + [SMALL_STATE(21390)] = 1056188, + [SMALL_STATE(21391)] = 1056202, + [SMALL_STATE(21392)] = 1056216, + [SMALL_STATE(21393)] = 1056230, + [SMALL_STATE(21394)] = 1056244, + [SMALL_STATE(21395)] = 1056258, + [SMALL_STATE(21396)] = 1056272, + [SMALL_STATE(21397)] = 1056286, + [SMALL_STATE(21398)] = 1056300, + [SMALL_STATE(21399)] = 1056314, + [SMALL_STATE(21400)] = 1056328, + [SMALL_STATE(21401)] = 1056342, + [SMALL_STATE(21402)] = 1056356, + [SMALL_STATE(21403)] = 1056370, + [SMALL_STATE(21404)] = 1056384, + [SMALL_STATE(21405)] = 1056398, + [SMALL_STATE(21406)] = 1056412, + [SMALL_STATE(21407)] = 1056426, + [SMALL_STATE(21408)] = 1056440, + [SMALL_STATE(21409)] = 1056454, + [SMALL_STATE(21410)] = 1056468, + [SMALL_STATE(21411)] = 1056482, + [SMALL_STATE(21412)] = 1056496, + [SMALL_STATE(21413)] = 1056510, + [SMALL_STATE(21414)] = 1056524, + [SMALL_STATE(21415)] = 1056538, + [SMALL_STATE(21416)] = 1056552, + [SMALL_STATE(21417)] = 1056566, + [SMALL_STATE(21418)] = 1056580, + [SMALL_STATE(21419)] = 1056594, + [SMALL_STATE(21420)] = 1056608, + [SMALL_STATE(21421)] = 1056622, + [SMALL_STATE(21422)] = 1056636, + [SMALL_STATE(21423)] = 1056650, + [SMALL_STATE(21424)] = 1056664, + [SMALL_STATE(21425)] = 1056678, + [SMALL_STATE(21426)] = 1056692, + [SMALL_STATE(21427)] = 1056706, + [SMALL_STATE(21428)] = 1056720, + [SMALL_STATE(21429)] = 1056734, + [SMALL_STATE(21430)] = 1056748, + [SMALL_STATE(21431)] = 1056762, + [SMALL_STATE(21432)] = 1056776, + [SMALL_STATE(21433)] = 1056790, + [SMALL_STATE(21434)] = 1056804, + [SMALL_STATE(21435)] = 1056818, + [SMALL_STATE(21436)] = 1056832, + [SMALL_STATE(21437)] = 1056846, + [SMALL_STATE(21438)] = 1056860, + [SMALL_STATE(21439)] = 1056874, + [SMALL_STATE(21440)] = 1056888, + [SMALL_STATE(21441)] = 1056902, + [SMALL_STATE(21442)] = 1056916, + [SMALL_STATE(21443)] = 1056930, + [SMALL_STATE(21444)] = 1056944, + [SMALL_STATE(21445)] = 1056958, + [SMALL_STATE(21446)] = 1056972, + [SMALL_STATE(21447)] = 1056986, + [SMALL_STATE(21448)] = 1057000, + [SMALL_STATE(21449)] = 1057014, + [SMALL_STATE(21450)] = 1057028, + [SMALL_STATE(21451)] = 1057042, + [SMALL_STATE(21452)] = 1057056, + [SMALL_STATE(21453)] = 1057070, + [SMALL_STATE(21454)] = 1057084, + [SMALL_STATE(21455)] = 1057098, + [SMALL_STATE(21456)] = 1057112, + [SMALL_STATE(21457)] = 1057126, + [SMALL_STATE(21458)] = 1057140, + [SMALL_STATE(21459)] = 1057154, + [SMALL_STATE(21460)] = 1057168, + [SMALL_STATE(21461)] = 1057182, + [SMALL_STATE(21462)] = 1057196, + [SMALL_STATE(21463)] = 1057210, + [SMALL_STATE(21464)] = 1057224, + [SMALL_STATE(21465)] = 1057238, + [SMALL_STATE(21466)] = 1057252, + [SMALL_STATE(21467)] = 1057266, + [SMALL_STATE(21468)] = 1057280, + [SMALL_STATE(21469)] = 1057294, + [SMALL_STATE(21470)] = 1057308, + [SMALL_STATE(21471)] = 1057322, + [SMALL_STATE(21472)] = 1057336, + [SMALL_STATE(21473)] = 1057350, + [SMALL_STATE(21474)] = 1057364, + [SMALL_STATE(21475)] = 1057378, + [SMALL_STATE(21476)] = 1057392, + [SMALL_STATE(21477)] = 1057406, + [SMALL_STATE(21478)] = 1057420, + [SMALL_STATE(21479)] = 1057434, + [SMALL_STATE(21480)] = 1057448, + [SMALL_STATE(21481)] = 1057462, + [SMALL_STATE(21482)] = 1057476, + [SMALL_STATE(21483)] = 1057490, + [SMALL_STATE(21484)] = 1057504, + [SMALL_STATE(21485)] = 1057518, + [SMALL_STATE(21486)] = 1057532, + [SMALL_STATE(21487)] = 1057546, + [SMALL_STATE(21488)] = 1057560, + [SMALL_STATE(21489)] = 1057574, + [SMALL_STATE(21490)] = 1057588, + [SMALL_STATE(21491)] = 1057602, + [SMALL_STATE(21492)] = 1057616, + [SMALL_STATE(21493)] = 1057630, + [SMALL_STATE(21494)] = 1057644, + [SMALL_STATE(21495)] = 1057658, + [SMALL_STATE(21496)] = 1057672, + [SMALL_STATE(21497)] = 1057686, + [SMALL_STATE(21498)] = 1057700, + [SMALL_STATE(21499)] = 1057714, + [SMALL_STATE(21500)] = 1057728, + [SMALL_STATE(21501)] = 1057742, + [SMALL_STATE(21502)] = 1057756, + [SMALL_STATE(21503)] = 1057770, + [SMALL_STATE(21504)] = 1057784, + [SMALL_STATE(21505)] = 1057798, + [SMALL_STATE(21506)] = 1057812, + [SMALL_STATE(21507)] = 1057826, + [SMALL_STATE(21508)] = 1057840, + [SMALL_STATE(21509)] = 1057854, + [SMALL_STATE(21510)] = 1057868, + [SMALL_STATE(21511)] = 1057882, + [SMALL_STATE(21512)] = 1057896, + [SMALL_STATE(21513)] = 1057910, + [SMALL_STATE(21514)] = 1057924, + [SMALL_STATE(21515)] = 1057938, + [SMALL_STATE(21516)] = 1057952, + [SMALL_STATE(21517)] = 1057966, + [SMALL_STATE(21518)] = 1057980, + [SMALL_STATE(21519)] = 1057994, + [SMALL_STATE(21520)] = 1058008, + [SMALL_STATE(21521)] = 1058022, + [SMALL_STATE(21522)] = 1058036, + [SMALL_STATE(21523)] = 1058050, + [SMALL_STATE(21524)] = 1058064, + [SMALL_STATE(21525)] = 1058078, + [SMALL_STATE(21526)] = 1058092, + [SMALL_STATE(21527)] = 1058106, + [SMALL_STATE(21528)] = 1058120, + [SMALL_STATE(21529)] = 1058134, + [SMALL_STATE(21530)] = 1058148, + [SMALL_STATE(21531)] = 1058162, + [SMALL_STATE(21532)] = 1058176, + [SMALL_STATE(21533)] = 1058190, + [SMALL_STATE(21534)] = 1058204, + [SMALL_STATE(21535)] = 1058218, + [SMALL_STATE(21536)] = 1058232, + [SMALL_STATE(21537)] = 1058246, + [SMALL_STATE(21538)] = 1058260, + [SMALL_STATE(21539)] = 1058274, + [SMALL_STATE(21540)] = 1058288, + [SMALL_STATE(21541)] = 1058302, + [SMALL_STATE(21542)] = 1058316, + [SMALL_STATE(21543)] = 1058330, + [SMALL_STATE(21544)] = 1058344, + [SMALL_STATE(21545)] = 1058358, + [SMALL_STATE(21546)] = 1058372, + [SMALL_STATE(21547)] = 1058386, + [SMALL_STATE(21548)] = 1058400, + [SMALL_STATE(21549)] = 1058414, + [SMALL_STATE(21550)] = 1058428, + [SMALL_STATE(21551)] = 1058442, + [SMALL_STATE(21552)] = 1058456, + [SMALL_STATE(21553)] = 1058470, + [SMALL_STATE(21554)] = 1058484, + [SMALL_STATE(21555)] = 1058498, + [SMALL_STATE(21556)] = 1058512, + [SMALL_STATE(21557)] = 1058526, + [SMALL_STATE(21558)] = 1058540, + [SMALL_STATE(21559)] = 1058554, + [SMALL_STATE(21560)] = 1058568, + [SMALL_STATE(21561)] = 1058582, + [SMALL_STATE(21562)] = 1058596, + [SMALL_STATE(21563)] = 1058610, + [SMALL_STATE(21564)] = 1058624, + [SMALL_STATE(21565)] = 1058638, + [SMALL_STATE(21566)] = 1058652, + [SMALL_STATE(21567)] = 1058666, + [SMALL_STATE(21568)] = 1058680, + [SMALL_STATE(21569)] = 1058694, + [SMALL_STATE(21570)] = 1058708, + [SMALL_STATE(21571)] = 1058722, + [SMALL_STATE(21572)] = 1058736, + [SMALL_STATE(21573)] = 1058750, + [SMALL_STATE(21574)] = 1058764, + [SMALL_STATE(21575)] = 1058778, + [SMALL_STATE(21576)] = 1058792, + [SMALL_STATE(21577)] = 1058806, + [SMALL_STATE(21578)] = 1058820, + [SMALL_STATE(21579)] = 1058834, + [SMALL_STATE(21580)] = 1058848, + [SMALL_STATE(21581)] = 1058862, + [SMALL_STATE(21582)] = 1058876, + [SMALL_STATE(21583)] = 1058890, + [SMALL_STATE(21584)] = 1058904, + [SMALL_STATE(21585)] = 1058918, + [SMALL_STATE(21586)] = 1058932, + [SMALL_STATE(21587)] = 1058946, + [SMALL_STATE(21588)] = 1058960, + [SMALL_STATE(21589)] = 1058974, + [SMALL_STATE(21590)] = 1058988, + [SMALL_STATE(21591)] = 1059002, + [SMALL_STATE(21592)] = 1059016, + [SMALL_STATE(21593)] = 1059030, + [SMALL_STATE(21594)] = 1059044, + [SMALL_STATE(21595)] = 1059058, + [SMALL_STATE(21596)] = 1059072, + [SMALL_STATE(21597)] = 1059086, + [SMALL_STATE(21598)] = 1059100, + [SMALL_STATE(21599)] = 1059114, + [SMALL_STATE(21600)] = 1059128, + [SMALL_STATE(21601)] = 1059142, + [SMALL_STATE(21602)] = 1059156, + [SMALL_STATE(21603)] = 1059170, + [SMALL_STATE(21604)] = 1059184, + [SMALL_STATE(21605)] = 1059198, + [SMALL_STATE(21606)] = 1059212, + [SMALL_STATE(21607)] = 1059226, + [SMALL_STATE(21608)] = 1059240, + [SMALL_STATE(21609)] = 1059254, + [SMALL_STATE(21610)] = 1059268, + [SMALL_STATE(21611)] = 1059282, + [SMALL_STATE(21612)] = 1059296, + [SMALL_STATE(21613)] = 1059310, + [SMALL_STATE(21614)] = 1059324, + [SMALL_STATE(21615)] = 1059338, + [SMALL_STATE(21616)] = 1059352, + [SMALL_STATE(21617)] = 1059366, + [SMALL_STATE(21618)] = 1059380, + [SMALL_STATE(21619)] = 1059394, + [SMALL_STATE(21620)] = 1059408, + [SMALL_STATE(21621)] = 1059422, + [SMALL_STATE(21622)] = 1059436, + [SMALL_STATE(21623)] = 1059450, + [SMALL_STATE(21624)] = 1059464, + [SMALL_STATE(21625)] = 1059478, + [SMALL_STATE(21626)] = 1059492, + [SMALL_STATE(21627)] = 1059506, + [SMALL_STATE(21628)] = 1059520, + [SMALL_STATE(21629)] = 1059534, + [SMALL_STATE(21630)] = 1059548, + [SMALL_STATE(21631)] = 1059562, + [SMALL_STATE(21632)] = 1059576, + [SMALL_STATE(21633)] = 1059590, + [SMALL_STATE(21634)] = 1059604, + [SMALL_STATE(21635)] = 1059618, + [SMALL_STATE(21636)] = 1059632, + [SMALL_STATE(21637)] = 1059646, + [SMALL_STATE(21638)] = 1059660, + [SMALL_STATE(21639)] = 1059674, + [SMALL_STATE(21640)] = 1059688, + [SMALL_STATE(21641)] = 1059702, + [SMALL_STATE(21642)] = 1059716, + [SMALL_STATE(21643)] = 1059730, + [SMALL_STATE(21644)] = 1059744, + [SMALL_STATE(21645)] = 1059758, + [SMALL_STATE(21646)] = 1059772, + [SMALL_STATE(21647)] = 1059786, + [SMALL_STATE(21648)] = 1059800, + [SMALL_STATE(21649)] = 1059814, + [SMALL_STATE(21650)] = 1059828, + [SMALL_STATE(21651)] = 1059842, + [SMALL_STATE(21652)] = 1059856, + [SMALL_STATE(21653)] = 1059870, + [SMALL_STATE(21654)] = 1059884, + [SMALL_STATE(21655)] = 1059898, + [SMALL_STATE(21656)] = 1059912, + [SMALL_STATE(21657)] = 1059926, + [SMALL_STATE(21658)] = 1059940, + [SMALL_STATE(21659)] = 1059954, + [SMALL_STATE(21660)] = 1059968, + [SMALL_STATE(21661)] = 1059982, + [SMALL_STATE(21662)] = 1059996, + [SMALL_STATE(21663)] = 1060010, + [SMALL_STATE(21664)] = 1060024, + [SMALL_STATE(21665)] = 1060038, + [SMALL_STATE(21666)] = 1060052, + [SMALL_STATE(21667)] = 1060066, + [SMALL_STATE(21668)] = 1060080, + [SMALL_STATE(21669)] = 1060094, + [SMALL_STATE(21670)] = 1060108, + [SMALL_STATE(21671)] = 1060122, + [SMALL_STATE(21672)] = 1060136, + [SMALL_STATE(21673)] = 1060150, + [SMALL_STATE(21674)] = 1060164, + [SMALL_STATE(21675)] = 1060178, + [SMALL_STATE(21676)] = 1060192, + [SMALL_STATE(21677)] = 1060206, + [SMALL_STATE(21678)] = 1060220, + [SMALL_STATE(21679)] = 1060234, + [SMALL_STATE(21680)] = 1060248, + [SMALL_STATE(21681)] = 1060262, + [SMALL_STATE(21682)] = 1060276, + [SMALL_STATE(21683)] = 1060288, + [SMALL_STATE(21684)] = 1060302, + [SMALL_STATE(21685)] = 1060316, + [SMALL_STATE(21686)] = 1060330, + [SMALL_STATE(21687)] = 1060344, + [SMALL_STATE(21688)] = 1060358, + [SMALL_STATE(21689)] = 1060370, + [SMALL_STATE(21690)] = 1060384, + [SMALL_STATE(21691)] = 1060398, + [SMALL_STATE(21692)] = 1060412, + [SMALL_STATE(21693)] = 1060426, + [SMALL_STATE(21694)] = 1060440, + [SMALL_STATE(21695)] = 1060454, + [SMALL_STATE(21696)] = 1060468, + [SMALL_STATE(21697)] = 1060482, + [SMALL_STATE(21698)] = 1060496, + [SMALL_STATE(21699)] = 1060510, + [SMALL_STATE(21700)] = 1060524, + [SMALL_STATE(21701)] = 1060538, + [SMALL_STATE(21702)] = 1060552, + [SMALL_STATE(21703)] = 1060566, + [SMALL_STATE(21704)] = 1060580, + [SMALL_STATE(21705)] = 1060594, + [SMALL_STATE(21706)] = 1060608, + [SMALL_STATE(21707)] = 1060622, + [SMALL_STATE(21708)] = 1060636, + [SMALL_STATE(21709)] = 1060650, + [SMALL_STATE(21710)] = 1060664, + [SMALL_STATE(21711)] = 1060678, + [SMALL_STATE(21712)] = 1060692, + [SMALL_STATE(21713)] = 1060706, + [SMALL_STATE(21714)] = 1060720, + [SMALL_STATE(21715)] = 1060734, + [SMALL_STATE(21716)] = 1060748, + [SMALL_STATE(21717)] = 1060762, + [SMALL_STATE(21718)] = 1060776, + [SMALL_STATE(21719)] = 1060790, + [SMALL_STATE(21720)] = 1060804, + [SMALL_STATE(21721)] = 1060818, + [SMALL_STATE(21722)] = 1060832, + [SMALL_STATE(21723)] = 1060846, + [SMALL_STATE(21724)] = 1060860, + [SMALL_STATE(21725)] = 1060874, + [SMALL_STATE(21726)] = 1060888, + [SMALL_STATE(21727)] = 1060902, + [SMALL_STATE(21728)] = 1060916, + [SMALL_STATE(21729)] = 1060930, + [SMALL_STATE(21730)] = 1060944, + [SMALL_STATE(21731)] = 1060958, + [SMALL_STATE(21732)] = 1060972, + [SMALL_STATE(21733)] = 1060986, + [SMALL_STATE(21734)] = 1061000, + [SMALL_STATE(21735)] = 1061014, + [SMALL_STATE(21736)] = 1061028, + [SMALL_STATE(21737)] = 1061042, + [SMALL_STATE(21738)] = 1061056, + [SMALL_STATE(21739)] = 1061070, + [SMALL_STATE(21740)] = 1061084, + [SMALL_STATE(21741)] = 1061098, + [SMALL_STATE(21742)] = 1061112, + [SMALL_STATE(21743)] = 1061126, + [SMALL_STATE(21744)] = 1061140, + [SMALL_STATE(21745)] = 1061154, + [SMALL_STATE(21746)] = 1061168, + [SMALL_STATE(21747)] = 1061182, + [SMALL_STATE(21748)] = 1061196, + [SMALL_STATE(21749)] = 1061210, + [SMALL_STATE(21750)] = 1061224, + [SMALL_STATE(21751)] = 1061238, + [SMALL_STATE(21752)] = 1061252, + [SMALL_STATE(21753)] = 1061266, + [SMALL_STATE(21754)] = 1061280, + [SMALL_STATE(21755)] = 1061294, + [SMALL_STATE(21756)] = 1061308, + [SMALL_STATE(21757)] = 1061322, + [SMALL_STATE(21758)] = 1061336, + [SMALL_STATE(21759)] = 1061350, + [SMALL_STATE(21760)] = 1061364, + [SMALL_STATE(21761)] = 1061378, + [SMALL_STATE(21762)] = 1061392, + [SMALL_STATE(21763)] = 1061406, + [SMALL_STATE(21764)] = 1061420, + [SMALL_STATE(21765)] = 1061434, + [SMALL_STATE(21766)] = 1061448, + [SMALL_STATE(21767)] = 1061462, + [SMALL_STATE(21768)] = 1061476, + [SMALL_STATE(21769)] = 1061490, + [SMALL_STATE(21770)] = 1061504, + [SMALL_STATE(21771)] = 1061518, + [SMALL_STATE(21772)] = 1061532, + [SMALL_STATE(21773)] = 1061546, + [SMALL_STATE(21774)] = 1061560, + [SMALL_STATE(21775)] = 1061574, + [SMALL_STATE(21776)] = 1061588, + [SMALL_STATE(21777)] = 1061602, + [SMALL_STATE(21778)] = 1061616, + [SMALL_STATE(21779)] = 1061630, + [SMALL_STATE(21780)] = 1061644, + [SMALL_STATE(21781)] = 1061658, + [SMALL_STATE(21782)] = 1061672, + [SMALL_STATE(21783)] = 1061686, + [SMALL_STATE(21784)] = 1061700, + [SMALL_STATE(21785)] = 1061714, + [SMALL_STATE(21786)] = 1061728, + [SMALL_STATE(21787)] = 1061742, + [SMALL_STATE(21788)] = 1061754, + [SMALL_STATE(21789)] = 1061768, + [SMALL_STATE(21790)] = 1061782, + [SMALL_STATE(21791)] = 1061796, + [SMALL_STATE(21792)] = 1061810, + [SMALL_STATE(21793)] = 1061822, + [SMALL_STATE(21794)] = 1061836, + [SMALL_STATE(21795)] = 1061850, + [SMALL_STATE(21796)] = 1061864, + [SMALL_STATE(21797)] = 1061878, + [SMALL_STATE(21798)] = 1061892, + [SMALL_STATE(21799)] = 1061906, + [SMALL_STATE(21800)] = 1061920, + [SMALL_STATE(21801)] = 1061934, + [SMALL_STATE(21802)] = 1061948, + [SMALL_STATE(21803)] = 1061962, + [SMALL_STATE(21804)] = 1061976, + [SMALL_STATE(21805)] = 1061990, + [SMALL_STATE(21806)] = 1062004, + [SMALL_STATE(21807)] = 1062018, + [SMALL_STATE(21808)] = 1062032, + [SMALL_STATE(21809)] = 1062046, + [SMALL_STATE(21810)] = 1062060, + [SMALL_STATE(21811)] = 1062074, + [SMALL_STATE(21812)] = 1062088, + [SMALL_STATE(21813)] = 1062102, + [SMALL_STATE(21814)] = 1062116, + [SMALL_STATE(21815)] = 1062130, + [SMALL_STATE(21816)] = 1062144, + [SMALL_STATE(21817)] = 1062158, + [SMALL_STATE(21818)] = 1062172, + [SMALL_STATE(21819)] = 1062186, + [SMALL_STATE(21820)] = 1062200, + [SMALL_STATE(21821)] = 1062214, + [SMALL_STATE(21822)] = 1062228, + [SMALL_STATE(21823)] = 1062242, + [SMALL_STATE(21824)] = 1062256, + [SMALL_STATE(21825)] = 1062270, + [SMALL_STATE(21826)] = 1062284, + [SMALL_STATE(21827)] = 1062298, + [SMALL_STATE(21828)] = 1062312, + [SMALL_STATE(21829)] = 1062326, + [SMALL_STATE(21830)] = 1062340, + [SMALL_STATE(21831)] = 1062354, + [SMALL_STATE(21832)] = 1062368, + [SMALL_STATE(21833)] = 1062382, + [SMALL_STATE(21834)] = 1062396, + [SMALL_STATE(21835)] = 1062410, + [SMALL_STATE(21836)] = 1062424, + [SMALL_STATE(21837)] = 1062438, + [SMALL_STATE(21838)] = 1062452, + [SMALL_STATE(21839)] = 1062466, + [SMALL_STATE(21840)] = 1062480, + [SMALL_STATE(21841)] = 1062494, + [SMALL_STATE(21842)] = 1062508, + [SMALL_STATE(21843)] = 1062522, + [SMALL_STATE(21844)] = 1062536, + [SMALL_STATE(21845)] = 1062550, + [SMALL_STATE(21846)] = 1062564, + [SMALL_STATE(21847)] = 1062578, + [SMALL_STATE(21848)] = 1062592, + [SMALL_STATE(21849)] = 1062606, + [SMALL_STATE(21850)] = 1062620, + [SMALL_STATE(21851)] = 1062634, + [SMALL_STATE(21852)] = 1062648, + [SMALL_STATE(21853)] = 1062662, + [SMALL_STATE(21854)] = 1062676, + [SMALL_STATE(21855)] = 1062690, + [SMALL_STATE(21856)] = 1062704, + [SMALL_STATE(21857)] = 1062718, + [SMALL_STATE(21858)] = 1062732, + [SMALL_STATE(21859)] = 1062746, + [SMALL_STATE(21860)] = 1062760, + [SMALL_STATE(21861)] = 1062774, + [SMALL_STATE(21862)] = 1062788, + [SMALL_STATE(21863)] = 1062802, + [SMALL_STATE(21864)] = 1062816, + [SMALL_STATE(21865)] = 1062830, + [SMALL_STATE(21866)] = 1062844, + [SMALL_STATE(21867)] = 1062858, + [SMALL_STATE(21868)] = 1062872, + [SMALL_STATE(21869)] = 1062886, + [SMALL_STATE(21870)] = 1062900, + [SMALL_STATE(21871)] = 1062914, + [SMALL_STATE(21872)] = 1062928, + [SMALL_STATE(21873)] = 1062942, + [SMALL_STATE(21874)] = 1062956, + [SMALL_STATE(21875)] = 1062970, + [SMALL_STATE(21876)] = 1062984, + [SMALL_STATE(21877)] = 1062998, + [SMALL_STATE(21878)] = 1063012, + [SMALL_STATE(21879)] = 1063026, + [SMALL_STATE(21880)] = 1063040, + [SMALL_STATE(21881)] = 1063054, + [SMALL_STATE(21882)] = 1063066, + [SMALL_STATE(21883)] = 1063080, + [SMALL_STATE(21884)] = 1063094, + [SMALL_STATE(21885)] = 1063108, + [SMALL_STATE(21886)] = 1063122, + [SMALL_STATE(21887)] = 1063134, + [SMALL_STATE(21888)] = 1063148, + [SMALL_STATE(21889)] = 1063162, + [SMALL_STATE(21890)] = 1063176, + [SMALL_STATE(21891)] = 1063190, + [SMALL_STATE(21892)] = 1063204, + [SMALL_STATE(21893)] = 1063218, + [SMALL_STATE(21894)] = 1063232, + [SMALL_STATE(21895)] = 1063246, + [SMALL_STATE(21896)] = 1063260, + [SMALL_STATE(21897)] = 1063274, + [SMALL_STATE(21898)] = 1063288, + [SMALL_STATE(21899)] = 1063302, + [SMALL_STATE(21900)] = 1063316, + [SMALL_STATE(21901)] = 1063330, + [SMALL_STATE(21902)] = 1063344, + [SMALL_STATE(21903)] = 1063358, + [SMALL_STATE(21904)] = 1063372, + [SMALL_STATE(21905)] = 1063386, + [SMALL_STATE(21906)] = 1063400, + [SMALL_STATE(21907)] = 1063414, + [SMALL_STATE(21908)] = 1063428, + [SMALL_STATE(21909)] = 1063442, + [SMALL_STATE(21910)] = 1063456, + [SMALL_STATE(21911)] = 1063470, + [SMALL_STATE(21912)] = 1063484, + [SMALL_STATE(21913)] = 1063498, + [SMALL_STATE(21914)] = 1063512, + [SMALL_STATE(21915)] = 1063526, + [SMALL_STATE(21916)] = 1063540, + [SMALL_STATE(21917)] = 1063554, + [SMALL_STATE(21918)] = 1063568, + [SMALL_STATE(21919)] = 1063582, + [SMALL_STATE(21920)] = 1063596, + [SMALL_STATE(21921)] = 1063610, + [SMALL_STATE(21922)] = 1063624, + [SMALL_STATE(21923)] = 1063638, + [SMALL_STATE(21924)] = 1063652, + [SMALL_STATE(21925)] = 1063666, + [SMALL_STATE(21926)] = 1063680, + [SMALL_STATE(21927)] = 1063694, + [SMALL_STATE(21928)] = 1063708, + [SMALL_STATE(21929)] = 1063722, + [SMALL_STATE(21930)] = 1063736, + [SMALL_STATE(21931)] = 1063750, + [SMALL_STATE(21932)] = 1063764, + [SMALL_STATE(21933)] = 1063778, + [SMALL_STATE(21934)] = 1063792, + [SMALL_STATE(21935)] = 1063806, + [SMALL_STATE(21936)] = 1063820, + [SMALL_STATE(21937)] = 1063834, + [SMALL_STATE(21938)] = 1063848, + [SMALL_STATE(21939)] = 1063862, + [SMALL_STATE(21940)] = 1063876, + [SMALL_STATE(21941)] = 1063890, + [SMALL_STATE(21942)] = 1063904, + [SMALL_STATE(21943)] = 1063918, + [SMALL_STATE(21944)] = 1063932, + [SMALL_STATE(21945)] = 1063946, + [SMALL_STATE(21946)] = 1063960, + [SMALL_STATE(21947)] = 1063974, + [SMALL_STATE(21948)] = 1063988, + [SMALL_STATE(21949)] = 1064002, + [SMALL_STATE(21950)] = 1064016, + [SMALL_STATE(21951)] = 1064030, + [SMALL_STATE(21952)] = 1064044, + [SMALL_STATE(21953)] = 1064058, + [SMALL_STATE(21954)] = 1064072, + [SMALL_STATE(21955)] = 1064086, + [SMALL_STATE(21956)] = 1064100, + [SMALL_STATE(21957)] = 1064114, + [SMALL_STATE(21958)] = 1064128, + [SMALL_STATE(21959)] = 1064142, + [SMALL_STATE(21960)] = 1064156, + [SMALL_STATE(21961)] = 1064170, + [SMALL_STATE(21962)] = 1064184, + [SMALL_STATE(21963)] = 1064198, + [SMALL_STATE(21964)] = 1064212, + [SMALL_STATE(21965)] = 1064226, + [SMALL_STATE(21966)] = 1064240, + [SMALL_STATE(21967)] = 1064254, + [SMALL_STATE(21968)] = 1064268, + [SMALL_STATE(21969)] = 1064282, + [SMALL_STATE(21970)] = 1064296, + [SMALL_STATE(21971)] = 1064310, + [SMALL_STATE(21972)] = 1064324, + [SMALL_STATE(21973)] = 1064338, + [SMALL_STATE(21974)] = 1064352, + [SMALL_STATE(21975)] = 1064366, + [SMALL_STATE(21976)] = 1064380, + [SMALL_STATE(21977)] = 1064394, + [SMALL_STATE(21978)] = 1064406, + [SMALL_STATE(21979)] = 1064420, + [SMALL_STATE(21980)] = 1064434, + [SMALL_STATE(21981)] = 1064448, + [SMALL_STATE(21982)] = 1064462, + [SMALL_STATE(21983)] = 1064474, + [SMALL_STATE(21984)] = 1064488, + [SMALL_STATE(21985)] = 1064502, + [SMALL_STATE(21986)] = 1064516, + [SMALL_STATE(21987)] = 1064530, + [SMALL_STATE(21988)] = 1064544, + [SMALL_STATE(21989)] = 1064558, + [SMALL_STATE(21990)] = 1064572, + [SMALL_STATE(21991)] = 1064586, + [SMALL_STATE(21992)] = 1064600, + [SMALL_STATE(21993)] = 1064614, + [SMALL_STATE(21994)] = 1064628, + [SMALL_STATE(21995)] = 1064642, + [SMALL_STATE(21996)] = 1064656, + [SMALL_STATE(21997)] = 1064670, + [SMALL_STATE(21998)] = 1064684, + [SMALL_STATE(21999)] = 1064698, + [SMALL_STATE(22000)] = 1064712, + [SMALL_STATE(22001)] = 1064726, + [SMALL_STATE(22002)] = 1064740, + [SMALL_STATE(22003)] = 1064754, + [SMALL_STATE(22004)] = 1064768, + [SMALL_STATE(22005)] = 1064782, + [SMALL_STATE(22006)] = 1064796, + [SMALL_STATE(22007)] = 1064810, + [SMALL_STATE(22008)] = 1064824, + [SMALL_STATE(22009)] = 1064838, + [SMALL_STATE(22010)] = 1064852, + [SMALL_STATE(22011)] = 1064866, + [SMALL_STATE(22012)] = 1064880, + [SMALL_STATE(22013)] = 1064894, + [SMALL_STATE(22014)] = 1064908, + [SMALL_STATE(22015)] = 1064922, + [SMALL_STATE(22016)] = 1064936, + [SMALL_STATE(22017)] = 1064950, + [SMALL_STATE(22018)] = 1064964, + [SMALL_STATE(22019)] = 1064978, + [SMALL_STATE(22020)] = 1064992, + [SMALL_STATE(22021)] = 1065006, + [SMALL_STATE(22022)] = 1065020, + [SMALL_STATE(22023)] = 1065034, + [SMALL_STATE(22024)] = 1065048, + [SMALL_STATE(22025)] = 1065062, + [SMALL_STATE(22026)] = 1065076, + [SMALL_STATE(22027)] = 1065090, + [SMALL_STATE(22028)] = 1065104, + [SMALL_STATE(22029)] = 1065118, + [SMALL_STATE(22030)] = 1065132, + [SMALL_STATE(22031)] = 1065146, + [SMALL_STATE(22032)] = 1065160, + [SMALL_STATE(22033)] = 1065174, + [SMALL_STATE(22034)] = 1065188, + [SMALL_STATE(22035)] = 1065202, + [SMALL_STATE(22036)] = 1065216, + [SMALL_STATE(22037)] = 1065230, + [SMALL_STATE(22038)] = 1065244, + [SMALL_STATE(22039)] = 1065258, + [SMALL_STATE(22040)] = 1065272, + [SMALL_STATE(22041)] = 1065286, + [SMALL_STATE(22042)] = 1065300, + [SMALL_STATE(22043)] = 1065314, + [SMALL_STATE(22044)] = 1065328, + [SMALL_STATE(22045)] = 1065342, + [SMALL_STATE(22046)] = 1065356, + [SMALL_STATE(22047)] = 1065370, + [SMALL_STATE(22048)] = 1065384, + [SMALL_STATE(22049)] = 1065398, + [SMALL_STATE(22050)] = 1065412, + [SMALL_STATE(22051)] = 1065426, + [SMALL_STATE(22052)] = 1065440, + [SMALL_STATE(22053)] = 1065454, + [SMALL_STATE(22054)] = 1065468, + [SMALL_STATE(22055)] = 1065482, + [SMALL_STATE(22056)] = 1065496, + [SMALL_STATE(22057)] = 1065510, + [SMALL_STATE(22058)] = 1065524, + [SMALL_STATE(22059)] = 1065538, + [SMALL_STATE(22060)] = 1065552, + [SMALL_STATE(22061)] = 1065566, + [SMALL_STATE(22062)] = 1065580, + [SMALL_STATE(22063)] = 1065594, + [SMALL_STATE(22064)] = 1065608, + [SMALL_STATE(22065)] = 1065622, + [SMALL_STATE(22066)] = 1065636, + [SMALL_STATE(22067)] = 1065650, + [SMALL_STATE(22068)] = 1065664, + [SMALL_STATE(22069)] = 1065678, + [SMALL_STATE(22070)] = 1065692, + [SMALL_STATE(22071)] = 1065706, + [SMALL_STATE(22072)] = 1065720, + [SMALL_STATE(22073)] = 1065734, + [SMALL_STATE(22074)] = 1065748, + [SMALL_STATE(22075)] = 1065762, + [SMALL_STATE(22076)] = 1065776, + [SMALL_STATE(22077)] = 1065790, + [SMALL_STATE(22078)] = 1065804, + [SMALL_STATE(22079)] = 1065818, + [SMALL_STATE(22080)] = 1065832, + [SMALL_STATE(22081)] = 1065846, + [SMALL_STATE(22082)] = 1065860, + [SMALL_STATE(22083)] = 1065874, + [SMALL_STATE(22084)] = 1065888, + [SMALL_STATE(22085)] = 1065902, + [SMALL_STATE(22086)] = 1065916, + [SMALL_STATE(22087)] = 1065930, + [SMALL_STATE(22088)] = 1065944, + [SMALL_STATE(22089)] = 1065958, + [SMALL_STATE(22090)] = 1065972, + [SMALL_STATE(22091)] = 1065986, + [SMALL_STATE(22092)] = 1066000, + [SMALL_STATE(22093)] = 1066014, + [SMALL_STATE(22094)] = 1066028, + [SMALL_STATE(22095)] = 1066042, + [SMALL_STATE(22096)] = 1066056, + [SMALL_STATE(22097)] = 1066070, + [SMALL_STATE(22098)] = 1066084, + [SMALL_STATE(22099)] = 1066098, + [SMALL_STATE(22100)] = 1066112, + [SMALL_STATE(22101)] = 1066126, + [SMALL_STATE(22102)] = 1066140, + [SMALL_STATE(22103)] = 1066154, + [SMALL_STATE(22104)] = 1066168, + [SMALL_STATE(22105)] = 1066182, + [SMALL_STATE(22106)] = 1066196, + [SMALL_STATE(22107)] = 1066210, + [SMALL_STATE(22108)] = 1066224, + [SMALL_STATE(22109)] = 1066238, + [SMALL_STATE(22110)] = 1066252, + [SMALL_STATE(22111)] = 1066266, + [SMALL_STATE(22112)] = 1066280, + [SMALL_STATE(22113)] = 1066294, + [SMALL_STATE(22114)] = 1066308, + [SMALL_STATE(22115)] = 1066322, + [SMALL_STATE(22116)] = 1066336, + [SMALL_STATE(22117)] = 1066350, + [SMALL_STATE(22118)] = 1066364, + [SMALL_STATE(22119)] = 1066378, + [SMALL_STATE(22120)] = 1066392, + [SMALL_STATE(22121)] = 1066406, + [SMALL_STATE(22122)] = 1066420, + [SMALL_STATE(22123)] = 1066434, + [SMALL_STATE(22124)] = 1066448, + [SMALL_STATE(22125)] = 1066460, + [SMALL_STATE(22126)] = 1066474, + [SMALL_STATE(22127)] = 1066488, + [SMALL_STATE(22128)] = 1066502, + [SMALL_STATE(22129)] = 1066516, + [SMALL_STATE(22130)] = 1066530, + [SMALL_STATE(22131)] = 1066544, + [SMALL_STATE(22132)] = 1066558, + [SMALL_STATE(22133)] = 1066572, + [SMALL_STATE(22134)] = 1066586, + [SMALL_STATE(22135)] = 1066600, + [SMALL_STATE(22136)] = 1066614, + [SMALL_STATE(22137)] = 1066628, + [SMALL_STATE(22138)] = 1066642, + [SMALL_STATE(22139)] = 1066656, + [SMALL_STATE(22140)] = 1066670, + [SMALL_STATE(22141)] = 1066684, + [SMALL_STATE(22142)] = 1066698, + [SMALL_STATE(22143)] = 1066712, + [SMALL_STATE(22144)] = 1066726, + [SMALL_STATE(22145)] = 1066740, + [SMALL_STATE(22146)] = 1066754, + [SMALL_STATE(22147)] = 1066768, + [SMALL_STATE(22148)] = 1066782, + [SMALL_STATE(22149)] = 1066796, + [SMALL_STATE(22150)] = 1066810, + [SMALL_STATE(22151)] = 1066824, + [SMALL_STATE(22152)] = 1066838, + [SMALL_STATE(22153)] = 1066852, + [SMALL_STATE(22154)] = 1066866, + [SMALL_STATE(22155)] = 1066880, + [SMALL_STATE(22156)] = 1066894, + [SMALL_STATE(22157)] = 1066908, + [SMALL_STATE(22158)] = 1066922, + [SMALL_STATE(22159)] = 1066936, + [SMALL_STATE(22160)] = 1066950, + [SMALL_STATE(22161)] = 1066964, + [SMALL_STATE(22162)] = 1066978, + [SMALL_STATE(22163)] = 1066992, + [SMALL_STATE(22164)] = 1067006, + [SMALL_STATE(22165)] = 1067020, + [SMALL_STATE(22166)] = 1067034, + [SMALL_STATE(22167)] = 1067048, + [SMALL_STATE(22168)] = 1067062, + [SMALL_STATE(22169)] = 1067076, + [SMALL_STATE(22170)] = 1067090, + [SMALL_STATE(22171)] = 1067104, + [SMALL_STATE(22172)] = 1067118, + [SMALL_STATE(22173)] = 1067132, + [SMALL_STATE(22174)] = 1067146, + [SMALL_STATE(22175)] = 1067160, + [SMALL_STATE(22176)] = 1067174, + [SMALL_STATE(22177)] = 1067188, + [SMALL_STATE(22178)] = 1067202, + [SMALL_STATE(22179)] = 1067216, + [SMALL_STATE(22180)] = 1067230, + [SMALL_STATE(22181)] = 1067244, + [SMALL_STATE(22182)] = 1067256, + [SMALL_STATE(22183)] = 1067270, + [SMALL_STATE(22184)] = 1067284, + [SMALL_STATE(22185)] = 1067298, + [SMALL_STATE(22186)] = 1067312, + [SMALL_STATE(22187)] = 1067326, + [SMALL_STATE(22188)] = 1067340, + [SMALL_STATE(22189)] = 1067354, + [SMALL_STATE(22190)] = 1067368, + [SMALL_STATE(22191)] = 1067382, + [SMALL_STATE(22192)] = 1067396, + [SMALL_STATE(22193)] = 1067410, + [SMALL_STATE(22194)] = 1067424, + [SMALL_STATE(22195)] = 1067438, + [SMALL_STATE(22196)] = 1067452, + [SMALL_STATE(22197)] = 1067466, + [SMALL_STATE(22198)] = 1067480, + [SMALL_STATE(22199)] = 1067494, + [SMALL_STATE(22200)] = 1067508, + [SMALL_STATE(22201)] = 1067522, + [SMALL_STATE(22202)] = 1067536, + [SMALL_STATE(22203)] = 1067550, + [SMALL_STATE(22204)] = 1067564, + [SMALL_STATE(22205)] = 1067578, + [SMALL_STATE(22206)] = 1067592, + [SMALL_STATE(22207)] = 1067606, + [SMALL_STATE(22208)] = 1067620, + [SMALL_STATE(22209)] = 1067634, + [SMALL_STATE(22210)] = 1067648, + [SMALL_STATE(22211)] = 1067662, + [SMALL_STATE(22212)] = 1067676, + [SMALL_STATE(22213)] = 1067690, + [SMALL_STATE(22214)] = 1067704, + [SMALL_STATE(22215)] = 1067718, + [SMALL_STATE(22216)] = 1067732, + [SMALL_STATE(22217)] = 1067746, + [SMALL_STATE(22218)] = 1067760, + [SMALL_STATE(22219)] = 1067774, + [SMALL_STATE(22220)] = 1067788, + [SMALL_STATE(22221)] = 1067802, + [SMALL_STATE(22222)] = 1067816, + [SMALL_STATE(22223)] = 1067830, + [SMALL_STATE(22224)] = 1067844, + [SMALL_STATE(22225)] = 1067858, + [SMALL_STATE(22226)] = 1067872, + [SMALL_STATE(22227)] = 1067886, + [SMALL_STATE(22228)] = 1067900, + [SMALL_STATE(22229)] = 1067914, + [SMALL_STATE(22230)] = 1067928, + [SMALL_STATE(22231)] = 1067942, + [SMALL_STATE(22232)] = 1067956, + [SMALL_STATE(22233)] = 1067970, + [SMALL_STATE(22234)] = 1067984, + [SMALL_STATE(22235)] = 1067998, + [SMALL_STATE(22236)] = 1068012, + [SMALL_STATE(22237)] = 1068026, + [SMALL_STATE(22238)] = 1068040, + [SMALL_STATE(22239)] = 1068054, + [SMALL_STATE(22240)] = 1068068, + [SMALL_STATE(22241)] = 1068082, + [SMALL_STATE(22242)] = 1068096, + [SMALL_STATE(22243)] = 1068110, + [SMALL_STATE(22244)] = 1068124, + [SMALL_STATE(22245)] = 1068138, + [SMALL_STATE(22246)] = 1068152, + [SMALL_STATE(22247)] = 1068166, + [SMALL_STATE(22248)] = 1068180, + [SMALL_STATE(22249)] = 1068194, + [SMALL_STATE(22250)] = 1068208, + [SMALL_STATE(22251)] = 1068222, + [SMALL_STATE(22252)] = 1068236, + [SMALL_STATE(22253)] = 1068250, + [SMALL_STATE(22254)] = 1068264, + [SMALL_STATE(22255)] = 1068278, + [SMALL_STATE(22256)] = 1068292, + [SMALL_STATE(22257)] = 1068306, + [SMALL_STATE(22258)] = 1068320, + [SMALL_STATE(22259)] = 1068334, + [SMALL_STATE(22260)] = 1068348, + [SMALL_STATE(22261)] = 1068362, + [SMALL_STATE(22262)] = 1068376, + [SMALL_STATE(22263)] = 1068390, + [SMALL_STATE(22264)] = 1068404, + [SMALL_STATE(22265)] = 1068418, + [SMALL_STATE(22266)] = 1068432, + [SMALL_STATE(22267)] = 1068446, + [SMALL_STATE(22268)] = 1068460, + [SMALL_STATE(22269)] = 1068474, + [SMALL_STATE(22270)] = 1068488, + [SMALL_STATE(22271)] = 1068502, + [SMALL_STATE(22272)] = 1068516, + [SMALL_STATE(22273)] = 1068530, + [SMALL_STATE(22274)] = 1068544, + [SMALL_STATE(22275)] = 1068558, + [SMALL_STATE(22276)] = 1068572, + [SMALL_STATE(22277)] = 1068586, + [SMALL_STATE(22278)] = 1068600, + [SMALL_STATE(22279)] = 1068614, + [SMALL_STATE(22280)] = 1068628, + [SMALL_STATE(22281)] = 1068642, + [SMALL_STATE(22282)] = 1068656, + [SMALL_STATE(22283)] = 1068670, + [SMALL_STATE(22284)] = 1068684, + [SMALL_STATE(22285)] = 1068698, + [SMALL_STATE(22286)] = 1068712, + [SMALL_STATE(22287)] = 1068726, + [SMALL_STATE(22288)] = 1068740, + [SMALL_STATE(22289)] = 1068754, + [SMALL_STATE(22290)] = 1068768, + [SMALL_STATE(22291)] = 1068782, + [SMALL_STATE(22292)] = 1068796, + [SMALL_STATE(22293)] = 1068810, + [SMALL_STATE(22294)] = 1068824, + [SMALL_STATE(22295)] = 1068836, + [SMALL_STATE(22296)] = 1068850, + [SMALL_STATE(22297)] = 1068864, + [SMALL_STATE(22298)] = 1068878, + [SMALL_STATE(22299)] = 1068892, + [SMALL_STATE(22300)] = 1068906, + [SMALL_STATE(22301)] = 1068920, + [SMALL_STATE(22302)] = 1068934, + [SMALL_STATE(22303)] = 1068948, + [SMALL_STATE(22304)] = 1068962, + [SMALL_STATE(22305)] = 1068976, + [SMALL_STATE(22306)] = 1068990, + [SMALL_STATE(22307)] = 1069004, + [SMALL_STATE(22308)] = 1069018, + [SMALL_STATE(22309)] = 1069032, + [SMALL_STATE(22310)] = 1069046, + [SMALL_STATE(22311)] = 1069060, + [SMALL_STATE(22312)] = 1069074, + [SMALL_STATE(22313)] = 1069088, + [SMALL_STATE(22314)] = 1069102, + [SMALL_STATE(22315)] = 1069116, + [SMALL_STATE(22316)] = 1069130, + [SMALL_STATE(22317)] = 1069144, + [SMALL_STATE(22318)] = 1069158, + [SMALL_STATE(22319)] = 1069172, + [SMALL_STATE(22320)] = 1069186, + [SMALL_STATE(22321)] = 1069200, + [SMALL_STATE(22322)] = 1069214, + [SMALL_STATE(22323)] = 1069228, + [SMALL_STATE(22324)] = 1069242, + [SMALL_STATE(22325)] = 1069256, + [SMALL_STATE(22326)] = 1069270, + [SMALL_STATE(22327)] = 1069284, + [SMALL_STATE(22328)] = 1069298, + [SMALL_STATE(22329)] = 1069312, + [SMALL_STATE(22330)] = 1069326, + [SMALL_STATE(22331)] = 1069340, + [SMALL_STATE(22332)] = 1069354, + [SMALL_STATE(22333)] = 1069368, + [SMALL_STATE(22334)] = 1069382, + [SMALL_STATE(22335)] = 1069396, + [SMALL_STATE(22336)] = 1069410, + [SMALL_STATE(22337)] = 1069424, + [SMALL_STATE(22338)] = 1069438, + [SMALL_STATE(22339)] = 1069452, + [SMALL_STATE(22340)] = 1069466, + [SMALL_STATE(22341)] = 1069480, + [SMALL_STATE(22342)] = 1069494, + [SMALL_STATE(22343)] = 1069508, + [SMALL_STATE(22344)] = 1069522, + [SMALL_STATE(22345)] = 1069536, + [SMALL_STATE(22346)] = 1069550, + [SMALL_STATE(22347)] = 1069564, + [SMALL_STATE(22348)] = 1069578, + [SMALL_STATE(22349)] = 1069592, + [SMALL_STATE(22350)] = 1069606, + [SMALL_STATE(22351)] = 1069620, + [SMALL_STATE(22352)] = 1069634, + [SMALL_STATE(22353)] = 1069648, + [SMALL_STATE(22354)] = 1069662, + [SMALL_STATE(22355)] = 1069676, + [SMALL_STATE(22356)] = 1069690, + [SMALL_STATE(22357)] = 1069704, + [SMALL_STATE(22358)] = 1069718, + [SMALL_STATE(22359)] = 1069732, + [SMALL_STATE(22360)] = 1069746, + [SMALL_STATE(22361)] = 1069760, + [SMALL_STATE(22362)] = 1069774, + [SMALL_STATE(22363)] = 1069788, + [SMALL_STATE(22364)] = 1069802, + [SMALL_STATE(22365)] = 1069816, + [SMALL_STATE(22366)] = 1069830, + [SMALL_STATE(22367)] = 1069844, + [SMALL_STATE(22368)] = 1069858, + [SMALL_STATE(22369)] = 1069872, + [SMALL_STATE(22370)] = 1069886, + [SMALL_STATE(22371)] = 1069900, + [SMALL_STATE(22372)] = 1069914, + [SMALL_STATE(22373)] = 1069928, + [SMALL_STATE(22374)] = 1069942, + [SMALL_STATE(22375)] = 1069956, + [SMALL_STATE(22376)] = 1069970, + [SMALL_STATE(22377)] = 1069984, + [SMALL_STATE(22378)] = 1069998, + [SMALL_STATE(22379)] = 1070012, + [SMALL_STATE(22380)] = 1070026, + [SMALL_STATE(22381)] = 1070040, + [SMALL_STATE(22382)] = 1070054, + [SMALL_STATE(22383)] = 1070068, + [SMALL_STATE(22384)] = 1070082, + [SMALL_STATE(22385)] = 1070096, + [SMALL_STATE(22386)] = 1070110, + [SMALL_STATE(22387)] = 1070124, + [SMALL_STATE(22388)] = 1070138, + [SMALL_STATE(22389)] = 1070152, + [SMALL_STATE(22390)] = 1070166, + [SMALL_STATE(22391)] = 1070180, + [SMALL_STATE(22392)] = 1070194, + [SMALL_STATE(22393)] = 1070208, + [SMALL_STATE(22394)] = 1070222, + [SMALL_STATE(22395)] = 1070236, + [SMALL_STATE(22396)] = 1070250, + [SMALL_STATE(22397)] = 1070264, + [SMALL_STATE(22398)] = 1070278, + [SMALL_STATE(22399)] = 1070292, + [SMALL_STATE(22400)] = 1070306, + [SMALL_STATE(22401)] = 1070320, + [SMALL_STATE(22402)] = 1070334, + [SMALL_STATE(22403)] = 1070348, + [SMALL_STATE(22404)] = 1070362, + [SMALL_STATE(22405)] = 1070376, + [SMALL_STATE(22406)] = 1070390, + [SMALL_STATE(22407)] = 1070404, + [SMALL_STATE(22408)] = 1070418, + [SMALL_STATE(22409)] = 1070432, + [SMALL_STATE(22410)] = 1070446, + [SMALL_STATE(22411)] = 1070460, + [SMALL_STATE(22412)] = 1070474, + [SMALL_STATE(22413)] = 1070488, + [SMALL_STATE(22414)] = 1070502, + [SMALL_STATE(22415)] = 1070516, + [SMALL_STATE(22416)] = 1070530, + [SMALL_STATE(22417)] = 1070544, + [SMALL_STATE(22418)] = 1070558, + [SMALL_STATE(22419)] = 1070572, + [SMALL_STATE(22420)] = 1070586, + [SMALL_STATE(22421)] = 1070600, + [SMALL_STATE(22422)] = 1070614, + [SMALL_STATE(22423)] = 1070628, + [SMALL_STATE(22424)] = 1070642, + [SMALL_STATE(22425)] = 1070656, + [SMALL_STATE(22426)] = 1070670, + [SMALL_STATE(22427)] = 1070684, + [SMALL_STATE(22428)] = 1070698, + [SMALL_STATE(22429)] = 1070712, + [SMALL_STATE(22430)] = 1070726, + [SMALL_STATE(22431)] = 1070740, + [SMALL_STATE(22432)] = 1070754, + [SMALL_STATE(22433)] = 1070768, + [SMALL_STATE(22434)] = 1070782, + [SMALL_STATE(22435)] = 1070796, + [SMALL_STATE(22436)] = 1070810, + [SMALL_STATE(22437)] = 1070824, + [SMALL_STATE(22438)] = 1070838, + [SMALL_STATE(22439)] = 1070852, + [SMALL_STATE(22440)] = 1070866, + [SMALL_STATE(22441)] = 1070880, + [SMALL_STATE(22442)] = 1070894, + [SMALL_STATE(22443)] = 1070908, + [SMALL_STATE(22444)] = 1070922, + [SMALL_STATE(22445)] = 1070936, + [SMALL_STATE(22446)] = 1070950, + [SMALL_STATE(22447)] = 1070964, + [SMALL_STATE(22448)] = 1070978, + [SMALL_STATE(22449)] = 1070992, + [SMALL_STATE(22450)] = 1071006, + [SMALL_STATE(22451)] = 1071020, + [SMALL_STATE(22452)] = 1071034, + [SMALL_STATE(22453)] = 1071048, + [SMALL_STATE(22454)] = 1071062, + [SMALL_STATE(22455)] = 1071076, + [SMALL_STATE(22456)] = 1071090, + [SMALL_STATE(22457)] = 1071104, + [SMALL_STATE(22458)] = 1071118, + [SMALL_STATE(22459)] = 1071132, + [SMALL_STATE(22460)] = 1071146, + [SMALL_STATE(22461)] = 1071160, + [SMALL_STATE(22462)] = 1071174, + [SMALL_STATE(22463)] = 1071188, + [SMALL_STATE(22464)] = 1071202, + [SMALL_STATE(22465)] = 1071216, + [SMALL_STATE(22466)] = 1071230, + [SMALL_STATE(22467)] = 1071244, + [SMALL_STATE(22468)] = 1071258, + [SMALL_STATE(22469)] = 1071272, + [SMALL_STATE(22470)] = 1071286, + [SMALL_STATE(22471)] = 1071300, + [SMALL_STATE(22472)] = 1071314, + [SMALL_STATE(22473)] = 1071328, + [SMALL_STATE(22474)] = 1071342, + [SMALL_STATE(22475)] = 1071356, + [SMALL_STATE(22476)] = 1071370, + [SMALL_STATE(22477)] = 1071384, + [SMALL_STATE(22478)] = 1071398, + [SMALL_STATE(22479)] = 1071412, + [SMALL_STATE(22480)] = 1071426, + [SMALL_STATE(22481)] = 1071440, + [SMALL_STATE(22482)] = 1071454, + [SMALL_STATE(22483)] = 1071468, + [SMALL_STATE(22484)] = 1071482, + [SMALL_STATE(22485)] = 1071496, + [SMALL_STATE(22486)] = 1071510, + [SMALL_STATE(22487)] = 1071524, + [SMALL_STATE(22488)] = 1071538, + [SMALL_STATE(22489)] = 1071552, + [SMALL_STATE(22490)] = 1071566, + [SMALL_STATE(22491)] = 1071580, + [SMALL_STATE(22492)] = 1071594, + [SMALL_STATE(22493)] = 1071608, + [SMALL_STATE(22494)] = 1071622, + [SMALL_STATE(22495)] = 1071636, + [SMALL_STATE(22496)] = 1071650, + [SMALL_STATE(22497)] = 1071664, + [SMALL_STATE(22498)] = 1071678, + [SMALL_STATE(22499)] = 1071692, + [SMALL_STATE(22500)] = 1071706, + [SMALL_STATE(22501)] = 1071720, + [SMALL_STATE(22502)] = 1071734, + [SMALL_STATE(22503)] = 1071748, + [SMALL_STATE(22504)] = 1071762, + [SMALL_STATE(22505)] = 1071776, + [SMALL_STATE(22506)] = 1071790, + [SMALL_STATE(22507)] = 1071804, + [SMALL_STATE(22508)] = 1071818, + [SMALL_STATE(22509)] = 1071832, + [SMALL_STATE(22510)] = 1071846, + [SMALL_STATE(22511)] = 1071860, + [SMALL_STATE(22512)] = 1071874, + [SMALL_STATE(22513)] = 1071888, + [SMALL_STATE(22514)] = 1071902, + [SMALL_STATE(22515)] = 1071916, + [SMALL_STATE(22516)] = 1071930, + [SMALL_STATE(22517)] = 1071944, + [SMALL_STATE(22518)] = 1071958, + [SMALL_STATE(22519)] = 1071972, + [SMALL_STATE(22520)] = 1071986, + [SMALL_STATE(22521)] = 1072000, + [SMALL_STATE(22522)] = 1072014, + [SMALL_STATE(22523)] = 1072028, + [SMALL_STATE(22524)] = 1072042, + [SMALL_STATE(22525)] = 1072056, + [SMALL_STATE(22526)] = 1072070, + [SMALL_STATE(22527)] = 1072084, + [SMALL_STATE(22528)] = 1072098, + [SMALL_STATE(22529)] = 1072112, + [SMALL_STATE(22530)] = 1072126, + [SMALL_STATE(22531)] = 1072140, + [SMALL_STATE(22532)] = 1072154, + [SMALL_STATE(22533)] = 1072168, + [SMALL_STATE(22534)] = 1072182, + [SMALL_STATE(22535)] = 1072196, + [SMALL_STATE(22536)] = 1072210, + [SMALL_STATE(22537)] = 1072224, + [SMALL_STATE(22538)] = 1072238, + [SMALL_STATE(22539)] = 1072252, + [SMALL_STATE(22540)] = 1072266, + [SMALL_STATE(22541)] = 1072280, + [SMALL_STATE(22542)] = 1072294, + [SMALL_STATE(22543)] = 1072308, + [SMALL_STATE(22544)] = 1072322, + [SMALL_STATE(22545)] = 1072336, + [SMALL_STATE(22546)] = 1072350, + [SMALL_STATE(22547)] = 1072364, + [SMALL_STATE(22548)] = 1072378, + [SMALL_STATE(22549)] = 1072392, + [SMALL_STATE(22550)] = 1072406, + [SMALL_STATE(22551)] = 1072420, + [SMALL_STATE(22552)] = 1072434, + [SMALL_STATE(22553)] = 1072448, + [SMALL_STATE(22554)] = 1072462, + [SMALL_STATE(22555)] = 1072476, + [SMALL_STATE(22556)] = 1072490, + [SMALL_STATE(22557)] = 1072504, + [SMALL_STATE(22558)] = 1072518, + [SMALL_STATE(22559)] = 1072532, + [SMALL_STATE(22560)] = 1072546, + [SMALL_STATE(22561)] = 1072560, + [SMALL_STATE(22562)] = 1072574, + [SMALL_STATE(22563)] = 1072588, + [SMALL_STATE(22564)] = 1072602, + [SMALL_STATE(22565)] = 1072616, + [SMALL_STATE(22566)] = 1072630, + [SMALL_STATE(22567)] = 1072644, + [SMALL_STATE(22568)] = 1072658, + [SMALL_STATE(22569)] = 1072672, + [SMALL_STATE(22570)] = 1072686, + [SMALL_STATE(22571)] = 1072700, + [SMALL_STATE(22572)] = 1072714, + [SMALL_STATE(22573)] = 1072728, + [SMALL_STATE(22574)] = 1072742, + [SMALL_STATE(22575)] = 1072756, + [SMALL_STATE(22576)] = 1072770, + [SMALL_STATE(22577)] = 1072784, + [SMALL_STATE(22578)] = 1072798, + [SMALL_STATE(22579)] = 1072812, + [SMALL_STATE(22580)] = 1072826, + [SMALL_STATE(22581)] = 1072840, + [SMALL_STATE(22582)] = 1072854, + [SMALL_STATE(22583)] = 1072868, + [SMALL_STATE(22584)] = 1072882, + [SMALL_STATE(22585)] = 1072896, + [SMALL_STATE(22586)] = 1072910, + [SMALL_STATE(22587)] = 1072924, + [SMALL_STATE(22588)] = 1072938, + [SMALL_STATE(22589)] = 1072952, + [SMALL_STATE(22590)] = 1072966, + [SMALL_STATE(22591)] = 1072980, + [SMALL_STATE(22592)] = 1072994, + [SMALL_STATE(22593)] = 1073008, + [SMALL_STATE(22594)] = 1073022, + [SMALL_STATE(22595)] = 1073036, + [SMALL_STATE(22596)] = 1073050, + [SMALL_STATE(22597)] = 1073064, + [SMALL_STATE(22598)] = 1073078, + [SMALL_STATE(22599)] = 1073092, + [SMALL_STATE(22600)] = 1073106, + [SMALL_STATE(22601)] = 1073120, + [SMALL_STATE(22602)] = 1073134, + [SMALL_STATE(22603)] = 1073148, + [SMALL_STATE(22604)] = 1073162, + [SMALL_STATE(22605)] = 1073176, + [SMALL_STATE(22606)] = 1073190, + [SMALL_STATE(22607)] = 1073204, + [SMALL_STATE(22608)] = 1073218, + [SMALL_STATE(22609)] = 1073232, + [SMALL_STATE(22610)] = 1073246, + [SMALL_STATE(22611)] = 1073260, + [SMALL_STATE(22612)] = 1073274, + [SMALL_STATE(22613)] = 1073288, + [SMALL_STATE(22614)] = 1073302, + [SMALL_STATE(22615)] = 1073316, + [SMALL_STATE(22616)] = 1073330, + [SMALL_STATE(22617)] = 1073344, + [SMALL_STATE(22618)] = 1073358, + [SMALL_STATE(22619)] = 1073372, + [SMALL_STATE(22620)] = 1073386, + [SMALL_STATE(22621)] = 1073400, + [SMALL_STATE(22622)] = 1073412, + [SMALL_STATE(22623)] = 1073426, + [SMALL_STATE(22624)] = 1073440, + [SMALL_STATE(22625)] = 1073454, + [SMALL_STATE(22626)] = 1073468, + [SMALL_STATE(22627)] = 1073482, + [SMALL_STATE(22628)] = 1073496, + [SMALL_STATE(22629)] = 1073510, + [SMALL_STATE(22630)] = 1073524, + [SMALL_STATE(22631)] = 1073538, + [SMALL_STATE(22632)] = 1073552, + [SMALL_STATE(22633)] = 1073566, + [SMALL_STATE(22634)] = 1073580, + [SMALL_STATE(22635)] = 1073594, + [SMALL_STATE(22636)] = 1073608, + [SMALL_STATE(22637)] = 1073622, + [SMALL_STATE(22638)] = 1073636, + [SMALL_STATE(22639)] = 1073650, + [SMALL_STATE(22640)] = 1073664, + [SMALL_STATE(22641)] = 1073678, + [SMALL_STATE(22642)] = 1073692, + [SMALL_STATE(22643)] = 1073706, + [SMALL_STATE(22644)] = 1073720, + [SMALL_STATE(22645)] = 1073734, + [SMALL_STATE(22646)] = 1073748, + [SMALL_STATE(22647)] = 1073762, + [SMALL_STATE(22648)] = 1073776, + [SMALL_STATE(22649)] = 1073790, + [SMALL_STATE(22650)] = 1073804, + [SMALL_STATE(22651)] = 1073818, + [SMALL_STATE(22652)] = 1073832, + [SMALL_STATE(22653)] = 1073846, + [SMALL_STATE(22654)] = 1073860, + [SMALL_STATE(22655)] = 1073874, + [SMALL_STATE(22656)] = 1073888, + [SMALL_STATE(22657)] = 1073902, + [SMALL_STATE(22658)] = 1073916, + [SMALL_STATE(22659)] = 1073930, + [SMALL_STATE(22660)] = 1073944, + [SMALL_STATE(22661)] = 1073958, + [SMALL_STATE(22662)] = 1073972, + [SMALL_STATE(22663)] = 1073986, + [SMALL_STATE(22664)] = 1074000, + [SMALL_STATE(22665)] = 1074014, + [SMALL_STATE(22666)] = 1074028, + [SMALL_STATE(22667)] = 1074042, + [SMALL_STATE(22668)] = 1074056, + [SMALL_STATE(22669)] = 1074070, + [SMALL_STATE(22670)] = 1074084, + [SMALL_STATE(22671)] = 1074098, + [SMALL_STATE(22672)] = 1074112, + [SMALL_STATE(22673)] = 1074126, + [SMALL_STATE(22674)] = 1074140, + [SMALL_STATE(22675)] = 1074154, + [SMALL_STATE(22676)] = 1074168, + [SMALL_STATE(22677)] = 1074182, + [SMALL_STATE(22678)] = 1074196, + [SMALL_STATE(22679)] = 1074210, + [SMALL_STATE(22680)] = 1074224, + [SMALL_STATE(22681)] = 1074238, + [SMALL_STATE(22682)] = 1074252, + [SMALL_STATE(22683)] = 1074266, + [SMALL_STATE(22684)] = 1074280, + [SMALL_STATE(22685)] = 1074294, + [SMALL_STATE(22686)] = 1074308, + [SMALL_STATE(22687)] = 1074322, + [SMALL_STATE(22688)] = 1074336, + [SMALL_STATE(22689)] = 1074350, + [SMALL_STATE(22690)] = 1074364, + [SMALL_STATE(22691)] = 1074378, + [SMALL_STATE(22692)] = 1074392, + [SMALL_STATE(22693)] = 1074406, + [SMALL_STATE(22694)] = 1074420, + [SMALL_STATE(22695)] = 1074434, + [SMALL_STATE(22696)] = 1074448, + [SMALL_STATE(22697)] = 1074462, + [SMALL_STATE(22698)] = 1074476, + [SMALL_STATE(22699)] = 1074490, + [SMALL_STATE(22700)] = 1074504, + [SMALL_STATE(22701)] = 1074518, + [SMALL_STATE(22702)] = 1074532, + [SMALL_STATE(22703)] = 1074546, + [SMALL_STATE(22704)] = 1074560, + [SMALL_STATE(22705)] = 1074574, + [SMALL_STATE(22706)] = 1074588, + [SMALL_STATE(22707)] = 1074602, + [SMALL_STATE(22708)] = 1074616, + [SMALL_STATE(22709)] = 1074630, + [SMALL_STATE(22710)] = 1074644, + [SMALL_STATE(22711)] = 1074658, + [SMALL_STATE(22712)] = 1074672, + [SMALL_STATE(22713)] = 1074686, + [SMALL_STATE(22714)] = 1074700, + [SMALL_STATE(22715)] = 1074714, + [SMALL_STATE(22716)] = 1074728, + [SMALL_STATE(22717)] = 1074742, + [SMALL_STATE(22718)] = 1074756, + [SMALL_STATE(22719)] = 1074770, + [SMALL_STATE(22720)] = 1074784, + [SMALL_STATE(22721)] = 1074798, + [SMALL_STATE(22722)] = 1074812, + [SMALL_STATE(22723)] = 1074826, + [SMALL_STATE(22724)] = 1074840, + [SMALL_STATE(22725)] = 1074854, + [SMALL_STATE(22726)] = 1074868, + [SMALL_STATE(22727)] = 1074882, + [SMALL_STATE(22728)] = 1074896, + [SMALL_STATE(22729)] = 1074910, + [SMALL_STATE(22730)] = 1074924, + [SMALL_STATE(22731)] = 1074938, + [SMALL_STATE(22732)] = 1074952, + [SMALL_STATE(22733)] = 1074966, + [SMALL_STATE(22734)] = 1074980, + [SMALL_STATE(22735)] = 1074994, + [SMALL_STATE(22736)] = 1075006, + [SMALL_STATE(22737)] = 1075020, + [SMALL_STATE(22738)] = 1075034, + [SMALL_STATE(22739)] = 1075048, + [SMALL_STATE(22740)] = 1075062, + [SMALL_STATE(22741)] = 1075076, + [SMALL_STATE(22742)] = 1075090, + [SMALL_STATE(22743)] = 1075104, + [SMALL_STATE(22744)] = 1075118, + [SMALL_STATE(22745)] = 1075132, + [SMALL_STATE(22746)] = 1075146, + [SMALL_STATE(22747)] = 1075160, + [SMALL_STATE(22748)] = 1075174, + [SMALL_STATE(22749)] = 1075188, + [SMALL_STATE(22750)] = 1075202, + [SMALL_STATE(22751)] = 1075216, + [SMALL_STATE(22752)] = 1075230, + [SMALL_STATE(22753)] = 1075244, + [SMALL_STATE(22754)] = 1075258, + [SMALL_STATE(22755)] = 1075272, + [SMALL_STATE(22756)] = 1075286, + [SMALL_STATE(22757)] = 1075300, + [SMALL_STATE(22758)] = 1075314, + [SMALL_STATE(22759)] = 1075328, + [SMALL_STATE(22760)] = 1075342, + [SMALL_STATE(22761)] = 1075356, + [SMALL_STATE(22762)] = 1075370, + [SMALL_STATE(22763)] = 1075384, + [SMALL_STATE(22764)] = 1075396, + [SMALL_STATE(22765)] = 1075410, + [SMALL_STATE(22766)] = 1075424, + [SMALL_STATE(22767)] = 1075438, + [SMALL_STATE(22768)] = 1075452, + [SMALL_STATE(22769)] = 1075466, + [SMALL_STATE(22770)] = 1075480, + [SMALL_STATE(22771)] = 1075494, + [SMALL_STATE(22772)] = 1075508, + [SMALL_STATE(22773)] = 1075522, + [SMALL_STATE(22774)] = 1075536, + [SMALL_STATE(22775)] = 1075550, + [SMALL_STATE(22776)] = 1075564, + [SMALL_STATE(22777)] = 1075578, + [SMALL_STATE(22778)] = 1075592, + [SMALL_STATE(22779)] = 1075606, + [SMALL_STATE(22780)] = 1075620, + [SMALL_STATE(22781)] = 1075634, + [SMALL_STATE(22782)] = 1075648, + [SMALL_STATE(22783)] = 1075662, + [SMALL_STATE(22784)] = 1075676, + [SMALL_STATE(22785)] = 1075690, + [SMALL_STATE(22786)] = 1075704, + [SMALL_STATE(22787)] = 1075718, + [SMALL_STATE(22788)] = 1075732, + [SMALL_STATE(22789)] = 1075746, + [SMALL_STATE(22790)] = 1075760, + [SMALL_STATE(22791)] = 1075774, + [SMALL_STATE(22792)] = 1075788, + [SMALL_STATE(22793)] = 1075802, + [SMALL_STATE(22794)] = 1075816, + [SMALL_STATE(22795)] = 1075830, + [SMALL_STATE(22796)] = 1075844, + [SMALL_STATE(22797)] = 1075858, + [SMALL_STATE(22798)] = 1075872, + [SMALL_STATE(22799)] = 1075886, + [SMALL_STATE(22800)] = 1075900, + [SMALL_STATE(22801)] = 1075914, + [SMALL_STATE(22802)] = 1075928, + [SMALL_STATE(22803)] = 1075942, + [SMALL_STATE(22804)] = 1075956, + [SMALL_STATE(22805)] = 1075970, + [SMALL_STATE(22806)] = 1075984, + [SMALL_STATE(22807)] = 1075998, + [SMALL_STATE(22808)] = 1076012, + [SMALL_STATE(22809)] = 1076026, + [SMALL_STATE(22810)] = 1076040, + [SMALL_STATE(22811)] = 1076054, + [SMALL_STATE(22812)] = 1076068, + [SMALL_STATE(22813)] = 1076082, + [SMALL_STATE(22814)] = 1076096, + [SMALL_STATE(22815)] = 1076110, + [SMALL_STATE(22816)] = 1076124, + [SMALL_STATE(22817)] = 1076138, + [SMALL_STATE(22818)] = 1076152, + [SMALL_STATE(22819)] = 1076166, + [SMALL_STATE(22820)] = 1076180, + [SMALL_STATE(22821)] = 1076194, + [SMALL_STATE(22822)] = 1076208, + [SMALL_STATE(22823)] = 1076222, + [SMALL_STATE(22824)] = 1076236, + [SMALL_STATE(22825)] = 1076250, + [SMALL_STATE(22826)] = 1076264, + [SMALL_STATE(22827)] = 1076278, + [SMALL_STATE(22828)] = 1076292, + [SMALL_STATE(22829)] = 1076306, + [SMALL_STATE(22830)] = 1076320, + [SMALL_STATE(22831)] = 1076334, + [SMALL_STATE(22832)] = 1076348, + [SMALL_STATE(22833)] = 1076362, + [SMALL_STATE(22834)] = 1076376, + [SMALL_STATE(22835)] = 1076390, + [SMALL_STATE(22836)] = 1076404, + [SMALL_STATE(22837)] = 1076418, + [SMALL_STATE(22838)] = 1076432, + [SMALL_STATE(22839)] = 1076446, + [SMALL_STATE(22840)] = 1076460, + [SMALL_STATE(22841)] = 1076474, + [SMALL_STATE(22842)] = 1076488, + [SMALL_STATE(22843)] = 1076502, + [SMALL_STATE(22844)] = 1076516, + [SMALL_STATE(22845)] = 1076530, + [SMALL_STATE(22846)] = 1076544, + [SMALL_STATE(22847)] = 1076558, + [SMALL_STATE(22848)] = 1076572, + [SMALL_STATE(22849)] = 1076586, + [SMALL_STATE(22850)] = 1076600, + [SMALL_STATE(22851)] = 1076614, + [SMALL_STATE(22852)] = 1076628, + [SMALL_STATE(22853)] = 1076642, + [SMALL_STATE(22854)] = 1076656, + [SMALL_STATE(22855)] = 1076670, + [SMALL_STATE(22856)] = 1076684, + [SMALL_STATE(22857)] = 1076698, + [SMALL_STATE(22858)] = 1076712, + [SMALL_STATE(22859)] = 1076726, + [SMALL_STATE(22860)] = 1076740, + [SMALL_STATE(22861)] = 1076754, + [SMALL_STATE(22862)] = 1076768, + [SMALL_STATE(22863)] = 1076782, + [SMALL_STATE(22864)] = 1076796, + [SMALL_STATE(22865)] = 1076810, + [SMALL_STATE(22866)] = 1076824, + [SMALL_STATE(22867)] = 1076838, + [SMALL_STATE(22868)] = 1076852, + [SMALL_STATE(22869)] = 1076866, + [SMALL_STATE(22870)] = 1076880, + [SMALL_STATE(22871)] = 1076894, + [SMALL_STATE(22872)] = 1076906, + [SMALL_STATE(22873)] = 1076920, + [SMALL_STATE(22874)] = 1076934, + [SMALL_STATE(22875)] = 1076948, + [SMALL_STATE(22876)] = 1076962, + [SMALL_STATE(22877)] = 1076976, + [SMALL_STATE(22878)] = 1076990, + [SMALL_STATE(22879)] = 1077004, + [SMALL_STATE(22880)] = 1077018, + [SMALL_STATE(22881)] = 1077032, + [SMALL_STATE(22882)] = 1077046, + [SMALL_STATE(22883)] = 1077060, + [SMALL_STATE(22884)] = 1077074, + [SMALL_STATE(22885)] = 1077088, + [SMALL_STATE(22886)] = 1077102, + [SMALL_STATE(22887)] = 1077116, + [SMALL_STATE(22888)] = 1077130, + [SMALL_STATE(22889)] = 1077144, + [SMALL_STATE(22890)] = 1077158, + [SMALL_STATE(22891)] = 1077172, + [SMALL_STATE(22892)] = 1077186, + [SMALL_STATE(22893)] = 1077200, + [SMALL_STATE(22894)] = 1077214, + [SMALL_STATE(22895)] = 1077228, + [SMALL_STATE(22896)] = 1077242, + [SMALL_STATE(22897)] = 1077256, + [SMALL_STATE(22898)] = 1077270, + [SMALL_STATE(22899)] = 1077284, + [SMALL_STATE(22900)] = 1077298, + [SMALL_STATE(22901)] = 1077312, + [SMALL_STATE(22902)] = 1077326, + [SMALL_STATE(22903)] = 1077340, + [SMALL_STATE(22904)] = 1077354, + [SMALL_STATE(22905)] = 1077368, + [SMALL_STATE(22906)] = 1077382, + [SMALL_STATE(22907)] = 1077396, + [SMALL_STATE(22908)] = 1077410, + [SMALL_STATE(22909)] = 1077424, + [SMALL_STATE(22910)] = 1077438, + [SMALL_STATE(22911)] = 1077452, + [SMALL_STATE(22912)] = 1077466, + [SMALL_STATE(22913)] = 1077480, + [SMALL_STATE(22914)] = 1077494, + [SMALL_STATE(22915)] = 1077508, + [SMALL_STATE(22916)] = 1077522, + [SMALL_STATE(22917)] = 1077536, + [SMALL_STATE(22918)] = 1077550, + [SMALL_STATE(22919)] = 1077564, + [SMALL_STATE(22920)] = 1077578, + [SMALL_STATE(22921)] = 1077592, + [SMALL_STATE(22922)] = 1077606, + [SMALL_STATE(22923)] = 1077620, + [SMALL_STATE(22924)] = 1077634, + [SMALL_STATE(22925)] = 1077648, + [SMALL_STATE(22926)] = 1077662, + [SMALL_STATE(22927)] = 1077676, + [SMALL_STATE(22928)] = 1077690, + [SMALL_STATE(22929)] = 1077704, + [SMALL_STATE(22930)] = 1077718, + [SMALL_STATE(22931)] = 1077732, + [SMALL_STATE(22932)] = 1077746, + [SMALL_STATE(22933)] = 1077760, + [SMALL_STATE(22934)] = 1077774, + [SMALL_STATE(22935)] = 1077788, + [SMALL_STATE(22936)] = 1077802, + [SMALL_STATE(22937)] = 1077816, + [SMALL_STATE(22938)] = 1077830, + [SMALL_STATE(22939)] = 1077844, + [SMALL_STATE(22940)] = 1077858, + [SMALL_STATE(22941)] = 1077872, + [SMALL_STATE(22942)] = 1077886, + [SMALL_STATE(22943)] = 1077900, + [SMALL_STATE(22944)] = 1077914, + [SMALL_STATE(22945)] = 1077928, + [SMALL_STATE(22946)] = 1077942, + [SMALL_STATE(22947)] = 1077956, + [SMALL_STATE(22948)] = 1077970, + [SMALL_STATE(22949)] = 1077984, + [SMALL_STATE(22950)] = 1077998, + [SMALL_STATE(22951)] = 1078012, + [SMALL_STATE(22952)] = 1078026, + [SMALL_STATE(22953)] = 1078040, + [SMALL_STATE(22954)] = 1078054, + [SMALL_STATE(22955)] = 1078068, + [SMALL_STATE(22956)] = 1078082, + [SMALL_STATE(22957)] = 1078096, + [SMALL_STATE(22958)] = 1078110, + [SMALL_STATE(22959)] = 1078124, + [SMALL_STATE(22960)] = 1078138, + [SMALL_STATE(22961)] = 1078152, + [SMALL_STATE(22962)] = 1078166, + [SMALL_STATE(22963)] = 1078180, + [SMALL_STATE(22964)] = 1078194, + [SMALL_STATE(22965)] = 1078208, + [SMALL_STATE(22966)] = 1078222, + [SMALL_STATE(22967)] = 1078236, + [SMALL_STATE(22968)] = 1078250, + [SMALL_STATE(22969)] = 1078264, + [SMALL_STATE(22970)] = 1078276, + [SMALL_STATE(22971)] = 1078290, + [SMALL_STATE(22972)] = 1078304, + [SMALL_STATE(22973)] = 1078318, + [SMALL_STATE(22974)] = 1078332, + [SMALL_STATE(22975)] = 1078346, + [SMALL_STATE(22976)] = 1078360, + [SMALL_STATE(22977)] = 1078374, + [SMALL_STATE(22978)] = 1078388, + [SMALL_STATE(22979)] = 1078402, + [SMALL_STATE(22980)] = 1078416, + [SMALL_STATE(22981)] = 1078430, + [SMALL_STATE(22982)] = 1078444, + [SMALL_STATE(22983)] = 1078458, + [SMALL_STATE(22984)] = 1078472, + [SMALL_STATE(22985)] = 1078486, + [SMALL_STATE(22986)] = 1078500, + [SMALL_STATE(22987)] = 1078514, + [SMALL_STATE(22988)] = 1078528, + [SMALL_STATE(22989)] = 1078542, + [SMALL_STATE(22990)] = 1078556, + [SMALL_STATE(22991)] = 1078570, + [SMALL_STATE(22992)] = 1078584, + [SMALL_STATE(22993)] = 1078598, + [SMALL_STATE(22994)] = 1078612, + [SMALL_STATE(22995)] = 1078626, + [SMALL_STATE(22996)] = 1078640, + [SMALL_STATE(22997)] = 1078654, + [SMALL_STATE(22998)] = 1078668, + [SMALL_STATE(22999)] = 1078682, + [SMALL_STATE(23000)] = 1078696, + [SMALL_STATE(23001)] = 1078710, + [SMALL_STATE(23002)] = 1078724, + [SMALL_STATE(23003)] = 1078738, + [SMALL_STATE(23004)] = 1078752, + [SMALL_STATE(23005)] = 1078766, + [SMALL_STATE(23006)] = 1078780, + [SMALL_STATE(23007)] = 1078794, + [SMALL_STATE(23008)] = 1078808, + [SMALL_STATE(23009)] = 1078822, + [SMALL_STATE(23010)] = 1078836, + [SMALL_STATE(23011)] = 1078850, + [SMALL_STATE(23012)] = 1078864, + [SMALL_STATE(23013)] = 1078878, + [SMALL_STATE(23014)] = 1078892, + [SMALL_STATE(23015)] = 1078906, + [SMALL_STATE(23016)] = 1078920, + [SMALL_STATE(23017)] = 1078934, + [SMALL_STATE(23018)] = 1078948, + [SMALL_STATE(23019)] = 1078962, + [SMALL_STATE(23020)] = 1078976, + [SMALL_STATE(23021)] = 1078990, + [SMALL_STATE(23022)] = 1079004, + [SMALL_STATE(23023)] = 1079018, + [SMALL_STATE(23024)] = 1079032, + [SMALL_STATE(23025)] = 1079046, + [SMALL_STATE(23026)] = 1079060, + [SMALL_STATE(23027)] = 1079074, + [SMALL_STATE(23028)] = 1079088, + [SMALL_STATE(23029)] = 1079102, + [SMALL_STATE(23030)] = 1079116, + [SMALL_STATE(23031)] = 1079130, + [SMALL_STATE(23032)] = 1079144, + [SMALL_STATE(23033)] = 1079158, + [SMALL_STATE(23034)] = 1079172, + [SMALL_STATE(23035)] = 1079186, + [SMALL_STATE(23036)] = 1079200, + [SMALL_STATE(23037)] = 1079214, + [SMALL_STATE(23038)] = 1079228, + [SMALL_STATE(23039)] = 1079242, + [SMALL_STATE(23040)] = 1079256, + [SMALL_STATE(23041)] = 1079270, + [SMALL_STATE(23042)] = 1079284, + [SMALL_STATE(23043)] = 1079298, + [SMALL_STATE(23044)] = 1079312, + [SMALL_STATE(23045)] = 1079326, + [SMALL_STATE(23046)] = 1079338, + [SMALL_STATE(23047)] = 1079352, + [SMALL_STATE(23048)] = 1079366, + [SMALL_STATE(23049)] = 1079380, + [SMALL_STATE(23050)] = 1079394, + [SMALL_STATE(23051)] = 1079408, + [SMALL_STATE(23052)] = 1079422, + [SMALL_STATE(23053)] = 1079436, + [SMALL_STATE(23054)] = 1079450, + [SMALL_STATE(23055)] = 1079464, + [SMALL_STATE(23056)] = 1079478, + [SMALL_STATE(23057)] = 1079492, + [SMALL_STATE(23058)] = 1079506, + [SMALL_STATE(23059)] = 1079520, + [SMALL_STATE(23060)] = 1079534, + [SMALL_STATE(23061)] = 1079548, + [SMALL_STATE(23062)] = 1079562, + [SMALL_STATE(23063)] = 1079576, + [SMALL_STATE(23064)] = 1079590, + [SMALL_STATE(23065)] = 1079604, + [SMALL_STATE(23066)] = 1079618, + [SMALL_STATE(23067)] = 1079632, + [SMALL_STATE(23068)] = 1079646, + [SMALL_STATE(23069)] = 1079660, + [SMALL_STATE(23070)] = 1079674, + [SMALL_STATE(23071)] = 1079688, + [SMALL_STATE(23072)] = 1079702, + [SMALL_STATE(23073)] = 1079716, + [SMALL_STATE(23074)] = 1079730, + [SMALL_STATE(23075)] = 1079744, + [SMALL_STATE(23076)] = 1079758, + [SMALL_STATE(23077)] = 1079772, + [SMALL_STATE(23078)] = 1079786, + [SMALL_STATE(23079)] = 1079800, + [SMALL_STATE(23080)] = 1079814, + [SMALL_STATE(23081)] = 1079828, + [SMALL_STATE(23082)] = 1079842, + [SMALL_STATE(23083)] = 1079856, + [SMALL_STATE(23084)] = 1079870, + [SMALL_STATE(23085)] = 1079884, + [SMALL_STATE(23086)] = 1079898, + [SMALL_STATE(23087)] = 1079912, + [SMALL_STATE(23088)] = 1079926, + [SMALL_STATE(23089)] = 1079940, + [SMALL_STATE(23090)] = 1079954, + [SMALL_STATE(23091)] = 1079968, + [SMALL_STATE(23092)] = 1079982, + [SMALL_STATE(23093)] = 1079996, + [SMALL_STATE(23094)] = 1080010, + [SMALL_STATE(23095)] = 1080024, + [SMALL_STATE(23096)] = 1080038, + [SMALL_STATE(23097)] = 1080052, + [SMALL_STATE(23098)] = 1080066, + [SMALL_STATE(23099)] = 1080080, + [SMALL_STATE(23100)] = 1080094, + [SMALL_STATE(23101)] = 1080108, + [SMALL_STATE(23102)] = 1080122, + [SMALL_STATE(23103)] = 1080136, + [SMALL_STATE(23104)] = 1080150, + [SMALL_STATE(23105)] = 1080164, + [SMALL_STATE(23106)] = 1080178, + [SMALL_STATE(23107)] = 1080192, + [SMALL_STATE(23108)] = 1080206, + [SMALL_STATE(23109)] = 1080220, + [SMALL_STATE(23110)] = 1080234, + [SMALL_STATE(23111)] = 1080248, + [SMALL_STATE(23112)] = 1080262, + [SMALL_STATE(23113)] = 1080276, + [SMALL_STATE(23114)] = 1080290, + [SMALL_STATE(23115)] = 1080304, + [SMALL_STATE(23116)] = 1080318, + [SMALL_STATE(23117)] = 1080332, + [SMALL_STATE(23118)] = 1080346, + [SMALL_STATE(23119)] = 1080360, + [SMALL_STATE(23120)] = 1080374, + [SMALL_STATE(23121)] = 1080388, + [SMALL_STATE(23122)] = 1080402, + [SMALL_STATE(23123)] = 1080416, + [SMALL_STATE(23124)] = 1080430, + [SMALL_STATE(23125)] = 1080444, + [SMALL_STATE(23126)] = 1080458, + [SMALL_STATE(23127)] = 1080472, + [SMALL_STATE(23128)] = 1080486, + [SMALL_STATE(23129)] = 1080500, + [SMALL_STATE(23130)] = 1080514, + [SMALL_STATE(23131)] = 1080528, + [SMALL_STATE(23132)] = 1080542, + [SMALL_STATE(23133)] = 1080556, + [SMALL_STATE(23134)] = 1080570, + [SMALL_STATE(23135)] = 1080584, + [SMALL_STATE(23136)] = 1080598, + [SMALL_STATE(23137)] = 1080612, + [SMALL_STATE(23138)] = 1080626, + [SMALL_STATE(23139)] = 1080640, + [SMALL_STATE(23140)] = 1080654, + [SMALL_STATE(23141)] = 1080668, + [SMALL_STATE(23142)] = 1080682, + [SMALL_STATE(23143)] = 1080696, + [SMALL_STATE(23144)] = 1080710, + [SMALL_STATE(23145)] = 1080724, + [SMALL_STATE(23146)] = 1080738, + [SMALL_STATE(23147)] = 1080752, + [SMALL_STATE(23148)] = 1080766, + [SMALL_STATE(23149)] = 1080780, + [SMALL_STATE(23150)] = 1080794, + [SMALL_STATE(23151)] = 1080808, + [SMALL_STATE(23152)] = 1080822, + [SMALL_STATE(23153)] = 1080836, + [SMALL_STATE(23154)] = 1080850, + [SMALL_STATE(23155)] = 1080864, + [SMALL_STATE(23156)] = 1080878, + [SMALL_STATE(23157)] = 1080892, + [SMALL_STATE(23158)] = 1080906, + [SMALL_STATE(23159)] = 1080920, + [SMALL_STATE(23160)] = 1080934, + [SMALL_STATE(23161)] = 1080948, + [SMALL_STATE(23162)] = 1080962, + [SMALL_STATE(23163)] = 1080976, + [SMALL_STATE(23164)] = 1080990, + [SMALL_STATE(23165)] = 1081004, + [SMALL_STATE(23166)] = 1081018, + [SMALL_STATE(23167)] = 1081032, + [SMALL_STATE(23168)] = 1081046, + [SMALL_STATE(23169)] = 1081060, + [SMALL_STATE(23170)] = 1081074, + [SMALL_STATE(23171)] = 1081088, + [SMALL_STATE(23172)] = 1081102, + [SMALL_STATE(23173)] = 1081116, + [SMALL_STATE(23174)] = 1081130, + [SMALL_STATE(23175)] = 1081144, + [SMALL_STATE(23176)] = 1081158, + [SMALL_STATE(23177)] = 1081172, + [SMALL_STATE(23178)] = 1081186, + [SMALL_STATE(23179)] = 1081200, + [SMALL_STATE(23180)] = 1081214, + [SMALL_STATE(23181)] = 1081228, + [SMALL_STATE(23182)] = 1081242, + [SMALL_STATE(23183)] = 1081256, + [SMALL_STATE(23184)] = 1081270, + [SMALL_STATE(23185)] = 1081284, + [SMALL_STATE(23186)] = 1081298, + [SMALL_STATE(23187)] = 1081312, + [SMALL_STATE(23188)] = 1081326, + [SMALL_STATE(23189)] = 1081340, + [SMALL_STATE(23190)] = 1081354, + [SMALL_STATE(23191)] = 1081368, + [SMALL_STATE(23192)] = 1081382, + [SMALL_STATE(23193)] = 1081396, + [SMALL_STATE(23194)] = 1081410, + [SMALL_STATE(23195)] = 1081424, + [SMALL_STATE(23196)] = 1081438, + [SMALL_STATE(23197)] = 1081452, + [SMALL_STATE(23198)] = 1081466, + [SMALL_STATE(23199)] = 1081480, + [SMALL_STATE(23200)] = 1081494, + [SMALL_STATE(23201)] = 1081508, + [SMALL_STATE(23202)] = 1081522, + [SMALL_STATE(23203)] = 1081536, + [SMALL_STATE(23204)] = 1081550, + [SMALL_STATE(23205)] = 1081564, + [SMALL_STATE(23206)] = 1081578, + [SMALL_STATE(23207)] = 1081592, + [SMALL_STATE(23208)] = 1081606, + [SMALL_STATE(23209)] = 1081620, + [SMALL_STATE(23210)] = 1081634, + [SMALL_STATE(23211)] = 1081648, + [SMALL_STATE(23212)] = 1081662, + [SMALL_STATE(23213)] = 1081676, + [SMALL_STATE(23214)] = 1081690, + [SMALL_STATE(23215)] = 1081704, + [SMALL_STATE(23216)] = 1081718, + [SMALL_STATE(23217)] = 1081732, + [SMALL_STATE(23218)] = 1081746, + [SMALL_STATE(23219)] = 1081760, + [SMALL_STATE(23220)] = 1081774, + [SMALL_STATE(23221)] = 1081788, + [SMALL_STATE(23222)] = 1081802, + [SMALL_STATE(23223)] = 1081816, + [SMALL_STATE(23224)] = 1081830, + [SMALL_STATE(23225)] = 1081844, + [SMALL_STATE(23226)] = 1081858, + [SMALL_STATE(23227)] = 1081872, + [SMALL_STATE(23228)] = 1081886, + [SMALL_STATE(23229)] = 1081900, + [SMALL_STATE(23230)] = 1081914, + [SMALL_STATE(23231)] = 1081928, + [SMALL_STATE(23232)] = 1081942, + [SMALL_STATE(23233)] = 1081956, + [SMALL_STATE(23234)] = 1081970, + [SMALL_STATE(23235)] = 1081984, + [SMALL_STATE(23236)] = 1081998, + [SMALL_STATE(23237)] = 1082012, + [SMALL_STATE(23238)] = 1082026, + [SMALL_STATE(23239)] = 1082040, + [SMALL_STATE(23240)] = 1082054, + [SMALL_STATE(23241)] = 1082068, + [SMALL_STATE(23242)] = 1082082, + [SMALL_STATE(23243)] = 1082096, + [SMALL_STATE(23244)] = 1082110, + [SMALL_STATE(23245)] = 1082124, + [SMALL_STATE(23246)] = 1082138, + [SMALL_STATE(23247)] = 1082152, + [SMALL_STATE(23248)] = 1082166, + [SMALL_STATE(23249)] = 1082180, + [SMALL_STATE(23250)] = 1082194, + [SMALL_STATE(23251)] = 1082208, + [SMALL_STATE(23252)] = 1082222, + [SMALL_STATE(23253)] = 1082236, + [SMALL_STATE(23254)] = 1082250, + [SMALL_STATE(23255)] = 1082264, + [SMALL_STATE(23256)] = 1082278, + [SMALL_STATE(23257)] = 1082292, + [SMALL_STATE(23258)] = 1082306, + [SMALL_STATE(23259)] = 1082320, + [SMALL_STATE(23260)] = 1082334, + [SMALL_STATE(23261)] = 1082348, + [SMALL_STATE(23262)] = 1082362, + [SMALL_STATE(23263)] = 1082376, + [SMALL_STATE(23264)] = 1082390, + [SMALL_STATE(23265)] = 1082404, + [SMALL_STATE(23266)] = 1082418, + [SMALL_STATE(23267)] = 1082432, + [SMALL_STATE(23268)] = 1082446, + [SMALL_STATE(23269)] = 1082460, + [SMALL_STATE(23270)] = 1082474, + [SMALL_STATE(23271)] = 1082488, + [SMALL_STATE(23272)] = 1082502, + [SMALL_STATE(23273)] = 1082516, + [SMALL_STATE(23274)] = 1082530, + [SMALL_STATE(23275)] = 1082544, + [SMALL_STATE(23276)] = 1082558, + [SMALL_STATE(23277)] = 1082572, + [SMALL_STATE(23278)] = 1082586, + [SMALL_STATE(23279)] = 1082600, + [SMALL_STATE(23280)] = 1082614, + [SMALL_STATE(23281)] = 1082628, + [SMALL_STATE(23282)] = 1082642, + [SMALL_STATE(23283)] = 1082656, + [SMALL_STATE(23284)] = 1082670, + [SMALL_STATE(23285)] = 1082684, + [SMALL_STATE(23286)] = 1082698, + [SMALL_STATE(23287)] = 1082712, + [SMALL_STATE(23288)] = 1082726, + [SMALL_STATE(23289)] = 1082740, + [SMALL_STATE(23290)] = 1082754, + [SMALL_STATE(23291)] = 1082768, + [SMALL_STATE(23292)] = 1082782, + [SMALL_STATE(23293)] = 1082796, + [SMALL_STATE(23294)] = 1082810, + [SMALL_STATE(23295)] = 1082824, + [SMALL_STATE(23296)] = 1082838, + [SMALL_STATE(23297)] = 1082852, + [SMALL_STATE(23298)] = 1082866, + [SMALL_STATE(23299)] = 1082880, + [SMALL_STATE(23300)] = 1082894, + [SMALL_STATE(23301)] = 1082908, + [SMALL_STATE(23302)] = 1082918, + [SMALL_STATE(23303)] = 1082932, + [SMALL_STATE(23304)] = 1082946, + [SMALL_STATE(23305)] = 1082960, + [SMALL_STATE(23306)] = 1082974, + [SMALL_STATE(23307)] = 1082988, + [SMALL_STATE(23308)] = 1083002, + [SMALL_STATE(23309)] = 1083016, + [SMALL_STATE(23310)] = 1083030, + [SMALL_STATE(23311)] = 1083044, + [SMALL_STATE(23312)] = 1083058, + [SMALL_STATE(23313)] = 1083072, + [SMALL_STATE(23314)] = 1083086, + [SMALL_STATE(23315)] = 1083100, + [SMALL_STATE(23316)] = 1083114, + [SMALL_STATE(23317)] = 1083128, + [SMALL_STATE(23318)] = 1083142, + [SMALL_STATE(23319)] = 1083156, + [SMALL_STATE(23320)] = 1083170, + [SMALL_STATE(23321)] = 1083184, + [SMALL_STATE(23322)] = 1083198, + [SMALL_STATE(23323)] = 1083212, + [SMALL_STATE(23324)] = 1083226, + [SMALL_STATE(23325)] = 1083240, + [SMALL_STATE(23326)] = 1083254, + [SMALL_STATE(23327)] = 1083268, + [SMALL_STATE(23328)] = 1083282, + [SMALL_STATE(23329)] = 1083296, + [SMALL_STATE(23330)] = 1083310, + [SMALL_STATE(23331)] = 1083324, + [SMALL_STATE(23332)] = 1083338, + [SMALL_STATE(23333)] = 1083352, + [SMALL_STATE(23334)] = 1083366, + [SMALL_STATE(23335)] = 1083380, + [SMALL_STATE(23336)] = 1083394, + [SMALL_STATE(23337)] = 1083408, + [SMALL_STATE(23338)] = 1083422, + [SMALL_STATE(23339)] = 1083436, + [SMALL_STATE(23340)] = 1083450, + [SMALL_STATE(23341)] = 1083464, + [SMALL_STATE(23342)] = 1083478, + [SMALL_STATE(23343)] = 1083492, + [SMALL_STATE(23344)] = 1083506, + [SMALL_STATE(23345)] = 1083520, + [SMALL_STATE(23346)] = 1083534, + [SMALL_STATE(23347)] = 1083548, + [SMALL_STATE(23348)] = 1083562, + [SMALL_STATE(23349)] = 1083576, + [SMALL_STATE(23350)] = 1083590, + [SMALL_STATE(23351)] = 1083604, + [SMALL_STATE(23352)] = 1083618, + [SMALL_STATE(23353)] = 1083632, + [SMALL_STATE(23354)] = 1083646, + [SMALL_STATE(23355)] = 1083660, + [SMALL_STATE(23356)] = 1083674, + [SMALL_STATE(23357)] = 1083688, + [SMALL_STATE(23358)] = 1083702, + [SMALL_STATE(23359)] = 1083716, + [SMALL_STATE(23360)] = 1083730, + [SMALL_STATE(23361)] = 1083744, + [SMALL_STATE(23362)] = 1083758, + [SMALL_STATE(23363)] = 1083772, + [SMALL_STATE(23364)] = 1083786, + [SMALL_STATE(23365)] = 1083800, + [SMALL_STATE(23366)] = 1083814, + [SMALL_STATE(23367)] = 1083828, + [SMALL_STATE(23368)] = 1083842, + [SMALL_STATE(23369)] = 1083856, + [SMALL_STATE(23370)] = 1083870, + [SMALL_STATE(23371)] = 1083884, + [SMALL_STATE(23372)] = 1083898, + [SMALL_STATE(23373)] = 1083912, + [SMALL_STATE(23374)] = 1083926, + [SMALL_STATE(23375)] = 1083940, + [SMALL_STATE(23376)] = 1083954, + [SMALL_STATE(23377)] = 1083968, + [SMALL_STATE(23378)] = 1083982, + [SMALL_STATE(23379)] = 1083996, + [SMALL_STATE(23380)] = 1084010, + [SMALL_STATE(23381)] = 1084024, + [SMALL_STATE(23382)] = 1084038, + [SMALL_STATE(23383)] = 1084052, + [SMALL_STATE(23384)] = 1084066, + [SMALL_STATE(23385)] = 1084080, + [SMALL_STATE(23386)] = 1084094, + [SMALL_STATE(23387)] = 1084108, + [SMALL_STATE(23388)] = 1084122, + [SMALL_STATE(23389)] = 1084136, + [SMALL_STATE(23390)] = 1084150, + [SMALL_STATE(23391)] = 1084164, + [SMALL_STATE(23392)] = 1084178, + [SMALL_STATE(23393)] = 1084192, + [SMALL_STATE(23394)] = 1084206, + [SMALL_STATE(23395)] = 1084220, + [SMALL_STATE(23396)] = 1084234, + [SMALL_STATE(23397)] = 1084248, + [SMALL_STATE(23398)] = 1084262, + [SMALL_STATE(23399)] = 1084276, + [SMALL_STATE(23400)] = 1084290, + [SMALL_STATE(23401)] = 1084304, + [SMALL_STATE(23402)] = 1084318, + [SMALL_STATE(23403)] = 1084332, + [SMALL_STATE(23404)] = 1084346, + [SMALL_STATE(23405)] = 1084360, + [SMALL_STATE(23406)] = 1084374, + [SMALL_STATE(23407)] = 1084388, + [SMALL_STATE(23408)] = 1084402, + [SMALL_STATE(23409)] = 1084416, + [SMALL_STATE(23410)] = 1084430, + [SMALL_STATE(23411)] = 1084444, + [SMALL_STATE(23412)] = 1084458, + [SMALL_STATE(23413)] = 1084472, + [SMALL_STATE(23414)] = 1084486, + [SMALL_STATE(23415)] = 1084500, + [SMALL_STATE(23416)] = 1084514, + [SMALL_STATE(23417)] = 1084528, + [SMALL_STATE(23418)] = 1084542, + [SMALL_STATE(23419)] = 1084556, + [SMALL_STATE(23420)] = 1084570, + [SMALL_STATE(23421)] = 1084584, + [SMALL_STATE(23422)] = 1084598, + [SMALL_STATE(23423)] = 1084612, + [SMALL_STATE(23424)] = 1084626, + [SMALL_STATE(23425)] = 1084640, + [SMALL_STATE(23426)] = 1084654, + [SMALL_STATE(23427)] = 1084668, + [SMALL_STATE(23428)] = 1084682, + [SMALL_STATE(23429)] = 1084696, + [SMALL_STATE(23430)] = 1084710, + [SMALL_STATE(23431)] = 1084724, + [SMALL_STATE(23432)] = 1084738, + [SMALL_STATE(23433)] = 1084752, + [SMALL_STATE(23434)] = 1084766, + [SMALL_STATE(23435)] = 1084780, + [SMALL_STATE(23436)] = 1084794, + [SMALL_STATE(23437)] = 1084808, + [SMALL_STATE(23438)] = 1084822, + [SMALL_STATE(23439)] = 1084836, + [SMALL_STATE(23440)] = 1084850, + [SMALL_STATE(23441)] = 1084864, + [SMALL_STATE(23442)] = 1084878, + [SMALL_STATE(23443)] = 1084892, + [SMALL_STATE(23444)] = 1084906, + [SMALL_STATE(23445)] = 1084920, + [SMALL_STATE(23446)] = 1084934, + [SMALL_STATE(23447)] = 1084948, + [SMALL_STATE(23448)] = 1084962, + [SMALL_STATE(23449)] = 1084976, + [SMALL_STATE(23450)] = 1084990, + [SMALL_STATE(23451)] = 1085004, + [SMALL_STATE(23452)] = 1085018, + [SMALL_STATE(23453)] = 1085032, + [SMALL_STATE(23454)] = 1085046, + [SMALL_STATE(23455)] = 1085060, + [SMALL_STATE(23456)] = 1085074, + [SMALL_STATE(23457)] = 1085088, + [SMALL_STATE(23458)] = 1085102, + [SMALL_STATE(23459)] = 1085116, + [SMALL_STATE(23460)] = 1085130, + [SMALL_STATE(23461)] = 1085144, + [SMALL_STATE(23462)] = 1085158, + [SMALL_STATE(23463)] = 1085172, + [SMALL_STATE(23464)] = 1085186, + [SMALL_STATE(23465)] = 1085200, + [SMALL_STATE(23466)] = 1085214, + [SMALL_STATE(23467)] = 1085228, + [SMALL_STATE(23468)] = 1085242, + [SMALL_STATE(23469)] = 1085256, + [SMALL_STATE(23470)] = 1085270, + [SMALL_STATE(23471)] = 1085284, + [SMALL_STATE(23472)] = 1085298, + [SMALL_STATE(23473)] = 1085312, + [SMALL_STATE(23474)] = 1085326, + [SMALL_STATE(23475)] = 1085340, + [SMALL_STATE(23476)] = 1085354, + [SMALL_STATE(23477)] = 1085368, + [SMALL_STATE(23478)] = 1085382, + [SMALL_STATE(23479)] = 1085396, + [SMALL_STATE(23480)] = 1085410, + [SMALL_STATE(23481)] = 1085424, + [SMALL_STATE(23482)] = 1085438, + [SMALL_STATE(23483)] = 1085452, + [SMALL_STATE(23484)] = 1085466, + [SMALL_STATE(23485)] = 1085480, + [SMALL_STATE(23486)] = 1085494, + [SMALL_STATE(23487)] = 1085508, + [SMALL_STATE(23488)] = 1085522, + [SMALL_STATE(23489)] = 1085536, + [SMALL_STATE(23490)] = 1085550, + [SMALL_STATE(23491)] = 1085564, + [SMALL_STATE(23492)] = 1085578, + [SMALL_STATE(23493)] = 1085592, + [SMALL_STATE(23494)] = 1085606, + [SMALL_STATE(23495)] = 1085620, + [SMALL_STATE(23496)] = 1085634, + [SMALL_STATE(23497)] = 1085648, + [SMALL_STATE(23498)] = 1085662, + [SMALL_STATE(23499)] = 1085676, + [SMALL_STATE(23500)] = 1085690, + [SMALL_STATE(23501)] = 1085704, + [SMALL_STATE(23502)] = 1085718, + [SMALL_STATE(23503)] = 1085732, + [SMALL_STATE(23504)] = 1085746, + [SMALL_STATE(23505)] = 1085760, + [SMALL_STATE(23506)] = 1085774, + [SMALL_STATE(23507)] = 1085788, + [SMALL_STATE(23508)] = 1085802, + [SMALL_STATE(23509)] = 1085816, + [SMALL_STATE(23510)] = 1085830, + [SMALL_STATE(23511)] = 1085844, + [SMALL_STATE(23512)] = 1085858, + [SMALL_STATE(23513)] = 1085872, + [SMALL_STATE(23514)] = 1085886, + [SMALL_STATE(23515)] = 1085900, + [SMALL_STATE(23516)] = 1085914, + [SMALL_STATE(23517)] = 1085928, + [SMALL_STATE(23518)] = 1085942, + [SMALL_STATE(23519)] = 1085956, + [SMALL_STATE(23520)] = 1085970, + [SMALL_STATE(23521)] = 1085984, + [SMALL_STATE(23522)] = 1085998, + [SMALL_STATE(23523)] = 1086012, + [SMALL_STATE(23524)] = 1086026, + [SMALL_STATE(23525)] = 1086040, + [SMALL_STATE(23526)] = 1086054, + [SMALL_STATE(23527)] = 1086068, + [SMALL_STATE(23528)] = 1086082, + [SMALL_STATE(23529)] = 1086096, + [SMALL_STATE(23530)] = 1086110, + [SMALL_STATE(23531)] = 1086124, + [SMALL_STATE(23532)] = 1086138, + [SMALL_STATE(23533)] = 1086152, + [SMALL_STATE(23534)] = 1086166, + [SMALL_STATE(23535)] = 1086180, + [SMALL_STATE(23536)] = 1086194, + [SMALL_STATE(23537)] = 1086208, + [SMALL_STATE(23538)] = 1086222, + [SMALL_STATE(23539)] = 1086236, + [SMALL_STATE(23540)] = 1086250, + [SMALL_STATE(23541)] = 1086264, + [SMALL_STATE(23542)] = 1086278, + [SMALL_STATE(23543)] = 1086292, + [SMALL_STATE(23544)] = 1086306, + [SMALL_STATE(23545)] = 1086320, + [SMALL_STATE(23546)] = 1086334, + [SMALL_STATE(23547)] = 1086348, + [SMALL_STATE(23548)] = 1086362, + [SMALL_STATE(23549)] = 1086374, + [SMALL_STATE(23550)] = 1086388, + [SMALL_STATE(23551)] = 1086400, + [SMALL_STATE(23552)] = 1086414, + [SMALL_STATE(23553)] = 1086428, + [SMALL_STATE(23554)] = 1086442, + [SMALL_STATE(23555)] = 1086456, + [SMALL_STATE(23556)] = 1086470, + [SMALL_STATE(23557)] = 1086484, + [SMALL_STATE(23558)] = 1086498, + [SMALL_STATE(23559)] = 1086512, + [SMALL_STATE(23560)] = 1086526, + [SMALL_STATE(23561)] = 1086538, + [SMALL_STATE(23562)] = 1086552, + [SMALL_STATE(23563)] = 1086566, + [SMALL_STATE(23564)] = 1086580, + [SMALL_STATE(23565)] = 1086594, + [SMALL_STATE(23566)] = 1086608, + [SMALL_STATE(23567)] = 1086622, + [SMALL_STATE(23568)] = 1086636, + [SMALL_STATE(23569)] = 1086650, + [SMALL_STATE(23570)] = 1086664, + [SMALL_STATE(23571)] = 1086678, + [SMALL_STATE(23572)] = 1086692, + [SMALL_STATE(23573)] = 1086706, + [SMALL_STATE(23574)] = 1086718, + [SMALL_STATE(23575)] = 1086732, + [SMALL_STATE(23576)] = 1086746, + [SMALL_STATE(23577)] = 1086760, + [SMALL_STATE(23578)] = 1086774, + [SMALL_STATE(23579)] = 1086788, + [SMALL_STATE(23580)] = 1086802, + [SMALL_STATE(23581)] = 1086816, + [SMALL_STATE(23582)] = 1086830, + [SMALL_STATE(23583)] = 1086844, + [SMALL_STATE(23584)] = 1086858, + [SMALL_STATE(23585)] = 1086872, + [SMALL_STATE(23586)] = 1086886, + [SMALL_STATE(23587)] = 1086900, + [SMALL_STATE(23588)] = 1086914, + [SMALL_STATE(23589)] = 1086928, + [SMALL_STATE(23590)] = 1086942, + [SMALL_STATE(23591)] = 1086956, + [SMALL_STATE(23592)] = 1086970, + [SMALL_STATE(23593)] = 1086984, + [SMALL_STATE(23594)] = 1086998, + [SMALL_STATE(23595)] = 1087012, + [SMALL_STATE(23596)] = 1087026, + [SMALL_STATE(23597)] = 1087040, + [SMALL_STATE(23598)] = 1087054, + [SMALL_STATE(23599)] = 1087068, + [SMALL_STATE(23600)] = 1087082, + [SMALL_STATE(23601)] = 1087096, + [SMALL_STATE(23602)] = 1087110, + [SMALL_STATE(23603)] = 1087124, + [SMALL_STATE(23604)] = 1087138, + [SMALL_STATE(23605)] = 1087152, + [SMALL_STATE(23606)] = 1087166, + [SMALL_STATE(23607)] = 1087180, + [SMALL_STATE(23608)] = 1087194, + [SMALL_STATE(23609)] = 1087208, + [SMALL_STATE(23610)] = 1087222, + [SMALL_STATE(23611)] = 1087236, + [SMALL_STATE(23612)] = 1087250, + [SMALL_STATE(23613)] = 1087264, + [SMALL_STATE(23614)] = 1087278, + [SMALL_STATE(23615)] = 1087292, + [SMALL_STATE(23616)] = 1087306, + [SMALL_STATE(23617)] = 1087320, + [SMALL_STATE(23618)] = 1087334, + [SMALL_STATE(23619)] = 1087348, + [SMALL_STATE(23620)] = 1087362, + [SMALL_STATE(23621)] = 1087376, + [SMALL_STATE(23622)] = 1087390, + [SMALL_STATE(23623)] = 1087404, + [SMALL_STATE(23624)] = 1087418, + [SMALL_STATE(23625)] = 1087432, + [SMALL_STATE(23626)] = 1087446, + [SMALL_STATE(23627)] = 1087460, + [SMALL_STATE(23628)] = 1087474, + [SMALL_STATE(23629)] = 1087488, + [SMALL_STATE(23630)] = 1087502, + [SMALL_STATE(23631)] = 1087516, + [SMALL_STATE(23632)] = 1087530, + [SMALL_STATE(23633)] = 1087544, + [SMALL_STATE(23634)] = 1087558, + [SMALL_STATE(23635)] = 1087572, + [SMALL_STATE(23636)] = 1087586, + [SMALL_STATE(23637)] = 1087600, + [SMALL_STATE(23638)] = 1087614, + [SMALL_STATE(23639)] = 1087628, + [SMALL_STATE(23640)] = 1087642, + [SMALL_STATE(23641)] = 1087656, + [SMALL_STATE(23642)] = 1087670, + [SMALL_STATE(23643)] = 1087684, + [SMALL_STATE(23644)] = 1087698, + [SMALL_STATE(23645)] = 1087712, + [SMALL_STATE(23646)] = 1087726, + [SMALL_STATE(23647)] = 1087740, + [SMALL_STATE(23648)] = 1087754, + [SMALL_STATE(23649)] = 1087768, + [SMALL_STATE(23650)] = 1087782, + [SMALL_STATE(23651)] = 1087796, + [SMALL_STATE(23652)] = 1087810, + [SMALL_STATE(23653)] = 1087824, + [SMALL_STATE(23654)] = 1087838, + [SMALL_STATE(23655)] = 1087852, + [SMALL_STATE(23656)] = 1087862, + [SMALL_STATE(23657)] = 1087876, + [SMALL_STATE(23658)] = 1087890, + [SMALL_STATE(23659)] = 1087904, + [SMALL_STATE(23660)] = 1087918, + [SMALL_STATE(23661)] = 1087932, + [SMALL_STATE(23662)] = 1087946, + [SMALL_STATE(23663)] = 1087960, + [SMALL_STATE(23664)] = 1087974, + [SMALL_STATE(23665)] = 1087988, + [SMALL_STATE(23666)] = 1088002, + [SMALL_STATE(23667)] = 1088016, + [SMALL_STATE(23668)] = 1088030, + [SMALL_STATE(23669)] = 1088042, + [SMALL_STATE(23670)] = 1088056, + [SMALL_STATE(23671)] = 1088070, + [SMALL_STATE(23672)] = 1088084, + [SMALL_STATE(23673)] = 1088098, + [SMALL_STATE(23674)] = 1088112, + [SMALL_STATE(23675)] = 1088126, + [SMALL_STATE(23676)] = 1088140, + [SMALL_STATE(23677)] = 1088154, + [SMALL_STATE(23678)] = 1088168, + [SMALL_STATE(23679)] = 1088182, + [SMALL_STATE(23680)] = 1088194, + [SMALL_STATE(23681)] = 1088208, + [SMALL_STATE(23682)] = 1088220, + [SMALL_STATE(23683)] = 1088234, + [SMALL_STATE(23684)] = 1088248, + [SMALL_STATE(23685)] = 1088262, + [SMALL_STATE(23686)] = 1088276, + [SMALL_STATE(23687)] = 1088290, + [SMALL_STATE(23688)] = 1088304, + [SMALL_STATE(23689)] = 1088318, + [SMALL_STATE(23690)] = 1088332, + [SMALL_STATE(23691)] = 1088346, + [SMALL_STATE(23692)] = 1088360, + [SMALL_STATE(23693)] = 1088374, + [SMALL_STATE(23694)] = 1088388, + [SMALL_STATE(23695)] = 1088402, + [SMALL_STATE(23696)] = 1088416, + [SMALL_STATE(23697)] = 1088430, + [SMALL_STATE(23698)] = 1088444, + [SMALL_STATE(23699)] = 1088458, + [SMALL_STATE(23700)] = 1088472, + [SMALL_STATE(23701)] = 1088486, + [SMALL_STATE(23702)] = 1088500, + [SMALL_STATE(23703)] = 1088514, + [SMALL_STATE(23704)] = 1088528, + [SMALL_STATE(23705)] = 1088542, + [SMALL_STATE(23706)] = 1088556, + [SMALL_STATE(23707)] = 1088570, + [SMALL_STATE(23708)] = 1088584, + [SMALL_STATE(23709)] = 1088598, + [SMALL_STATE(23710)] = 1088612, + [SMALL_STATE(23711)] = 1088626, + [SMALL_STATE(23712)] = 1088640, + [SMALL_STATE(23713)] = 1088654, + [SMALL_STATE(23714)] = 1088668, + [SMALL_STATE(23715)] = 1088682, + [SMALL_STATE(23716)] = 1088696, + [SMALL_STATE(23717)] = 1088710, + [SMALL_STATE(23718)] = 1088720, + [SMALL_STATE(23719)] = 1088734, + [SMALL_STATE(23720)] = 1088748, + [SMALL_STATE(23721)] = 1088762, + [SMALL_STATE(23722)] = 1088776, + [SMALL_STATE(23723)] = 1088790, + [SMALL_STATE(23724)] = 1088804, + [SMALL_STATE(23725)] = 1088818, + [SMALL_STATE(23726)] = 1088832, + [SMALL_STATE(23727)] = 1088846, + [SMALL_STATE(23728)] = 1088860, + [SMALL_STATE(23729)] = 1088874, + [SMALL_STATE(23730)] = 1088888, + [SMALL_STATE(23731)] = 1088902, + [SMALL_STATE(23732)] = 1088916, + [SMALL_STATE(23733)] = 1088930, + [SMALL_STATE(23734)] = 1088944, + [SMALL_STATE(23735)] = 1088958, + [SMALL_STATE(23736)] = 1088972, + [SMALL_STATE(23737)] = 1088986, + [SMALL_STATE(23738)] = 1088998, + [SMALL_STATE(23739)] = 1089012, + [SMALL_STATE(23740)] = 1089026, + [SMALL_STATE(23741)] = 1089040, + [SMALL_STATE(23742)] = 1089054, + [SMALL_STATE(23743)] = 1089066, + [SMALL_STATE(23744)] = 1089080, + [SMALL_STATE(23745)] = 1089092, + [SMALL_STATE(23746)] = 1089106, + [SMALL_STATE(23747)] = 1089120, + [SMALL_STATE(23748)] = 1089134, + [SMALL_STATE(23749)] = 1089148, + [SMALL_STATE(23750)] = 1089162, + [SMALL_STATE(23751)] = 1089176, + [SMALL_STATE(23752)] = 1089190, + [SMALL_STATE(23753)] = 1089204, + [SMALL_STATE(23754)] = 1089218, + [SMALL_STATE(23755)] = 1089232, + [SMALL_STATE(23756)] = 1089246, + [SMALL_STATE(23757)] = 1089260, + [SMALL_STATE(23758)] = 1089274, + [SMALL_STATE(23759)] = 1089288, + [SMALL_STATE(23760)] = 1089302, + [SMALL_STATE(23761)] = 1089316, + [SMALL_STATE(23762)] = 1089330, + [SMALL_STATE(23763)] = 1089344, + [SMALL_STATE(23764)] = 1089358, + [SMALL_STATE(23765)] = 1089372, + [SMALL_STATE(23766)] = 1089386, + [SMALL_STATE(23767)] = 1089400, + [SMALL_STATE(23768)] = 1089414, + [SMALL_STATE(23769)] = 1089428, + [SMALL_STATE(23770)] = 1089442, + [SMALL_STATE(23771)] = 1089456, + [SMALL_STATE(23772)] = 1089470, + [SMALL_STATE(23773)] = 1089484, + [SMALL_STATE(23774)] = 1089498, + [SMALL_STATE(23775)] = 1089512, + [SMALL_STATE(23776)] = 1089526, + [SMALL_STATE(23777)] = 1089540, + [SMALL_STATE(23778)] = 1089552, + [SMALL_STATE(23779)] = 1089566, + [SMALL_STATE(23780)] = 1089580, + [SMALL_STATE(23781)] = 1089594, + [SMALL_STATE(23782)] = 1089608, + [SMALL_STATE(23783)] = 1089622, + [SMALL_STATE(23784)] = 1089636, + [SMALL_STATE(23785)] = 1089650, + [SMALL_STATE(23786)] = 1089664, + [SMALL_STATE(23787)] = 1089678, + [SMALL_STATE(23788)] = 1089692, + [SMALL_STATE(23789)] = 1089706, + [SMALL_STATE(23790)] = 1089720, + [SMALL_STATE(23791)] = 1089734, + [SMALL_STATE(23792)] = 1089748, + [SMALL_STATE(23793)] = 1089762, + [SMALL_STATE(23794)] = 1089776, + [SMALL_STATE(23795)] = 1089790, + [SMALL_STATE(23796)] = 1089804, + [SMALL_STATE(23797)] = 1089818, + [SMALL_STATE(23798)] = 1089832, + [SMALL_STATE(23799)] = 1089844, + [SMALL_STATE(23800)] = 1089856, + [SMALL_STATE(23801)] = 1089870, + [SMALL_STATE(23802)] = 1089884, + [SMALL_STATE(23803)] = 1089898, + [SMALL_STATE(23804)] = 1089912, + [SMALL_STATE(23805)] = 1089926, + [SMALL_STATE(23806)] = 1089940, + [SMALL_STATE(23807)] = 1089954, + [SMALL_STATE(23808)] = 1089968, + [SMALL_STATE(23809)] = 1089982, + [SMALL_STATE(23810)] = 1089996, + [SMALL_STATE(23811)] = 1090010, + [SMALL_STATE(23812)] = 1090024, + [SMALL_STATE(23813)] = 1090038, + [SMALL_STATE(23814)] = 1090052, + [SMALL_STATE(23815)] = 1090066, + [SMALL_STATE(23816)] = 1090080, + [SMALL_STATE(23817)] = 1090094, + [SMALL_STATE(23818)] = 1090108, + [SMALL_STATE(23819)] = 1090122, + [SMALL_STATE(23820)] = 1090136, + [SMALL_STATE(23821)] = 1090150, + [SMALL_STATE(23822)] = 1090162, + [SMALL_STATE(23823)] = 1090176, + [SMALL_STATE(23824)] = 1090190, + [SMALL_STATE(23825)] = 1090204, + [SMALL_STATE(23826)] = 1090218, + [SMALL_STATE(23827)] = 1090232, + [SMALL_STATE(23828)] = 1090246, + [SMALL_STATE(23829)] = 1090260, + [SMALL_STATE(23830)] = 1090274, + [SMALL_STATE(23831)] = 1090288, + [SMALL_STATE(23832)] = 1090302, + [SMALL_STATE(23833)] = 1090316, + [SMALL_STATE(23834)] = 1090330, + [SMALL_STATE(23835)] = 1090344, + [SMALL_STATE(23836)] = 1090358, + [SMALL_STATE(23837)] = 1090372, + [SMALL_STATE(23838)] = 1090386, + [SMALL_STATE(23839)] = 1090400, + [SMALL_STATE(23840)] = 1090414, + [SMALL_STATE(23841)] = 1090428, + [SMALL_STATE(23842)] = 1090442, + [SMALL_STATE(23843)] = 1090456, + [SMALL_STATE(23844)] = 1090470, + [SMALL_STATE(23845)] = 1090484, + [SMALL_STATE(23846)] = 1090498, + [SMALL_STATE(23847)] = 1090512, + [SMALL_STATE(23848)] = 1090526, + [SMALL_STATE(23849)] = 1090540, + [SMALL_STATE(23850)] = 1090554, + [SMALL_STATE(23851)] = 1090568, + [SMALL_STATE(23852)] = 1090582, + [SMALL_STATE(23853)] = 1090596, + [SMALL_STATE(23854)] = 1090610, + [SMALL_STATE(23855)] = 1090624, + [SMALL_STATE(23856)] = 1090638, + [SMALL_STATE(23857)] = 1090652, + [SMALL_STATE(23858)] = 1090664, + [SMALL_STATE(23859)] = 1090676, + [SMALL_STATE(23860)] = 1090690, + [SMALL_STATE(23861)] = 1090704, + [SMALL_STATE(23862)] = 1090718, + [SMALL_STATE(23863)] = 1090732, + [SMALL_STATE(23864)] = 1090746, + [SMALL_STATE(23865)] = 1090760, + [SMALL_STATE(23866)] = 1090774, + [SMALL_STATE(23867)] = 1090788, + [SMALL_STATE(23868)] = 1090802, + [SMALL_STATE(23869)] = 1090816, + [SMALL_STATE(23870)] = 1090830, + [SMALL_STATE(23871)] = 1090844, + [SMALL_STATE(23872)] = 1090858, + [SMALL_STATE(23873)] = 1090872, + [SMALL_STATE(23874)] = 1090886, + [SMALL_STATE(23875)] = 1090900, + [SMALL_STATE(23876)] = 1090914, + [SMALL_STATE(23877)] = 1090928, + [SMALL_STATE(23878)] = 1090942, + [SMALL_STATE(23879)] = 1090956, + [SMALL_STATE(23880)] = 1090970, + [SMALL_STATE(23881)] = 1090984, + [SMALL_STATE(23882)] = 1090998, + [SMALL_STATE(23883)] = 1091012, + [SMALL_STATE(23884)] = 1091026, + [SMALL_STATE(23885)] = 1091040, + [SMALL_STATE(23886)] = 1091054, + [SMALL_STATE(23887)] = 1091068, + [SMALL_STATE(23888)] = 1091082, + [SMALL_STATE(23889)] = 1091096, + [SMALL_STATE(23890)] = 1091110, + [SMALL_STATE(23891)] = 1091124, + [SMALL_STATE(23892)] = 1091138, + [SMALL_STATE(23893)] = 1091152, + [SMALL_STATE(23894)] = 1091164, + [SMALL_STATE(23895)] = 1091178, + [SMALL_STATE(23896)] = 1091192, + [SMALL_STATE(23897)] = 1091206, + [SMALL_STATE(23898)] = 1091220, + [SMALL_STATE(23899)] = 1091234, + [SMALL_STATE(23900)] = 1091248, + [SMALL_STATE(23901)] = 1091262, + [SMALL_STATE(23902)] = 1091276, + [SMALL_STATE(23903)] = 1091290, + [SMALL_STATE(23904)] = 1091304, + [SMALL_STATE(23905)] = 1091318, + [SMALL_STATE(23906)] = 1091332, + [SMALL_STATE(23907)] = 1091346, + [SMALL_STATE(23908)] = 1091360, + [SMALL_STATE(23909)] = 1091374, + [SMALL_STATE(23910)] = 1091388, + [SMALL_STATE(23911)] = 1091402, + [SMALL_STATE(23912)] = 1091416, + [SMALL_STATE(23913)] = 1091430, + [SMALL_STATE(23914)] = 1091444, + [SMALL_STATE(23915)] = 1091458, + [SMALL_STATE(23916)] = 1091472, + [SMALL_STATE(23917)] = 1091486, + [SMALL_STATE(23918)] = 1091500, + [SMALL_STATE(23919)] = 1091514, + [SMALL_STATE(23920)] = 1091528, + [SMALL_STATE(23921)] = 1091540, + [SMALL_STATE(23922)] = 1091554, + [SMALL_STATE(23923)] = 1091568, + [SMALL_STATE(23924)] = 1091582, + [SMALL_STATE(23925)] = 1091596, + [SMALL_STATE(23926)] = 1091610, + [SMALL_STATE(23927)] = 1091624, + [SMALL_STATE(23928)] = 1091638, + [SMALL_STATE(23929)] = 1091652, + [SMALL_STATE(23930)] = 1091666, + [SMALL_STATE(23931)] = 1091680, + [SMALL_STATE(23932)] = 1091694, + [SMALL_STATE(23933)] = 1091708, + [SMALL_STATE(23934)] = 1091722, + [SMALL_STATE(23935)] = 1091736, + [SMALL_STATE(23936)] = 1091750, + [SMALL_STATE(23937)] = 1091764, + [SMALL_STATE(23938)] = 1091778, + [SMALL_STATE(23939)] = 1091792, + [SMALL_STATE(23940)] = 1091806, + [SMALL_STATE(23941)] = 1091820, + [SMALL_STATE(23942)] = 1091834, + [SMALL_STATE(23943)] = 1091848, + [SMALL_STATE(23944)] = 1091862, + [SMALL_STATE(23945)] = 1091876, + [SMALL_STATE(23946)] = 1091890, + [SMALL_STATE(23947)] = 1091904, + [SMALL_STATE(23948)] = 1091916, + [SMALL_STATE(23949)] = 1091930, + [SMALL_STATE(23950)] = 1091944, + [SMALL_STATE(23951)] = 1091958, + [SMALL_STATE(23952)] = 1091972, + [SMALL_STATE(23953)] = 1091986, + [SMALL_STATE(23954)] = 1092000, + [SMALL_STATE(23955)] = 1092014, + [SMALL_STATE(23956)] = 1092028, + [SMALL_STATE(23957)] = 1092042, + [SMALL_STATE(23958)] = 1092056, + [SMALL_STATE(23959)] = 1092070, + [SMALL_STATE(23960)] = 1092084, + [SMALL_STATE(23961)] = 1092098, + [SMALL_STATE(23962)] = 1092112, + [SMALL_STATE(23963)] = 1092122, + [SMALL_STATE(23964)] = 1092136, + [SMALL_STATE(23965)] = 1092150, + [SMALL_STATE(23966)] = 1092164, + [SMALL_STATE(23967)] = 1092176, + [SMALL_STATE(23968)] = 1092190, + [SMALL_STATE(23969)] = 1092204, + [SMALL_STATE(23970)] = 1092218, + [SMALL_STATE(23971)] = 1092232, + [SMALL_STATE(23972)] = 1092246, + [SMALL_STATE(23973)] = 1092260, + [SMALL_STATE(23974)] = 1092274, + [SMALL_STATE(23975)] = 1092288, + [SMALL_STATE(23976)] = 1092302, + [SMALL_STATE(23977)] = 1092316, + [SMALL_STATE(23978)] = 1092330, + [SMALL_STATE(23979)] = 1092344, + [SMALL_STATE(23980)] = 1092358, + [SMALL_STATE(23981)] = 1092372, + [SMALL_STATE(23982)] = 1092386, + [SMALL_STATE(23983)] = 1092400, + [SMALL_STATE(23984)] = 1092414, + [SMALL_STATE(23985)] = 1092428, + [SMALL_STATE(23986)] = 1092442, + [SMALL_STATE(23987)] = 1092456, + [SMALL_STATE(23988)] = 1092470, + [SMALL_STATE(23989)] = 1092484, + [SMALL_STATE(23990)] = 1092498, + [SMALL_STATE(23991)] = 1092512, + [SMALL_STATE(23992)] = 1092526, + [SMALL_STATE(23993)] = 1092540, + [SMALL_STATE(23994)] = 1092554, + [SMALL_STATE(23995)] = 1092568, + [SMALL_STATE(23996)] = 1092582, + [SMALL_STATE(23997)] = 1092596, + [SMALL_STATE(23998)] = 1092610, + [SMALL_STATE(23999)] = 1092624, + [SMALL_STATE(24000)] = 1092638, + [SMALL_STATE(24001)] = 1092652, + [SMALL_STATE(24002)] = 1092666, + [SMALL_STATE(24003)] = 1092680, + [SMALL_STATE(24004)] = 1092694, + [SMALL_STATE(24005)] = 1092708, + [SMALL_STATE(24006)] = 1092722, + [SMALL_STATE(24007)] = 1092736, + [SMALL_STATE(24008)] = 1092750, + [SMALL_STATE(24009)] = 1092764, + [SMALL_STATE(24010)] = 1092778, + [SMALL_STATE(24011)] = 1092792, + [SMALL_STATE(24012)] = 1092806, + [SMALL_STATE(24013)] = 1092820, + [SMALL_STATE(24014)] = 1092834, + [SMALL_STATE(24015)] = 1092848, + [SMALL_STATE(24016)] = 1092862, + [SMALL_STATE(24017)] = 1092876, + [SMALL_STATE(24018)] = 1092890, + [SMALL_STATE(24019)] = 1092904, + [SMALL_STATE(24020)] = 1092918, + [SMALL_STATE(24021)] = 1092932, + [SMALL_STATE(24022)] = 1092946, + [SMALL_STATE(24023)] = 1092960, + [SMALL_STATE(24024)] = 1092974, + [SMALL_STATE(24025)] = 1092988, + [SMALL_STATE(24026)] = 1093002, + [SMALL_STATE(24027)] = 1093016, + [SMALL_STATE(24028)] = 1093030, + [SMALL_STATE(24029)] = 1093044, + [SMALL_STATE(24030)] = 1093058, + [SMALL_STATE(24031)] = 1093072, + [SMALL_STATE(24032)] = 1093086, + [SMALL_STATE(24033)] = 1093100, + [SMALL_STATE(24034)] = 1093114, + [SMALL_STATE(24035)] = 1093128, + [SMALL_STATE(24036)] = 1093142, + [SMALL_STATE(24037)] = 1093156, + [SMALL_STATE(24038)] = 1093170, + [SMALL_STATE(24039)] = 1093184, + [SMALL_STATE(24040)] = 1093198, + [SMALL_STATE(24041)] = 1093212, + [SMALL_STATE(24042)] = 1093226, + [SMALL_STATE(24043)] = 1093240, + [SMALL_STATE(24044)] = 1093254, + [SMALL_STATE(24045)] = 1093268, + [SMALL_STATE(24046)] = 1093282, + [SMALL_STATE(24047)] = 1093296, + [SMALL_STATE(24048)] = 1093310, + [SMALL_STATE(24049)] = 1093324, + [SMALL_STATE(24050)] = 1093338, + [SMALL_STATE(24051)] = 1093352, + [SMALL_STATE(24052)] = 1093366, + [SMALL_STATE(24053)] = 1093380, + [SMALL_STATE(24054)] = 1093394, + [SMALL_STATE(24055)] = 1093408, + [SMALL_STATE(24056)] = 1093422, + [SMALL_STATE(24057)] = 1093436, + [SMALL_STATE(24058)] = 1093450, + [SMALL_STATE(24059)] = 1093464, + [SMALL_STATE(24060)] = 1093478, + [SMALL_STATE(24061)] = 1093492, + [SMALL_STATE(24062)] = 1093506, + [SMALL_STATE(24063)] = 1093520, + [SMALL_STATE(24064)] = 1093534, + [SMALL_STATE(24065)] = 1093548, + [SMALL_STATE(24066)] = 1093562, + [SMALL_STATE(24067)] = 1093576, + [SMALL_STATE(24068)] = 1093590, + [SMALL_STATE(24069)] = 1093604, + [SMALL_STATE(24070)] = 1093618, + [SMALL_STATE(24071)] = 1093632, + [SMALL_STATE(24072)] = 1093646, + [SMALL_STATE(24073)] = 1093660, + [SMALL_STATE(24074)] = 1093674, + [SMALL_STATE(24075)] = 1093688, + [SMALL_STATE(24076)] = 1093702, + [SMALL_STATE(24077)] = 1093716, + [SMALL_STATE(24078)] = 1093730, + [SMALL_STATE(24079)] = 1093744, + [SMALL_STATE(24080)] = 1093758, + [SMALL_STATE(24081)] = 1093772, + [SMALL_STATE(24082)] = 1093786, + [SMALL_STATE(24083)] = 1093800, + [SMALL_STATE(24084)] = 1093814, + [SMALL_STATE(24085)] = 1093828, + [SMALL_STATE(24086)] = 1093842, + [SMALL_STATE(24087)] = 1093856, + [SMALL_STATE(24088)] = 1093870, + [SMALL_STATE(24089)] = 1093884, + [SMALL_STATE(24090)] = 1093898, + [SMALL_STATE(24091)] = 1093912, + [SMALL_STATE(24092)] = 1093926, + [SMALL_STATE(24093)] = 1093940, + [SMALL_STATE(24094)] = 1093954, + [SMALL_STATE(24095)] = 1093968, + [SMALL_STATE(24096)] = 1093982, + [SMALL_STATE(24097)] = 1093996, + [SMALL_STATE(24098)] = 1094010, + [SMALL_STATE(24099)] = 1094024, + [SMALL_STATE(24100)] = 1094038, + [SMALL_STATE(24101)] = 1094052, + [SMALL_STATE(24102)] = 1094066, + [SMALL_STATE(24103)] = 1094080, + [SMALL_STATE(24104)] = 1094094, + [SMALL_STATE(24105)] = 1094108, + [SMALL_STATE(24106)] = 1094122, + [SMALL_STATE(24107)] = 1094136, + [SMALL_STATE(24108)] = 1094150, + [SMALL_STATE(24109)] = 1094164, + [SMALL_STATE(24110)] = 1094178, + [SMALL_STATE(24111)] = 1094192, + [SMALL_STATE(24112)] = 1094206, + [SMALL_STATE(24113)] = 1094220, + [SMALL_STATE(24114)] = 1094234, + [SMALL_STATE(24115)] = 1094248, + [SMALL_STATE(24116)] = 1094262, + [SMALL_STATE(24117)] = 1094276, + [SMALL_STATE(24118)] = 1094290, + [SMALL_STATE(24119)] = 1094304, + [SMALL_STATE(24120)] = 1094314, + [SMALL_STATE(24121)] = 1094328, + [SMALL_STATE(24122)] = 1094342, + [SMALL_STATE(24123)] = 1094356, + [SMALL_STATE(24124)] = 1094370, + [SMALL_STATE(24125)] = 1094384, + [SMALL_STATE(24126)] = 1094398, + [SMALL_STATE(24127)] = 1094412, + [SMALL_STATE(24128)] = 1094426, + [SMALL_STATE(24129)] = 1094440, + [SMALL_STATE(24130)] = 1094454, + [SMALL_STATE(24131)] = 1094468, + [SMALL_STATE(24132)] = 1094482, + [SMALL_STATE(24133)] = 1094496, + [SMALL_STATE(24134)] = 1094510, + [SMALL_STATE(24135)] = 1094524, + [SMALL_STATE(24136)] = 1094538, + [SMALL_STATE(24137)] = 1094552, + [SMALL_STATE(24138)] = 1094566, + [SMALL_STATE(24139)] = 1094580, + [SMALL_STATE(24140)] = 1094594, + [SMALL_STATE(24141)] = 1094608, + [SMALL_STATE(24142)] = 1094622, + [SMALL_STATE(24143)] = 1094636, + [SMALL_STATE(24144)] = 1094650, + [SMALL_STATE(24145)] = 1094664, + [SMALL_STATE(24146)] = 1094678, + [SMALL_STATE(24147)] = 1094692, + [SMALL_STATE(24148)] = 1094706, + [SMALL_STATE(24149)] = 1094720, + [SMALL_STATE(24150)] = 1094734, + [SMALL_STATE(24151)] = 1094748, + [SMALL_STATE(24152)] = 1094762, + [SMALL_STATE(24153)] = 1094776, + [SMALL_STATE(24154)] = 1094790, + [SMALL_STATE(24155)] = 1094804, + [SMALL_STATE(24156)] = 1094818, + [SMALL_STATE(24157)] = 1094832, + [SMALL_STATE(24158)] = 1094846, + [SMALL_STATE(24159)] = 1094860, + [SMALL_STATE(24160)] = 1094874, + [SMALL_STATE(24161)] = 1094888, + [SMALL_STATE(24162)] = 1094902, + [SMALL_STATE(24163)] = 1094916, + [SMALL_STATE(24164)] = 1094930, + [SMALL_STATE(24165)] = 1094944, + [SMALL_STATE(24166)] = 1094958, + [SMALL_STATE(24167)] = 1094972, + [SMALL_STATE(24168)] = 1094986, + [SMALL_STATE(24169)] = 1095000, + [SMALL_STATE(24170)] = 1095014, + [SMALL_STATE(24171)] = 1095028, + [SMALL_STATE(24172)] = 1095042, + [SMALL_STATE(24173)] = 1095056, + [SMALL_STATE(24174)] = 1095070, + [SMALL_STATE(24175)] = 1095084, + [SMALL_STATE(24176)] = 1095098, + [SMALL_STATE(24177)] = 1095112, + [SMALL_STATE(24178)] = 1095126, + [SMALL_STATE(24179)] = 1095140, + [SMALL_STATE(24180)] = 1095154, + [SMALL_STATE(24181)] = 1095168, + [SMALL_STATE(24182)] = 1095182, + [SMALL_STATE(24183)] = 1095196, + [SMALL_STATE(24184)] = 1095210, + [SMALL_STATE(24185)] = 1095224, + [SMALL_STATE(24186)] = 1095238, + [SMALL_STATE(24187)] = 1095252, + [SMALL_STATE(24188)] = 1095266, + [SMALL_STATE(24189)] = 1095280, + [SMALL_STATE(24190)] = 1095294, + [SMALL_STATE(24191)] = 1095308, + [SMALL_STATE(24192)] = 1095322, + [SMALL_STATE(24193)] = 1095336, + [SMALL_STATE(24194)] = 1095350, + [SMALL_STATE(24195)] = 1095364, + [SMALL_STATE(24196)] = 1095378, + [SMALL_STATE(24197)] = 1095392, + [SMALL_STATE(24198)] = 1095406, + [SMALL_STATE(24199)] = 1095420, + [SMALL_STATE(24200)] = 1095434, + [SMALL_STATE(24201)] = 1095448, + [SMALL_STATE(24202)] = 1095462, + [SMALL_STATE(24203)] = 1095476, + [SMALL_STATE(24204)] = 1095490, + [SMALL_STATE(24205)] = 1095504, + [SMALL_STATE(24206)] = 1095518, + [SMALL_STATE(24207)] = 1095532, + [SMALL_STATE(24208)] = 1095546, + [SMALL_STATE(24209)] = 1095560, + [SMALL_STATE(24210)] = 1095574, + [SMALL_STATE(24211)] = 1095588, + [SMALL_STATE(24212)] = 1095602, + [SMALL_STATE(24213)] = 1095616, + [SMALL_STATE(24214)] = 1095630, + [SMALL_STATE(24215)] = 1095644, + [SMALL_STATE(24216)] = 1095658, + [SMALL_STATE(24217)] = 1095672, + [SMALL_STATE(24218)] = 1095686, + [SMALL_STATE(24219)] = 1095700, + [SMALL_STATE(24220)] = 1095714, + [SMALL_STATE(24221)] = 1095728, + [SMALL_STATE(24222)] = 1095742, + [SMALL_STATE(24223)] = 1095756, + [SMALL_STATE(24224)] = 1095770, + [SMALL_STATE(24225)] = 1095784, + [SMALL_STATE(24226)] = 1095798, + [SMALL_STATE(24227)] = 1095812, + [SMALL_STATE(24228)] = 1095826, + [SMALL_STATE(24229)] = 1095838, + [SMALL_STATE(24230)] = 1095852, + [SMALL_STATE(24231)] = 1095866, + [SMALL_STATE(24232)] = 1095880, + [SMALL_STATE(24233)] = 1095894, + [SMALL_STATE(24234)] = 1095908, + [SMALL_STATE(24235)] = 1095922, + [SMALL_STATE(24236)] = 1095936, + [SMALL_STATE(24237)] = 1095950, + [SMALL_STATE(24238)] = 1095964, + [SMALL_STATE(24239)] = 1095978, + [SMALL_STATE(24240)] = 1095992, + [SMALL_STATE(24241)] = 1096006, + [SMALL_STATE(24242)] = 1096020, + [SMALL_STATE(24243)] = 1096034, + [SMALL_STATE(24244)] = 1096048, + [SMALL_STATE(24245)] = 1096062, + [SMALL_STATE(24246)] = 1096076, + [SMALL_STATE(24247)] = 1096090, + [SMALL_STATE(24248)] = 1096104, + [SMALL_STATE(24249)] = 1096118, + [SMALL_STATE(24250)] = 1096132, + [SMALL_STATE(24251)] = 1096146, + [SMALL_STATE(24252)] = 1096160, + [SMALL_STATE(24253)] = 1096174, + [SMALL_STATE(24254)] = 1096188, + [SMALL_STATE(24255)] = 1096202, + [SMALL_STATE(24256)] = 1096216, + [SMALL_STATE(24257)] = 1096230, + [SMALL_STATE(24258)] = 1096244, + [SMALL_STATE(24259)] = 1096258, + [SMALL_STATE(24260)] = 1096272, + [SMALL_STATE(24261)] = 1096286, + [SMALL_STATE(24262)] = 1096300, + [SMALL_STATE(24263)] = 1096314, + [SMALL_STATE(24264)] = 1096328, + [SMALL_STATE(24265)] = 1096342, + [SMALL_STATE(24266)] = 1096356, + [SMALL_STATE(24267)] = 1096370, + [SMALL_STATE(24268)] = 1096384, + [SMALL_STATE(24269)] = 1096398, + [SMALL_STATE(24270)] = 1096412, + [SMALL_STATE(24271)] = 1096426, + [SMALL_STATE(24272)] = 1096440, + [SMALL_STATE(24273)] = 1096454, + [SMALL_STATE(24274)] = 1096468, + [SMALL_STATE(24275)] = 1096482, + [SMALL_STATE(24276)] = 1096496, + [SMALL_STATE(24277)] = 1096510, + [SMALL_STATE(24278)] = 1096524, + [SMALL_STATE(24279)] = 1096538, + [SMALL_STATE(24280)] = 1096552, + [SMALL_STATE(24281)] = 1096566, + [SMALL_STATE(24282)] = 1096580, + [SMALL_STATE(24283)] = 1096594, + [SMALL_STATE(24284)] = 1096608, + [SMALL_STATE(24285)] = 1096622, + [SMALL_STATE(24286)] = 1096636, + [SMALL_STATE(24287)] = 1096650, + [SMALL_STATE(24288)] = 1096664, + [SMALL_STATE(24289)] = 1096678, + [SMALL_STATE(24290)] = 1096692, + [SMALL_STATE(24291)] = 1096706, + [SMALL_STATE(24292)] = 1096720, + [SMALL_STATE(24293)] = 1096734, + [SMALL_STATE(24294)] = 1096748, + [SMALL_STATE(24295)] = 1096762, + [SMALL_STATE(24296)] = 1096776, + [SMALL_STATE(24297)] = 1096790, + [SMALL_STATE(24298)] = 1096804, + [SMALL_STATE(24299)] = 1096818, + [SMALL_STATE(24300)] = 1096832, + [SMALL_STATE(24301)] = 1096846, + [SMALL_STATE(24302)] = 1096860, + [SMALL_STATE(24303)] = 1096874, + [SMALL_STATE(24304)] = 1096888, + [SMALL_STATE(24305)] = 1096902, + [SMALL_STATE(24306)] = 1096916, + [SMALL_STATE(24307)] = 1096930, + [SMALL_STATE(24308)] = 1096944, + [SMALL_STATE(24309)] = 1096958, + [SMALL_STATE(24310)] = 1096972, + [SMALL_STATE(24311)] = 1096986, + [SMALL_STATE(24312)] = 1097000, + [SMALL_STATE(24313)] = 1097014, + [SMALL_STATE(24314)] = 1097028, + [SMALL_STATE(24315)] = 1097042, + [SMALL_STATE(24316)] = 1097056, + [SMALL_STATE(24317)] = 1097070, + [SMALL_STATE(24318)] = 1097084, + [SMALL_STATE(24319)] = 1097098, + [SMALL_STATE(24320)] = 1097112, + [SMALL_STATE(24321)] = 1097126, + [SMALL_STATE(24322)] = 1097140, + [SMALL_STATE(24323)] = 1097154, + [SMALL_STATE(24324)] = 1097168, + [SMALL_STATE(24325)] = 1097182, + [SMALL_STATE(24326)] = 1097196, + [SMALL_STATE(24327)] = 1097210, + [SMALL_STATE(24328)] = 1097224, + [SMALL_STATE(24329)] = 1097238, + [SMALL_STATE(24330)] = 1097252, + [SMALL_STATE(24331)] = 1097262, + [SMALL_STATE(24332)] = 1097276, + [SMALL_STATE(24333)] = 1097290, + [SMALL_STATE(24334)] = 1097304, + [SMALL_STATE(24335)] = 1097318, + [SMALL_STATE(24336)] = 1097332, + [SMALL_STATE(24337)] = 1097346, + [SMALL_STATE(24338)] = 1097360, + [SMALL_STATE(24339)] = 1097374, + [SMALL_STATE(24340)] = 1097388, + [SMALL_STATE(24341)] = 1097402, + [SMALL_STATE(24342)] = 1097416, + [SMALL_STATE(24343)] = 1097430, + [SMALL_STATE(24344)] = 1097444, + [SMALL_STATE(24345)] = 1097458, + [SMALL_STATE(24346)] = 1097472, + [SMALL_STATE(24347)] = 1097486, + [SMALL_STATE(24348)] = 1097500, + [SMALL_STATE(24349)] = 1097514, + [SMALL_STATE(24350)] = 1097528, + [SMALL_STATE(24351)] = 1097542, + [SMALL_STATE(24352)] = 1097556, + [SMALL_STATE(24353)] = 1097570, + [SMALL_STATE(24354)] = 1097584, + [SMALL_STATE(24355)] = 1097598, + [SMALL_STATE(24356)] = 1097612, + [SMALL_STATE(24357)] = 1097626, + [SMALL_STATE(24358)] = 1097640, + [SMALL_STATE(24359)] = 1097654, + [SMALL_STATE(24360)] = 1097668, + [SMALL_STATE(24361)] = 1097682, + [SMALL_STATE(24362)] = 1097696, + [SMALL_STATE(24363)] = 1097710, + [SMALL_STATE(24364)] = 1097724, + [SMALL_STATE(24365)] = 1097738, + [SMALL_STATE(24366)] = 1097752, + [SMALL_STATE(24367)] = 1097766, + [SMALL_STATE(24368)] = 1097780, + [SMALL_STATE(24369)] = 1097794, + [SMALL_STATE(24370)] = 1097808, + [SMALL_STATE(24371)] = 1097822, + [SMALL_STATE(24372)] = 1097836, + [SMALL_STATE(24373)] = 1097850, + [SMALL_STATE(24374)] = 1097864, + [SMALL_STATE(24375)] = 1097878, + [SMALL_STATE(24376)] = 1097892, + [SMALL_STATE(24377)] = 1097906, + [SMALL_STATE(24378)] = 1097920, + [SMALL_STATE(24379)] = 1097934, + [SMALL_STATE(24380)] = 1097948, + [SMALL_STATE(24381)] = 1097960, + [SMALL_STATE(24382)] = 1097974, + [SMALL_STATE(24383)] = 1097988, + [SMALL_STATE(24384)] = 1098002, + [SMALL_STATE(24385)] = 1098016, + [SMALL_STATE(24386)] = 1098030, + [SMALL_STATE(24387)] = 1098044, + [SMALL_STATE(24388)] = 1098058, + [SMALL_STATE(24389)] = 1098072, + [SMALL_STATE(24390)] = 1098086, + [SMALL_STATE(24391)] = 1098100, + [SMALL_STATE(24392)] = 1098114, + [SMALL_STATE(24393)] = 1098128, + [SMALL_STATE(24394)] = 1098142, + [SMALL_STATE(24395)] = 1098156, + [SMALL_STATE(24396)] = 1098170, + [SMALL_STATE(24397)] = 1098184, + [SMALL_STATE(24398)] = 1098198, + [SMALL_STATE(24399)] = 1098212, + [SMALL_STATE(24400)] = 1098226, + [SMALL_STATE(24401)] = 1098240, + [SMALL_STATE(24402)] = 1098254, + [SMALL_STATE(24403)] = 1098268, + [SMALL_STATE(24404)] = 1098282, + [SMALL_STATE(24405)] = 1098296, + [SMALL_STATE(24406)] = 1098310, + [SMALL_STATE(24407)] = 1098324, + [SMALL_STATE(24408)] = 1098338, + [SMALL_STATE(24409)] = 1098352, + [SMALL_STATE(24410)] = 1098366, + [SMALL_STATE(24411)] = 1098380, + [SMALL_STATE(24412)] = 1098394, + [SMALL_STATE(24413)] = 1098408, + [SMALL_STATE(24414)] = 1098422, + [SMALL_STATE(24415)] = 1098436, + [SMALL_STATE(24416)] = 1098450, + [SMALL_STATE(24417)] = 1098464, + [SMALL_STATE(24418)] = 1098476, + [SMALL_STATE(24419)] = 1098490, + [SMALL_STATE(24420)] = 1098504, + [SMALL_STATE(24421)] = 1098518, + [SMALL_STATE(24422)] = 1098532, + [SMALL_STATE(24423)] = 1098546, + [SMALL_STATE(24424)] = 1098560, + [SMALL_STATE(24425)] = 1098574, + [SMALL_STATE(24426)] = 1098588, + [SMALL_STATE(24427)] = 1098602, + [SMALL_STATE(24428)] = 1098616, + [SMALL_STATE(24429)] = 1098630, + [SMALL_STATE(24430)] = 1098644, + [SMALL_STATE(24431)] = 1098658, + [SMALL_STATE(24432)] = 1098672, + [SMALL_STATE(24433)] = 1098686, + [SMALL_STATE(24434)] = 1098700, + [SMALL_STATE(24435)] = 1098714, + [SMALL_STATE(24436)] = 1098728, + [SMALL_STATE(24437)] = 1098742, + [SMALL_STATE(24438)] = 1098756, + [SMALL_STATE(24439)] = 1098770, + [SMALL_STATE(24440)] = 1098784, + [SMALL_STATE(24441)] = 1098798, + [SMALL_STATE(24442)] = 1098812, + [SMALL_STATE(24443)] = 1098826, + [SMALL_STATE(24444)] = 1098840, + [SMALL_STATE(24445)] = 1098852, + [SMALL_STATE(24446)] = 1098866, + [SMALL_STATE(24447)] = 1098880, + [SMALL_STATE(24448)] = 1098894, + [SMALL_STATE(24449)] = 1098908, + [SMALL_STATE(24450)] = 1098922, + [SMALL_STATE(24451)] = 1098936, + [SMALL_STATE(24452)] = 1098950, + [SMALL_STATE(24453)] = 1098964, + [SMALL_STATE(24454)] = 1098978, + [SMALL_STATE(24455)] = 1098992, + [SMALL_STATE(24456)] = 1099006, + [SMALL_STATE(24457)] = 1099020, + [SMALL_STATE(24458)] = 1099034, + [SMALL_STATE(24459)] = 1099048, + [SMALL_STATE(24460)] = 1099062, + [SMALL_STATE(24461)] = 1099076, + [SMALL_STATE(24462)] = 1099090, + [SMALL_STATE(24463)] = 1099104, + [SMALL_STATE(24464)] = 1099118, + [SMALL_STATE(24465)] = 1099132, + [SMALL_STATE(24466)] = 1099146, + [SMALL_STATE(24467)] = 1099160, + [SMALL_STATE(24468)] = 1099174, + [SMALL_STATE(24469)] = 1099188, + [SMALL_STATE(24470)] = 1099202, + [SMALL_STATE(24471)] = 1099216, + [SMALL_STATE(24472)] = 1099228, + [SMALL_STATE(24473)] = 1099242, + [SMALL_STATE(24474)] = 1099256, + [SMALL_STATE(24475)] = 1099270, + [SMALL_STATE(24476)] = 1099282, + [SMALL_STATE(24477)] = 1099296, + [SMALL_STATE(24478)] = 1099310, + [SMALL_STATE(24479)] = 1099324, + [SMALL_STATE(24480)] = 1099338, + [SMALL_STATE(24481)] = 1099352, + [SMALL_STATE(24482)] = 1099366, + [SMALL_STATE(24483)] = 1099380, + [SMALL_STATE(24484)] = 1099394, + [SMALL_STATE(24485)] = 1099408, + [SMALL_STATE(24486)] = 1099422, + [SMALL_STATE(24487)] = 1099436, + [SMALL_STATE(24488)] = 1099450, + [SMALL_STATE(24489)] = 1099464, + [SMALL_STATE(24490)] = 1099478, + [SMALL_STATE(24491)] = 1099492, + [SMALL_STATE(24492)] = 1099506, + [SMALL_STATE(24493)] = 1099520, + [SMALL_STATE(24494)] = 1099534, + [SMALL_STATE(24495)] = 1099548, + [SMALL_STATE(24496)] = 1099562, + [SMALL_STATE(24497)] = 1099576, + [SMALL_STATE(24498)] = 1099590, + [SMALL_STATE(24499)] = 1099604, + [SMALL_STATE(24500)] = 1099616, + [SMALL_STATE(24501)] = 1099630, + [SMALL_STATE(24502)] = 1099644, + [SMALL_STATE(24503)] = 1099658, + [SMALL_STATE(24504)] = 1099672, + [SMALL_STATE(24505)] = 1099686, + [SMALL_STATE(24506)] = 1099700, + [SMALL_STATE(24507)] = 1099714, + [SMALL_STATE(24508)] = 1099728, + [SMALL_STATE(24509)] = 1099742, + [SMALL_STATE(24510)] = 1099756, + [SMALL_STATE(24511)] = 1099770, + [SMALL_STATE(24512)] = 1099784, + [SMALL_STATE(24513)] = 1099798, + [SMALL_STATE(24514)] = 1099812, + [SMALL_STATE(24515)] = 1099826, + [SMALL_STATE(24516)] = 1099840, + [SMALL_STATE(24517)] = 1099854, + [SMALL_STATE(24518)] = 1099868, + [SMALL_STATE(24519)] = 1099882, + [SMALL_STATE(24520)] = 1099896, + [SMALL_STATE(24521)] = 1099910, + [SMALL_STATE(24522)] = 1099924, + [SMALL_STATE(24523)] = 1099938, + [SMALL_STATE(24524)] = 1099952, + [SMALL_STATE(24525)] = 1099966, + [SMALL_STATE(24526)] = 1099980, + [SMALL_STATE(24527)] = 1099994, + [SMALL_STATE(24528)] = 1100008, + [SMALL_STATE(24529)] = 1100022, + [SMALL_STATE(24530)] = 1100036, + [SMALL_STATE(24531)] = 1100050, + [SMALL_STATE(24532)] = 1100064, + [SMALL_STATE(24533)] = 1100078, + [SMALL_STATE(24534)] = 1100092, + [SMALL_STATE(24535)] = 1100106, + [SMALL_STATE(24536)] = 1100120, + [SMALL_STATE(24537)] = 1100134, + [SMALL_STATE(24538)] = 1100148, + [SMALL_STATE(24539)] = 1100162, + [SMALL_STATE(24540)] = 1100176, + [SMALL_STATE(24541)] = 1100190, + [SMALL_STATE(24542)] = 1100204, + [SMALL_STATE(24543)] = 1100218, + [SMALL_STATE(24544)] = 1100232, + [SMALL_STATE(24545)] = 1100246, + [SMALL_STATE(24546)] = 1100260, + [SMALL_STATE(24547)] = 1100274, + [SMALL_STATE(24548)] = 1100288, + [SMALL_STATE(24549)] = 1100302, + [SMALL_STATE(24550)] = 1100316, + [SMALL_STATE(24551)] = 1100330, + [SMALL_STATE(24552)] = 1100344, + [SMALL_STATE(24553)] = 1100358, + [SMALL_STATE(24554)] = 1100372, + [SMALL_STATE(24555)] = 1100386, + [SMALL_STATE(24556)] = 1100400, + [SMALL_STATE(24557)] = 1100414, + [SMALL_STATE(24558)] = 1100428, + [SMALL_STATE(24559)] = 1100442, + [SMALL_STATE(24560)] = 1100456, + [SMALL_STATE(24561)] = 1100470, + [SMALL_STATE(24562)] = 1100484, + [SMALL_STATE(24563)] = 1100498, + [SMALL_STATE(24564)] = 1100512, + [SMALL_STATE(24565)] = 1100526, + [SMALL_STATE(24566)] = 1100540, + [SMALL_STATE(24567)] = 1100554, + [SMALL_STATE(24568)] = 1100568, + [SMALL_STATE(24569)] = 1100582, + [SMALL_STATE(24570)] = 1100596, + [SMALL_STATE(24571)] = 1100610, + [SMALL_STATE(24572)] = 1100624, + [SMALL_STATE(24573)] = 1100638, + [SMALL_STATE(24574)] = 1100652, + [SMALL_STATE(24575)] = 1100666, + [SMALL_STATE(24576)] = 1100680, + [SMALL_STATE(24577)] = 1100694, + [SMALL_STATE(24578)] = 1100708, + [SMALL_STATE(24579)] = 1100722, + [SMALL_STATE(24580)] = 1100736, + [SMALL_STATE(24581)] = 1100750, + [SMALL_STATE(24582)] = 1100764, + [SMALL_STATE(24583)] = 1100778, + [SMALL_STATE(24584)] = 1100792, + [SMALL_STATE(24585)] = 1100806, + [SMALL_STATE(24586)] = 1100820, + [SMALL_STATE(24587)] = 1100834, + [SMALL_STATE(24588)] = 1100848, + [SMALL_STATE(24589)] = 1100862, + [SMALL_STATE(24590)] = 1100876, + [SMALL_STATE(24591)] = 1100890, + [SMALL_STATE(24592)] = 1100904, + [SMALL_STATE(24593)] = 1100918, + [SMALL_STATE(24594)] = 1100932, + [SMALL_STATE(24595)] = 1100946, + [SMALL_STATE(24596)] = 1100960, + [SMALL_STATE(24597)] = 1100974, + [SMALL_STATE(24598)] = 1100988, + [SMALL_STATE(24599)] = 1101002, + [SMALL_STATE(24600)] = 1101016, + [SMALL_STATE(24601)] = 1101030, + [SMALL_STATE(24602)] = 1101044, + [SMALL_STATE(24603)] = 1101058, + [SMALL_STATE(24604)] = 1101072, + [SMALL_STATE(24605)] = 1101086, + [SMALL_STATE(24606)] = 1101100, + [SMALL_STATE(24607)] = 1101114, + [SMALL_STATE(24608)] = 1101128, + [SMALL_STATE(24609)] = 1101142, + [SMALL_STATE(24610)] = 1101156, + [SMALL_STATE(24611)] = 1101168, + [SMALL_STATE(24612)] = 1101182, + [SMALL_STATE(24613)] = 1101196, + [SMALL_STATE(24614)] = 1101210, + [SMALL_STATE(24615)] = 1101224, + [SMALL_STATE(24616)] = 1101238, + [SMALL_STATE(24617)] = 1101250, + [SMALL_STATE(24618)] = 1101264, + [SMALL_STATE(24619)] = 1101278, + [SMALL_STATE(24620)] = 1101292, + [SMALL_STATE(24621)] = 1101306, + [SMALL_STATE(24622)] = 1101320, + [SMALL_STATE(24623)] = 1101334, + [SMALL_STATE(24624)] = 1101348, + [SMALL_STATE(24625)] = 1101362, + [SMALL_STATE(24626)] = 1101376, + [SMALL_STATE(24627)] = 1101390, + [SMALL_STATE(24628)] = 1101404, + [SMALL_STATE(24629)] = 1101418, + [SMALL_STATE(24630)] = 1101432, + [SMALL_STATE(24631)] = 1101446, + [SMALL_STATE(24632)] = 1101460, + [SMALL_STATE(24633)] = 1101474, + [SMALL_STATE(24634)] = 1101488, + [SMALL_STATE(24635)] = 1101502, + [SMALL_STATE(24636)] = 1101516, + [SMALL_STATE(24637)] = 1101530, + [SMALL_STATE(24638)] = 1101544, + [SMALL_STATE(24639)] = 1101558, + [SMALL_STATE(24640)] = 1101572, + [SMALL_STATE(24641)] = 1101586, + [SMALL_STATE(24642)] = 1101600, + [SMALL_STATE(24643)] = 1101614, + [SMALL_STATE(24644)] = 1101628, + [SMALL_STATE(24645)] = 1101642, + [SMALL_STATE(24646)] = 1101656, + [SMALL_STATE(24647)] = 1101670, + [SMALL_STATE(24648)] = 1101684, + [SMALL_STATE(24649)] = 1101698, + [SMALL_STATE(24650)] = 1101712, + [SMALL_STATE(24651)] = 1101726, + [SMALL_STATE(24652)] = 1101740, + [SMALL_STATE(24653)] = 1101754, + [SMALL_STATE(24654)] = 1101768, + [SMALL_STATE(24655)] = 1101782, + [SMALL_STATE(24656)] = 1101796, + [SMALL_STATE(24657)] = 1101810, + [SMALL_STATE(24658)] = 1101824, + [SMALL_STATE(24659)] = 1101838, + [SMALL_STATE(24660)] = 1101852, + [SMALL_STATE(24661)] = 1101866, + [SMALL_STATE(24662)] = 1101880, + [SMALL_STATE(24663)] = 1101894, + [SMALL_STATE(24664)] = 1101908, + [SMALL_STATE(24665)] = 1101922, + [SMALL_STATE(24666)] = 1101936, + [SMALL_STATE(24667)] = 1101950, + [SMALL_STATE(24668)] = 1101964, + [SMALL_STATE(24669)] = 1101978, + [SMALL_STATE(24670)] = 1101992, + [SMALL_STATE(24671)] = 1102006, + [SMALL_STATE(24672)] = 1102020, + [SMALL_STATE(24673)] = 1102034, + [SMALL_STATE(24674)] = 1102048, + [SMALL_STATE(24675)] = 1102062, + [SMALL_STATE(24676)] = 1102076, + [SMALL_STATE(24677)] = 1102090, + [SMALL_STATE(24678)] = 1102104, + [SMALL_STATE(24679)] = 1102118, + [SMALL_STATE(24680)] = 1102132, + [SMALL_STATE(24681)] = 1102146, + [SMALL_STATE(24682)] = 1102160, + [SMALL_STATE(24683)] = 1102174, + [SMALL_STATE(24684)] = 1102188, + [SMALL_STATE(24685)] = 1102202, + [SMALL_STATE(24686)] = 1102216, + [SMALL_STATE(24687)] = 1102230, + [SMALL_STATE(24688)] = 1102244, + [SMALL_STATE(24689)] = 1102258, + [SMALL_STATE(24690)] = 1102272, + [SMALL_STATE(24691)] = 1102286, + [SMALL_STATE(24692)] = 1102300, + [SMALL_STATE(24693)] = 1102314, + [SMALL_STATE(24694)] = 1102328, + [SMALL_STATE(24695)] = 1102342, + [SMALL_STATE(24696)] = 1102356, + [SMALL_STATE(24697)] = 1102370, + [SMALL_STATE(24698)] = 1102384, + [SMALL_STATE(24699)] = 1102398, + [SMALL_STATE(24700)] = 1102412, + [SMALL_STATE(24701)] = 1102426, + [SMALL_STATE(24702)] = 1102440, + [SMALL_STATE(24703)] = 1102454, + [SMALL_STATE(24704)] = 1102468, + [SMALL_STATE(24705)] = 1102482, + [SMALL_STATE(24706)] = 1102496, + [SMALL_STATE(24707)] = 1102510, + [SMALL_STATE(24708)] = 1102524, + [SMALL_STATE(24709)] = 1102538, + [SMALL_STATE(24710)] = 1102552, + [SMALL_STATE(24711)] = 1102566, + [SMALL_STATE(24712)] = 1102580, + [SMALL_STATE(24713)] = 1102594, + [SMALL_STATE(24714)] = 1102608, + [SMALL_STATE(24715)] = 1102622, + [SMALL_STATE(24716)] = 1102636, + [SMALL_STATE(24717)] = 1102650, + [SMALL_STATE(24718)] = 1102664, + [SMALL_STATE(24719)] = 1102678, + [SMALL_STATE(24720)] = 1102692, + [SMALL_STATE(24721)] = 1102706, + [SMALL_STATE(24722)] = 1102720, + [SMALL_STATE(24723)] = 1102734, + [SMALL_STATE(24724)] = 1102748, + [SMALL_STATE(24725)] = 1102762, + [SMALL_STATE(24726)] = 1102776, + [SMALL_STATE(24727)] = 1102790, + [SMALL_STATE(24728)] = 1102804, + [SMALL_STATE(24729)] = 1102818, + [SMALL_STATE(24730)] = 1102832, + [SMALL_STATE(24731)] = 1102846, + [SMALL_STATE(24732)] = 1102860, + [SMALL_STATE(24733)] = 1102874, + [SMALL_STATE(24734)] = 1102888, + [SMALL_STATE(24735)] = 1102902, + [SMALL_STATE(24736)] = 1102916, + [SMALL_STATE(24737)] = 1102930, + [SMALL_STATE(24738)] = 1102944, + [SMALL_STATE(24739)] = 1102958, + [SMALL_STATE(24740)] = 1102972, + [SMALL_STATE(24741)] = 1102981, + [SMALL_STATE(24742)] = 1102990, + [SMALL_STATE(24743)] = 1102999, + [SMALL_STATE(24744)] = 1103008, + [SMALL_STATE(24745)] = 1103017, + [SMALL_STATE(24746)] = 1103028, + [SMALL_STATE(24747)] = 1103039, + [SMALL_STATE(24748)] = 1103048, + [SMALL_STATE(24749)] = 1103057, + [SMALL_STATE(24750)] = 1103068, + [SMALL_STATE(24751)] = 1103079, + [SMALL_STATE(24752)] = 1103088, + [SMALL_STATE(24753)] = 1103097, + [SMALL_STATE(24754)] = 1103106, + [SMALL_STATE(24755)] = 1103115, + [SMALL_STATE(24756)] = 1103124, + [SMALL_STATE(24757)] = 1103135, + [SMALL_STATE(24758)] = 1103146, + [SMALL_STATE(24759)] = 1103155, + [SMALL_STATE(24760)] = 1103164, + [SMALL_STATE(24761)] = 1103175, + [SMALL_STATE(24762)] = 1103184, + [SMALL_STATE(24763)] = 1103193, + [SMALL_STATE(24764)] = 1103202, + [SMALL_STATE(24765)] = 1103211, + [SMALL_STATE(24766)] = 1103220, + [SMALL_STATE(24767)] = 1103229, + [SMALL_STATE(24768)] = 1103238, + [SMALL_STATE(24769)] = 1103247, + [SMALL_STATE(24770)] = 1103258, + [SMALL_STATE(24771)] = 1103267, + [SMALL_STATE(24772)] = 1103276, + [SMALL_STATE(24773)] = 1103285, + [SMALL_STATE(24774)] = 1103294, + [SMALL_STATE(24775)] = 1103303, + [SMALL_STATE(24776)] = 1103312, + [SMALL_STATE(24777)] = 1103321, + [SMALL_STATE(24778)] = 1103330, + [SMALL_STATE(24779)] = 1103339, + [SMALL_STATE(24780)] = 1103348, + [SMALL_STATE(24781)] = 1103357, + [SMALL_STATE(24782)] = 1103366, + [SMALL_STATE(24783)] = 1103377, + [SMALL_STATE(24784)] = 1103386, + [SMALL_STATE(24785)] = 1103395, + [SMALL_STATE(24786)] = 1103404, + [SMALL_STATE(24787)] = 1103413, + [SMALL_STATE(24788)] = 1103422, + [SMALL_STATE(24789)] = 1103431, + [SMALL_STATE(24790)] = 1103440, + [SMALL_STATE(24791)] = 1103449, + [SMALL_STATE(24792)] = 1103458, + [SMALL_STATE(24793)] = 1103467, + [SMALL_STATE(24794)] = 1103476, + [SMALL_STATE(24795)] = 1103487, + [SMALL_STATE(24796)] = 1103498, + [SMALL_STATE(24797)] = 1103507, + [SMALL_STATE(24798)] = 1103516, + [SMALL_STATE(24799)] = 1103525, + [SMALL_STATE(24800)] = 1103536, + [SMALL_STATE(24801)] = 1103545, + [SMALL_STATE(24802)] = 1103554, + [SMALL_STATE(24803)] = 1103563, + [SMALL_STATE(24804)] = 1103574, + [SMALL_STATE(24805)] = 1103583, + [SMALL_STATE(24806)] = 1103592, + [SMALL_STATE(24807)] = 1103601, + [SMALL_STATE(24808)] = 1103612, + [SMALL_STATE(24809)] = 1103623, + [SMALL_STATE(24810)] = 1103634, + [SMALL_STATE(24811)] = 1103643, + [SMALL_STATE(24812)] = 1103652, + [SMALL_STATE(24813)] = 1103661, + [SMALL_STATE(24814)] = 1103672, + [SMALL_STATE(24815)] = 1103681, + [SMALL_STATE(24816)] = 1103690, + [SMALL_STATE(24817)] = 1103699, + [SMALL_STATE(24818)] = 1103708, + [SMALL_STATE(24819)] = 1103717, + [SMALL_STATE(24820)] = 1103728, + [SMALL_STATE(24821)] = 1103737, + [SMALL_STATE(24822)] = 1103746, + [SMALL_STATE(24823)] = 1103755, + [SMALL_STATE(24824)] = 1103764, + [SMALL_STATE(24825)] = 1103773, + [SMALL_STATE(24826)] = 1103782, + [SMALL_STATE(24827)] = 1103791, + [SMALL_STATE(24828)] = 1103800, + [SMALL_STATE(24829)] = 1103811, + [SMALL_STATE(24830)] = 1103822, + [SMALL_STATE(24831)] = 1103831, + [SMALL_STATE(24832)] = 1103840, + [SMALL_STATE(24833)] = 1103849, + [SMALL_STATE(24834)] = 1103858, + [SMALL_STATE(24835)] = 1103867, + [SMALL_STATE(24836)] = 1103878, + [SMALL_STATE(24837)] = 1103887, + [SMALL_STATE(24838)] = 1103898, + [SMALL_STATE(24839)] = 1103907, + [SMALL_STATE(24840)] = 1103916, + [SMALL_STATE(24841)] = 1103925, + [SMALL_STATE(24842)] = 1103936, + [SMALL_STATE(24843)] = 1103947, + [SMALL_STATE(24844)] = 1103956, + [SMALL_STATE(24845)] = 1103965, + [SMALL_STATE(24846)] = 1103974, + [SMALL_STATE(24847)] = 1103983, + [SMALL_STATE(24848)] = 1103992, + [SMALL_STATE(24849)] = 1104001, + [SMALL_STATE(24850)] = 1104012, + [SMALL_STATE(24851)] = 1104023, + [SMALL_STATE(24852)] = 1104031, + [SMALL_STATE(24853)] = 1104039, + [SMALL_STATE(24854)] = 1104047, + [SMALL_STATE(24855)] = 1104055, + [SMALL_STATE(24856)] = 1104063, + [SMALL_STATE(24857)] = 1104071, + [SMALL_STATE(24858)] = 1104079, + [SMALL_STATE(24859)] = 1104087, + [SMALL_STATE(24860)] = 1104095, + [SMALL_STATE(24861)] = 1104103, + [SMALL_STATE(24862)] = 1104111, + [SMALL_STATE(24863)] = 1104119, + [SMALL_STATE(24864)] = 1104127, + [SMALL_STATE(24865)] = 1104135, + [SMALL_STATE(24866)] = 1104143, + [SMALL_STATE(24867)] = 1104151, + [SMALL_STATE(24868)] = 1104159, + [SMALL_STATE(24869)] = 1104167, + [SMALL_STATE(24870)] = 1104175, + [SMALL_STATE(24871)] = 1104183, + [SMALL_STATE(24872)] = 1104191, + [SMALL_STATE(24873)] = 1104199, + [SMALL_STATE(24874)] = 1104207, + [SMALL_STATE(24875)] = 1104215, + [SMALL_STATE(24876)] = 1104223, + [SMALL_STATE(24877)] = 1104231, + [SMALL_STATE(24878)] = 1104239, + [SMALL_STATE(24879)] = 1104247, + [SMALL_STATE(24880)] = 1104255, + [SMALL_STATE(24881)] = 1104263, + [SMALL_STATE(24882)] = 1104271, + [SMALL_STATE(24883)] = 1104279, + [SMALL_STATE(24884)] = 1104287, + [SMALL_STATE(24885)] = 1104295, + [SMALL_STATE(24886)] = 1104303, + [SMALL_STATE(24887)] = 1104311, + [SMALL_STATE(24888)] = 1104319, + [SMALL_STATE(24889)] = 1104327, + [SMALL_STATE(24890)] = 1104335, + [SMALL_STATE(24891)] = 1104343, + [SMALL_STATE(24892)] = 1104351, + [SMALL_STATE(24893)] = 1104359, + [SMALL_STATE(24894)] = 1104367, + [SMALL_STATE(24895)] = 1104375, + [SMALL_STATE(24896)] = 1104383, + [SMALL_STATE(24897)] = 1104391, + [SMALL_STATE(24898)] = 1104399, + [SMALL_STATE(24899)] = 1104407, + [SMALL_STATE(24900)] = 1104415, + [SMALL_STATE(24901)] = 1104423, + [SMALL_STATE(24902)] = 1104431, + [SMALL_STATE(24903)] = 1104439, + [SMALL_STATE(24904)] = 1104447, + [SMALL_STATE(24905)] = 1104455, + [SMALL_STATE(24906)] = 1104463, + [SMALL_STATE(24907)] = 1104471, + [SMALL_STATE(24908)] = 1104479, + [SMALL_STATE(24909)] = 1104487, + [SMALL_STATE(24910)] = 1104495, + [SMALL_STATE(24911)] = 1104503, + [SMALL_STATE(24912)] = 1104511, + [SMALL_STATE(24913)] = 1104519, + [SMALL_STATE(24914)] = 1104527, + [SMALL_STATE(24915)] = 1104535, + [SMALL_STATE(24916)] = 1104543, + [SMALL_STATE(24917)] = 1104551, + [SMALL_STATE(24918)] = 1104559, + [SMALL_STATE(24919)] = 1104567, + [SMALL_STATE(24920)] = 1104575, + [SMALL_STATE(24921)] = 1104583, + [SMALL_STATE(24922)] = 1104591, + [SMALL_STATE(24923)] = 1104599, + [SMALL_STATE(24924)] = 1104607, + [SMALL_STATE(24925)] = 1104615, + [SMALL_STATE(24926)] = 1104623, + [SMALL_STATE(24927)] = 1104631, + [SMALL_STATE(24928)] = 1104639, + [SMALL_STATE(24929)] = 1104647, + [SMALL_STATE(24930)] = 1104655, + [SMALL_STATE(24931)] = 1104663, + [SMALL_STATE(24932)] = 1104671, + [SMALL_STATE(24933)] = 1104679, + [SMALL_STATE(24934)] = 1104687, + [SMALL_STATE(24935)] = 1104695, + [SMALL_STATE(24936)] = 1104703, + [SMALL_STATE(24937)] = 1104711, + [SMALL_STATE(24938)] = 1104719, + [SMALL_STATE(24939)] = 1104727, + [SMALL_STATE(24940)] = 1104735, + [SMALL_STATE(24941)] = 1104743, + [SMALL_STATE(24942)] = 1104751, + [SMALL_STATE(24943)] = 1104759, + [SMALL_STATE(24944)] = 1104767, + [SMALL_STATE(24945)] = 1104775, + [SMALL_STATE(24946)] = 1104783, + [SMALL_STATE(24947)] = 1104791, + [SMALL_STATE(24948)] = 1104799, + [SMALL_STATE(24949)] = 1104807, + [SMALL_STATE(24950)] = 1104815, + [SMALL_STATE(24951)] = 1104823, + [SMALL_STATE(24952)] = 1104831, + [SMALL_STATE(24953)] = 1104839, + [SMALL_STATE(24954)] = 1104847, + [SMALL_STATE(24955)] = 1104855, + [SMALL_STATE(24956)] = 1104863, + [SMALL_STATE(24957)] = 1104871, + [SMALL_STATE(24958)] = 1104879, + [SMALL_STATE(24959)] = 1104887, + [SMALL_STATE(24960)] = 1104895, + [SMALL_STATE(24961)] = 1104903, + [SMALL_STATE(24962)] = 1104911, + [SMALL_STATE(24963)] = 1104919, + [SMALL_STATE(24964)] = 1104927, + [SMALL_STATE(24965)] = 1104935, + [SMALL_STATE(24966)] = 1104943, + [SMALL_STATE(24967)] = 1104951, + [SMALL_STATE(24968)] = 1104959, + [SMALL_STATE(24969)] = 1104967, + [SMALL_STATE(24970)] = 1104975, + [SMALL_STATE(24971)] = 1104983, + [SMALL_STATE(24972)] = 1104991, + [SMALL_STATE(24973)] = 1104999, + [SMALL_STATE(24974)] = 1105007, + [SMALL_STATE(24975)] = 1105015, + [SMALL_STATE(24976)] = 1105023, + [SMALL_STATE(24977)] = 1105031, + [SMALL_STATE(24978)] = 1105039, + [SMALL_STATE(24979)] = 1105047, + [SMALL_STATE(24980)] = 1105055, + [SMALL_STATE(24981)] = 1105063, + [SMALL_STATE(24982)] = 1105071, + [SMALL_STATE(24983)] = 1105079, + [SMALL_STATE(24984)] = 1105087, + [SMALL_STATE(24985)] = 1105095, + [SMALL_STATE(24986)] = 1105103, + [SMALL_STATE(24987)] = 1105111, + [SMALL_STATE(24988)] = 1105119, + [SMALL_STATE(24989)] = 1105127, + [SMALL_STATE(24990)] = 1105135, + [SMALL_STATE(24991)] = 1105143, + [SMALL_STATE(24992)] = 1105151, + [SMALL_STATE(24993)] = 1105159, + [SMALL_STATE(24994)] = 1105167, + [SMALL_STATE(24995)] = 1105175, + [SMALL_STATE(24996)] = 1105183, + [SMALL_STATE(24997)] = 1105191, + [SMALL_STATE(24998)] = 1105199, + [SMALL_STATE(24999)] = 1105207, + [SMALL_STATE(25000)] = 1105215, + [SMALL_STATE(25001)] = 1105223, + [SMALL_STATE(25002)] = 1105231, + [SMALL_STATE(25003)] = 1105239, + [SMALL_STATE(25004)] = 1105247, + [SMALL_STATE(25005)] = 1105255, + [SMALL_STATE(25006)] = 1105263, + [SMALL_STATE(25007)] = 1105271, + [SMALL_STATE(25008)] = 1105279, + [SMALL_STATE(25009)] = 1105287, + [SMALL_STATE(25010)] = 1105295, + [SMALL_STATE(25011)] = 1105303, + [SMALL_STATE(25012)] = 1105311, + [SMALL_STATE(25013)] = 1105319, + [SMALL_STATE(25014)] = 1105327, + [SMALL_STATE(25015)] = 1105335, + [SMALL_STATE(25016)] = 1105343, + [SMALL_STATE(25017)] = 1105351, + [SMALL_STATE(25018)] = 1105359, + [SMALL_STATE(25019)] = 1105367, + [SMALL_STATE(25020)] = 1105375, + [SMALL_STATE(25021)] = 1105383, + [SMALL_STATE(25022)] = 1105391, + [SMALL_STATE(25023)] = 1105399, + [SMALL_STATE(25024)] = 1105407, + [SMALL_STATE(25025)] = 1105415, + [SMALL_STATE(25026)] = 1105423, + [SMALL_STATE(25027)] = 1105431, + [SMALL_STATE(25028)] = 1105439, + [SMALL_STATE(25029)] = 1105447, + [SMALL_STATE(25030)] = 1105455, + [SMALL_STATE(25031)] = 1105463, + [SMALL_STATE(25032)] = 1105471, + [SMALL_STATE(25033)] = 1105479, + [SMALL_STATE(25034)] = 1105487, + [SMALL_STATE(25035)] = 1105495, + [SMALL_STATE(25036)] = 1105503, + [SMALL_STATE(25037)] = 1105511, + [SMALL_STATE(25038)] = 1105519, + [SMALL_STATE(25039)] = 1105527, + [SMALL_STATE(25040)] = 1105535, + [SMALL_STATE(25041)] = 1105543, + [SMALL_STATE(25042)] = 1105551, + [SMALL_STATE(25043)] = 1105559, + [SMALL_STATE(25044)] = 1105567, + [SMALL_STATE(25045)] = 1105575, + [SMALL_STATE(25046)] = 1105583, + [SMALL_STATE(25047)] = 1105591, + [SMALL_STATE(25048)] = 1105599, + [SMALL_STATE(25049)] = 1105607, + [SMALL_STATE(25050)] = 1105615, + [SMALL_STATE(25051)] = 1105623, + [SMALL_STATE(25052)] = 1105631, + [SMALL_STATE(25053)] = 1105639, + [SMALL_STATE(25054)] = 1105647, + [SMALL_STATE(25055)] = 1105655, + [SMALL_STATE(25056)] = 1105663, + [SMALL_STATE(25057)] = 1105671, + [SMALL_STATE(25058)] = 1105679, + [SMALL_STATE(25059)] = 1105687, + [SMALL_STATE(25060)] = 1105695, + [SMALL_STATE(25061)] = 1105703, + [SMALL_STATE(25062)] = 1105711, +}; + +static const TSParseActionEntry ts_parse_actions[] = { + [0] = {.entry = {.count = 0, .reusable = false}}, + [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10893), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10893), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9906), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10292), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18431), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14838), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20291), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8521), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7887), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7961), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16614), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16621), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16626), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18701), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8416), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19028), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19174), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19218), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21316), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19290), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19554), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20104), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18162), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18442), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24963), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20123), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24867), + [81] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__program, 2, 0, 0), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hol_term, 1, 0, 0), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [89] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hol_term, 1, 0, 0), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19103), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19103), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_application, 2, 0, 0), + [113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_application, 2, 0, 0), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18943), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18943), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18740), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18740), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19162), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19162), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18973), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18973), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19128), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19128), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19244), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19244), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18708), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18708), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18759), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18759), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19070), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19070), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18818), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18818), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19152), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19152), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_atomic_type, 1, 0, 0), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_atomic_type, 1, 0, 0), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_annotated, 3, 0, 0), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_annotated, 3, 0, 0), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16638), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hol_type, 3, 0, 0), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hol_type, 3, 0, 0), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_fun_ty, 3, 0, 0), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_fun_ty, 3, 0, 0), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_list_ty, 2, 0, 0), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_list_ty, 2, 0, 0), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16418), + [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_case, 5, 0, 35), + [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_case, 5, 0, 35), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13566), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_case, 4, 0, 35), + [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_case, 4, 0, 35), + [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), + [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), SHIFT_REPEAT(13566), + [424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_case, 6, 0, 35), + [426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_case, 6, 0, 35), + [428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_left_unary_term, 2, 0, 8), + [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_left_unary_term, 2, 0, 8), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_cond, 6, 0, 0), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16636), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_cond, 6, 0, 0), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_match, 3, 0, 57), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_match, 3, 0, 57), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_identifier, 1, 0, 0), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_identifier, 1, 0, 0), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_tuple, 2, 0, 0), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_tuple, 2, 0, 0), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_set, 2, 0, 0), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_set, 2, 0, 0), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_list, 2, 0, 0), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_list, 2, 0, 0), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hol_term, 3, 0, 0), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hol_term, 3, 0, 0), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_set, 3, 0, 0), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_set, 3, 0, 0), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_list, 3, 0, 0), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_list, 3, 0, 0), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_set, 4, 0, 0), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_set, 4, 0, 0), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_list, 4, 0, 0), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_list, 4, 0, 0), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_tuple, 5, 0, 0), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_tuple, 5, 0, 0), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_tuple, 6, 0, 0), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_tuple, 6, 0, 0), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_binary_term, 3, 0, 21), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_binary_term, 3, 0, 21), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_binder, 4, 0, 0), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_binder, 4, 0, 0), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16416), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16524), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13640), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16622), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16659), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16667), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16349), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16396), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), SHIFT_REPEAT(13640), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16589), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13558), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13613), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), SHIFT_REPEAT(13613), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), SHIFT_REPEAT(13647), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), SHIFT_REPEAT(13558), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16424), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13647), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16546), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16458), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13589), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), SHIFT_REPEAT(13589), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16523), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16658), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16666), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16620), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16348), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16393), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16423), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16451), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16587), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16541), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exp, 1, 0, 0), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18503), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14627), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__exp, 1, 0, 0), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19461), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8653), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18592), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18593), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_app_exp, 2, 0, 0), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_app_exp, 2, 0, 0), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4236), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4236), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4152), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4266), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(901), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18503), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14627), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19461), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(908), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8653), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4498), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18592), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18593), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4360), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4360), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4191), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4578), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(727), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18570), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14926), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20243), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(728), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1627), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8592), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4437), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18078), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18081), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18570), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14926), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20243), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8592), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18078), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18081), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18354), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14872), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20767), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8623), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18205), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18206), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18242), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14580), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21068), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8649), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18257), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18259), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4559), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4559), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4228), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4580), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(889), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18242), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14580), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21068), + [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(896), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2225), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8649), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4492), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18257), + [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18259), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4284), + [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4284), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4200), + [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4293), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(805), + [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18354), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14872), + [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20767), + [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), + [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8623), + [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4470), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18205), + [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18206), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18271), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14579), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19845), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8498), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18085), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18464), + [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5047), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5047), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4564), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4969), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(643), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18271), + [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14579), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19845), + [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(644), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8498), + [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4391), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18085), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18464), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18623), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14711), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19615), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8582), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18364), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18541), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4952), + [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4952), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4525), + [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4859), + [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(703), + [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18623), + [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14711), + [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19615), + [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8582), + [1388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4420), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18364), + [1394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18541), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18269), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14747), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20150), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8585), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18554), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18555), + [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4968), + [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4968), + [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4425), + [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4960), + [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(709), + [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18269), + [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14747), + [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20150), + [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8585), + [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4424), + [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18554), + [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18555), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18358), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14568), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20389), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8507), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18546), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18547), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5222), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5222), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5056), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5252), + [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(601), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18358), + [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14568), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20389), + [1519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(602), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1183), + [1525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8507), + [1528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4369), + [1531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18546), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18547), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18438), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14731), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20475), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8667), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18704), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18382), + [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5454), + [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5454), + [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5364), + [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(949), + [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18438), + [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14731), + [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20475), + [1589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(950), + [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2416), + [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8667), + [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4519), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18704), + [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18382), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18614), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14831), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21277), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8683), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18508), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18511), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5513), + [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5513), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5380), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5573), + [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(997), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18614), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14831), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21277), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(998), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8683), + [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4538), + [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18508), + [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18511), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18324), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14414), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19770), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8707), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18644), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18645), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5576), + [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5576), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5392), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5579), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1069), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18324), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14414), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19770), + [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1070), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2841), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8707), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4556), + [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18644), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18645), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9842), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9842), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9303), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9555), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11158), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18196), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14469), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21282), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8633), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8134), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18647), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18648), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11813), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9925), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18687), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14927), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19552), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8697), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18339), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18340), + [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6512), + [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6512), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5844), + [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5856), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18393), + [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14683), + [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20190), + [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2353), + [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8661), + [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4513), + [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18630), + [1870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18631), + [1873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6542), + [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6542), + [1879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5455), + [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5955), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(943), + [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18568), + [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14715), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20387), + [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2395), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8665), + [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4517), + [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18542), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18551), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18273), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14882), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19369), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8689), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18079), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18080), + [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6257), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6257), + [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5517), + [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5871), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18273), + [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14882), + [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19369), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1016), + [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2652), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8689), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4546), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18079), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18080), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18393), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14683), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20190), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8661), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18630), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18631), + [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5858), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5858), + [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5572), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5877), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), + [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18687), + [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14927), + [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19552), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2736), + [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8697), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4550), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18339), + [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18340), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18063), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14940), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19596), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8699), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18408), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18409), + [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5864), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5864), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5574), + [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5878), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), + [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18063), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14940), + [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19596), + [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1046), + [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), + [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8699), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4551), + [2119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18408), + [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18409), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18267), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14402), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19726), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8705), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18581), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18583), + [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5870), + [2156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5870), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5577), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5879), + [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18267), + [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14402), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19726), + [2177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1064), + [2180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2820), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8705), + [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4554), + [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18581), + [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18583), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18561), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14697), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20289), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8663), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18216), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18219), + [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6531), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6531), + [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5852), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5950), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(937), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18561), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14697), + [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20289), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(938), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2374), + [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8663), + [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4515), + [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18216), + [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18219), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18391), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14816), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21140), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8681), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18402), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18410), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18463), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14686), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20276), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8613), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18369), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18370), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5953), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5953), + [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5514), + [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5860), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(991), + [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18391), + [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14816), + [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21140), + [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(992), + [2348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2568), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8681), + [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4537), + [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18402), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18410), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6089), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6089), + [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5698), + [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6164), + [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(787), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18463), + [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14686), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20276), + [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1836), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8613), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4463), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18369), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18370), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18048), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14427), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21059), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8629), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18487), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18488), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18568), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14715), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20387), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8665), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18542), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18551), + [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6168), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6168), + [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5718), + [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6192), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [2476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18048), + [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14427), + [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21059), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2010), + [2491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8629), + [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4473), + [2497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18487), + [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18488), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18013), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14647), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19648), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8655), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17993), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18015), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6425), + [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6425), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5805), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5855), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18013), + [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14647), + [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19648), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(914), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2288), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8655), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4503), + [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(17993), + [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18015), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9311), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9311), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8986), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9315), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18043), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14729), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20474), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8525), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8032), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18088), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18092), + [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7192), + [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7192), + [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6250), + [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7391), + [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(871), + [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18636), + [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14534), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20149), + [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2158), + [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8643), + [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4483), + [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18543), + [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18545), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24907), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11195), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18229), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14407), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20548), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8594), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18160), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18169), + [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6715), + [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6715), + [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6012), + [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6890), + [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18229), + [2711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14407), + [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20548), + [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(734), + [2720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8594), + [2726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4438), + [2729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18160), + [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18169), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6513), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18231), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14674), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20086), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8659), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18097), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18100), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7390), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7390), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6513), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7402), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(925), + [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18231), + [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14674), + [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20086), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(926), + [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2331), + [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8659), + [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4512), + [2799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18097), + [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18100), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17989), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14533), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19854), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8605), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18002), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18004), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6882), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6882), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6076), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7055), + [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(763), + [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(17989), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14533), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19854), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(764), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1753), + [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8605), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4453), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18002), + [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18004), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18126), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14558), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19969), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8607), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18071), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18073), + [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6886), + [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6886), + [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6079), + [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7060), + [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(769), + [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18126), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14558), + [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19969), + [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(770), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1774), + [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8607), + [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4457), + [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18071), + [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18073), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18589), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14588), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20101), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8609), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18139), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18140), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17994), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14743), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20566), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8669), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18201), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18209), + [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6597), + [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6597), + [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6545), + [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7061), + [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(17994), + [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14743), + [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20566), + [3025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(956), + [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2438), + [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8669), + [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4522), + [3037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18201), + [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18209), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18138), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14801), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21049), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8679), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18302), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18303), + [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6602), + [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6602), + [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5954), + [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7413), + [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(985), + [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18138), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14801), + [3092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21049), + [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(986), + [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2547), + [3101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8679), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4533), + [3107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18302), + [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18303), + [3113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6889), + [3116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6889), + [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6082), + [3122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7062), + [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(775), + [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18589), + [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14588), + [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20101), + [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1795), + [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8609), + [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4458), + [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18139), + [3152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18140), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18165), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14655), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20191), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8611), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18262), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18263), + [3183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6893), + [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6893), + [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6090), + [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7066), + [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(781), + [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18165), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14655), + [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20191), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(782), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1816), + [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8611), + [3216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4461), + [3219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18262), + [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18263), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18016), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14844), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19272), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8685), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18603), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18606), + [3253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7058), + [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7058), + [3259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6075), + [3262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6578), + [3265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1003), + [3268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18016), + [3271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14844), + [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19272), + [3277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1004), + [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), + [3283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8685), + [3286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4541), + [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18603), + [3292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18606), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18137), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14860), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19317), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8687), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17979), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17982), + [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7205), + [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7205), + [3329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6258), + [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6579), + [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1009), + [3338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18137), + [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14860), + [3344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19317), + [3347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2631), + [3353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8687), + [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4545), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(17979), + [3362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(17982), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18578), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14915), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19503), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8695), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18284), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18291), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7412), + [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7412), + [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(5859), + [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6587), + [3405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1033), + [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18578), + [3411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14915), + [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19503), + [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1034), + [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2715), + [3423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8695), + [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4549), + [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18284), + [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18291), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11812), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18491), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14917), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20858), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8625), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18288), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18289), + [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7065), + [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7065), + [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6163), + [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7185), + [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18491), + [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14917), + [3486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20858), + [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), + [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8625), + [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4471), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18288), + [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18289), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7122), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7187), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18676), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14401), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20966), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8627), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18376), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18377), + [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7122), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7122), + [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6169), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7187), + [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18676), + [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14401), + [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20966), + [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1989), + [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8627), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4472), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18376), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18377), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11074), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11502), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9325), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9335), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9221), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9375), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9448), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18367), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14499), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19640), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8637), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18457), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18458), + [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7183), + [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7183), + [3633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6185), + [3636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7310), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [3642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18367), + [3645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14499), + [3648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19640), + [3651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(860), + [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2094), + [3657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8637), + [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4477), + [3663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18457), + [3666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18458), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12123), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12128), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12145), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12181), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12202), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12216), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7391), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18636), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14534), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20149), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8643), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18543), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18545), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12269), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12277), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12304), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12365), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12422), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12460), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11935), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11940), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11951), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11965), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11977), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11988), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11068), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11093), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11381), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11315), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11391), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11456), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10478), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10599), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10759), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10608), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10729), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10762), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10545), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10755), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10162), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10176), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10190), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10262), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9047), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9051), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9058), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9065), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9081), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9091), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9113), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9118), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9133), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9151), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11761), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11316), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11256), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11428), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11777), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11499), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11788), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11902), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11062), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11071), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11085), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11108), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11159), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11173), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11201), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11219), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11237), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11277), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11415), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11423), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11670), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11793), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11831), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11861), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11570), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11577), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11604), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11638), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11658), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11703), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11757), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11770), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11513), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11125), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11484), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11569), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10365), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10372), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10385), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10400), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10414), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10433), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10490), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10512), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10534), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10548), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10561), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10571), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11820), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11883), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11903), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11066), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11197), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9903), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11023), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11605), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11667), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11694), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11726), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9913), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9523), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9539), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9629), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9780), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11566), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8920), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9936), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9950), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9964), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9983), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9999), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8831), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8835), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8863), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8913), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10941), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10092), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10946), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10958), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11016), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10055), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10066), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10097), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10107), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10118), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10127), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10138), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10200), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10205), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10214), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10223), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10232), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10241), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9962), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9975), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9992), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10018), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10032), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10613), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10618), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10639), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10647), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10660), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10694), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10793), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10818), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10842), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10860), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10873), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10895), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10931), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10940), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10966), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10979), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10986), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10995), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10301), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10702), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10775), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10312), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10791), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10725), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11506), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9415), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9200), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9289), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9228), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9444), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9453), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9461), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9468), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9480), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9575), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9583), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9593), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9600), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9610), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9633), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9640), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9651), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9661), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9670), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9683), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9042), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9074), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9175), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8990), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [5159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7497), + [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7497), + [5165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6603), + [5168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7530), + [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(649), + [5174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18415), + [5177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14437), + [5180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20575), + [5183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(650), + [5186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1350), + [5189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8508), + [5192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4395), + [5195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18355), + [5198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18373), + [5201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7437), + [5204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7437), + [5207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6880), + [5210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7505), + [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(751), + [5216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18318), + [5219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14480), + [5222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19459), + [5225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [5228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1711), + [5231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8601), + [5234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4448), + [5237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18199), + [5240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18203), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7440), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7528), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18642), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14497), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19679), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8603), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18514), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18516), + [5271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7440), + [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7440), + [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6883), + [5280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7528), + [5283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(757), + [5286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18642), + [5289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14497), + [5292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19679), + [5295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [5298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1732), + [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8603), + [5304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4450), + [5307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18514), + [5310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18516), + [5313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7933), + [5316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7933), + [5319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6601), + [5322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7498), + [5325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(625), + [5328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18680), + [5331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14847), + [5334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21110), + [5337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(626), + [5340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1266), + [5343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8581), + [5346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4380), + [5349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18527), + [5352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18528), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18109), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14796), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20581), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8619), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18061), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18062), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7505), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18318), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14480), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19459), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8601), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18199), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18203), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7501), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7653), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18629), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14660), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20800), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8537), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18014), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18021), + [5439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7566), + [5442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7566), + [5445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7059), + [5448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7827), + [5451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [5454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18109), + [5457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14796), + [5460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20581), + [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [5466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1903), + [5469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8619), + [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4467), + [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18061), + [5478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18062), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18415), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14437), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20575), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8508), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18355), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18373), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7933), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7498), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18680), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14847), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21110), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8581), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18527), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18528), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18115), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14449), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21203), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8631), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18595), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18598), + [5565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7771), + [5568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7771), + [5571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7180), + [5574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7883), + [5577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18115), + [5583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14449), + [5586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21203), + [5589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(842), + [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2031), + [5595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8631), + [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4474), + [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18595), + [5604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18598), + [5607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7501), + [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7501), + [5613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(6605), + [5616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7653), + [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(667), + [5622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18629), + [5625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14660), + [5628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20800), + [5631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(668), + [5634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), + [5637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8537), + [5640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4400), + [5643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18014), + [5646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18021), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7834), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7966), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18472), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14516), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20964), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8639), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18093), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18168), + [5677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7834), + [5680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7834), + [5683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7186), + [5686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7966), + [5689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(859), + [5692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18472), + [5695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14516), + [5698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20964), + [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [5704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2115), + [5707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8639), + [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4478), + [5713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18093), + [5716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18168), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7838), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18577), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14525), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19612), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8641), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18388), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18389), + [5747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7838), + [5750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7838), + [5753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7193), + [5756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7981), + [5759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [5762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18577), + [5765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14525), + [5768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19612), + [5771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [5774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), + [5777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8641), + [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4479), + [5783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18388), + [5786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18389), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11448), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11448), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10364), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11406), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18694), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14764), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20859), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9901), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8540), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8066), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18285), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18287), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11238), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9863), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11647), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11175), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8194), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7625), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8224), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18094), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14821), + [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21010), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8561), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18427), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18428), + [5869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8194), + [5872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8194), + [5875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7625), + [5878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8224), + [5881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(619), + [5884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18094), + [5887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14821), + [5890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21010), + [5893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(620), + [5896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1246), + [5899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8561), + [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4377), + [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18427), + [5908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18428), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9326), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9333), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9337), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9216), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9217), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11492), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9226), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9483), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9486), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11497), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9357), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9224), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9245), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9457), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9406), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9419), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9244), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9212), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9213), + [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9215), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9260), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11522), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12129), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12140), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12143), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12146), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12173), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12174), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12184), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12199), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12200), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12203), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12204), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12212), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12214), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12217), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12218), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12220), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12225), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12237), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12239), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12240), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12253), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12278), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12300), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12301), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12305), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12353), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12356), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12367), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12419), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12420), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12423), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12424), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12449), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12452), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12462), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12465), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12467), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12473), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12498), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12500), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12501), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12518), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11941), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11948), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11949), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11952), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11962), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11963), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11966), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11974), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11975), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11978), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11979), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11985), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11986), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11989), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11990), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11991), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11993), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11999), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12000), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12001), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12006), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11135), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11364), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11373), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11382), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11286), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11297), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11322), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11385), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11386), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11395), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11396), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11436), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11437), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11460), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11463), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11489), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11495), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11555), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11556), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11557), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11587), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8179), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8191), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8206), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8208), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8220), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7554), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7555), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7557), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7563), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7564), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7565), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10604), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10716), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10721), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10766), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10603), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10606), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10609), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10711), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10726), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10730), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10731), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10753), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10754), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10764), + [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10770), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10782), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10048), + [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10290), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10299), + [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10305), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10399), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10778), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10111), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10160), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10163), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10173), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10174), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10178), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10187), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10188), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10191), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10192), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10259), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10260), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10263), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10265), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10266), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10268), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10277), + [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10278), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10279), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10286), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7909), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7918), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7919), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7921), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7926), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7927), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7928), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9055), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9056), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9062), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9063), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9066), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9079), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9082), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9083), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9088), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9089), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9092), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9093), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9094), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9096), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9101), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9102), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9103), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9110), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9123), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11174), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9127), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9130), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9131), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11188), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9134), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9140), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9143), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9144), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9148), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9149), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11212), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9152), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9153), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9154), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9156), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9161), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9162), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9163), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9167), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11262), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8008), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8018), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8020), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8025), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8026), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8031), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8259), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8228), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8229), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8288), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8169), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8196), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8212), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8222), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11454), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11090), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11091), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11348), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11365), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11368), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11452), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11721), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11759), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11133), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11208), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11457), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11464), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11904), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11523), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11531), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11608), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11651), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11662), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11678), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11746), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11033), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11054), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11057), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11063), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11067), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11069), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11073), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11078), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11079), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11087), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11088), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11096), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11106), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11111), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11114), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11115), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11117), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11137), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11138), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11139), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11149), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11176), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11196), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11198), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11203), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11211), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11215), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11220), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11230), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11231), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11239), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11240), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11250), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11255), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11278), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11280), + [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11282), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11287), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11317), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11319), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11327), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11400), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11424), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11469), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11483), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11735), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11789), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11791), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11794), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11802), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11817), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11835), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11837), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11848), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11854), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11862), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11865), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11866), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11878), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11891), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11892), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11894), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11034), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11579), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11595), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11597), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11613), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11623), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11625), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11640), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11646), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11648), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11665), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11671), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11692), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11697), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11704), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11707), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11709), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11712), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11731), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11733), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11734), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11742), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11778), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11615), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11039), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11601), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11254), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11346), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11134), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11471), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11472), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11486), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11496), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11560), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11561), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11598), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11609), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11612), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11619), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11657), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11675), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11677), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11702), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10373), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10382), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10383), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10388), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10394), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10396), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10401), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10410), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10411), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10422), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10424), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10428), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10429), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10435), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10438), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10439), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10447), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10452), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10453), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10454), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10460), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10513), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10525), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10526), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10535), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10544), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10546), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10549), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10558), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10559), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10562), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10563), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10567), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10568), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10573), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10574), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10576), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10578), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10587), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10588), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10589), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10596), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7796), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7805), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7806), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7814), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7819), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7862), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7874), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7875), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7878), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7886), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7888), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7891), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7899), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6691), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6701), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6703), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), + [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11795), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11821), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11830), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11881), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11806), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11888), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11897), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11898), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11498), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11379), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11779), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11086), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11102), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11103), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11148), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11815), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11210), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11213), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11290), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11360), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11450), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11474), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11503), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11762), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11819), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11550), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11600), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11602), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11611), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11663), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11664), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11669), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11689), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11690), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11695), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11698), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11717), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11718), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11728), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11732), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11771), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11776), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11843), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11846), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11847), + [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11050), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11833), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7472), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11876), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), + [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), + [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), + [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7495), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9920), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9509), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9510), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9535), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9536), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9564), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9631), + [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9638), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9719), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9767), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9781), + [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9788), + [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9789), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9801), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9812), + [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9813), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9814), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9818), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), + [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), + [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), + [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), + [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), + [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), + [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), + [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), + [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), + [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), + [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7599), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7608), + [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7611), + [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7616), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7617), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), + [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7622), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9937), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9944), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9945), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9953), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9958), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9959), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9967), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9973), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9979), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9988), + [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9989), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9996), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9997), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10000), + [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10001), + [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10002), + [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10004), + [7905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10013), + [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10014), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10015), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10024), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8833), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8866), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8836), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8852), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8853), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8870), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8947), + [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8890), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8903), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8915), + [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8918), + [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8921), + [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8926), + [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8936), + [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8944), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8888), + [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8928), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), + [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [7995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), + [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11422), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11422), + [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10316), + [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11449), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17987), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14712), + [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20376), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8615), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8122), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18523), + [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18524), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), + [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7709), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), + [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7714), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7757), + [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7759), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7770), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11081), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11081), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10329), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11610), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18059), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14757), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20476), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8617), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8126), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18700), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18702), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), + [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), + [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7173), + [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), + [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7175), + [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10947), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10955), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10956), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10963), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11013), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11014), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11019), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10052), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10053), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10056), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10057), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10062), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10063), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10067), + [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10068), + [8241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10069), + [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10071), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10077), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10078), + [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10079), + [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10084), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10098), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10104), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10105), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10108), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10115), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10116), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10119), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10124), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10125), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11229), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10128), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10129), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10135), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10136), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11235), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10139), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10140), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10141), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10143), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10149), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10150), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10151), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10156), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11244), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10206), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10211), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10212), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10215), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10220), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10221), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10224), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10229), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10230), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10233), + [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10234), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10238), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10239), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10242), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10243), + [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10244), + [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10246), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10251), + [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10252), + [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10253), + [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10258), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), + [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9976), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9985), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9986), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9994), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10010), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10011), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10020), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10026), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10027), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10033), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10036), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9488), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9489), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), + [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9494), + [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9495), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9500), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9506), + [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9507), + [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9511), + [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9516), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11668), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), + [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6300), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), + [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), + [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [8723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [8731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [8741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11300), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), + [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), + [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), + [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10620), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10636), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10637), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10640), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10644), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10645), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10648), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10655), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10658), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10668), + [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10669), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10685), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10689), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10695), + [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10697), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10707), + [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10710), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10724), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10734), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10735), + [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10757), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10819), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10833), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10836), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10844), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10852), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10854), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10862), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10867), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10869), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10876), + [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10878), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10888), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10891), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10897), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10898), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10901), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10904), + [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10911), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10913), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10915), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10921), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10943), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10959), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10960), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10967), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10976), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10977), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10980), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10983), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10984), + [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), + [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7527), + [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8235), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18217), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14809), + [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19840), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8546), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17999), + [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18000), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10987), + [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10988), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10992), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10993), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10996), + [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10997), + [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10998), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11000), + [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11005), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11006), + [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11007), + [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11011), + [8951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8202), + [8954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8202), + [8957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(7527), + [8960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8235), + [8963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(673), + [8966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18217), + [8969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14809), + [8972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19840), + [8975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(674), + [8978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1438), + [8981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8546), + [8984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4403), + [8987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(17999), + [8990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18000), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10717), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10772), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10773), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10777), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10886), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10902), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10628), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10916), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10918), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10805), + [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10806), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10666), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10667), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10752), + [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10809), + [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10835), + [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10849), + [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10202), + [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10254), + [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10291), + [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10297), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), + [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), + [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), + [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), + [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), + [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), + [9117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), + [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6541), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), + [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), + [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), + [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), + [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7395), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), + [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), + [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), + [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), + [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), + [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), + [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [9299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9484), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9197), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9198), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9202), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9267), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9278), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9292), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9341), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), + [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9373), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9214), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9229), + [9331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9233), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9237), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9242), + [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9336), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9361), + [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9362), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9432), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9446), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9450), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9451), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9458), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9459), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9466), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9470), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9475), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9482), + [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9259), + [9377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9297), + [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9407), + [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9314), + [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9353), + [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9354), + [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9403), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [9411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), + [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), + [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), + [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), + [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), + [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), + [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), + [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9576), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9581), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9584), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9590), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9591), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9594), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9597), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9598), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9601), + [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9602), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9607), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9608), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9611), + [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9613), + [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9614), + [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9616), + [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9621), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9622), + [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9623), + [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9627), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9641), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9648), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9649), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9652), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9658), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9659), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9662), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9667), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9668), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9671), + [9587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9672), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9678), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9679), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9684), + [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9685), + [9597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9686), + [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9689), + [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9695), + [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9696), + [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9697), + [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9702), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [9639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), + [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), + [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [9685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [9687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), + [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9087), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9176), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9179), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9076), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8953), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8954), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8991), + [9719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8992), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8998), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9000), + [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9002), + [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9003), + [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9009), + [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9018), + [9735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9021), + [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9022), + [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9026), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12258), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12258), + [10083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11275), + [10085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12261), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [10089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18185), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14430), + [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19814), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8725), + [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8046), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17983), + [10115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17984), + [10117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11924), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11924), + [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11501), + [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11926), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [10127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18365), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14705), + [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20704), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8527), + [10139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [10141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [10143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8059), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18163), + [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18164), + [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11166), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11166), + [10159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10663), + [10161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11803), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [10165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18029), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14812), + [10169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21080), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [10175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8588), + [10177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [10179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [10183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8109), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18265), + [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18298), + [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11281), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11281), + [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10709), + [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11122), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18251), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14873), + [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19643), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8590), + [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18637), + [10225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18641), + [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8127), + [10237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [10239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8097), + [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [10251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [10253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8078), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10313), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10313), + [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9517), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10779), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18681), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14544), + [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20482), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8645), + [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [10287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [10289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [10293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8090), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18042), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18045), + [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [10305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8135), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10332), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10332), + [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9554), + [10319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10924), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18425), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14559), + [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20783), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8647), + [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [10337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [10339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8096), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18130), + [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18145), + [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9135), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9135), + [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8830), + [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8955), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18404), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14426), + [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19808), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8494), + [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8145), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18696), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18703), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8900), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8900), + [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8780), + [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8887), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18261), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14482), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21356), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8635), + [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8084), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18698), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18699), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8141), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8104), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9538), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9538), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9241), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9884), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18117), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14962), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19639), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8701), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18453), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18456), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10811), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10811), + [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9942), + [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10602), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18500), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14439), + [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20991), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8596), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8116), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18233), + [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18234), + [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10845), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10845), + [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9982), + [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10807), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18227), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14456), + [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19302), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8598), + [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18667), + [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18668), + [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8111), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9735), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9735), + [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9258), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9875), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18187), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14396), + [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19682), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8703), + [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8144), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18518), + [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18519), + [10617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), + [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [10645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8085), + [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8052), + [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8067), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7628), + [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8960), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), + [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8856), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8988), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18515), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14512), + [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20667), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8517), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18156), + [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18158), + [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8102), + [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), + [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10406), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10406), + [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9628), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10302), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18317), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14594), + [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19315), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8651), + [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [10767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18432), + [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18440), + [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8130), + [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8963), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8963), + [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8910), + [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9004), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18571), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14440), + [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20770), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8529), + [10807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18121), + [10817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18159), + [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [10825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8117), + [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9922), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9922), + [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9190), + [10835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9848), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18225), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14834), + [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20660), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8621), + [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [10855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [10857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8072), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18120), + [10865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18122), + [10867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9717), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9717), + [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9247), + [10873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9558), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18118), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14664), + [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19815), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8657), + [10889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18664), + [10899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18672), + [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8047), + [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [10913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [10923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8091), + [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11549), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11549), + [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10925), + [10973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11284), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17985), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14443), + [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20247), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8553), + [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18336), + [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18342), + [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11745), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11745), + [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10304), + [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11375), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18060), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14536), + [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20583), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8562), + [11029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [11031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [11035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8040), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18068), + [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18070), + [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10064), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10064), + [11049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9556), + [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10308), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18521), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14755), + [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20676), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8671), + [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [11069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18435), + [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18436), + [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10358), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10358), + [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9786), + [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10395), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [11095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18105), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14768), + [11099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20780), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [11105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8673), + [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [11111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18654), + [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18662), + [11119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11716), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11716), + [11123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10322), + [11125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11455), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [11129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18697), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14633), + [11133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20857), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8570), + [11141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18286), + [11151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18290), + [11153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10676), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10676), + [11157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9532), + [11159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10461), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [11163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18507), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14779), + [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20878), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [11173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8675), + [11175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18024), + [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18026), + [11187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11130), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11130), + [11191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10356), + [11193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11538), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [11197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18200), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14678), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21200), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8577), + [11209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18599), + [11219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18600), + [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10336), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10336), + [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10029), + [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10511), + [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18673), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14789), + [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20969), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8677), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18172), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18174), + [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8131), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [11271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12117), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12117), + [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11344), + [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12118), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18329), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14892), + [11309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19414), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8558), + [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18151), + [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18152), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [11337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), + [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9230), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9230), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9034), + [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9300), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18383), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14894), + [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19416), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8691), + [11367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18128), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18136), + [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9235), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9235), + [11383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9105), + [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9385), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18482), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14905), + [11393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19457), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [11399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8693), + [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [11403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [11405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18195), + [11411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18198), + [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [11417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [11433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [11435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [11437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8073), + [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [11449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10784), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10784), + [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9970), + [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10355), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18490), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14864), + [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21183), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8717), + [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18575), + [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18576), + [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10875), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10875), + [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9832), + [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10500), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18146), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14908), + [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21273), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8727), + [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18643), + [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18646), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16361), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [11541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8900), + [11544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8900), + [11547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8780), + [11550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8887), + [11553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(847), + [11556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18261), + [11559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14482), + [11562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21356), + [11565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [11568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2073), + [11571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8635), + [11574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4476), + [11577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18698), + [11580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18699), + [11583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8963), + [11586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8963), + [11589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8910), + [11592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9004), + [11595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(661), + [11598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18571), + [11601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14440), + [11604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20770), + [11607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(662), + [11610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [11613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8529), + [11616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4399), + [11619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18121), + [11622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18159), + [11625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9135), + [11628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9135), + [11631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8830), + [11634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8955), + [11637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1075), + [11640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18404), + [11643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14426), + [11646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19808), + [11649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1076), + [11652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [11655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8494), + [11658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4557), + [11661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18696), + [11664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18703), + [11667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8960), + [11670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8960), + [11673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8856), + [11676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8988), + [11679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [11682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18515), + [11685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14512), + [11688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20667), + [11691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(656), + [11694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1371), + [11697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8517), + [11700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4397), + [11703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18156), + [11706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18158), + [11709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9230), + [11712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9230), + [11715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9034), + [11718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9300), + [11721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), + [11724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18383), + [11727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14894), + [11730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19416), + [11733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), + [11736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), + [11739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8691), + [11742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4547), + [11745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18128), + [11748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18136), + [11751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9235), + [11754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9235), + [11757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9105), + [11760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9385), + [11763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1027), + [11766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18482), + [11769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14905), + [11772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19457), + [11775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1028), + [11778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2694), + [11781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8693), + [11784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4548), + [11787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18195), + [11790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18198), + [11793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9311), + [11796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9311), + [11799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8986), + [11802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9315), + [11805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(579), + [11808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18043), + [11811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14729), + [11814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20474), + [11817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [11820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), + [11823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8525), + [11826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4353), + [11829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18088), + [11832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18092), + [11835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9735), + [11838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9735), + [11841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9258), + [11844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9875), + [11847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), + [11850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18187), + [11853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14396), + [11856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19682), + [11859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1058), + [11862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2799), + [11865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8703), + [11868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4553), + [11871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18518), + [11874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18519), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13615), + [11879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9717), + [11882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9717), + [11885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9247), + [11888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9558), + [11891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [11894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18118), + [11897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14664), + [11900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19815), + [11903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(920), + [11906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [11909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8657), + [11912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4508), + [11915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18664), + [11918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18672), + [11921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9922), + [11924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9922), + [11927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9190), + [11930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9848), + [11933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [11936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18225), + [11939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14834), + [11942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20660), + [11945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [11948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [11951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8621), + [11954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4469), + [11957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18120), + [11960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18122), + [11963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), + [11965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(3663), + [11968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(5749), + [11971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(7961), + [11974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(16614), + [11977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(16621), + [11980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(16626), + [11983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(18701), + [11986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(8416), + [11989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(19028), + [11992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(19174), + [11995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(19218), + [11998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(21316), + [12001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(19290), + [12004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(19554), + [12007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(20104), + [12010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(24963), + [12013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(20123), + [12016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__program_repeat1, 2, 0, 0), SHIFT_REPEAT(24867), + [12019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), SHIFT_REPEAT(13615), + [12022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__program, 1, 0, 0), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16614), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16621), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16626), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18701), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19028), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19218), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21316), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19290), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19554), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20104), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24963), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24867), + [12056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9538), + [12059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9538), + [12062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9241), + [12065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9884), + [12068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), + [12071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18117), + [12074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14962), + [12077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19639), + [12080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), + [12083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2778), + [12086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8701), + [12089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4552), + [12092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18453), + [12095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18456), + [12098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9842), + [12101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9842), + [12104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9303), + [12107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9555), + [12110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(913), + [12113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18196), + [12116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14469), + [12119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21282), + [12122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [12125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2052), + [12128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8633), + [12131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4475), + [12134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18647), + [12137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18648), + [12140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), + [12142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16419), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [12156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [12166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10332), + [12169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10332), + [12172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9554), + [12175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10924), + [12178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [12181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18425), + [12184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14559), + [12187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20783), + [12190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(890), + [12193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), + [12196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8647), + [12199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4489), + [12202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18130), + [12205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18145), + [12208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9071), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13208), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), + [12214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8417), + [12216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [12218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [12220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8152), + [12222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16627), + [12224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16628), + [12226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16606), + [12228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18338), + [12230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8425), + [12232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18996), + [12234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19006), + [12236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19007), + [12238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20714), + [12240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8418), + [12242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20454), + [12244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10676), + [12247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10676), + [12250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9532), + [12253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10461), + [12256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(973), + [12259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18507), + [12262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14779), + [12265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20878), + [12268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [12271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2502), + [12274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8675), + [12277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4527), + [12280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18024), + [12283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18026), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9943), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), + [12290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10336), + [12293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10336), + [12296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10029), + [12299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10511), + [12302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(979), + [12305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18673), + [12308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14789), + [12311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20969), + [12314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(980), + [12317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2526), + [12320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8677), + [12323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4530), + [12326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18172), + [12329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18174), + [12332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10313), + [12335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10313), + [12338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9517), + [12341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10779), + [12344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [12347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18681), + [12350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14544), + [12353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20482), + [12356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [12359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2180), + [12362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8645), + [12365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4486), + [12368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18042), + [12371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18045), + [12374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10811), + [12377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10811), + [12380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9942), + [12383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10602), + [12386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(739), + [12389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18500), + [12392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14439), + [12395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20991), + [12398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(740), + [12401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1669), + [12404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8596), + [12407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4442), + [12410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18233), + [12413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18234), + [12416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vid, 1, 0, 0), + [12418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vid, 1, 0, 0), + [12420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strid, 1, 0, 0), + [12422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10875), + [12425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10875), + [12428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9832), + [12431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10500), + [12434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(637), + [12437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18146), + [12440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14908), + [12443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21273), + [12446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(638), + [12449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1308), + [12452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8727), + [12455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4390), + [12458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18643), + [12461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18646), + [12464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10064), + [12467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10064), + [12470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9556), + [12473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10308), + [12476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(961), + [12479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18521), + [12482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14755), + [12485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20676), + [12488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(962), + [12491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2460), + [12494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8671), + [12497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4523), + [12500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18435), + [12503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18436), + [12506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10845), + [12509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10845), + [12512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9982), + [12515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10807), + [12518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(745), + [12521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18227), + [12524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14456), + [12527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19302), + [12530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [12533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), + [12536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8598), + [12539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4589), + [12542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18667), + [12545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18668), + [12548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10784), + [12551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10784), + [12554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9970), + [12557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10355), + [12560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(631), + [12563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18490), + [12566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14864), + [12569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21183), + [12572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(632), + [12575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), + [12578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8717), + [12581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4385), + [12584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18575), + [12587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18576), + [12590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10358), + [12593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10358), + [12596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9786), + [12599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10395), + [12602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(967), + [12605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18105), + [12608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14768), + [12611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20780), + [12614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(968), + [12617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2481), + [12620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8673), + [12623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4524), + [12626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18654), + [12629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18662), + [12632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10406), + [12635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10406), + [12638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9628), + [12641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10302), + [12644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(895), + [12647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18317), + [12650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14594), + [12653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19315), + [12656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [12659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2246), + [12662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8651), + [12665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4495), + [12668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18432), + [12671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18440), + [12674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [12682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [12692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 6, 0, 39), + [12694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 6, 0, 39), + [12696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_exp, 5, 0, 0), + [12698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_exp, 5, 0, 0), + [12700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 6, 0, 40), + [12702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 6, 0, 40), + [12704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_exp, 7, 0, 0), + [12706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_exp, 7, 0, 0), + [12708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_exp, 7, 0, 0), + [12710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_exp, 7, 0, 0), + [12712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 7, 0, 38), + [12714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 7, 0, 38), + [12716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 7, 0, 39), + [12718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 7, 0, 39), + [12720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 7, 0, 40), + [12722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 7, 0, 40), + [12724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 7, 0, 51), + [12726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 7, 0, 51), + [12728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11422), + [12731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11422), + [12734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10316), + [12737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11449), + [12740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [12743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(17987), + [12746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14712), + [12749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20376), + [12752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(794), + [12755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), + [12758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8615), + [12761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4465), + [12764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18523), + [12767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18524), + [12770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_exp, 5, 0, 0), + [12772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_exp, 5, 0, 0), + [12774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_exp, 5, 0, 0), + [12776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_exp, 5, 0, 0), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [12784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_exp, 5, 0, 0), + [12786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_exp, 5, 0, 0), + [12788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_exp, 8, 0, 0), + [12790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_exp, 8, 0, 0), + [12792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_exp, 8, 0, 0), + [12794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_exp, 8, 0, 0), + [12796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 5, 0, 10), + [12798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 5, 0, 10), + [12800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11081), + [12803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11081), + [12806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10329), + [12809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11610), + [12812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [12815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18059), + [12818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14757), + [12821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20476), + [12824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [12827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [12830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8617), + [12833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4466), + [12836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18700), + [12839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18702), + [12842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 5, 0, 23), + [12844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 5, 0, 23), + [12846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11448), + [12849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11448), + [12852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10364), + [12855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11406), + [12858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(613), + [12861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18694), + [12864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14764), + [12867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20859), + [12870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(614), + [12873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1225), + [12876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8540), + [12879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4374), + [12882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18285), + [12885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18287), + [12888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_exp, 3, 0, 0), + [12890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_exp, 3, 0, 0), + [12892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_exp, 4, 0, 0), + [12894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_exp, 4, 0, 0), + [12896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11166), + [12899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11166), + [12902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10663), + [12905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11803), + [12908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [12911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18029), + [12914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14812), + [12917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21080), + [12920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(716), + [12923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [12926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8588), + [12929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4430), + [12932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18265), + [12935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18298), + [12938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 8, 0, 51), + [12940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 8, 0, 51), + [12942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lab, 1, 0, 0), + [12944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lab, 1, 0, 0), + [12946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_exp, 3, 0, 0), + [12948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_exp, 3, 0, 0), + [12950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_exp, 3, 0, 0), + [12952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_exp, 3, 0, 0), + [12954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_exp, 4, 0, 0), + [12956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_exp, 4, 0, 0), + [12958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_exp, 4, 0, 0), + [12960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_exp, 4, 0, 0), + [12962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_exp, 3, 0, 0), + [12964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_exp, 3, 0, 0), + [12966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_term, 3, 0, 0), + [12968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_term, 3, 0, 0), + [12970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 5, 0, 24), + [12972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 5, 0, 24), + [12974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11281), + [12977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11281), + [12980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10709), + [12983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11122), + [12986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(721), + [12989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18251), + [12992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14873), + [12995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19643), + [12998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [13001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1606), + [13004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8590), + [13007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4435), + [13010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18637), + [13013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18641), + [13016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backquote, 3, 0, 0), + [13018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backquote, 3, 0, 0), + [13020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 6, 0, 25), + [13022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 6, 0, 25), + [13024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_longvid, 1, 0, 0), + [13026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_longvid, 1, 0, 0), + [13028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_exp, 6, 0, 0), + [13030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_exp, 6, 0, 0), + [13032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scon_exp, 1, 0, 0), + [13034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scon_exp, 1, 0, 0), + [13036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vid_exp, 1, 0, 0), + [13038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vid_exp, 1, 0, 0), + [13040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scon, 1, 0, 0), + [13042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scon, 1, 0, 0), + [13044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_exp, 2, 0, 0), + [13046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_exp, 2, 0, 0), + [13048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vid_exp, 2, 0, 0), + [13050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vid_exp, 2, 0, 0), + [13052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_exp, 2, 0, 0), + [13054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_exp, 2, 0, 0), + [13056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recordsel_exp, 2, 0, 0), + [13058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recordsel_exp, 2, 0, 0), + [13060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_exp, 2, 0, 0), + [13062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_exp, 2, 0, 0), + [13064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_longvid, 2, 0, 0), + [13066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_longvid, 2, 0, 0), + [13068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_exp, 4, 0, 0), + [13070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_exp, 4, 0, 0), + [13072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_exp, 2, 0, 0), + [13074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_exp, 2, 0, 0), + [13076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_backquote, 2, 0, 0), + [13078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_backquote, 2, 0, 0), + [13080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_exp, 4, 0, 0), + [13082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_exp, 4, 0, 0), + [13084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_exp, 3, 0, 0), + [13086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_exp, 3, 0, 0), + [13088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11549), + [13091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11549), + [13094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10925), + [13097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11284), + [13100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [13103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(17985), + [13106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14443), + [13109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20247), + [13112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [13115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [13118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8553), + [13121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4406), + [13124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18336), + [13127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18342), + [13130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 4, 0, 10), + [13132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 4, 0, 10), + [13134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11745), + [13137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11745), + [13140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10304), + [13143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11375), + [13146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [13149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18060), + [13152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14536), + [13155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20583), + [13158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(686), + [13161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), + [13164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8562), + [13167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4408), + [13170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18068), + [13173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18070), + [13176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11130), + [13179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11130), + [13182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10356), + [13185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11538), + [13188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(697), + [13191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18200), + [13194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14678), + [13197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(21200), + [13200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(698), + [13203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), + [13206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8577), + [13209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4415), + [13212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18599), + [13215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18600), + [13218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10893), + [13221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10893), + [13224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9906), + [13227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10292), + [13230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1015), + [13233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18431), + [13236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14838), + [13239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20291), + [13242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [13245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), + [13248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8521), + [13251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4344), + [13254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18162), + [13257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18442), + [13260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_exp, 6, 0, 0), + [13262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_exp, 6, 0, 0), + [13264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_exp, 6, 0, 0), + [13266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_exp, 6, 0, 0), + [13268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_exp, 6, 0, 0), + [13270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_exp, 6, 0, 0), + [13272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_exp, 6, 0, 0), + [13274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_exp, 6, 0, 0), + [13276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_exp, 3, 0, 0), + [13278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_exp, 3, 0, 0), + [13280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_type, 4, 0, 0), + [13282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_type, 4, 0, 0), + [13284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 6, 0, 23), + [13286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 6, 0, 23), + [13288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 6, 0, 24), + [13290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 6, 0, 24), + [13292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_exp, 5, 0, 0), + [13294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_exp, 5, 0, 0), + [13296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11716), + [13299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11716), + [13302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(10322), + [13305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11455), + [13308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(691), + [13311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18697), + [13314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14633), + [13317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20857), + [13320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [13323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), + [13326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8570), + [13329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4411), + [13332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18286), + [13335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18290), + [13338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 6, 0, 38), + [13340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 6, 0, 38), + [13342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exp, 5, 0, 25), + [13344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exp, 5, 0, 25), + [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [13354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [13356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [13358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18923), + [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18923), + [13362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [13366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [13374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(12117), + [13377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(12117), + [13380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11344), + [13383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(12118), + [13386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [13389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18329), + [13392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14892), + [13395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19414), + [13398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(589), + [13401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), + [13404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8558), + [13407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4363), + [13410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18151), + [13413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18152), + [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [13446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16346), + [13448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16427), + [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [13456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16430), + [13458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16434), + [13460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16440), + [13462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16444), + [13464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16447), + [13466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16450), + [13468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16459), + [13470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16464), + [13472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16470), + [13474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16475), + [13476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16479), + [13478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16483), + [13480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16486), + [13482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16488), + [13484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16491), + [13486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16494), + [13488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16497), + [13490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16502), + [13492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16505), + [13494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16507), + [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [13498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16508), + [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [13504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16510), + [13506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16516), + [13508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16522), + [13510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16526), + [13512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16528), + [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [13516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16530), + [13518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16532), + [13520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16536), + [13522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16538), + [13524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16540), + [13526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16545), + [13528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16549), + [13530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16550), + [13532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16551), + [13534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16552), + [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [13538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16553), + [13540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16554), + [13542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16555), + [13544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16556), + [13546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16559), + [13548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16560), + [13550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16561), + [13552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16562), + [13554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16563), + [13556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16564), + [13558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16565), + [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [13562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16566), + [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [13568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16567), + [13570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16568), + [13572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16569), + [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [13578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16570), + [13580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16571), + [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [13584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11924), + [13587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11924), + [13590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11501), + [13593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11926), + [13596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(607), + [13599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18365), + [13602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14705), + [13605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(20704), + [13608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(608), + [13611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1204), + [13614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8527), + [13617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4372), + [13620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18163), + [13623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18164), + [13626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16572), + [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [13632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16574), + [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [13636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16576), + [13638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16577), + [13640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16578), + [13642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16579), + [13644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [13646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16580), + [13648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16581), + [13650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16582), + [13652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16583), + [13654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16585), + [13656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16586), + [13658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(12258), + [13661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(12258), + [13664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(11275), + [13667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(12261), + [13670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(595), + [13673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(18185), + [13676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(14430), + [13679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(19814), + [13682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(596), + [13685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(1162), + [13688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8725), + [13691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(4366), + [13694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(17983), + [13697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(17984), + [13700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16345), + [13702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16588), + [13704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16590), + [13706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16591), + [13708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16592), + [13710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16593), + [13712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16594), + [13714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16595), + [13716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16596), + [13718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16597), + [13720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16599), + [13722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16600), + [13724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16601), + [13726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16602), + [13728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16603), + [13730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16605), + [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [13738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [13744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16529), + [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [13752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [13754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [13756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18836), + [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18836), + [13760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [13762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [13764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), + [13766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [13768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [13770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [13772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19201), + [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19201), + [13776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [13780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [13782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [13784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18873), + [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18873), + [13788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [13790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [13792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [13794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [13796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19194), + [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19194), + [13800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [13804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [13806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [13808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18715), + [13810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18715), + [13812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [13816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13617), + [13818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), SHIFT_REPEAT(13617), + [13821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [13823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [13825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19222), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19222), + [13829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16615), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [13837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [13839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [13841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19221), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19221), + [13845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [13849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [13851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [13853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19021), + [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19021), + [13857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [13861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [13863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), + [13865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19064), + [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19064), + [13869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [13873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [13875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [13877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18931), + [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18931), + [13881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [13885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [13887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [13889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18724), + [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18724), + [13893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [13901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [13915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), + [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13585), + [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13535), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [13939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), SHIFT_REPEAT(13535), + [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13597), + [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13519), + [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [13960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), SHIFT_REPEAT(13597), + [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [14005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), + [14007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [14015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), SHIFT_REPEAT(13519), + [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [14024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_case_repeat1, 2, 0, 0), SHIFT_REPEAT(13585), + [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [14031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_list_repeat1, 2, 0, 0), + [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [14037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [14039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [14041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [14055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [14067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [14069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_eqn, 3, 0, 50), + [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [14083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [14103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [14105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [14117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [14131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [14139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), + [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [14145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [14147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16495), + [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [14161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [14169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [14181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_eqn, 4, 0, 58), + [14183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_tuple_repeat1, 2, 0, 0), + [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [14207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [14219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13382), + [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [14235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [14243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [14245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [14255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [14257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [14259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [14269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13806), + [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13806), + [14273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13577), + [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14303), + [14277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13814), + [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [14281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18166), + [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14740), + [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [14289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13945), + [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9338), + [14295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [14309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [14311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [14329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), + [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [14335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [14337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [14345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12156), + [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [14349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12314), + [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [14353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [14357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11954), + [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11443), + [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [14365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), + [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), + [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [14373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10858), + [14375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10167), + [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [14389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9060), + [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), + [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), + [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11349), + [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11064), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [14417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_ty, 3, 0, 0), + [14419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fn_ty, 3, 0, 0), + [14421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11206), + [14425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [14427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11739), + [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [14433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [14437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11616), + [14441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11685), + [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10389), + [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10536), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11889), + [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11627), + [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), + [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9954), + [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8837), + [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [14491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10965), + [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10109), + [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10216), + [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9995), + [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10641), + [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10846), + [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10968), + [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10781), + [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13422), + [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9211), + [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9455), + [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), + [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9586), + [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9653), + [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9177), + [14565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ty, 1, 0, 0), + [14567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ty, 1, 0, 0), + [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13429), + [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11811), + [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13436), + [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13364), + [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13408), + [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13464), + [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13332), + [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13398), + [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13415), + [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13499), + [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13428), + [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13402), + [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13417), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13384), + [14597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13380), + [14603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), + [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13456), + [14609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), + [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13426), + [14615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13452), + [14621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), + [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13427), + [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [14643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [14645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13515), + [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13336), + [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13351), + [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13361), + [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [14673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13269), + [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13269), + [14677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12699), + [14679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13186), + [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), + [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24815), + [14687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18181), + [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14459), + [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13172), + [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [14699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24852), + [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14068), + [14703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13520), + [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13964), + [14707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13769), + [14709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13871), + [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13934), + [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24753), + [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24838), + [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24747), + [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24759), + [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24810), + [14725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13301), + [14729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13306), + [14731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13096), + [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13155), + [14735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13180), + [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [14739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14285), + [14741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14210), + [14743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14227), + [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14211), + [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14267), + [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24845), + [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24793), + [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24817), + [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24824), + [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24786), + [14761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [14763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13539), + [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13659), + [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13528), + [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14063), + [14773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13544), + [14775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13522), + [14777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fn_exp, 2, 0, 0), + [14779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fn_exp, 2, 0, 0), + [14781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_exp, 3, 0, 0), + [14783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_exp, 3, 0, 0), + [14785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_handle_exp, 3, 0, 0), + [14787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_handle_exp, 3, 0, 0), + [14789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_exp, 4, 0, 0), + [14791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_exp, 4, 0, 0), + [14793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), + [14795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), + [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24812), + [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24788), + [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [14803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13682), + [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13540), + [14809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13771), + [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13771), + [14813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13529), + [14815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13852), + [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), + [14819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18135), + [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14856), + [14823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), + [14827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8371), + [14829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13565), + [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13598), + [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13562), + [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13670), + [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13530), + [14839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13538), + [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13547), + [14843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8291), + [14845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24844), + [14847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24844), + [14849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14313), + [14851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14332), + [14853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14567), + [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [14857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18607), + [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14903), + [14861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), + [14865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8766), + [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24775), + [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), + [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13293), + [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14070), + [14877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13960), + [14879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13969), + [14881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13764), + [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13770), + [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13866), + [14887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24779), + [14889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8296), + [14891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8301), + [14893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8306), + [14895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8312), + [14897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8317), + [14899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8321), + [14901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), + [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13872), + [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13922), + [14907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13936), + [14909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pat, 1, 0, 0), + [14911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pat, 1, 0, 0), + [14913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [14915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24776), + [14917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24766), + [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24767), + [14921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24784), + [14923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24743), + [14925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_app_pat, 2, 0, 0), + [14927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_app_pat, 2, 0, 0), + [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24840), + [14931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24836), + [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24804), + [14935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13527), + [14937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), + [14939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14255), + [14941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13302), + [14945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13292), + [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13324), + [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13089), + [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13099), + [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13152), + [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13158), + [14957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13178), + [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13182), + [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [14963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18184), + [14965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8771), + [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13650), + [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), + [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24752), + [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), + [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14304), + [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14208), + [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14216), + [14981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14225), + [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14231), + [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14243), + [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14257), + [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14220), + [14991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14254), + [14993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8297), + [14995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8330), + [14997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8302), + [14999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8334), + [15001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8307), + [15003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8339), + [15005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8313), + [15007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [15009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24742), + [15011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8343), + [15013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13269), + [15016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13269), + [15019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(12699), + [15022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13186), + [15025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(7631), + [15028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), + [15030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(18181), + [15033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(14459), + [15036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), + [15038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(5924), + [15041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(7949), + [15044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13172), + [15047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8318), + [15049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8347), + [15051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), + [15053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8352), + [15055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8327), + [15057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8356), + [15059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8331), + [15061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8361), + [15063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8335), + [15065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8364), + [15067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8340), + [15069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8367), + [15071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8344), + [15073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8372), + [15075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24771), + [15077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8348), + [15079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8289), + [15081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24802), + [15083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8353), + [15085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8378), + [15087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8357), + [15089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), + [15091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8362), + [15093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8365), + [15095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8369), + [15097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8374), + [15099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24785), + [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24820), + [15103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8376), + [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24770), + [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [15109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18617), + [15111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8812), + [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [15115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18621), + [15117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8815), + [15119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [15121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18627), + [15123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8818), + [15125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24847), + [15127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [15129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18634), + [15131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8821), + [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), + [15135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18110), + [15137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [15139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13771), + [15142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13771), + [15145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13529), + [15148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13852), + [15151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(7503), + [15154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(18135), + [15157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(14856), + [15160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(5967), + [15163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(7504), + [15166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13565), + [15169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [15171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13806), + [15174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13806), + [15177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13577), + [15180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13814), + [15183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(7937), + [15186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(18166), + [15189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(14740), + [15192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(5882), + [15195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(7633), + [15198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_app_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(13945), + [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [15203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [15205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [15207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [15209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), + [15211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8421), + [15213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [15215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16610), + [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16611), + [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16606), + [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18171), + [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), + [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18807), + [15231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18810), + [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18813), + [15235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19423), + [15237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20510), + [15239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), + [15241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14745), + [15243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), + [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9797), + [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [15251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [15253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16617), + [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16618), + [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18218), + [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18816), + [15261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18825), + [15263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18826), + [15265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19830), + [15267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21364), + [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), + [15271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13712), + [15273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8436), + [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13250), + [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13781), + [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), + [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13128), + [15283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(8424), + [15286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), + [15288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(3751), + [15291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(5814), + [15294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(8149), + [15297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(16617), + [15300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(16618), + [15303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(16606), + [15306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(18218), + [15309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(8425), + [15312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(18816), + [15315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(18825), + [15318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(18826), + [15321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(19830), + [15324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 2, 0, 19), SHIFT_REPEAT(21364), + [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8426), + [15329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8429), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), + [15333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8428), + [15335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8443), + [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), + [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13713), + [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), + [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14046), + [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), + [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13207), + [15349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), + [15351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(8431), + [15354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(3907), + [15357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(5820), + [15360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(8152), + [15363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(16627), + [15366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(16628), + [15369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(16606), + [15372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(18338), + [15375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(8425), + [15378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(18996), + [15381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(19006), + [15384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(19007), + [15387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(20714), + [15390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctapp_strexp_repeat1, 2, 0, 0), SHIFT_REPEAT(20454), + [15393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(8432), + [15396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), + [15398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(3679), + [15401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(5809), + [15404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(8148), + [15407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(16610), + [15410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(16611), + [15413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(16606), + [15416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(18171), + [15419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(8425), + [15422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(18807), + [15425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(18810), + [15428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(18813), + [15431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(19423), + [15434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 2, 0, 3), SHIFT_REPEAT(20510), + [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13164), + [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), + [15441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14460), + [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13167), + [15445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14462), + [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9910), + [15449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(8440), + [15452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), + [15454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(3751), + [15457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(5814), + [15460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(8149), + [15463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(16617), + [15466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(16618), + [15469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(16606), + [15472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(18218), + [15475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(8425), + [15478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(18816), + [15481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(18825), + [15484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(18826), + [15487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(19830), + [15490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 2, 0, 45), SHIFT_REPEAT(21364), + [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), + [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13169), + [15497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14554), + [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9852), + [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), + [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16627), + [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16628), + [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18338), + [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18996), + [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19007), + [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20714), + [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20454), + [15523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tycon, 1, 0, 0), + [15525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tycon, 1, 0, 0), + [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13067), + [15529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren_ty, 1, 0, 0), + [15531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tyseq, 1, 0, 0), + [15533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren_ty, 1, 0, 0), + [15535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14260), + [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14260), + [15539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14155), + [15541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14294), + [15543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), + [15545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18111), + [15547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14581), + [15549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [15551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12010), + [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), + [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14274), + [15559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tycon_ty, 2, 0, 0), + [15561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tycon_ty, 2, 0, 0), + [15563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [15565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12580), + [15567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_ty, 3, 0, 0), + [15569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tyseq, 3, 0, 0), + [15571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_ty, 3, 0, 0), + [15573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_ty, 3, 0, 0), + [15575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_ty, 3, 0, 0), + [15577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [15579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12560), + [15581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_ty, 4, 0, 0), + [15583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_ty, 4, 0, 0), + [15585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [15587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12561), + [15589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [15591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12563), + [15593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_ty, 5, 0, 0), + [15595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_ty, 5, 0, 0), + [15597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [15599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12572), + [15601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_ty, 6, 0, 0), + [15603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_ty, 6, 0, 0), + [15605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [15607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12564), + [15609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_ty, 7, 0, 0), + [15611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_ty, 7, 0, 0), + [15613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [15615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12581), + [15617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [15619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12058), + [15621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tyvar, 1, 0, 0), + [15623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tyvar, 1, 0, 0), + [15625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_longtycon, 2, 0, 0), + [15627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_longtycon, 2, 0, 0), + [15629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_ty, 8, 0, 0), + [15631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_ty, 8, 0, 0), + [15633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [15635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12593), + [15637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fmrule_repeat1, 2, 0, 14), SHIFT_REPEAT(14260), + [15640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fmrule_repeat1, 2, 0, 14), SHIFT_REPEAT(14260), + [15643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fmrule_repeat1, 2, 0, 14), SHIFT_REPEAT(14155), + [15646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fmrule_repeat1, 2, 0, 14), SHIFT_REPEAT(14294), + [15649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fmrule_repeat1, 2, 0, 14), SHIFT_REPEAT(7948), + [15652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_fmrule_repeat1, 2, 0, 14), SHIFT_REPEAT(18111), + [15655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fmrule_repeat1, 2, 0, 14), SHIFT_REPEAT(14581), + [15658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fmrule_repeat1, 2, 0, 14), + [15660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fmrule_repeat1, 2, 0, 14), SHIFT_REPEAT(5931), + [15663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fmrule_repeat1, 2, 0, 14), SHIFT_REPEAT(7969), + [15666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fmrule_repeat1, 2, 0, 14), SHIFT_REPEAT(14274), + [15669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [15671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12583), + [15673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [15675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12396), + [15677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [15679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12584), + [15681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [15683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12569), + [15685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [15687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12586), + [15689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [15691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12587), + [15693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [15695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12568), + [15697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tyvar_ty, 1, 0, 0), + [15699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tyvar_ty, 1, 0, 0), + [15701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [15703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12577), + [15705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tycon_ty, 1, 0, 0), + [15707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tycon_ty, 1, 0, 0), + [15709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [15711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12017), + [15713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_longtycon, 1, 0, 0), + [15715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_longtycon, 1, 0, 0), + [15717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [15719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12571), + [15721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [15723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12589), + [15725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [15727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12578), + [15729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [15731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12590), + [15733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_ty, 2, 0, 0), + [15735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_ty, 2, 0, 0), + [15737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [15739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12592), + [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8710), + [15743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16402), + [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16403), + [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18023), + [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), + [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19210), + [15761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19225), + [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19254), + [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20500), + [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), + [15769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), + [15773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), + [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13105), + [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16623), + [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16624), + [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18282), + [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18924), + [15793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18928), + [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18933), + [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20394), + [15799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [15801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(8504), + [15804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), + [15806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(3576), + [15809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(5580), + [15812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(7630), + [15815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(16402), + [15818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(16403), + [15821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(16606), + [15824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(18023), + [15827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(8533), + [15830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(19210), + [15833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(19225), + [15836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(19254), + [15839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(20500), + [15842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), + [15844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13120), + [15846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), + [15848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [15850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8510), + [15852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [15854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), + [15856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13699), + [15858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [15860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [15862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), + [15864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [15866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), + [15868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14236), + [15870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [15872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), + [15874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [15876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 5, 0, 0), + [15878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 5, 0, 0), + [15880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 6, 0, 0), + [15882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 6, 0, 0), + [15884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), + [15886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [15888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [15890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [15892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [15894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [15896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [15898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [15900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [15902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8715), + [15904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8713), + [15906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8738), + [15908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13027), + [15910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), + [15912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [15914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [15916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), + [15918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [15920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [15922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), + [15924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [15926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [15928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sig_sigexp, 2, 0, 0), + [15930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sig_sigexp, 2, 0, 0), + [15932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_ty, 3, 0, 0), + [15934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_ty, 3, 0, 0), + [15936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13778), + [15938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigid, 1, 0, 0), + [15940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigid, 1, 0, 0), + [15942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8566), + [15944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14258), + [15946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), + [15948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [15950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [15952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13125), + [15954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), + [15956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [15958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_ty, 4, 0, 0), + [15960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_ty, 4, 0, 0), + [15962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13778), + [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), + [15967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), + [15971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [15973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [15975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [15977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), SHIFT_REPEAT(8566), + [15980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), + [15982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), SHIFT_REPEAT(3830), + [15985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), SHIFT_REPEAT(5817), + [15988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), SHIFT_REPEAT(8150), + [15991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), SHIFT_REPEAT(16623), + [15994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), SHIFT_REPEAT(16624), + [15997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), SHIFT_REPEAT(16606), + [16000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), SHIFT_REPEAT(18282), + [16003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), SHIFT_REPEAT(8533), + [16006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), SHIFT_REPEAT(18924), + [16009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), SHIFT_REPEAT(18928), + [16012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), SHIFT_REPEAT(18933), + [16015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 2, 0, 19), SHIFT_REPEAT(20394), + [16018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [16020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), + [16022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [16024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14282), + [16026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [16028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8711), + [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13879), + [16032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), + [16034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [16036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [16040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [16042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), + [16044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [16046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [16048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [16050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), + [16052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [16054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [16056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13776), + [16058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), + [16060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [16062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [16064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), + [16066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [16068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [16070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), + [16072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [16074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [16076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), + [16078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [16080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [16082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [16084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [16086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [16088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), + [16090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [16092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_longstrid, 2, 0, 0), + [16094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24789), + [16096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_longstrid, 2, 0, 0), + [16098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [16100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [16102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [16104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [16106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), + [16108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [16110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [16112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), + [16114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [16116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [16118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), + [16120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [16122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [16124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), + [16126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [16128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [16130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [16132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [16134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [16136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), + [16138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [16140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [16142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), + [16144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [16146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [16148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), + [16150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [16152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [16154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [16156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [16158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [16160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), + [16162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [16164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [16166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), + [16168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [16170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [16172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), + [16174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [16176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [16178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), + [16180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [16182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [16184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8742), + [16186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [16188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8632), + [16190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [16192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [16194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), + [16196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [16198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [16200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), + [16202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [16204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [16206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), + [16208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [16210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [16212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), + [16214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [16216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [16218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8642), + [16220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [16222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [16224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), + [16226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [16228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [16230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8646), + [16232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [16234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [16236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), + [16238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [16240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [16242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), + [16244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [16246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [16248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), + [16250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [16252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [16254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8654), + [16256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [16258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [16260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), + [16262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [16264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [16266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), + [16268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [16270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [16272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8660), + [16274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [16276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [16278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8662), + [16280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [16282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [16284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), + [16286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [16288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [16290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), + [16292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [16294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [16296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8668), + [16298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [16300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [16302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), + [16304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [16306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [16308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), + [16310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [16312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [16314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8674), + [16316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [16318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [16320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8676), + [16322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [16324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [16326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8678), + [16328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [16330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [16332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8680), + [16334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [16336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [16338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), + [16340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [16342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [16344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8684), + [16346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [16348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [16350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8686), + [16352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [16354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [16356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), + [16358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [16360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [16362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8690), + [16364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [16366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [16368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8692), + [16370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [16372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [16374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8694), + [16376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [16378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [16380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), + [16382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [16384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [16386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8698), + [16388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [16390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [16392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8700), + [16394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [16396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [16398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), + [16400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [16402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [16404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8704), + [16406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [16408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [16410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), + [16412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [16414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [16416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8708), + [16418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [16420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [16422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [16424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13939), + [16426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigid_sigexp, 1, 0, 0), + [16428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigid_sigexp, 1, 0, 0), + [16430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), + [16432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14307), + [16434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8518), + [16436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sigexp, 1, 0, 0), + [16438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sigexp, 1, 0, 0), + [16440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8719), + [16442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [16444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [16446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), + [16448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [16450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8729), + [16452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [16454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sig_sigexp, 3, 0, 46), + [16456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sig_sigexp, 3, 0, 46), + [16458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [16460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [16462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_longstrid, 1, 0, 0), + [16464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_longstrid, 1, 0, 0), + [16466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(8738), + [16469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), + [16471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(3830), + [16474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(5817), + [16477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(8150), + [16480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(16623), + [16483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(16624), + [16486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(18282), + [16489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(18924), + [16492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(18928), + [16495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(18933), + [16498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 2, 0, 3), SHIFT_REPEAT(20394), + [16501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strid, 1, 0, 0), + [16503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [16505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_ty, 1, 0, 0), + [16507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_ty, 1, 0, 0), + [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13777), + [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13752), + [16513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13752), + [16516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13844), + [16518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13844), + [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13702), + [16523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13702), + [16526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__fn_ty, 1, 0, 0), + [16528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__fn_ty, 1, 0, 0), + [16530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12805), + [16532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13788), + [16534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24825), + [16536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24825), + [16538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10306), + [16540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8442), + [16542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), + [16544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18604), + [16546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14710), + [16548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [16550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [16552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24761), + [16554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13750), + [16556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match, 2, 0, 0), + [16558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), + [16560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match, 2, 0, 0), + [16562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match, 3, 0, 0), + [16564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match, 3, 0, 0), + [16566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8342), + [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13701), + [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14010), + [16573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_exp_repeat1, 2, 0, 0), + [16575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_exp_repeat1, 2, 0, 0), + [16577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(8894), + [16580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13928), + [16582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14010), + [16585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13928), + [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13843), + [16590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match, 1, 0, 0), + [16592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match, 1, 0, 0), + [16594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13788), + [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14050), + [16599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14050), + [16602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typbind, 4, 0, 27), + [16604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typbind, 4, 0, 27), + [16606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13787), + [16608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13902), + [16610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13975), + [16612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disj_exp, 3, 0, 0), + [16614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12116), + [16616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [16618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disj_exp, 3, 0, 0), + [16620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_exp, 4, 0, 12), + [16622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [16624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [16626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_exp, 4, 0, 12), + [16628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cond_exp, 6, 0, 41), + [16630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cond_exp, 6, 0, 41), + [16632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13718), + [16634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13718), + [16637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12900), + [16639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_exp, 2, 0, 0), + [16641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_exp, 2, 0, 0), + [16643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cond_exp, 4, 0, 11), + [16645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [16647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cond_exp, 4, 0, 11), + [16649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [16651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12892), + [16653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mrule, 3, 0, 0), + [16655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mrule, 3, 0, 0), + [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12793), + [16659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conj_exp, 3, 0, 0), + [16661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conj_exp, 3, 0, 0), + [16663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typbind, 3, 0, 15), + [16665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typbind, 3, 0, 15), + [16667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typbind_repeat1, 2, 0, 0), + [16669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__typbind_repeat1, 2, 0, 0), + [16671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), + [16673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8300), + [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), + [16678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8320), + [16681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fctid, 1, 0, 0), + [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13884), + [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12014), + [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), + [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13717), + [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12109), + [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [16705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12055), + [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [16713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fmrule, 5, 0, 43), + [16715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fmrule, 5, 0, 43), + [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13877), + [16719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fmrule, 4, 0, 26), + [16721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fmrule, 4, 0, 26), + [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12843), + [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), + [16727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fmrule, 7, 0, 60), + [16729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fmrule, 7, 0, 60), + [16731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fmrule, 7, 0, 61), + [16733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fmrule, 7, 0, 61), + [16735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fmrule, 7, 0, 62), + [16737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fmrule, 7, 0, 62), + [16739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fmrule, 8, 0, 65), + [16741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fmrule, 8, 0, 65), + [16743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fmrule, 9, 0, 69), + [16745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fmrule, 9, 0, 69), + [16747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fmrule, 10, 0, 70), + [16749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fmrule, 10, 0, 70), + [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [16753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8350), + [16756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fmrule, 6, 0, 52), + [16758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fmrule, 6, 0, 52), + [16760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12822), + [16762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12854), + [16764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [16766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13884), + [16769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fmrule, 5, 0, 42), + [16771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fmrule, 5, 0, 42), + [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13793), + [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12901), + [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12008), + [16779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_valbind, 3, 0, 13), + [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11912), + [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [16787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_valbind, 3, 0, 13), + [16789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12009), + [16791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13698), + [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13837), + [16795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13698), + [16798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13793), + [16801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13837), + [16804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13883), + [16806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_strexp, 2, 0, 0), + [16808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_strexp, 2, 0, 0), + [16810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_dec_repeat1, 2, 0, 0), + [16812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_open_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(9309), + [16815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_open_dec_repeat1, 2, 0, 0), + [16817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strid_strexp, 1, 0, 0), + [16819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strid_strexp, 1, 0, 0), + [16821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_strexp, 4, 0, 10), + [16823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_strexp, 4, 0, 10), + [16825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [16827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [16829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strexp, 1, 0, 0), + [16831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strexp, 1, 0, 0), + [16833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fctapp_strexp, 4, 0, 54), + [16835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fctapp_strexp, 4, 0, 54), + [16837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_strexp, 5, 0, 25), + [16839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_strexp, 5, 0, 25), + [16841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sequence_exp_repeat1, 2, 0, 0), + [16843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_exp_repeat1, 2, 0, 0), + [16845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9863), + [16848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [16850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12874), + [16852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_dec, 2, 0, 0), + [16854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9309), + [16856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_dec, 2, 0, 0), + [16858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(9901), + [16861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [16863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [16865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7884), + [16867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_strexp, 3, 0, 44), + [16869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_strexp, 3, 0, 44), + [16871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fctapp_strexp, 3, 0, 2), + [16873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fctapp_strexp, 3, 0, 2), + [16875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13932), + [16877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13932), + [16880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [16882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 2, 0, 0), + [16884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 2, 0, 0), + [16886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 2, 0, 0), SHIFT_REPEAT(24873), + [16889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 6, 0, 0), + [16891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wheretype_sigexp, 6, 0, 0), + [16893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 6, 0, 0), SHIFT(24873), + [16896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 7, 0, 0), + [16898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wheretype_sigexp, 7, 0, 0), + [16900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 7, 0, 0), SHIFT(24873), + [16903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 8, 0, 0), + [16905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wheretype_sigexp, 8, 0, 0), + [16907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 8, 0, 0), SHIFT(24873), + [16910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12327), + [16912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [16914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [16916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_dec, 2, 0, 0), + [16918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12067), + [16920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12067), + [16922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_dec, 2, 0, 0), + [16924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infixr_dec, 2, 0, 0), + [16926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infixr_dec, 2, 0, 0), + [16928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonfix_dec, 2, 0, 0), + [16930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nonfix_dec, 2, 0, 0), + [16932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13931), + [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13878), + [16936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13765), + [16939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13892), + [16941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13851), + [16943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13878), + [16946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13968), + [16948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14023), + [16950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14056), + [16952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13697), + [16954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13790), + [16956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13892), + [16959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13792), + [16961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13765), + [16963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13803), + [16965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13813), + [16967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13824), + [16969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13834), + [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13836), + [16973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13851), + [16976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13968), + [16979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14023), + [16982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14056), + [16985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13790), + [16988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13803), + [16991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13813), + [16994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13824), + [16997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13834), + [17000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_dec, 2, 0, 0), + [17002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_dec, 2, 0, 0), + [17004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conbind, 1, 0, 2), + [17006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12413), + [17008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conbind, 1, 0, 2), + [17010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_dec, 3, 0, 0), + [17012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_dec, 3, 0, 0), + [17014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), + [17016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(12067), + [17019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(12067), + [17022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), + [17024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12905), + [17026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infixr_dec, 3, 0, 0), + [17028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infixr_dec, 3, 0, 0), + [17030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14028), + [17032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22570), + [17034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12105), + [17036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18869), + [17038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15417), + [17040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16352), + [17042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18903), + [17044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20670), + [17046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16353), + [17048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17917), + [17050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19131), + [17052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conbind, 3, 0, 0), + [17054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18971), + [17056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__conbind, 3, 0, 0), + [17058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conbind, 3, 0, 17), + [17060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conbind, 3, 0, 17), + [17062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conbind, 1, 0, 0), + [17064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__conbind, 1, 0, 0), + [17066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__conbind_repeat1, 2, 0, 0), + [17068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conbind_repeat1, 2, 0, 0), + [17070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conbind, 4, 0, 30), + [17072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conbind, 4, 0, 30), + [17074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conbind, 2, 0, 5), + [17076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11937), + [17078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conbind, 2, 0, 5), + [17080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__conbind, 2, 0, 0), + [17082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__conbind, 2, 0, 0), + [17084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conbind_repeat1, 2, 0, 0), SHIFT_REPEAT(18971), + [17087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constr_strexp, 3, 0, 0), + [17089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constr_strexp, 3, 0, 0), + [17091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24967), + [17093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13798), + [17096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13801), + [17098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13801), + [17101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13794), + [17103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13810), + [17105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13810), + [17108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13024), + [17110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13955), + [17112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exbind, 2, 0, 5), + [17114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17841), + [17116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12066), + [17118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exbind, 2, 0, 5), + [17120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14033), + [17122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__fmatch_repeat1, 2, 0, 0), + [17124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fmatch_repeat1, 2, 0, 0), SHIFT_REPEAT(8768), + [17127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__fmatch_repeat1, 2, 0, 0), + [17129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14097), + [17131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13774), + [17133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__fmatch, 1, 0, 0), + [17135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8768), + [17137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__fmatch, 1, 0, 0), + [17139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13875), + [17141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13860), + [17143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13794), + [17146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13888), + [17148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13730), + [17150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__fmatch, 3, 0, 0), + [17152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__fmatch, 3, 0, 0), + [17154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fctbind, 10, 0, 71), + [17156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17949), + [17158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fctbind, 10, 0, 71), + [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17949), + [17162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13891), + [17164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exbind, 1, 0, 2), + [17166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17873), + [17168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12603), + [17170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exbind, 1, 0, 2), + [17172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 6, 0, 0), SHIFT(24998), + [17175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 7, 0, 0), SHIFT(24998), + [17178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 8, 0, 0), SHIFT(24998), + [17181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_datbind, 3, 0, 15), + [17183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_datbind, 3, 0, 15), + [17185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__datbind_repeat1, 2, 0, 0), + [17187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__datbind_repeat1, 2, 0, 0), + [17189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__datbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17599), + [17192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14038), + [17194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13955), + [17197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14033), + [17200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14076), + [17202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14097), + [17205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13849), + [17207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strbind, 3, 0, 15), + [17209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strbind, 3, 0, 15), + [17211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13774), + [17214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13938), + [17216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13967), + [17218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_datbind, 4, 0, 27), + [17220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_datbind, 4, 0, 27), + [17222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14019), + [17224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14055), + [17226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12887), + [17228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fctbind, 6, 0, 56), + [17230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fctbind, 6, 0, 56), + [17232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13707), + [17234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13798), + [17236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13860), + [17239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13780), + [17241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13888), + [17244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13789), + [17246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12934), + [17248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fctbind, 7, 0, 63), + [17250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fctbind, 7, 0, 63), + [17252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13802), + [17254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14038), + [17257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fctbind, 8, 0, 66), + [17259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fctbind, 8, 0, 66), + [17261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13812), + [17263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fctbind, 8, 0, 67), + [17265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fctbind, 8, 0, 67), + [17267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__datbind, 1, 0, 0), + [17269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17599), + [17271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__datbind, 1, 0, 0), + [17273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13823), + [17275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14076), + [17278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13833), + [17280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12953), + [17282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strbind, 5, 0, 48), + [17284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strbind, 5, 0, 48), + [17286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fctbind, 5, 0, 49), + [17288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fctbind, 5, 0, 49), + [17290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13938), + [17293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__fmatch, 2, 0, 0), + [17295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__fmatch, 2, 0, 0), + [17297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 2, 0, 0), SHIFT_REPEAT(24998), + [17300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13707), + [17303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__datbind, 2, 0, 0), + [17305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__datbind, 2, 0, 0), + [17307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8358), + [17309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8358), + [17312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8363), + [17314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8363), + [17317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13780), + [17320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), + [17322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8377), + [17325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8366), + [17327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sigbind, 2, 0, 0), + [17329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24031), + [17331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sigbind, 2, 0, 0), + [17333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16188), + [17335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16397), + [17337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16389), + [17339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12552), + [17341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15552), + [17343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10311), + [17345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11056), + [17347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11040), + [17349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12559), + [17351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15661), + [17353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__fctbind, 2, 0, 0), + [17355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22319), + [17357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__fctbind, 2, 0, 0), + [17359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8741), + [17361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8767), + [17363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8758), + [17365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12354), + [17367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15509), + [17369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13890), + [17371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14145), + [17373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14134), + [17375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12533), + [17377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15680), + [17379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10338), + [17381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11479), + [17383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11787), + [17385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12368), + [17387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16186), + [17389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8859), + [17391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8985), + [17393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), + [17395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12357), + [17397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15588), + [17399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14273), + [17401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14357), + [17403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14372), + [17405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12377), + [17407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15992), + [17409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14291), + [17411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14327), + [17413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14384), + [17415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12379), + [17417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15491), + [17419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10683), + [17421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11390), + [17423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11181), + [17425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12384), + [17427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15775), + [17429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strbind, 1, 0, 0), + [17431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21722), + [17433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strbind, 1, 0, 0), + [17435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sig_sigexp_repeat1, 2, 0, 47), SHIFT_REPEAT(11956), + [17438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sig_sigexp_repeat1, 2, 0, 47), + [17440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sig_sigexp_repeat1, 2, 0, 47), SHIFT_REPEAT(18744), + [17443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sig_sigexp_repeat1, 2, 0, 47), SHIFT_REPEAT(15314), + [17446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sig_sigexp_repeat1, 2, 0, 47), SHIFT_REPEAT(16525), + [17449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sig_sigexp_repeat1, 2, 0, 47), SHIFT_REPEAT(18746), + [17452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sig_sigexp_repeat1, 2, 0, 47), SHIFT_REPEAT(21362), + [17455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sig_sigexp_repeat1, 2, 0, 47), SHIFT_REPEAT(16353), + [17458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sig_sigexp_repeat1, 2, 0, 47), SHIFT_REPEAT(17906), + [17461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sig_sigexp_repeat1, 2, 0, 47), SHIFT_REPEAT(19131), + [17464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14152), + [17466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14247), + [17468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14203), + [17470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12446), + [17472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15703), + [17474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11487), + [17476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12169), + [17478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12113), + [17480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12391), + [17482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16167), + [17484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15419), + [17486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15734), + [17488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15815), + [17490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12404), + [17492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16095), + [17494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sigbind, 1, 0, 0), + [17496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sigbind, 1, 0, 0), + [17498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13847), + [17500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hol_pat, 1, 0, 0), + [17502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hol_pat, 1, 0, 0), + [17504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13645), + [17506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13976), + [17508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13978), + [17510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13978), + [17512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15342), + [17514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16221), + [17516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16089), + [17518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12409), + [17520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15682), + [17522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__fctbind, 1, 0, 0), + [17524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__fctbind, 1, 0, 0), + [17526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15160), + [17528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16252), + [17530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16034), + [17532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12414), + [17534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16101), + [17536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15173), + [17538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15540), + [17540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16245), + [17542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12426), + [17544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15516), + [17546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [17548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), + [17550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), + [17552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12430), + [17554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15608), + [17556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), + [17558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8753), + [17560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8782), + [17562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12434), + [17564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15739), + [17566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18396), + [17568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19049), + [17570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19029), + [17572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12332), + [17574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15506), + [17576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16869), + [17578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17858), + [17580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17932), + [17582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12268), + [17584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16232), + [17586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15367), + [17588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16060), + [17590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15735), + [17592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12437), + [17594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15868), + [17596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15393), + [17598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15926), + [17600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15968), + [17602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12438), + [17604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16005), + [17606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), + [17608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), + [17610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8736), + [17612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12442), + [17614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16149), + [17616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9892), + [17618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10331), + [17620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10298), + [17622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12443), + [17624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16278), + [17626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15013), + [17628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15290), + [17630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15379), + [17632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12447), + [17634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15921), + [17636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17615), + [17638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17895), + [17640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17778), + [17642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12491), + [17644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15776), + [17646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13569), + [17648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14088), + [17650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14004), + [17652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12499), + [17654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15850), + [17656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15063), + [17658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15440), + [17660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15213), + [17662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12450), + [17664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15821), + [17666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10693), + [17668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11475), + [17670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), + [17672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12451), + [17674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16009), + [17676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10795), + [17678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11626), + [17680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11312), + [17682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12455), + [17684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16168), + [17686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9837), + [17688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10949), + [17690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10768), + [17692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12456), + [17694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16285), + [17696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9845), + [17698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10099), + [17700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10853), + [17702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12457), + [17704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16077), + [17706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15327), + [17708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16260), + [17710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15811), + [17712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12011), + [17714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15920), + [17716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9858), + [17718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10207), + [17720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10100), + [17722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12461), + [17724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16097), + [17726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9891), + [17728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10269), + [17730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10166), + [17732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12463), + [17734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16198), + [17736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17422), + [17738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17928), + [17740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17721), + [17742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12661), + [17744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16229), + [17746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9327), + [17748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9914), + [17750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9890), + [17752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12466), + [17754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15855), + [17756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15144), + [17758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15919), + [17760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16031), + [17762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12471), + [17764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15761), + [17766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15201), + [17768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15580), + [17770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15727), + [17772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12475), + [17774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16344), + [17776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10377), + [17778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11628), + [17780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11291), + [17782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12477), + [17784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16082), + [17786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12831), + [17788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__valbind_repeat1, 2, 0, 0), + [17790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__valbind_repeat1, 2, 0, 0), SHIFT_REPEAT(8292), + [17793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__valbind_repeat1, 2, 0, 0), + [17795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14881), + [17797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15125), + [17799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15065), + [17801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12480), + [17803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16336), + [17805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), + [17807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), + [17809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), + [17811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12481), + [17813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15527), + [17815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9720), + [17817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10627), + [17819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10496), + [17821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12482), + [17823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15585), + [17825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__fvalbind_repeat1, 2, 0, 0), + [17827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fvalbind_repeat1, 2, 0, 0), SHIFT_REPEAT(8445), + [17830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__fvalbind_repeat1, 2, 0, 0), + [17832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9766), + [17834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10823), + [17836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10569), + [17838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12483), + [17840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15637), + [17842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9423), + [17844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9712), + [17846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9796), + [17848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12308), + [17850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16091), + [17852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17479), + [17855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), + [17857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10019), + [17859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9759), + [17861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12485), + [17863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15683), + [17865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10973), + [17867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11418), + [17869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11562), + [17871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12487), + [17873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15714), + [17875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exbind_repeat1, 2, 0, 0), + [17877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exbind_repeat1, 2, 0, 0), SHIFT_REPEAT(19094), + [17880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__exbind_repeat1, 2, 0, 0), + [17882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14590), + [17884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14984), + [17886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14989), + [17888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12503), + [17890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15903), + [17892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12510), + [17894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), + [17896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18744), + [17898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15314), + [17900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16525), + [17902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18746), + [17904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21362), + [17906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16353), + [17908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17906), + [17910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19131), + [17912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14187), + [17914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14244), + [17916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14277), + [17918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12504), + [17920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15970), + [17922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9708), + [17924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10360), + [17926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10771), + [17928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12505), + [17930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16019), + [17932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10653), + [17934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11748), + [17936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11588), + [17938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12507), + [17940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16067), + [17942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10935), + [17944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11101), + [17946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11774), + [17948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12508), + [17950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16137), + [17952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9894), + [17954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10751), + [17956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10927), + [17958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12509), + [17960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16172), + [17962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__strbind_repeat1, 2, 0, 0), + [17964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__strbind_repeat1, 2, 0, 0), SHIFT_REPEAT(21722), + [17967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__strbind_repeat1, 2, 0, 0), + [17969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigbind, 3, 0, 15), + [17971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigbind, 3, 0, 15), + [17973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24991), + [17975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__sigbind_repeat1, 2, 0, 0), + [17977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__sigbind_repeat1, 2, 0, 0), SHIFT_REPEAT(24031), + [17980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__sigbind_repeat1, 2, 0, 0), + [17982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14992), + [17984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15285), + [17986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15369), + [17988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12511), + [17990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16197), + [17992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15064), + [17994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15426), + [17996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15161), + [17998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12512), + [18000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16231), + [18002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24041), + [18004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12600), + [18006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18869), + [18008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15417), + [18010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16352), + [18012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18903), + [18014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20670), + [18016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17917), + [18018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__fctbind_repeat1, 2, 0, 0), + [18020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fctbind_repeat1, 2, 0, 0), SHIFT_REPEAT(22319), + [18023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__fctbind_repeat1, 2, 0, 0), + [18025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), + [18027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), + [18029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [18031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12513), + [18033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16257), + [18035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14982), + [18037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15230), + [18039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15427), + [18041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12516), + [18043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16294), + [18045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), + [18047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), + [18049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [18051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12519), + [18053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16326), + [18055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9476), + [18057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9926), + [18059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9710), + [18061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12520), + [18063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16264), + [18065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14408), + [18067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15087), + [18069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15124), + [18071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12524), + [18073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16143), + [18075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9751), + [18077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10664), + [18079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10354), + [18081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12525), + [18083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16237), + [18085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9262), + [18087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9839), + [18089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9742), + [18091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12526), + [18093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16328), + [18095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9313), + [18097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9928), + [18099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9779), + [18101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12527), + [18103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16228), + [18105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9388), + [18107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9974), + [18109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9840), + [18111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12528), + [18113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15752), + [18115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__valbind, 1, 0, 0), + [18117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), + [18119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__valbind, 1, 0, 0), + [18121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9170), + [18123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9427), + [18125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), + [18127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12529), + [18129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15983), + [18131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9980), + [18133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10440), + [18135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10896), + [18137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12530), + [18139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16132), + [18141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14310), + [18143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14827), + [18145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14684), + [18147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12256), + [18149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15753), + [18151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15057), + [18153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15225), + [18155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15463), + [18157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12535), + [18159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16286), + [18161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16438), + [18163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16677), + [18165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17408), + [18167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12306), + [18169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16027), + [18171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13150), + [18173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13453), + [18175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13374), + [18177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12318), + [18179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15924), + [18181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14975), + [18183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15264), + [18185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15328), + [18187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12536), + [18189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15497), + [18191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14976), + [18193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15304), + [18195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15227), + [18197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12537), + [18199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15557), + [18201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12175), + [18203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12870), + [18205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14977), + [18207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15364), + [18209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15267), + [18211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12538), + [18213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15628), + [18215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9869), + [18217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10327), + [18219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10528), + [18221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12539), + [18223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15691), + [18225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16421), + [18227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17160), + [18229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16853), + [18231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12361), + [18233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15748), + [18235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11956), + [18237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12924), + [18239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9257), + [18241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9888), + [18243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9857), + [18245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12540), + [18247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15744), + [18249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14141), + [18251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14268), + [18253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14219), + [18255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12470), + [18257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15518), + [18259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), + [18261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9401), + [18263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9255), + [18265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12541), + [18267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15860), + [18269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9122), + [18271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), + [18273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9356), + [18275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12497), + [18277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15809), + [18279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13537), + [18281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13722), + [18283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13829), + [18285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12521), + [18287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16282), + [18289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9870), + [18291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10470), + [18293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10789), + [18295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12543), + [18297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16008), + [18299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9518), + [18301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10491), + [18303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10170), + [18305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12544), + [18307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16076), + [18309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14003), + [18311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), + [18313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9522), + [18315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9515), + [18317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12545), + [18319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16111), + [18321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14354), + [18323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14638), + [18325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14611), + [18327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12546), + [18329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16170), + [18331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16073), + [18333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16347), + [18335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16630), + [18337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12276), + [18339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15934), + [18341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14334), + [18343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14649), + [18345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14628), + [18347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12547), + [18349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16299), + [18351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14974), + [18353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15372), + [18355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15216), + [18357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12323), + [18359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16136), + [18361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12686), + [18363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13278), + [18365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13175), + [18367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12342), + [18369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15774), + [18371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9612), + [18373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10703), + [18375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10605), + [18377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12548), + [18379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16325), + [18381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9263), + [18383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9714), + [18385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9587), + [18387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12549), + [18389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15495), + [18391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9266), + [18393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9776), + [18395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9770), + [18397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12553), + [18399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15566), + [18401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16420), + [18403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17671), + [18405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17175), + [18407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12297), + [18409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15947), + [18411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12115), + [18413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12759), + [18415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12956), + [18417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12388), + [18419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16007), + [18421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14689), + [18423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15028), + [18425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15010), + [18427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12554), + [18429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15576), + [18431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14694), + [18433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15032), + [18435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15024), + [18437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12555), + [18439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15589), + [18441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13724), + [18443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14198), + [18445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14137), + [18447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12522), + [18449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15777), + [18451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9293), + [18453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9867), + [18455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9799), + [18457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12556), + [18459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15616), + [18461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__fvalbind, 1, 0, 0), + [18463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [18465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__fvalbind, 1, 0, 0), + [18467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8987), + [18469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9378), + [18471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9291), + [18473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12557), + [18475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15631), + [18477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14002), + [18479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14301), + [18481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14388), + [18483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14375), + [18485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12558), + [18487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15642), + [18489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16033), + [18491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16414), + [18493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16648), + [18495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12282), + [18497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15572), + [18499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__valbind, 2, 0, 0), + [18501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__valbind, 2, 0, 0), + [18503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14105), + [18505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17708), + [18507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18332), + [18509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18322), + [18511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12363), + [18513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15955), + [18515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12791), + [18517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13063), + [18519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13235), + [18521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12371), + [18523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16339), + [18525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14002), + [18528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13791), + [18530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11272), + [18532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11973), + [18534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11943), + [18536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12444), + [18538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15812), + [18540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13899), + [18542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14105), + [18545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13919), + [18547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), + [18549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), + [18551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8883), + [18553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12532), + [18555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15706), + [18557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13954), + [18559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14032), + [18561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14089), + [18563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13796), + [18565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13773), + [18567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13816), + [18569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12790), + [18571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13842), + [18573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13736), + [18575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12149), + [18577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [18579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [18581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [18583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [18585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13796), + [18588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13859), + [18590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13816), + [18593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13887), + [18595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8797), + [18597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8846), + [18599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), + [18601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12285), + [18603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15594), + [18605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strbind, 2, 0, 0), + [18607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strbind, 2, 0, 0), + [18609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12925), + [18611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12188), + [18613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [18615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [18617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), + [18619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13898), + [18621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [18623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13842), + [18626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13899), + [18629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14034), + [18631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13082), + [18633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13469), + [18635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13406), + [18637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12397), + [18639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15861), + [18641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13919), + [18644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14058), + [18646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14065), + [18648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12249), + [18650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [18652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [18654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [18656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14075), + [18658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12809), + [18660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13937), + [18662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12858), + [18664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12867), + [18666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12872), + [18668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13736), + [18671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11355), + [18673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12050), + [18675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12041), + [18677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12458), + [18679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15689), + [18681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13706), + [18683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [18685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13779), + [18687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12933), + [18689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13898), + [18692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13797), + [18694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [18696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13800), + [18698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12938), + [18700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__fvalbind, 2, 0, 0), + [18702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__fvalbind, 2, 0, 0), + [18704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typbind, 1, 0, 0), + [18706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17479), + [18708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__typbind, 1, 0, 0), + [18710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13809), + [18712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [18714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14058), + [18717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12942), + [18719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14065), + [18722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12946), + [18724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12952), + [18726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [18728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15805), + [18730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16535), + [18732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16415), + [18734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12290), + [18736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15788), + [18738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12949), + [18740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13240), + [18742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13176), + [18744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12489), + [18746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15750), + [18748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12177), + [18750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12878), + [18752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12784), + [18754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12478), + [18756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16196), + [18758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17201), + [18760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17935), + [18762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17775), + [18764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12534), + [18766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16004), + [18768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typbind, 2, 0, 0), + [18770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__typbind, 2, 0, 0), + [18772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8728), + [18774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15274), + [18776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15694), + [18778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15948), + [18780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12311), + [18782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16274), + [18784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11142), + [18786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12089), + [18788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12084), + [18790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12531), + [18792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15969), + [18794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10799), + [18796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11332), + [18798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11592), + [18800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12542), + [18802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15944), + [18804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11461), + [18806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12392), + [18808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12196), + [18810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12315), + [18812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15558), + [18814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10712), + [18816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11401), + [18818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11367), + [18820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12550), + [18822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15512), + [18824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fctbind_repeat1, 2, 0, 0), + [18826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctbind_repeat1, 2, 0, 0), SHIFT_REPEAT(12600), + [18829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctbind_repeat1, 2, 0, 0), SHIFT_REPEAT(18869), + [18832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctbind_repeat1, 2, 0, 0), SHIFT_REPEAT(15417), + [18835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctbind_repeat1, 2, 0, 0), SHIFT_REPEAT(16352), + [18838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctbind_repeat1, 2, 0, 0), SHIFT_REPEAT(18903), + [18841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctbind_repeat1, 2, 0, 0), SHIFT_REPEAT(20670), + [18844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctbind_repeat1, 2, 0, 0), SHIFT_REPEAT(16353), + [18847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17917), + [18850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_fctbind_repeat1, 2, 0, 0), SHIFT_REPEAT(19131), + [18853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10183), + [18855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11177), + [18857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11514), + [18859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12335), + [18861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16225), + [18863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16114), + [18865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16392), + [18867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16376), + [18869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12551), + [18871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15528), + [18873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exbind, 2, 0, 0), + [18875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19094), + [18877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__exbind, 2, 0, 0), + [18879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14983), + [18881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15256), + [18883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15255), + [18885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12348), + [18887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16327), + [18889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14003), + [18892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8319), + [18894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8319), + [18897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), + [18899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8328), + [18902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), + [18904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8332), + [18907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [18909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8341), + [18912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), + [18914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8349), + [18917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exbind, 1, 0, 0), + [18919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__exbind, 1, 0, 0), + [18921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15035), + [18923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15386), + [18925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15133), + [18927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12350), + [18929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15897), + [18931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8366), + [18934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), + [18936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8370), + [18939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), + [18941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8375), + [18944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13711), + [18947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12902), + [18949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12209), + [18951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [18953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [18955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [18957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13832), + [18959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13894), + [18961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12119), + [18963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [18965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [18967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [18969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12045), + [18971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [18973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [18975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [18977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13832), + [18980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14060), + [18982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13918), + [18984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14060), + [18987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14084), + [18989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14084), + [18992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12717), + [18994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12065), + [18996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [18998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [19000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), + [19002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12731), + [19004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12131), + [19006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [19008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [19010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [19012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [19014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12142), + [19016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [19018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [19020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [19022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13711), + [19024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12782), + [19026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12135), + [19028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [19030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [19032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [19034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13795), + [19036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12789), + [19038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12178), + [19040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [19042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [19044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [19046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13815), + [19048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [19050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13841), + [19052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13733), + [19054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12906), + [19056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12921), + [19058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [19060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13895), + [19062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12718), + [19064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12228), + [19066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [19068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [19070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [19072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14057), + [19074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12245), + [19076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [19078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [19080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [19082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14064), + [19084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12748), + [19086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [19088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12834), + [19090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [19092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [19094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [19096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [19098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12894), + [19100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12930), + [19102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12231), + [19104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [19106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [19108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [19110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [19112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12936), + [19114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12937), + [19116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [19118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12941), + [19120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13896), + [19122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [19124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [19126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13896), + [19129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [19131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exbind, 4, 0, 27), + [19133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exbind, 4, 0, 27), + [19135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exbind, 4, 0, 30), + [19137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exbind, 4, 0, 30), + [19139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exbind, 3, 0, 15), + [19141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exbind, 3, 0, 15), + [19143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exbind, 3, 0, 17), + [19145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exbind, 3, 0, 17), + [19147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13992), + [19149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exbind, 5, 0, 28), + [19151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exbind, 5, 0, 28), + [19153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fvalbind, 1, 0, 0), + [19155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fvalbind, 1, 0, 0), + [19157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14001), + [19159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_datatype_dec, 2, 0, 0), + [19161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_datatype_dec, 2, 0, 0), + [19163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16637), + [19165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), + [19167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8298), + [19170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), + [19172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8303), + [19175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8309), + [19177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8309), + [19180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13958), + [19182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [19184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8324), + [19187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8384), + [19189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8384), + [19192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [19194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8345), + [19197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), + [19199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8354), + [19202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exbind, 4, 0, 31), + [19204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exbind, 4, 0, 31), + [19206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstype_dec, 5, 0, 29), + [19208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstype_dec, 5, 0, 29), + [19210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12153), + [19212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [19214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [19216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_open_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(14078), + [19219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12171), + [19221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [19223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [19225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [19227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13710), + [19229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_dec, 4, 0, 0), + [19231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_dec, 4, 0, 0), + [19233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12029), + [19235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [19237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [19239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [19241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12042), + [19243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [19245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [19247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12195), + [19249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [19251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [19253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_open_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(13924), + [19256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_definition, 6, 0, 36), + [19258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_definition, 6, 0, 36), + [19260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_dec, 3, 0, 0), + [19262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_dec, 3, 0, 0), + [19264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12088), + [19266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [19268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12198), + [19270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [19272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [19274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), + [19276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), + [19278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8294), + [19281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12039), + [19283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [19285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [19287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [19289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12092), + [19291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [19293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [19295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [19297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_dec, 2, 0, 0), + [19299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_dec, 2, 0, 0), + [19301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12935), + [19303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_datarepl_dec, 5, 0, 28), + [19305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_datarepl_dec, 5, 0, 28), + [19307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12223), + [19309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [19311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [19313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [19315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12043), + [19317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [19319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [19321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [19323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 2, 0, 0), SHIFT_REPEAT(24929), + [19326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [19328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [19330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [19332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12943), + [19334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [19336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pat, 4, 0, 0), + [19338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pat, 4, 0, 0), + [19340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pat, 4, 0, 0), + [19342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pat, 4, 0, 0), + [19344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12955), + [19346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strdec, 1, 0, 0), + [19348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__strdec, 1, 0, 0), + [19350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12842), + [19352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13825), + [19354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pat, 4, 0, 0), + [19356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pat, 4, 0, 0), + [19358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12015), + [19360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [19362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_pat, 4, 0, 0), + [19364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_pat, 4, 0, 0), + [19366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12997), + [19368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature_sigdec, 2, 0, 0), + [19370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature_sigdec, 2, 0, 0), + [19372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_datatype, 3, 0, 0), + [19374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_datatype, 3, 0, 0), + [19376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstype_dec, 6, 0, 16), + [19378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstype_dec, 6, 0, 16), + [19380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14073), + [19382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12130), + [19384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [19386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_datatype_dec, 4, 0, 16), + [19388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_datatype_dec, 4, 0, 16), + [19390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12057), + [19392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [19394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [19396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [19398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstype_dec, 4, 0, 0), + [19400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstype_dec, 4, 0, 0), + [19402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstype_dec, 7, 0, 53), + [19404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstype_dec, 7, 0, 53), + [19406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12061), + [19408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [19410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [19412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [19414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sigdec, 1, 0, 0), + [19416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sigdec, 1, 0, 0), + [19418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [19420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [19422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pat, 5, 0, 0), + [19424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pat, 5, 0, 0), + [19426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pat, 5, 0, 0), + [19428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pat, 5, 0, 0), + [19430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pat, 5, 0, 0), + [19432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pat, 5, 0, 0), + [19434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_pat, 5, 0, 0), + [19436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_pat, 5, 0, 0), + [19438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12964), + [19440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12927), + [19442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_strdec, 5, 0, 32), + [19444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_strdec, 5, 0, 32), + [19446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_strdec, 4, 0, 18), + [19448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_strdec, 4, 0, 18), + [19450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_strdec, 4, 0, 20), + [19452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_strdec, 4, 0, 20), + [19454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14059), + [19456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wildcard_pat, 1, 0, 0), + [19458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_pat, 1, 0, 0), + [19460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_definition_with_proof, 7, 0, 36), + [19462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_definition_with_proof, 7, 0, 36), + [19464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pat, 6, 0, 0), + [19466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pat, 6, 0, 0), + [19468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pat, 6, 0, 0), + [19470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pat, 6, 0, 0), + [19472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pat, 6, 0, 0), + [19474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pat, 6, 0, 0), + [19476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_theorem_with_proof, 7, 0, 59), + [19478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_theorem_with_proof, 7, 0, 59), + [19480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_pat, 6, 0, 0), + [19482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_pat, 6, 0, 0), + [19484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12665), + [19486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13910), + [19488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__fctdec, 1, 0, 0), + [19490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__fctdec, 1, 0, 0), + [19492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pat, 7, 0, 0), + [19494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pat, 7, 0, 0), + [19496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pat, 7, 0, 0), + [19498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pat, 7, 0, 0), + [19500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pat, 8, 0, 0), + [19502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pat, 8, 0, 0), + [19504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [19506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12730), + [19508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_definition_with_proof, 8, 0, 36), + [19510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_definition_with_proof, 8, 0, 36), + [19512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_theorem_with_proof, 8, 0, 64), + [19514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_theorem_with_proof, 8, 0, 64), + [19516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_dec, 2, 0, 0), + [19518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_dec, 2, 0, 0), + [19520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_dec, 3, 0, 0), + [19522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_dec, 3, 0, 0), + [19524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12965), + [19526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [19528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pat, 8, 0, 0), + [19530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pat, 8, 0, 0), + [19532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12741), + [19534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 6, 0, 0), SHIFT(24929), + [19537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 7, 0, 0), SHIFT(24929), + [19540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13760), + [19542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14078), + [19544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [19546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [19548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [19550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__topdec, 1, 0, 0), + [19552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__topdec, 1, 0, 0), + [19554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13910), + [19557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 8, 0, 0), SHIFT(24929), + [19560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13755), + [19562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [19564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_definition, 5, 0, 36), + [19566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_definition, 5, 0, 36), + [19568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_strdec, 3, 0, 0), + [19570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_strdec, 3, 0, 0), + [19572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scon_pat, 1, 0, 0), + [19574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scon_pat, 1, 0, 0), + [19576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [19578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_open_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(13835), + [19581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [19583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vid_pat, 1, 0, 0), + [19585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vid_pat, 1, 0, 0), + [19587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13755), + [19590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12910), + [19592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [19594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8314), + [19597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_dec, 2, 0, 0), + [19599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_dec, 2, 0, 0), + [19601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_strdec, 2, 0, 0), + [19603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure_strdec, 2, 0, 0), + [19605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_fctdec, 2, 0, 0), + [19607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_fctdec, 2, 0, 0), + [19609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13835), + [19611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [19613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_pat, 3, 0, 0), + [19615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_pat, 3, 0, 0), + [19617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pat, 3, 0, 0), + [19619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pat, 3, 0, 0), + [19621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_pat, 2, 0, 0), + [19623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_pat, 2, 0, 0), + [19625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vid_pat, 2, 0, 0), + [19627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vid_pat, 2, 0, 0), + [19629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13924), + [19631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pat, 2, 0, 0), + [19633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pat, 2, 0, 0), + [19635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_dec, 2, 0, 0), + [19637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_dec, 2, 0, 0), + [19639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pat, 2, 0, 0), + [19641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pat, 2, 0, 0), + [19643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_pat, 2, 0, 0), + [19645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_pat, 2, 0, 0), + [19647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pat, 3, 0, 0), + [19649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pat, 3, 0, 0), + [19651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pat, 3, 0, 0), + [19653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pat, 3, 0, 0), + [19655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 2, 0, 0), SHIFT_REPEAT(24948), + [19658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 6, 0, 0), SHIFT(24948), + [19661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 7, 0, 0), SHIFT(24948), + [19664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 8, 0, 0), SHIFT(24948), + [19667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 2, 0, 0), SHIFT_REPEAT(25055), + [19670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 6, 0, 0), SHIFT(25055), + [19673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 7, 0, 0), SHIFT(25055), + [19676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 8, 0, 0), SHIFT(25055), + [19679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_vec_pat, 3, 0, 0), + [19681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_vec_pat, 3, 0, 0), + [19683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18768), + [19685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conbind_repeat1, 2, 0, 0), SHIFT_REPEAT(18768), + [19688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13974), + [19690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13612), + [19692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13392), + [19694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13704), + [19696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13861), + [19698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13861), + [19700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13614), + [19702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12091), + [19704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [19706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [19708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [19710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14098), + [19712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14098), + [19714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18899), + [19716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conbind_repeat1, 2, 0, 0), SHIFT_REPEAT(18899), + [19719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12090), + [19721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [19723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [19725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [19727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13993), + [19729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [19731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13533), + [19733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15286), + [19735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15289), + [19737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15289), + [19739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13622), + [19741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12051), + [19743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [19745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [19747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13629), + [19749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12023), + [19751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [19753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13633), + [19755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13754), + [19757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19123), + [19759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conbind_repeat1, 2, 0, 0), SHIFT_REPEAT(19123), + [19762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12068), + [19764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [19766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [19768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15150), + [19770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14020), + [19772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14020), + [19774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12761), + [19776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14189), + [19778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13583), + [19780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [19782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13639), + [19784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [19786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13663), + [19788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12601), + [19790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [19792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [19794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_open_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(14189), + [19797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [19799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13856), + [19801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13921), + [19803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12567), + [19805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12283), + [19807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13648), + [19809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12286), + [19811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11953), + [19813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [19815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13634), + [19817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [19819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12021), + [19821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [19823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [19825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13704), + [19828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13550), + [19830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(14098), + [19833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(14098), + [19836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13651), + [19838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12903), + [19840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13591), + [19842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11922), + [19844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [19846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [19848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13646), + [19850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [19852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [19854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13605), + [19856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13641), + [19858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13667), + [19860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13534), + [19862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_eqn_repeat1, 2, 0, 0), SHIFT_REPEAT(13847), + [19865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_eqn_repeat1, 2, 0, 0), + [19867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_eqn_repeat1, 2, 0, 0), SHIFT_REPEAT(13645), + [19870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_eqn_repeat1, 2, 0, 0), SHIFT_REPEAT(13976), + [19873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hol_eqn_repeat1, 2, 0, 0), SHIFT_REPEAT(13978), + [19876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_eqn_repeat1, 2, 0, 0), SHIFT_REPEAT(13978), + [19879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [19881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [19883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13564), + [19885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13901), + [19887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [19889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hol_pcon_nopare, 2, 0, 0), + [19891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13901), + [19894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_eqn_repeat1, 2, 0, 0), SHIFT_REPEAT(13921), + [19897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13616), + [19899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(14020), + [19902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(14020), + [19905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13596), + [19907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [19909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [19911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12566), + [19913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13588), + [19915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_open_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(14028), + [19918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12376), + [19920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12895), + [19922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12387), + [19924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_eqn_repeat1, 2, 0, 0), SHIFT_REPEAT(13993), + [19927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_eqn_repeat1, 2, 0, 0), SHIFT_REPEAT(13533), + [19930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_eqn_repeat1, 2, 0, 0), SHIFT_REPEAT(15286), + [19933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hol_eqn_repeat1, 2, 0, 0), SHIFT_REPEAT(15289), + [19936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_eqn_repeat1, 2, 0, 0), SHIFT_REPEAT(15289), + [19939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [19941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(13861), + [19944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(13861), + [19947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24920), + [19949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14048), + [19951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14048), + [19954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13903), + [19956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13563), + [19958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12998), + [19960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24979), + [19962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24863), + [19964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [19966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13610), + [19968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12799), + [19970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(13520), + [19973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14200), + [19975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14200), + [19977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(14200), + [19980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(14200), + [19983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12588), + [19985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15332), + [19987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13703), + [19989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12233), + [19991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18852), + [19993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [19995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [19997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13759), + [19999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17894), + [20001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17894), + [20003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13759), + [20006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12238), + [20008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17789), + [20010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12222), + [20012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17888), + [20014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12230), + [20016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14047), + [20018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conbind_repeat1, 2, 0, 0), SHIFT_REPEAT(18852), + [20021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12265), + [20023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12280), + [20025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12847), + [20027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11960), + [20029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [20031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [20033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12479), + [20035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12484), + [20037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17959), + [20039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17959), + [20041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12454), + [20043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12469), + [20045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19013), + [20047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conbind_repeat1, 2, 0, 0), SHIFT_REPEAT(19013), + [20050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13716), + [20052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13716), + [20055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14148), + [20057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14148), + [20059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(14148), + [20062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_infix_dec_repeat1, 2, 0, 0), SHIFT_REPEAT(14148), + [20065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13912), + [20067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17522), + [20069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__datbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17522), + [20072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17534), + [20074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12863), + [20076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__datbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17534), + [20079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17558), + [20081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__datbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17558), + [20084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13900), + [20086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8814), + [20088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fmatch_repeat1, 2, 0, 0), SHIFT_REPEAT(8814), + [20091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8816), + [20093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fmatch_repeat1, 2, 0, 0), SHIFT_REPEAT(8816), + [20096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), + [20098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fmatch_repeat1, 2, 0, 0), SHIFT_REPEAT(8823), + [20101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17957), + [20103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17957), + [20105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12344), + [20107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__datbind_repeat1, 2, 0, 0), SHIFT_REPEAT(16842), + [20110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23276), + [20112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__strbind_repeat1, 2, 0, 0), SHIFT_REPEAT(23276), + [20115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_hol_pcons, 3, 0, 0), REDUCE(sym_hol_ptuple, 3, 0, 0), + [20118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_hol_pcons, 3, 0, 0), REDUCE(sym_hol_ptuple, 3, 0, 0), + [20121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_plist, 3, 0, 0), + [20123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_plist, 3, 0, 0), + [20125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8778), + [20127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11972), + [20129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hol_pat, 4, 0, 0), + [20131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hol_pat, 4, 0, 0), + [20133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_pcons, 4, 0, 0), + [20135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_pcons, 4, 0, 0), + [20137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_ptuple, 4, 0, 0), + [20139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_ptuple, 4, 0, 0), + [20141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_plist, 4, 0, 0), + [20143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_plist, 4, 0, 0), + [20145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12990), + [20147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24733), + [20149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12360), + [20151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_plist, 2, 0, 0), + [20153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_plist, 2, 0, 0), + [20155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18758), + [20157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exbind_repeat1, 2, 0, 0), SHIFT_REPEAT(18758), + [20160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13705), + [20162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13726), + [20164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18890), + [20166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exbind_repeat1, 2, 0, 0), SHIFT_REPEAT(18890), + [20169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16842), + [20171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19119), + [20173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exbind_repeat1, 2, 0, 0), SHIFT_REPEAT(19119), + [20176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_wildcard, 1, 0, 0), + [20178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_wildcard, 1, 0, 0), + [20180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__strbind_repeat1, 2, 0, 0), SHIFT_REPEAT(24733), + [20183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12259), + [20185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12161), + [20187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), + [20189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17520), + [20191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__valbind_repeat1, 2, 0, 0), SHIFT_REPEAT(8299), + [20194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17520), + [20197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), + [20199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17532), + [20201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__valbind_repeat1, 2, 0, 0), SHIFT_REPEAT(8304), + [20204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17532), + [20207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17547), + [20209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__datbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17547), + [20212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), + [20214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17557), + [20216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12166), + [20218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__valbind_repeat1, 2, 0, 0), SHIFT_REPEAT(8315), + [20221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17557), + [20224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12929), + [20226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), + [20228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fvalbind_repeat1, 2, 0, 0), SHIFT_REPEAT(8435), + [20231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), + [20233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12893), + [20235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fvalbind_repeat1, 2, 0, 0), SHIFT_REPEAT(8438), + [20238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fmatch_repeat1, 2, 0, 0), SHIFT_REPEAT(8778), + [20241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), + [20243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fmatch_repeat1, 2, 0, 0), SHIFT_REPEAT(8819), + [20246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [20248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fvalbind_repeat1, 2, 0, 0), SHIFT_REPEAT(8444), + [20251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24731), + [20253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__strbind_repeat1, 2, 0, 0), SHIFT_REPEAT(24731), + [20256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13873), + [20258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13873), + [20261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), + [20263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_pat, 5, 0, 68), + [20265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_pat, 5, 0, 68), + [20267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_pat, 1, 0, 0), + [20269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_pat, 1, 0, 0), + [20271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [20273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16840), + [20275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16612), + [20277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16619), + [20279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), + [20281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17545), + [20283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19101), + [20285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__valbind_repeat1, 2, 0, 0), SHIFT_REPEAT(8310), + [20288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17545), + [20291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16629), + [20293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12693), + [20295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12904), + [20297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19009), + [20299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exbind_repeat1, 2, 0, 0), SHIFT_REPEAT(19009), + [20302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exbind_repeat1, 2, 0, 0), SHIFT_REPEAT(19101), + [20305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__valbind_repeat1, 2, 0, 0), SHIFT_REPEAT(8295), + [20308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fvalbind_repeat1, 2, 0, 0), SHIFT_REPEAT(8419), + [20311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13953), + [20313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13953), + [20316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), + [20318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__fvalbind_repeat1, 2, 0, 0), SHIFT_REPEAT(8441), + [20321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typbind_repeat1, 2, 0, 0), SHIFT_REPEAT(16840), + [20324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16625), + [20326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_fmrule_repeat1, 1, 0, 4), + [20328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_fmrule_repeat1, 1, 0, 4), + [20330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13868), + [20332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_dec, 4, 0, 20), + [20334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_dec, 4, 0, 20), + [20336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat1, 1, 0, 1), + [20338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_let_exp_repeat1, 1, 0, 1), + [20340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dec, 1, 0, 0), + [20342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__dec, 1, 0, 0), + [20344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_strexp_repeat1, 1, 0, 33), + [20346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_struct_strexp_repeat1, 1, 0, 33), + [20348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13728), + [20350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13728), + [20353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16411), + [20355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_dec, 4, 0, 18), + [20357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_dec, 4, 0, 18), + [20359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_strexp_repeat1, 1, 0, 1), + [20361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_let_strexp_repeat1, 1, 0, 1), + [20363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_local_strdec_repeat1, 1, 0, 6), + [20365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_local_strdec_repeat1, 1, 0, 6), + [20367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_dec, 5, 0, 32), + [20369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_dec, 5, 0, 32), + [20371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13882), + [20373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13882), + [20376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13951), + [20378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_dec, 3, 0, 0), + [20380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_dec, 3, 0, 0), + [20382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14000), + [20384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13855), + [20386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_local_dec_repeat1, 1, 0, 6), + [20388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_local_dec_repeat1, 1, 0, 6), + [20390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tyvarseq, 1, 0, 0), + [20392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tyvarseq, 1, 0, 0), + [20394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condesc, 1, 0, 2), + [20396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12019), + [20398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12191), + [20400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condesc, 2, 0, 0), + [20402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20120), + [20404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condesc, 3, 0, 0), + [20406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__condesc_repeat1, 2, 0, 0), + [20408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__condesc_repeat1, 2, 0, 0), SHIFT_REPEAT(20120), + [20411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condesc, 1, 0, 0), + [20413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19271), + [20415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tyvarseq, 4, 0, 0), + [20417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tyvarseq, 4, 0, 0), + [20419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12813), + [20421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tyvarseq, 3, 0, 0), + [20423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tyvarseq, 3, 0, 0), + [20425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13944), + [20427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13944), + [20430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condesc, 3, 0, 17), + [20432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13727), + [20434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15356), + [20436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__condesc_repeat1, 2, 0, 0), SHIFT_REPEAT(19271), + [20439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13855), + [20442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12676), + [20444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15237), + [20446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13881), + [20448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14000), + [20451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19031), + [20453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17722), + [20455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24740), + [20457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [20459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25058), + [20461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [20463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14397), + [20465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9636), + [20467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9650), + [20469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9660), + [20471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9669), + [20473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9682), + [20475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14405), + [20477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [20479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14404), + [20481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [20483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [20485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [20487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [20489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [20491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14412), + [20493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [20495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [20497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [20499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [20501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [20503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), + [20505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14415), + [20507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [20509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [20511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [20513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [20515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [20517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [20519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [20521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11500), + [20523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [20525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14429), + [20527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), + [20529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14435), + [20531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [20533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [20535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9174), + [20537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14434), + [20539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12274), + [20541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9041), + [20543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8989), + [20545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8999), + [20547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12303), + [20549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [20551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [20553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14490), + [20555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), + [20557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [20559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14442), + [20561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10370), + [20563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14481), + [20565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9116), + [20567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [20569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10384), + [20571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14447), + [20573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11546), + [20575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10397), + [20577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10412), + [20579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10432), + [20581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11236), + [20583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_datdesc, 4, 0, 27), + [20585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14450), + [20587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [20589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [20591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12056), + [20593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8434), + [20595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8423), + [20597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), + [20599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sharingtype_spec, 5, 0, 0), + [20601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18529), + [20603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [20605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_spec, 3, 0, 0), + [20607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_spec, 3, 0, 0), + [20609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14463), + [20611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10506), + [20613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [20615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sharing_spec, 5, 0, 0), + [20617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19293), + [20619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14478), + [20621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13296), + [20623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22621), + [20625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10527), + [20627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11402), + [20629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12364), + [20631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10547), + [20633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14472), + [20635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9930), + [20637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9946), + [20639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10560), + [20641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9961), + [20643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9981), + [20645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9998), + [20647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10570), + [20649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13303), + [20651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11768), + [20653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14483), + [20655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [20657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9125), + [20659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14484), + [20661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8931), + [20663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), + [20665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8876), + [20667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [20669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11490), + [20671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [20673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8861), + [20675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), + [20677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [20679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8884), + [20681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [20683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12421), + [20685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), + [20687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13854), + [20689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13091), + [20691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14500), + [20693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), + [20695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9132), + [20697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14502), + [20699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [20701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [20703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sharingtype_spec, 6, 0, 0), + [20705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [20707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10261), + [20709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sharing_spec_repeat1, 2, 0, 0), + [20711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sharing_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(19293), + [20714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [20716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [20718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [20720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [20722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [20724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [20726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [20728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14577), + [20730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9049), + [20732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13943), + [20734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13869), + [20736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13869), + [20739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14518), + [20741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [20743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12459), + [20745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [20747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13153), + [20749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [20751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [20753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [20755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sharingtype_spec_repeat1, 2, 0, 0), + [20757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sharingtype_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(18529), + [20760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14528), + [20762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [20764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13743), + [20766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13743), + [20769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [20771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13179), + [20773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), + [20775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [20777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [20779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14540), + [20781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [20783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14535), + [20785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [20787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [20789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14545), + [20791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11895), + [20793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), + [20795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [20797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [20799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [20801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [20803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [20805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14546), + [20807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10944), + [20809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11058), + [20811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10957), + [20813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9141), + [20815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11194), + [20817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12817), + [20819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11015), + [20821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [20823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10054), + [20825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10065), + [20827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [20829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11070), + [20831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14561), + [20833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [20835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14560), + [20837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10095), + [20839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10106), + [20841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [20843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12907), + [20845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11080), + [20847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9150), + [20849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [20851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10117), + [20853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14575), + [20855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [20857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [20859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13532), + [20861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10126), + [20863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(15356), + [20866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_spec_repeat1, 2, 0, 0), + [20868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_spec_repeat1, 2, 0, 0), + [20870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10137), + [20872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [20874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [20876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11107), + [20878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9057), + [20880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14657), + [20882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [20884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14582), + [20886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [20888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14592), + [20890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14275), + [20892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [20894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [20896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [20898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [20900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [20902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14591), + [20904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [20906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [20908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14209), + [20910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14597), + [20912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10203), + [20914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10213), + [20916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13995), + [20918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10222), + [20920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10231), + [20922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [20924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10240), + [20926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [20928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14630), + [20930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [20932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [20934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [20936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14226), + [20938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14642), + [20940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11162), + [20942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [20944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [20946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [20948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [20950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11199), + [20952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [20954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [20956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11218), + [20958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14651), + [20960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [20962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11232), + [20964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14276), + [20966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [20968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11265), + [20970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [20972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9064), + [20974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14661), + [20976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [20978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [20980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [20982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13839), + [20984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [20986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14663), + [20988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), + [20990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [20992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), + [20994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14665), + [20996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9968), + [20998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9987), + [21000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [21002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10012), + [21004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10028), + [21006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14263), + [21008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9490), + [21010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [21012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), + [21014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14676), + [21016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [21018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), + [21020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [21022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [21024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14681), + [21026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11419), + [21028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [21030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [21032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11524), + [21034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11353), + [21036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14685), + [21038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [21040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [21042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14692), + [21044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [21046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [21048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [21050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), + [21052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [21054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [21056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11792), + [21058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [21060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11829), + [21062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14699), + [21064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), + [21066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11855), + [21068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [21070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [21072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [21074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [21076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [21078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), + [21080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14708), + [21082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11938), + [21084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [21086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13683), + [21088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11950), + [21090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), + [21092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14721), + [21094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24765), + [21096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14713), + [21098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [21100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14718), + [21102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11816), + [21104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [21106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9090), + [21108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14717), + [21110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [21112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11964), + [21114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [21116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11882), + [21118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [21120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [21122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24791), + [21124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [21126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [21128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11901), + [21130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [21132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11976), + [21134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24797), + [21136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11061), + [21138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14739), + [21140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9323), + [21142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [21144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14732), + [21146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [21148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [21150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11987), + [21152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [21154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [21156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [21158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24790), + [21160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11182), + [21162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9334), + [21164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14759), + [21166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14067), + [21168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedesc, 2, 0, 0), + [21170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17036), + [21172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14746), + [21174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [21176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24783), + [21178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [21180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14754), + [21182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [21184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [21186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [21188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [21190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9219), + [21192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13839), + [21195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [21197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14756), + [21199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10615), + [21201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10638), + [21203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14762), + [21205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11371), + [21207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10646), + [21209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13963), + [21211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10659), + [21213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10690), + [21215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11603), + [21217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [21219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14766), + [21221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11084), + [21223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11377), + [21225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11666), + [21227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14771), + [21229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10812), + [21231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11314), + [21233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11693), + [21235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10839), + [21237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10857), + [21239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10872), + [21241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10892), + [21243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9312), + [21245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13671), + [21247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11723), + [21249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14780), + [21251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10936), + [21253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10961), + [21255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), + [21257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13768), + [21259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10978), + [21261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10985), + [21263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [21265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10994), + [21267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11387), + [21269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [21271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14790), + [21273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10632), + [21275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10774), + [21277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [21279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11017), + [21281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10929), + [21283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9438), + [21285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10687), + [21287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14802), + [21289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [21291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11440), + [21293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13870), + [21295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14803), + [21297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [21299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [21301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [21303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [21305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [21307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [21309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14828), + [21311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [21313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [21315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [21317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14825), + [21319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11574), + [21321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedesc, 1, 0, 0), + [21323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [21325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__datdesc, 1, 0, 0), + [21327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17125), + [21329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14818), + [21331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [21333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [21335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13923), + [21337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [21339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14826), + [21341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), + [21343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [21345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [21347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11599), + [21349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [21351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), + [21353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11629), + [21355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14833), + [21357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [21359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), + [21361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [21363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14840), + [21365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9911), + [21367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [21369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [21371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [21373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14682), + [21375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11545), + [21377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [21379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9519), + [21381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11652), + [21383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), + [21385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedesc_repeat1, 2, 0, 0), + [21387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typedesc_repeat1, 2, 0, 0), SHIFT_REPEAT(17036), + [21390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14846), + [21392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [21394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11701), + [21396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [21398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14848), + [21400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [21402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [21404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [21406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [21408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_datdesc, 3, 0, 15), + [21410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [21412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [21414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9585), + [21416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [21418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14777), + [21420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13525), + [21422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [21424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9771), + [21426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__datdesc_repeat1, 2, 0, 0), + [21428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14861), + [21430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [21432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [21434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [21436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), + [21438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14865), + [21440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10540), + [21442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10756), + [21444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13541), + [21446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [21448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10607), + [21450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), + [21452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10728), + [21454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10761), + [21456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14879), + [21458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [21460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14880), + [21462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11763), + [21464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__datdesc, 2, 0, 0), + [21466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17655), + [21468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__datdesc_repeat1, 2, 0, 0), SHIFT_REPEAT(17655), + [21471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25030), + [21473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__datdesc_repeat1, 2, 0, 0), SHIFT_REPEAT(17125), + [21476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [21478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11146), + [21480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14885), + [21482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [21484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 2, 0, 0), SHIFT_REPEAT(25030), + [21487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [21489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [21491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [21493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [21495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [21497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [21499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11105), + [21501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14901), + [21503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12125), + [21505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(15237), + [21508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14897), + [21510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9429), + [21512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11809), + [21514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 2, 0, 0), SHIFT_REPEAT(25017), + [21517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9199), + [21519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [21521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9288), + [21523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9359), + [21525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12144), + [21527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9220), + [21529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14914), + [21531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24748), + [21533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sharing_spec, 4, 0, 0), + [21535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14907), + [21537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9442), + [21539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11482), + [21541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9452), + [21543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14918), + [21545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10684), + [21547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9460), + [21549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12176), + [21551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9467), + [21553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), + [21555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11563), + [21557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24768), + [21559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14916), + [21561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [21563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), + [21565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14923), + [21567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [21569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10161), + [21571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [21573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), + [21575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [21577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12201), + [21579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), + [21581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), + [21583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10175), + [21585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14945), + [21587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [21589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14928), + [21591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [21593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [21595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24744), + [21597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [21599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [21601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [21603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [21605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25017), + [21607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14944), + [21609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [21611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12215), + [21613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [21615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [21617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [21619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [21621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 6, 0, 0), SHIFT(25030), + [21624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 7, 0, 0), SHIFT(25030), + [21627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 8, 0, 0), SHIFT(25030), + [21630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [21632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24758), + [21634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [21636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10189), + [21638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [21640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 6, 0, 0), SHIFT(25017), + [21643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 7, 0, 0), SHIFT(25017), + [21646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_wheretype_sigexp, 8, 0, 0), SHIFT(25017), + [21649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [21651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14963), + [21653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9573), + [21655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), + [21657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9592), + [21659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9599), + [21661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9609), + [21663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24805), + [21665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [21667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exdesc, 3, 0, 17), + [21669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13917), + [21671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exdesc, 2, 0, 0), + [21673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20202), + [21675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13917), + [21678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strdesc, 2, 0, 0), + [21680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22001), + [21682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12695), + [21684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedesc, 2, 0, 5), + [21686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13805), + [21688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13808), + [21690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13838), + [21692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13741), + [21694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__valdesc, 2, 0, 0), + [21696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19518), + [21698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12565), + [21700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13805), + [21703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13808), + [21706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12594), + [21708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedesc, 1, 0, 2), + [21710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exdesc, 1, 0, 2), + [21712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12183), + [21714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20112), + [21716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12595), + [21718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20114), + [21720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [21722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9940), + [21724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12070), + [21726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [21728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [21730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [21732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [21734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_tactic, 1, 0, 0), + [21736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__valdesc_repeat1, 2, 0, 0), + [21738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__valdesc_repeat1, 2, 0, 0), SHIFT_REPEAT(20112), + [21741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__exdesc_repeat1, 2, 0, 0), + [21743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exdesc_repeat1, 2, 0, 0), SHIFT_REPEAT(20114), + [21746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__valdesc, 1, 0, 0), + [21748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__exdesc, 1, 0, 0), + [21750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17524), + [21752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17524), + [21755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17535), + [21757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17535), + [21760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), + [21762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8305), + [21765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12523), + [21767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11968), + [21769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_valdesc, 3, 0, 17), + [21771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__strdesc, 1, 0, 0), + [21773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [21775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11593), + [21777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [21779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__valdesc_repeat1, 2, 0, 0), SHIFT_REPEAT(19518), + [21782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12908), + [21784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__exdesc_repeat1, 2, 0, 0), SHIFT_REPEAT(20202), + [21787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strdesc, 3, 0, 55), + [21789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24947), + [21791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__strdesc_repeat1, 2, 0, 0), + [21793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__strdesc_repeat1, 2, 0, 0), SHIFT_REPEAT(22001), + [21796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [21798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11825), + [21800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [21802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12806), + [21804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24855), + [21806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24715), + [21808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__strdesc_repeat1, 2, 0, 0), SHIFT_REPEAT(24715), + [21811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13746), + [21813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13786), + [21815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [21817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [21819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12154), + [21821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [21823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [21825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [21827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [21829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spec, 1, 0, 0), + [21831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13989), + [21833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [21835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11082), + [21837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [21839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [21841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10210), + [21843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [21845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12085), + [21847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [21849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [21851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [21853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [21855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [21857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [21859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [21861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [21863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [21865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [21867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [21869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [21871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13911), + [21873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_datarepl_spec, 5, 0, 28), + [21875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [21877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [21879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [21881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [21883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [21885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [21887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [21889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11189), + [21891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [21893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13828), + [21895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13831), + [21897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [21899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [21901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [21903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [21905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [21907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [21909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13786), + [21912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [21914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), + [21916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [21918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [21920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9984), + [21922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [21924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13804), + [21926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13807), + [21928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [21930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [21932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [21934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13989), + [21937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12954), + [21939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [21941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11441), + [21943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [21945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [21947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [21949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [21951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [21953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [21955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [21957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [21959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [21961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [21963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [21965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [21967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [21969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12743), + [21971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [21973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11947), + [21975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [21977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13911), + [21980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [21982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [21984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [21986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [21988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [21990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [21992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [21994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [21996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [21998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [22000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10954), + [22002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [22004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [22006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [22008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [22010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [22012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9330), + [22014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [22016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [22018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [22020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [22022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13828), + [22025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [22027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [22029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [22031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13831), + [22034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [22036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [22038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [22040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), + [22042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [22044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10635), + [22046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [22048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8308), + [22051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [22053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10524), + [22055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [22057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [22059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10039), + [22061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [22063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [22065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11334), + [22067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [22069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [22071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10831), + [22073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [22075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13751), + [22077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [22079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10951), + [22081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [22083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [22085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8828), + [22087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [22089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8983), + [22091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24787), + [22093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24837), + [22095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [22097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10769), + [22099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [22101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [22103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9054), + [22105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [22107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_spec, 2, 0, 0), + [22109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [22111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [22113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [22115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [22117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [22119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [22121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [22123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 2, 0, 0), + [22125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [22127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11051), + [22129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [22131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [22133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), + [22135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [22137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_datatype_spec, 2, 0, 0), + [22139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16422), + [22141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [22143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [22145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [22147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [22149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11591), + [22151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [22153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [22155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), + [22157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [22159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [22161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9121), + [22163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [22165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_spec, 2, 0, 0), + [22167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [22169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [22171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [22173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [22175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [22177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [22179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_spec, 2, 0, 0), + [22181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [22183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10103), + [22185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [22187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [22189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [22191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [22193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_eqtype_spec, 2, 0, 0), + [22195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [22197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [22199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [22201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_spec, 2, 0, 0), + [22203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25029), + [22205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [22207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [22209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [22211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [22213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11590), + [22215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [22217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [22219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [22221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [22223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [22225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [22227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [22229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), + [22231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8360), + [22234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_datatype_spec, 4, 0, 16), + [22236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [22238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9171), + [22240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [22242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [22244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [22246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [22248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [22250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10715), + [22252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [22254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [22256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [22258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [22260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [22262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [22264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10381), + [22266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [22268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16609), + [22270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [22272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [22274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [22276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [22278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11267), + [22280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [22282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [22284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9647), + [22286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [22288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [22290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [22292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [22294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [22296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [22298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [22300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [22302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [22304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [22306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [22308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12299), + [22310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [22312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [22314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9196), + [22316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [22318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [22320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12139), + [22322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [22324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [22326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [22328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [22330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [22332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9449), + [22334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [22336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [22338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10102), + [22340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [22342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [22344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [22346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [22348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [22350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [22352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [22354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [22356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), + [22358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [22360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [22362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [22364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [22366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [22368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [22370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [22372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25010), + [22374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [22376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [22378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [22380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [22382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [22384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [22386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [22388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [22390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [22392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [22394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9579), + [22396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [22398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12685), + [22400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14096), + [22402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12079), + [22404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24851), + [22406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10556), + [22408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10572), + [22410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10575), + [22412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15914), + [22414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14335), + [22416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15046), + [22418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12179), + [22420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10581), + [22422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15498), + [22424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9552), + [22426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14309), + [22428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15505), + [22430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15468), + [22432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9559), + [22434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15047), + [22436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9761), + [22438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12186), + [22440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15052), + [22442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15054), + [22444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15143), + [22446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15472), + [22448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15548), + [22450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18867), + [22452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9560), + [22454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9561), + [22456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15511), + [22458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8757), + [22460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9566), + [22462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8769), + [22464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15514), + [22466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11309), + [22468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15473), + [22470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11324), + [22472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13876), + [22474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15522), + [22476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15681), + [22478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11325), + [22480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15562), + [22482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14205), + [22484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15474), + [22486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15475), + [22488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11336), + [22490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15939), + [22492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9763), + [22494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12255), + [22496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11343), + [22498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8956), + [22500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15535), + [22502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), + [22504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15529), + [22506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16367), + [22508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16370), + [22510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16371), + [22512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14087), + [22514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14087), + [22517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8773), + [22519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), + [22521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13700), + [22523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8788), + [22525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16372), + [22527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16373), + [22529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15687), + [22531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8789), + [22533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(16660), + [22536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_clause_repeat1, 2, 0, 0), + [22538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_hol_clause_repeat1, 2, 0, 0), + [22540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_hol_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(17824), + [22543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(17824), + [22546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), + [22548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13930), + [22550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13930), + [22553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15740), + [22555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18926), + [22557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15899), + [22559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), + [22561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15556), + [22563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16380), + [22565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13742), + [22567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13742), + [22570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [22572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16383), + [22574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15563), + [22576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15148), + [22578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16120), + [22580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12150), + [22582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16384), + [22584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16385), + [22586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16386), + [22588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14280), + [22590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15209), + [22592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15215), + [22594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15219), + [22596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15567), + [22598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9740), + [22600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9748), + [22602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9749), + [22604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9762), + [22606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13740), + [22608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15828), + [22610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16661), + [22612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15220), + [22614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9765), + [22616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15577), + [22618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15000), + [22620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15003), + [22622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15004), + [22624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15005), + [22626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15007), + [22628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15596), + [22630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10476), + [22632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15814), + [22634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15610), + [22636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8970), + [22638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15590), + [22640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15015), + [22642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15018), + [22644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15629), + [22646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8829), + [22648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15019), + [22650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10480), + [22652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13740), + [22655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15020), + [22657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15021), + [22659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13749), + [22661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13749), + [22664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14298), + [22666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14223), + [22668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13757), + [22670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13757), + [22673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15632), + [22675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8759), + [22677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10481), + [22679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), + [22681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18963), + [22683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13767), + [22685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13767), + [22688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10485), + [22690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15617), + [22692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9783), + [22694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9790), + [22696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10487), + [22698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9791), + [22700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9792), + [22702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), + [22704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9793), + [22706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9764), + [22708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9732), + [22710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15635), + [22712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15234), + [22714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8881), + [22716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15634), + [22718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9277), + [22720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8775), + [22722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14252), + [22724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9283), + [22726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15242), + [22728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9284), + [22730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15639), + [22732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10520), + [22734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9285), + [22736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10533), + [22738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14279), + [22740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9286), + [22742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15643), + [22744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14330), + [22746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14368), + [22748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14352), + [22750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15243), + [22752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10543), + [22754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8975), + [22756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10551), + [22758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8976), + [22760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10553), + [22762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13504), + [22764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13863), + [22766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15245), + [22768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14320), + [22770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), + [22772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14329), + [22774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15663), + [22776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11767), + [22778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13138), + [22780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11869), + [22782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11884), + [22784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15251), + [22786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8777), + [22788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11886), + [22790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18994), + [22792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11518), + [22794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19001), + [22796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8857), + [22798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14213), + [22800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13723), + [22802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), + [22804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14364), + [22806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8781), + [22808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17944), + [22810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15718), + [22812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14202), + [22814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15736), + [22816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15940), + [22818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15690), + [22820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9724), + [22822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [22824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), + [22826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15747), + [22828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12027), + [22830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9728), + [22832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15692), + [22834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10421), + [22836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10442), + [22838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9736), + [22840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17951), + [22842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15700), + [22844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9741), + [22846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9744), + [22848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [22850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [22852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [22854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15964), + [22856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14292), + [22858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10444), + [22860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16022), + [22862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8862), + [22864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10466), + [22866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11945), + [22868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [22870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [22872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13461), + [22874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10493), + [22876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15717), + [22878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11257), + [22880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15378), + [22882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11321), + [22884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14127), + [22886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sig_sigexp_repeat1, 1, 0, 34), + [22888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14128), + [22890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11393), + [22892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11438), + [22894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14355), + [22896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15135), + [22898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11458), + [22900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16013), + [22902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15175), + [22904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15665), + [22906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15766), + [22908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8809), + [22910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15769), + [22912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9909), + [22914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12031), + [22916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15796), + [22918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16738), + [22920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11921), + [22922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15755), + [22924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13122), + [22926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15765), + [22928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9807), + [22930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15808), + [22932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14419), + [22934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12855), + [22936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13131), + [22938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10134), + [22940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13151), + [22942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15786), + [22944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15819), + [22946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13156), + [22948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13160), + [22950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16660), + [22952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_clause, 1, 0, 0), + [22954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_clause, 1, 0, 0), + [22956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17824), + [22958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17824), + [22960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9822), + [22962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), + [22964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9692), + [22966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14129), + [22968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9819), + [22970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11942), + [22972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [22974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [22976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [22978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17737), + [22980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9699), + [22982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15932), + [22984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13189), + [22986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15818), + [22988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11112), + [22990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15779), + [22992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17849), + [22994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15851), + [22996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14173), + [22998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9820), + [23000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17713), + [23002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13166), + [23004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8824), + [23006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17748), + [23008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17751), + [23010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17756), + [23012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15719), + [23014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8770), + [23016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15820), + [23018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16360), + [23020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8804), + [23022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15721), + [23024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9821), + [23026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12170), + [23028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11923), + [23030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15728), + [23032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16754), + [23034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9703), + [23036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9830), + [23038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12034), + [23040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13496), + [23042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17892), + [23044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14130), + [23046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14471), + [23048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15813), + [23050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9433), + [23052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15156), + [23054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15749), + [23056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11916), + [23058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), + [23060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11129), + [23062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16399), + [23064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15842), + [23066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15450), + [23068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12035), + [23070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15803), + [23072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9301), + [23074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9823), + [23076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12036), + [23078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16669), + [23080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16401), + [23082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9824), + [23084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13886), + [23086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9339), + [23088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), + [23090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13168), + [23092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16781), + [23094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16794), + [23096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16406), + [23098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15149), + [23100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13876), + [23103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16800), + [23105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16032), + [23107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15822), + [23109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13904), + [23111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15867), + [23113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13983), + [23115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14154), + [23117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16408), + [23119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11925), + [23121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15943), + [23123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9864), + [23125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11144), + [23127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11156), + [23129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [23131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15864), + [23133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9185), + [23135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15971), + [23137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13339), + [23139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), + [23141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15839), + [23143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9207), + [23145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13987), + [23147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15881), + [23149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15623), + [23151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13783), + [23153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9236), + [23155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14096), + [23158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16049), + [23160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14550), + [23162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13994), + [23164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13996), + [23166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13997), + [23168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9825), + [23170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15659), + [23172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15178), + [23174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17941), + [23176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16054), + [23178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11163), + [23180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13785), + [23182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15187), + [23184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15188), + [23186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15958), + [23188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15448), + [23190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15911), + [23192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15101), + [23194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15695), + [23196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14233), + [23198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [23200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15114), + [23202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15704), + [23204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15709), + [23206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14317), + [23208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15140), + [23210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15167), + [23212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15118), + [23214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9243), + [23216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16026), + [23218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15780), + [23220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16065), + [23222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15388), + [23224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15126), + [23226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15189), + [23228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15712), + [23230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13403), + [23232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15116), + [23234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14578), + [23236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13184), + [23238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16204), + [23240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16543), + [23242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9873), + [23244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15960), + [23246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11459), + [23248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14174), + [23250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15959), + [23252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17072), + [23254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15171), + [23256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11927), + [23258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16000), + [23260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18400), + [23262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15400), + [23264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17117), + [23266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11526), + [23268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11530), + [23270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14251), + [23272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11532), + [23274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16293), + [23276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12074), + [23278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15981), + [23280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14269), + [23282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13508), + [23284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17146), + [23286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11534), + [23288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17154), + [23290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17155), + [23292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14265), + [23294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14589), + [23296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15990), + [23298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9347), + [23300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [23302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8346), + [23305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10199), + [23307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13863), + [23310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9365), + [23312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16020), + [23314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14322), + [23316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14266), + [23318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14290), + [23320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9367), + [23322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14214), + [23324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14176), + [23326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15962), + [23328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18566), + [23330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11537), + [23332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14184), + [23334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16006), + [23336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17735), + [23338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16046), + [23340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15831), + [23342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17913), + [23344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16023), + [23346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12885), + [23348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16011), + [23350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10622), + [23352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16025), + [23354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11841), + [23356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10681), + [23358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16404), + [23360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15307), + [23362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10723), + [23364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11576), + [23366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16127), + [23368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16021), + [23370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10514), + [23372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14362), + [23374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10538), + [23376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8895), + [23378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12898), + [23380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8917), + [23382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11868), + [23384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16088), + [23386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16037), + [23388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17261), + [23390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10557), + [23392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12080), + [23394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17297), + [23396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16154), + [23398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16216), + [23400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10740), + [23402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11621), + [23404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17328), + [23406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10634), + [23408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17353), + [23410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15885), + [23412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17364), + [23414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10661), + [23416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13137), + [23418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17971), + [23420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16246), + [23422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10741), + [23424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16322), + [23426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15892), + [23428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15366), + [23430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13130), + [23432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18044), + [23434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18101), + [23436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12911), + [23438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15466), + [23440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15925), + [23442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16079), + [23444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11899), + [23446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9677), + [23448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15928), + [23450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9369), + [23452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_clause, 2, 0, 0), + [23454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hol_clause, 2, 0, 0), + [23456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15396), + [23458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9882), + [23460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16100), + [23462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10816), + [23464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16255), + [23466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10808), + [23468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11311), + [23470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9371), + [23472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11025), + [23474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16105), + [23476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11152), + [23478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12913), + [23480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12915), + [23482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16099), + [23484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9835), + [23486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12939), + [23488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11110), + [23490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11036), + [23492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15738), + [23494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15600), + [23496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15581), + [23498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16126), + [23500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10049), + [23502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13334), + [23504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9854), + [23506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10826), + [23508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16130), + [23510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16171), + [23512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11042), + [23514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10829), + [23516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), + [23518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11192), + [23520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10832), + [23522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11221), + [23524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10851), + [23526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11893), + [23528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16135), + [23530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9880), + [23532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11388), + [23534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15570), + [23536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13132), + [23538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [23540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11241), + [23542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10146), + [23544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14100), + [23546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12159), + [23548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10281), + [23550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13413), + [23552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11251), + [23554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12940), + [23556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10061), + [23558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17954), + [23560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16199), + [23562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13188), + [23564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16183), + [23566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10866), + [23568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9883), + [23570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9918), + [23572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15504), + [23574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15410), + [23576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16146), + [23578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11261), + [23580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9919), + [23582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16156), + [23584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15100), + [23586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9907), + [23588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9956), + [23590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11477), + [23592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10074), + [23594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16407), + [23596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16161), + [23598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8733), + [23600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11564), + [23602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10046), + [23604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11801), + [23606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11104), + [23608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15111), + [23610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13783), + [23613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13826), + [23615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16236), + [23617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8739), + [23619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9803), + [23621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13886), + [23624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16268), + [23626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16288), + [23628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16191), + [23630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12100), + [23632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16175), + [23634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11184), + [23636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13437), + [23638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16180), + [23640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14598), + [23642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16176), + [23644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10922), + [23646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15115), + [23648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11205), + [23650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10340), + [23652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15117), + [23654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10699), + [23656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14602), + [23658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10850), + [23660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10910), + [23662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10881), + [23664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10081), + [23666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11228), + [23668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16194), + [23670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11358), + [23672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11264), + [23674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), + [23676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12104), + [23678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11271), + [23680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11548), + [23682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15120), + [23684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16235), + [23686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12738), + [23688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16200), + [23690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15282), + [23692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15756), + [23694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10122), + [23696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15306), + [23698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9885), + [23700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15323), + [23702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16558), + [23704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), + [23706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15326), + [23708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15339), + [23710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17931), + [23712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17772), + [23714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14604), + [23716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), + [23718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13830), + [23720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14339), + [23722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10085), + [23724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11645), + [23726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11686), + [23728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11706), + [23730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16425), + [23732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13479), + [23734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16308), + [23736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11536), + [23738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12106), + [23740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16265), + [23742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9755), + [23744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16208), + [23746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17899), + [23748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16234), + [23750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15423), + [23752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16276), + [23754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17779), + [23756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16003), + [23758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15438), + [23760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12746), + [23762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16244), + [23764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10345), + [23766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), + [23768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15441), + [23770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15182), + [23772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15470), + [23774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15477), + [23776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10348), + [23778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10883), + [23780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13988), + [23782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14605), + [23784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10349), + [23786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10824), + [23788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12108), + [23790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16266), + [23792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), + [23794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10350), + [23796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17903), + [23798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10884), + [23800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12752), + [23802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16069), + [23804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9665), + [23806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9758), + [23808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), + [23810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10351), + [23812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12110), + [23814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), + [23816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9731), + [23818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), + [23820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16055), + [23822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16290), + [23824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), + [23826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17796), + [23828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10887), + [23830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16310), + [23832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10168), + [23834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12078), + [23836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12760), + [23838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12767), + [23840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16119), + [23842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14080), + [23844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8854), + [23846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10153), + [23848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16296), + [23850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10704), + [23852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16300), + [23854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15444), + [23856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14359), + [23858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12077), + [23860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16302), + [23862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15340), + [23864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10828), + [23866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10722), + [23868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14606), + [23870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14314), + [23872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16303), + [23874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14617), + [23876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15453), + [23878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15454), + [23880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15365), + [23882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14620), + [23884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10736), + [23886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15380), + [23888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16598), + [23890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15390), + [23892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11383), + [23894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15402), + [23896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10182), + [23898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15458), + [23900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15459), + [23902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14621), + [23904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10744), + [23906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14622), + [23908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10748), + [23910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15302), + [23912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10834), + [23914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16604), + [23916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14623), + [23918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17716), + [23920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10837), + [23922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15488), + [23924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10529), + [23926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16332), + [23928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [23930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16318), + [23932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15253), + [23934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16333), + [23936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), + [23938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14039), + [23940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15954), + [23942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), + [23944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9729), + [23946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10157), + [23948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15492), + [23950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15043), + [23952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16584), + [23954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), + [23956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16050), + [23958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13097), + [23960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9730), + [23962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), + [23964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10186), + [23966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15999), + [23968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15751), + [23970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16442), + [23972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [23974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [23976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16480), + [23978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [23980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [23982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13957), + [23984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13970), + [23986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13970), + [23989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16484), + [23991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [23993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [23995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16431), + [23997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19134), + [23999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19134), + [24001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13957), + [24004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16435), + [24006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [24008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [24010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16441), + [24012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [24014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [24016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14090), + [24018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13906), + [24020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13853), + [24022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13990), + [24024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14083), + [24026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13715), + [24028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13738), + [24030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12210), + [24032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [24034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [24036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [24038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16445), + [24040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [24042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [24044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), + [24046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8373), + [24049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13853), + [24052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13906), + [24055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14061), + [24057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13990), + [24060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13862), + [24062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13709), + [24064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14083), + [24067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13885), + [24069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13715), + [24072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13738), + [24075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12869), + [24077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12694), + [24079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16428), + [24081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [24083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [24085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14086), + [24087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12213), + [24089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [24091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [24093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13845), + [24095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [24097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13732), + [24099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12824), + [24101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14061), + [24104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13739), + [24106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13709), + [24109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13748), + [24111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16487), + [24113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [24115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [24117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13766), + [24119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12947), + [24121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13782), + [24123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12951), + [24125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16448), + [24127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [24129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [24131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16453), + [24133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [24135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [24137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16460), + [24139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [24141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [24143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), + [24145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8329), + [24148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16465), + [24150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [24152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [24154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), + [24156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8351), + [24159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), + [24161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8355), + [24164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16471), + [24166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [24168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [24170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14074), + [24172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16476), + [24174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [24176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [24178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13756), + [24180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [24182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [24184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12517), + [24186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [24188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [24190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [24192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [24194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), + [24196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [24198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [24200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [24202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [24204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [24206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [24208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [24210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [24212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [24214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [24216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [24218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [24220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [24222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [24224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [24226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [24228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [24230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [24232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [24234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [24236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [24238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9146), + [24240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [24242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [24244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [24246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9147), + [24248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [24250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [24252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [24254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [24256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [24258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [24260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [24262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), + [24264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [24266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [24268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [24270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [24272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11293), + [24274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [24276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [24278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [24280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [24282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [24284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [24286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [24288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10021), + [24290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [24292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [24294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [24296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [24298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10038), + [24300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [24302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10044), + [24304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [24306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [24308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [24310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [24312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9502), + [24314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [24316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11511), + [24318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [24320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [24322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [24324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11512), + [24326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [24328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [24330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [24332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [24334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [24336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [24338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [24340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [24342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [24344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [24346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [24348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [24350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [24352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [24354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [24356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [24358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11642), + [24360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [24362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [24364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [24366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [24368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [24370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [24372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [24374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [24376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [24378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [24380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [24382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [24384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9158), + [24386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [24388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [24390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [24392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [24394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [24396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [24398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [24400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [24402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [24404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [24406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [24408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [24410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [24412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [24414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [24416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [24418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [24420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [24422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [24424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [24426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [24428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [24430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [24432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [24434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [24436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [24438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [24440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [24442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14043), + [24444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [24446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [24448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [24450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [24452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [24454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [24456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13772), + [24458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [24460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [24462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [24464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [24466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [24468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [24470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [24472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [24474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [24476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [24478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [24480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [24482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [24484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [24486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [24488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [24490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [24492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [24494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [24496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [24498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [24500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [24502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [24504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [24506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [24508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [24510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [24512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [24514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [24516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [24518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [24520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [24522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [24524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [24526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hol_ty_spec, 3, 0, 0), + [24528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hol_ty_spec, 3, 0, 0), + [24530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [24532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [24534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [24536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [24538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [24540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [24542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [24544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [24546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), + [24548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13772), + [24551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [24553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [24555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [24557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [24559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [24561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [24563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [24565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [24567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [24569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [24571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [24573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [24575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [24577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [24579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [24581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [24583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [24585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [24587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [24589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9227), + [24591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [24593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [24595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [24597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [24599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [24601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10649), + [24603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [24605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [24607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [24609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10677), + [24611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [24613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10678), + [24615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [24617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10714), + [24619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12254), + [24621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23668), + [24623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18954), + [24625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18245), + [24627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [24629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [24631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [24633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [24635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [24637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [24639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [24641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [24643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [24645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [24647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [24649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10863), + [24651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [24653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [24655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10882), + [24657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [24659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10885), + [24661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [24663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [24665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [24667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10907), + [24669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [24671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9249), + [24673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [24675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9351), + [24677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [24679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [24681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [24683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [24685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [24687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [24689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [24691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10981), + [24693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [24695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10990), + [24697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [24699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10991), + [24701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [24703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11002), + [24705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [24707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [24709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [24711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [24713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [24715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [24717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [24719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [24721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [24723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [24725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10218), + [24727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [24729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [24731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10465), + [24733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [24735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10499), + [24737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [24739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [24741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10923), + [24743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [24745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [24747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9184), + [24749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [24751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [24753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [24755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [24757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [24759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [24761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [24763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [24765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [24767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [24769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [24771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [24773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [24775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [24777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [24779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [24781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [24783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [24785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10407), + [24787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [24789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [24791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [24793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [24795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [24797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [24799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [24801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [24803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [24805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [24807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [24809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [24811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10426), + [24813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [24815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10427), + [24817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [24819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [24821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [24823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [24825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [24827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [24829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [24831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [24833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [24835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10449), + [24837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [24839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [24841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [24843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [24845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [24847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [24849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [24851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [24853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [24855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [24857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [24859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [24861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [24863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [24865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(14051), + [24868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [24870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [24872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [24874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [24876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [24878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [24880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [24882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [24884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [24886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [24888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [24890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [24892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [24894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [24896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [24898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [24900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [24902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [24904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [24906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), + [24908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [24910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [24912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [24914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [24916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [24918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14051), + [24920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [24922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [24924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [24926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [24928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [24930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [24932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [24934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [24936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [24938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [24940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [24942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [24944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [24946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [24948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [24950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), + [24952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [24954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [24956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10550), + [24958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [24960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [24962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [24964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10565), + [24966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [24968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10566), + [24970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [24972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [24974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [24976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [24978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [24980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [24982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [24984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), + [24986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [24988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [24990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [24992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [24994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [24996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10580), + [24998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [25000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [25002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), + [25004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [25006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [25008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [25010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [25012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [25014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [25016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [25018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9296), + [25020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [25022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9405), + [25024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [25026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9411), + [25028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [25030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [25032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), + [25034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [25036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), + [25038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [25040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [25042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9269), + [25044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [25046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [25048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [25050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [25052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [25054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [25056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [25058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [25060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [25062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9463), + [25064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [25066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [25068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9472), + [25070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [25072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9473), + [25074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [25076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [25078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [25080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [25082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12185), + [25084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [25086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9254), + [25088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [25090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [25092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [25094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [25096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [25098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [25100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [25102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [25104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [25106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [25108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [25110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [25112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), + [25114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [25116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [25118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [25120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [25122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), + [25124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [25126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [25128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [25130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [25132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [25134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12206), + [25136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [25138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12207), + [25140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [25142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [25144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [25146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [25148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [25150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [25152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [25154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [25156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [25158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [25160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [25162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [25164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [25166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [25168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [25170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [25172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [25174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [25176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [25178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [25180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [25182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [25184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [25186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [25188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [25190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [25192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [25194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [25196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [25198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [25200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [25202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12227), + [25204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [25206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [25208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [25210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [25212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [25214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [25216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [25218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [25220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [25222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [25224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [25226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [25228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [25230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9595), + [25232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [25234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9604), + [25236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [25238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9605), + [25240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [25242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9618), + [25244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [25246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [25248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [25250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [25252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [25254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [25256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [25258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [25260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [25262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9663), + [25264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [25266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9674), + [25268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [25270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9675), + [25272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [25274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9691), + [25276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [25278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [25280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [25282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [25284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [25286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [25288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [25290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [25292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [25294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [25296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [25298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [25300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [25302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [25304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [25306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [25308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [25310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [25312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [25314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [25316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [25318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [25320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [25322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [25324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [25326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [25328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [25330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [25332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [25334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [25336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [25338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [25340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [25342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [25344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [25346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [25348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [25350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [25352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [25354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [25356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), + [25358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [25360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [25362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [25364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [25366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [25368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [25370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [25372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [25374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [25376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [25378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [25380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8951), + [25382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [25384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8995), + [25386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [25388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8996), + [25390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [25392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), + [25394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [25396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [25398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [25400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [25402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [25404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [25406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [25408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [25410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12709), + [25412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [25414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [25416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [25418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [25420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [25422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [25424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [25426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [25428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [25430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [25432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [25434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [25436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [25438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [25440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [25442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [25444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [25446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [25448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10195), + [25450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [25452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [25454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [25456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [25458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [25460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [25462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [25464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [25466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [25468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [25470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [25472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [25474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [25476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [25478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11285), + [25480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13848), + [25482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [25484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [25486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [25488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [25490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [25492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [25494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [25496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [25498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [25500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), + [25502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [25504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [25506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [25508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [25510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [25512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [25514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), + [25516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [25518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [25520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [25522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [25524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [25526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [25528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [25530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [25532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [25534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21688), + [25536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18765), + [25538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [25540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [25542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12370), + [25544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [25546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [25548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [25550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [25552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13905), + [25554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12126), + [25556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [25558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [25560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [25562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [25564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [25566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [25568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [25570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [25572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [25574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [25576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [25578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11053), + [25580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [25582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [25584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21792), + [25586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18898), + [25588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13966), + [25590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [25592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12431), + [25594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [25596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12432), + [25598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [25600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [25602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [25604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [25606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [25608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [25610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [25612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [25614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21886), + [25616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19012), + [25618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [25620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [25622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [25624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [25626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [25628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13819), + [25630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14077), + [25632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [25634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12476), + [25636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [25638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [25640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [25642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [25644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [25646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11366), + [25648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [25650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [25652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21982), + [25654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19122), + [25656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13822), + [25658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12054), + [25660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [25662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [25664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [25666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [25668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13865), + [25670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [25672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [25674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [25676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), + [25678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [25680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [25682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), + [25684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [25686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8368), + [25689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [25691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [25693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [25695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [25697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [25699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [25701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [25703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13714), + [25705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [25707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [25709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [25711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [25713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [25715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [25717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [25719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [25721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [25723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [25725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [25727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13737), + [25729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [25731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [25733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [25735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [25737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [25739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [25741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [25743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [25745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11470), + [25747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [25749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [25751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [25753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [25755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [25757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [25759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [25761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [25763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12918), + [25765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [25767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [25769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [25771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12928), + [25773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [25775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11433), + [25777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [25779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11453), + [25781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [25783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [25785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [25787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14053), + [25789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [25791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [25793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [25795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [25797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [25799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11451), + [25801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [25803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13708), + [25805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [25807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11405), + [25809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [25811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11581), + [25813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [25815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [25817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [25819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [25821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [25823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13819), + [25826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [25828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11636), + [25830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [25832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11378), + [25834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [25836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [25838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [25840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [25842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), + [25844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [25846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13822), + [25849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [25851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12234), + [25853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [25855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [25857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), + [25859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [25861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [25863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [25865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [25867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [25869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [25871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [25873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [25875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [25877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12756), + [25879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12241), + [25881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [25883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [25885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [25887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [25889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [25891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10271), + [25893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [25895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [25897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [25899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [25901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12778), + [25903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [25905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [25907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [25909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [25911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [25913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11676), + [25915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [25917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [25919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [25921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [25923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [25925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [25927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [25929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [25931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12798), + [25933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [25935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [25937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11705), + [25939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [25941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11708), + [25943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8290), + [25946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [25948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [25950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11783), + [25952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [25954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [25956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [25958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [25960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12912), + [25962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [25964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [25966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_pat, 3, 0, 0), + [25968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [25970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [25972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12914), + [25974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [25976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12920), + [25978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [25980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [25982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [25984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [25986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12922), + [25988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [25990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [25992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11020), + [25994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [25996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [25998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [26000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [26002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [26004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [26006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [26008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [26010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12931), + [26012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [26014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10059), + [26016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [26018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [26020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [26022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11022), + [26024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [26026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [26028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [26030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [26032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [26034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [26036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [26038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [26040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [26042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8872), + [26044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [26046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [26048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [26050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10073), + [26052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [26054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [26056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [26058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11075), + [26060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [26062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [26064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [26066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [26068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), + [26070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [26072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [26074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [26076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [26078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [26080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9547), + [26082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [26084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [26086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [26088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9646), + [26090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [26092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9707), + [26094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [26096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [26098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [26100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [26102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [26104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [26106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11094), + [26108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [26110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10047), + [26112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [26114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11095), + [26116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [26118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [26120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [26122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [26124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [26126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), + [26128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [26130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [26132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [26134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [26136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11967), + [26138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [26140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [26142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10120), + [26144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [26146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8932), + [26148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [26150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10131), + [26152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [26154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11981), + [26156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [26158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [26160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11982), + [26162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [26164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11121), + [26166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [26168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10132), + [26170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [26172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [26174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [26176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [26178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [26180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [26182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10145), + [26184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [26186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11995), + [26188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [26190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [26192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [26194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [26196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [26198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [26200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [26202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [26204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [26206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [26208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [26210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [26212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [26214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [26216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10194), + [26218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [26220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [26222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11660), + [26224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [26226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [26228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [26230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [26232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [26234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [26236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [26238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13865), + [26241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [26243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [26245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [26247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [26249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [26251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [26253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [26255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [26257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [26259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11337), + [26261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [26263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [26265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [26267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [26269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [26271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [26273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [26275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [26277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [26279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [26281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [26283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [26285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [26287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [26289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [26291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [26293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [26295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), + [26297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [26299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [26301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [26303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [26305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [26307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [26309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [26311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [26313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [26315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11398), + [26317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [26319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11403), + [26321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [26323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [26325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [26327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11521), + [26329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [26331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [26333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [26335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11222), + [26337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [26339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [26341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [26343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [26345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [26347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [26349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [26351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [26353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9070), + [26355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [26357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [26359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [26361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [26363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [26365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [26367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [26369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [26371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), + [26373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8311), + [26376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [26378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [26380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [26382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [26384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), + [26386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [26388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11243), + [26390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [26392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11247), + [26394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [26396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11641), + [26398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [26400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), + [26402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8316), + [26405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [26407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [26409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [26411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [26413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [26415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [26417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [26419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [26421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [26423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), + [26425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8325), + [26428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [26430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [26432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [26434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [26436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [26438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [26440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [26442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), + [26444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8333), + [26447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [26449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11289), + [26451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [26453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), + [26455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8338), + [26457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8338), + [26460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [26462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [26464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [26466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23821), + [26468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18885), + [26470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18429), + [26472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [26474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [26476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [26478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [26480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [26482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [26484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [26486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [26488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10225), + [26490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [26492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [26494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [26496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [26498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10236), + [26500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [26502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10237), + [26504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [26506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [26508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [26510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [26512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [26514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [26516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [26518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [26520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [26522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [26524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [26526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [26528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13935), + [26530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [26532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11683), + [26534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [26536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11688), + [26538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [26540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [26542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [26544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [26546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [26548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [26550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10248), + [26552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [26554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [26556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [26558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [26560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [26562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [26564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [26566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11722), + [26568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [26570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9136), + [26572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hol_ty_spec, 1, 0, 0), + [26574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hol_ty_spec, 1, 0, 0), + [26576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [26578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [26580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [26582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [26584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [26586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [26588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [26590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10616), + [26592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12704), + [26594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [26596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [26598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [26600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10733), + [26602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [26604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10738), + [26606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [26608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [26610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10786), + [26612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [26614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [26616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [26618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [26620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [26622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [26624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [26626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [26628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [26630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [26632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [26634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [26636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), + [26638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [26640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [26642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [26644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [26646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [26648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), + [26650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [26652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9086), + [26654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [26656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [26658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [26660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11796), + [26662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [26664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [26666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [26668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [26670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [26672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [26674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [26676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [26678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [26680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [26682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [26684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9971), + [26686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [26688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [26690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [26692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10179), + [26694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [26696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [26698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9991), + [26700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [26702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9993), + [26704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [26706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11839), + [26708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [26710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11840), + [26712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [26714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [26716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10006), + [26718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [26720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [26722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11880), + [26724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [26726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [26728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [26730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [26732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23560), + [26734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18742), + [26736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12114), + [26738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [26740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [26742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [26744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12612), + [26746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [26748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [26750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [26752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12168), + [26754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [26756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [26758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [26760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14008), + [26762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [26764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12219), + [26766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), + [26768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [26770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), + [26772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8359), + [26775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(17722), + [26778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [26780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [26782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12155), + [26784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [26786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [26788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), + [26790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13731), + [26792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12016), + [26794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [26796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [26798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8550), + [26800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12083), + [26802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19431), + [26804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18562), + [26806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20923), + [26808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), + [26810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [26812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12162), + [26814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [26816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [26818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [26820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [26822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12020), + [26824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [26826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [26828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13811), + [26831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), + [26833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13669), + [26835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12871), + [26837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [26839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [26841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), + [26843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), + [26845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12163), + [26847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [26849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [26851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), + [26853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12866), + [26855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [26857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12096), + [26859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [26861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13942), + [26863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13942), + [26866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12102), + [26868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7944), + [26870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12896), + [26872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), + [26874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13291), + [26876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13325), + [26878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12254), + [26880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18153), + [26882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tyseq, 1, 0, 0), + [26884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12646), + [26886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12919), + [26888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [26890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tyseq, 3, 0, 0), + [26892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [26894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7953), + [26896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [26898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [26900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), + [26902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [26904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [26906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [26908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), + [26910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [26912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13811), + [26914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [26916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [26918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), + [26920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_backquote_repeat1, 2, 0, 0), SHIFT_REPEAT(24819), + [26923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_backquote_repeat1, 2, 0, 0), SHIFT_REPEAT(17815), + [26926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_backquote_repeat1, 2, 0, 0), + [26928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [26930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [26932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [26934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13909), + [26936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8322), + [26939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13758), + [26941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [26943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8442), + [26945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18170), + [26947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12810), + [26949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [26951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12679), + [26953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [26955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), + [26957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [26959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13959), + [26961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [26963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13818), + [26965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18612), + [26967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12821), + [26969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_repeat1, 2, 0, 0), SHIFT_REPEAT(8336), + [26972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13025), + [26974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [26976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), + [26978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13821), + [26980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13909), + [26983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_exp_repeat1, 2, 0, 0), + [26985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18330), + [26987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [26989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24814), + [26991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12807), + [26993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12167), + [26995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [26997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [26999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15027), + [27001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [27003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disj_pat, 3, 0, 0), + [27005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [27007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conj_pat, 3, 0, 0), + [27009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14995), + [27011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12783), + [27013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [27015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), + [27017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [27019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [27021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [27023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), + [27025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24755), + [27027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), + [27029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14207), + [27031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [27033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [27035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), + [27037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [27039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [27041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12814), + [27043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), + [27045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25026), + [27047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24819), + [27049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17815), + [27051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9178), + [27053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11630), + [27055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12049), + [27057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10539), + [27059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), + [27061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17995), + [27063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), + [27065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24807), + [27067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [27069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20949), + [27071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12973), + [27073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17997), + [27075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18129), + [27077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12296), + [27079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18134), + [27081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10925), + [27083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11284), + [27085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [27087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10316), + [27089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11449), + [27091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [27093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [27095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [27097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [27099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18343), + [27101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [27103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [27105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [27107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), + [27109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18032), + [27111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8230), + [27113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18037), + [27115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18009), + [27117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), + [27119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18010), + [27121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [27123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), + [27125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), + [27127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [27129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [27131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18379), + [27133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), + [27135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18351), + [27137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [27139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [27141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18380), + [27143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12048), + [27145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [27147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22763), + [27149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18053), + [27151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10948), + [27153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18076), + [27155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12040), + [27157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10663), + [27159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11803), + [27161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [27163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), + [27165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11046), + [27167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis_listexp, 3, 0, 0), + [27169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [27171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [27173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18056), + [27175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10950), + [27177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8986), + [27179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9315), + [27181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18058), + [27183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [27185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [27187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [27189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [27191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10972), + [27193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10969), + [27195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10329), + [27197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11610), + [27199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10304), + [27201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11375), + [27203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18074), + [27205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7450), + [27207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18075), + [27209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [27211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [27213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18102), + [27215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11037), + [27217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18103), + [27219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18082), + [27221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), + [27223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [27225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18084), + [27227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7459), + [27229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18154), + [27231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [27233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18086), + [27235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), + [27237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18087), + [27239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18188), + [27241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), + [27243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17988), + [27245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [27247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [27249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18341), + [27251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9328), + [27253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18357), + [27255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18439), + [27257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), + [27259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [27261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [27263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12012), + [27265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [27267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [27269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18220), + [27271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), + [27273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [27275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18235), + [27277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11065), + [27279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9786), + [27281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10395), + [27283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_binder_repeat1, 2, 0, 0), SHIFT_REPEAT(24807), + [27286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_binder_repeat1, 2, 0, 0), + [27288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_binder_repeat1, 2, 0, 0), SHIFT_REPEAT(20949), + [27291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [27293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [27295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), + [27297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9906), + [27299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10292), + [27301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14155), + [27303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14294), + [27305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8839), + [27307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [27309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), + [27311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9241), + [27313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9884), + [27315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9247), + [27317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9558), + [27319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18131), + [27321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9921), + [27323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18313), + [27325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9120), + [27327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18132), + [27329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [27331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [27333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18144), + [27335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9192), + [27337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12328), + [27339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18173), + [27341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10101), + [27343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9528), + [27345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [27347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13529), + [27349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13852), + [27351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18148), + [27353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [27355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [27357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [27359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [27361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18149), + [27363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), + [27365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18150), + [27367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9223), + [27369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18175), + [27371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9832), + [27373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10500), + [27375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [27377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), + [27379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18193), + [27381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12137), + [27383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18194), + [27385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13325), + [27387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [27389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18256), + [27391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9053), + [27393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18258), + [27395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18337), + [27397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18250), + [27399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), + [27401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18481), + [27403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11389), + [27405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18176), + [27407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11944), + [27409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18177), + [27411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [27413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [27415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13577), + [27417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13814), + [27419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11970), + [27421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [27423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [27425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [27427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18550), + [27429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18252), + [27431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10306), + [27433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21682), + [27435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18190), + [27437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10737), + [27439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10110), + [27441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18192), + [27443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11958), + [27445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13941), + [27447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12699), + [27449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13186), + [27451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13908), + [27453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [27455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14313), + [27457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14567), + [27459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11275), + [27461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12261), + [27463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9258), + [27465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9875), + [27467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10792), + [27469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12164), + [27471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18207), + [27473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9447), + [27475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), + [27477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9555), + [27479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [27481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18208), + [27483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18264), + [27485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7773), + [27487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10356), + [27489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11538), + [27491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18243), + [27493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), + [27495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18268), + [27497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_fn_spec, 3, 0, 0), + [27499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19092), + [27501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19093), + [27503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18221), + [27505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [27507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18223), + [27509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9456), + [27511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18249), + [27513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11983), + [27515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [27517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [27519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [27521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [27523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [27525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12818), + [27527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10007), + [27529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18305), + [27531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [27533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [27535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [27537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21787), + [27539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18310), + [27541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), + [27543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [27545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9190), + [27547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9848), + [27549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13735), + [27551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9982), + [27553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10807), + [27555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [27557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [27559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [27561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [27563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18283), + [27565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10374), + [27567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18292), + [27569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [27571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [27573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [27575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), + [27577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13560), + [27579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13694), + [27581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11996), + [27583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [27585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [27587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [27589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [27591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), + [27593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10709), + [27595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11122), + [27597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12003), + [27599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [27601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [27603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), + [27605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13874), + [27607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9061), + [27609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18293), + [27611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [27613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18295), + [27615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), + [27617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), + [27619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18274), + [27621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), + [27623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18275), + [27625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7783), + [27627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18356), + [27629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11583), + [27631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13874), + [27634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [27636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [27638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [27640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [27642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [27644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [27646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [27648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [27650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), + [27652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21881), + [27654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10393), + [27656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18297), + [27658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), + [27660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18300), + [27662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11260), + [27664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18327), + [27666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11179), + [27668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18301), + [27670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18309), + [27672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), + [27674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18311), + [27676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18328), + [27678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18299), + [27680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [27682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), + [27684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18368), + [27686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11279), + [27688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18312), + [27690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), + [27692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18316), + [27694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), + [27696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), + [27698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [27700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9129), + [27702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [27704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9628), + [27706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10302), + [27708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [27710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [27712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [27714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [27716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [27718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [27720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12013), + [27722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [27724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [27726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [27728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11207), + [27730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11344), + [27732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12118), + [27734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12884), + [27736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [27738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18387), + [27740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11720), + [27742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21977), + [27744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18352), + [27746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [27748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18353), + [27750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9398), + [27752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18390), + [27754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [27756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [27758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [27760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [27762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17977), + [27764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), + [27766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11618), + [27768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [27770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [27772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18321), + [27774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [27776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11501), + [27778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11926), + [27780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [27782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [27784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18395), + [27786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [27788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18406), + [27790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18007), + [27792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [27794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18394), + [27796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6961), + [27798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18397), + [27800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7993), + [27802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18012), + [27804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [27806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9034), + [27808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9300), + [27810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11350), + [27812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18433), + [27814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), + [27816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18434), + [27818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [27820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [27822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [27824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [27826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), + [27828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [27830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18426), + [27832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [27834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8830), + [27836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8955), + [27838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18421), + [27840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), + [27842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18423), + [27844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18430), + [27846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pat_repeat1, 2, 0, 0), + [27848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [27850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [27852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [27854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), + [27856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10924), + [27858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [27860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18444), + [27862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), + [27864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18445), + [27866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18509), + [27868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10208), + [27870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), + [27872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18471), + [27874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10633), + [27876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18477), + [27878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [27880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [27882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), + [27884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18510), + [27886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat2, 2, 0, 22), + [27888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18669), + [27890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8271), + [27892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18459), + [27894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9577), + [27896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18462), + [27898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18051), + [27900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [27902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18189), + [27904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9588), + [27906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [27908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13889), + [27910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [27912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [27914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18001), + [27916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_exp_repeat2, 2, 0, 0), + [27918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [27920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13744), + [27922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10642), + [27924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [27926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), + [27928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11465), + [27930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9105), + [27932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9385), + [27934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [27936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [27938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [27940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14082), + [27942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18501), + [27944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [27946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18502), + [27948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9970), + [27950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10355), + [27952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [27954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [27956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13908), + [27959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9942), + [27961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10602), + [27963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [27965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [27967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [27969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9532), + [27971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10461), + [27973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18525), + [27975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [27977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10217), + [27979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18526), + [27981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20687), + [27983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15211), + [27985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18564), + [27987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7831), + [27989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8856), + [27991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8988), + [27993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18569), + [27995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18539), + [27997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9644), + [27999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18540), + [28001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9556), + [28003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10308), + [28005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18533), + [28007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11822), + [28009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18534), + [28011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [28013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18535), + [28015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), + [28017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18536), + [28019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11890), + [28021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7531), + [28023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9654), + [28025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18424), + [28027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18591), + [28029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), + [28031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18590), + [28033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), + [28035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18605), + [28037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18615), + [28039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [28041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18616), + [28043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [28045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18608), + [28047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13735), + [28050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17991), + [28052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [28054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17992), + [28056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [28058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [28060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7845), + [28062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [28064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [28066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [28068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [28070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), + [28072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9004), + [28074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_fn_spec, 1, 0, 0), + [28076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18585), + [28078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10682), + [28080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18586), + [28082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [28084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), + [28086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [28088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [28090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18596), + [28092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [28094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18597), + [28096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10601), + [28098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12944), + [28100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [28102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [28104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), + [28106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), + [28108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18628), + [28110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [28112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18658), + [28114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [28116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18610), + [28118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7577), + [28120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [28122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18611), + [28124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18622), + [28126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11429), + [28128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18625), + [28130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18618), + [28132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), + [28134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18619), + [28136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), + [28138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12945), + [28140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [28142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [28144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [28146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), + [28148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [28150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11765), + [28152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [28154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [28156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis_exprow, 3, 0, 0), + [28158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [28160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [28162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [28164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18650), + [28166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [28168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18651), + [28170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 2, 0, 0), SHIFT_REPEAT(24980), + [28173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [28175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), + [28177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18034), + [28179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11141), + [28181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18095), + [28183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [28185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), + [28187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18659), + [28189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10952), + [28191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18656), + [28193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [28195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18657), + [28197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18660), + [28199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18652), + [28201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9938), + [28203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18653), + [28205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [28207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), + [28209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9955), + [28211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18670), + [28213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10827), + [28215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exprow, 3, 0, 0), + [28217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [28219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10172), + [28221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13744), + [28224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18671), + [28226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18214), + [28228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9978), + [28230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17973), + [28232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10517), + [28234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17976), + [28236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10848), + [28238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18270), + [28240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10029), + [28242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10511), + [28244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [28246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [28248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [28250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [28252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 2, 0, 0), SHIFT_REPEAT(25026), + [28255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [28257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), + [28259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9517), + [28261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10779), + [28263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24980), + [28265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [28267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [28269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10364), + [28271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11406), + [28273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17967), + [28275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9169), + [28277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10322), + [28279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11455), + [28281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18582), + [28283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8838), + [28285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18113), + [28287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17969), + [28289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11582), + [28291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24475), + [28293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17975), + [28295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17968), + [28297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18008), + [28299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12257), + [28301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [28303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [28305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [28307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12211), + [28309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [28311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [28313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [28315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12445), + [28317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [28319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [28321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [28323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [28325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(8184), + [28328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [28330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [28332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis_patrow, 3, 0, 0), + [28334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [28336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [28338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [28340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [28342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19247), + [28344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [28346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [28348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [28350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [28352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12950), + [28354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [28356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [28358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), + [28360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [28362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [28364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [28366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [28368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [28370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [28372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [28374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [28376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [28378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [28380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [28382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [28384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [28386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [28388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [28390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [28392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [28394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [28396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [28398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [28400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [28402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [28404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [28406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [28408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [28410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [28412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [28414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [28416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [28418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21134), + [28420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14078), + [28422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [28424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19450), + [28426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19451), + [28428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [28430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13924), + [28432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [28434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [28436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12770), + [28438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [28440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20094), + [28442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20095), + [28444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [28446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), + [28448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [28450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [28452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), + [28454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [28456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [28458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [28460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labvar_patrow, 3, 0, 0), + [28462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [28464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [28466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_patrow, 3, 0, 0), + [28468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [28470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [28472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [28474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [28476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [28478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [28480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), + [28482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [28484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [28486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17726), + [28488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [28490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [28492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16417), + [28494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [28496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [28498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [28500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), + [28502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [28504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [28506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [28508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [28510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [28512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [28514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), + [28516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [28518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14189), + [28520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [28522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20429), + [28524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [28526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [28528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12932), + [28530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20430), + [28532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), + [28534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [28536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [28538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [28540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [28542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), + [28544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [28546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13734), + [28548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [28550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [28552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [28554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [28556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [28558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [28560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [28562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [28564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [28566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [28568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [28570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), + [28572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [28574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [28576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), + [28578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [28580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [28582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [28584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [28586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [28588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13835), + [28590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [28592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [28594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [28596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20733), + [28598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20734), + [28600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [28602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [28604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [28606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [28608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [28610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis_listpat, 3, 0, 0), + [28612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [28614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [28616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [28618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [28620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [28622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [28624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9309), + [28626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [28628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [28630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_exp_repeat1, 2, 0, 0), SHIFT_REPEAT(2891), + [28633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [28635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [28637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [28639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), + [28641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [28643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [28645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [28647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [28649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), + [28651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [28653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [28655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [28657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [28659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [28661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hol_bvar, 3, 0, 7), + [28663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hol_bvar, 3, 0, 7), + [28665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18817), + [28667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [28669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [28671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [28673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [28675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [28677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [28679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [28681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13745), + [28683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13753), + [28685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13761), + [28687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [28689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), + [28691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [28693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [28695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [28697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [28699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21028), + [28701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21195), + [28703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [28705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [28707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [28709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15137), + [28711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [28713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [28715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [28717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [28719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [28721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [28723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [28725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [28727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [28729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13907), + [28731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [28733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [28735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [28737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18494), + [28739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [28741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [28743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [28745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [28747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22969), + [28749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24826), + [28751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [28753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labvar_patrow, 5, 0, 0), + [28755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [28757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [28759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [28761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13973), + [28763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [28765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [28767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [28769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [28771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19660), + [28773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [28775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [28777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [28779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [28781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [28783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [28785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [28787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [28789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [28791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [28793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [28795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14094), + [28797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [28799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14028), + [28801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [28803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [28805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [28807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [28809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20330), + [28811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13973), + [28814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20587), + [28816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13827), + [28818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [28820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [28822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [28824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12172), + [28826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [28828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12180), + [28830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [28832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conbind_repeat1, 2, 0, 0), SHIFT_REPEAT(19247), + [28835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [28837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20595), + [28839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [28841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [28843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [28845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [28847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [28849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [28851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14522), + [28853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15994), + [28855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [28857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [28859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15996), + [28861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [28863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [28865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [28867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [28869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [28871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16133), + [28873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14849), + [28875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [28877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [28879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [28881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14850), + [28883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14841), + [28885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16201), + [28887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [28889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [28891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8740), + [28893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14853), + [28895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16096), + [28897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [28899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [28901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [28903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [28905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16035), + [28907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10600), + [28909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [28911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [28913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [28915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [28917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [28919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16044), + [28921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14467), + [28923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [28925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [28927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16048), + [28929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [28931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [28933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [28935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12157), + [28937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), + [28939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), + [28941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10264), + [28943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16304), + [28945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [28947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14862), + [28949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14603), + [28951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [28953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14547), + [28955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [28957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14473), + [28959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14863), + [28961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [28963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [28965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [28967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [28969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14867), + [28971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [28973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [28975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [28977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [28979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [28981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [28983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16093), + [28985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14608), + [28987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [28989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [28991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [28993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [28995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [28997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16110), + [28999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [29001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [29003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [29005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [29007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [29009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16112), + [29011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14477), + [29013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [29015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14845), + [29017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [29019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14709), + [29021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [29023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10564), + [29025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [29027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [29029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [29031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15857), + [29033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14886), + [29035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [29037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [29039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14614), + [29041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14887), + [29043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [29045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [29047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [29049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [29051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [29053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [29055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [29057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10235), + [29059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14889), + [29061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [29063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [29065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [29067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [29069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10577), + [29071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [29073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16315), + [29075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [29077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [29079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15605), + [29081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16151), + [29083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [29085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10579), + [29087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [29089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15858), + [29091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [29093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [29095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [29097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [29099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [29101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11682), + [29103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16153), + [29105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [29107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [29109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16155), + [29111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16051), + [29113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [29115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10590), + [29117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14424), + [29119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12271), + [29121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15887), + [29123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9441), + [29125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [29127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10245), + [29129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15501), + [29131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14899), + [29133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [29135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10247), + [29137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15633), + [29139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [29141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14900), + [29143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14910), + [29145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [29147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [29149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14902), + [29151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [29153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [29155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10255), + [29157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [29159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [29161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), + [29163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16179), + [29165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [29167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), + [29169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15640), + [29171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [29173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9240), + [29175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [29177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), + [29179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16181), + [29181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [29183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9380), + [29185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16182), + [29187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [29189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11710), + [29191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16330), + [29193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [29195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [29197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15611), + [29199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), + [29201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [29203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11713), + [29205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [29207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14909), + [29209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [29211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16062), + [29213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16317), + [29215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14634), + [29217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atomic_tactic, 3, 0, 0), + [29219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14911), + [29221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14922), + [29223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14485), + [29225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [29227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [29229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14912), + [29231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [29233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [29235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [29237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9471), + [29239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15624), + [29241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16203), + [29243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [29245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9298), + [29247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [29249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), + [29251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16206), + [29253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [29255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), + [29257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16207), + [29259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14929), + [29261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [29263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11736), + [29265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14636), + [29267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [29269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14489), + [29271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14919), + [29273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16063), + [29275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14920), + [29277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [29279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [29281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14639), + [29283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [29285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [29287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14921), + [29289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12875), + [29291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [29293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [29295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [29297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [29299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [29301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16240), + [29303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14644), + [29305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [29307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [29309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [29311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [29313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14941), + [29315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [29317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [29319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [29321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16242), + [29323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [29325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [29327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [29329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [29331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16243), + [29333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [29335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [29337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14492), + [29339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [29341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12205), + [29343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [29345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [29347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [29349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [29351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [29353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15824), + [29355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8550), + [29357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [29359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14930), + [29361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [29363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_exp_repeat2, 2, 0, 0), SHIFT_REPEAT(3070), + [29366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14953), + [29368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [29370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [29372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14935), + [29374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [29376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [29378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [29380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [29382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [29384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [29386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [29388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [29390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14936), + [29392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [29394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [29396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [29398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [29400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15848), + [29402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16271), + [29404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16064), + [29406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [29408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), + [29410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [29412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [29414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [29416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [29418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [29420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16273), + [29422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [29424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [29426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16275), + [29428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16323), + [29430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25051), + [29432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15670), + [29434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [29436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [29438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [29440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14946), + [29442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [29444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [29446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [29448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9095), + [29450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [29452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [29454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15865), + [29456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16085), + [29458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [29460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12224), + [29462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14952), + [29464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), + [29466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [29468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12226), + [29470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [29472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [29474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [29476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14954), + [29478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), + [29480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [29482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [29484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [29486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [29488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16305), + [29490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14971), + [29492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_antiquoted, 2, 0, 9), + [29494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_antiquoted, 2, 0, 9), + [29496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [29498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [29500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [29502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [29504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [29506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16052), + [29508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16307), + [29510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [29512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [29514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [29516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [29518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [29520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [29522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16309), + [29524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16087), + [29526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [29528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9635), + [29530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [29532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat2, 2, 0, 19), SHIFT_REPEAT(2888), + [29535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_exp_repeat2, 2, 0, 19), + [29537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14964), + [29539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11772), + [29541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15804), + [29543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14564), + [29545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [29547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [29549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [29551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10267), + [29553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [29555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14965), + [29557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14530), + [29559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14891), + [29561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [29563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [29565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14968), + [29567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [29569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [29571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [29573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [29575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [29577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9603), + [29579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14653), + [29581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16341), + [29583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [29585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12242), + [29587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [29589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9615), + [29591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [29593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9617), + [29595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [29597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [29599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16338), + [29601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15537), + [29603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [29605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), + [29607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15907), + [29609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [29611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15672), + [29613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [29615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9709), + [29617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14505), + [29619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14398), + [29621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [29623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9097), + [29625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [29627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [29629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14656), + [29631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15772), + [29633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15648), + [29635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14399), + [29637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [29639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [29641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14400), + [29643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [29645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [29647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [29649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9673), + [29651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14506), + [29653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15767), + [29655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [29657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [29659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9687), + [29661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [29663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9690), + [29665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15773), + [29667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [29669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [29671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9698), + [29673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15797), + [29675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [29677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [29679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14507), + [29681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [29683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14659), + [29685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14406), + [29687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [29689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [29691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14531), + [29693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [29695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [29697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14409), + [29699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16018), + [29701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [29703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9145), + [29705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [29707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [29709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14410), + [29711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [29713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [29715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [29717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [29719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16329), + [29721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [29723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [29725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [29727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11834), + [29729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14511), + [29731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [29733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [29735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [29737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [29739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15536), + [29741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [29743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [29745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15675), + [29747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [29749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [29751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [29753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [29755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [29757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [29759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14906), + [29761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [29763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [29765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [29767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16038), + [29769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16226), + [29771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14418), + [29773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [29775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [29777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14421), + [29779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16039), + [29781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [29783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [29785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14423), + [29787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [29789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), + [29791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [29793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [29795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [29797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), + [29799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [29801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [29803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15945), + [29805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16256), + [29807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [29809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [29811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [29813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [29815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15998), + [29817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [29819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [29821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16002), + [29823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [29825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), + [29827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [29829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11245), + [29831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [29833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16269), + [29835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), + [29837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [29839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14431), + [29841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [29843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9104), + [29845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14532), + [29847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12582), + [29849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), + [29851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14432), + [29853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [29855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14719), + [29857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14667), + [29859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [29861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [29863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [29865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14433), + [29867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [29869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [29871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [29873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [29875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [29877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8993), + [29879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [29881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [29883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16174), + [29885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16295), + [29887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14466), + [29889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [29891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [29893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9008), + [29895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [29897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9010), + [29899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16178), + [29901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [29903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [29905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9023), + [29907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15650), + [29909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16195), + [29911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14668), + [29913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_THEN_repeat1, 2, 0, 0), + [29915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16254), + [29917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [29919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16259), + [29921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16267), + [29923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14869), + [29925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16340), + [29927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14542), + [29929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16272), + [29931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15627), + [29933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15500), + [29935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15523), + [29937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15626), + [29939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 2, 0, 0), SHIFT_REPEAT(25051), + [29942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15826), + [29944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15830), + [29946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15880), + [29948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [29950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14543), + [29952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15995), + [29954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [29956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16071), + [29958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16080), + [29960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14670), + [29962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16247), + [29964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16262), + [29966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16277), + [29968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [29970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [29972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [29974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [29976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16279), + [29978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [29980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15487), + [29982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16036), + [29984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14552), + [29986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [29988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16024), + [29990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [29992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [29994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16238), + [29996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [29998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16283), + [30000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [30002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10037), + [30004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [30006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [30008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [30010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [30012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [30014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15722), + [30016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16098), + [30018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15768), + [30020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16108), + [30022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15806), + [30024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [30026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [30028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16128), + [30030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16209), + [30032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_exp_repeat2, 2, 0, 0), SHIFT_REPEAT(16134), + [30035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_exp_repeat2, 2, 0, 0), + [30037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16261), + [30039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14895), + [30041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [30043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [30045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [30047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [30049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16319), + [30051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16301), + [30053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [30055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [30057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16312), + [30059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16313), + [30061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16122), + [30063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15513), + [30065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15519), + [30067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15520), + [30069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [30071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [30073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15564), + [30075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16169), + [30077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15565), + [30079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15573), + [30081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15646), + [30083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15655), + [30085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15667), + [30087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [30089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), + [30091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15705), + [30093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [30095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15707), + [30097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [30099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9501), + [30101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15713), + [30103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15883), + [30105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14924), + [30107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15778), + [30109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [30111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15792), + [30113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15798), + [30115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16117), + [30117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15866), + [30119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14565), + [30121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15870), + [30123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15918), + [30125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14913), + [30127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15961), + [30129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15965), + [30131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [30133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), + [30135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15975), + [30137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16123), + [30139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16016), + [30141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16040), + [30143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16053), + [30145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14569), + [30147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16103), + [30149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16106), + [30151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16109), + [30153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16140), + [30155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16152), + [30157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16163), + [30159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16210), + [30161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16251), + [30163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16297), + [30165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14781), + [30167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [30169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16314), + [30171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [30173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16316), + [30175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [30177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16321), + [30179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15489), + [30181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14574), + [30183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15490), + [30185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15494), + [30187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [30189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15507), + [30191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [30193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [30195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [30197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15508), + [30199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [30201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15510), + [30203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [30205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11263), + [30207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [30209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [30211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15517), + [30213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15521), + [30215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15525), + [30217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15697), + [30219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15530), + [30221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15538), + [30223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16324), + [30225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15539), + [30227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15559), + [30229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [30231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15560), + [30233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15561), + [30235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15568), + [30237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [30239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11507), + [30241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15569), + [30243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [30245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [30247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15575), + [30249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [30251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [30253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [30255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15579), + [30257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [30259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15582), + [30261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15791), + [30263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15584), + [30265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15595), + [30267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15599), + [30269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15601), + [30271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15620), + [30273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15621), + [30275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15625), + [30277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [30279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), + [30281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15636), + [30283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14403), + [30285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15795), + [30287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15638), + [30289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15641), + [30291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15644), + [30293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15656), + [30295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15658), + [30297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15666), + [30299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15669), + [30301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [30303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15671), + [30305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [30307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11026), + [30309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [30311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12232), + [30313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8387), + [30315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [30317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8389), + [30319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [30321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16217), + [30323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14677), + [30325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [30327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15923), + [30329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [30331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [30333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [30335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [30337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [30339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24956), + [30341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14494), + [30343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14679), + [30345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16001), + [30347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14612), + [30349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [30351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [30353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14493), + [30355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [30357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [30359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14631), + [30361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14680), + [30363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [30365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [30367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [30369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [30371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [30373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16263), + [30375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [30377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14637), + [30379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [30381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11614), + [30383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [30385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [30387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11620), + [30389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [30391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [30393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [30395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [30397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [30399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14496), + [30401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [30403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [30405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16218), + [30407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [30409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [30411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [30413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [30415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15847), + [30417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14508), + [30419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [30421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [30423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16280), + [30425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [30427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11877), + [30429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [30431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), + [30433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16017), + [30435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [30437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [30439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16281), + [30441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [30443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [30445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [30447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [30449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [30451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [30453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15874), + [30455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [30457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), + [30459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15886), + [30461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14517), + [30463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [30465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [30467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10280), + [30469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [30471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [30473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [30475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10270), + [30477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16041), + [30479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14537), + [30481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [30483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11681), + [30485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [30487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16224), + [30489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16222), + [30491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [30493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12425), + [30495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [30497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [30499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), + [30501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [30503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14519), + [30505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14687), + [30507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14666), + [30509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14788), + [30511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14763), + [30513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [30515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14671), + [30517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16337), + [30519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14688), + [30521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14538), + [30523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [30525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [30527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [30529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9155), + [30531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [30533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [30535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [30537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9157), + [30539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [30541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [30543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14691), + [30545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14673), + [30547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [30549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12472), + [30551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [30553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12474), + [30555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [30557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [30559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), + [30561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14529), + [30563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [30565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [30567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [30569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [30571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [30573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), + [30575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [30577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16160), + [30579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [30581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [30583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11845), + [30585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [30587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15499), + [30589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [30591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [30593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [30595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [30597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16165), + [30599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16306), + [30601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12958), + [30603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [30605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [30607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16166), + [30609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [30611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [30613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15679), + [30615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [30617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [30619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14956), + [30621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15502), + [30623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [30625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [30627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [30629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12502), + [30631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [30633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [30635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14465), + [30637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15503), + [30639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [30641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), + [30643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15542), + [30645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [30647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_longvid_repeat1, 2, 0, 0), SHIFT_REPEAT(9309), + [30650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_longvid_repeat1, 2, 0, 0), + [30652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [30654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), + [30656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [30658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), + [30660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14695), + [30662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [30664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [30666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [30668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [30670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16320), + [30672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [30674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14539), + [30676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [30678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11480), + [30680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [30682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14510), + [30684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14701), + [30686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [30688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14700), + [30690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [30692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [30694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14722), + [30696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14491), + [30698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15799), + [30700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [30702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14703), + [30704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14479), + [30706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [30708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [30710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [30712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14702), + [30714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [30716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [30718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [30720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [30722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [30724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15541), + [30726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [30728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [30730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14706), + [30732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [30734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [30736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [30738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [30740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [30742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [30744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [30746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [30748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [30750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15547), + [30752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15801), + [30754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [30756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [30758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15544), + [30760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15550), + [30762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13962), + [30764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [30766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [30768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [30770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [30772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [30774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [30776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16081), + [30778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [30780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [30782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [30784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [30786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [30788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [30790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [30792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14570), + [30794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [30796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15551), + [30798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [30800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [30802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14486), + [30804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15823), + [30806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14395), + [30808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [30810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [30812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15555), + [30814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [30816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11266), + [30818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [30820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [30822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [30824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14724), + [30826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_fn_spec, 4, 0, 0), + [30828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [30830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [30832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [30834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [30836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11431), + [30838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15662), + [30840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [30842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [30844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), + [30846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [30848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14785), + [30850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14720), + [30852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [30854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [30856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [30858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15827), + [30860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14728), + [30862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12909), + [30864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16061), + [30866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14972), + [30868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pat_repeat1, 2, 0, 0), SHIFT_REPEAT(15862), + [30871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pat_repeat1, 2, 0, 0), + [30873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14586), + [30875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [30877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15696), + [30879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14866), + [30881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [30883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [30885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [30887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [30889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [30891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [30893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [30895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [30897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14738), + [30899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14725), + [30901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [30903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15781), + [30905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [30907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [30909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [30911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), + [30913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [30915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [30917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [30919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [30921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11126), + [30923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15609), + [30925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15668), + [30927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [30929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), + [30931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [30933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [30935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [30937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [30939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [30941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14624), + [30943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [30945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11586), + [30947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15615), + [30949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [30951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11632), + [30953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [30955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11328), + [30957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15676), + [30959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [30961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [30963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [30965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [30967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [30969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15618), + [30971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16115), + [30973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [30975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11542), + [30977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15678), + [30979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15835), + [30981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [30983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14632), + [30985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16185), + [30987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15653), + [30989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9282), + [30991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [30993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11335), + [30995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [30997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14734), + [30999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [31001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11680), + [31003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14767), + [31005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10094), + [31007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14551), + [31009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [31011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14735), + [31013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [31015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16131), + [31017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15493), + [31019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14770), + [31021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [31023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [31025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [31027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [31029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [31031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [31033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14643), + [31035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14736), + [31037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [31039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [31041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [31043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [31045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [31047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [31049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [31051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [31053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [31055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [31057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [31059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [31061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [31063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15647), + [31065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [31067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14778), + [31069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14650), + [31071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [31073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [31075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14751), + [31077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [31079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [31081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [31083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [31085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [31087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [31089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11699), + [31091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [31093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [31095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15649), + [31097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15782), + [31099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14791), + [31101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14553), + [31103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [31105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [31107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [31109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [31111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16014), + [31113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [31115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11775), + [31117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15651), + [31119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [31121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11782), + [31123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15787), + [31125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [31127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [31129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11035), + [31131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15789), + [31133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [31135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [31137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [31139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [31141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [31143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14417), + [31145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), + [31147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [31149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16189), + [31151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16113), + [31153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [31155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14669), + [31157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14748), + [31159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), + [31161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [31163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [31165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [31167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [31169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14555), + [31171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [31173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), + [31175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11161), + [31177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [31179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [31181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14808), + [31183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [31185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [31187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14749), + [31189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [31191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10058), + [31193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16148), + [31195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14509), + [31197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14557), + [31199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [31201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labvar_patrow, 1, 0, 0), + [31203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12044), + [31205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), + [31207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [31209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [31211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14811), + [31213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14750), + [31215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [31217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [31219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [31221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16147), + [31223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [31225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [31227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [31229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [31231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [31233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [31235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [31237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [31239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14814), + [31241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [31243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15693), + [31245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [31247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [31249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16223), + [31251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [31253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), + [31255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14425), + [31257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [31259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15904), + [31261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14707), + [31263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [31265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [31267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [31269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [31271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15698), + [31273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [31275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [31277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [31279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [31281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), + [31283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15912), + [31285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [31287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [31289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [31291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15913), + [31293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [31295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [31297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [31299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15699), + [31301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14563), + [31303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9826), + [31305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14776), + [31307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [31309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [31311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8925), + [31313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14842), + [31315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9115), + [31317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [31319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10070), + [31321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [31323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [31325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [31327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10803), + [31329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [31331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10072), + [31333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16184), + [31335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14758), + [31337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [31339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14854), + [31341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [31343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15837), + [31345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [31347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [31349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10080), + [31351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [31353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14760), + [31355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [31357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14576), + [31359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [31361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [31363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14858), + [31365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12007), + [31367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [31369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [31371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [31373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [31375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [31377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9645), + [31379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16215), + [31381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14782), + [31383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [31385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16056), + [31387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [31389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [31391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14716), + [31393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [31395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [31397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [31399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14761), + [31401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [31403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [31405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [31407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11092), + [31409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [31411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9800), + [31413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [31415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9802), + [31417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [31419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [31421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10673), + [31423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16066), + [31425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15724), + [31427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [31429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [31431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14726), + [31433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15810), + [31435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [31437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9815), + [31439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14428), + [31441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [31443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10708), + [31445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16070), + [31447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14727), + [31449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [31451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10713), + [31453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16193), + [31455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15729), + [31457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [31459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [31461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10739), + [31463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14654), + [31465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15733), + [31467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [31469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [31471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [31473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14487), + [31475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14733), + [31477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [31479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [31481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [31483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11116), + [31485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [31487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), + [31489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [31491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [31493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [31495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11980), + [31497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [31499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11120), + [31501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14884), + [31503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14737), + [31505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16214), + [31507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10933), + [31509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [31511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [31513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10164), + [31515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15915), + [31517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14556), + [31519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [31521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [31523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14773), + [31525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15657), + [31527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14890), + [31529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [31531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11992), + [31533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [31535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11994), + [31537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14566), + [31539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [31541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [31543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14744), + [31545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [31547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), + [31549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15838), + [31551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14774), + [31553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [31555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11140), + [31557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [31559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [31561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14898), + [31563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15673), + [31565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [31567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15949), + [31569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [31571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [31573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12002), + [31575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [31577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [31579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [31581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8929), + [31583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16190), + [31585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15686), + [31587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [31589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [31591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [31593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [31595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [31597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [31599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [31601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16205), + [31603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14775), + [31605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [31607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [31609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [31611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16211), + [31613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [31615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [31617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [31619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10880), + [31621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16094), + [31623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15760), + [31625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [31627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [31629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14723), + [31631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [31633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [31635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [31637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [31639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [31641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10903), + [31643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [31645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [31647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [31649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10905), + [31651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16292), + [31653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15762), + [31655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11417), + [31657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [31659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11607), + [31661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14794), + [31663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [31665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10917), + [31667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15763), + [31669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14769), + [31671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14675), + [31673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14937), + [31675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [31677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14646), + [31679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [31681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14787), + [31683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14571), + [31685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10630), + [31687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [31689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), + [31691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [31693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [31695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14783), + [31697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14947), + [31699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [31701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [31703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14961), + [31705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16298), + [31707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [31709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [31711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [31713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [31715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14800), + [31717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16241), + [31719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14784), + [31721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16343), + [31723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [31725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [31727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14798), + [31729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [31731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [31733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14648), + [31735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [31737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17758), + [31739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [31741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [31743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [31745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [31747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [31749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [31751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15987), + [31753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [31755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [31757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11397), + [31759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14786), + [31761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [31763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [31765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15829), + [31767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [31769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [31771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [31773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [31775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10989), + [31777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [31779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [31781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11494), + [31783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [31785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11504), + [31787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15783), + [31789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16121), + [31791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15840), + [31793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hol_bvar, 1, 0, 7), + [31795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16400), + [31797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14573), + [31799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [31801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10999), + [31803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [31805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11001), + [31807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15784), + [31809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15845), + [31811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [31813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11008), + [31815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15785), + [31817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [31819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11558), + [31821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [31823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15853), + [31825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [31827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [31829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [31831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10130), + [31833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [31835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16118), + [31837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10303), + [31839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [31841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14411), + [31843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [31845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14792), + [31847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14690), + [31849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [31851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10142), + [31853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [31855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10144), + [31857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14652), + [31859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15876), + [31861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14413), + [31863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14793), + [31865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16284), + [31867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10505), + [31869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [31871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [31873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [31875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [31877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [31879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14795), + [31881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [31883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14416), + [31885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [31887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [31889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [31891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11242), + [31893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [31895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [31897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [31899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15794), + [31901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [31903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [31905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10319), + [31907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), + [31909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15825), + [31911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14832), + [31913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14444), + [31915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16015), + [31917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [31919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [31921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [31923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10152), + [31925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [31927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10841), + [31929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [31931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9239), + [31933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [31935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10871), + [31937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [31939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [31941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15833), + [31943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15854), + [31945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14835), + [31947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14520), + [31949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [31951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9436), + [31953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16334), + [31955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [31957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10293), + [31959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [31961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [31963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15834), + [31965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15952), + [31967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [31969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [31971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14819), + [31973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [31975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14837), + [31977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14498), + [31979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [31981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [31983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [31985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), + [31987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [31989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14548), + [31991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15972), + [31993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [31995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14804), + [31997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [31999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11283), + [32001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [32003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [32005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11288), + [32007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [32009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [32011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), + [32013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [32015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8867), + [32017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [32019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), + [32021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15977), + [32023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [32025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16102), + [32027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14807), + [32029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [32031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [32033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14436), + [32035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15979), + [32037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11760), + [32039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16058), + [32041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14583), + [32043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14445), + [32045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [32047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [32049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(13962), + [32052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14810), + [32054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [32056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [32058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [32060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [32062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15877), + [32064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14438), + [32066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4955), + [32069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_ty_repeat1, 2, 0, 0), SHIFT_REPEAT(17725), + [32072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_ty_repeat1, 2, 0, 0), + [32074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14521), + [32076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [32078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), + [32080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [32082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [32084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [32086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [32088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15878), + [32090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14852), + [32092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [32094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [32096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [32098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11369), + [32100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14441), + [32102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15930), + [32104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [32106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), + [32108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15879), + [32110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [32112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14855), + [32114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [32116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16074), + [32118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16233), + [32120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_antiquoted, 4, 0, 0), + [32122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_antiquoted, 4, 0, 0), + [32124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [32126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [32128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [32130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [32132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [32134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [32136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [32138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14446), + [32140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15604), + [32142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14857), + [32144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [32146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [32148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [32150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [32152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [32154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9218), + [32156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14820), + [32158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16043), + [32160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [32162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [32164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14584), + [32166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [32168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [32170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [32172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [32174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [32176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [32178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16045), + [32180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13972), + [32182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [32184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), + [32186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [32188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [32190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16047), + [32192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [32194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [32196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15674), + [32198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14829), + [32200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [32202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_fn_spec, 2, 0, 0), + [32204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14822), + [32206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [32208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [32210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15905), + [32212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10671), + [32214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14868), + [32216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [32218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10425), + [32220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [32222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [32224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14824), + [32226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14714), + [32228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14870), + [32230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [32232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11077), + [32234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [32236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [32238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [32240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [32242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_fn_spec_repeat1, 2, 0, 0), + [32244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_fn_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(19092), + [32247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15917), + [32249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15496), + [32251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [32253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [32255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14871), + [32257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [32259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [32261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14452), + [32263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [32265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10732), + [32267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [32269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16104), + [32271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_fn_spec_repeat2, 2, 0, 0), + [32273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_fn_spec_repeat2, 2, 0, 0), SHIFT_REPEAT(19093), + [32276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15586), + [32278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [32280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10783), + [32282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [32284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10785), + [32286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17766), + [32288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [32290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16144), + [32292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [32294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [32296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17654), + [32298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__datbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17654), + [32301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14693), + [32303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [32305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [32307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [32309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15922), + [32311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14454), + [32313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [32315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10318), + [32317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [32319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [32321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [32323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [32325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [32327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14457), + [32329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [32331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16145), + [32333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [32335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15929), + [32337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [32339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [32341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [32343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [32345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15715), + [32347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [32349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15793), + [32351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [32353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), + [32355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14587), + [32357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [32359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [32361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [32363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [32365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15732), + [32367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14696), + [32369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [32371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [32373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15982), + [32375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15737), + [32377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_wheretype_sigexp_repeat1, 2, 0, 0), SHIFT_REPEAT(24898), + [32380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [32382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10443), + [32384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10288), + [32386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [32388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [32390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10448), + [32392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [32394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [32396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [32398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14704), + [32400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [32402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15677), + [32404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10045), + [32406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14836), + [32408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14474), + [32410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14925), + [32412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [32414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [32416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [32418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [32420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [32422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [32424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14698), + [32426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14475), + [32428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16075), + [32430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14955), + [32432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14394), + [32434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [32436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [32438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [32440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14476), + [32442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25020), + [32444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [32446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [32448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [32450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9990), + [32452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14730), + [32454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15882), + [32456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [32458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12868), + [32460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [32462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11838), + [32464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [32466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [32468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [32470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25054), + [32472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [32474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10003), + [32476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15534), + [32478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [32480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10005), + [32482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15891), + [32484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [32486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10016), + [32488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24898), + [32490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [32492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15893), + [32494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14839), + [32496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14503), + [32498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [32500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15916), + [32502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [32504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10455), + [32506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [32508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [32510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [32512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [32514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15993), + [32516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [32518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11875), + [32520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8940), + [32522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [32524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [32526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11879), + [32528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [32530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10193), + [32532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15730), + [32534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14488), + [32536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [32538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11376), + [32540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [32542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21368), + [32544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10582), + [32546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10592), + [32548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12610), + [32550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9557), + [32552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21376), + [32554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22043), + [32556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12827), + [32558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21440), + [32560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21382), + [32562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21383), + [32564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21453), + [32566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21430), + [32568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21386), + [32570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), + [32572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21388), + [32574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9569), + [32576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21602), + [32578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11323), + [32580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21681), + [32582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21395), + [32584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21588), + [32586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22817), + [32588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21916), + [32590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21401), + [32592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21402), + [32594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15664), + [32596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21405), + [32598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21665), + [32600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11361), + [32602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21407), + [32604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11363), + [32606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21483), + [32608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16369), + [32610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21415), + [32612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8978), + [32614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21421), + [32616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21422), + [32618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21927), + [32620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21436), + [32622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9886), + [32624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21425), + [32626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16374), + [32628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21427), + [32630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16375), + [32632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21492), + [32634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16382), + [32636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18104), + [32638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21435), + [32640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21434), + [32642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18124), + [32644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9887), + [32646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21441), + [32648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21442), + [32650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21503), + [32652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21445), + [32654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21939), + [32656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16387), + [32658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21447), + [32660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16388), + [32662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9747), + [32664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22121), + [32666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21455), + [32668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21509), + [32670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21864), + [32672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21461), + [32674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21462), + [32676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21519), + [32678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22039), + [32680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21465), + [32682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9768), + [32684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21467), + [32686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9769), + [32688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15002), + [32690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24609), + [32692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21474), + [32694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [32696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21480), + [32698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21481), + [32700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22782), + [32702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [32704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21484), + [32706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15008), + [32708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21486), + [32710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15009), + [32712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21634), + [32714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15017), + [32716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21494), + [32718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21537), + [32720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [32722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21574), + [32724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12897), + [32726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21500), + [32728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21501), + [32730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21542), + [32732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21504), + [32734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [32736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15022), + [32738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21506), + [32740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15023), + [32742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21546), + [32744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9785), + [32746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21514), + [32748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21658), + [32750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [32752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21586), + [32754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21880), + [32756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21520), + [32758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21521), + [32760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21524), + [32762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9795), + [32764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21526), + [32766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9798), + [32768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21551), + [32770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9280), + [32772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21533), + [32774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21686), + [32776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [32778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21539), + [32780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21540), + [32782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21543), + [32784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [32786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9287), + [32788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21545), + [32790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9290), + [32792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [32794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14376), + [32796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), + [32798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21553), + [32800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22827), + [32802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21611), + [32804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21559), + [32806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21560), + [32808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21566), + [32810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [32812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21563), + [32814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21674), + [32816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14347), + [32818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21565), + [32820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14358), + [32822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15731), + [32824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11784), + [32826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21573), + [32828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21571), + [32830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15741), + [32832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [32834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21579), + [32836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21580), + [32838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21616), + [32840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21728), + [32842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21583), + [32844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [32846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11027), + [32848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21585), + [32850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11028), + [32852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21618), + [32854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21603), + [32856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11515), + [32858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24756), + [32860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24811), + [32862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22006), + [32864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21726), + [32866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14772), + [32868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17732), + [32870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17732), + [32872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21625), + [32874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21721), + [32876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [32878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21633), + [32880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [32882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10838), + [32884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17178), + [32886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21607), + [32888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22028), + [32890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10840), + [32892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23522), + [32894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21762), + [32896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12189), + [32898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21750), + [32900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__typbind_repeat1, 2, 0, 0), SHIFT_REPEAT(17178), + [32903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21635), + [32905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [32907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21637), + [32909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [32911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21639), + [32913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19149), + [32915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [32917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11326), + [32919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21806), + [32921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [32923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21660), + [32925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21748), + [32927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21643), + [32929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21667), + [32931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21663), + [32933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21807), + [32935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21742), + [32937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [32939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21676), + [32941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [32943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tyseq_repeat1, 2, 0, 0), SHIFT_REPEAT(12610), + [32946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tyseq_repeat1, 2, 0, 0), + [32948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17795), + [32950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [32952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21651), + [32954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21752), + [32956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22565), + [32958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [32960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_THEN, 3, 0, 0), + [32962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [32964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21654), + [32966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), + [32968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21732), + [32970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21773), + [32972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21705), + [32974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22011), + [32976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21816), + [32978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21699), + [32980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21703), + [32982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [32984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21747), + [32986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21770), + [32988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21711), + [32990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [32992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21780), + [32994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21412), + [32996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21784), + [32998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21772), + [33000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [33002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [33004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22110), + [33006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9108), + [33008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9109), + [33010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22581), + [33012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12744), + [33014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21818), + [33016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22074), + [33018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14610), + [33020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21730), + [33022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21960), + [33024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21733), + [33026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [33028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23019), + [33030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21743), + [33032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(5181), + [33035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21736), + [33037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22089), + [33039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22822), + [33041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21753), + [33043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), + [33045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21739), + [33047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21756), + [33049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23880), + [33051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14278), + [33053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21834), + [33055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16012), + [33057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21841), + [33059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21795), + [33061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21832), + [33063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11476), + [33065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21763), + [33067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22976), + [33069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21863), + [33071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22191), + [33073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [33075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21760), + [33077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21766), + [33079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [33081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12386), + [33083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21761), + [33085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [33087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21786), + [33089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21820), + [33091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11655), + [33093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21821), + [33095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21768), + [33097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [33099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [33101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21789), + [33103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11656), + [33105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21884), + [33107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21819), + [33109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [33111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21809), + [33113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21952), + [33115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [33117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21825), + [33119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21777), + [33121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), + [33123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21779), + [33125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [33127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21782), + [33129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), + [33131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21810), + [33133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [33135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21783), + [33137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21811), + [33139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21893), + [33141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21910), + [33143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [33145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21915), + [33147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [33149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21796), + [33151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [33153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21793), + [33155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21822), + [33157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12768), + [33159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21799), + [33161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16057), + [33163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21798), + [33165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16059), + [33167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12769), + [33169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21845), + [33171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [33173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21830), + [33175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13447), + [33177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21829), + [33179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), + [33181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [33183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21953), + [33185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [33187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [33189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21866), + [33191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21833), + [33193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21906), + [33195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22108), + [33197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [33199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [33201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11687), + [33203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11696), + [33205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21869), + [33207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21959), + [33209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22145), + [33211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15193), + [33213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21846), + [33215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21956), + [33217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21843), + [33219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22169), + [33221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21879), + [33223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21937), + [33225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21885), + [33227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11711), + [33229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22205), + [33231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15846), + [33233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11622), + [33235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21943), + [33237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21891), + [33239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21853), + [33241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21868), + [33243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15358), + [33245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21870), + [33247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11624), + [33249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21875), + [33251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21857), + [33253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21478), + [33255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11714), + [33257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21898), + [33259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21901), + [33261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22142), + [33263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22233), + [33265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21904), + [33267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15852), + [33269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21909), + [33271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [33273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [33275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21923), + [33277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [33279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22152), + [33281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16557), + [33283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10662), + [33285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22297), + [33287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21947), + [33289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [33291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21920), + [33293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22002), + [33295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21963), + [33297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21930), + [33299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22499), + [33301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [33303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21928), + [33305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21979), + [33307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [33309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22311), + [33311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15194), + [33313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21918), + [33315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21929), + [33317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [33319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [33321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21954), + [33323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21931), + [33325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [33327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21932), + [33329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21976), + [33331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22009), + [33333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22109), + [33335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10675), + [33337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21991), + [33339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22016), + [33341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21936), + [33343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21957), + [33345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21980), + [33347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21962), + [33349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10585), + [33351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [33353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [33355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [33357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22026), + [33359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22076), + [33361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21944), + [33363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22031), + [33365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15403), + [33367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21946), + [33369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15405), + [33371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16192), + [33373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21675), + [33375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21970), + [33377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22355), + [33379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), + [33381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21972), + [33383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [33385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21974), + [33387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12187), + [33389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15045), + [33391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [33393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22008), + [33395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21985), + [33397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13857), + [33399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22234), + [33401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21993), + [33403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [33405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21994), + [33407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [33409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21995), + [33411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22015), + [33413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [33415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22023), + [33417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22085), + [33419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [33421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12916), + [33423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22347), + [33425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13858), + [33427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22116), + [33429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21997), + [33431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23212), + [33433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22052), + [33435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [33437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [33439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22003), + [33441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22018), + [33443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22060), + [33445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22007), + [33447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12917), + [33449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11234), + [33451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22067), + [33453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10586), + [33455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11185), + [33457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12492), + [33459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22068), + [33461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22013), + [33463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11493), + [33465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22037), + [33467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [33469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12494), + [33471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22069), + [33473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16289), + [33475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22020), + [33477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16291), + [33479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22041), + [33481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22235), + [33483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [33485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22042), + [33487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22113), + [33489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22071), + [33491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22160), + [33493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22946), + [33495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22046), + [33497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22077), + [33499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22119), + [33501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22288), + [33503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22131), + [33505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22164), + [33507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [33509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [33511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21817), + [33513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [33515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), + [33517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22050), + [33519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22084), + [33521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15131), + [33523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22053), + [33525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15058), + [33527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22252), + [33529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22102), + [33531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [33533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22105), + [33535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22098), + [33537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22513), + [33539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11885), + [33541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22373), + [33543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18563), + [33545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22519), + [33547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22106), + [33549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22572), + [33551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13864), + [33553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13763), + [33555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12514), + [33557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12515), + [33559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22155), + [33561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13194), + [33563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22090), + [33565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22532), + [33567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12235), + [33569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21410), + [33571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13195), + [33573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22095), + [33575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21612), + [33577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22272), + [33579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9596), + [33581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22184), + [33583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21966), + [33585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22099), + [33587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22251), + [33589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22310), + [33591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12236), + [33593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13197), + [33595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22199), + [33597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22133), + [33599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22903), + [33601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22134), + [33603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13216), + [33605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22136), + [33607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16608), + [33609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22123), + [33611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22139), + [33613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22318), + [33615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22146), + [33617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22149), + [33619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9159), + [33621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22906), + [33623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22536), + [33625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [33627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12030), + [33629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10594), + [33631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22255), + [33633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22275), + [33635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), + [33637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11044), + [33639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [33641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16613), + [33643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22264), + [33645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22166), + [33647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22447), + [33649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22781), + [33651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23349), + [33653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22281), + [33655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22993), + [33657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22175), + [33659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22173), + [33661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22678), + [33663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22179), + [33665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22180), + [33667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22171), + [33669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22174), + [33671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22333), + [33673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23268), + [33675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10718), + [33677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11867), + [33679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22276), + [33681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [33683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15935), + [33685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22270), + [33687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22282), + [33689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10595), + [33691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22192), + [33693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22269), + [33695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22289), + [33697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22904), + [33699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23090), + [33701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22215), + [33703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9160), + [33705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22200), + [33707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22195), + [33709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9619), + [33711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22197), + [33713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22221), + [33715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22201), + [33717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9620), + [33719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), + [33721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22274), + [33723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22202), + [33725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22358), + [33727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22332), + [33729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21749), + [33731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22238), + [33733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22285), + [33735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22206), + [33737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23136), + [33739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22208), + [33741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [33743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22209), + [33745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [33747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22213), + [33749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13578), + [33751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9625), + [33753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), + [33755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8720), + [33757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22218), + [33759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22239), + [33761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [33763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22471), + [33765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23846), + [33767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [33769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [33771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11535), + [33773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22242), + [33775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22222), + [33777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22909), + [33779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22226), + [33781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [33783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22246), + [33785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22225), + [33787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), + [33789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15908), + [33791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22515), + [33793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11887), + [33795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8874), + [33797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22231), + [33799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22517), + [33801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15909), + [33803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [33805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), + [33807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10249), + [33809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [33811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11045), + [33813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22257), + [33815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22549), + [33817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [33819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22258), + [33821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22364), + [33823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [33825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22259), + [33827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22507), + [33829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22496), + [33831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22298), + [33833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), + [33835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10250), + [33837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22301), + [33839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22261), + [33841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22525), + [33843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [33845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [33847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22309), + [33849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22308), + [33851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22265), + [33853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8512), + [33855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22267), + [33857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), + [33859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22560), + [33861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22392), + [33863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22396), + [33865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22320), + [33867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22522), + [33869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22324), + [33871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22313), + [33873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [33875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22316), + [33877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [33879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [33881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22381), + [33883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13118), + [33885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22382), + [33887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22336), + [33889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22323), + [33891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labvar_exprow, 1, 0, 0), + [33893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12063), + [33895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22547), + [33897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23662), + [33899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22413), + [33901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22334), + [33903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22409), + [33905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22341), + [33907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23172), + [33909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22342), + [33911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22531), + [33913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22331), + [33915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12250), + [33917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), + [33919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22349), + [33921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13113), + [33923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22778), + [33925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [33927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22414), + [33929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12251), + [33931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22368), + [33933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [33935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22980), + [33937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9664), + [33939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22379), + [33941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22466), + [33943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22713), + [33945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24754), + [33947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9299), + [33949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11164), + [33951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22371), + [33953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22383), + [33955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22367), + [33957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22423), + [33959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22388), + [33961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22376), + [33963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22441), + [33965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22350), + [33967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22430), + [33969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12037), + [33971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22360), + [33973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [33975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11183), + [33977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22508), + [33979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), + [33981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22518), + [33983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22796), + [33985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24763), + [33987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23399), + [33989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12038), + [33991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22432), + [33993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22537), + [33995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22407), + [33997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [33999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22400), + [34001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11165), + [34003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23475), + [34005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9676), + [34007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22405), + [34009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22420), + [34011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22497), + [34013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11643), + [34015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22416), + [34017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22422), + [34019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21472), + [34021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22485), + [34023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22426), + [34025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [34027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21518), + [34029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10479), + [34031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22428), + [34033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8774), + [34035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22555), + [34037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22438), + [34039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22502), + [34041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22512), + [34043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22435), + [34045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22484), + [34047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22443), + [34049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22451), + [34051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [34053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22492), + [34055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23105), + [34057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21788), + [34059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [34061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23690), + [34063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22498), + [34065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22448), + [34067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22457), + [34069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9693), + [34071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [34073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22449), + [34075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9694), + [34077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22450), + [34079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22114), + [34081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24781), + [34083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22459), + [34085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24832), + [34087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23174), + [34089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22584), + [34091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [34093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22595), + [34095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22456), + [34097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24518), + [34099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22461), + [34101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22468), + [34103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [34105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22462), + [34107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22571), + [34109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22593), + [34111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9165), + [34113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9700), + [34115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9701), + [34117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11432), + [34119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22144), + [34121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22469), + [34123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22472), + [34125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22500), + [34127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11442), + [34129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22470), + [34131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22464), + [34133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [34135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [34137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10333), + [34139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9704), + [34141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22476), + [34143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22474), + [34145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11430), + [34147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11756), + [34149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9166), + [34151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22477), + [34153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9705), + [34155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22628), + [34157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10488), + [34159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22479), + [34161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10489), + [34163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22744), + [34165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22488), + [34167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11202), + [34169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [34171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19002), + [34173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22625), + [34175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22550), + [34177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8783), + [34179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22639), + [34181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22491), + [34183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8785), + [34185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [34187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22375), + [34189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22599), + [34191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22745), + [34193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11637), + [34195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [34197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13581), + [34199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22559), + [34201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11649), + [34203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22591), + [34205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22511), + [34207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22685), + [34209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [34211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22718), + [34213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13174), + [34215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17767), + [34217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11029), + [34219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22521), + [34221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11030), + [34223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22554), + [34225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), + [34227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22546), + [34229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13218), + [34231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22551), + [34233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22615), + [34235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22561), + [34237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22643), + [34239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22563), + [34241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23971), + [34243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22800), + [34245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [34247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23718), + [34249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22607), + [34251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22576), + [34253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22692), + [34255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22847), + [34257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [34259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22750), + [34261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22583), + [34263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [34265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22585), + [34267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10256), + [34269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22712), + [34271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_THEN, 4, 0, 0), + [34273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17717), + [34275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22590), + [34277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_constructor_repeat1, 2, 0, 0), SHIFT_REPEAT(21180), + [34280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_constructor_repeat1, 2, 0, 0), + [34282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22626), + [34284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11725), + [34286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10257), + [34288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22619), + [34290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_THEN_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), + [34293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [34295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23741), + [34297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22389), + [34299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14799), + [34301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17749), + [34303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17749), + [34305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22596), + [34307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9099), + [34309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23318), + [34311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22622), + [34313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22697), + [34315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22623), + [34317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22616), + [34319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15953), + [34321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22631), + [34323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23096), + [34325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22704), + [34327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11744), + [34329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22624), + [34331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11679), + [34333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14281), + [34335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22794), + [34337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [34339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22603), + [34341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19004), + [34343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14823), + [34345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23093), + [34347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22681), + [34349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9295), + [34351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10532), + [34353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22654), + [34355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), + [34357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22653), + [34359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22689), + [34361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22657), + [34363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22671), + [34365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23070), + [34367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22662), + [34369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis_patrow, 1, 0, 0), + [34371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), + [34373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9319), + [34375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22661), + [34377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22656), + [34379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22636), + [34381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22660), + [34383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22958), + [34385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22709), + [34387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22965), + [34389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17952), + [34391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22804), + [34393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22751), + [34395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22679), + [34397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_ptuple_repeat1, 2, 0, 0), SHIFT_REPEAT(13745), + [34400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_ptuple_repeat1, 2, 0, 0), + [34402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22973), + [34404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14099), + [34406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24568), + [34408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22714), + [34410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22757), + [34412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8748), + [34414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22688), + [34416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22711), + [34418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22736), + [34420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22683), + [34422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [34424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22694), + [34426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22686), + [34428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [34430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13212), + [34432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22696), + [34434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22687), + [34436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22726), + [34438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22723), + [34440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22676), + [34442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [34444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [34446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22807), + [34448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22729), + [34450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22690), + [34452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [34454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22812), + [34456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13246), + [34458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16668), + [34460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14299), + [34462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24641), + [34464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22799), + [34466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23155), + [34468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [34470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [34472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9421), + [34474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22700), + [34476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22715), + [34478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11799), + [34480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22716), + [34482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11805), + [34484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22808), + [34486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22717), + [34488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10554), + [34490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23435), + [34492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22703), + [34494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10555), + [34496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22811), + [34498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22828), + [34500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22762), + [34502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [34504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9430), + [34506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22719), + [34508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13505), + [34510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11038), + [34512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11041), + [34514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [34516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22769), + [34518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23198), + [34520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17953), + [34522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22746), + [34524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22732), + [34526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [34528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22761), + [34530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22747), + [34532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [34534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22748), + [34536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22874), + [34538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), + [34540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22734), + [34542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8745), + [34544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13940), + [34546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22758), + [34548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22942), + [34550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11021), + [34552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22832), + [34554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22754), + [34556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [34558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23192), + [34560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [34562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [34564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22783), + [34566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22839), + [34568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22787), + [34570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22759), + [34572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22865), + [34574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10912), + [34576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13729), + [34578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22765), + [34580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13506), + [34582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22926), + [34584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13747), + [34586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23085), + [34588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22771), + [34590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [34592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10914), + [34594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21861), + [34596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21468), + [34598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22777), + [34600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10284), + [34602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22818), + [34604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22387), + [34606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [34608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22821), + [34610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12103), + [34612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22825), + [34614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10285), + [34616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23043), + [34618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22959), + [34620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22834), + [34622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22831), + [34624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22842), + [34626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15758), + [34628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23200), + [34630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [34632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [34634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22859), + [34636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22862), + [34638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [34640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10060), + [34642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22861), + [34644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [34646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22863), + [34648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22945), + [34650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [34652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [34654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22868), + [34656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22975), + [34658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22864), + [34660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22869), + [34662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [34664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18925), + [34666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22850), + [34668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22858), + [34670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21701), + [34672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22950), + [34674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [34676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22876), + [34678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23087), + [34680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22872), + [34682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23269), + [34684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22992), + [34686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22891), + [34688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [34690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22877), + [34692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23202), + [34694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22990), + [34696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22897), + [34698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22885), + [34700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22901), + [34702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [34704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24382), + [34706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tyvarseq_repeat1, 2, 0, 0), SHIFT_REPEAT(24756), + [34709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tyvarseq_repeat1, 2, 0, 0), + [34711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [34713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9727), + [34715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8972), + [34717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22888), + [34719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22899), + [34721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22895), + [34723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [34725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [34727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [34729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [34731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23000), + [34733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22776), + [34735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10275), + [34737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [34739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22914), + [34741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14218), + [34743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22900), + [34745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_plist_repeat1, 2, 0, 0), + [34747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_plist_repeat1, 2, 0, 0), SHIFT_REPEAT(13763), + [34750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14240), + [34752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22902), + [34754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22919), + [34756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15652), + [34758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24320), + [34760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22908), + [34762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22943), + [34764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21827), + [34766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22911), + [34768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22236), + [34770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22913), + [34772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23037), + [34774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22951), + [34776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23204), + [34778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23607), + [34780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22917), + [34782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23061), + [34784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14206), + [34786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14262), + [34788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22948), + [34790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22927), + [34792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22928), + [34794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [34796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22929), + [34798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [34800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [34802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22930), + [34804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22949), + [34806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16436), + [34808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22924), + [34810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [34812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14146), + [34814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22953), + [34816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [34818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22979), + [34820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16437), + [34822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22932), + [34824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16220), + [34826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [34828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), + [34830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14672), + [34832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22935), + [34834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23003), + [34836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15710), + [34838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23129), + [34840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22938), + [34842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15711), + [34844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22955), + [34846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22956), + [34848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22982), + [34850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23031), + [34852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [34854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23048), + [34856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [34858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22984), + [34860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16227), + [34862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22960), + [34864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8791), + [34866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9745), + [34868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24079), + [34870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22963), + [34872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9746), + [34874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23040), + [34876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23758), + [34878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23441), + [34880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23006), + [34882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23892), + [34884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23009), + [34886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22574), + [34888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), + [34890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11076), + [34892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23163), + [34894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11724), + [34896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22997), + [34898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [34900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23002), + [34902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [34904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23467), + [34906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23005), + [34908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23217), + [34910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23046), + [34912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16753), + [34914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), + [34916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23049), + [34918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23011), + [34920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23025), + [34922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [34924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23041), + [34926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23054), + [34928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10075), + [34930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23056), + [34932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [34934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10076), + [34936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23058), + [34938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [34940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22788), + [34942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10276), + [34944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23038), + [34946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13762), + [34948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23016), + [34950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23044), + [34952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23332), + [34954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23490), + [34956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14185), + [34958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23018), + [34960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14186), + [34962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [34964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23075), + [34966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24555), + [34968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23511), + [34970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [34972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23360), + [34974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23052), + [34976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23166), + [34978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9548), + [34980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23616), + [34982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24022), + [34984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23103), + [34986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23917), + [34988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23065), + [34990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23170), + [34992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23078), + [34994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23073), + [34996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23283), + [34998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), + [35000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23082), + [35002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), + [35004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23141), + [35006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23089), + [35008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23092), + [35010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24526), + [35012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10082), + [35014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10650), + [35016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10083), + [35018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23561), + [35020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15884), + [35022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23097), + [35024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23086), + [35026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23409), + [35028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23107), + [35030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [35032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23169), + [35034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23110), + [35036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23115), + [35038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23121), + [35040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23112), + [35042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23678), + [35044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23117), + [35046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23584), + [35048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23446), + [35050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [35052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12111), + [35054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23094), + [35056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [35058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23138), + [35060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10086), + [35062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23104), + [35064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11727), + [35066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11320), + [35068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23147), + [35070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9464), + [35072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23148), + [35074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23137), + [35076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14229), + [35078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10087), + [35080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24256), + [35082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9804), + [35084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23142), + [35086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23314), + [35088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23152), + [35090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9808), + [35092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23144), + [35094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8952), + [35096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23250), + [35098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23133), + [35100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23184), + [35102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23160), + [35104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15421), + [35106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23329), + [35108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21685), + [35110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23189), + [35112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21914), + [35114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23260), + [35116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23775), + [35118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23195), + [35120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14344), + [35122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23151), + [35124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12112), + [35126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23231), + [35128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24853), + [35130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24854), + [35132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23215), + [35134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23199), + [35136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9816), + [35138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23219), + [35140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9817), + [35142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23289), + [35144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21897), + [35146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23275), + [35148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23173), + [35150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10719), + [35152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23175), + [35154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23156), + [35156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15937), + [35158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23158), + [35160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15938), + [35162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11969), + [35164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10720), + [35166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23176), + [35168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23411), + [35170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23380), + [35172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24426), + [35174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23247), + [35176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23182), + [35178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22767), + [35180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [35182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10745), + [35184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10747), + [35186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23251), + [35188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15110), + [35190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23263), + [35192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23461), + [35194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22321), + [35196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23227), + [35198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23255), + [35200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23188), + [35202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22025), + [35204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11462), + [35206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23505), + [35208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23474), + [35210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [35212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23194), + [35214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11473), + [35216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23233), + [35218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10822), + [35220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23427), + [35222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [35224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23237), + [35226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [35228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11330), + [35230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24576), + [35232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23259), + [35234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21671), + [35236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [35238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23330), + [35240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14351), + [35242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23262), + [35244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [35246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15300), + [35248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23277), + [35250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21673), + [35252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23750), + [35254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23439), + [35256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24116), + [35258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23281), + [35260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23533), + [35262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23406), + [35264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23815), + [35266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23257), + [35268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23270), + [35270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24607), + [35272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9016), + [35274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23271), + [35276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23292), + [35278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [35280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), + [35282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [35284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [35286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23335), + [35288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23274), + [35290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8873), + [35292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21715), + [35294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23302), + [35296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23307), + [35298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11123), + [35300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_pcons_repeat1, 2, 0, 0), + [35302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_pcons_repeat1, 2, 0, 0), SHIFT_REPEAT(13761), + [35305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10457), + [35307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23308), + [35309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23337), + [35311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24522), + [35313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23310), + [35315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11273), + [35317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23265), + [35319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23303), + [35321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11136), + [35323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23280), + [35325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11274), + [35327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23465), + [35329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23431), + [35331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [35333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9024), + [35335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23313), + [35337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23320), + [35339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9025), + [35341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23324), + [35343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23345), + [35345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23284), + [35347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15121), + [35349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23491), + [35351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22792), + [35353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23288), + [35355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15122), + [35357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24169), + [35359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [35361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11333), + [35363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23444), + [35365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23386), + [35367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [35369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23338), + [35371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23350), + [35373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10347), + [35375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23381), + [35377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_fn_spec_repeat1, 4, 0, 0), + [35379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23317), + [35381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23341), + [35383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23346), + [35385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11997), + [35387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23342), + [35389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11998), + [35391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21180), + [35393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_constructor, 1, 0, 0), + [35395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23344), + [35397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14253), + [35399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_THEN_repeat1, 2, 0, 0), SHIFT_REPEAT(3227), + [35402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22328), + [35404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [35406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23385), + [35408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23347), + [35410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23497), + [35412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23340), + [35414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9232), + [35416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23352), + [35418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23355), + [35420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), + [35422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [35424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [35426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23370), + [35428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23357), + [35430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10864), + [35432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11143), + [35434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23375), + [35436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12004), + [35438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23476), + [35440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12005), + [35442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11147), + [35444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24778), + [35446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23377), + [35448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23361), + [35450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24780), + [35452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23362), + [35454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23359), + [35456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23363), + [35458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23367), + [35460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15184), + [35462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24818), + [35464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24821), + [35466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10352), + [35468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23369), + [35470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23412), + [35472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23379), + [35474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8841), + [35476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23371), + [35478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10353), + [35480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8899), + [35482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23612), + [35484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23390), + [35486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [35488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23392), + [35490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [35492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23393), + [35494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15185), + [35496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23415), + [35498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17926), + [35500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24297), + [35502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10749), + [35504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23396), + [35506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24251), + [35508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9726), + [35510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24308), + [35512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [35514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [35516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23793), + [35518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8792), + [35520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23400), + [35522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23408), + [35524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [35526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23402), + [35528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8724), + [35530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23694), + [35532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23539), + [35534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13129), + [35536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23430), + [35538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24218), + [35540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [35542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23434), + [35544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23421), + [35546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23437), + [35548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23712), + [35550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23422), + [35552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23513), + [35554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23426), + [35556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23813), + [35558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23554), + [35560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9733), + [35562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [35564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23429), + [35566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9734), + [35568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9271), + [35570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23657), + [35572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23448), + [35574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10908), + [35576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23451), + [35578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10909), + [35580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23453), + [35582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23517), + [35584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9757), + [35586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23455), + [35588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9294), + [35590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23464), + [35592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23478), + [35594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24283), + [35596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23482), + [35598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10919), + [35600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23524), + [35602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10920), + [35604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23835), + [35606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23507), + [35608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23459), + [35610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23542), + [35612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13161), + [35614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23463), + [35616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23509), + [35618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13162), + [35620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [35622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23473), + [35624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23477), + [35626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23579), + [35628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [35630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23848), + [35632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [35634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23582), + [35636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23487), + [35638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23557), + [35640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23601), + [35642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23714), + [35644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24231), + [35646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23576), + [35648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9773), + [35650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23489), + [35652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9774), + [35654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [35656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10023), + [35658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24307), + [35660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23592), + [35662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23654), + [35664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23538), + [35666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22418), + [35668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11340), + [35670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9811), + [35672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21933), + [35674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23544), + [35676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23636), + [35678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23515), + [35680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23528), + [35682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23559), + [35684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [35686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23531), + [35688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16084), + [35690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23669), + [35692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9393), + [35694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23527), + [35696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21595), + [35698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), + [35700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23530), + [35702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11259), + [35704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9400), + [35706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23567), + [35708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21894), + [35710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23572), + [35712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23534), + [35714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9827), + [35716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23536), + [35718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9829), + [35720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10552), + [35722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23556), + [35724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10121), + [35726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23751), + [35728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10180), + [35730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9364), + [35732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23570), + [35734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23562), + [35736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23594), + [35738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23619), + [35740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23605), + [35742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15344), + [35744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23565), + [35746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23622), + [35748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23610), + [35750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15347), + [35752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23580), + [35754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23596), + [35756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23581), + [35758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10750), + [35760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23745), + [35762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23598), + [35764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24393), + [35766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21414), + [35768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10982), + [35770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [35772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23927), + [35774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23587), + [35776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23756), + [35778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9372), + [35780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23753), + [35782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23590), + [35784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9379), + [35786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23977), + [35788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14461), + [35790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17743), + [35792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17743), + [35794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23634), + [35796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [35798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23637), + [35800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [35802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21529), + [35804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23646), + [35806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [35808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23638), + [35810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21464), + [35812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10879), + [35814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23649), + [35816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14315), + [35818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [35820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [35822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23617), + [35824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [35826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16398), + [35828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23642), + [35830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23952), + [35832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23671), + [35834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21456), + [35836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23673), + [35838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23632), + [35840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23640), + [35842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23633), + [35844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24061), + [35846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23721), + [35848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24070), + [35850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17709), + [35852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23773), + [35854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23661), + [35856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [35858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [35860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14931), + [35862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17945), + [35864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17945), + [35866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23648), + [35868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [35870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23709), + [35872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23656), + [35874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23664), + [35876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10889), + [35878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23666), + [35880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23652), + [35882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10890), + [35884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14342), + [35886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_fn_spec_repeat2, 4, 0, 0), + [35888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14353), + [35890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23731), + [35892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23677), + [35894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24622), + [35896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23683), + [35898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11003), + [35900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23688), + [35902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11004), + [35904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23689), + [35906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12076), + [35908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11551), + [35910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23710), + [35912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11552), + [35914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23713), + [35916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23680), + [35918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23692), + [35920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14337), + [35922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10282), + [35924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23699), + [35926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23686), + [35928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [35930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10283), + [35932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23715), + [35934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11009), + [35936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11010), + [35938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23875), + [35940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23696), + [35942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17762), + [35944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23698), + [35946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17770), + [35948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21371), + [35950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11225), + [35952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23722), + [35954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24062), + [35956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23725), + [35958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24472), + [35960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22244), + [35962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10133), + [35964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11584), + [35966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23786), + [35968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [35970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11585), + [35972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [35974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23719), + [35976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_bvar, 1, 0, 0), + [35978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), + [35980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16409), + [35982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23728), + [35984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23790), + [35986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24075), + [35988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23736), + [35990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23762), + [35992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16410), + [35994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24177), + [35996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23765), + [35998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23891), + [36000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23822), + [36002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [36004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [36006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12081), + [36008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23771), + [36010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23748), + [36012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23776), + [36014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8935), + [36016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [36018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24633), + [36020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23760), + [36022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12082), + [36024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23471), + [36026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23889), + [36028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14470), + [36030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8877), + [36032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23926), + [36034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16802), + [36036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23772), + [36038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24762), + [36040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23805), + [36042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [36044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23978), + [36046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23807), + [36048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23083), + [36050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23904), + [36052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23802), + [36054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24114), + [36056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23784), + [36058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23814), + [36060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23787), + [36062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23943), + [36064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9137), + [36066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [36068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10328), + [36070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23898), + [36072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10147), + [36074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17958), + [36076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17958), + [36078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23796), + [36080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [36082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23839), + [36084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23911), + [36086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), + [36088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23801), + [36090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23823), + [36092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8941), + [36094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23982), + [36096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24646), + [36098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23827), + [36100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9100), + [36102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23844), + [36104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11190), + [36106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13442), + [36108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14126), + [36110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11920), + [36112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24146), + [36114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23832), + [36116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23866), + [36118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10148), + [36120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23869), + [36122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24010), + [36124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [36126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23916), + [36128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23834), + [36130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23872), + [36132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9203), + [36134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23862), + [36136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16803), + [36138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22047), + [36140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23882), + [36142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24149), + [36144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23873), + [36146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23851), + [36148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15434), + [36150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23885), + [36152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23878), + [36154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13592), + [36156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23852), + [36158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [36160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24042), + [36162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24012), + [36164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23859), + [36166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24665), + [36168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23933), + [36170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24037), + [36172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14131), + [36174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24058), + [36176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23863), + [36178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14132), + [36180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [36182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24306), + [36184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21377), + [36186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23906), + [36188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), + [36190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23901), + [36192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23908), + [36194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), + [36196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10185), + [36198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23913), + [36200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24015), + [36202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23903), + [36204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10196), + [36206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23905), + [36208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14640), + [36210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17912), + [36212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21687), + [36214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23932), + [36216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23894), + [36218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23936), + [36220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24028), + [36222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21416), + [36224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23909), + [36226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23923), + [36228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23921), + [36230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23925), + [36232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24066), + [36234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10295), + [36236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10296), + [36238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [36240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), + [36242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23912), + [36244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10154), + [36246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), + [36248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), + [36250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23915), + [36252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9348), + [36254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10155), + [36256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [36258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24202), + [36260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24093), + [36262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23930), + [36264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23938), + [36266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23967), + [36268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11928), + [36270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24086), + [36272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23970), + [36274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23942), + [36276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23939), + [36278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17707), + [36280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10158), + [36282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23941), + [36284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17814), + [36286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11929), + [36288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23946), + [36290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24223), + [36292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10159), + [36294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24197), + [36296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [36298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24088), + [36300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24144), + [36302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22854), + [36304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [36306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [36308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12197), + [36310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17116), + [36312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24038), + [36314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24098), + [36316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23995), + [36318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15452), + [36320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23980), + [36322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24006), + [36324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24003), + [36326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13594), + [36328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24008), + [36330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24011), + [36332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21644), + [36334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9072), + [36336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24372), + [36338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16805), + [36340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23245), + [36342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [36344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23991), + [36346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23993), + [36348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21568), + [36350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17955), + [36352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9847), + [36354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17955), + [36356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24348), + [36358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21385), + [36360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24298), + [36362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23808), + [36364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23997), + [36366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), + [36368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15460), + [36370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [36372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24019), + [36374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24001), + [36376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15461), + [36378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [36380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21621), + [36382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24050), + [36384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [36386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24020), + [36388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [36390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24021), + [36392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [36394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24095), + [36396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [36398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [36400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24025), + [36402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24069), + [36404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15471), + [36406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), + [36408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), + [36410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11737), + [36412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24056), + [36414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24034), + [36416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24107), + [36418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24032), + [36420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [36422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22774), + [36424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24074), + [36426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17159), + [36428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24035), + [36430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17161), + [36432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [36434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23948), + [36436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24047), + [36438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14468), + [36440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17811), + [36442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17811), + [36444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24048), + [36446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24121), + [36448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24078), + [36450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24090), + [36452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24055), + [36454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18512), + [36456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24864), + [36458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24178), + [36460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24082), + [36462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24172), + [36464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15479), + [36466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24059), + [36468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15481), + [36470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24213), + [36472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24252), + [36474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13986), + [36476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24248), + [36478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11302), + [36480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22575), + [36482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24096), + [36484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24129), + [36486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24113), + [36488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24190), + [36490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), + [36492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24180), + [36494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15186), + [36496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24100), + [36498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24126), + [36500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24109), + [36502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24089), + [36504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24368), + [36506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24264), + [36508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11304), + [36510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11276), + [36512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24102), + [36514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24186), + [36516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24104), + [36518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [36520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24122), + [36522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [36524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24124), + [36526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24134), + [36528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24110), + [36530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24193), + [36532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [36534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24138), + [36536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [36538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15221), + [36540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24125), + [36542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24115), + [36544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15224), + [36546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24128), + [36548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24200), + [36550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_bvar, 3, 0, 0), + [36552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10409), + [36554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [36556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24205), + [36558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [36560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [36562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24497), + [36564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24135), + [36566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24145), + [36568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15240), + [36570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24148), + [36572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13998), + [36574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24150), + [36576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24170), + [36578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24141), + [36580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21400), + [36582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13999), + [36584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24176), + [36586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23695), + [36588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13472), + [36590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9208), + [36592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24498), + [36594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11700), + [36596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9209), + [36598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24521), + [36600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [36602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24158), + [36604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [36606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24159), + [36608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24162), + [36610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24389), + [36612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24164), + [36614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13480), + [36616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14234), + [36618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15252), + [36620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24166), + [36622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15261), + [36624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24203), + [36626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21448), + [36628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [36630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24206), + [36632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24249), + [36634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [36636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21512), + [36638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11372), + [36640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10437), + [36642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24425), + [36644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21499), + [36646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22598), + [36648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24210), + [36650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11374), + [36652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [36654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24261), + [36656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [36658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24273), + [36660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [36662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17296), + [36664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15437), + [36666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24220), + [36668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8868), + [36670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24258), + [36672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21865), + [36674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24262), + [36676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24224), + [36678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24226), + [36680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23466), + [36682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24525), + [36684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24373), + [36686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24219), + [36688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24221), + [36690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24479), + [36692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24230), + [36694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24236), + [36696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [36698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24237), + [36700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [36702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24238), + [36704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12960), + [36706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24234), + [36708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15406), + [36710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [36712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [36714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24240), + [36716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10502), + [36718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24242), + [36720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [36722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [36724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24246), + [36726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24244), + [36728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10503), + [36730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [36732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17367), + [36734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24247), + [36736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15407), + [36738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17370), + [36740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24534), + [36742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24386), + [36744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24270), + [36746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), + [36748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24269), + [36750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [36752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21550), + [36754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24271), + [36756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [36758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24272), + [36760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24304), + [36762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24720), + [36764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24391), + [36766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24280), + [36768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [36770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [36772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24978), + [36774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_constructor, 2, 0, 0), + [36776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24287), + [36778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24290), + [36780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24312), + [36782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24284), + [36784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24513), + [36786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14239), + [36788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24288), + [36790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21534), + [36792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14241), + [36794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24157), + [36796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24315), + [36798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24299), + [36800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24318), + [36802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [36804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23209), + [36806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21684), + [36808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15622), + [36810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), + [36812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24303), + [36814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24349), + [36816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [36818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9846), + [36820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24364), + [36822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16187), + [36824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24830), + [36826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24428), + [36828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14312), + [36830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23496), + [36832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9204), + [36834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24344), + [36836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22721), + [36838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24347), + [36840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24327), + [36842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21597), + [36844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24730), + [36846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13057), + [36848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10537), + [36850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22797), + [36852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10621), + [36854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24340), + [36856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), + [36858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21523), + [36860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15113), + [36862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24343), + [36864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24399), + [36866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24495), + [36868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24443), + [36870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24366), + [36872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24538), + [36874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24369), + [36876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24350), + [36878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9503), + [36880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9246), + [36882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24352), + [36884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), + [36886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24410), + [36888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24429), + [36890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24402), + [36892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [36894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [36896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [36898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12158), + [36900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9853), + [36902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24517), + [36904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24385), + [36906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24405), + [36908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24418), + [36910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24411), + [36912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9505), + [36914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24413), + [36916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24456), + [36918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11520), + [36920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21599), + [36922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23820), + [36924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [36926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24384), + [36928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21582), + [36930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15138), + [36932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24496), + [36934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [36936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24395), + [36938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24397), + [36940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24503), + [36942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [36944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24490), + [36946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24440), + [36948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24567), + [36950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24403), + [36952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24508), + [36954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24483), + [36956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11554), + [36958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24433), + [36960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24407), + [36962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11578), + [36964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24436), + [36966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24450), + [36968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [36970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10847), + [36972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24441), + [36974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10953), + [36976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24442), + [36978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21646), + [36980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21366), + [36982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [36984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24455), + [36986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24519), + [36988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [36990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24626), + [36992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23963), + [36994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [36996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24582), + [36998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), + [37000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24458), + [37002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10672), + [37004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21704), + [37006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24461), + [37008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24469), + [37010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24448), + [37012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24445), + [37014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11580), + [37016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10378), + [37018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10387), + [37020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14326), + [37022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24464), + [37024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22504), + [37026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24527), + [37028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24463), + [37030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15457), + [37032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24466), + [37034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24482), + [37036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [37038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9514), + [37040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9855), + [37042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24485), + [37044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_THEN_repeat1, 2, 0, 0), SHIFT_REPEAT(3224), + [37047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24487), + [37049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10025), + [37051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24467), + [37053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10031), + [37055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24476), + [37057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24473), + [37059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8977), + [37061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15060), + [37063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24477), + [37065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10742), + [37067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14978), + [37069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24481), + [37071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24697), + [37073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10746), + [37075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24501), + [37077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [37079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24502), + [37081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [37083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24504), + [37085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24556), + [37087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24701), + [37089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11128), + [37091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24506), + [37093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), + [37095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10825), + [37097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [37099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [37101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [37103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24574), + [37105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24509), + [37107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15177), + [37109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24512), + [37111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24215), + [37113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15196), + [37115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24520), + [37117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24705), + [37119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24592), + [37121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11223), + [37123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [37125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9256), + [37127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24529), + [37129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24530), + [37131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13961), + [37133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21640), + [37135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24727), + [37137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [37139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11797), + [37141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13965), + [37143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24543), + [37145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24587), + [37147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [37149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24561), + [37151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24563), + [37153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24570), + [37155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24602), + [37157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10874), + [37159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24590), + [37161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24546), + [37163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10930), + [37165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24735), + [37167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21369), + [37169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9898), + [37171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21608), + [37173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24598), + [37175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24676), + [37177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [37179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24562), + [37181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11252), + [37183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24585), + [37185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22004), + [37187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24737), + [37189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9871), + [37191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15480), + [37193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24575), + [37195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24577), + [37197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24612), + [37199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10450), + [37201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11224), + [37203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23523), + [37205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24738), + [37207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24579), + [37209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13249), + [37211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15482), + [37213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11740), + [37215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22096), + [37217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24620), + [37219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [37221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10451), + [37223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24690), + [37225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24586), + [37227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11253), + [37229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9493), + [37231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24591), + [37233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9972), + [37235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), + [37237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22530), + [37239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14600), + [37241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10227), + [37243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24635), + [37245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24685), + [37247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24680), + [37249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24608), + [37251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24700), + [37253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23249), + [37255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21413), + [37257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [37259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24687), + [37261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24623), + [37263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10181), + [37265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22292), + [37267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15151), + [37269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24638), + [37271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24175), + [37273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24624), + [37275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [37277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24630), + [37279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15146), + [37281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21824), + [37283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24651), + [37285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14607), + [37287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [37289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24634), + [37291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14609), + [37293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24654), + [37295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15154), + [37297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24656), + [37299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15155), + [37301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14619), + [37303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24650), + [37305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), + [37307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21649), + [37309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24716), + [37311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24736), + [37313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21626), + [37315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24670), + [37317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10008), + [37319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24671), + [37321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10009), + [37323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24672), + [37325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22232), + [37327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22612), + [37329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24667), + [37331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24674), + [37333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hol_attributes_repeat1, 2, 0, 0), SHIFT_REPEAT(24853), + [37336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_attributes_repeat1, 2, 0, 0), + [37338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24668), + [37340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21475), + [37342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23419), + [37344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24683), + [37346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10017), + [37348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10022), + [37350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21424), + [37352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24677), + [37354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15190), + [37356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24679), + [37358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15191), + [37360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24643), + [37362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24722), + [37364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14625), + [37366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24688), + [37368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22968), + [37370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14626), + [37372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15142), + [37374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24314), + [37376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [37378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10531), + [37380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23755), + [37382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23986), + [37384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24719), + [37386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24710), + [37388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16219), + [37390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22483), + [37392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15716), + [37394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14305), + [37396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21941), + [37398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21489), + [37400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22600), + [37402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21693), + [37404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21538), + [37406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24724), + [37408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24728), + [37410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21433), + [37412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24275), + [37414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22564), + [37416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15684), + [37418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14967), + [37420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17961), + [37422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17961), + [37424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21532), + [37426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23373), + [37428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14970), + [37430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17962), + [37432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17962), + [37434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13971), + [37436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24732), + [37438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22649), + [37440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13977), + [37442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10456), + [37444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23395), + [37446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labvar_exprow, 3, 0, 0), + [37448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14830), + [37450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24944), + [37452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13244), + [37454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [37456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16607), + [37458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8509), + [37460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tactic, 1, 0, 0), + [37462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [37464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14451), + [37466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23593), + [37468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24897), + [37470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [37472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12408), + [37474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13045), + [37476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [37478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [37480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12579), + [37482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14765), + [37484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [37486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12562), + [37488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ellipsis_tyrow, 3, 0, 0), + [37490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hol_attributes_repeat1, 2, 0, 37), + [37492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12948), + [37494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24808), + [37496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16616), + [37498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14524), + [37500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [37502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12570), + [37504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19625), + [37506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [37508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14464), + [37510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [37512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12585), + [37514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tyseq, 4, 0, 0), + [37516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [37518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12591), + [37520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14966), + [37522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14969), + [37524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tyrow, 3, 0, 0), + [37526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16642), + [37528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8506), + [37530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [37532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12613), + [37534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), + [37536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24801), + [37538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_attributes, 3, 0, 37), + [37540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15978), + [37542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17844), + [37544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11930), + [37546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20331), + [37548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11931), + [37550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), + [37552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12244), + [37554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12604), + [37556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15991), + [37558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23135), + [37560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12229), + [37562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17783), + [37564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24605), + [37566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__program, 3, 0, 0), + [37568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17885), + [37570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [37572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [37574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15875), + [37576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13181), + [37578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [37580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12573), + [37582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17736), + [37584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12574), + [37586] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [37588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12160), + [37590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12575), + [37592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12576), + [37594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23301), + [37596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [37598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), + [37600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12062), + [37602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12403), + [37604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17848), + [37606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12221), + [37608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [37610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17195), + [37612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [37614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12018), + [37616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17782), + [37618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12264), + [37620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23655), + [37622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15933), + [37624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15936), + [37626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12605), + [37628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [37630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [37632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [37634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17595), + [37636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11918), + [37638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [37640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [37642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [37644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12606), + [37646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12165), + [37648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12616), + [37650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13177), + [37652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), + [37654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12607), + [37656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12617), + [37658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_binding, 3, 0, 0), + [37660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12608), + [37662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12618), + [37664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [37666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12619), + [37668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15941), + [37670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [37672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [37674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [37676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18304), + [37678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12343), + [37680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12486), + [37682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18157), + [37684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17218), + [37686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15942), + [37688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17890), + [37690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18602), + [37692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17835), + [37694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [37696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17208), + [37698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [37700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [37702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12032), + [37704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17842), + [37706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [37708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11919), + [37710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12406), + [37712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12182), + [37714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15526), + [37716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12246), + [37718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12291), + [37720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15950), + [37722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15951), + [37724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18544), + [37726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12192), + [37728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [37730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18665), + [37732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [37734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10657), + [37736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12293), + [37738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [37740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12247), + [37742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12453), + [37744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17834), + [37746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [37748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17234), + [37750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24051), + [37752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [37754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13205), + [37756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17710), + [37758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15872), + [37760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12359), + [37762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17891), + [37764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [37766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12294), + [37768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12295), + [37770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18886), + [37772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [37774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12022), + [37776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [37778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hol_attributes, 4, 0, 37), + [37780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15956), + [37782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15957), + [37784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [37786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17733), + [37788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [37790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), + [37792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17734), + [37794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11957), + [37796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), + [37798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [37800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17701), + [37802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12468), + [37804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15802), + [37806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17738), + [37808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17712), + [37810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18345), + [37812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [37814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [37816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12602), + [37818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15807), + [37820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [37822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13104), + [37824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [37826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [37828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [37830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), + [37832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [37834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [37836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [37838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11907), + [37840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15906), + [37842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11908), + [37844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11909), + [37846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17788), + [37848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11910), + [37850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24119), + [37852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [37854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15910), + [37856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), + [37858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [37860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15966), + [37862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [37864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12614), + [37866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12596), + [37868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12597), + [37870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12598), + [37872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15967), + [37874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12599), + [37876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16841), + [37878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15841), + [37880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15844), + [37882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [37884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [37886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12193), + [37888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17956), + [37890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17785), + [37892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19471), + [37894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [37896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [37898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12190), + [37900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12243), + [37902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12490), + [37904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18204), + [37906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14140), + [37908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [37910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12493), + [37912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12407), + [37914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [37916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12495), + [37918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13206), + [37920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15800), + [37922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [37924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12496), + [37926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15973), + [37928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15974), + [37930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15163), + [37932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), + [37934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [37936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12402), + [37938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12279), + [37940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12194), + [37942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12033), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token_block_comment = 0, + ts_external_token_line_comment = 1, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token_block_comment] = sym_block_comment, + [ts_external_token_line_comment] = sym_line_comment, +}; + +static const bool ts_external_scanner_states[2][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token_block_comment] = true, + [ts_external_token_line_comment] = true, + }, +}; + +#ifdef __cplusplus +extern "C" { +#endif +void *tree_sitter_holscript_external_scanner_create(void); +void tree_sitter_holscript_external_scanner_destroy(void *); +bool tree_sitter_holscript_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_holscript_external_scanner_serialize(void *, char *); +void tree_sitter_holscript_external_scanner_deserialize(void *, const char *, unsigned); + +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) +#endif + +TS_PUBLIC const TSLanguage *tree_sitter_holscript(void) { + static const TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = ts_lex_modes, + .lex_fn = ts_lex, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_holscript_external_scanner_create, + tree_sitter_holscript_external_scanner_destroy, + tree_sitter_holscript_external_scanner_scan, + tree_sitter_holscript_external_scanner_serialize, + tree_sitter_holscript_external_scanner_deserialize, + }, + .primary_state_ids = ts_primary_state_ids, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/scanner.c b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/scanner.c new file mode 100644 index 0000000000..a656667386 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/scanner.c @@ -0,0 +1,135 @@ +// Adapted tree-sitter-sml by Matthew Fluet, released under the MIT license. +#include +#include + +enum TokenType { + BLOCK_COMMENT, + LINE_COMMENT, +}; + +void * tree_sitter_holscript_external_scanner_create() { + return NULL; +} + +void tree_sitter_holscript_external_scanner_destroy(__attribute__ ((unused)) void *payload) { + return; +} + +unsigned tree_sitter_holscript_external_scanner_serialize(__attribute__ ((unused)) void *payload, __attribute__ ((unused)) char *buffer) { + return 0; +} + +void tree_sitter_holscript_external_scanner_deserialize(__attribute__ ((unused)) void *payload, __attribute__ ((unused)) const char *buffer, __attribute__ ((unused)) unsigned length) { + return; +} + +bool tree_sitter_holscript_external_scanner_finish_line_comment(TSLexer *lexer) { + while (true) { + if (lexer->eof(lexer)) return false; + switch (lexer->lookahead) { + case '\n': + lexer->advance(lexer, false); + return true; + case '\r': + lexer->advance(lexer, false); + if (!lexer->eof(lexer) && lexer->lookahead == '\n') { + lexer->advance(lexer, false); + } + return true; + default: + lexer->advance(lexer, false); + continue; + } + } +} + +bool tree_sitter_holscript_external_scanner_finish_block_comment(TSLexer *lexer, bool line_comment) { + unsigned depth = 1; + while (true) { + if (lexer->eof(lexer)) return false; + switch (lexer->lookahead) { + case '(': + lexer->advance(lexer, false); + if (lexer->eof(lexer)) return false; + if (lexer->lookahead == '*') { + lexer->advance(lexer, false); + if (lexer->eof(lexer)) return false; + if (line_comment && lexer->lookahead == ')') { + lexer->advance(lexer, false); + if (tree_sitter_holscript_external_scanner_finish_line_comment(lexer)) { + continue; + } else { + return false; + } + } else { + depth += 1; + continue; + } + } else { + continue; + }; + case '*': + lexer->advance(lexer, false); + if (lexer->eof(lexer)) return false; + if (lexer->lookahead == ')') { + lexer->advance(lexer, false); + depth -= 1; + if (depth == 0) { + return true; + } else { + continue; + } + } else { + continue; + }; + default: + lexer->advance(lexer, false); + continue; + } + } +} + +bool tree_sitter_holscript_external_scanner_scan_comment(TSLexer *lexer, bool block_comment, bool line_comment) { + while (!lexer->eof(lexer) && iswspace(lexer->lookahead)) { + lexer->advance(lexer, true); + } + if (lexer->eof(lexer)) return false; + if (lexer->lookahead == '(') { + lexer->advance(lexer, false); + if (lexer->eof(lexer)) return false; + if (lexer->lookahead == '*') { + lexer->advance(lexer, false); + if (lexer->eof(lexer)) return false; + if (line_comment && lexer->lookahead == ')') { + lexer->advance(lexer, false); + if (tree_sitter_holscript_external_scanner_finish_line_comment(lexer)) { + lexer->result_symbol = LINE_COMMENT; + return true; + } else { + return false; + } + } else if (block_comment) { + if (tree_sitter_holscript_external_scanner_finish_block_comment(lexer, line_comment)) { + lexer->result_symbol = BLOCK_COMMENT; + return true; + } else { + return false; + } + } else { + return false; + } + } else { + return false; + } + } else { + return false; + } +} + +bool tree_sitter_holscript_external_scanner_scan(__attribute__ ((unused)) void *payload, TSLexer *lexer, const bool *valid_symbols) { + if (valid_symbols[BLOCK_COMMENT] || valid_symbols[LINE_COMMENT]) { + return tree_sitter_holscript_external_scanner_scan_comment(lexer, valid_symbols[BLOCK_COMMENT], valid_symbols[LINE_COMMENT]); + } else { + return false; + } +} diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/tree_sitter/alloc.h b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/tree_sitter/alloc.h new file mode 100644 index 0000000000..1abdd12015 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/tree_sitter/array.h b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/tree_sitter/array.h new file mode 100644 index 0000000000..15a3b233bb --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/tree_sitter/parser.h b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/tree_sitter/parser.h new file mode 100644 index 0000000000..799f599bd4 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/src/tree_sitter/parser.h @@ -0,0 +1,266 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + +/* + * Lexer Macros + */ + +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + UNUSED \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value) \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value), \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/datatype.txt b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/datatype.txt new file mode 100644 index 0000000000..778f60ea7f --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/datatype.txt @@ -0,0 +1,123 @@ +======================== +One 0-Arity Constructor +======================== + +Datatype: + nil = Nil +End + +--- + +(source_file + (hol_datatype + (hol_binding + (hol_identifier) + (hol_constructor + (hol_clause + (hol_identifier)))))) + + +================= +Extended Numbers +================= + +Datatype: + extnum = FinNum num | PosInf +End + +--- + +(source_file + (hol_datatype + (hol_binding + (hol_identifier) + (hol_constructor + (hol_clause + (hol_identifier) + (hol_atomic_type)) + (hol_clause + (hol_identifier)))))) + + +===================== +Simple Type Variable +===================== + +Datatype: + foo = Foo 'a +End + +--- + +(source_file + (hol_datatype + (hol_binding + (hol_identifier) + (hol_constructor + (hol_clause + (hol_identifier) + (hol_atomic_type)))))) + + +===================== +'g_a_p Type Variable +===================== + +Datatype: + foo = Foo 'g_a_p +End + +--- + +(source_file + (hol_datatype + (hol_binding + (hol_identifier) + (hol_constructor + (hol_clause + (hol_identifier) + (hol_atomic_type)))))) + + +============ +String Type +============ + +Datatype: + foo = Foo string +End + +--- + +(source_file + (hol_datatype + (hol_binding + (hol_identifier) + (hol_constructor + (hol_clause + (hol_identifier) + (hol_atomic_type)))))) + + +=============== +"Complex" Type +=============== + +Datatype: + sexp = Atom string | Expr (sexp list) +End + +--- + +(source_file + (hol_datatype + (hol_binding + (hol_identifier) + (hol_constructor + (hol_clause + (hol_identifier) + (hol_atomic_type)) + (hol_clause + (hol_identifier) + (hol_list_ty + (hol_atomic_type))))))) diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/definition.txt b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/definition.txt new file mode 100644 index 0000000000..ec72aa3c71 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/definition.txt @@ -0,0 +1,285 @@ +============= +Alphanumeric +============= + +Definition foo_def: + foo = 0 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_term + (hol_number)))))) + + +============== +Parenthesized +============== + +Definition foo_def: + (foo = 0) +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_term + (hol_number)))))) + + +======== +Dollars +======== + +Definition dollars_def: + $$ = 0 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_term + (hol_number)))))) + + +============ +Bad Dollars + +:error +============ + +Definition dollars_def: + $dollar$dollar = 0 +End + + +========= +Symbolic +========= + +Definition symbols_def: + #?+*/\=<>&%@!:|- = 0 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_term + (hol_number)))))) + +========= +Variable +========= + +Definition foo_def: + foo x = 0 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_variable)) + (hol_term + (hol_number)))))) + +========= +Wildcard +========= + +Definition foo_def: + foo _ x = 0 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_wildcard)) + (hol_pat + (hol_variable)) + (hol_term + (hol_number)))))) + + +========================= +Alphanumeric Constructor +========================= + +Definition foo_def: + foo NONE = 0 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_cname_alphanumeric)) + (hol_term + (hol_number)))))) + + +============== +Tuple Pattern +============== + +Definition fst_def: + fst (a, b) = a +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_ptuple + (hol_pat + (hol_variable)) + (hol_pat + (hol_variable)))) + (hol_term + (hol_identifier)))))) + + +================ +Nested Patterns +================ + +Definition foo_def: + foo (SOME x) = 0 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_cname_alphanumeric) + (hol_pat + (hol_variable))) + (hol_term + (hol_number)))))) + + +=================== +Multiple Equations +=================== + +Definition foo_def: + foo (SOME x) = 0 ∧ + foo NONE = 1 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_cname_alphanumeric) + (hol_pat + (hol_variable))) + (hol_term + (hol_number))) + (hol_eqn + (hol_identifier) + (hol_pat + (hol_cname_alphanumeric)) + (hol_term + (hol_number)))))) + + +================= +With Termination +================= + +Definition foo_def: + foo = 0 +Termination + gvs +End + +--- + +(source_file + (hol_definition_with_proof + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_term + (hol_number)))) + (tactic + (vid_exp + (longvid + (vid)))))) + + +=========== +Attributes +=========== + +Definition foo_def[simp, bar]: + foo = 0 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_attributes + (attribute) + (attribute)) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_term + (hol_number)))))) diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/quote.txt b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/quote.txt new file mode 100644 index 0000000000..fce67dee3e --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/quote.txt @@ -0,0 +1,89 @@ +====== +Basic +====== + +val _ = ‘a’ + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (backquote + (quoted))))) + + +====== +ASCII +====== + +val _ = `a` + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (backquote + (quoted))))) + + +========== +Antiquote +========== + +val _ = ‘^x’ + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (backquote + (antiquoted + (sml_variable)))))) + + +======================== +Antiquote (Parentheses) +======================== + +val _ = ‘^(x)’ + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (backquote + (antiquoted + (vid_exp + (longvid + (vid)))))))) + + +====== +Mixed +====== + +val _ = ‘foo ^x ^(x) bar’ + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (backquote + (quoted) + (antiquoted + (sml_variable)) + (antiquoted + (vid_exp + (longvid + (vid)))) + (quoted))))) diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/term.txt b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/term.txt new file mode 100644 index 0000000000..cde3bcf6cd --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/term.txt @@ -0,0 +1,955 @@ +=============== +String Literal +=============== + +Definition strlit_def: + strlit = "cake" +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_term + (hol_string)))))) + + +================== +Character Literal +================== + +Definition charlit_def: + charlit = #"c" +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_term + (hol_character)))))) + + +======== +0-Tuple +======== + +Definition tuple0_def: + tuple0 = () +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_term + (hol_tuple)))))) + + +======== +2-Tuple +======== + +Definition tuple2_def: + tuple2 x y = (x, y) +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_variable)) + (hol_pat + (hol_variable)) + (hol_term + (hol_tuple + (hol_identifier) + (hol_identifier))))))) + + +======== +3-Tuple +======== + +Definition tuple3_def: + tuple3 x y = (x, y, 1) +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_variable)) + (hol_pat + (hol_variable)) + (hol_term + (hol_tuple + (hol_identifier) + (hol_identifier) + (hol_number))))))) + + +=========== +Empty List +=========== + +Definition empty_list_def: + empty_list = [] +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_term + (hol_list)))))) + +=============== +Singleton List +=============== + +Definition singleton_list_def: + singleton_list = [1] +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_term + (hol_list + (hol_number))))))) + + +========== +Cons List +========== + +Definition foo_def: + foo = (x::1::[]) +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_term + (hol_binary_term + (hol_identifier) + (hol_binary_term + (hol_number) + (hol_list)))))))) +===== +List +===== + +Definition list_def: + list x = [1; x] +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_variable)) + (hol_term + (hol_list + (hol_number) + (hol_identifier))))))) + + +========== +Increment +========== + +Definition incr_def: + incr x = x + 1 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_variable)) + (hol_term + (hol_binary_term + (hol_identifier) + (hol_number))))))) + + +=================== +Empty List Pattern +=================== + +Definition empty_def: + empty [] = 0 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_plist)) + (hol_term + (hol_number)))))) + + +======================= +Singleton List Pattern +======================= + +Definition singleton_def: + singleton [e] = 0 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_plist + (hol_pat + (hol_variable)))) + (hol_term + (hol_number)))))) + + +============= +List Pattern +============= + +Definition list_def: + list [e; f] = 0 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_plist + (hol_pat + (hol_variable)) + (hol_pat + (hol_variable)))) + (hol_term + (hol_number)))))) + + +============= +Cons Pattern +============= + +Definition cons_def: + cons (x::xs) = 0 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_pcons + (hol_pat + (hol_variable)) + (hol_pat + (hol_variable)))) + (hol_term + (hol_number)))))) + + +=================== +More Cons Patterns +=================== + +Definition cons_def: + cons (x::x'::[]) = 0 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_pcons + (hol_pat + (hol_variable)) + (hol_pat + (hol_variable)) + (hol_pat + (hol_plist)))) + (hol_term + (hol_number)))))) + + +======================= +Number Literal Pattern +======================= + +Definition foo_def: + foo 2 = 2 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_number)) + (hol_term + (hol_number)))))) + + +========================== +Character Literal Pattern +========================== + +Definition foo_def: + foo #"c" = 2 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_character)) + (hol_term + (hol_number)))))) + + +======================= +String Literal Pattern +======================= + +Definition foo_def: + foo "foo" = 2 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_string)) + (hol_term + (hol_number)))))) + + +===================== +Function Application +===================== + +Definition foo_def: + foo x = incr x +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_variable)) + (hol_term + (hol_application + (hol_identifier) + (hol_identifier))))))) + + +========================== +More Function Application +========================== + +Definition foo_def: + foo x = add x 2 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_variable)) + (hol_term + (hol_application + (hol_application + (hol_identifier) + (hol_identifier)) + (hol_number))))))) + + +================== +Annotated Pattern +================== + +Definition foo_def: + foo (x : num) = 2 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_variable) + (hol_pannotation + (hol_atomic_type))) + (hol_term + (hol_number)))))) + + +============ +Conditional +============ + +Definition foo_def: + foo x = if bar x then 0 else 1 +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_variable)) + (hol_term + (hol_cond + (hol_application + (hol_identifier) + (hol_identifier)) + (hol_number) + (hol_number))))))) + + +================= +Case Distinction +================= + +Definition foo_def: + foo x = case x of SOME x => x | NONE => ARB +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_variable)) + (hol_term + (hol_case + (hol_term + (hol_identifier)) + (hol_match + (hol_pat + (hol_cname_alphanumeric) + (hol_pat + (hol_variable))) + (hol_term + (hol_identifier))) + (hol_match + (hol_pat + (hol_cname_alphanumeric)) + (hol_term + (hol_identifier))))))))) + + +================================= +Case Distinction with Extra Pipe +================================= + +Definition foo_def: + foo x = case x of + | SOME x => x + | NONE => ARB +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_pat + (hol_variable)) + (hol_term + (hol_case + (hol_term + (hol_identifier)) + (hol_match + (hol_pat + (hol_cname_alphanumeric) + (hol_pat + (hol_variable))) + (hol_term + (hol_identifier))) + (hol_match + (hol_pat + (hol_cname_alphanumeric)) + (hol_term + (hol_identifier))))))))) + + +============ +Nested Case +============ + +Definition foo_def: + foo = case x of NONE => case x of NONE => ARB | NONE => ARB +End + +--- + +(source_file + (hol_definition + (hol_defname) + (hol_fn_spec + (hol_eqn + (hol_identifier) + (hol_term + (hol_case + (hol_term + (hol_identifier)) + (hol_match + (hol_pat + (hol_cname_alphanumeric)) + (hol_term + (hol_case + (hol_term + (hol_identifier)) + (hol_match + (hol_pat + (hol_cname_alphanumeric)) + (hol_term + (hol_identifier))) + (hol_match + (hol_pat + (hol_cname_alphanumeric)) + (hol_term + (hol_identifier)))))))))))) + + +============================== +Implication + Less Than Equal +============================== + +Theorem foo: + ∀x. read_quoted_aux cs acc = foo ⇒ LENGTH y ≤ LENGTH cs +Proof + cheat +QED + +--- + +(source_file + (hol_theorem_with_proof + (hol_thmname) + (hol_thmstmt + (hol_binder + (hol_bvar + (hol_alphanumeric)) + (hol_binary_term + (hol_binary_term + (hol_application + (hol_application + (hol_identifier) + (hol_identifier)) + (hol_identifier)) + (hol_identifier)) + (hol_binary_term + (hol_application + (hol_identifier) + (hol_identifier)) + (hol_application + (hol_identifier) + (hol_identifier)))))) + (tactic + (vid_exp + (longvid + (vid)))))) + + +======= +Dollar +======= + +val _ = “a $ b $ c” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_binary_term + (hol_identifier) + (hol_binary_term + (hol_identifier) + (hol_identifier))))))) + + +============ +Composition +============ + +val _ = “a o b o c” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_binary_term + (hol_identifier) + (hol_binary_term + (hol_identifier) + (hol_identifier))))))) + + +============ +Parentheses +============ + +val _ = “(hello)” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_identifier))))) + + +===== +True +===== + +val _ = “T” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_true))))) + + +====== +False +====== + +val _ = “F” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_false))))) + + +======= +Forall +======= + +val _ = “∀h t. P h t” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_binder + (hol_bvar + (hol_alphanumeric)) + (hol_bvar + (hol_alphanumeric)) + (hol_application + (hol_application + (hol_identifier) + (hol_identifier)) + (hol_identifier))))))) + + +============= +Forall ASCII +============= + +val _ = “!h t. P h t” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_binder + (hol_bvar + (hol_alphanumeric)) + (hol_bvar + (hol_alphanumeric)) + (hol_application + (hol_application + (hol_identifier) + (hol_identifier)) + (hol_identifier))))))) + + +=================== +Forall (Annotated) +=================== + +val _ = “∀x:num. T” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_binder + (hol_bvar + (hol_alphanumeric) + (hol_atomic_type)) + (hol_true)))))) + + +================================== +Forall (Annotated, Parenthesized) +================================== + +val _ = “∀(x:num). T” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_binder + (hol_bvar + (hol_alphanumeric) + (hol_atomic_type)) + (hol_true)))))) + + +============================ +Conjunction and Disjunction +============================ + +val _ = “T ∧ F ∨ T” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_binary_term + (hol_binary_term + (hol_true) + (hol_false)) + (hol_true)))))) + + +======= +Lambda +======= + +val _ = “λx. x + 1” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_binder + (hol_bvar + (hol_alphanumeric)) + (hol_binary_term + (hol_identifier) + (hol_number))))))) + + +==== +Not +==== + +val _ = “¬F” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_left_unary_term + (hol_false)))))) + + +========== +Empty Set +========== + +val _ = “{}” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_set))))) + + +==== +Set +==== + +val _ = “{1; 2}” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_set + (hol_number) + (hol_number)))))) + + +================ +Type Annotation +================ + +val _ = “x:num” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_term + (hol_annotated + (hol_identifier) + (hol_atomic_type)))))) diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/theorem.txt b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/theorem.txt new file mode 100644 index 0000000000..61e1bc19e0 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/theorem.txt @@ -0,0 +1,84 @@ +============================= +Simple Theorem + Termination +============================= + +Theorem foo: + ∀x. x = x +Proof + gvs [] +QED + +--- + +(source_file + (hol_theorem_with_proof + (hol_thmname) + (hol_thmstmt + (hol_binder + (hol_bvar + (hol_alphanumeric)) + (hol_binary_term + (hol_identifier) + (hol_identifier)))) + (tactic + (app_exp + (vid_exp + (longvid + (vid))) + (list_exp))))) + + +===== +THEN +===== + +Theorem foo: + foo +Proof + tac1 \\ tac2 \\ tac3 +QED + +--- + +(source_file + (hol_theorem_with_proof + (hol_thmname) + (hol_thmstmt + (hol_identifier)) + (tactic + (THEN + (vid_exp + (longvid + (vid))) + (vid_exp + (longvid + (vid))) + (vid_exp + (longvid + (vid))))))) + + +========== +Attribute +========== + +Theorem foo[bar,foobar]: + T +Proof + tac1 +QED + +--- + +(source_file + (hol_theorem_with_proof + (hol_thmname) + (hol_attributes + (attribute) + (attribute)) + (hol_thmstmt + (hol_true)) + (tactic + (vid_exp + (longvid + (vid)))))) diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/type.txt b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/type.txt new file mode 100644 index 0000000000..9fe37f2ed8 --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/test/corpus/type.txt @@ -0,0 +1,53 @@ +==== +Num +==== + +val _ = “:num” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_type + (hol_atomic_type))))) + + +========== +List Type +========== + +val _ = “:'a list” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_type + (hol_list_ty + (hol_atomic_type)))))) + + +============== +Function Type +============== + +val _ = “:'a -> ('a -> 'b) -> 'b” + +--- + +(source_file + (val_dec + (valbind + (wildcard_pat) + (quoted_type + (hol_fun_ty + (hol_atomic_type) + (hol_fun_ty + (hol_fun_ty + (hol_atomic_type) + (hol_atomic_type)) + (hol_atomic_type))))))) diff --git a/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/tree-sitter.json b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/tree-sitter.json new file mode 100644 index 0000000000..6948b10afe --- /dev/null +++ b/tools/editor-modes/emacs/tree-sitter/tree-sitter-holscript/tree-sitter.json @@ -0,0 +1,33 @@ +{ + "grammars": [ + { + "name": "holscript", + "camelcase": "HOLScript", + "scope": "source.holscript", + "path": ".", + "file-types": null, + "injection-regex": "^holscript$" + } + ], + "metadata": { + "version": "0.1.0", + "license": "MIT", + "description": "HOLScript grammar for tree-sitter", + "authors": [ + { + "name": "Daniel Nezamabadi" + } + ], + "links": { + "repository": "https://github.com/HOL-Theorem-Prover/HOL/" + } + }, + "bindings": { + "c": true, + "go": true, + "node": true, + "python": true, + "rust": true, + "swift": true + } +} \ No newline at end of file